Skip to content

Instantly share code, notes, and snippets.

@karur4n
karur4n / config.fish
Created October 8, 2019 03:33
my fish prompt
# prompt
function fish_prompt --description 'Write out the prompt'
set -l last_status $status
# PWD
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
@karur4n
karur4n / index.html
Created December 25, 2015 02:09
child selector
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
</head>
<body>
<input name="man-news" value="0">
<input name="milk man" value="1">
<input name="letterman2" value="2">
<input name="man" value="3">
@karur4n
karur4n / file1.txt
Last active August 29, 2015 14:14
Ruby で素数判定をする ref: http://qiita.com/karur4n/items/548908cc061877fe2241
$ ruby app.rb 100
2
3
5
7
11
13
17
19
23