#devtip نتائج البحث
#devtip #caparledev Cet outils ImageOptim compresse les images assez bien et vite. Idéal pour les assets à mettre dans vos app web
🚀 Advanced Spring Boot Tip 🚀 Use @Validated and @ConfigurationProperties with javax.validation annotations. Catch misconfigured properties early at startup, not at runtime. 🔥 #SpringBoot #Java #DevTip
Skip the parsing nightmares 💀 Query Cisco devices with curl + RESTCONF = structured JSON every time. No more parsing text output that breaks with every IOS update. #CiscoDevNet #DevTip #RESTCONF
🚀#DevTip: Instead of the ‘else if’ chains! Try to use an object instead for cleaner and more efficient code.👩💻 This makes your code more readable and maintainable.
🚀#DevTip: If you don't care about index number and don't feel like using traditional for loop, try `forEach`! Both approaches achieve the same outcome, but the forEach method offers several advantages: - It requires less code. - Easier to understand and modify logic.
✨#DevTip para #Android Cuando el usuario realiza una acción, es importante darle un feedback de respuesta, una de la maneras es a través de una pequeña vibración. Ejemplo cuando se añade a❤️
🚀 Quickly jump from your local #git repository to its corresponding GitHub page with this handy shell alias! ✨ 🔗 Add `openrepo` to your shell profile or rc file, source it, and now you can simply type `openrepo` in your terminal to open your GitHub repo. 😎 #GitHub #DevTip
📣 #DevTip: Streamline your code with Array’s forEach method in JavaScript! 🚀 ✅ Pros: clean, less prone to errors & easier to maintain ❌ Cons: Not suitable for async functions. Hard to stop or break a forEach() loop other than by throwing an exception. #JavaScript
CLI productivity tip: The hyphen (-) = "previous location" • cd - → previous directory (bash) • git checkout - → previous branch (git) Toggle between locations without retyping. Game changer for dev/prod workflows. ⚡ #CiscoDevNet #DevTip
Paranoid about making drastic changes to your database while connected via the IDE? Set it to read-only! You can also of course create a user that can only perform SELECT. This is with @phpstorm and probably in other IDEs as well ;) #devtip
🚀 Boost Your Coding Speed TODAY! #DevTip Monday: Must-Know Shortcut Tired of endless clicking? Use `Ctrl + D` in VS Code to quickly select the next occurrence of a word. Fast, simple, and super effective! #Productivity #CodeFaster #DevHacks #WebDev #Programming #CodeLife…
Java isn’t slow for AI. With modern JVMs, GraalVM, and libraries like Deep Java Library (DJL), Java runs AI workloads fast — and with less boilerplate than you think. 🔥 Don’t sleep on Java’s performance. #Java #AI #DevTip
💡#DevTip: Keep your Git commits atomic. Each commit should represent one clear, meaningful change. Not only does this make code reviews smoother, but it also simplifies debugging. Think of it as crafting a well-organized story, one chapter at a time. 📘🔍 #CleanCode…
🚀 Meet Karishma Kumavat, our amazing Web Developer, sharing her top productivity hacks to boost your workflow! 💼✨ ✨ Start your day by planning tasks and breaking them into smaller chunks ✅ #WebDeveloper #DevTip #CodeSmart #PardyPandaStudios #CleanCode #DeveloperCommunity
When you’re a developer, planning is your superpower. “Solve issues before you build, and you’ll speed up the entire process.” — Brandon Vreeman, PM & Dev. Quality code begins with thoughtful prep. #DevTip #TeamIronistic
Skip the parsing nightmares 💀 Query Cisco devices with curl + RESTCONF = structured JSON every time. No more parsing text output that breaks with every IOS update. #CiscoDevNet #DevTip #RESTCONF
Ah, por cierto. En la imagen del primer tweet les dejé un pequeño "easter egg": un tip rápido con los comandos para hacer un release de un tag en Git. 🤓💻 Si quieres saber cómo se hace un PWA pasa por el repositorio: github.com/lgzarturo/fron… #GitHub #DevTip #javascript
Quick WordPress tip: Always use wp_upload_dir() instead of hardcoding paths. Your migrations will thank you. #WordPress #DevTip
CLI productivity tip: The hyphen (-) = "previous location" • cd - → previous directory (bash) • git checkout - → previous branch (git) Toggle between locations without retyping. Game changer for dev/prod workflows. ⚡ #CiscoDevNet #DevTip
WP-CLI tip: `wp plugin update --all --dry-run` shows which plugins will update WITHOUT actually updating. Test before you commit. #WPCLI #WordPress #DevTip
Kicking off our new weekly #DevTip series! 💡 Tired of KeyError crashing your Python scripts? Use .get() on dictionaries. port_status = interface.get('status', 'unknown') It provides a safe default value if a key is missing, making your automation more robust. #CiscoDevNet
Aprendi este concepto que no conocia Idempotencia = 1 llamada o 100 llamadas, mismo resultado. 🔄 Es lo que evita que un reintento de pago fallido se convierta en un cobro doble. 💳🚫 Vital para APIs robustas, no solo para el "camino feliz". 🛠️✅ #programacion #devtip #api
I recently learned about this concept *Idempotency* Idempotency = 1 call or 100 calls, same result. 🔄 It's what stops a failed payment retry from becoming a double charge. 💳🚫 Vital for robust APIs. Build for retries, not just the happy path. 🛠️✅ #programming #devtip #api
Make your agent listings pop! Add metadata to DAT transactions for easy searchability. Keep coding, keep vibing! 😎 #CHANELSS26 #DevTip #WebDev
💡 DevTip Use the metadata field in your DAT transactions to make agent listings searchable. Keep building, keep chilling!
Use the metadata field in your DAT transactions to make agent listings searchable. Keep building, keep chilling!" Pro tip for devs: Make those listings pop with metadata! #DevTip #CodingLife
💡 DevTip Use the metadata field in your DAT transactions to make agent listings searchable. Keep building, keep chilling!
Stuck on a nasty bug? 🛑 Don't jump in immediately. Walk away for 5 min. Your brain's background process is genius. Come back with fresh eyes & see the obvious. #DevTip #TechStrategy
🧠 Dev Tip: One-liners = secret weapons. Clean, efficient, and time-saving. ✅ Transform data ✅ Simplify logic ✅ Cut debug time What’s your go-to one-liner? 👇 Drop it below. 🔗 zurl.co/1kGnT #DevTip #CleanCode #CodeSmart #FinallyFreeProductions
🐍 ¿Te gusta vivir al límite? Entonces sigue concatenando strings en tus queries y dile adiós a tu BD con una sonrisa. 😎 ¿Prefieres dormir tranquilo? Usa ORM + escapes 😌 #DevTip #Java #SQLInjection #XSS #Security #SpringBoot
Most “rewrites” fail because people swap complexity for new complexity. Refactor instead—it compounds like interest. #devtip
🚨 Si tu código no tiene tests, ¿cómo sabes que funciona? Spoiler: No lo sabes. 🧪 Automatiza tus pruebas. 💣 Evita sustos en producción. 🚀 Libera código con confianza. #DevTip #Testing #CleanCode #Java
🚀 Advanced Spring Boot Tip 🚀 Use @Validated and @ConfigurationProperties with javax.validation annotations. Catch misconfigured properties early at startup, not at runtime. 🔥 #SpringBoot #Java #DevTip
🚀 Advanced Spring Boot Tip 🚀 Use @Validated and @ConfigurationProperties with javax.validation annotations. Catch misconfigured properties early at startup, not at runtime. 🔥 #SpringBoot #Java #DevTip
🔑 #DevTip: Use JavaScript's Set to easily remove duplicate elements from an array. Unique values made simple! #WebDev #CodingTips #ES6 #javascript #TheWeeklyDev
🎉 #DevTip: Embrace JavaScript's Array.reduce() for powerful & flexible array manipulation. Aggregate values, compute sums, and more! #WebDev #CodingTips #ES6 #JavaScript #TheWeeklyDev
#devtip #caparledev Cet outils ImageOptim compresse les images assez bien et vite. Idéal pour les assets à mettre dans vos app web
📡 #DevTip: With Fetch API and async/await, making HTTP requests in JavaScript is easier than ever. #WebDev #JavaScript #FetchAPI #AsyncAwait #TheWeeklyDev
🚧 #DevTip: Catch and handle JavaScript errors gracefully using try-catch blocks. Maintain a smooth user experience even when things go wrong. #WebDev #CodingTips #ErrorHandling #JavaScript #TheWeeklyDev
🔬 #DevTip: Use JavaScript's Array.prototype.filter() to create a new array with elements that pass a certain condition. Functional programming in action! #TheWeeklyDev #WebDev #JavaScript #ArrayMethods
"🚦 #DevTip: Use 'IntersectionObserver' to efficiently detect when elements become visible on the screen. Great for implementing lazy loading, infinite scrolling, or triggering animations on scroll. #WebDev #JavaScript #PerformanceTips #TheWeeklyDev
🚀#DevTip: Instead of the ‘else if’ chains! Try to use an object instead for cleaner and more efficient code.👩💻 This makes your code more readable and maintainable.
Skip the parsing nightmares 💀 Query Cisco devices with curl + RESTCONF = structured JSON every time. No more parsing text output that breaks with every IOS update. #CiscoDevNet #DevTip #RESTCONF
⌛ #DevTip: Debounce user events in #JavaScript to improve performance. Delay action until a specified time has passed without additional triggers. #WebDev #CodingTips #Performance #TheWeeklyDev #FrontEnd
CLI productivity tip: The hyphen (-) = "previous location" • cd - → previous directory (bash) • git checkout - → previous branch (git) Toggle between locations without retyping. Game changer for dev/prod workflows. ⚡ #CiscoDevNet #DevTip
🔗 #DevTip: Simplify deep cloning of objects in #JavaScript with JSON.parse() and JSON.stringify(). Preserve nested structures without references. #WebDev #CodingTips #TheWeeklyDev #JavaScript
🧭 #DevTip: Use JavaScript's Array.sort() to organize arrays efficiently. Customize the sorting logic with a comparator function. #WebDev #CodingTips #ES6 #JavaScript #TheWeeklyDev
Did you know about the HTML spellcheck attribute? #devtip #html #webdev #webdeveloper #backend #frontend
🔍 #DevTip: Avoid using '==' for equality checks in #JavaScript; use '===' instead. It compares both value and type, preventing unexpected type coercion issues. #WebDev #CodingTips #BestPractices #TheWeeklyDev
👁️ #DevTip: Master CSS pseudo-classes for more dynamic styles. :hover, :active, :focus, and :nth-child() can add interactivity and enhance user experience. #TheWeeklyDev #WebDev #CSS #PseudoClasses
📊 #DevTip: Use localStorage or sessionStorage for simple, client-side data storage in your web applications. Remember, data is stored as strings! #TheWeeklyDev #WebDev #JavaScript #LocalStorage
Something went wrong.
Something went wrong.
United States Trends
- 1. FIFA 437K posts
- 2. The WET 117K posts
- 3. #ROHFinalBattle 2,648 posts
- 4. Hep B 18.7K posts
- 5. #JingleBellJohn N/A
- 6. Vizio N/A
- 7. Frank Gehry 6,838 posts
- 8. Hisense 1,255 posts
- 9. HOLD THE LINE 6,195 posts
- 10. The EU 235K posts
- 11. Warner Bros 273K posts
- 12. Paraguay 30.6K posts
- 13. Portugal 117K posts
- 14. $CVNA 1,499 posts
- 15. Matt Campbell 11.4K posts
- 16. FINALLY DID IT 437K posts
- 17. Wellington 6,414 posts
- 18. Sherman 5,162 posts
- 19. Burden 27K posts
- 20. Argentina 252K posts