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
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 |
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
//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 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 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 | |
USAGE=$'extract ipsw root file system on linux | |
usage: ipsw-extract.sh iPhone_Restore.ipsw | |
requires apfs-fuse - https://github.com/sgan81/apfs-fuse' | |
if [ -z "$1" ]; then | |
echo "$USAGE" | |
exit 1 | |
fi |
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 | |
#easy openvpn server setup for ubuntu | |
read -p "port (1-65535): " PORT | |
read -p "protocol (udp or tcp): " PROTOCOL | |
read -p "encrypt (y or n): " ENCRYPT | |
read -p "hmac (y or n): " HMAC | |
read -p "xor scramble (y or n): " SCRAMBLE | |
read -p "compress (y or n): " COMPRESS_YN | |
read -p "network number (0-255): " NETWORK_NUM |
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
#iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/fpzIR')) | |
cd ~\Desktop | |
Import-Module BitsTransfer | |
Add-Type -AssemblyName System.IO.Compression.FileSystem | |
function Unzip | |
{ | |
param([string]$zipfile, [string]$outpath) | |
[System.IO.Compression.ZipFile]::ExtractToDirectory( | |
$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($zipfile), | |
$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($outpath)) |
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
iex ((New-Object System.Net.WebClient).DownloadString('https://git.io/fpzIR')) |
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
#download the arch linux ISO from https://www.archlinux.org/download/ | |
#write the ISO onto an installation medium like a DVD or flash drive | |
#boot the server off of the installation medium | |
#now we install arch linux from the bootable medium | |
#based off of https://www.youtube.com/watch?v=f5MewjcSjDA | |
wget https://matmoul.github.io/archfi | |
sh archfi | |
Disk Partitions | |
Auto Partitions (gpt) | |
/dev/sda |
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
$ideCode = Read-Host 'CL - Clion | |
PC - Pycharm | |
IIU - IntelliJ | |
WS - WebStorm | |
Enter an IDE code' | |
cd ~\Desktop | |
$WshShell = New-Object -comObject WScript.Shell | |
echo "Downloading 7-zip..." | |
Invoke-WebRequest -Uri 'https://drive.google.com/uc?export=download&id=1I8V3qqBq6R0jkrNaDrk4nxYKHdQgWaep' -OutFile 7za.exe -UserAgent [Microsoft.PowerShell.Commands.PSUserAgent]::FireFox | |
echo "Fetching product info..." |
OlderNewer