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
/** | |
* ReactJS: JavaScript like you've always done it. | |
* | |
* This example renders your top ten most followed friends/followers, `filter`ing | |
* only your favorites, and putting a star on all verified accounts. | |
* | |
* With ReactJS, any time your data changes, the UI is always brought up to date | |
* automatically. If friends length changes, or followCount - it always shows what | |
* `render` describes. | |
*/ |
function fuck() { | |
if killall -9 "$2"; then | |
echo ; echo " (╯°□°)╯︵$(echo "$2"|toilet -f term -F rotate)"; echo | |
fi | |
} |
<script type="text/javascript"> | |
(function () { | |
"use strict"; | |
// once cached, the css file is stored on the client forever unless | |
// the URL below is changed. Any change will invalidate the cache | |
var css_href = './index_files/web-fonts.css'; | |
// a simple event handler wrapper | |
function on(el, ev, callback) { | |
if (el.addEventListener) { | |
el.addEventListener(ev, callback, false); |
// HTML: | |
<div class="display-type"></div> | |
// CSS: | |
// set the content of an element depending on the media query |
console.lol = function() { | |
var harray = [], harrumpf = Math.floor( Math.random() * 10 + 2 ); | |
while ( harrumpf-- ) harray.push( 'ha' ); | |
console.log( harray.join( '' ) + '!' ); | |
} |
<snippet> | |
<content><![CDATA[ | |
function(){ | |
${1} | |
} | |
]]></content> | |
<tabTrigger>fn</tabTrigger> | |
<scope>source.js</scope> | |
</snippet> |
var JAVASCRIPT_FILES = ['lib/**/*.js', 'routes/**/*.js', 'public/js/**/*.js']; | |
grunt.initConfig({ | |
jshint: { | |
options: { | |
reporter: require('jshint-stylish'), | |
force: true, | |
/* https://github.com/gruntjs/grunt-contrib-jshint | |
http://jshint.com/docs/options/ */ | |
}, |
// the two testing modules I like | |
var test = require('tape') | |
var spawn = require('tape-spawn') | |
var execspawn = require('npm-execspawn') // can spawn from require() scope, check it out! | |
// put this in outer scope so we can kill the local server at the end | |
var server | |
test('start test server', function (t) { |