Skip to content

Instantly share code, notes, and snippets.

View MobiusHorizons's full-sized avatar

Paul Martin MobiusHorizons

View GitHub Profile
@moritzbuhl
moritzbuhl / openbsd-rockpis.sh
Last active September 11, 2021 10:39
OpenBSD Installation on the Rock Pi S
#!/bin/sh
# Jonathan helped me installing OpenBSD on a Rock Pi S this is how.
# Thank you jonathan!
# I haven't tested this again.
set -eu
if [ -z ${1:-} ] || [ ${1#sd} -lt 1 ]
then
@developit
developit / hydra-alias.md
Last active February 27, 2020 01:54
Alias to invoke Chrome Canary w/ tracing, for IRHydra

An Alias to run Chrome with tracing enabled

For Chrome Canary:

alias hydra='/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --no-sandbox --js-flags="--user-data-dir=/tmp/profile --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces"'

For regular ol' Chrome:

@Yawning
Yawning / orhttp_example.go
Created April 29, 2015 14:41
How to dispatch HTTP requests via Tor in Go.
// To the extent possible under law, the Yawning Angel has waived all copyright
// and related or neighboring rights to orhttp_example, using the creative
// commons "cc0" public domain dedication. See LICENSE or
// <http://creativecommons.org/publicdomain/zero/1.0/> for full details.
package main
import (
// Things needed by the actual interface.
"golang.org/x/net/proxy"