reddit_programming | Technologies

Telegram-канал reddit_programming - Reddit Programming

212

I will send you newest post from subreddit /r/programming

Subscribe to a channel

Reddit Programming

Programming With Less Than Nothing
https://www.reddit.com/r/programming/comments/1odyyao/programming_with_less_than_nothing/

submitted by /u/cheerfulboy (https://www.reddit.com/user/cheerfulboy)
[link] (https://joshmoody.org/blog/programming-with-less-than-nothing/) [comments] (https://www.reddit.com/r/programming/comments/1odyyao/programming_with_less_than_nothing/)

Читать полностью…

Reddit Programming

Why SSA?
https://www.reddit.com/r/programming/comments/1odwmyh/why_ssa/

submitted by /u/swe129 (https://www.reddit.com/user/swe129)
[link] (https://mcyoung.xyz/2025/10/21/ssa-1/) [comments] (https://www.reddit.com/r/programming/comments/1odwmyh/why_ssa/)

Читать полностью…

Reddit Programming

I built a mobile game in Godot from scratch which now has over 1k+ players after just 1 month after release — here’s what I learned.
https://www.reddit.com/r/programming/comments/1odvevs/i_built_a_mobile_game_in_godot_from_scratch_which/

<!-- SC_OFF -->Hi guys, i just released my game "Hunt Escape" about 1 month ago (for now it's just available on the Google Play Store) and it just recently exceeded the 1k+ installations goal. I need to say before this game i have never touched a game engine before (i only had experience in regular C++ and the Qt GUI Framework) and i really need to say that game engines are extremely powerful and at first can be a bit overwhelming but i was able to work quite well with the Godot engine after about 1-2 weeks. Now i want to share my thoughts about programming a whole game here and maybe give some other indie devs some tips: Pick & Stick: The first question you should ask yourself when creating a game is always "What do i want to create?", and when this first question is answered you then need to ask yourself "Which engine or framework do i want to use? What fits best?" then when you have finally picked your game engine for your game it will be very important for you to stick to that exact engine or framework to avoid major project rewamps. Don't rush things: i noticed that trying to get things done as quickly as possible has 2 major negative effects, first of all it kills the fun and beauty of creating a game and even more important you will propably need to invest more time later when the features are not well programmed. Create & maintain TODO lists: Now this point might sound obvious but the thing is a lot of people do create TODO lists that is correct, but most of them do NOT maintain them and then they think "This TODO List is outdated, i am just gonna delete it or never touch it again". For me TODO lists were an absolute game changer. I also made a kind of "archive" in my TODO list where i moved all my features that i implemented from "TODO" to "ARCHIVE" which really boosts motivation when you see how much you already did for this project! :D Getting your app accepted on Google Play: getting your game accepted on the Google Play Store is actually not as hard as people on the internet claim it to be. Sure you need to aquire at least 12 Beta Tester for your game and run the Beta for 14 days but after that your game should be accepted when no major issues appeared during the Beta (i also found out working with some emulators can work when trying to aquire the 12 Beta Testers 👀) Marketing: Well this is probably the hardest part for an indie developer like me ... I need to say that social media can and will work long term if you have enough discipline but creating content and programming the game at the same time can really take a lot of your time which is why so much devs quit at this point. But well i also got some tips for you here: Social Media: TikTok and Instagram are the best platforms to reach a large audience, but be warned that the first few videos or posts will probably not perform very well, you just need to keep pushing until 1 video or post goes viral (then from my experience it will be easier to get more views on the next posts) Google Ads: I am not gonna lie this is a game changer (but at it's cost), i am running my very first campaign now for about 2 weeks and i got about 1,5k installs in those 2 weeks (with a daily budget of 5€). Surely as a indie dev you can't run the campaign forever because it costs way to much money but it is extremely useful to get your first downloads to look more serious on your store page (because 1000+ Downloads builds more trust then for example 10+ Downloads - i think you get what i mean) I think that everybody can create a good game which performs well on the leading App stores with enough courage and a bit of Know-How.

Читать полностью…

Reddit Programming

Boot.dev just reached the 100k milestone!!
https://www.reddit.com/r/programming/comments/1odssnz/bootdev_just_reached_the_100k_milestone/

<!-- SC_OFF -->If you’re looking to learn, give em’ a try aight mate? Good luck learning!! <!-- SC_ON --> submitted by /u/Felixmatias (https://www.reddit.com/user/Felixmatias)
[link] (http://youtube.com/post/UgkxPFcm3fzbzeXDFO9jtPu4CH0bEpZN7rJj?si=_VGKgQQN7OK9Ow-p) [comments] (https://www.reddit.com/r/programming/comments/1odssnz/bootdev_just_reached_the_100k_milestone/)

Читать полностью…

Reddit Programming

Sinkhorn-Knopp Algorithm: Like Softmax but for Optimal Transport
https://www.reddit.com/r/programming/comments/1oc3ond/sinkhornknopp_algorithm_like_softmax_but_for/

submitted by /u/DataBaeBee (https://www.reddit.com/user/DataBaeBee)
[link] (https://leetarxiv.substack.com/p/sinkhorn-knopp-algorithm-24d) [comments] (https://www.reddit.com/r/programming/comments/1oc3ond/sinkhornknopp_algorithm_like_softmax_but_for/)

Читать полностью…

Reddit Programming

LogMod: What if C had a logging framework with modern semantics?
https://www.reddit.com/r/programming/comments/1oc2h8k/logmod_what_if_c_had_a_logging_framework_with/

<!-- SC_OFF -->In my own experience when looking into C logging libraries, I found that they either rely on hidden global state or quietly calls malloc behind the scenes. In environments where you need deterministic memory usage and explicit control over resources, that’s problematic. I wanted to see if it was possible to bring more “modern” logging semantics - things like configurable contexts, custom labels, colour coding, callbacks and thread‐safety - into plain ANSI C without using dynamic memory or preprocessor magic. (it is possible!) LogMod is the result. It’s a single‑header library that lets you initialise a logging context with a fixed table of loggers, pass that context around instead of using globals, define your own severity levels and colours, hook in custom callbacks, and even make it thread‑safe with a user‑supplied lock. It avoids malloc entirely. The challenge was fitting all of this into a few hundred lines of portable code and retaining C’s “zero-overhead” philosophy. <!-- SC_ON --> submitted by /u/LucasMull (https://www.reddit.com/user/LucasMull)
[link] (https://github.com/lcsmuller/logmod) [comments] (https://www.reddit.com/r/programming/comments/1oc2h8k/logmod_what_if_c_had_a_logging_framework_with/)

Читать полностью…

Reddit Programming

Tracking Down a Regression in Mesa 3D
https://www.reddit.com/r/programming/comments/1obwp46/tracking_down_a_regression_in_mesa_3d/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://vkoskiv.com/mesa-regression/) [comments] (https://www.reddit.com/r/programming/comments/1obwp46/tracking_down_a_regression_in_mesa_3d/)

Читать полностью…

Reddit Programming

Ruby Butler: It’s Time to Rethink RubyGems and Bundler
https://www.reddit.com/r/programming/comments/1obwo5e/ruby_butler_its_time_to_rethink_rubygems_and/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://rubyelders.com/writings/2025-10-ruby-butler-1.html) [comments] (https://www.reddit.com/r/programming/comments/1obwo5e/ruby_butler_its_time_to_rethink_rubygems_and/)

Читать полностью…

Reddit Programming

Some Smalltalk about Ruby Loops
https://www.reddit.com/r/programming/comments/1obwnbn/some_smalltalk_about_ruby_loops/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://tech.stonecharioteer.com/posts/2025/ruby-loops/) [comments] (https://www.reddit.com/r/programming/comments/1obwnbn/some_smalltalk_about_ruby_loops/)

Читать полностью…

Reddit Programming

Code in the 1986's Structure and Interpretation of Computer Programs (SICP) by Gerry Sussman and Hal Abelson
https://www.reddit.com/r/programming/comments/1obwlzj/code_in_the_1986s_structure_and_interpretation_of/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://github.com/felipap/sicp-code) [comments] (https://www.reddit.com/r/programming/comments/1obwlzj/code_in_the_1986s_structure_and_interpretation_of/)

Читать полностью…

Reddit Programming

Some Advice for First Time Job Seekers
https://www.reddit.com/r/programming/comments/1obwba5/some_advice_for_first_time_job_seekers/

<!-- SC_OFF -->This is based on my experiences finding work throughout my career. I had to find new positions much more often that I would have liked to and this informs the video. There is no silver bullet here, just some straightforward advice and analysis of the current job environment. <!-- SC_ON --> submitted by /u/stumblingtowards (https://www.reddit.com/user/stumblingtowards)
[link] (https://youtu.be/BAfs7UOmyl0) [comments] (https://www.reddit.com/r/programming/comments/1obwba5/some_advice_for_first_time_job_seekers/)

Читать полностью…

Reddit Programming

C++ Weekly - Ep 503 - C++26's Expansion Statements (template for)
https://www.reddit.com/r/programming/comments/1obsz7o/c_weekly_ep_503_c26s_expansion_statements/

submitted by /u/BlueGoliath (https://www.reddit.com/user/BlueGoliath)
[link] (https://www.youtube.com/watch?v=yaWiGLSDc64) [comments] (https://www.reddit.com/r/programming/comments/1obsz7o/c_weekly_ep_503_c26s_expansion_statements/)

Читать полностью…

Reddit Programming

Durable Background Execution with Go and SQLite
https://www.reddit.com/r/programming/comments/1objpr4/durable_background_execution_with_go_and_sqlite/

submitted by /u/roblaszczak (https://www.reddit.com/user/roblaszczak)
[link] (https://threedots.tech/post/sqlite-durable-execution/) [comments] (https://www.reddit.com/r/programming/comments/1objpr4/durable_background_execution_with_go_and_sqlite/)

Читать полностью…

Reddit Programming

8 Lessons I Learned the Hard Way from 8 Years as a Software Engineer
https://www.reddit.com/r/programming/comments/1obh3t2/8_lessons_i_learned_the_hard_way_from_8_years_as/

submitted by /u/thehustlingengineer (https://www.reddit.com/user/thehustlingengineer)
[link] (https://open.substack.com/pub/thehustlingengineer/p/8-lessons-i-learned-the-hard-way?r=yznlc&amp;utm_medium=ios) [comments] (https://www.reddit.com/r/programming/comments/1obh3t2/8_lessons_i_learned_the_hard_way_from_8_years_as/)

Читать полностью…

Reddit Programming

12: A chord progression and descending line
https://www.reddit.com/r/programming/comments/1obf802/12_a_chord_progression_and_descending_line/

submitted by /u/apeloverage (https://www.reddit.com/user/apeloverage)
[link] (https://www.youtube.com/watch?v=J8tp-ccDy9E) [comments] (https://www.reddit.com/r/programming/comments/1obf802/12_a_chord_progression_and_descending_line/)

Читать полностью…

Reddit Programming

Supply Chain Attack Targets VS Code Extensions With ‘GlassWorm’ Malware
https://www.reddit.com/r/programming/comments/1odxh5x/supply_chain_attack_targets_vs_code_extensions/

submitted by /u/Nimelrian (https://www.reddit.com/user/Nimelrian)
[link] (https://www.securityweek.com/supply-chain-attack-targets-vs-code-extensions-with-glassworm-malware/) [comments] (https://www.reddit.com/r/programming/comments/1odxh5x/supply_chain_attack_targets_vs_code_extensions/)

Читать полностью…

Reddit Programming

What do you think? Let me know your thoughts :D Have you ever created and published a mobile game? <!-- SC_ON --> submitted by /u/Embarrassed_South_63 (https://www.reddit.com/user/Embarrassed_South_63)
[link] (https://play.google.com/store/apps/details?id=org.qtproject.example.HuntEscape) [comments] (https://www.reddit.com/r/programming/comments/1odvevs/i_built_a_mobile_game_in_godot_from_scratch_which/)

Читать полностью…

Reddit Programming

Can I call a pure-Python library from native C++ without embedding the interpreter or starting a subprocess?
https://www.reddit.com/r/programming/comments/1oducfa/can_i_call_a_purepython_library_from_native_c/

<!-- SC_OFF -->just curiosity to know, Is there any other techniques available or can i use FFI to use libraries which is written purely in python like DeepSeek-OCR, rather than embedding python's interpreter, library in whl and python code inside cpp or sub process like system("python3 main.py argparse-param") or popen or IPC <!-- SC_ON --> submitted by /u/nonesubham (https://www.reddit.com/user/nonesubham)
[link] (https://huggingface.co/deepseek-ai/DeepSeek-OCR) [comments] (https://www.reddit.com/r/programming/comments/1oducfa/can_i_call_a_purepython_library_from_native_c/)

Читать полностью…

Reddit Programming

How Engineering Teams Set Goals and Measure Performance
https://www.reddit.com/r/programming/comments/1odobik/how_engineering_teams_set_goals_and_measure/

submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://newsletter.eng-leadership.com/p/how-engineering-teams-set-goals-and) [comments] (https://www.reddit.com/r/programming/comments/1odobik/how_engineering_teams_set_goals_and_measure/)

Читать полностью…

Reddit Programming

AI bro introduces regressions in the LTS Linux kernel
https://www.reddit.com/r/programming/comments/1oc38d2/ai_bro_introduces_regressions_in_the_lts_linux/

submitted by /u/BlueGoliath (https://www.reddit.com/user/BlueGoliath)
[link] (https://xcancel.com/spendergrsec/status/1979997322646786107) [comments] (https://www.reddit.com/r/programming/comments/1oc38d2/ai_bro_introduces_regressions_in_the_lts_linux/)

Читать полностью…

Reddit Programming

The future of Python web services looks GIL-free
https://www.reddit.com/r/programming/comments/1obwpap/the_future_of_python_web_services_looks_gilfree/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://blog.baro.dev/p/the-future-of-python-web-services-looks-gil-free) [comments] (https://www.reddit.com/r/programming/comments/1obwpap/the_future_of_python_web_services_looks_gilfree/)

Читать полностью…

Reddit Programming

In favor of comments, what does empirical engineering say? (2022)
https://www.reddit.com/r/programming/comments/1obwokv/in_favor_of_comments_what_does_empirical/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://sadraskol.com/posts/in-favor-of-comments-what-does-empirical-engineering-says/) [comments] (https://www.reddit.com/r/programming/comments/1obwokv/in_favor_of_comments_what_does_empirical/)

Читать полностью…

Reddit Programming

Fil-C is a fanatically compatible memory-safe implementation of C and C++
https://www.reddit.com/r/programming/comments/1obwnkm/filc_is_a_fanatically_compatible_memorysafe/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://fil-c.org/) [comments] (https://www.reddit.com/r/programming/comments/1obwnkm/filc_is_a_fanatically_compatible_memorysafe/)

Читать полностью…

Reddit Programming

How to stop Linux threads cleanly
https://www.reddit.com/r/programming/comments/1obwmm6/how_to_stop_linux_threads_cleanly/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://mazzo.li/posts/stopping-linux-threads.html) [comments] (https://www.reddit.com/r/programming/comments/1obwmm6/how_to_stop_linux_threads_cleanly/)

Читать полностью…

Reddit Programming

Intel and AMD standardise ChkTag to bring Memory Safety to x86
https://www.reddit.com/r/programming/comments/1obwl2a/intel_and_amd_standardise_chktag_to_bring_memory/

submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://community.intel.com/t5/Blogs/Tech-Innovation/open-intel/ChkTag-x86-Memory-Safety/post/1721490) [comments] (https://www.reddit.com/r/programming/comments/1obwl2a/intel_and_amd_standardise_chktag_to_bring_memory/)

Читать полностью…

Reddit Programming

We Re-Built Our Integration Service Using Postgres and Go
https://www.reddit.com/r/programming/comments/1obvokr/we_rebuilt_our_integration_service_using_postgres/

<!-- SC_OFF -->We built our own queue system using golang and postgres <!-- SC_ON --> submitted by /u/Privann (https://www.reddit.com/user/Privann)
[link] (https://priver.dev/blog/we-rebuilt-our-integration-service-using-postgres-and-go/) [comments] (https://www.reddit.com/r/programming/comments/1obvokr/we_rebuilt_our_integration_service_using_postgres/)

Читать полностью…

Reddit Programming

It's always DNS
https://www.reddit.com/r/programming/comments/1obk87w/its_always_dns/

submitted by /u/Ulyssesp (https://www.reddit.com/user/Ulyssesp)
[link] (https://www.forbes.com/sites/kateoflahertyuk/2025/10/20/aws-outage-what-happened-and-what-to-do-next/) [comments] (https://www.reddit.com/r/programming/comments/1obk87w/its_always_dns/)

Читать полностью…

Reddit Programming

Why Large Language Models Won’t Replace Engineers Anytime Soon
https://www.reddit.com/r/programming/comments/1objb52/why_large_language_models_wont_replace_engineers/

<!-- SC_OFF -->Insight into the mathematical and cognitive limitations that prevent large language models from achieving true human-like engineering intelligence <!-- SC_ON --> submitted by /u/gamunu (https://www.reddit.com/user/gamunu)
[link] (https://fastcode.io/2025/10/20/why-large-language-models-wont-replace-engineers-anytime-soon/) [comments] (https://www.reddit.com/r/programming/comments/1objb52/why_large_language_models_wont_replace_engineers/)

Читать полностью…

Reddit Programming

When if is just a function
https://www.reddit.com/r/programming/comments/1obh3ex/when_if_is_just_a_function/

submitted by /u/middayc (https://www.reddit.com/user/middayc)
[link] (https://ryelang.org/blog/posts/if-as-function-blogpost-working-on-it_ver1/) [comments] (https://www.reddit.com/r/programming/comments/1obh3ex/when_if_is_just_a_function/)

Читать полностью…

Reddit Programming

GitHub's Climate Action Plan for Developers
https://www.reddit.com/r/programming/comments/1obdyye/githubs_climate_action_plan_for_developers/

<!-- SC_OFF -->Take tangible steps as a developer to green your code and green the planet. Explore over 60,000 green software and climate-focused repositories on GitHub. We've curated tools and projects to help you kick-start your climate action journey and contribute to achieving net zero carbon emissions. <!-- SC_ON --> submitted by /u/augspurger (https://www.reddit.com/user/augspurger)
[link] (https://github.com/social-impact/focus-areas/environmental-sustainability/climate-action-plan-for-developers) [comments] (https://www.reddit.com/r/programming/comments/1obdyye/githubs_climate_action_plan_for_developers/)

Читать полностью…
Subscribe to a channel