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
{ | |
"logs":{ | |
"59489":{ | |
"id":"59489", | |
"updated":1481100297, | |
"date":"20161205", | |
"app":0 | |
}, | |
"59490":{ | |
"id":"59490", |
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
{ | |
"log":{ | |
"id":59503, | |
"created":1482226245, | |
"updated":1482226245, | |
"date":"20161220", | |
"vesselId":4, | |
"beaufort":1, | |
"seamiles":0, | |
"location":"", |
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
{ | |
"fences":{ | |
"24":{ | |
"studentId":36020, | |
"points":{ | |
"348":{ | |
"lat":"54.844910975100000", | |
"lng":"73.376781642400000", | |
"weight":"0" | |
}, |
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
{ | |
"ld_beaufort" = 1; | |
"ld_date" = 20161222; | |
"ld_id" = 59511; | |
"ld_master" = 0; | |
"ld_updated" = 1482403084; | |
"ld_vessel" = 4; | |
"log_distance" = "237.2727760366071"; | |
"log_elevation" = 0; | |
"log_endTime" = "1482405121.672924"; |
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
[Bugfender activateLogger:kBugfenderApiKey]; | |
[Bugfender enableNSLogLogging]; |
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
"dependencies": { | |
"express": "~4.14.0", | |
"morgan": "~1.7.0", | |
"parse": "~1.8.0", | |
"parse-server": "~2.3.2", | |
"parse-dashboard": "~1.0.22", | |
"parse-server-mailgun": "~2.3.5" | |
}, | |
"scripts": { | |
"start": "node app.js" |
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
{ | |
"name": "qoob-backend", | |
"dependencies": { | |
"express": "~4.14.0", | |
"morgan": "~1.7.0", | |
"parse": "~1.8.0", | |
"parse-server": "~2.3.2", | |
"parse-dashboard": "~1.0.22", | |
"parse-server-mailgun": "~2.3.5" | |
}, |
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
// | |
// NZTableViewCell.h | |
// trackingapp | |
// | |
// Created by Nikita Zatsepilov on 28/12/16. | |
// Copyright © 2016 Synergy. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
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
// | |
// NZTableViewCell.m | |
// trackingapp | |
// | |
// Created by Nikita Zatsepilov on 28/12/16. | |
// Copyright © 2016 Synergy. All rights reserved. | |
// | |
#import "NZTableViewCell.h" |
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
+ (TrackingService *)sharedService { | |
static TrackingService *sharedService = nil; | |
static dispatch_once_t onceToken; | |
dispatch_once(&onceToken, ^{ | |
sharedService = [TrackingService new]; | |
}); | |
return sharedService; | |
} |