Reddit Programming – Telegram
Reddit Programming
212 subscribers
1.22K photos
125K links
I will send you newest post from subreddit /r/programming
Download Telegram
SXO :: Optimized Server-Side JSX. Build Simple. Build Fast
https://www.reddit.com/r/programming/comments/1my2ehr/sxo_optimized_serverside_jsx_build_simple_build/

<!-- SC_OFF -->A fast, minimal architecture convention and CLI for building websites with server‑side JSX. No React, no client framework, just composable JSX optimized for the server, a clean directory-based router, hot replacement, and powered by esbuild plus a Rust JSX precompiler. <!-- SC_ON --> submitted by /u/gcvictor (https://www.reddit.com/user/gcvictor)
[link] (https://github.com/gc-victor/sxo) [comments] (https://www.reddit.com/r/programming/comments/1my2ehr/sxo_optimized_serverside_jsx_build_simple_build/)
Understanding dependencies array & useEffect() visually (ReactJS)x`
https://www.reddit.com/r/programming/comments/1my7c5a/understanding_dependencies_array_useeffect/

<!-- SC_OFF -->useEffects accepts two arguments. First the callback function or effect code. Second, the dependencies array. Interact and Learn Yourself Here (https://beyondit.blog/blogs/Only-React-Cheat-Sheet-You-Need-in-2025#interactive-use-effect) We use useEffect() hook to manage side effects, Imagine side effects as simply the operations which change something outside of our component. To handle changes inside our components we have useSate. The dependencies array The dependencies array is crucial to understand. It sets the conditions for when the useEffect() will run again. If we do not pass it, the useEffect() runs on every re-render of component. This can be expensive. Think about every time it fetches data from external API. ​ useEffect(() => { // Runs on initial render AND every update console.log('Component rendered or updated'); }); Passing null (" ") dependencies array. It will run the useEffect() hook after the first render of the component only. It will not run useEffect() after subsequent updates of the components. ​ useEffect(() => { // Runs only once after the first render fetchData(); }, ); Passing Dependency Array with Values. Passing value to Dependency Array ensure that it will run the useEffect() only after first render and when value of dependency array changes. ​ useEffect(() => { // Runs when the component mounts and whenever `userId` changes fetchUserData(userId); }, [userId]); <!-- SC_ON --> submitted by /u/BeyondITBLOG2 (https://www.reddit.com/user/BeyondITBLOG2)
[link] (https://beyondit.blog/blogs/Only-React-Cheat-Sheet-You-Need-in-2025#interactive-use-effect) [comments] (https://www.reddit.com/r/programming/comments/1my7c5a/understanding_dependencies_array_useeffect/)
Built a free vehicle recall lookup tool
https://www.reddit.com/r/programming/comments/1mz4ssh/built_a_free_vehicle_recall_lookup_tool/

<!-- SC_OFF -->I created a free car recall checker that helps people find active safety recalls for their vehicles. Most people don't know if their car has active recalls. Government databases exist but are clunky and hard to search. Recalls can be serious safety issues that get fixed free. Technical Implementation:
- Backend: Hono.js API on Cloudflare Workers
- Data Pipeline: Daily ETL jobs pulling from NHTSA and Transport Canada Data Dumps
- Database: D1 / sqlite
- Type Safety: Full TypeScript with Zod contracts between frontend/backend
- VIN Processing: Custom decoder that validates and extracts vehicle details Data Sources:
- NHTSA (National Highway Traffic Safety Administration)
- Transport Canada Safety Recalls
- Updated daily with automated reconciliation The tool is completely free - no ads, no tracking, no registration required. All recall repairs are legally required to be free at authorized dealers. Check it out: https://crdg.ai/tools/recalls Happy to discuss the technical implementation or data processing challenges if anyone's interested! <!-- SC_ON --> submitted by /u/cardogio (https://www.reddit.com/user/cardogio)
[link] (https://crdg.ai/tools/recalls) [comments] (https://www.reddit.com/r/programming/comments/1mz4ssh/built_a_free_vehicle_recall_lookup_tool/)