Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # dependency - Function.prototype.bind or underscore/lodash | |
| app = angular.module 'someApp' | |
| class @BaseCtrl | |
| @register: (app, name) -> | |
| name ?= @name || @toString().match(/function\s*(.*?)\(/)?[1] | |
| app.controller name, @ | |
| @inject: (args...) -> |
| React = require 'react' | |
| {ul, li, div, h3, button, form, input} = React.DOM | |
| TodoApp = React.createClass | |
| getInitialState: -> | |
| items: @props.items | |
| text: '' |
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| ## Forked from https://gist.github.com/dersam/0ec781e8fe552521945671870344147b | |
| ## Also received help from https://twitter.com/gitkraken/status/691675309725368321 | |
| ## Open GitKraken using the current repo directory. | |
| ## This code is for fish shell. The same thing can be done in bash | |
| ## by creating an alias with the command below. | |
| ## `1>/dev/null` directs logs from the terminal | |
| ## `&` allows use of the same terminal instance to do other things |