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
tdagsdgsdg |
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
``` | |
{"entries":[{"hash":"e57619a0be1101b948afc89dcfb9ce430f38fba9be19fd0a3ed7424d500340a4","path":"one.txt","contentType":"text/plain; charset=utf-8","mode":420,"size":4,"mod_time":"2017-12-01T15:34:25-08:00"},{"hash":"d6c57ee8ee12ad1eb24f05eeb7059469ed7474787e2141f0f7345b0166a28ab7","path":"t","contentType":"application/bzz-manifest+json","mod_time":"0001-01-01T00:00:00Z"}]} | |
``` |
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
[Unit] | |
Description=Ethereum go client | |
[Service] | |
Type=simple | |
ExecStart=/home/ubuntu/go/bin/geth --testnet --fast --datadir /home/ubuntu/myDataDir --keystore /home/ubuntu/myDataDir/keystore --rpc --shh | |
Restart=always | |
RestartSec=10 | |
[Install] |
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
pi@ttn-gateway:/opt/ttn-gateway/bin $ sudo ./start.sh | |
/opt/ttn-gateway/gateway-remote-config /opt/ttn-gateway/bin | |
error: object file .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d is empty | |
error: object file .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d is empty | |
fatal: loose object 9dffa57f73e322d9a60f0d47982795320bb24c0d (stored in .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d) is corrupt | |
fatal: The remote end hung up unexpectedly | |
error: object file .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d is empty | |
error: object file .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d is empty | |
fatal: loose object 9dffa57f73e322d9a60f0d47982795320bb24c0d (stored in .git/objects/9d/ffa57f73e322d9a60f0d47982795320bb24c0d) is corrupt | |
/opt/ttn-gateway/bin |
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
--- | |
language: objective-c | |
before_script: | |
- ./scripts/travis/add-key.sh | |
after_script: | |
- ./scripts/travis/remove-key.sh | |
after_success: | |
- ./scripts/travis/testflight.sh | |
env: | |
global: |
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 ws = require('ws'), | |
nconf = require('nconf'), | |
redis = require('redis'); | |
nconf.argv() | |
.env(); | |
var server = new ws.Server({port: nconf.get('PORT')}); | |
var sockets = {}; |
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.mapbox.reactnativemapboxgl; | |
import android.graphics.Color; | |
import android.util.Log; | |
import android.os.StrictMode; | |
import android.location.Location; | |
import com.facebook.react.bridge.Arguments; |
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
NSObject *convertObjectToPoint (NSObject *annotationObject) | |
{ | |
NSString *title = @""; | |
if ([annotationObject valueForKey:@"title"]) { | |
title = [RCTConvert NSString:[annotationObject valueForKey:@"title"]]; | |
} | |
NSString *subtitle = @""; | |
if ([annotationObject valueForKey:@"subtitle"]) { | |
subtitle = [RCTConvert NSString:[annotationObject valueForKey:@"subtitle"]]; |
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
getDashboardCommentList = (comments) => { | |
return comments.reduce((previousValue, currentValue) => { | |
let commentDate = moment(currentValue.node.createdAt).startOf('day'); | |
if (previousValue.indexOf(commentDate.toDate().valueOf()) === -1) { | |
previousValue.push(commentDate.toDate().valueOf()); | |
} | |
return previousValue; | |
}, []) | |
.map((date) => { |
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
#import "ViewSnapshotter.h" | |
#import "RCTConvert.h" | |
#import "RCTBridge.h" | |
#import "RCTUIManager.h" | |
@implementation ViewSnapshotter | |
RCT_EXPORT_MODULE() | |
@synthesize bridge = _bridge; |
NewerOlder