This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8'> | |
<title>Kittens - Lyst</title> | |
<style> | |
body { | |
width: 490px; | |
margin: 20px auto 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function beep(){ | |
process.stdout.write("\u0007"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
margin: 20px; | |
} | |
div, button { | |
font-size: 18px; | |
font-family: 'Georgia'; | |
} | |
#response { |
- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SERVICES | |
https://www.rootbuzz.com/ | |
http://bottlenose.com/products | |
http://cloudcmp.co/ | |
http://gdriv.es/ | |
http://www.shoeboxify.com/ | |
https://www.makesets.com/ | |
http://archive.is/ | |
http://areyouahuman.com/ | |
http://avatars.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.1"> | |
<!--Generated by NewsBlur - www.newsblur.com--> | |
<head> | |
<title>NewsBlur Feeds</title> | |
<dateCreated>2013-07-12 03:43:24.605173</dateCreated> | |
<dateModified>2013-07-12 03:43:24.605173</dateModified> | |
</head> | |
<body> | |
<outline text="Tech News" title="Tech News"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah|Roboto' rel='stylesheet' type='text/css'> | |
<main> | |
<h1>Feliz Semana de la Dulzura!</h1> | |
<article> | |
<p>Algo así era lo que estaba tratando de hacerte. Pero bueno, se rompió en <n>mil pedazos</b>, así que espero que entiendas si <i>no se ve del todo bien!</i></p> | |
<p>Bueno, como te decía antes de que el chocolate que dibujé antes explote en mil pedazos y desaparezca <i>para siempre</i>... esto se supone que es un envoltorio de un chocolate. Vos imaginate e.. No, ya sé.. <b>pero</b>.. IMAGINATELO! Hace de cuenta que es un chocolate.</p> | |
<p>Viste, como cuando eramos chicos.. No, sí, bueno. No nos conocíamos, pero seguro eramos parecidos. Bueno, <i>está bien</i>, vos te parecías más a Matilda que a mi, es cierto..</p> | |
<p class='marquee'><marquee>Esto lo pongo acá para <b>confundirte</b> nada más, <i>de guacho que soy</i>!</marquee></p> | |
<p><b>Dejá</b>, te compro uno. <i>UNO</i>!</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ensures all line endings are committed as LF, but will checkout with native line endings | |
* text=auto | |
# -- Override Section, just in-case Git tries to be sneaky | |
# Ensure that these files are recognized as text | |
*.asp text | |
*.aspx text | |
*.asx text | |
*.css text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
'use strict'; | |
function ajax(url, done){ | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', url, true); | |
xhr.setRequestHeader('Authorization', 'Basic ' + btoa('DEMO_KEY')); | |
xhr.responseType = 'json'; | |
xhr.onload = function(e){ | |
if(xhr.status === 200){ |
OlderNewer