Skip to content

Instantly share code, notes, and snippets.

View gabrielCachavilano's full-sized avatar

Cachavilano Gabriel gabrielCachavilano

View GitHub Profile
@gabrielCachavilano
gabrielCachavilano / README.md
Created July 26, 2018 18:05 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@willurd
willurd / web-servers.md
Last active November 2, 2025 19:16
Big list of http static server one-liners

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.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@HiroNakamura
HiroNakamura / Computadora.java
Last active September 2, 2025 19:30
Ejemplos en Java, algunos ejemplos los hice otros son recopilación
//package org.info.clases;
public class Computadora{
private int id;
public Computadora(){
System.out.println("Objeto Computadora creado e inicializado");
}