Reddit Programming – Telegram
Reddit Programming
212 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
Fix conflicts once with git rerere (5-min lab + real story)
https://www.reddit.com/r/programming/comments/1mubx2j/fix_conflicts_once_with_git_rerere_5min_lab_real/

<!-- SC_OFF -->git rerere = Reuse Recorded Resolution. Resolve a conflict once; Git remembers and reapplies your fix on the next identical conflict. When it helps: long rebases, cherry-picks to release branches, big lint sweeps. Gotchas: it’s textual matching—review with git diff --staged. Mini-lab: git config rerere.enabled true
git config rerere.autoupdate true # create conflict, resolve once, redo merge →
# "Resolved 'file' using previous resolution." <!-- SC_ON --> submitted by /u/sshetty03 (https://www.reddit.com/user/sshetty03)
[link] (https://medium.com/stackademic/git-rerere-explained-with-examples-fix-it-once-reuse-forever-849177a289c2?sk=1614ba91837411f7472a3467bc4f2886) [comments] (https://www.reddit.com/r/programming/comments/1mubx2j/fix_conflicts_once_with_git_rerere_5min_lab_real/)
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/)