View test_video_generator.sh
This file contains 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 | |
START_COUNT=0 | |
END_COUNT=2000 | |
SIZEs=( 400x400 1920x1080 ) | |
FPSs=( 30 60 75 90 120) | |
FONT_SIZE=150 | |
for size in "${SIZEs[@]}" | |
do |
View renamer.sh
This file contains 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 | |
# | |
# recover file name from DiskLRUCache generated file (kakaotalk cache file.. etc) | |
# | |
# how to | |
# adb pull /sdcard/Android/data/com.kakao.talk/ kakaotalk | |
# renamer.sh kakaotalk output | |
# |
View gist:7187867
This file contains 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
for(i=-9;i++<9;){for(j=-9;j++<9;){k=Math.abs(i)+Math.abs(j);if(k==6||(k==7&&(i==0||j==0)))print'*'else print' '};print'\n'} |