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
#!/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
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
import React from 'react'; | |
class Example extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
thingOne: null, | |
thingTwo: null, | |
} | |
} |
OlderNewer