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
#!/usr/bin/env bash | |
get() { | |
sudo systemsetup -gettimezone | |
} | |
set() { | |
sudo systemsetup -settimezone $1 | |
} |
upstream ws_server { | |
server 127.0.0.1:8080; | |
} | |
server { | |
listen 80; | |
server_name 10.1.2.225; | |
location / { | |
proxy_pass http://ws_server/; |
# In ~/.bash_profile or ~/.profile, whichever you use | |
alias gut="git" | |
# In ~/.gitconfig | |
[alias] | |
punch = push | |
# Or maybe more acccurately | |
[alias] | |
punch = push -f |
console.lol = function() { | |
var harray = [], harrumpf = Math.floor( Math.random() * 10 + 2 ); | |
while ( harrumpf-- ) harray.push( 'ha' ); | |
console.log( harray.join( '' ) + '!' ); | |
} |
#!/bin/sh | |
# Store git files in a different directory than the repo | |
git --work-tree=/var/www/meatspace-markov-memeify --git-dir=/var/repos/meatspace-markov-memeify/app.git checkout -f | |
# Install npm deps | |
cd /var/www/meatspace-markov-memeify && npm install | |
# If index.js is running, restart--otherwise start! | |
forever restart --spinSleepTime 10000 --minUptime 1000 /var/www/meatspace-markov-memeify/index.js --port=8000 || forever start --spinSleepTime 10000 --minUptime 1000 /var/www/meatspace-markov-memeify/index.js --port=8000 |
function fuck() { | |
if killall -9 "$2"; then | |
echo ; echo " (╯°□°)╯︵$(echo "$2"|toilet -f term -F rotate)"; echo | |
fi | |
} |
I've known people at nodejitsu for years, since before the company even existed. I still consider many of them friends. That said, somebody over there has lost their mind.
Trademarks are an important part of open source. They protect the integrity of the trust that is built by any project. A classic example of why this is the case is Firefox. Suppose that a malware producer takes the Firefox codebase, which is free and open source, packages up their malware with it and then releases it as "Firefox". Then they buy search advertising and suddenly their bad and malicious version of Firefox is the first result on search engines across the web. This is clearly a bad thing for Firefox and open source everywhere, but what can Mozilla do to protect their community of users?
They can't enforce a software license since the use is permitted under the Mozilla Public License. They can, however, enforce on these hypothetical bad actors using their trademark on the word "Fi
$ brew doctor
$ brew install git
npm
is now installed, tooexec { "sed -i 's/www-data/vagrant/g' /etc/apache2/envvars": | |
onlyif => "/bin/grep -c 'www-data' /etc/apache2/envvars", | |
notify => Service['apache2'], | |
require => Package['apache2'], | |
} |