This file contains hidden or 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
| $ git clone --bare https://github.com/hoge/hoge |
This file contains hidden or 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
| $ curl -Ss http://umeda.koth.seccon/login|tr '<>' '\n\n' > a ; rg "csrf_name" a|sed -E 's/.*(name=)(.*)(value)/\1/'|sed -E 's/name=="//'|sed -E 's/"//' > csrf_name ; rg "csrf_value" a|sed -E 's/.*(name=)(.*)(value)/\1/'|sed -E 's/name=="//'|sed -E 's/"//' > csrf_value ; curl -Ss -X POST -d "csrf_name=$(cat csrf_name)&csrf_value=$(cat csrf_value)&name=test&password=test" http://umeda.koth.seccon/register -i | |
This file contains hidden or 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
| curl -Ss https://qiita.com/onokatio/feed.atom|grep -e "<title>" -e "<url>" |sed -e 's/^[0-9]*: *//'|sed -E 's/<url>/(/'|sed -E 's/<\/url>/)/'|sed -E 's/<title>/[/'|sed -E 's/<\/title>/]/'|tr -d '\n'|sed -e 's/)/)\n/g' |
This file contains hidden or 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
| $ wget https://bin.equinox.io/c/VdrWdbjqyF/cloudflared-stable-linux-amd64.tgz | |
| $ tar xvf cloudflared-stable-linux-amd64.tgz | |
| $ sudo mv ./cloudflared /usr/bin/ |
This file contains hidden or 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
| $ PROMPT="人の金で焼き肉が食べたい!! " |
This file contains hidden or 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
| ## 物理ボリュームの作成(パーティションをLVM管理下に置く) | |
| pvcreate /dev/sda1 | |
| pvcreate /dev/sda2 | |
| … | |
| ## 物理ボリュームの解除(パーティションをLVM管理下に置かない) | |
| pvremove /dev/sda1 | |
| … |
This file contains hidden or 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
| --- main.rc.old 2018-04-20 16:06:02.000000000 +0900 | |
| +++ main.rc 2018-04-28 13:32:42.350012349 +0900 | |
| @@ -1928,59 +1928,12 @@ style "checkbutton_label" { | |
| } | |
| style "button" { | |
| - xthickness = 4 | |
| - ythickness = 4 | |
| - # For the sake of sanity style buttons this way |
This file contains hidden or 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
| $ sudo pacman -S sshfs |
This file contains hidden or 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
| Verifying my Blockstack ID is secured with the address 1CKPRLmYjBEKg8WRXDFQburd91ihGhJ1oS https://explorer.blockstack.org/address/1CKPRLmYjBEKg8WRXDFQburd91ihGhJ1oS |
This file contains hidden or 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
| #zmodload zsh/zprof && zprof | |
| if [[ -z "$CTG" ]];then | |
| source ~/.zprofile | |
| fi | |
| if [[ "$TTY" == "/dev/tty1" ]];then | |
| startx > /dev/null 2>&1 | |
| # fbterm | |
| elif echo "$TTY" | grep "/dev/tty" ;then |