that is similar to Cascading Style Sheets (https://en.wikipedia.org/wiki/CSS) or to the way word processors allow styles to inherit from each other and override properties. The following code creates a empty Paragraph and revises it with content and properties. The placement of properties has no effect, but the placement of elements is always in order. Paragraph {1; 2; 3; "abc"; TextColor: Colors.Blue}; ⇒ 123abc The following code creates a paragraph 'style' called Heading1 by revising the Paragraph format with several properties. It then uses the Heading1 style by revising it with a string element. Heading1 = Paragraph {TextColor: Colors.Green; TextWeight: Bold}; Heading1 {"Chapter 1"}; ⇒ Chapter 1 Revisions + arrays Special treatment is given to elements in a revision that are arrays. In this case, all of the elements of the array become elements of the revision, without changing the array. Combining this mechanism with the each operator, described above, allows for the succinct inclusion of iterated content. Paragraph { Square(each [1, 2, 3, 4, 5]); Separator: ", "; }; ⇒ 1, 4, 9, 16, 25 Revisions with if/else If statements can be used in a revision to programmatically include or exclude properties and elements from a revision based on a condition. ShowCount(count) = Paragraph { "The count is "; count; if (count > 10) " and it's too big."; else TextColor: Colors.Green; }; ShowCount(5); ShowCount(20); ⇒ The count is 5
The count is 20 and it's too big. Revisions with loops for, foreach, do and while loop statements can be used in a revision to iteratively add elements. ShowNumbers(int count) = Paragraph { Separator: ", "; for (int i = 0; i < count; ++i) for (int j = 0; j < count; ++j) i * j; // This value gets added for each pass of the inner loop }; ShowNumbers(4); ⇒ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 4, 6, 0, 3, 6, 9 <!-- SC_ON --> submitted by /u/Impressive-Gear-4334 (https://www.reddit.com/user/Impressive-Gear-4334)
[link] (https://www.youtube.com/watch?v=equ7ASr3V_s&t=1s) [comments] (https://www.reddit.com/r/programming/comments/1ngwm1p/nytril_a_programming_language_and_a_markup/)
The count is 20 and it's too big. Revisions with loops for, foreach, do and while loop statements can be used in a revision to iteratively add elements. ShowNumbers(int count) = Paragraph { Separator: ", "; for (int i = 0; i < count; ++i) for (int j = 0; j < count; ++j) i * j; // This value gets added for each pass of the inner loop }; ShowNumbers(4); ⇒ 0, 0, 0, 0, 0, 1, 2, 3, 0, 2, 4, 6, 0, 3, 6, 9 <!-- SC_ON --> submitted by /u/Impressive-Gear-4334 (https://www.reddit.com/user/Impressive-Gear-4334)
[link] (https://www.youtube.com/watch?v=equ7ASr3V_s&t=1s) [comments] (https://www.reddit.com/r/programming/comments/1ngwm1p/nytril_a_programming_language_and_a_markup/)
PostgreSQL Field Guide - The reference guide for new users
https://www.reddit.com/r/programming/comments/1ngxlws/postgresql_field_guide_the_reference_guide_for/
<!-- SC_OFF -->Many Postgres books discuss some advanced topics targeted towards the experienced users. Not the new or should we say novice user that may have just stumbled across Postgres while doing some development work or led by internal work projects directing them to seek out the open source. If this is you, this reference book will guide you on the journey and help you understand the overall concepts that will prepare you for the great advanced books on Postgres. The reference guide is divided into key sections to allow each to be used individually when you may need to quickly refresh your knowledge base and fill the gaps to guide you from implementation to deployment providing an understanding of what’s possible with PostgreSQL. <!-- SC_ON --> submitted by /u/Unlikely_Willow2842 (https://www.reddit.com/user/Unlikely_Willow2842)
[link] (https://www.barnesandnoble.com/s/postgresql%20field%20guide) [comments] (https://www.reddit.com/r/programming/comments/1ngxlws/postgresql_field_guide_the_reference_guide_for/)
https://www.reddit.com/r/programming/comments/1ngxlws/postgresql_field_guide_the_reference_guide_for/
<!-- SC_OFF -->Many Postgres books discuss some advanced topics targeted towards the experienced users. Not the new or should we say novice user that may have just stumbled across Postgres while doing some development work or led by internal work projects directing them to seek out the open source. If this is you, this reference book will guide you on the journey and help you understand the overall concepts that will prepare you for the great advanced books on Postgres. The reference guide is divided into key sections to allow each to be used individually when you may need to quickly refresh your knowledge base and fill the gaps to guide you from implementation to deployment providing an understanding of what’s possible with PostgreSQL. <!-- SC_ON --> submitted by /u/Unlikely_Willow2842 (https://www.reddit.com/user/Unlikely_Willow2842)
[link] (https://www.barnesandnoble.com/s/postgresql%20field%20guide) [comments] (https://www.reddit.com/r/programming/comments/1ngxlws/postgresql_field_guide_the_reference_guide_for/)
Java is 30 Years Old // Here’s Why It’s Still Winning
https://www.reddit.com/r/programming/comments/1ngyt86/java_is_30_years_old_heres_why_its_still_winning/
submitted by /u/BlueGoliath (https://www.reddit.com/user/BlueGoliath)
[link] (https://www.youtube.com/watch?v=spJwsa4KFrU&t) [comments] (https://www.reddit.com/r/programming/comments/1ngyt86/java_is_30_years_old_heres_why_its_still_winning/)
https://www.reddit.com/r/programming/comments/1ngyt86/java_is_30_years_old_heres_why_its_still_winning/
submitted by /u/BlueGoliath (https://www.reddit.com/user/BlueGoliath)
[link] (https://www.youtube.com/watch?v=spJwsa4KFrU&t) [comments] (https://www.reddit.com/r/programming/comments/1ngyt86/java_is_30_years_old_heres_why_its_still_winning/)
How to Start With Freelance Work as an Engineer
https://www.reddit.com/r/programming/comments/1nh2g7x/how_to_start_with_freelance_work_as_an_engineer/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://www.youtube.com/watch?v=k7HzNniH-pE) [comments] (https://www.reddit.com/r/programming/comments/1nh2g7x/how_to_start_with_freelance_work_as_an_engineer/)
https://www.reddit.com/r/programming/comments/1nh2g7x/how_to_start_with_freelance_work_as_an_engineer/
submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://www.youtube.com/watch?v=k7HzNniH-pE) [comments] (https://www.reddit.com/r/programming/comments/1nh2g7x/how_to_start_with_freelance_work_as_an_engineer/)
A Dumb Introduction to z3. Exploring the world of constraint solvers with very simple examples.
https://www.reddit.com/r/programming/comments/1nh38nn/a_dumb_introduction_to_z3_exploring_the_world_of/
submitted by /u/M1M1R0N (https://www.reddit.com/user/M1M1R0N)
[link] (https://asibahi.github.io/thoughts/a-gentle-introduction-to-z3/) [comments] (https://www.reddit.com/r/programming/comments/1nh38nn/a_dumb_introduction_to_z3_exploring_the_world_of/)
https://www.reddit.com/r/programming/comments/1nh38nn/a_dumb_introduction_to_z3_exploring_the_world_of/
submitted by /u/M1M1R0N (https://www.reddit.com/user/M1M1R0N)
[link] (https://asibahi.github.io/thoughts/a-gentle-introduction-to-z3/) [comments] (https://www.reddit.com/r/programming/comments/1nh38nn/a_dumb_introduction_to_z3_exploring_the_world_of/)
built fasterpc bc i was frustrated with the usual distributed service comms, no more rest apis, or heavy MQs
https://www.reddit.com/r/programming/comments/1nh45ba/built_fasterpc_bc_i_was_frustrated_with_the_usual/
<!-- SC_OFF -->hey everyone, been working on this for a while and finally ready to share - built fasterpc bc i was frustrated with the usual distributed service comm where everything's either polling rest endpoints or dealing with heavyweight message broker infrastructures. tbh most people skip MQs entirely and just use basic http calls. basically it's bidirectional json rpc over websockets that lets python methods on different machines call each other with the same syntax as local function calls. sounds simple but the architectural implications are significant for distributed systems. runs on any websocket-capable server - docker containers, node.js processes, ruby on rails apps, whatever. the problem i was solving: building my AI OS (Bodega) with 80+ concurrent processes across multiple machines, and traditional ipc approaches had issues: --rest apis = constant polling + request/response latency overhead + managing http status codes --MQ = architectural overkill for direct sync service communication -existing rpc solutions = either too heavyweight (grpc) or missing bidirectional capabilities what makes fasterpc cooler: --both client and server can expose callable methods via simple class inheritance --automatic connection pooling with configurable exponential backoff retry logic --language-agnostic protocol (python ↔ node.js ↔ go ↔ rust seamlessly) --sustained 19+ calls/second with 100% success rate in production (can definitely optimize further) --binary data transfer support with custom serialization handlers --built-in connection health monitoring and automatic reconnection i use it wiht Bodega for currently handling shit load concurrent req with distributed worker services: odf text extractors, fft audio processors, image upscaling models, voice transcription engines, ocr pipelines, sentiment analysis workers, translation services, content recommendation engines. they're specialized microservices that need to comm sync without the overhead of http request cycles or async message passing complexity. handles stuffslike this off the shelf-- like connection drops, load balancing across worker instances, request timeouts, custom data serialization for complex objects. repo: https://github.com/SRSWTI/fasterpc examples directory has complete multi-service examples with different lang. honestly think this fills a gap between simple http calls andd complex message brokers for distributed systems that need real-time bidirectional communication. still early stage but battle-tested in my AI OS serving production traffic. more context on the overall system: https://www.reddit.com/r/LocalLLM/comments/1najvevj/built_an_local_ai_os_you_can_talk_to_that_started/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button <!-- SC_ON --> submitted by /u/EmbarrassedAsk2887 (https://www.reddit.com/user/EmbarrassedAsk2887)
[link] (https://github.com/SRSWTI/fasterpc) [comments] (https://www.reddit.com/r/programming/comments/1nh45ba/built_fasterpc_bc_i_was_frustrated_with_the_usual/)
https://www.reddit.com/r/programming/comments/1nh45ba/built_fasterpc_bc_i_was_frustrated_with_the_usual/
<!-- SC_OFF -->hey everyone, been working on this for a while and finally ready to share - built fasterpc bc i was frustrated with the usual distributed service comm where everything's either polling rest endpoints or dealing with heavyweight message broker infrastructures. tbh most people skip MQs entirely and just use basic http calls. basically it's bidirectional json rpc over websockets that lets python methods on different machines call each other with the same syntax as local function calls. sounds simple but the architectural implications are significant for distributed systems. runs on any websocket-capable server - docker containers, node.js processes, ruby on rails apps, whatever. the problem i was solving: building my AI OS (Bodega) with 80+ concurrent processes across multiple machines, and traditional ipc approaches had issues: --rest apis = constant polling + request/response latency overhead + managing http status codes --MQ = architectural overkill for direct sync service communication -existing rpc solutions = either too heavyweight (grpc) or missing bidirectional capabilities what makes fasterpc cooler: --both client and server can expose callable methods via simple class inheritance --automatic connection pooling with configurable exponential backoff retry logic --language-agnostic protocol (python ↔ node.js ↔ go ↔ rust seamlessly) --sustained 19+ calls/second with 100% success rate in production (can definitely optimize further) --binary data transfer support with custom serialization handlers --built-in connection health monitoring and automatic reconnection i use it wiht Bodega for currently handling shit load concurrent req with distributed worker services: odf text extractors, fft audio processors, image upscaling models, voice transcription engines, ocr pipelines, sentiment analysis workers, translation services, content recommendation engines. they're specialized microservices that need to comm sync without the overhead of http request cycles or async message passing complexity. handles stuffslike this off the shelf-- like connection drops, load balancing across worker instances, request timeouts, custom data serialization for complex objects. repo: https://github.com/SRSWTI/fasterpc examples directory has complete multi-service examples with different lang. honestly think this fills a gap between simple http calls andd complex message brokers for distributed systems that need real-time bidirectional communication. still early stage but battle-tested in my AI OS serving production traffic. more context on the overall system: https://www.reddit.com/r/LocalLLM/comments/1najvevj/built_an_local_ai_os_you_can_talk_to_that_started/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button <!-- SC_ON --> submitted by /u/EmbarrassedAsk2887 (https://www.reddit.com/user/EmbarrassedAsk2887)
[link] (https://github.com/SRSWTI/fasterpc) [comments] (https://www.reddit.com/r/programming/comments/1nh45ba/built_fasterpc_bc_i_was_frustrated_with_the_usual/)
So You Want to Host Your Own LLM? Don’t.
https://www.reddit.com/r/programming/comments/1nh8td5/so_you_want_to_host_your_own_llm_dont/
submitted by /u/myusuf3 (https://www.reddit.com/user/myusuf3)
[link] (https://mahdiyusuf.com/so-you-want-to-host-your-own-llm-dont/) [comments] (https://www.reddit.com/r/programming/comments/1nh8td5/so_you_want_to_host_your_own_llm_dont/)
https://www.reddit.com/r/programming/comments/1nh8td5/so_you_want_to_host_your_own_llm_dont/
submitted by /u/myusuf3 (https://www.reddit.com/user/myusuf3)
[link] (https://mahdiyusuf.com/so-you-want-to-host-your-own-llm-dont/) [comments] (https://www.reddit.com/r/programming/comments/1nh8td5/so_you_want_to_host_your_own_llm_dont/)
Built a High-Performance Key-Value Datastore in Pure Java
https://www.reddit.com/r/programming/comments/1nhdu6k/built_a_highperformance_keyvalue_datastore_in/
<!-- SC_OFF -->Hello everyone, I am excited to share a small milestone, it's the project I have been working in my free time during weekends since past 2 years. DataStore4J a key value datastore entirely written in Java, inspired by Google's LevelDB (https://github.com/theuntamed839/DataStore4J), its still under development. I’ve published some benchmarks results (https://github.com/theuntamed839/DataStore4J/blob/main/BenchMark/readme.md) The performance is on par with LevelDB, and for comparison I also included Facebook's RocksDB (which is a different beast altogether) I’ve also written some documentation on the internals of the DB (https://github.com/theuntamed839/DataStore4J/wiki) The aim was to get it to a good comparable performance level with levelDB. Lots of learning from this project, from database internals to Java's concurrency, to using JMH for benchmarks and Jimfs for testing.
I’m the sole developer on this, so I’m sure I’ve misused Java in places, missed edge cases, or even obvious bugs. I'd love to hear any feedback, and issues from those who've tried it out. Thank you all. <!-- SC_ON --> submitted by /u/theuntamed000 (https://www.reddit.com/user/theuntamed000)
[link] (https://github.com/theuntamed839/DataStore4J) [comments] (https://www.reddit.com/r/programming/comments/1nhdu6k/built_a_highperformance_keyvalue_datastore_in/)
https://www.reddit.com/r/programming/comments/1nhdu6k/built_a_highperformance_keyvalue_datastore_in/
<!-- SC_OFF -->Hello everyone, I am excited to share a small milestone, it's the project I have been working in my free time during weekends since past 2 years. DataStore4J a key value datastore entirely written in Java, inspired by Google's LevelDB (https://github.com/theuntamed839/DataStore4J), its still under development. I’ve published some benchmarks results (https://github.com/theuntamed839/DataStore4J/blob/main/BenchMark/readme.md) The performance is on par with LevelDB, and for comparison I also included Facebook's RocksDB (which is a different beast altogether) I’ve also written some documentation on the internals of the DB (https://github.com/theuntamed839/DataStore4J/wiki) The aim was to get it to a good comparable performance level with levelDB. Lots of learning from this project, from database internals to Java's concurrency, to using JMH for benchmarks and Jimfs for testing.
I’m the sole developer on this, so I’m sure I’ve misused Java in places, missed edge cases, or even obvious bugs. I'd love to hear any feedback, and issues from those who've tried it out. Thank you all. <!-- SC_ON --> submitted by /u/theuntamed000 (https://www.reddit.com/user/theuntamed000)
[link] (https://github.com/theuntamed839/DataStore4J) [comments] (https://www.reddit.com/r/programming/comments/1nhdu6k/built_a_highperformance_keyvalue_datastore_in/)
Write Code With Less Legal Risk | Legal Expert MCP Server
https://www.reddit.com/r/programming/comments/1nhek3s/write_code_with_less_legal_risk_legal_expert_mcp/
<!-- SC_OFF -->Hello everyone, As a software engineer I’ve often noticed devs run into the same issue: they don’t know the legal landscape when creating a new app or business idea. I faced this problem many times. Since I used to be an attorney, I consolidated my knowledge into a legal expert MCP server. It exposes these prompts: legal_landscape_discovery comprehensive_privacy_audit ai_ethics_and_compliance_scan intellectual_property_and_oss_audit market_and_customer_compliance_audit website_and_app_legal_disclosure_check security_legal_alignment_check risk_analysis_framework legal_expert_prompts_catalog It’s the first version, but I wanted to share. I’m not here to self-promote. I just wanted to create something that will help other devs. if you’re interested, let me know and I’ll DM you the GitHub repo. Feel free to fork or extend it. (Works with VS Code GitHub Copilot and Cursor as slash commands with arguments. There’s currently a bug with MCP prompts in Claude code.) Necessary Disclaimer: This MCP server produces informational analyses only. It is not legal advice, I take no responsibility for any legal or compliance consequences, and you use it entirely at your own risk given the inherent limitations and hallucinations of LLMs. <!-- SC_ON --> submitted by /u/DimWebDev (https://www.reddit.com/user/DimWebDev)
[link] (https://github.com/DimWebDev/legal_expert_mcp_server) [comments] (https://www.reddit.com/r/programming/comments/1nhek3s/write_code_with_less_legal_risk_legal_expert_mcp/)
https://www.reddit.com/r/programming/comments/1nhek3s/write_code_with_less_legal_risk_legal_expert_mcp/
<!-- SC_OFF -->Hello everyone, As a software engineer I’ve often noticed devs run into the same issue: they don’t know the legal landscape when creating a new app or business idea. I faced this problem many times. Since I used to be an attorney, I consolidated my knowledge into a legal expert MCP server. It exposes these prompts: legal_landscape_discovery comprehensive_privacy_audit ai_ethics_and_compliance_scan intellectual_property_and_oss_audit market_and_customer_compliance_audit website_and_app_legal_disclosure_check security_legal_alignment_check risk_analysis_framework legal_expert_prompts_catalog It’s the first version, but I wanted to share. I’m not here to self-promote. I just wanted to create something that will help other devs. if you’re interested, let me know and I’ll DM you the GitHub repo. Feel free to fork or extend it. (Works with VS Code GitHub Copilot and Cursor as slash commands with arguments. There’s currently a bug with MCP prompts in Claude code.) Necessary Disclaimer: This MCP server produces informational analyses only. It is not legal advice, I take no responsibility for any legal or compliance consequences, and you use it entirely at your own risk given the inherent limitations and hallucinations of LLMs. <!-- SC_ON --> submitted by /u/DimWebDev (https://www.reddit.com/user/DimWebDev)
[link] (https://github.com/DimWebDev/legal_expert_mcp_server) [comments] (https://www.reddit.com/r/programming/comments/1nhek3s/write_code_with_less_legal_risk_legal_expert_mcp/)
Why you should care about the JDBC fetch size
https://www.reddit.com/r/programming/comments/1nhjby7/why_you_should_care_about_the_jdbc_fetch_size/
submitted by /u/Active-Fuel-49 (https://www.reddit.com/user/Active-Fuel-49)
[link] (https://in.relation.to/2025/01/24/jdbc-fetch-size/) [comments] (https://www.reddit.com/r/programming/comments/1nhjby7/why_you_should_care_about_the_jdbc_fetch_size/)
https://www.reddit.com/r/programming/comments/1nhjby7/why_you_should_care_about_the_jdbc_fetch_size/
submitted by /u/Active-Fuel-49 (https://www.reddit.com/user/Active-Fuel-49)
[link] (https://in.relation.to/2025/01/24/jdbc-fetch-size/) [comments] (https://www.reddit.com/r/programming/comments/1nhjby7/why_you_should_care_about_the_jdbc_fetch_size/)
Rye Tables vs Python/Pandas: A Different Way to Wrangle Data
https://www.reddit.com/r/programming/comments/1nhjk44/rye_tables_vs_pythonpandas_a_different_way_to/
submitted by /u/symbolicard (https://www.reddit.com/user/symbolicard)
[link] (https://ryelang.org/blog/posts/comparing_tables_to_python/) [comments] (https://www.reddit.com/r/programming/comments/1nhjk44/rye_tables_vs_pythonpandas_a_different_way_to/)
https://www.reddit.com/r/programming/comments/1nhjk44/rye_tables_vs_pythonpandas_a_different_way_to/
submitted by /u/symbolicard (https://www.reddit.com/user/symbolicard)
[link] (https://ryelang.org/blog/posts/comparing_tables_to_python/) [comments] (https://www.reddit.com/r/programming/comments/1nhjk44/rye_tables_vs_pythonpandas_a_different_way_to/)
Hosting a website on a disposable vape
https://www.reddit.com/r/programming/comments/1nhs5ti/hosting_a_website_on_a_disposable_vape/
submitted by /u/iamkeyur (https://www.reddit.com/user/iamkeyur)
[link] (https://bogdanthegeek.github.io/blog/projects/vapeserver/) [comments] (https://www.reddit.com/r/programming/comments/1nhs5ti/hosting_a_website_on_a_disposable_vape/)
https://www.reddit.com/r/programming/comments/1nhs5ti/hosting_a_website_on_a_disposable_vape/
submitted by /u/iamkeyur (https://www.reddit.com/user/iamkeyur)
[link] (https://bogdanthegeek.github.io/blog/projects/vapeserver/) [comments] (https://www.reddit.com/r/programming/comments/1nhs5ti/hosting_a_website_on_a_disposable_vape/)
Algebraic Types are not Scary, Actually
https://www.reddit.com/r/programming/comments/1nhw43z/algebraic_types_are_not_scary_actually/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://blog.aiono.dev/posts/algebraic-types-are-not-scary,-actually.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw43z/algebraic_types_are_not_scary_actually/)
https://www.reddit.com/r/programming/comments/1nhw43z/algebraic_types_are_not_scary_actually/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://blog.aiono.dev/posts/algebraic-types-are-not-scary,-actually.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw43z/algebraic_types_are_not_scary_actually/)
The E Language
https://www.reddit.com/r/programming/comments/1nhw4ml/the_e_language/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (http://erights.org/elang/index.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw4ml/the_e_language/)
https://www.reddit.com/r/programming/comments/1nhw4ml/the_e_language/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (http://erights.org/elang/index.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw4ml/the_e_language/)
React Won by Default – And It's Killing Frontend Innovation
https://www.reddit.com/r/programming/comments/1nhw51a/react_won_by_default_and_its_killing_frontend/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.lorenstew.art/blog/react-won-by-default/) [comments] (https://www.reddit.com/r/programming/comments/1nhw51a/react_won_by_default_and_its_killing_frontend/)
https://www.reddit.com/r/programming/comments/1nhw51a/react_won_by_default_and_its_killing_frontend/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://www.lorenstew.art/blog/react-won-by-default/) [comments] (https://www.reddit.com/r/programming/comments/1nhw51a/react_won_by_default_and_its_killing_frontend/)
Smalltalk and Lambda Calculus
https://www.reddit.com/r/programming/comments/1nhw59d/smalltalk_and_lambda_calculus/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://blog.ielliott.io/smalltalk-and-lambda-calculus) [comments] (https://www.reddit.com/r/programming/comments/1nhw59d/smalltalk_and_lambda_calculus/)
https://www.reddit.com/r/programming/comments/1nhw59d/smalltalk_and_lambda_calculus/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://blog.ielliott.io/smalltalk-and-lambda-calculus) [comments] (https://www.reddit.com/r/programming/comments/1nhw59d/smalltalk_and_lambda_calculus/)
Protecting Rust against supply chain attacks
https://www.reddit.com/r/programming/comments/1nhw5qd/protecting_rust_against_supply_chain_attacks/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kerkour.com/rust-supply-chain-attacks) [comments] (https://www.reddit.com/r/programming/comments/1nhw5qd/protecting_rust_against_supply_chain_attacks/)
https://www.reddit.com/r/programming/comments/1nhw5qd/protecting_rust_against_supply_chain_attacks/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://kerkour.com/rust-supply-chain-attacks) [comments] (https://www.reddit.com/r/programming/comments/1nhw5qd/protecting_rust_against_supply_chain_attacks/)
The pirate-based logic of Rust shared references
https://www.reddit.com/r/programming/comments/1nhw5s3/the_piratebased_logic_of_rust_shared_references/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (http://ais523.me.uk/blog/logic-of-shared-references.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw5s3/the_piratebased_logic_of_rust_shared_references/)
https://www.reddit.com/r/programming/comments/1nhw5s3/the_piratebased_logic_of_rust_shared_references/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (http://ais523.me.uk/blog/logic-of-shared-references.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw5s3/the_piratebased_logic_of_rust_shared_references/)
Rendezvous Hashing Explained
https://www.reddit.com/r/programming/comments/1nhw5x1/rendezvous_hashing_explained/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://randorithms.com/2020/12/26/rendezvous-hashing.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw5x1/rendezvous_hashing_explained/)
https://www.reddit.com/r/programming/comments/1nhw5x1/rendezvous_hashing_explained/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://randorithms.com/2020/12/26/rendezvous-hashing.html) [comments] (https://www.reddit.com/r/programming/comments/1nhw5x1/rendezvous_hashing_explained/)
Infinite Relations
https://www.reddit.com/r/programming/comments/1nhw64v/infinite_relations/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://buttondown.com/jaffray/archive/infinite-relations/) [comments] (https://www.reddit.com/r/programming/comments/1nhw64v/infinite_relations/)
https://www.reddit.com/r/programming/comments/1nhw64v/infinite_relations/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://buttondown.com/jaffray/archive/infinite-relations/) [comments] (https://www.reddit.com/r/programming/comments/1nhw64v/infinite_relations/)
PythonBPF – Writing eBPF Programs in Pure Python
https://www.reddit.com/r/programming/comments/1nhw6x9/pythonbpf_writing_ebpf_programs_in_pure_python/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://xeon.me/gnome/pythonbpf/) [comments] (https://www.reddit.com/r/programming/comments/1nhw6x9/pythonbpf_writing_ebpf_programs_in_pure_python/)
https://www.reddit.com/r/programming/comments/1nhw6x9/pythonbpf_writing_ebpf_programs_in_pure_python/
submitted by /u/ketralnis (https://www.reddit.com/user/ketralnis)
[link] (https://xeon.me/gnome/pythonbpf/) [comments] (https://www.reddit.com/r/programming/comments/1nhw6x9/pythonbpf_writing_ebpf_programs_in_pure_python/)