Maxi Contierimaximilianocontieri.com·Dec 21, 2024Code Smell 284 - Encrypted FunctionsTL;DR: Avoid obfuscated functions in your code. This article is based on a real social hacking disguised as a job interview Problems Hidden vulnerabilities Readability Testability Trust issues Bad Naming Solutions Use clear names Avoid obfu...Code Smellsclean code
Tegarblog.tegvr.com·Dec 20, 2024Clearing the Clutter: Tackling Unused Dependencies in OutSystemsWhile migrating one of our UI components, I discovered a dependency on an outdated version within one of our modules. This realization highlighted an important aspect of software development: unused dependencies, or "dead code." Why Handling Unused D...OutSystemsoutsystems
Nayan Radadiyaweb3fronted.hashnode.dev·Dec 17, 2024Clean and Scalable React Native Expo Project Structure for Modern AppsIntroduction 🚀 When building a React Native app with Expo, having a clean and scalable folder structure can make a huge difference. A well-organized project helps developers work efficiently, reduces bugs, and makes it easier to scale features in th...Production-Ready React Native
Maxi Contierimaximilianocontieri.com·Dec 14, 2024Refactoring 020 - Transform Static FunctionsTL;DR: Replace static functions with object interactions. Problems Addressed High coupling due to global access Poor testability Overloaded protocols in classes Decreased cohesion Related Code Smells https://maximilianocontieri.com/code-smell-...40 readsRefactoringsclean code
Navayuvan Subramanianblogs.navayuvan.dev·Dec 14, 2024TypeScript Won’t Save Your Product: The Case for Clean Code PracticesYou think using TypeScript is gonna keep your product alive, definitely NOT 😂 Here's why! People are obsessed with TypeScript, and I don't say it's wrong. But when it's used incorrectly (without proper clean code principles), even it'll cause a disa...TypeScript
JealousGxblog.jealous.dev·Dec 14, 2024Patterns for Scalable Web Development: Implementing Clean Architecture in Web DevIn the world of web development, scalability and maintainability are critical concerns. As projects grow in size and complexity, managing dependencies, ensuring testability, and maintaining modularity become increasingly challenging. Clean Architectu...Web Development
Maxi Contierimaximilianocontieri.com·Dec 10, 2024Code Smell 283 - Unresolved Meta TagsTL;DR: Incomplete or null meta tags break functionality and user experience. Problems Tags appear in output Email texts include placeholders between human-readable text Missed placeholders confuse users Websites are rendered with strange characters...Code Smellsclean code
The impostortheimpostorblog.purakilla.com·Dec 9, 2024Recursos código limpioLibros Code Smells. Refactoring por Martin Fowler Clean code por Robert Martin, Dean Wamper Básicos de clean code Hacer ejercicio de un código hecho, y revisar. Crear PR de código limpio Testing Tangentially related for determining whether w...Códigoclean code
Ansh Agrawalansh076.hashnode.dev·Dec 7, 2024Understanding and Implementing SOLID Principles in Software DevelopmentA Comprehensive Guide to Writing Clean, Maintainable, and Scalable Code Writing clean, maintainable, and scalable code is essential for building robust software. The SOLID principles-Single Responsibility, Open/Closed, Liskov Substitution, Interface ...2 likes·49 readssolid programming
Hassanigocoding.hashnode.dev·Dec 5, 2024Mastering JavaScript Modules: A Fun and Simple Guide to Imports, Exports, and Best Practices 📦🔧A Beginner’s Guide to JavaScript Modules: Organize Your Code Like a Pro If you’re building anything larger than a simple script, you’ve probably heard the word “modules” thrown around. But, what are modules in JavaScript? Why are they important? And ...1 likemodules