Skip to content

Instantly share code, notes, and snippets.

@shazow
shazow / ptrproxy.go
Created May 9, 2016 17:57
Safe pointer proxy for lending pointers across runtimes
package main
import "sync"
type ptrId uint
type ptrProxy struct {
sync.Mutex
count uint
lookup map[ptrId]interface{}
@shazow
shazow / Makefile
Last active January 25, 2016 01:52
My bourbon base override
all: scss
CSS_OUT = ../static/css/screen.css
SCSS_LIBS = ./lib/
$(CSS_OUT): **.scss $(SCSS_LIBS)
sassc --style nested $(addprefix -I ,$(SCSS_LIBS)) screen.scss $(CSS_OUT)
scss: $(CSS_OUT)
@shazow
shazow / a.go
Last active October 13, 2015 01:32
Constructors in Go
package tmp
import "net"
type ServerA struct {
Clients map[string]net.Conn
}
func (srv *ServerA) Accept(conn net.Conn) error {
key := conn.RemoteAddr().String()
@shazow
shazow / example.go
Last active September 12, 2015 02:51
Snippets for a blog post: Neither self nor this: Receivers in Go
type Person struct {
Name string
}
func (person Person) Talk(out io.Writer) {
fmt.Fprintf("Hello, I am %s", person.Name)
}
@shazow
shazow / convert-gifs.sh
Last active January 22, 2024 10:13
Batch convert a directory of gifs into mp4
#!/usr/bin/bash
# Convert *.gif into *.mp4, skip if already exists.
outdir="."
for path in *.gif; do
out="${outdir}/${path/.gif/}.mp4"
[[ -f "$out" ]] && continue
ffmpeg -f gif -i "${path}" "${out}"
done
@shazow
shazow / secp256k1.rb
Last active January 24, 2023 01:21
Homebrew recipe for secp256k, put it into /usr/local/Library/Formula/secp256k1.rb or run: brew install https://gist.github.com/shazow/c71c652409015479a7e6/raw/secp256k1.rb
class Secp256k1 < Formula
desc "Optimized C library for EC operations on curve secp256k1"
homepage "https://github.com/bitcoin/secp256k1"
url "https://github.com/bitcoin/secp256k1.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
def install
@shazow
shazow / learning-opengl.md
Last active August 14, 2018 18:36
Notes on learning OpenGL
@shazow
shazow / gist:6dd544b9b17e69f4cd77
Last active August 29, 2015 14:16
Go pattern? Search buffered chan
// This is getting out of hand, probably a bad idea.
func (c *Client) searchBuffer(command string) (message *irc.Message, err error) {
buffer := make(chan *irc.Message, cap(c.buffer))
Fill:
for {
select {
case message = <-c.buffer:
if message.Command == command {
#!/bin/sh
NAME="$(basename $0)"
ARCH="$(uname -sm)"
tail -n +6 $0 | tar -s "/$ARCH/$NAME/" -zx "$ARCH"
exec $0 $@
exit
(... tarball ...)
@shazow
shazow / Dockerfile
Created July 3, 2014 20:38
UWSGI Docker
# DOCKER-VERSION 0.6.1
# Borrowed from https://github.com/vvlad/dockerfiles-postgresql-9.3
#
# First run:
# $ docker build -t uwsgi -rm=true .
# $ ID=$(docker run -v "path/to/src:/app/src" -v "path/to/socks:/app/socks" -d uwsgi)
# $ docker wait $ID
# $ docker logs $ID
FROM ubuntu:12.04