Skip to content

Instantly share code, notes, and snippets.

View xerz-one's full-sized avatar
💗
nyanyaaaaa~

Xerz xerz-one

💗
nyanyaaaaa~
View GitHub Profile
@xerz-one
xerz-one / passgen.bash
Last active February 8, 2018 20:54
A Bash Password Generator
#!/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)]}
@xerz-one
xerz-one / LICENSE.txt
Last active April 17, 2019 06:28
Preseed Virtualbox drivers installer for Debian
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
@xerz-one
xerz-one / memes
Created February 26, 2017 10:43
A colorful way to read the Bee Movie script
#!/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
@xerz-one
xerz-one / debian.css
Last active January 7, 2018 15:43
My custom CSS files
@import url('https://fonts.googleapis.com/css?family=Cantarell');
body {
font-family: 'Cantarell', sans-serif;
font-size: 110%;
}
#small {
font-size: .9em;
}
#!/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
@xerz-one
xerz-one / config.scm
Last active June 26, 2017 17:00
GuixSD GNOME+E21 in LUKS
;; 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)
@xerz-one
xerz-one / patch.bash
Last active November 10, 2016 09:39
"""Patch""" for a VM I made
#!/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'
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"]?.
@xerz-one
xerz-one / Ungarbage.kt
Last active October 18, 2016 08:53
A script that destroys Windows-1252 garbage - with garbage!
/*
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/>.
*/
@xerz-one
xerz-one / boot_to.bash
Last active August 28, 2016 01:55
Simple boot manager made in Bash for fun :3
#!/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.
#