Skip to content

Instantly share code, notes, and snippets.

@slok
slok / pprof.md
Last active June 1, 2025 07:45
Go pprof cheat sheet

Enable profiling

Default http server

import (
    _ "net/http/pprof"
    "net/http"
)
@joyrexus
joyrexus / README.md
Last active June 4, 2025 17:47
Perl one-liners

Hi:

perl -e 'print "hello world!\n"'

A simple filter:

perl -ne 'print if /REGEX/'

Filter out blank lines (in place):