(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.
(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.
Get the absolute position of every link in an html document using JavaScript:
/**
* The HTML <area> coords attribute needs the position of the left, top, right, bottom corner
* of the rectangle. Element.getBoundingClientRect returns a text rectangle object that encloses
* a group of text rectangles.
*/
function getElementAbsolutePosition(element) {
var pos = {};
pos.left = 0;
# coding=UTF-8 | |
from __future__ import division | |
import nltk | |
from collections import Counter | |
# This is a simple tool for adding automatic hashtags into an article title | |
# Created by Shlomi Babluki | |
# Sep, 2013 | |
'use strict'; | |
var path = require('path'); | |
var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet; | |
var folderMount = function folderMount(connect, point) { | |
return connect.static(path.resolve(point)); | |
}; | |
module.exports = function (grunt) { | |
// grunt || grunt browser — разработка в браузере |
RANGE=2 | |
number=$RANDOM | |
let "number %= $RANGE" | |
case $number in | |
0) | |
cowcommand="cowsay" | |
;; | |
1) | |
cowcommand="cowthink" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000