Reddit Programming
207 subscribers
1.22K photos
123K links
I will send you newest post from subreddit /r/programming
Download Telegram
PyApp: An easy way to package Python apps as executables
https://www.reddit.com/r/programming/comments/1mxvitp/pyapp_an_easy_way_to_package_python_apps_as/

<!-- SC_OFF -->Written in Rust, the PyApp utility wraps up Python programs into self-contained click-to-run executables. It might be the easiest Python packager yet. August 2025 <!-- SC_ON --> submitted by /u/Choobeen (https://www.reddit.com/user/Choobeen)
[link] (https://www.infoworld.com/article/4030697/pyapp-an-easy-way-to-package-python-apps-as-executables.html) [comments] (https://www.reddit.com/r/programming/comments/1mxvitp/pyapp_an_easy_way_to_package_python_apps_as/)
The Only React Cheat Sheet (2025) You Need
https://www.reddit.com/r/programming/comments/1mxyba3/the_only_react_cheat_sheet_2025_you_need/

<!-- SC_OFF -->Welcome to the another react cheat sheet on the internet. But wait, it is not what you think, like any other cheat sheet present on the internet, throwing random code examples and trivial explanations. I promise this is something different. We will together understand the ism behind the ReactJS and how each of the useful feature works behind the scene* using interactive demos I made specially for you guys. So you can understand it very well and implement it in the real world. Read The Complete Article Here (https://beyondit.blog/blogs/Only-React-Cheat-Sheet-You-Need-in-2025) check out interactive demo explaining how 'children' Prop Works (https://beyondit.blog/blogs/Only-React-Cheat-Sheet-You-Need-in-2025#the--children--prop) (scroll down a little bit) What the blog post includes: Declarative vs. Imperative UI Understanding JSX (Few things to keep in mind) The Component Model Understanding The Role of Fragments Embedding JavaScript inside components Using props to make component functional The useState Hook Controlled Components Dynamic Rendering: Conditions and Lists useEffect: Managing Side Effects useContext: Escaping Prop Drilling useReducer: For Complex State Logic useRef: The Escape Hatch useMemo Hook useMemo + useCallback Custom Hooks : Creating Reusable hooks using React Router Protected Routes How To Create and Use Global Authentication State Moreover, much more. I am going to discuss from very basic to very latest ReactJS features from 2025. So the goal of the cheat sheet is obvious, It should be the only document you should have to write your next project effectively and achieve the best outcome. <!-- 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) [comments] (https://www.reddit.com/r/programming/comments/1mxyba3/the_only_react_cheat_sheet_2025_you_need/)
Korean Public APIs(+ global public api 1030+) with automated link checking and English documentation
https://www.reddit.com/r/programming/comments/1mxzsvq/korean_public_apis_global_public_api_1030_with/

<!-- SC_OFF -->I created this comprehensive public API collection after getting frustrated with hunting down APIs across multiple sources for my projects. The repository features: - 180+ Korean public APIs (fully documented in both Korean and English) - Translated versions of popular international APIs - Automated link validation to ensure reliability - Categorized by use case for easy discovery Perfect for developers working on projects that need Korean market integration or anyone looking for a reliable API resource. https://github.com/yybmion/public-apis-4Kr Feedback welcome! <!-- SC_ON --> submitted by /u/ybmion (https://www.reddit.com/user/ybmion)
[link] (https://github.com/yybmion/public-apis-4Kr) [comments] (https://www.reddit.com/r/programming/comments/1mxzsvq/korean_public_apis_global_public_api_1030_with/)
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/)