Reddit Programming – Telegram
Reddit Programming
212 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
Scaling through crisis: how infrastructure handled 1B messages in a single day
https://www.reddit.com/r/programming/comments/1nodab9/scaling_through_crisis_how_infrastructure_handled/

<!-- SC_OFF -->We recently published a piece on ShiftMag (a project by Infobip) that I think might interest folks here. It’s a candid breakdown of how Infobip’s infrastructure team scaled to handling 10 billion messages in a single day — not just the technical wins, but also the painful outages, bad regexes, and hard lessons learned along the way. <!-- SC_ON --> submitted by /u/shift_devs (https://www.reddit.com/user/shift_devs)
[link] (https://shiftmag.dev/how-infobips-infrastructure-handled-10-billion-messages-in-a-day-6162/) [comments] (https://www.reddit.com/r/programming/comments/1nodab9/scaling_through_crisis_how_infrastructure_handled/)
A Tour of eBPF in the Linux Kernel: Observability, Security and Networking
https://www.reddit.com/r/programming/comments/1noezi3/a_tour_of_ebpf_in_the_linux_kernel_observability/

<!-- SC_OFF -->I published a new blog post: "A Tour of eBPF in the Linux Kernel: Observability, Security and Networking". I recently read the book "Learning eBPF" by Liz Rice and condensed my notes into this article. Great for a quick overview before you decide to dive deeper! <!-- SC_ON --> submitted by /u/lucavallin (https://www.reddit.com/user/lucavallin)
[link] (https://www.lucavall.in/blog/a-tour-of-ebpf-in-the-linux-kernel-observability-security-and-networking) [comments] (https://www.reddit.com/r/programming/comments/1noezi3/a_tour_of_ebpf_in_the_linux_kernel_observability/)
I've built a Swiss Tables interactive simulator so you can understand how they work internally and how they offer superior performance compared to Buckets
https://www.reddit.com/r/programming/comments/1nomqrc/ive_built_a_swiss_tables_interactive_simulator_so/

<!-- SC_OFF -->As you may know, this year Go switched its hashmap implementation from Buckets to Swiss tables looking for a boost in performance, how much? A lot according to Datadog (https://www.reddit.com/r/programming/comments/1m3di7x/how_go_124s_swiss_tables_saved_hundreds_of/): Go 1.24's Swiss Tables cut our map memory usage by up to 70% in high traffic workloads So I made a visual version of Swiss Tables and a tutorial so you can have an overall view of them and understand why they're so fast <!-- SC_ON --> submitted by /u/prox_sea (https://www.reddit.com/user/prox_sea)
[link] (https://coffeebytes.dev/en/software-architecture/swiss-tables-the-superior-performance-hashmap/) [comments] (https://www.reddit.com/r/programming/comments/1nomqrc/ive_built_a_swiss_tables_interactive_simulator_so/)
From Batch to Insights: How to Automate Data Validation Workflows
https://www.reddit.com/r/programming/comments/1np5m74/from_batch_to_insights_how_to_automate_data/

<!-- SC_OFF -->Hey r/programming (https://www.reddit.com/r/programming), I've been thinking a lot about the common pain points of dealing with unvalidated or "dirty" data, especially when working with large datasets. Manual cleaning is incredibly time-consuming and often a huge bottleneck for getting projects off the ground or maintaining data pipelines. It feels like a constant battle against inaccurate reports, compliance risks, and just generally wasted effort. Specifically, I'm looking into approaches for automating validation across different data types—like email addresses, mobile numbers, IP addresses, and even browser user-agents—for batch processing. Has anyone here implemented solutions using external APIs for this kind of batch data validation? What were your experiences? What are your thoughts on: * The challenges of integrating such third-party validation services? * Best practices for handling asynchronous batch processing (submission, polling, retrieval)? * The ROI you've seen from automating these processes versus maintaining manual checks or in-house solutions? * Any particular types of validation (e.g., email deliverability, mobile line type, IP threat detection) that have given you significant headaches or major wins with automation? Would love to hear about your experiences, cautionary tales, or success stories in building robust, automated data validation workflows! Cheers! <!-- SC_ON --> submitted by /u/Available-Floor9213 (https://www.reddit.com/user/Available-Floor9213)
[link] (https://www.onboardingbuddy.co/blog/from-batch-to-insights-data-validation) [comments] (https://www.reddit.com/r/programming/comments/1np5m74/from_batch_to_insights_how_to_automate_data/)