Estimated time: 10 minutes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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":"roam-transit/953","type":"gtfs","name":"Roam Transit GTFS","raw":"http://data.trilliumtransit.com/gtfs/roamtransit-banff-ab-ca/roamtransit-banff-ab-ca.zip","location":{"type":"Point","properties":{"name":"Banff, AB, Canada","shortName":"Banff"},"coordinates":[-115.570769,51.178363]}},{"id":"mission-bay-tma/952","type":"gtfs","name":"Mission Bay TMA GTFS","raw":"http://data.trilliumtransit.com/gtfs/missionbay-ca-us/missionbay-ca-us.zip","location":{"type":"Point","properties":{"name":"San Francisco, CA, USA","shortName":"San Francisco"},"coordinates":[-122.419415,37.774929]}},{"id":"avalon-transit/951","type":"gtfs","name":"Avalon Transit","raw":"http://data.trilliumtransit.com/gtfs/avalon-ca-us/avalon-ca-us.zip","location":{"type":"Point","properties":{"name":"Santa Catalina Island, California 90704, USA","shortName":"Santa Catalina Island"},"coordinates":[-118.41631,33.387886]}},{"id":"blue-grass-ultra-transit-service/950","type":"gtfs","name":"Blue Grass Ultra-Transit Service GTFS","raw":"http://dat |
This file contains 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
body { | |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; | |
line-height: 1.5; | |
font-size: 14px; | |
font-weight: 300; | |
color: #3e454c; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
h2, h3, strong { |
This file contains 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
// removes all instances of node and npm from your computer | |
var fs = require('fs'); | |
var path = require('path'); | |
var walk = require('fs-walk'); | |
var wipeOut = ['node', 'npm']; | |
function sanicGoFast(p, cb){ | |
walk.files(p, function(dir, file, stat, next) { | |
if (wipeOut.indexOf(path.basename(file) === -1) return next(); |
This file contains 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
'use strict'; | |
var mock = require('../temp-mock'); | |
var temasys = require('./index'); | |
var nu = require('new-operator'); | |
var RTCPeerConnectionMock = mock({ | |
methods: [ | |
'addIceCandidate', | |
'addStream', |
This file contains 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
apt-get install network-manager-openvpn | |
wget https://www.privateinternetaccess.com/openvpn/openvpn.zip | |
mv openvpn.zip /etc/openvpn | |
cd /etc/openvpn | |
unzip openvpn.zip | |
rm -rf openvpn.zip | |
# set up the rest in the gui | |
# gateway = us-east.privateinternetaccess.com | |
# CA.crt will be in /etc/openvpn |
This file contains 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
{ | |
"rules":{ | |
".write":"false", | |
".read":"false", | |
"user-rooms": { | |
".write":"false", | |
".read":"false", | |
"$userId": { | |
".write":"false", | |
".read":"(((auth.uid!==null&&auth.uid===$userId)))", |
NewerOlder