Reddit Programming – Telegram
Reddit Programming
212 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
TempS3 - Making temporary file storage simple, secure, and intelligent
https://www.reddit.com/r/programming/comments/1mudb8y/temps3_making_temporary_file_storage_simple/

<!-- SC_OFF -->TempS3 is a secure CLI tool for temporary file storage on AWS S3. It features automatic file expiration, AES-256-GCM encryption, intelligent chunking for large files, and local history tracking. Cross-platform support for Windows, Linux, macOS, and Docker. Perfect for quick, secure file sharing with zero manual cleanup. Check out the GitHub repo for installation and usage details! <!-- SC_ON --> submitted by /u/LostMathematician621 (https://www.reddit.com/user/LostMathematician621)
[link] (https://github.com/killcod3/temps3) [comments] (https://www.reddit.com/r/programming/comments/1mudb8y/temps3_making_temporary_file_storage_simple/)
RG Face scan (remote facescan)
https://www.reddit.com/r/programming/comments/1mudkhs/rg_face_scan_remote_facescan/

<!-- SC_OFF -->So I was wondering in the blue app when I saw a post that buying e-wallets account especially gcash. I got curious, gcash have 2 security: MPIN and Facescan, it’s impossible to log in gcash to other device without facescan. So I decided to venture deeply, after they log in your number on their device they will send you an app called “rg_facescan”. After the installation they will send you a link that will do the facescan. After the facescan then can now use your e wallet freely. I’m planning make a research about that, can you guys help me analyze this one? Link: RG Facescan: https://bdpkg.beidoupays.com/RGScanface_1.1.0.6_sign.apk Facescan link: https://pay.beidoupays.com/scanFace?phone=09551608838 Note: I sold my account to them then asked the cs to delete my account afterwards. <!-- SC_ON --> submitted by /u/no-to-marco (https://www.reddit.com/user/no-to-marco)
[link] (https://bdpkg.beidoupays.com/RGScanface_1.1.0.6_sign.apk) [comments] (https://www.reddit.com/r/programming/comments/1mudkhs/rg_face_scan_remote_facescan/)
Interactively learn to process real-time data with Fenwick trees and segment trees
https://www.reddit.com/r/programming/comments/1muncbb/interactively_learn_to_process_realtime_data_with/

<!-- SC_OFF -->some time i thinks, how big ecommerce platforms and IOT devices and algo trading handles and query millions of data points effectively without any hurdles think if platform like amazon which have to update the discount price of the all the products at a time and run a query for that it would take so long, (sorting the product, finding the product, updating it) the real time trading terminals which have to update the real time price have to be efficient or it may cause huge financial losses so according to me the Fenwick trees and segment trees can be good or potential solution for this kind of situation, this two algorithms are super powerful for querying, replacing index values with extreme efficiency and time complexity meanwhile thinking it i have tried to experiment with it and wrote something about it , if someone interested learning this algorithms and how they works can check it out here (https://beyondit.blog/blogs/segment-fenwick-trees-real-time-analytics) <!-- SC_ON --> submitted by /u/BeyondITBlog (https://www.reddit.com/user/BeyondITBlog)
[link] (https://beyondit.blog/blogs/segment-fenwick-trees-real-time-analytics) [comments] (https://www.reddit.com/r/programming/comments/1muncbb/interactively_learn_to_process_realtime_data_with/)
Drag-and-drop TUI designer: Design once, deploy to Python, Go, Rust, or Node.js terminal frameworks
https://www.reddit.com/r/programming/comments/1mv6550/draganddrop_tui_designer_design_once_deploy_to/

<!-- SC_OFF -->I was tired of manually coding terminal UIs and switching between different TUI frameworks for different projects. Each framework has its own patterns, and building dashboards from scratch takes forever. The generated code follows each framework's idioms and best practices. You get proper async patterns in Python, channels in Go, ownership in Rust, and event handling in Node.js. Connect to system metrics (CPU, memory, disk, network), APIs, log files, or command output. Generates professional terminal applications you can deploy anywhere. Currently working on plugin architecture and real-time collaboration. Would love feedback from the community. Hope it helps others too. <!-- SC_ON --> submitted by /u/catalysed (https://www.reddit.com/user/catalysed)
[link] (https://github.com/aerocyberlabs/jackal_cli) [comments] (https://www.reddit.com/r/programming/comments/1mv6550/draganddrop_tui_designer_design_once_deploy_to/)
I built a Spring Boot starter for MapStruct to remove boilerplate – feedback welcome
https://www.reddit.com/r/programming/comments/1mv8kwj/i_built_a_spring_boot_starter_for_mapstruct_to/

<!-- SC_OFF -->Hello everyone, While working with Spring Boot + MapStruct, I noticed one recurring pain: Repeatedly writing @Mapper(componentModel = "spring") in every mapper Manual configuration boilerplate just to get things wired up It may look like a small at the first… but across multiple projects and dozens of mappers, this repetitive setup becomes a bigger productivity drag and an easy source of mistakes. So, I created a MapStruct Spring Boot Starter. What it does: Auto-detects and registers MapStruct mappers in your Spring Boot app No need to specify componentModel = "spring" everywhere in the mappers Simple dependency + optional application.yml config → ready to go Installation: 1) Dependency: Maven: com.codestackfoundry.starters mapstruct-spring-boot-starter 1.0.1 Gradle: dependencies { implementation 'com.codestackfoundry.starters:mapstruct-spring-boot-starter:1.0.1' } Configuration(Optional): mapstruct: base-packages: - com.example.demo.mapper - com.shared.mappers fail-if-no-mappers: true 🔗 GitHub: https://github.com/codestackfoundry/spring-boot-starters
📄 Docs: https://codestackfoundry.com/docs/mapstruct-spring-boot-starter.html I’d love to hear your feedback. <!-- SC_ON --> submitted by /u/effortlesscodeLearn (https://www.reddit.com/user/effortlesscodeLearn)
[link] (https://codestackfoundry.com/docs/mapstruct-spring-boot-starter.html) [comments] (https://www.reddit.com/r/programming/comments/1mv8kwj/i_built_a_spring_boot_starter_for_mapstruct_to/)