Skip to content

Instantly share code, notes, and snippets.

@obsoke
obsoke / dialog.html
Last active March 6, 2023 06:03
DIV vs DIALOG Fullscreen Test
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Dialog Test</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
@obsoke
obsoke / keybase.md
Created September 8, 2021 01:47
keybase.md

Keybase proof

I hereby claim:

  • I am obsoke on github.
  • I am daleee (https://keybase.io/daleee) on keybase.
  • I have a public key ASDy4LEagBjljo0_AeTlL1NxssRQ1X7Kc5nq0X3dtgacnAo

To claim this, I am signing this object:

@obsoke
obsoke / install.org
Created December 16, 2018 22:27
Installing Arch Linux on a Dell Precision 5530
  1. Burn the Arch Linux ISO onto a USB stick
  2. Boot the laptop with the boot media in it; hit F2 to enter the setup menu and then hit F12 to get to the one-time boot screen. Select the boot media containing the Arch Linux image.
  3. Connect to the internet: wifi-menu
  4. Update the system clock: timedatectl set-ntp true
  5. Partition the disk:
    1. Use lsblk to get the name of the hard drive we wish to partition.
    2. Use fdisk: fdisk /dev/<deviceName>. Don’t specify the partition.
    3. Ensure that the type of hard drive scheme(?) is GPT with p to print the current partition information.
    4. Delete the existing partitions with d.
@obsoke
obsoke / FYT_Rust_Notes.md
Created January 4, 2017 04:06
Fix Your Timestep Notes - Rust Style

Simple: Fixed Delta Time

let mut t: 0.0;
let dt = 1.0 / 60.0;

loop {
    update(t, dt);
    render();