Skip to content

Instantly share code, notes, and snippets.

View b0o's full-sized avatar
👻
Boo!

Maddison Hellstrom b0o

👻
Boo!
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Lavi Theme</string>
<key>settings</key>
<array>
<!-- Base editor settings -->
<dict>
@b0o
b0o / iqalc
Created January 10, 2025 15:19
#!/bin/bash
# iqalc = fzf + qalc ^ love
#
# (c) 2020 Maddison Hellstrom (github.com/b0o)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
@b0o
b0o / 0.md
Last active February 18, 2025 02:40
Bluesky Starter Pack List Adder

Install UserScript Follow Me

2024-12-18_21-22-05_region_re.mp4
analytic-geometry
area
arithmetic-operator
arithmetic-progression
asymptotics
binary-equation
binary-operator
binomial-coefficient
bisection
calendar
#!/usr/bin/perl
# Author: Todd Larason <[email protected]>
# $XFree86: xc/programs/xterm/vttests/256colors2.pl,v 1.1 1999/07/11 08:49:54 dawes Exp $
print "256 color mode\n\n";
# display back ground colors
for ($fgbg = 38; $fgbg <= 48; $fgbg +=10) {
// Loosely based on postprocessing shader by inigo quilez, License Creative
// Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
vec2 curve(vec2 uv) {
uv = (uv - 0.5) * 2.0;
uv *= 1.05; // Reduced from 1.1
uv.x *= 1.0 + pow((abs(uv.y) / 6.0), 2.0); // Reduced curve from 5.0 to 6.0
uv.y *= 1.0 + pow((abs(uv.x) / 5.0), 2.0); // Reduced curve from 4.0 to 5.0
uv = (uv / 2.0) + 0.5;
uv = uv * 0.95 + 0.025; // Less aggressive edge scaling
/**
Just messing around with different types of glitching effects.
*/
// try commenting/uncommenting these to isolate/combine different glitch
// effects.
#define ANALOG
#define DIGITAL
// amount of seconds for which the glitch loop occurs
@b0o
b0o / bookmarks.lua
Last active June 12, 2024 15:44
nvim-tree quickfix
-- Important: Put this in your config directory at lua/nvim-tree/renderer/decorator/bookmarks.lua
--
-- HACK: Although this file is named bookmarks.lua, it is actually a decorator
-- for the quickfix list. Because nvim-tree does not provide a way to add a custom decorator,
-- we are overriding the built-in bookmarks decorator with our own quickfix list decorator.
-- If you don't want to override the bookmarks.lua decorator, you can override a different one.
local HL_POSITION = require('nvim-tree.enum').HL_POSITION
local ICON_PLACEMENT = require('nvim-tree.enum').ICON_PLACEMENT
@b0o
b0o / Nvim Tree Preview.md
Last active April 28, 2024 05:35
Nvim-Tree Preview