Based on github-flavored-markdown-test project!
Emoji is justice: 😋 😂 💬 ✉️ 🍤
followed by some text
followed by some text
Based on github-flavored-markdown-test project!
Emoji is justice: 😋 😂 💬 ✉️ 🍤
followed by some text
followed by some text
| #!/usr/bin/env python3 | |
| import logging | |
| # Colorful console | |
| RESET_SEQ = "\033[0m" | |
| COLOR_SEQ = "\033[1;%dm" | |
| BOLD_SEQ = "\033[1m" |
| b build | |
| bbb build nuke && build -cleanonly && build | |
| bq build nuke && quickbuild $* | |
| e start buildd.err | |
| mc sdv -u fareast\weye ... | |
| s+ sd add $* | |
| s- sd delete $* | |
| s! sd revert $* | |
| sa sdp apply $* | |
| sc sd change |
| function gp() { | |
| if [ $# -eq 0 ]; | |
| then | |
| count=10 | |
| else | |
| count=$1 | |
| fi | |
| cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 16 | head -n $count | |
| } |
| Raspberry Pi | |
| http://item.taobao.com/item.htm?spm=a1z09.2.9.10.MbZ8cB&id=38987175483&_u=p30n4aoe69b | |
| Shell | |
| http://item.taobao.com/item.htm?spm=a1z09.2.9.40.MbZ8cB&id=40236827770&_u=p30n4ao46eb | |
| Heat sink | |
| http://item.taobao.com/item.htm?spm=a1z09.2.9.30.MbZ8cB&id=40272781292&_u=p30n4aoa8ab | |
| Camera wire |
| #!/bin/bash | |
| if [ $# -lt 1 ]; then | |
| percent=13 | |
| printf "percent missing: using default value "$percent" %% \n" | |
| else | |
| percent=$1 | |
| fi | |
| type=png |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import random | |
| x = int(raw_input("how many work items do you have? ")) | |
| hours = [4,6,6,8,8,8,8,10,10,12,14] | |
| for i in range(x): | |
| print random.choice(hours) |