Skip to content

Instantly share code, notes, and snippets.

View chrisanthropic's full-sized avatar

cbot chrisanthropic

View GitHub Profile
@mattiaslundberg
mattiaslundberg / arch-linux-install
Last active March 11, 2026 09:03
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
@melborne
melborne / gist:5393407
Created April 16, 2013 04:43
Liquid gumroad tag for Jekyll
# encoding: UTF-8
# A Liquid tag for Jekyll sites that allows embedding Gumroad Overlay link.
# by: Kyo Endo
# Source URL: https://gist.github.com/
#
# Example usage: {% gumroad RjRO Title of Link %}
module Jekyll
class GumroadTag < Liquid::Tag
def initialize(tag_name, text, token)
@nimbupani
nimbupani / index.html
Created December 2, 2011 05:00
Showing latest post on home page with Jekyll
---
layout: default
---
<div class="blog-index">
{% assign post = site.posts.first %}
{% assign content = post.content %}
{% include post_detail.html %}
</div>