The dogma of entity-based Services and Repositories
https://www.reddit.com/r/programming/comments/1ufc0ki/the_dogma_of_entitybased_services_and_repositories/
<!-- SC_OFF -->Every day I see more projects where a layer-per-entity approach is created by default: UserService, UserRepository, OrderService, OrderRepository, and so on. My issue is not with layering itself, but with how these layers are used. In theory, a Service should represent application behavior: something that encapsulates real use cases or meaningful interactions with external systems (payments, emails, APIs, etc.). Something with enough significance to justify being isolated. A Repository, in theory, should exist when there is real complexity in data access: multiple data sources, non-trivial persistence logic, evolving storage mechanisms, etc. However, in practice, they often degrade into something else: services that simply delegate calls repositories that are thin wrappers around an ORM interfaces with no meaningful alternative implementation At that point, the abstraction starts to lose its purpose. Why not use the ORM directly when there is no real complexity to hide? Why do we default to intermediate layers that don’t truly represent either a service or a repository in their original sense? It often feels like they add files, indirection, and noise without improving clarity. I’m not saying these layers are inherently bad. I’m trying to understand why they are so often applied by default, even when they don’t serve their actual purpose. Does this approach really improve clarity, or does it just introduce unnecessary complexity? For example, instead of organizing code around generic services per model, we could structure it around explicit use cases for concrete system actions. These would still live within an application/service layer in the sense described by Fowler, but without forcing a generic ModelService structure for everything. The goal would be to design around intent rather than around structural templates—so the code reflects what the system does, not just how it is layered. <!-- SC_ON --> submitted by /u/Character-Method-720 (https://www.reddit.com/user/Character-Method-720)
[link] (https://martinfowler.com/eaaCatalog/serviceLayer.html) [comments] (https://www.reddit.com/r/programming/comments/1ufc0ki/the_dogma_of_entitybased_services_and_repositories/)
https://www.reddit.com/r/programming/comments/1ufc0ki/the_dogma_of_entitybased_services_and_repositories/
<!-- SC_OFF -->Every day I see more projects where a layer-per-entity approach is created by default: UserService, UserRepository, OrderService, OrderRepository, and so on. My issue is not with layering itself, but with how these layers are used. In theory, a Service should represent application behavior: something that encapsulates real use cases or meaningful interactions with external systems (payments, emails, APIs, etc.). Something with enough significance to justify being isolated. A Repository, in theory, should exist when there is real complexity in data access: multiple data sources, non-trivial persistence logic, evolving storage mechanisms, etc. However, in practice, they often degrade into something else: services that simply delegate calls repositories that are thin wrappers around an ORM interfaces with no meaningful alternative implementation At that point, the abstraction starts to lose its purpose. Why not use the ORM directly when there is no real complexity to hide? Why do we default to intermediate layers that don’t truly represent either a service or a repository in their original sense? It often feels like they add files, indirection, and noise without improving clarity. I’m not saying these layers are inherently bad. I’m trying to understand why they are so often applied by default, even when they don’t serve their actual purpose. Does this approach really improve clarity, or does it just introduce unnecessary complexity? For example, instead of organizing code around generic services per model, we could structure it around explicit use cases for concrete system actions. These would still live within an application/service layer in the sense described by Fowler, but without forcing a generic ModelService structure for everything. The goal would be to design around intent rather than around structural templates—so the code reflects what the system does, not just how it is layered. <!-- SC_ON --> submitted by /u/Character-Method-720 (https://www.reddit.com/user/Character-Method-720)
[link] (https://martinfowler.com/eaaCatalog/serviceLayer.html) [comments] (https://www.reddit.com/r/programming/comments/1ufc0ki/the_dogma_of_entitybased_services_and_repositories/)
Building an Entity Component System: Data Oriented Hierarchies
https://www.reddit.com/r/programming/comments/1ufcwid/building_an_entity_component_system_data_oriented/
<!-- SC_OFF -->Data Oriented Design (https://en.wikipedia.org/wiki/Data-oriented_design) is the practice of building code that's optimized for the hardware it runs on. Entity Component Systems help writing DOD-friendly code by laying out otherwise allocation-heavy game data in contiguous arrays. A challenge in gamedev however is that lots of game data is stored and accessed as hierarchies that change frequently, which makes them notoriously difficult to store as contiguous arrays. This article goes over a number of techniques an Entity Component System can use to integrate hierarchies with the core datamodel in a way that improves the performance of the ECS. Written mostly for gamedev, but also applies to other hierarchy-heavy applications, like UI. <!-- SC_ON --> submitted by /u/ajmmertens (https://www.reddit.com/user/ajmmertens)
[link] (https://ajmmertens.medium.com/building-an-ecs-data-oriented-hierarchies-62fb2847d100) [comments] (https://www.reddit.com/r/programming/comments/1ufcwid/building_an_entity_component_system_data_oriented/)
https://www.reddit.com/r/programming/comments/1ufcwid/building_an_entity_component_system_data_oriented/
<!-- SC_OFF -->Data Oriented Design (https://en.wikipedia.org/wiki/Data-oriented_design) is the practice of building code that's optimized for the hardware it runs on. Entity Component Systems help writing DOD-friendly code by laying out otherwise allocation-heavy game data in contiguous arrays. A challenge in gamedev however is that lots of game data is stored and accessed as hierarchies that change frequently, which makes them notoriously difficult to store as contiguous arrays. This article goes over a number of techniques an Entity Component System can use to integrate hierarchies with the core datamodel in a way that improves the performance of the ECS. Written mostly for gamedev, but also applies to other hierarchy-heavy applications, like UI. <!-- SC_ON --> submitted by /u/ajmmertens (https://www.reddit.com/user/ajmmertens)
[link] (https://ajmmertens.medium.com/building-an-ecs-data-oriented-hierarchies-62fb2847d100) [comments] (https://www.reddit.com/r/programming/comments/1ufcwid/building_an_entity_component_system_data_oriented/)
What ORMs have taught me: just learn SQL
https://www.reddit.com/r/programming/comments/1uo1w91/what_orms_have_taught_me_just_learn_sql/
submitted by /u/Either_Collection349 (https://www.reddit.com/user/Either_Collection349)
[link] (https://wozniak.ca/blog/2014/08/03/1/index.html) [comments] (https://www.reddit.com/r/programming/comments/1uo1w91/what_orms_have_taught_me_just_learn_sql/)
https://www.reddit.com/r/programming/comments/1uo1w91/what_orms_have_taught_me_just_learn_sql/
submitted by /u/Either_Collection349 (https://www.reddit.com/user/Either_Collection349)
[link] (https://wozniak.ca/blog/2014/08/03/1/index.html) [comments] (https://www.reddit.com/r/programming/comments/1uo1w91/what_orms_have_taught_me_just_learn_sql/)
Faster Builds with Elm 0.19.2
https://www.reddit.com/r/programming/comments/1uoumse/faster_builds_with_elm_0192/
submitted by /u/wheatBread (https://www.reddit.com/user/wheatBread)
[link] (https://elm-lang.org/news/faster-builds) [comments] (https://www.reddit.com/r/programming/comments/1uoumse/faster_builds_with_elm_0192/)
https://www.reddit.com/r/programming/comments/1uoumse/faster_builds_with_elm_0192/
submitted by /u/wheatBread (https://www.reddit.com/user/wheatBread)
[link] (https://elm-lang.org/news/faster-builds) [comments] (https://www.reddit.com/r/programming/comments/1uoumse/faster_builds_with_elm_0192/)
Addition by subtraction in software design
https://www.reddit.com/r/programming/comments/1uozd0o/addition_by_subtraction_in_software_design/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://www.architecture-weekly.com/p/addition-by-subtraction-in-software) [comments] (https://www.reddit.com/r/programming/comments/1uozd0o/addition_by_subtraction_in_software_design/)
https://www.reddit.com/r/programming/comments/1uozd0o/addition_by_subtraction_in_software_design/
submitted by /u/Adventurous-Salt8514 (https://www.reddit.com/user/Adventurous-Salt8514)
[link] (https://www.architecture-weekly.com/p/addition-by-subtraction-in-software) [comments] (https://www.reddit.com/r/programming/comments/1uozd0o/addition_by_subtraction_in_software_design/)
Girls Just Wanna Have Fast Wait-free MPMC Queues · Nahla
https://www.reddit.com/r/programming/comments/1up1c4a/girls_just_wanna_have_fast_waitfree_mpmc_queues/
submitted by /u/nee_- (https://www.reddit.com/user/nee_-)
[link] (https://nahla.dev/blog/waitfree_queue/) [comments] (https://www.reddit.com/r/programming/comments/1up1c4a/girls_just_wanna_have_fast_waitfree_mpmc_queues/)
https://www.reddit.com/r/programming/comments/1up1c4a/girls_just_wanna_have_fast_waitfree_mpmc_queues/
submitted by /u/nee_- (https://www.reddit.com/user/nee_-)
[link] (https://nahla.dev/blog/waitfree_queue/) [comments] (https://www.reddit.com/r/programming/comments/1up1c4a/girls_just_wanna_have_fast_waitfree_mpmc_queues/)
Odin 1.0 Announcement
https://www.reddit.com/r/programming/comments/1upmnop/odin_10_announcement/
submitted by /u/gingerbill (https://www.reddit.com/user/gingerbill)
[link] (https://www.youtube.com/watch?v=dLPAqXi9In0) [comments] (https://www.reddit.com/r/programming/comments/1upmnop/odin_10_announcement/)
https://www.reddit.com/r/programming/comments/1upmnop/odin_10_announcement/
submitted by /u/gingerbill (https://www.reddit.com/user/gingerbill)
[link] (https://www.youtube.com/watch?v=dLPAqXi9In0) [comments] (https://www.reddit.com/r/programming/comments/1upmnop/odin_10_announcement/)
Drunk Post: Things I’ve Learned as a Senior Engineer
https://www.reddit.com/r/programming/comments/1upo7f6/drunk_post_things_ive_learned_as_a_senior_engineer/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as) [comments] (https://www.reddit.com/r/programming/comments/1upo7f6/drunk_post_things_ive_learned_as_a_senior_engineer/)
https://www.reddit.com/r/programming/comments/1upo7f6/drunk_post_things_ive_learned_as_a_senior_engineer/
submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as) [comments] (https://www.reddit.com/r/programming/comments/1upo7f6/drunk_post_things_ive_learned_as_a_senior_engineer/)
The mask that compiles to nothing: how HotSpot's JIT learned to reason about bits
https://www.reddit.com/r/programming/comments/1ups1cn/the_mask_that_compiles_to_nothing_how_hotspots/
submitted by /u/j1897OS (https://www.reddit.com/user/j1897OS)
[link] (https://questdb.com/blog/jvm-jit-known-bits/) [comments] (https://www.reddit.com/r/programming/comments/1ups1cn/the_mask_that_compiles_to_nothing_how_hotspots/)
https://www.reddit.com/r/programming/comments/1ups1cn/the_mask_that_compiles_to_nothing_how_hotspots/
submitted by /u/j1897OS (https://www.reddit.com/user/j1897OS)
[link] (https://questdb.com/blog/jvm-jit-known-bits/) [comments] (https://www.reddit.com/r/programming/comments/1ups1cn/the_mask_that_compiles_to_nothing_how_hotspots/)
What is a token and why does it cost so much? - Computerphile
https://www.reddit.com/r/programming/comments/1upu953/what_is_a_token_and_why_does_it_cost_so_much/
submitted by /u/itgforlife (https://www.reddit.com/user/itgforlife)
[link] (https://www.youtube.com/watch?v=-0HRzXk8vlk) [comments] (https://www.reddit.com/r/programming/comments/1upu953/what_is_a_token_and_why_does_it_cost_so_much/)
https://www.reddit.com/r/programming/comments/1upu953/what_is_a_token_and_why_does_it_cost_so_much/
submitted by /u/itgforlife (https://www.reddit.com/user/itgforlife)
[link] (https://www.youtube.com/watch?v=-0HRzXk8vlk) [comments] (https://www.reddit.com/r/programming/comments/1upu953/what_is_a_token_and_why_does_it_cost_so_much/)
The Quest for Computer Vision in Rust
https://www.reddit.com/r/programming/comments/1upwsnr/the_quest_for_computer_vision_in_rust/
<!-- SC_OFF -->Everyone does CV in Python/C++. I did it in Rust anyway – and it worked. 🦀 Libraries compared, code breakdown, and why I chose kornia‑rs <!-- SC_ON --> submitted by /u/darryldias (https://www.reddit.com/user/darryldias)
[link] (https://darryldias.me/blog/the-quest-for-computer-vision-in-rust) [comments] (https://www.reddit.com/r/programming/comments/1upwsnr/the_quest_for_computer_vision_in_rust/)
https://www.reddit.com/r/programming/comments/1upwsnr/the_quest_for_computer_vision_in_rust/
<!-- SC_OFF -->Everyone does CV in Python/C++. I did it in Rust anyway – and it worked. 🦀 Libraries compared, code breakdown, and why I chose kornia‑rs <!-- SC_ON --> submitted by /u/darryldias (https://www.reddit.com/user/darryldias)
[link] (https://darryldias.me/blog/the-quest-for-computer-vision-in-rust) [comments] (https://www.reddit.com/r/programming/comments/1upwsnr/the_quest_for_computer_vision_in_rust/)
Most Secure Way to Store Auth Tokens
https://www.reddit.com/r/programming/comments/1uq357z/most_secure_way_to_store_auth_tokens/
<!-- SC_OFF -->Where should your auth token live so an XSS bug can't steal it? Here's how to build auth that survives the crazy non-secure world we live in. <!-- SC_ON --> submitted by /u/creasta29 (https://www.reddit.com/user/creasta29)
[link] (https://neciudan.dev/most-secure-way-to-store-auth-token) [comments] (https://www.reddit.com/r/programming/comments/1uq357z/most_secure_way_to_store_auth_tokens/)
https://www.reddit.com/r/programming/comments/1uq357z/most_secure_way_to_store_auth_tokens/
<!-- SC_OFF -->Where should your auth token live so an XSS bug can't steal it? Here's how to build auth that survives the crazy non-secure world we live in. <!-- SC_ON --> submitted by /u/creasta29 (https://www.reddit.com/user/creasta29)
[link] (https://neciudan.dev/most-secure-way-to-store-auth-token) [comments] (https://www.reddit.com/r/programming/comments/1uq357z/most_secure_way_to_store_auth_tokens/)
Squint Hard Enough: Attacking Perceptual Hashing with Adversarial Machine Learning
https://www.reddit.com/r/programming/comments/1uqamyh/squint_hard_enough_attacking_perceptual_hashing/
submitted by /u/lood9phee2Ri (https://www.reddit.com/user/lood9phee2Ri)
[link] (https://www.youtube.com/watch?v=v1xeIHyTg-c) [comments] (https://www.reddit.com/r/programming/comments/1uqamyh/squint_hard_enough_attacking_perceptual_hashing/)
https://www.reddit.com/r/programming/comments/1uqamyh/squint_hard_enough_attacking_perceptual_hashing/
submitted by /u/lood9phee2Ri (https://www.reddit.com/user/lood9phee2Ri)
[link] (https://www.youtube.com/watch?v=v1xeIHyTg-c) [comments] (https://www.reddit.com/r/programming/comments/1uqamyh/squint_hard_enough_attacking_perceptual_hashing/)
The need for new words/terms as the antidote to bad software
https://www.reddit.com/r/programming/comments/1uqci17/the_need_for_new_wordsterms_as_the_antidote_to/
<!-- SC_OFF -->I'll preface to say I'm not at all a programmer, so pardon me for saying anything stupid The increasing amount of slop is no secret, and but software as a whole, be it plugins or apps or even whole operating systems, has become increasing plagued by a set of kinda-unrelated problems that feel like they fall under the same umbrella. I'll keep it short, so practical issues of efficiency, privacy, security, and long-term support, and then ethical issues of being human-made. I personally believe that we're in need of novel, widespread terms to be able to describe the kind of software that in principle does not have certain traits. I attached the link because I believe the term "open source" is analagous to what I'm talking about here. Everybody has an idea of what it means and entails, but it also doesn't mean that everything has to strictly follow it to a T, because it's just a word at the end of the day. It's a pledge to the user to abide by principles of being "Open Source," and I'm saying that we need new words that similarly serve as principles such as that of, optimization, long-term support, being human-made, etc. (It's kind of like how we have terms like organic, free-run eggs, free range eggs, and of course you would end up with having a bunch of terms that dont mean anything at all, but i'm confident that a few will emerge as "standards" in the same way the term open source is.) This could go hand-in-hand with maybe making it common practice to at least disclose the development process when publishing software. In (science) research, we're beginning to see the implementation of "AI Disclosures" to detail all such usage, to be published with the paper. surely practices like these should be encouraged in software development as well. I'm sure there are (smaller) discussions on what exactly should constitute as "best practices" to the people that care about such things, but I've yet to see mainstream terms that go beyond only vaguely describing what we dont like ("slop"). I hope you enjoyed reading, I'd love to hear your thoughts, I dont really have programmer friends to ask about this lol <!-- SC_ON --> submitted by /u/Realistic-Worker-499 (https://www.reddit.com/user/Realistic-Worker-499)
[link] (https://opensource.org/) [comments] (https://www.reddit.com/r/programming/comments/1uqci17/the_need_for_new_wordsterms_as_the_antidote_to/)
https://www.reddit.com/r/programming/comments/1uqci17/the_need_for_new_wordsterms_as_the_antidote_to/
<!-- SC_OFF -->I'll preface to say I'm not at all a programmer, so pardon me for saying anything stupid The increasing amount of slop is no secret, and but software as a whole, be it plugins or apps or even whole operating systems, has become increasing plagued by a set of kinda-unrelated problems that feel like they fall under the same umbrella. I'll keep it short, so practical issues of efficiency, privacy, security, and long-term support, and then ethical issues of being human-made. I personally believe that we're in need of novel, widespread terms to be able to describe the kind of software that in principle does not have certain traits. I attached the link because I believe the term "open source" is analagous to what I'm talking about here. Everybody has an idea of what it means and entails, but it also doesn't mean that everything has to strictly follow it to a T, because it's just a word at the end of the day. It's a pledge to the user to abide by principles of being "Open Source," and I'm saying that we need new words that similarly serve as principles such as that of, optimization, long-term support, being human-made, etc. (It's kind of like how we have terms like organic, free-run eggs, free range eggs, and of course you would end up with having a bunch of terms that dont mean anything at all, but i'm confident that a few will emerge as "standards" in the same way the term open source is.) This could go hand-in-hand with maybe making it common practice to at least disclose the development process when publishing software. In (science) research, we're beginning to see the implementation of "AI Disclosures" to detail all such usage, to be published with the paper. surely practices like these should be encouraged in software development as well. I'm sure there are (smaller) discussions on what exactly should constitute as "best practices" to the people that care about such things, but I've yet to see mainstream terms that go beyond only vaguely describing what we dont like ("slop"). I hope you enjoyed reading, I'd love to hear your thoughts, I dont really have programmer friends to ask about this lol <!-- SC_ON --> submitted by /u/Realistic-Worker-499 (https://www.reddit.com/user/Realistic-Worker-499)
[link] (https://opensource.org/) [comments] (https://www.reddit.com/r/programming/comments/1uqci17/the_need_for_new_wordsterms_as_the_antidote_to/)
How's Linear so fast? A technical breakdown
https://www.reddit.com/r/programming/comments/1uqhhy4/hows_linear_so_fast_a_technical_breakdown/
submitted by /u/Ordinary_Leader_2971 (https://www.reddit.com/user/Ordinary_Leader_2971)
[link] (https://performance.dev/how-is-linear-so-fast-a-technical-breakdown) [comments] (https://www.reddit.com/r/programming/comments/1uqhhy4/hows_linear_so_fast_a_technical_breakdown/)
https://www.reddit.com/r/programming/comments/1uqhhy4/hows_linear_so_fast_a_technical_breakdown/
submitted by /u/Ordinary_Leader_2971 (https://www.reddit.com/user/Ordinary_Leader_2971)
[link] (https://performance.dev/how-is-linear-so-fast-a-technical-breakdown) [comments] (https://www.reddit.com/r/programming/comments/1uqhhy4/hows_linear_so_fast_a_technical_breakdown/)
GitHub's "Verified" commit badge isn't always the trust signal developers think it is
https://www.reddit.com/r/programming/comments/1uqje4g/githubs_verified_commit_badge_isnt_always_the/
<!-- SC_OFF -->I recently read some interesting research on GitHub's Verified commit workflow. The issue isn't a break in Git, GPG, or commit signing itself, but rather how the Verified badge can be interpreted in certain edge cases. It's a good reminder that a cryptographically valid signature doesn't automatically establish the provenance or intent of a commit. Here's a technical breakdown covering how the trust model works, the affected scenarios, GitHub's response, and what maintainers can do to avoid relying solely on the Verified badge during code review. <!-- SC_ON --> submitted by /u/NapierPalm (https://www.reddit.com/user/NapierPalm)
[link] (https://thecybersecguru.com/news/github-verified-commit-vulnerability/) [comments] (https://www.reddit.com/r/programming/comments/1uqje4g/githubs_verified_commit_badge_isnt_always_the/)
https://www.reddit.com/r/programming/comments/1uqje4g/githubs_verified_commit_badge_isnt_always_the/
<!-- SC_OFF -->I recently read some interesting research on GitHub's Verified commit workflow. The issue isn't a break in Git, GPG, or commit signing itself, but rather how the Verified badge can be interpreted in certain edge cases. It's a good reminder that a cryptographically valid signature doesn't automatically establish the provenance or intent of a commit. Here's a technical breakdown covering how the trust model works, the affected scenarios, GitHub's response, and what maintainers can do to avoid relying solely on the Verified badge during code review. <!-- SC_ON --> submitted by /u/NapierPalm (https://www.reddit.com/user/NapierPalm)
[link] (https://thecybersecguru.com/news/github-verified-commit-vulnerability/) [comments] (https://www.reddit.com/r/programming/comments/1uqje4g/githubs_verified_commit_badge_isnt_always_the/)
Optimization tales with CockroachDB: the slow list of users (part 4)
https://www.reddit.com/r/programming/comments/1uqn8zi/optimization_tales_with_cockroachdb_the_slow_list/
submitted by /u/broken_broken_ (https://www.reddit.com/user/broken_broken_)
[link] (https://gaultier.github.io/blog/optimization-tales-cockroachdb-part4-slow-list-users.html) [comments] (https://www.reddit.com/r/programming/comments/1uqn8zi/optimization_tales_with_cockroachdb_the_slow_list/)
https://www.reddit.com/r/programming/comments/1uqn8zi/optimization_tales_with_cockroachdb_the_slow_list/
submitted by /u/broken_broken_ (https://www.reddit.com/user/broken_broken_)
[link] (https://gaultier.github.io/blog/optimization-tales-cockroachdb-part4-slow-list-users.html) [comments] (https://www.reddit.com/r/programming/comments/1uqn8zi/optimization_tales_with_cockroachdb_the_slow_list/)
Unicode's Transliteration Rules Are Turing-Complete
https://www.reddit.com/r/programming/comments/1uqny65/unicodes_transliteration_rules_are_turingcomplete/
<!-- SC_OFF -->I've been wondering for a while if anything in Unicode could accidentally compute. It turns out that UTS #35 transliteration rules are Turing-complete. I show how to compute Collatz with just 3 rewrite rules running on stock ICU, shipped with every major OS. <!-- SC_ON --> submitted by /u/Dull_Replacement8890 (https://www.reddit.com/user/Dull_Replacement8890)
[link] (https://seriot.ch/computation/uts35/) [comments] (https://www.reddit.com/r/programming/comments/1uqny65/unicodes_transliteration_rules_are_turingcomplete/)
https://www.reddit.com/r/programming/comments/1uqny65/unicodes_transliteration_rules_are_turingcomplete/
<!-- SC_OFF -->I've been wondering for a while if anything in Unicode could accidentally compute. It turns out that UTS #35 transliteration rules are Turing-complete. I show how to compute Collatz with just 3 rewrite rules running on stock ICU, shipped with every major OS. <!-- SC_ON --> submitted by /u/Dull_Replacement8890 (https://www.reddit.com/user/Dull_Replacement8890)
[link] (https://seriot.ch/computation/uts35/) [comments] (https://www.reddit.com/r/programming/comments/1uqny65/unicodes_transliteration_rules_are_turingcomplete/)
Approximating Floating-Point Addition Using The Geometric Mean [PDF]
https://www.reddit.com/r/programming/comments/1uqpsma/approximating_floatingpoint_addition_using_the/
submitted by /u/self (https://www.reddit.com/user/self)
[link] (https://www.arith2026.org/papers/Approximating%20Floating-Point%20Addition%20Using%20The%20Geometric%20Mean.pdf) [comments] (https://www.reddit.com/r/programming/comments/1uqpsma/approximating_floatingpoint_addition_using_the/)
https://www.reddit.com/r/programming/comments/1uqpsma/approximating_floatingpoint_addition_using_the/
submitted by /u/self (https://www.reddit.com/user/self)
[link] (https://www.arith2026.org/papers/Approximating%20Floating-Point%20Addition%20Using%20The%20Geometric%20Mean.pdf) [comments] (https://www.reddit.com/r/programming/comments/1uqpsma/approximating_floatingpoint_addition_using_the/)
Just Keep At It: A Decade at Mozilla
https://www.reddit.com/r/programming/comments/1uqrx5n/just_keep_at_it_a_decade_at_mozilla/
submitted by /u/eqrion (https://www.reddit.com/user/eqrion)
[link] (https://eqrion.net/ten-years-at-mozilla/) [comments] (https://www.reddit.com/r/programming/comments/1uqrx5n/just_keep_at_it_a_decade_at_mozilla/)
https://www.reddit.com/r/programming/comments/1uqrx5n/just_keep_at_it_a_decade_at_mozilla/
submitted by /u/eqrion (https://www.reddit.com/user/eqrion)
[link] (https://eqrion.net/ten-years-at-mozilla/) [comments] (https://www.reddit.com/r/programming/comments/1uqrx5n/just_keep_at_it_a_decade_at_mozilla/)
Decoding the obfuscated bash script on a Uniqlo t-shirt
https://www.reddit.com/r/programming/comments/1uqu6au/decoding_the_obfuscated_bash_script_on_a_uniqlo/
submitted by /u/mitousa (https://www.reddit.com/user/mitousa)
[link] (https://tris.sherliker.net/blog/obfuscated-self-evaluating-bash-script-by-cdn-akamai-being-supplied-to-consumers-via-retail-stores/) [comments] (https://www.reddit.com/r/programming/comments/1uqu6au/decoding_the_obfuscated_bash_script_on_a_uniqlo/)
https://www.reddit.com/r/programming/comments/1uqu6au/decoding_the_obfuscated_bash_script_on_a_uniqlo/
submitted by /u/mitousa (https://www.reddit.com/user/mitousa)
[link] (https://tris.sherliker.net/blog/obfuscated-self-evaluating-bash-script-by-cdn-akamai-being-supplied-to-consumers-via-retail-stores/) [comments] (https://www.reddit.com/r/programming/comments/1uqu6au/decoding_the_obfuscated_bash_script_on_a_uniqlo/)