Skip to content

Instantly share code, notes, and snippets.

View kwccoin's full-sized avatar

Kowloon walled city (coin) kwccoin

View GitHub Profile
@pavelbinar
pavelbinar / extract-subtitles-from-mkv.md
Last active December 24, 2023 12:10 — forked from bmaeser/subtitle-extract.txt
Extract subtitles from .mkv files on Mac OS X
@DuckOfDoom
DuckOfDoom / paredit.txt
Created February 25, 2016 20:36
Vim paredit help
*paredit.txt* Paredit Last Change: 29 Dec 2013
Paredit Mode for Vim *paredit* *slimv-paredit*
Version 0.9.12
The paredit.vim plugin performs structured editing of s-expressions used in
the Lisp, Clojure, Scheme programming languages. It may come as part of Slimv
but it is also distributed separately as a standalone plugin.
|paredit-mode| Paredit mode
@FiloSottile
FiloSottile / 32.asm
Last active March 23, 2024 12:28
NASM Hello World for x86 and x86_64 Intel Mac OS X (get yourself an updated nasm with brew)
; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32
global start
section .text
start:
push dword msg.len
push dword msg
push dword 1
mov eax, 4