Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<?php | |
// Constants | |
$FIREBASE = "_YOUR_FIREBASE_URL_"; | |
$NODE_DELETE = "temperature.json"; | |
$NODE_GET = "temperature.json"; | |
$NODE_PATCH = ".json"; | |
$NODE_PUT = "temperature.json"; | |
// Data for PUT |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
//obtener una cuenta de badges de un usuario y puntos de javascript | |
var profile = require("./profile.js"); | |
var usuarios = process.argv.slice(2); | |
usuarios.forEach(profile.get); |
(function(e){$.fn.extend({backgroundRdm:function(e){this.each(function(){backgroundsTotal=e.length;random=Math.floor(Math.random()*backgroundsTotal+0);finalBack=e[random];$(this).css("background-image","url("+finalBack+")")})}})})(jQuery) |
<link href="URL-ABSOLUTA/apple-touch-icon.png" rel="apple-touch-icon" /> | |
<link href="URL-ABSOLUTA/apple-touch-icon-76x76.png" rel="apple-touch-icon" sizes="76x76" /> | |
<link href="URL-ABSOLUTA/apple-touch-icon-120x120.png" rel="apple-touch-icon" sizes="120x120" /> | |
<link href="URL-ABSOLUTA/apple-touch-icon-152x152.png" rel="apple-touch-icon" sizes="152x152" /> |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:creator" content="@pelitosduran"> | |
<meta name="twitter:site" content="@pelitosduran"> | |
<meta name="twitter:title" content="Como obtener Twitter Analytics"> | |
<meta name="twitter:description" content=""> | |
<meta name="twitter:image:src" content="http://ederduran.com/wp-content/uploads/2014/05/en-analytics-hero-5f7a43918471e91c3e0f0d7347d5698b-435x328.png"> |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg : grunt.file.readJSON('package.json'), | |
uglify : { | |
options : { | |
mangle : { | |
except : ['jQuery'] | |
} | |
}, | |
my_target : { |
node -v |