Skip to content

Instantly share code, notes, and snippets.

View burgagutierrez's full-sized avatar
:shipit:

Enrique burgagutierrez

:shipit:
View GitHub Profile
@burgagutierrez
burgagutierrez / config.ghostyy
Created March 21, 2026 12:17
My Ghostty Setup
background-opacity = 0.85
background = #000000
shell-integration = zsh
font-family = "Monaco"
font-size = 12
font-thicken = true
background = #000000
foreground = #ffffff
cursor-color = #ffffff
@burgagutierrez
burgagutierrez / ConcurrentHeap.go
Last active July 20, 2019 23:53
Go concurrent priority queue / heap
package main
import "sync"
type item struct {
value interface{}
priority int
}
type nHeap struct {