Skip to content

Instantly share code, notes, and snippets.

@shiwork
shiwork / go_overseas.md
Last active August 29, 2015 14:26
海外滞在チェックリスト

日本から海外に行くor滞在するときのチェックリストと調べた限りの内容

#チェックリスト ##必須

  • パスポート

##お金関係

  • ATMで現金を引き出す方法
  • 日本からの送金方法
@zyxar
zyxar / exercise.tour.go
Last active April 28, 2024 17:06
tour.golang exercise solutions
/* Exercise: Loops and Functions #43 */
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
z := float64(2.)
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=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')