I hereby claim:
- I am espectalll123 on github.
- I am espectalll123 (https://keybase.io/espectalll123) on keybase.
- I have a public key whose fingerprint is C8BE 45E0 5306 0B91 4BF8 D570 DFB9 C71C E3A0 9E32
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Bitcoin XT Installation Script for Debian-like systems | |
# December 30th, 2015 @espectalll123 | |
# Based on the official instructions at https://bitcoinxt.software/apt.html | |
echo "-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: GPGTools - https://gpgtools.org | |
mQINBFXPTUoBEADLYhZu9ZrtkAZog8dis59Cx+6CqAZhQBmMQPvUZ9+9NKxa7Jt4 |
This group is meant to help each other on learning the Japanese language and deal with dank memes along the way. Please enjoy your stay, and let's get to work!
#!/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. | |
# |
/* | |
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/>. | |
*/ |
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"]?. |
#!/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 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) |
#!/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 |