This file has been truncated, but you can view the full file.
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
123456 | |
password | |
12345678 | |
qwerty | |
123456789 | |
12345 | |
1234 | |
111111 | |
1234567 | |
dragon |
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/env bash | |
# A Shell Script To Automate AutoEq even more. | |
# Diab Neiroukh - 23/Feb/2020 (Licensed under the GNU GPLv3) | |
declare -a fidelityTypes=("Enhanced Fidelity" "Lower Fidelity" "Native Fidelity" "Standard Fidelity") | |
gitConfig="$PWD/.git/config" | |
pythonExe="$(which python3.7)" | |
exuent() { | |
sleep 3 && exit 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
#!/usr/bin/env bash | |
# A Shell Script To Install Parallel Compression Tools On Debian-based Systems And Replace The Default Single-Threaded Tools. | |
# Diab Neiroukh - 23/Feb/2020 (Licensed under The Unlicense) | |
sudo apt install lbzip2 pigz lunzip | |
pushd /usr/local/bin || exit | |
sudo ln -s /usr/bin/lbzip2 bzip2 | |
sudo ln -s /usr/bin/lbzip2 bunzip2 | |
sudo ln -s /usr/bin/lbzip2 bzcat | |
sudo ln -s /usr/bin/pigz gzip |
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
/* | |
CleanFox (A userChrome.css for Firefox) | |
By: Diab Neiroukh | |
Based-on: https://github.com/coekuss/quietfox by coekuss | |
Licensed-under: The MIT License | |
Last-updated: 23/Feb/2020 | |
*/ | |
* { |
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
/* | |
invertJS (A JS library for inverting colour) | |
By: Diab Neiroukh | |
Licensed-under: The GNU GPLv3 | |
Last-updated: 23/Feb/2020 | |
*/ | |
function invertcolour(colour) { | |
colour = colour.replace('#', ''); |
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
local-data: "googlevideo.com. 10800 IN A 172.217.20.132" | |
local-data: "googlevideo.com. 10800 IN AAAA 2a00:1450:4009:819::2004" | |
local-data: "www.youtube.com. 10800 IN A 216.58.204.238" | |
local-data: "www.youtube.com. 10800 IN AAAA 2a00:1450:4009:81a::200e" | |
local-data: "youtube.com. 10800 IN A 216.58.204.238" | |
local-data: "youtube.com. 10800 IN AAAA 2a00:1450:4009:81a::200e" |
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/env bash | |
# A Shell Script to embed PNGs in a SVG container. | |
# Diab Neiroukh - 5/Mar/2020 (Licensed under the GNU GPLv3) | |
imageHeight="$(convert "$1" -print "%h" /dev/null)" | |
imageWidth="$(convert "$1" -print "%w" /dev/null)" | |
echo "<svg width=\"$imageWidth\" height=\"$imageHeight\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" > | |
<image href=\"data:image/png;base64,$(base64 -w0 < "$1")\" width=\"$imageWidth\" height=\"$imageHeight\" ></image> | |
</svg>" > "${1%.png}.svg" |
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/env bash | |
# A Shell Script to maintain *ra1n bootstrap installers. | |
# Diab Neiroukh - 6/Jun/2020 (Licensed under the GNU GPLv3) | |
SCRIPTDIR="/usr/local/share/odysseyra1n" | |
SCRIPTLINK="https://raw.githubusercontent.com/coolstar/Odyssey-bootstrap/master/procursus-deploy-linux-macos.sh" | |
SCRIPTNAME="procursus-deploy-linux-macos.sh" | |
SCRIPTNEEDROOT=true | |
notifyuser() |
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/env bash | |
# A shell script to remove bloatware from Fossil and Skagen Wear OS smartwatches. | |
# Diab Neiroukh - 2/Jul/2020 (Licensed under the GNU GPLv3) | |
ticApps=( | |
"com.mobvoi.wear.fitness.aw" \ | |
"com.mobvoi.ticwear.sidewearvoicesearch" \ | |
"com.mobvoi.wear.social.aw" \ | |
"com.mobvoi.wear.account.aw" \ | |
"com.mobvoi.wear.appsservice" \ |
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
printmerge() | |
{ | |
echo "Merging \"$@\"..." | |
} | |
if [[ -z $BASETAG ]]; do | |
echo "Please set the tag to merge of this kernel's base via BASETAG env variable." | |
fi |
OlderNewer