functional programming, presentation:
ruby, rails, rspec:
ruby, jekyll:
nix-env (packages available to the user):
# search (query for --installed or --available)
nix-env -q --installed vim
nix-env -q --available 'emacs.*'
# install
nix-env -i htop
Maior
I II III IV V VI VII
C Dm Em F G Am Bdim
Menor Melódica
I hereby claim:
- I am diegosouza on github.
- I am diegosouza (https://keybase.io/diegosouza) on keybase.
- I have a public key whose fingerprint is F9A8 A921 A56B BB63 D9DA 69CC CA3C F457 2699 A110
To claim this, I am signing this object:
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
{ | |
"vars": { | |
"@gray-base": "#656565", | |
"@gray-darker": "#656565", | |
"@gray-dark": "#757575", | |
"@gray": "#848484", | |
"@gray-light": "#999", | |
"@gray-lighter": "#ddd", | |
"@brand-primary": "#96b739", | |
"@brand-success": "#4fc1ff", |
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
require 'lotus' | |
module OneFile | |
class Application < Lotus::Application | |
configure do | |
routes do | |
get '/', to: 'home#index' | |
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
SET GLOBAL log_output = "FILE"; | |
SET GLOBAL general_log_file = "/tmp/mysql.log"; | |
SET GLOBAL general_log = 'ON'; |
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
require 'irb/completion' | |
IRB.conf[:PROMPT_MODE] = :SIMPLE |