Skip to content

Instantly share code, notes, and snippets.

View firminunderscore's full-sized avatar
🏠
At home

Firmin_ firminunderscore

🏠
At home
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 21, 2024 20:07
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@0x4c756e61
0x4c756e61 / csocket.zig
Last active April 15, 2024 14:37
C socket programming in Zig
// compile with zig build-exe srv.c.zig -lc (zig @master)
const c = @cImport({
@cInclude("sys/socket.h");
@cInclude("sys/types.h");
@cInclude("arpa/inet.h");
@cInclude("unistd.h");
@cInclude("netinet/in.h");
});