Skip to content

Instantly share code, notes, and snippets.

@tacf
tacf / build.zig
Last active July 17, 2025 11:18
Zig Build file for C++ Raylib Projects
// Sample build.zig file for C++ Raylib Projects
//
// Run:
// $> zig fetch --save git+https://github.com/raysan5/raylib
// $> zig build run
const std = @import("std");
const builtin = @import("builtin");
const project_name = "raylib-project";

Keybase proof

I hereby claim:

  • I am tacf on github.
  • I am tiagoacf (https://keybase.io/tiagoacf) on keybase.
  • I have a public key whose fingerprint is DF13 07EB 19A0 EB3B ADC5 6F36 845B 9308 7F95 0D88

To claim this, I am signing this object:

version: '3.1'
services:
wordpress:
image: wordpress
restart: always
ports:
- 8080:80
environment:
@tacf
tacf / full_ahk_shortcuts.ahk
Last active February 28, 2017 07:54
Full AutoHotKey Shortcuts
; Meta key : Alt
!m:: SendInput {Left Down}
!d:: SendInput {Up Down}
!s:: SendInput {Down Down}
!r:: SendInput {Right Down}
!Space:: Send {BackSpace}
^Space:: Send ^{BackSpace}
return
@tacf
tacf / ahk_hjkl_ptnative_move.ahk
Last active February 13, 2017 10:15
AutoHotKey HJKL arrow movement (Portuguese Native Layout)
; Meta key : Alt
!m:: SendInput {Left Down}
!d:: SendInput {Up Down}
!s:: SendInput {Down Down}
!r:: SendInput {Right Down}
return
@tacf
tacf / vimium_pt_native_shortcuts.txt
Last active February 9, 2017 13:30
Vimium PT Native Layout Shortcuts
# Insert your preferred key mappings here.
unmapAll
map d scrollUp
map s scrollDown
map m scrollLeft
map r scrollRight
map uu scrollToTop