Skip to content

Instantly share code, notes, and snippets.

View demianbrecht's full-sized avatar

Demian Brecht demianbrecht

View GitHub Profile
@demianbrecht
demianbrecht / arch-linux-install
Created March 30, 2020 04:20 — forked from mattiaslundberg/arch-linux-install
Minimal instructions for installing arch linux on an UEFI system with full system encryption using dm-crypt and luks
# Install ARCH Linux with encrypted file-system and UEFI
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
# Download the archiso image from https://www.archlinux.org/
# Copy to a usb-drive
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
# Set swedish keymap
@demianbrecht
demianbrecht / names.java
Created March 25, 2019 19:42 — forked from egrim/names.java
Names to be sorted
public class Names {
public final static String[] NAMES = {
"Britteny Bisignano",
"Vania Millikan",
"Ching Atnip",
"Willie Happ",
"Renata Dower",
"Jillian Beauchemin",
"Garth Bixby",
"Jared Honea",
#!/bin/bash
OPENSSL_VERSION="1.0.1g"
curl -O http://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz
tar -xvzf openssl-$OPENSSL_VERSION.tar.gz
mv openssl-$OPENSSL_VERSION openssl_i386
tar -xvzf openssl-$OPENSSL_VERSION.tar.gz
mv openssl-$OPENSSL_VERSION openssl_x86_64
cd openssl_i386