start new:
tmux
start new with session name:
tmux new -s myname
# stacktrace java as one message | |
multiline { | |
#type => "all" # no type means for all inputs | |
pattern => "(^.+Exception: .+)|(^\s+at .+)|(^\s+... \d+ more)|(^\s*Caused by:.+)" | |
what => "previous" | |
} | |
# Italian translation for Devise 3.2 | |
# Date: 2013-20-12 | |
# Author: xpepper | |
# Note: Thanks to fuzziness (https://gist.github.com/fuzziness/5262777) | |
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
it: | |
devise: | |
confirmations: | |
confirmed: "Il tuo account Γ¨ stato correttamente confermato. Ora sei collegato." |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
WeeChat terminal IRC client
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
# Installation on Dell XPS | |
# Please also consult official documentation: | |
# https://wiki.archlinux.org/index.php/Installation_Guide | |
# https://wiki.archlinux.org/index.php/Dell_XPS_13_(9360) | |
# https://wiki.archlinux.org/index.php/Dell_XPS_15_(9550) | |
# Enter BIOS with F2 and configure: | |
# - "System Configuration" > "SATA Operation": "AHCI" | |
# - "Secure Boot" > "Secure Boot Enable": "Disabled" |
I've always had fzf and ripgrep on my radar, and I've finally gotten around to using them together. Good lord it makes a world of difference, especially when added to Vim as well as Bash.
Add the following snippet to your ~/.bashrc, this add's fzf keybindings to bash and gets fzf to use ripgrep by default for faster searching.
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'
bind -x '"\C-p": vim $(fzf);'
Okay now what can you do?
The git repo of the kata is here: https://github.com/sandromancuso/cleancoders_openchat/
The "starting-point"
branch is where both implementations began: https://github.com/sandromancuso/cleancoders_openchat/tree/starting-point
"openchat-outside-in"
branch captures the tomato by tomato history of the London approach."openchat-unclebob"
branch captures the tomato by tomato history of the Chicago approach.2008 started with a POC with magento => starts fine but does not scale very well
2010 couldn't handle the raising load and traffic with magento
=> so in 3 months they build their own system, based on Java, Spring, Postgres DB (a monolithic application)