Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
/** | |
* Returns document meta description | |
*/ | |
getMetaDescription = function() { | |
var metas = document.getElementsByTagName('meta'); | |
for(var i in metas) { | |
if (typeof(metas[i].name) != 'undefined' && metas[i].name.toLowerCase() == "description") { | |
return encodeURIComponent(metas[i].content); | |
} | |
} |
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |
$whatson: #ed8f25; | |
$whatsonBg: lighten($whatson, 20%); | |
$childcare: #7c398a; | |
$childcareBg: lighten($childcare, 40%); | |
$health: #9cc700; | |
$healthBg: lighten($health, 30%); | |
$shopping: #0065fd; | |
$shoppingBg: lighten($shopping, 30%); | |
$groups: #cb0033; | |
$groupsBg: lighten($groups, 50%); |
# -*- Conf -*- | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
showbranch = auto | |
ui = true | |
# color.branch | |
# A boolean to enable/disable color in the output of git-branch(1). May be set to always, false (or |
console.reset = function () { | |
return process.stdout.write('\033c'); | |
} |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
.directive('ngVisible', function () { | |
return function (scope, element, attr) { | |
scope.$watch(attr.ngVisible, function (visible) { | |
element.css('visibility', visible ? 'visible' : 'hidden'); | |
}); | |
}; | |
}) |
sublime.log_commands(True) |
Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.
From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:
1. (On a mac): Command-option-J
2. (On a PC): Control-alt-J
/** | |
* Get a random floating point number between `min` and `max`. | |
* | |
* @param {number} min - min number | |
* @param {number} max - max number | |
* @return {number} a random floating point number | |
*/ | |
function getRandomFloat(min, max) { | |
return Math.random() * (max - min) + min; | |
} |