Skip to content

Instantly share code, notes, and snippets.

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

Xerz xerz-one

💗
nyanyaaaaa~
View GitHub Profile

Keybase proof

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:

Keybase proof

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 5C9F 00F1 690E 44F4 65E3 FD27 B78C B382 84C7 9035

To claim this, I am signing this object:

@xerz-one
xerz-one / xtsetup.bash
Last active December 31, 2015 00:05
Bitcoin XT Installation Script for Debian-like systems
#!/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
@xerz-one
xerz-one / ようこそ.md
Last active July 23, 2018 11:51
Welcome to 日本語の「GROUP」
@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.
#
@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/>.
*/
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 / 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'
@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)
#!/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