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
#!/usr/bin/env bash | |
passwords=() | |
for i in {1..100}; do | |
passwords+=($(strings /dev/urandom | grep -o '[[:alnum:]()/\\_@!:]' | tr -d [:space:] | head -c 32)) | |
done | |
echo ${passwords[$(shuf --random-source /dev/urandom -i 0-99 -n 1)]} |
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
Creative Commons Legal Code | |
CC0 1.0 Universal | |
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE | |
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN | |
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS | |
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES | |
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS | |
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM |
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
#!/usr/bin/env bash | |
wget -qO - http://www.script-o-rama.com/movie_scripts/a1/bee-movie-script-transcript-seinfeld.html | \ | |
sed -n "/<pre>/,/<\/pre>/p" | sed -e '2,$!d' -e '$d' | \ | |
lolcat -a -s 30 |
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
@import url('https://fonts.googleapis.com/css?family=Cantarell'); | |
body { | |
font-family: 'Cantarell', sans-serif; | |
font-size: 110%; | |
} | |
#small { | |
font-size: .9em; | |
} |
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
#!/usr/bin/env bash | |
sudo apt update && | |
sudo apt install -y cryptsetup e2fsprogs system-config-lvm && | |
wget -c http://ftp.debian.org/debian/pool/main/e/e2fsprogs/e2fslibs_1.43.3-1_amd64.deb http://ftp.debian.org/debian/pool/main/e/e2fsprogs/e2fsprogs_1.43.3-1_amd64.deb && | |
sudo dpkg -i e2fslibs_1.43.3-1_amd64.deb && | |
sudo dpkg -i e2fsprogs_1.43.3-1_amd64.deb |
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
;; This is my operating system configuration template | |
;; for a "desktop" setup with GNOME and E21 where the | |
;; root partition is encrypted with LUKS. | |
;; | |
;; Please notice this configuration has been used by | |
;; myself exclusively for a test VM. Basically, don't | |
;; pretend like you can get anything out of my UUID. | |
(use-modules (gnu) (gnu system nss)) | |
(use-service-modules desktop) |
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
#!/usr/bin/env bash | |
# Sorry for this atrocity. Trust me, it had to be this way. | |
sudo timedatectl set-ntp true | |
sudo chmod -R 777 ~ | |
# I tried to use Sed yet it's so ridiculously hard at times | |
sudo python - << 'EOF' |
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
fun main(args: Array<String>) { | |
val nine = fun (): Int { return 9 } | |
val funMap = mapOf<Any, () -> Any>( | |
"meme" to fun (){ println("kotlin is dank meme m8") }, | |
"nine" to fun (): Int { return nine() }, | |
9 to fun (): String { return "number nine" } | |
) | |
funMap["meme"]?.invoke() | |
for (i in 1..nine()) { | |
println(funMap[funMap["nine"]?. |
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
/* | |
Ungarbage v0.1.0.1 | |
October 18th 2016, @espectalll | |
To the extent possible under law, the author has dedicated all copyright and related and neighboring rights | |
to this software to the public domain worldwide. This software is distributed without any warranty. | |
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see | |
<http://creativecommons.org/publicdomain/zero/1.0/>. | |
*/ |
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
#!/usr/bin/env bash | |
# boot_to v0.0.1 | |
# Copyright August 28, 2016, Francisco Gómez <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# any later version. | |
# |