Skip to content

Instantly share code, notes, and snippets.

View daniel-ciaglia's full-sized avatar

Daniel Ciaglia daniel-ciaglia

View GitHub Profile
@daniel-ciaglia
daniel-ciaglia / cleanup.md
Created February 1, 2026 16:17
Linux cleanup
# Manjaro/Arch
yay -Scc
# Homebrew
brew cleanup -s
rm -rf $(brew --cache)
# Golang
go clean -cache
go clean -modcache
# Node
@daniel-ciaglia
daniel-ciaglia / Dockerfile
Last active November 2, 2024 17:11
Build DevToys for Debian inside docker
# Getting https://devtoys.app/ onto Linux
# run `docker build --output type=local,dest=. .`
# fingers crossed + find your deb in your local path ;-)
# you need `libwebkitgtk-6.0-4` on your machine
# Read more over here: https://github.com/DevToys-app/Publish
# ---------------------------------------------------------------------
FROM mcr.microsoft.com/dotnet/sdk:8.0 as base