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 November 9, 2024 20:15
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

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

Warning

There are now two quest types ("stream" and "play")! Pay attention to the instructions!

@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");
});

Taskmaster is a OneCommander utility to replace Explorer dialogs for file operations.

It uses Windows native APIs for Copy/Move operations and not hacks like some other copy/move replacements to speed-up operations. That means it won't break any speed records but it is as reliable as Explorer's operations.

Improvements over Explorer dialogs:

  • Ability to copy deep folder structures longer than 255 characters
  • Copied files and folders keep Created and Modified dates (Explorer creates folders on copy with a new date, ruining backups)
  • (Soon) Same theme/style as OC (including Dark theme that Explorer dialogs don't yet have)
  • (Soon) Prompts only once for elevation (Admin)