Skip to content

Instantly share code, notes, and snippets.

View dmaniry's full-sized avatar

Dominique Maniry dmaniry

View GitHub Profile
@PillTime
PillTime / archlinux.md
Last active March 2, 2025 19:38
Installing Arch Linux
Notice: I might make a big revision someday to review everything, fix anything that needs fixing, and explain the reason for each step. Maybe.

Installing Arch Linux

Small notes before we start:

  • Arch Linux now comes with an installer, so if you just want a minimal system ready in a few minutes, you're better off just doing archinstall.
  • This guide is for UEFI only, not BIOS.
  • The only officially supported architecture by Arch Linux is x86_64, so make sure your computer uses that architecture before attempting to install it.
  • Some computers won't work out of the box because of bugs left by the manufacturers.
@karpathy
karpathy / gist:587454dc0146a6ae21fc
Last active December 20, 2024 04:32
An efficient, batched LSTM.
"""
This is a batched LSTM forward and backward pass
"""
import numpy as np
import code
class LSTM:
@staticmethod
def init(input_size, hidden_size, fancy_forget_bias_init = 3):