This will let you access any google owned site. This includes: youtube, google cache, google translate, google search, gmail, google news, etc.
- Install the HTTPS Everywhere extension
- Add these rules to your /etc/hosts file
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
#!/usr/bin/env node | |
'use strict'; | |
/* | |
This is a simple Spotify cli-based client with optional Icecast2/shout support! | |
It should work for non-premium users, but you must connect your Spotify account to Facebook. | |
Usage: | |
$ node spotify <spotify uris> <playlist uri> <album uri> <track uri> <etc...> |
/* does effectively this, but without all that fancy | |
* stream mumbo jumbo: | |
var net = require('net'); | |
var server = net.createServer(function(socket) { | |
socket.pipe(socket); | |
}); | |
server.listen(PORT, function() { |
/* | |
* Helper functions for treating node Buffer instances as C "pointers". | |
*/ | |
#include "v8.h" | |
#include "node_buffer.h" | |
/* | |
* Called when the "pointer" is garbage collected. |
{ | |
"Phish Live Radio": "http://radio.nugs.net:8002", | |
"GDRadio.net": "http://sc1-fmt.spacialnet.com:26260", | |
"4 Ever Floyd": "http://99.198.112.59:8000" | |
} |
Copy this file to: /Library/LaunchDaemons/fwd-80-to-3000.plist
and then reboot:
$ sudo -s
$ curl -L https://gist.github.com/TooTallNate/3372589/raw/ace6451e9e47f59550f12d09cb924a64531cfd1f/fwd-80-to-3000.plist > /Library/LaunchDaemons/fwd-80-to-3000.plist
$ reboot
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 = [email protected]: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:
var characters = [ | |
'Donkey Kong', | |
'Wario', | |
'Mario', | |
'Luigi', | |
'Peach', | |
'Toad', | |
'Bowser', | |
'Yoshi' |