Skip to content

Instantly share code, notes, and snippets.

View lucascaton's full-sized avatar

Lucas Caton lucascaton

View GitHub Profile
$ rspec
Run options: include {:focus=>true}
All examples were filtered out; ignoring {:focus=>true}
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
😄 hi.
👾 Hi human, what's your name?
.
@lucascaton
lucascaton / text-expander_mysql-snippets.xml
Created April 30, 2015 23:43
Text Expander - MySQL snippets
<!-- Text Expander - MySQL snippets -->
<dict>
<key>abbreviation</key>
<string>;mysqld</string>
<key>label</key>
<string>MySQL dump</string>
<key>plainText</key>
<string>mysqldump %fillpart:name=remote host%-h server.com %fillpartend%-u %filltext:name=username:default=root% -p %filltext:name=database name:default=_development% &gt; %filltext:name=file name:default=dump.sql%</string>
</dict>
@lucascaton
lucascaton / facebook_archive_all_messages.js
Last active August 29, 2015 14:27
Facebook - Archive All Messages
// http://code.jquery.com/jquery-latest.js
// Reference: https://gist.github.com/tedmiston/c7ac401da96b55022aaf
$("li._k- span.accessible_elem").each(function() {
$(this).parent().parent().parent().prev().children()[1].click();
});
class CreateStuffs < ActiveRecord::Migration
def self.up
create_table :stuffs, :primary_key => :cod do |t|
t.integer :cod
t.integer :stuff_type_id
t.timestamps
end
end
class Posts < Application
provides :xml, :json
def index
@posts = Post.all
display @posts
end
end
#Este controller responde solicitações em html, xml, e json :)
@lucascaton
lucascaton / XGH - PT-BR.txt
Last active September 10, 2015 07:41 — forked from banaslee/XGH - en.txt
eXtreme Go-Horse Process
Fonte: http://gohorseprocess.wordpress.com
1- Pensou, não é XGH.
XGH não pensa, faz a primeira coisa que vem à mente. Não existe
segunda opção, a única opção é a mais rápida.
2- Existem 3 formas de se resolver um problema, a correta, a errada e
a XGH, que é igual à errada, só que mais rápida.
https://github.com/bbatsov/rubocop/blob/master/config/default.yml
rubocop -D --only Style/ClassAndModuleChildren -a
git cam "[rubocop] Fixing 'Style/FirstParameterIndentation' cop"
class Class
def sets_gets(*args)
args.each do |arg|
define_method(arg) { eval "@#{arg}" }
define_method("#{arg}=".to_sym) { |param| eval "@#{arg}=param" }
end
end
end
class Person
@lucascaton
lucascaton / iphone6.rb
Created September 23, 2015 23:24 — forked from alexeckermann/iphone6.rb
iPhone 6 Reservation Availability in Australia
# iPhone 6 Reservation Availability in Australia
# !! Please use responsibly. Personal use only !!
# `ruby iphone6.rb` - list all available models in all stores
# `ruby iphone6.rb R405` - list available models for a specific store, Rundle Place in this example.
require 'open-uri'
require 'json'
MODEL_NAMES = {
"MG4A2X/A" => "iPhone 6 Space Grey 128GB",
Testing Gist-vim plugin...