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
COMP=gzip | |
for i in *.deb; do | |
echo "$i" | |
mkdir "$i.extract" | |
dpkg-deb -R "$i" "$i.extract" | |
rm "$i" | |
dpkg-deb -b "-Z$COMP" "$i.extract" "$i" | |
rm -rf "$i.extract" | |
done |
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
//usage: node irconvert.js <pronto hex> | |
//steps from https://stackoverflow.com/a/27323452 | |
numbers=process.argv[2].split(' ').map(x=>parseInt(x,16)) | |
fullSequenceConverted=[] | |
carrierFrequency = 1000000/(numbers[1] * .241246) | |
codeLength = numbers[2] | |
repeatCodeLength = numbers[3] | |
for(i=4;i<numbers.length;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
Created by SHF from KPMS | |
rugged, Chapter 1 | |
"Utterson, the lawyer, was a man of a rugged countenance, that was never lighted by a smile; cold, scanty and embarrassed in discourse; backward in sentiment; lean, long, dusty, dreary, and yet somehow lovable. " | |
Can be used as a adjective | |
Definitions: | |
(of ground or terrain) having a broken, rocky, and uneven surface. | |
(of clothing, equipment, etc.) strongly made and capable of withstanding rough handling. | |
------examples from internet------ | |
a rugged coastline |
NewerOlder