Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
| PyWebsocket http://code.google.com/p/pywebsocket/ | |
| HTML from http://pedroassuncao.com/blog/2009/12/18/websockets-tutorialexample-with-pywebsocket/ |
| DEPS = $(CURDIR)/deps | |
| DIALYZER_OPTS = -Wunderspecs | |
| # List dependencies that should be included in a cached dialyzer PLT file. | |
| # DIALYZER_DEPS = deps/app1/ebin \ | |
| # deps/app2/ebin | |
| DEPS_PLT = {{name}}.plt |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
| DEPS = $(CURDIR)/deps | |
| DIALYZER_OPTS = -Wunderspecs | |
| # List dependencies that should be included in a cached dialyzer PLT file. | |
| # DIALYZER_DEPS = deps/app1/ebin \ | |
| # deps/app2/ebin | |
| DEPS_PLT = {{name}}.plt |
This allows you to use the following video streaming services outside of the US from your Mac without having to use a proxy or VPN, so no big bandwidth issues:
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| #!/usr/bin/env ruby | |
| # | |
| # Subscribe to BBC Radio 3 LiveText over MQTT | |
| # | |
| require 'rubygems' | |
| require 'mqtt' | |
| MQTT::Client.connect('test.mosquitto.org') do |c| | |
| # If you pass a block to the get method, then it will loop |
| #!/bin/sh | |
| COSM_API_KEY="abcdefghijk" | |
| DATASTREAM="/v2/feeds/70987/datastreams/0.csv" | |
| hddtemp -u C -n /dev/sda | \ | |
| mosquitto_pub -d -h api.cosm.com -u "$COSM_API_KEY" -t "$DATASTREAM" -s |
| #!/bin/bash | |
| # installing erlang on ubuntu's | |
| VERSION="R16B" | |
| sudo apt-get install curl build-essential libncurses5-dev openssl libssl-dev | |
| sudo mkdir -p /opt/erlang/ | |
| curl -O https://raw.github.com/spawngrid/kerl/master/kerl && chmod a+x kerl | |
| sudo mv kerl /opt/erlang/ |
| """ | |
| Downloads a CSV file from Google Trends with the query 'debt'. | |
| Reads in this CSV file, cleans it up, and creates file called 'trends-debt.csv' in the current working directory. | |
| Requires your Google login credentials (meaning you need to edit this script). | |
| Requires <https://github.com/pedrofaustino/google-trends-csv-downloader>. | |
| """ | |
| import csv | |
| import re | |
| from pyGoogleTrendsCsvDownloader import pyGoogleTrendsCsvDownloader |