oleg_log
1.77K subscribers
1.86K photos
129 videos
9 files
2.77K links
Shelter for antisocial programmers "Oleg"

halp: @olegkovalov
web: https://olegk.dev
fov: @oleg_fov
chat: @oleg_log_blabla
podcast: @generictalks
Download Telegram
And I think this is beautiful

func ctx2fn(ctx context.Context) func() context.Context { return func() context.Context { return ctx } }
> xzone malloc is a memory allocator for Apple OS platforms designed to mitigate heap memory safety vulnerabilities to the maximum extent possible while also achieving excellent performance. It is a part of Apple's Memory Integrity Enforcement technology.

https://github.com/apple-oss-distributions/libmalloc/blob/af3c5dc3a540eeec030930b35b1349f4de400206/doc/xzone_malloc.md
Hey, Linux gamers. Any suggestions on Linux distro?
Startup interview: please send us code you’re proud of, and we’ll review it and make a decision.

On one hand, it’s cool - no dumb LeetCode. On the other hand…it’s kind of hard to find something you’re reaaaally proud of that actually shows your skills or whatever.

Is this something new/popular on the market? I mean this type of interview.
Please open Telegram to view this post
VIEW IN TELEGRAM
Any cool programming languages to share?

Gleam, C3, Hare, etc
Python's struct module API is kinda impressive. Reminds me Malbolge.

struct.pack('<IHB', 100, 3, 255)
struct.pack('>2Q', 1, 2)
struct.pack('!f', 3.14)


Thanks to LLM's this is now not that hard to read. Yes, Go's time, I'm looking at you.