Skip to content

Instantly share code, notes, and snippets.

View 0x4c756e61's full-sized avatar
πŸ³οΈβ€βš§οΈ

Lyna 0x4c756e61

πŸ³οΈβ€βš§οΈ
View GitHub Profile
@0x4c756e61
0x4c756e61 / access.md
Created October 5, 2025 14:47
Temporary VPN (safer and free) to access age-gated websites

Easily bypass AGE-GATED websites using Google Cloud Console and Tailscale

As of recently, politics in countless countries decided to track everyone, willing to access whatever website they deem dangerous in the name of "protecting the children", as usual sigh.

Such websites include adult-content creation, but in some countries this extends to (or will be extended to) social media, some video games, and even this very website, GitHub.

The obvious but icky solution

Note

Most VPNs, like NordVPN, GhostVPN, Mullvad, etc are in reality proxies, as they do not offer a Virtual Network, tailscale on the other hand, works like your home router, but virtualized, meaning you get access to your own Virtual Private Network, VPN for short. But I digress...

@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");
});
@0x4c756e61
0x4c756e61 / battery.py
Last active January 15, 2023 11:57
Numwors Battery test script
import ion
import time
def work():
start = time.monotonic()
while (time.monotonic() - start < 30):
_ = 9999**9999