Skip to content

Instantly share code, notes, and snippets.

View qhoekman's full-sized avatar

Quido Hoekman qhoekman

View GitHub Profile
@qhoekman
qhoekman / .hyper.js
Last active January 13, 2020 07:19
My Windows Desktop installation script
module.exports = {
config: {
updateChannel: "stable",
fontSize: 18,
fontFamily:
'"FuraMono Nerd Font Mono", "FuraMono Nerd Font", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
fontWeight: "normal",
@qhoekman
qhoekman / docker-compose.yaml
Last active May 31, 2024 20:52 — forked from bradp/setup.sh
New Mac Setup Script
version: "3.8"
services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
ports:
- "6000:8080"
volumes:
- open-webui:/app/backend/data
@qhoekman
qhoekman / Theme.ts
Last active October 31, 2022 12:44
export const AppTheme = {
direction: "ltr",
breakpoints: {
base: "0em",
sm: "30em",
md: "48em",
lg: "62em",
xl: "80em",
"2xl": "96em",
},
@qhoekman
qhoekman / clear-kernels.sh
Created August 15, 2018 19:09
Clear unused kernels
dpkg -l linux-{image,headers}-"[0-9]*" | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e '[0-9]' | xargs sudo apt-get -y purge