Skip to content

Instantly share code, notes, and snippets.

@oscarychen
oscarychen / postgres_ltree.sql
Created March 11, 2023 02:07
Postgres Ltree Cheatsheet
CREATE EXTENSION ltree;
CREATE TABLE test (path ltree);
-- Top
-- / | \
-- Science Hobbies Collections
-- / | \
-- Astronomy Amateurs_Astronomy Pictures
@Ananto30
Ananto30 / sse.go
Last active September 5, 2024 23:04
SSE message stream in Go
// Example SSE server in Golang.
// $ go run sse.go
// Inspired from https://gist.github.com/ismasan/3fb75381cd2deb6bfa9c
package main
import (
"encoding/json"
"fmt"
"log"
@VasekPurchart
VasekPurchart / .bashrc
Last active July 23, 2024 09:11
GIT global configuration and enhancements
# used by Git (commit messages, rebase, ...)
export EDITOR=vim