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
#!/bin/bash | |
# | |
# @(#) Vim!Vim!Vim! | |
# | |
# Author: | |
# 844196 (@84____) | |
# | |
# License: | |
# Vim License (http://vimdoc.sourceforge.net/htmldoc/uganda.html#license) | |
# |
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
s083027@Mac-mini: ~ | |
> openssl enc -d -base64 <<EOF | |
44KE44Gj44Gf44Gc44CC5oqV56i/6ICF77ya5aSJ5oWL57Oe5Zyf5pa5ICg45pyI | |
MTbml6XvvIjmsLTvvIkwN+aZgjE05YiGMjLnp5IpCgrmmKjml6Xjga445pyIMTXm | |
l6XjgavjgYTjgaTjgoLjga7mta7mtarogIXjga7jgYrjgaPjgZXjgpPvvIg2MOat | |
s++8ieOBqOWFiOaXpeODoeODvOODq+OBj+OCjOOBn+axmuOCjOWlveOBjeOBruWc | |
n+aWueOBruOBq+OBhOOBoeOCg+OCkwrvvIg0Neats++8ieOBqOOCj+OBl++8iDUz | |
5q2z77yJ44GuM+S6uuOBp+ecjOWMl+OBq+OBguOCi+W3neOBruWcn+aJi+OBruS4 | |
i+OBp+ebm+OCiuOBguOBo+OBn+OBnOOAggrku4rml6Xjga/mmI7ml6XjgYzkvJHj | |
gb/jgarjgpPjgafjgrPjg7Pjg5Pjg4vjgafphZLjgajjgaTjgb7jgb/jgpLosrfj |
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
#!/bin/bash -e | |
# | |
# @(#) ใฟใผใใใซใง็ปๅ่กจ็คบ | |
# | |
# Usage: | |
# img2aesc.sh [file] | |
# command | img2aesc.sh | |
# | |
# Author: | |
# Original sasairc (@sasairc_2) |
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
#!/usr/bin/ruby | |
# | |
# ไธ่ฌๅ ฌ้ใใใฆใใGoogleในใใฌใใใทใผใใฎURLใใCSVใๆจๆบๅบๅใใในใฏใชใใ | |
# | |
# Author: | |
# 844196 (Masaya Tk) | |
# License: | |
# MIT | |
# |
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
#!/bin/bash | |
# | |
# @(#) Minecraftใฎในใญใณใขใคใณใณใๅๅพ | |
# | |
# Author: | |
# 844196 (@84____) | |
# | |
# License: | |
# MIT | |
# |
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
function! s:Toggle_iTerm_BG(bg) | |
if !has('gui_running') | |
let s:command = '/usr/bin/osascript ~/Library/Application\ Support/iTerm/Scripts/Solarized\ ' . a:bg . '.scpt' | |
call vimproc#system_bg('/usr/bin/osascript ~/Library/Application\ Support/iTerm/Scripts/Toggle\ Solarized.scpt') | |
call vimproc#system_bg(s:command) | |
endif | |
endfunction | |
function! Toggle_BG() | |
if &background =~# 'light' |
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
$ cat ~/title.inm | sort | uniq | grep '\..*$' | sed -e "s/.*\(\..*\)$/\1/g" | sort | uniq -c | sort -r | head | |
241 .mp4 | |
17 .mp893 | |
7 .mp810 | |
7 .exe | |
6 . | |
4 .mp3 | |
4 .ksp | |
3 .pdf | |
3 .ntuy |
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
#!/bin/sh | |
USERNAME="${1}" | |
PASSWORD="${2}" | |
DOMAIN="${3}" | |
curl -s "http://ieserver.net/cgi-bin/dip.cgi?username=${USERNAME}&domain=${DOMAIN}&password=${PASSWORD}&updatehost=1" >/dev/null 2>&1 |
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
seq 100|sed 0~5cBuzz|sed 0~3s/[^B]*/Fizz/ |
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
#!/bin/bash | |
time="$(echo ใชใใ | awk '{ | |
t = int($1/60); m = t % 60; | |
t = int(t/60); h = t % 24 + 9; | |
printf("%02d:%02d\n",h,m); | |
}' | |
)" |