View draw-svg-stroke.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Draw SVG stroke</title> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css"/> | |
<style> | |
.content { | |
max-width: 800px; |
View angular-isolated-scope-function-parameter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html ng-app="myApp" ng-controller="myApp.myCtrl"> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.js"></script> | |
<meta charset="utf-8"> | |
<title>AngularJS: Isolated scope and function parameter</title> | |
</head> | |
<body> | |
<h1>AngularJS: Isolated scope and function parameter</h1> | |
<a href="http://jsbin.com/qeqezaqaxo/4/edit?html,js,console">see at jsBin</a> |
View ContextCmder-Disable.reg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |
View arrow-functions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let square = x => x * x; | |
let triangleArea = (a, h) => a*h/2; | |
let triangleHeron = (a, b, c) => { | |
let p = (a + b + c)/2; | |
return Math.sqrt(p*(p-a)*(p-b)*(p-c)); | |
}; | |
let objectify = x => ({ value: x }); |
View rails-gmail.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /config/environments/development.rb | |
# Gmail configuration | |
config.action_mailer.raise_delivery_errors = true | |
config.action_mailer.delivery_method = :smtp | |
config.action_mailer.smtp_settings = { | |
address: 'smtp.gmail.com', | |
port: 587, | |
domain: 'example.com', | |
user_name: ENV['EMAIL_USER'], |
View rails-disable-auto-junk.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /config/environments/development.rb | |
config.generators.assets = false | |
config.generators.helper = false | |
config.generators.view_specs = false | |
config.generators.helper_specs = false |
View wtf.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* VT100 terminal reset (<ESC>c) */ | |
console.log('\033c'); | |
/* numbers comparations */ | |
> '2' == 2 | |
true | |
> '2' === 2 |
View style.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cssnext = require("cssnext"); | |
const fs = require("fs"); | |
const watch = require("node-watch"); | |
const program = require("commander"); | |
program | |
.version("0.0.1") | |
.option("-s, --source [path]", "Source file") | |
.option("-d, --destination [path]", "Destination file") | |
.option("-w, --watch [path]", "Watch directory") |
View match.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function match<T, S>(value: T) { | |
let result: ()=>S; | |
const context = { | |
caseOf(fn:(value: T) => boolean, payload: ()=>S) { | |
if (!result && fn(value)) result = payload; | |
return context; | |
}, | |
_(payload: ()=>S) { | |
if (!result) result = payload; | |
return context; |
OlderNewer