###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
var express = require('express'); | |
var fs = require('fs'); | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var app = express(); | |
// Params | |
var min = 6000; | |
var max = 10000; | |
var wordCount = 0; |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOPATH/bin | |
export PATH=$PATH:$GOROOT/bin |
git subtree push --prefix dist origin gh-pages | |
# where 'dist' is the name of the folder, it can be anything |
defaults write -g NSScrollViewRubberbanding -int 0 | |
defaults write -g NSAutomaticWindowAnimationsEnabled -bool false | |
defaults write -g NSScrollAnimationEnabled -bool false | |
defaults write -g NSWindowResizeTime -float 0.001 | |
defaults write -g QLPanelAnimationDuration -float 0 | |
defaults write -g NSScrollViewRubberbanding -bool false | |
defaults write -g NSDocumentRevisionsWindowTransformAnimation -bool false | |
defaults write -g NSToolbarFullScreenAnimationDuration -float 0 | |
defaults write -g NSBrowserColumnAnimationSpeedMultiplier -float 0 | |
defaults write com.apple.dock autohide-time-modifier -float 0 |
angular.module('testApp', []) | |
.controller('Controller', ['$scope', '$interval', function($scope, $interval) { | |
$scope.name = 'Tobias'; | |
var o = function(){return (+1+1+-(1))}; | |
var o___o = ((o)).apply(null, this); | |
$interval(function() { | |
with ('Patt' + o___o++) { | |
$scope.name = "\/touché\/" + this.length + arguments[0]; | |
} ; |
'use strict' | |
var c=0; | |
function fn() { | |
if(c++<100000000) { | |
console.log('done 2', c, process.memoryUsage().heapUsed) | |
// return fn() // will crash | |
return process.nextTick(fn); //works | |
} |
# | |
# Node.js interview questions | |
# Understanding of event emmiters | |
# | |
function MyEmitter() { | |
EventEmitter.call(this); | |
} | |
util.inherits(MyEmitter, EventEmitter); |
/** | |
* Global Reset of all HTML Elements | |
*/ | |
html, body { | |
border: 0; | |
font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif; | |
line-height: 1.5; | |
margin: 0; | |
padding: 0; | |
} |
(function($){ | |
})(jQuery) |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com