- Tokalosh feat Lego - Another Level (SOUL BROS)
- Dave Owen - Smile For Me - (VR028 Vibration Records)
- Electrosoul system - Traffic (Kozmossic)
- Blok One & Rainforest - Delusional - (Cadence Recordings 029)
- Volatile Psycle - Barricae (Terabyte recordings)
- Blok One - On Letting Go (VR030Vibration Records)
- Dave Owen - Loose Lips (Co Lab Recordings)
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
| daemon off; | |
| error_log /dev/stdout error; | |
| worker_processes 4; | |
| events { | |
| worker_connections 1024; | |
| } | |
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
| [postgesql] | |
| directory = . | |
| command = postgres -D /usr/local/var/postgres | |
| [nginx] | |
| directory = . | |
| command = nginx -p . -c config/nginx.conf | |
| [web] | |
| directory = . |
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
| { | |
| "config": { | |
| "errorMessages": [], | |
| "channelToken": "AHRlWrpa5tISngbssBEDidkSwqZQnG2e_a7mSmX5K8gJheKfCdoGowKIJdHPSKyyk-xwwN0l8rF4WjWM9rBTDnJ4ais6AvULM4HqrlnAiDu4Mapm1X6Csw8", | |
| "me": "65499267", | |
| "roomKey": "61879062", | |
| "roomLink": "https: //apprtc.appspot.com/?r=61879062", | |
| "initiator": 0, | |
| "pcConfig": { | |
| "iceServers": [ |
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
| require 'minitest' | |
| require 'minitest/autorun' | |
| require 'minitest/pride' | |
| require 'redis' | |
| require 'sidekiq' | |
| class ThingWorker | |
| include Sidekiq::Worker |
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
| /* global require, phantom */ | |
| (function () { | |
| 'use strict'; | |
| var exec, system, env; | |
| exec = require('child_process').spawn; | |
| system = require('system'); | |
| env = system.env.NODE_ENV || system.env.RACK_ENV || 'development'; | |
| phantom.onError = function (message, trace) { | |
| // dont report for development | |
| if (env === 'development') { |
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
| require 'redis' | |
| require 'open3' | |
| class Finder | |
| def redis | |
| Redis.new | |
| end | |
| def listen_for_terminate(id) | |
| Thread.new do | |
| loop do |
Start the Server using
node server.js --port 8080
Navigate to the index.html document frommany tabs or browsers.
Testing socket.io onMessage.
phantomjs ./socket_message_test.js
should return the message emitted on exit.
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 app; | |
| app = angular.module('app',[]); | |
| app.constant('endpoint', 'http://api.example.com'); |