Skip to content

Instantly share code, notes, and snippets.

View DaveBben's full-sized avatar

Dave Bennett DaveBben

  • Philadelphia, PA
View GitHub Profile
@Artefact2
Artefact2 / README.md
Last active July 8, 2025 00:29
GGUF quantizations overview

Which GGUF is right for me? (Opinionated)

Good question! I am collecting human data on how quantization affects outputs. See here for more information: ggml-org/llama.cpp#5962

In the meantime, use the largest that fully fits in your GPU. If you can comfortably fit Q4_K_S, try using a model with more parameters.

llama.cpp feature matrix

See the wiki upstream: https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix

@codediodeio
codediodeio / database.rules.json
Last active May 11, 2025 08:08
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
@iwalpola
iwalpola / stm32_gpio_reg.md
Last active April 8, 2025 10:07
STM32 GPIO registers cheatsheet
@diorahman
diorahman / linux-kernel-make-menuconfig-yosemite.md
Last active April 28, 2025 17:57
Run linux kernel make menuconfig on osx yosemite

osx

install ncurses, via $ brew install ncurses

edit the scripts/kconfig/Makefile, put HOSTLOADLIBES_mconf += -L/usr/local/opt/ncurses/lib -ltinfo, where the libtinfo.dylib is just a symlink to libncurses.dylib

hit the scripts/kconfig/lxdialog/check-lxdialog.sh, this is ugly!

#!/bin/sh