(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| require 'rubygems' | |
| require 'sinatra' | |
| require 'fileutils' | |
| # upload with: | |
| # curl -v -F "data=@/path/to/filename" http://localhost:4567/user/filename | |
| post '/:name/:filename' do | |
| userdir = File.join("files", params[:name]) |
| <?xml version="1.0"?> | |
| <root> | |
| <!-- HELP RESOURCES - http://pqrs.org/macosx/keyremap4macbook/xml.html.en --> | |
| <!-- KEY LOOKUP - https://github.com/tekezo/KeyRemap4MacBook/blob/version_8.0.0/src/bridge/generator/keycode/data/KeyCode.data --> | |
| <!-- MODIFIER KEY LOOKUP - https://github.com/tekezo/KeyRemap4MacBook/blob/version_8.0.0/src/bridge/generator/keycode/data/ModifierFlag.data --> | |
| <item> | |
| <name>Razer Naga with OSX</name> | |
| <item> | |
| <name>browser navigate forward/back with keypad 7/9</name> | |
| <identifier>private.browser_nav_with_num</identifier> |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
CSS is a crazy person, it belongs in a dungeon.
👍 ITCSS - settings, tools, generic, base, objects, components, trumps
Styleguide Driven Development - a practice that encourages the separation of UX, Design & Frontend from Backend concerns
data visualization catalog - data viz cat
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| var PIXI = require('pixi.js') | |
| console.log(PIXI) |
An explanation of ITCSS.