Reddit Programming
209 subscribers
1.22K photos
123K links
I will send you newest post from subreddit /r/programming
Download Telegram
The enshittification of tech jobs
https://www.reddit.com/r/programming/comments/1mjygiu/the_enshittification_of_tech_jobs/

<!-- SC_OFF -->This is not the newest article by Cory Doctorow, but I did not see it on this subreddit yet. His angle on the AI is that it not only replaces some of the jobs but it's mere existence is used to negotiate the compensation down. <!-- SC_ON --> submitted by /u/JumbleGuide (https://www.reddit.com/user/JumbleGuide)
[link] (https://doctorow.medium.com/https-pluralistic-net-2025-04-25-some-animals-are-more-equal-than-others-9acd84d46742) [comments] (https://www.reddit.com/r/programming/comments/1mjygiu/the_enshittification_of_tech_jobs/)
Tamp: The world's best compression library for microcontrollers. Try it online now with our new javascript bindings.
https://www.reddit.com/r/programming/comments/1mjz519/tamp_the_worlds_best_compression_library_for/

<!-- SC_OFF -->Tamp is a low-memory, DEFLATE-inspired lossless compression library optimized for embedded and resource-constrained environments. Tamp delivers the highest data compression ratios, while using the least amountof RAM and firmware storage. We just recently added support for javascript (compiling the C library to WASM via Emscripten) and created a demo website so it's easy to try it on files and text without having to install anything! <!-- SC_ON --> submitted by /u/guyfrom7up (https://www.reddit.com/user/guyfrom7up)
[link] (https://brianpugh.github.io/tamp/) [comments] (https://www.reddit.com/r/programming/comments/1mjz519/tamp_the_worlds_best_compression_library_for/)
Scar - A language for easy concurrency, statically typed, with clean syntax
https://www.reddit.com/r/programming/comments/1mkhznb/scar_a_language_for_easy_concurrency_statically/

<!-- SC_OFF -->Because of the poor state of multithreading in Nim and the reliance on external libraries like Arraymancer for heavy numerical workloads (also the performance issues with boxed values due to ref object everywhere), I started writing a language from scratch, with built-in support for concurrency via parallel blocks (without macros) and a C backend, similar to Nim. Example: int glob_value = 0 float glob_value_2 = 0.0 parallel: glob_value = some_heavy_task() glob_value_2 = some_other_heavy_task() The idea is to make things like accessing shared memory concurrently a trivial process by automating the generation of thread synchronization code. Also there are parallel fors, like so: parallel for x = 1 to 5: print "x = %d" | x parallel for y = 10 to 20: print "y = %d" | y sleep 0.1 print "Nested parallel for loop completed." It is not ready for use at all currently, though will likely see further development until it is. <!-- SC_ON --> submitted by /u/god1235414 (https://www.reddit.com/user/god1235414)
[link] (https://github.com/navid-m/scar) [comments] (https://www.reddit.com/r/programming/comments/1mkhznb/scar_a_language_for_easy_concurrency_statically/)
How To Host A Meetup
https://www.reddit.com/r/programming/comments/1mkmy7e/how_to_host_a_meetup/

<!-- SC_OFF -->Since a lot of local programming meetups died during Covid and never came back up, I wrote an article with some tips for hosting your own meetup—hopefully this will inspire someone to start a new meetup group or resuscitate an old one. If you have any tips or suggestions for hosting a meetup, please share in the comments! <!-- SC_ON --> submitted by /u/JohnyTex (https://www.reddit.com/user/JohnyTex)
[link] (https://functionalsoftware.se/posts/how-to-host-a-meetup) [comments] (https://www.reddit.com/r/programming/comments/1mkmy7e/how_to_host_a_meetup/)
Learn C by Building Projects – From FizzBuzz to Neural Networks!
https://www.reddit.com/r/programming/comments/1mkp1vu/learn_c_by_building_projects_from_fizzbuzz_to/

<!-- SC_OFF -->I've created a curated collection of small C projects designed to help you master core concepts through hands-on practice. 🌟 What’s Inside: Projects sorted by difficulty (1 to 5) Clear objectives for each project Diverse topics: Cryptography, graphics (SDL2), physics sims, data structures, OS internals, and more <!-- SC_ON --> submitted by /u/FraLindi (https://www.reddit.com/user/FraLindi)
[link] (https://github.com/mrparsing/C-Projects) [comments] (https://www.reddit.com/r/programming/comments/1mkp1vu/learn_c_by_building_projects_from_fizzbuzz_to/)