Skip to content

Instantly share code, notes, and snippets.

View bevacqua's full-sized avatar

Nicolás Bevacqua bevacqua

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Kittens - Lyst</title>
<style>
body {
width: 490px;
margin: 20px auto 0;
@bevacqua
bevacqua / system-beep.js
Last active December 18, 2015 03:59 — forked from taterbase/system-beep.js
system beep for node in a simple line
function beep(){
process.stdout.write("\u0007");
}
@bevacqua
bevacqua / xhr.css
Last active December 18, 2015 03:59
A CodePen by Nicolas Bevacqua. Bare XMLHttpRequest - A demonstration on how to perform an XMLHttpRequest without any added sauce.
html {
margin: 20px;
}
div, button {
font-size: 18px;
font-family: 'Georgia';
}
#response {
@bevacqua
bevacqua / resources.txt
Last active December 18, 2015 23:49
Huge linkdump of developer resources
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/
@bevacqua
bevacqua / feeds.opml
Last active May 30, 2022 09:29
The RSS feeds I follow
<?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">
@bevacqua
bevacqua / index.html
Created July 3, 2013 07:31
A CodePen by Nicolas Bevacqua.
<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>
# 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
@bevacqua
bevacqua / clever-sis-api.js
Created July 10, 2013 15:02
API Usage example of `https://getclever.com/developers/docs/`. You might run this in the `console` of any Chrome tab.
(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){