- Sin fines de lucro
- Moderación abierta. Administrador sólo quita el spam
- Compartir código bajo una cuenta de organización de Github
- El grupo es una democracia
- Cuando la democracia no es suficiente (empate etc), entra la meritocracia
- Comete errores (quien no los comete no aprende)
- Pide ayuda
- Diviértete, quien no disfruta lo que hace, lo hace mal...
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
import React from 'react'; | |
class Example extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
thingOne: null, | |
thingTwo: null, | |
} | |
} |
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
me: es hora de traer a este chat la diversión, es hora de que todos escuchen está canción | |
me: no es solamente un verso chiquito, a esto le llamamos el rap de quito! | |
me: uso variables y constantes a montones, prendo REGISTER_GLOBALS aunque se te caigan los calzones. | |
[PrZ] (8) programo en una capa y programo poquito, no uso versionador, todo esta en el folder quito | |
me: no me preocupo por evitar colisiones, separo mis nombres uzando guiones. | |
[alexperto] jajaja ahora hablaremos con puras rimas, porque asi es como les gusta a tus primas |
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
#!/usr/bin/env ruby | |
require 'fileutils' | |
ARGV.each_with_index do |file, index| | |
next unless File.exists?( file ) | |
filename_arr = File.basename( file ).split '_' | |
# Make sure to add a couple of seconds |
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
# Description: | |
# Ask hubot about the recent earthquakes in the last (hour, day, week or month). | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: |
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
# Generated by iptables-save v1.4.10 on Sun Apr 22 03:00:29 2012 | |
*filter | |
:INPUT DROP [59:1664] | |
:FORWARD DROP [0:0] | |
:OUTPUT ACCEPT [49:5928] | |
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | |
-A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT | |
-A INPUT -p icmp -m icmp --icmp-type 4 -j ACCEPT | |
-A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT | |
-A INPUT -i eth0 -p tcp -m tcp --dport 22 -j ACCEPT |
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
#!/usr/bin/env ruby | |
require 'net/http' | |
require 'uri' | |
HUBOT_URI = ( ENV['HUBOT_URI'] || "http://your-domain.herokuapp.com/" ) | |
OPTS = { | |
"partychat-hook" => ( ENV['PARTYCHAT_HOOK'] || "foo" ), | |
"reporter" => ( ENV['PARTYCHAT_REPORTER'] || "[Reporter]" ), |
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
#!/usr/bin/env bash | |
function email_extract { | |
if [ -z "$1" -o -z "$2" ]; then | |
echo usage: email_extract path file | |
echo example: email_extract . *.php | |
return 1 | |
fi | |
find $1 -iname $2 -exec perl -wne'while(/[\w\.]+@[\w\.\-]+\w+/g){print "$&\n"}' {} \; |
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
def luhn_checksum | |
odd = true | |
checksum = card_number.reverse.split(//).map(&:to_i).map do |digit| | |
digit *= 2 if odd = !odd | |
digit > 9 ? digit - 9 : digit | |
end.sum | |
checksum % 10 == 0 | |
end |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
doc = Nokogiri::HTML(open('http://abuguet.net/rosa/')) | |
puts doc.css('#episodio').to_s.gsub(/<\/?[^>]*>/, '').strip |
NewerOlder