%s/\(\d*\)\/\(\d*\)\//\2\/\1\//gc
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
# frozen_string_literal: true | |
Vagrant.configure("2") do |config| | |
config.vm.define "database" do |service| | |
service.vm.provider "docker" do |d| | |
d.image = "postgres:10.4" | |
d.ports = ["5433:5432"] | |
end | |
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" ~/.vimrc | |
" | |
" Dependencies: | |
" | |
" - fzf | |
" - neovim editor | |
" - python-3's neovim package | |
" - rbenv |
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
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |
I hereby claim:
- I am joiggama on github.
- I am joiggama (https://keybase.io/joiggama) on keybase.
- I have a public key whose fingerprint is 9C56 6351 EEAD 9C20 5839 A39A AAD0 2547 4714 B457
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
<select id="sex" name="sex" class=""> | |
<option value="1">Mujer</option> | |
<option value="2">Hombre</option> | |
<option value="100" selected="1">Anything</option> | |
</select> |