This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 1, | |
"name": "Office Front Lock", | |
"serial_num": "123123123", | |
"pre_shared_key": "", | |
"static_code": "12341234", | |
"status": "in use", | |
"lock_type": "static", | |
"description": "", | |
"is_active": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"count": 11, | |
"next": "http://localhost:8000/v1/companies?page=3", | |
"previous": "http://localhost:8000/v1/companies?page=1", | |
"results": [ | |
{ | |
"id": 3, | |
"name": "Alpha Company", | |
"img": "", | |
"address_1": "107 E Techno Ave", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.jpotts18.algoritms; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class JonStuff { | |
public static void main(String[] args){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mydietitian.md.activities.settings; | |
import android.os.Bundle; | |
import android.widget.Button; | |
import android.widget.ListView; | |
import android.widget.TextView; | |
import com.mydietitian.md.R; | |
import com.mydietitian.md.activities.AbstractActivity; | |
import com.mydietitian.md.adapter.ReminderAdapter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jpotts18.myveterinarian.app.core; | |
import com.jpotts18.myveterinarian.app.models.Issue; | |
import com.jpotts18.myveterinarian.app.models.Message; | |
import com.jpotts18.myveterinarian.app.models.Pet; | |
import com.jpotts18.myveterinarian.app.models.Photo; | |
import com.jpotts18.myveterinarian.app.models.User; | |
import java.util.ArrayList; | |
import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var company = { | |
softwareVersion: 1, | |
oldSoftware: true, | |
owner: "you" | |
} | |
var updateTechnology = function(company){ | |
company.softwareVersion++; | |
} | |
if (company.oldSoftware) { | |
updateTechnology(company); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// viewDidLoad | |
AGSGDBGeodatabase *gdb = [[AGSGDBGeodatabase alloc] initWithPath:[self getDBPath] error:&error]; | |
for (AGSFeatureTable* fTable in gdb.featureTables) { | |
if ([fTable.tableName isEqual: @"wwGrid"]){ | |
continue; | |
} | |
if ([fTable hasGeometry]) { | |
AGSFeatureTableLayer *featureTableLayer = [[AGSFeatureTableLayer alloc] initWithFeatureTable:fTable]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var schedule = require('node-schedule'); | |
var getDate = function (){ | |
var date = new Date(); | |
var inTenSeconds = new Date(date.getTime() + 1000); | |
return inTenSeconds; | |
} | |
var everyMinute = function(){ | |
return "* * * * *" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User user = SessionManager.getInstance().getCurrentUser(); | |
if (message.getPhoto() != null) { | |
// user photo | |
} else if (message.getFile() != null) { | |
// vet PDF | |
} else if (messsage.getOwner().getId() == user.getId()) { | |
// user comment | |
} else { | |
// vet comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** First name prefix -- Last name suffix *** | |
KaLindsey Potter-Wallace | |
JaLindsey Potter III | |
DaLindsey Potterumz | |
LaLindsey Potter-Wallace | |
L'Lindsey Potter V | |
KaLindsey Potteriums | |
DaLindsey Potteriums | |
JaLindsey Potter III | |
JaLindsey Potterberry |