Skip to content

Instantly share code, notes, and snippets.

View bdombrow's full-sized avatar

Brent Dombrowski bdombrow

  • Castle Rock, CO
View GitHub Profile
@bitjockey42
bitjockey42 / Ubuntu 16.04 systemd-boot.md
Last active September 25, 2019 10:07
Ubuntu 16.04 using systemd-boot instead of grubby

You do not need a separate /boot partition unless you have an LVM setup (used in dm-crypt setups).

Run ubiquity -b to open the installer with the option of skipping grub installation (since we're using systemd-boot).

When you get to the screen "Ubuntu has finished installation" choose Continue testing.

Open a Terminal.

Chroot into the new system.

@PurpleBooth
PurpleBooth / README-Template.md
Last active April 22, 2024 11:45
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

#!/usr/bin/env python
# on a unix-type system, it runs like this:
# ./parse_csv.py INPUTFILE > OUTPUTFILE
# where INPUTFILE is a .csv file like the dump we were given
# it creates OUTPUTFILE, which is a .csv file like the input file,
# but with the additional parsed-out fields (OWNER_ADDR,
# OWNER_APT_SUITE, SITE_ADDR, and SITE_APT_SUITE).
import sys