#codetip search results
Hi Friends! Today I wanna share with you another #softwaredevelopment Good practice. #CodeTip. Let's get started! 7.- Use Staging and Production Environments
🚀 Just launched CodeTips - a modern platform for sharing & collaborating on code snippets! Think GitHub Gists meets collaborative editing with a beautiful UI ✨ Built with @laravelphp @vuejs @inertiajs #codetip #codesnippet #codesharing #developertools
Hi guys! Today wanna talk to you about another #softwareDevelopment good practice. #CodeTip 6.- Plan & Design Before Execution. When starting a project, it's very important to plan, research and Design the solution before you start coding. (1/4)👇
Hi Friends! Today Let's talk about another good practice in software development. #CodeTip 5.- Follow Style Guides and Naming Convections. Every language has recommended style guides and naming conventions to write your code. (1/4)👇
Hi all! Today I'm gonna share with you a software development good practice to improve your #code Let's start! #CodeTip 1.- YAGNI Principle. YAGNI stands for "You Ain't Gonna Need it", this principle tells us that you should only write the code that you need now.(1/3)👇
Hi Guys! Today I want to share another #CodeTip to write #CleanCode, this is tip number 6, check my profile if you haven't seen the other tips. Remember to follow me to learn more about software good practices, security, smart contracts and share to spread the knowledge. (1/5)👇
Automatically go out of the current folder and go back. Useful when you work with multiple ruby versions, constant branch switching, and so on ) #productivity #codetip buff.ly/42T4IV0
Hi Friends! Yesterday, we finished the #CodeTip on writing #CleanCode. Tomorrow we gonna start another serie of tips on a different topic Follow me to learn about #CodeGoodPractices, #SmartContracts #SmartContractsSecurity, and other topics I'll be sharing and learning in public
J'étais fatigué de la redondance des données dans ma base de données J'ai utilisé ce petit bout de code pour économiser de l'espace et améliorer les performances de mon application ! #programmation #optimisation #codetip
Did you know you can format numbers internationally in JavaScript without using libraries? 🌎 With Intl.NumberFormat, you can format currencies, percentages, and more. What do you think of this gem? 💎 #JavaScript #CodeTip Example (COP):
Hi Friends! let's talk about the last #softwaredevelopment #GoodPractice I gonna share with you. #CodeTip 8.- Implement Code Reviews.
Guys, Let's continue with another #CodeTip to write #CleanCode Today tip number 3 is about comments in your code. 👇 #smartcontracts #Security #web3 #code
`width: max-content;` This thing in css is a saviour for `absolute` positioned child elements! #css #codeTip #cssPlayce #web
Check out this code tip 💡 codetips.cloud/tip/essential-… #codetip #carbon #datetime
In TypeScript, using union types can greatly improve your code's flexibility. For instance, `type ID = string | number;` allows you to accept both strings and numbers as an ID. Simple yet powerful! 🚀 #TypeScript #CodeTip #WebDevelopment #DevCommunity Share your favorite tips!
Sharing a useful #javascript function for checking if an element is in viewport. #webdevelopment #codetip Coding trick: Use the IntersectionObserver API to detect when an element is in the viewport, this allows you to perform actions only when the element is visible to the user.
Laravel tip of the day: Did you know about Eloquent's when() method for cleaner conditionals? Here’s a quick example: Post::when($isActive, fn($q) => $q->where('status', 'active')) 🎯 #Laravel #CodeTip #php
JavaScript Tip: Want to flatten a deeply nested array? Use .flat(Infinity) to make it one-liner magic! 🚀 Easy flattening for any depth! #JavaScript #CodeTip #WebDev #Programming
When working with TypeScript, leverage union types for better type safety. They allow you to combine different types without any extra interfaces! 🚀 It's a game-changer for reducing bugs! #TypeScript #CodeTip #WebDev #DeveloperCommunity
Today, I fixed an error that had been causing a headache during the week. Check out this tip to avoid the 502 Bad Gateway error in Inertia JS apps. #nginx #502error #codetip codetips.cloud/tip/fixing-the…
Check out this code tip 💡 codetips.cloud/tip/essential-… #codetip #carbon #datetime
🚀 Just launched CodeTips - a modern platform for sharing & collaborating on code snippets! Think GitHub Gists meets collaborative editing with a beautiful UI ✨ Built with @laravelphp @vuejs @inertiajs #codetip #codesnippet #codesharing #developertools
Thinking about monads as a wrapper for your values is a great starting point. It lets you apply functions to a value inside the wrapper, all while handling the context (like null checks or state). #CodeTip #Monads @monad
Tired of the logical OR `||` giving you bugs with `0` or `false`? The nullish coalescing operator `??` is your new best friend! ✨ It only falls back for `null` or `undefined`. `const value = input ?? 'default';` So clean! Level up your skills! #JavaScript #CodeTip
Code Tip: vector<bool> unordered_set<int> ...when the value range is known & small. Swapped one line in Leetcode 1695 and jumped from (bottom 20%) to (top 5%) 👉 medium.com/@kaditya67/how… #CodeTip #Leetcode #cpp #slidingwindow #programming #devtips
Pro @Flutterflow tip! 💡 Use debugPrint("your message") in custom code instead of print(). Keep your production console clean! ✨ #FlutterFlow #CodeTip #Debugging 🐛
Laravel tip of the day: Did you know about Eloquent's when() method for cleaner conditionals? Here’s a quick example: Post::when($isActive, fn($q) => $q->where('status', 'active')) 🎯 #Laravel #CodeTip #php
Did you know you can format numbers internationally in JavaScript without using libraries? 🌎 With Intl.NumberFormat, you can format currencies, percentages, and more. What do you think of this gem? 💎 #JavaScript #CodeTip Example (COP):
Swap Two Numbers Without a Temp Variable! a, b = 5, 10 print(f"Before Swap: a = {a}, b = {b}") a, b = b, a print(f"After Swap: a = {a}, b = {b}") 🛠️ Try this out and share your output! #Python #CodeTip
I use console.table() to display objects as tables. It’s super handy for inspecting data structures when debugging ! 🎉 #CodeTip"
Always remember: #Readability > #Cleverness. Code should be clear, not mysterious. 🕵️ #CodeTip #Programming #CodeNewbie
Use destructuring to write cleaner JavaScript. #JavaScript #CodeTip
💡 Got 5 cents? That’s all you need! With microtransactions as low as $0.05, supporting creators or sending payments is super simple. No need to overthink tipping—Code makes it easy! 🪙 #MicroTransactions #Web3Tips #CodeTip
**Objective-C** **Obj-C Tip 💪:** Use [super init] to invoke the superclass's designated initializer. Its syntax is more concise than calling the superclass's initializer directly. #ObjectiveC #iOSDev #CodeTip
Learning async JavaScript can be easy! Promises and Async/Await let you write non-blocking code 🚀 Follow me for more bite-sized JavaScript tips and tricks! 💡👨💻 #JavaScript #AsyncProgramming #CodeTip
JavaScript Tip: Want to flatten a deeply nested array? Use .flat(Infinity) to make it one-liner magic! 🚀 Easy flattening for any depth! #JavaScript #CodeTip #WebDev #Programming
Struggling with debugging? Use print statements or a debugger tool to trace errors efficiently! Break down your code step-by-step for easier fixes. #CodeTip #Programming101 #Python #JavaScript #DebuggingTips
Wrap it up!🎁 With Optional in #Java, you can avoid the dreaded NullPointerException and access null values safely. Return an Optional instead of a potentially null value in your methods and enjoy a safer coding experience! #JavaProgramming #CodeTip" ⤵️
Automatically go out of the current folder and go back. Useful when you work with multiple ruby versions, constant branch switching, and so on ) #productivity #codetip buff.ly/42T4IV0
When working with TypeScript, leverage union types for better type safety. They allow you to combine different types without any extra interfaces! 🚀 It's a game-changer for reducing bugs! #TypeScript #CodeTip #WebDev #DeveloperCommunity
Hi Friends! Today I wanna share with you another #softwaredevelopment Good practice. #CodeTip. Let's get started! 7.- Use Staging and Production Environments
In TypeScript, using union types can greatly improve your code's flexibility. For instance, `type ID = string | number;` allows you to accept both strings and numbers as an ID. Simple yet powerful! 🚀 #TypeScript #CodeTip #WebDevelopment #DevCommunity Share your favorite tips!
J'étais fatigué de la redondance des données dans ma base de données J'ai utilisé ce petit bout de code pour économiser de l'espace et améliorer les performances de mon application ! #programmation #optimisation #codetip
To gather valuable intelligence about your EC2 instances. Strengthen your defenses with OSINT and AWS synergy! #NetworkSecurity #AWS #CodeTip
💡 Got 5 cents? That’s all you need! With microtransactions as low as $0.05, supporting creators or sending payments is super simple. No need to overthink tipping—Code makes it easy! 🪙 #MicroTransactions #Web3Tips #CodeTip
Design patterns are a great way to solve #programming problems quickly and efficiently. Use them to make re-usable, maintainable code! #CodeTip
`width: max-content;` This thing in css is a saviour for `absolute` positioned child elements! #css #codeTip #cssPlayce #web
Hi guys! Today wanna talk to you about another #softwareDevelopment good practice. #CodeTip 6.- Plan & Design Before Execution. When starting a project, it's very important to plan, research and Design the solution before you start coding. (1/4)👇
2/7🧵: Ternary Operators👌 Replace if-else structures with ternary operators for readability and simplicity! This is much cleaner and easier to understand at glance. #CSharp #Coding #CodeTip
Hi all! Today I'm gonna share with you a software development good practice to improve your #code Let's start! #CodeTip 1.- YAGNI Principle. YAGNI stands for "You Ain't Gonna Need it", this principle tells us that you should only write the code that you need now.(1/3)👇
Hi Friends! Today Let's talk about another good practice in software development. #CodeTip 5.- Follow Style Guides and Naming Convections. Every language has recommended style guides and naming conventions to write your code. (1/4)👇
Hi Guys! Today I want to share another #CodeTip to write #CleanCode, this is tip number 6, check my profile if you haven't seen the other tips. Remember to follow me to learn more about software good practices, security, smart contracts and share to spread the knowledge. (1/5)👇
Laravel tip of the day: Did you know about Eloquent's when() method for cleaner conditionals? Here’s a quick example: Post::when($isActive, fn($q) => $q->where('status', 'active')) 🎯 #Laravel #CodeTip #php
JavaScript Tip: Want to flatten a deeply nested array? Use .flat(Infinity) to make it one-liner magic! 🚀 Easy flattening for any depth! #JavaScript #CodeTip #WebDev #Programming
Did you know you can format numbers internationally in JavaScript without using libraries? 🌎 With Intl.NumberFormat, you can format currencies, percentages, and more. What do you think of this gem? 💎 #JavaScript #CodeTip Example (COP):
Design patterns are a great way to help design efficient & reusable code. Favor composition over inheritance for a more maintainable & robust system. #Codetip
Something went wrong.
Something went wrong.
United States Trends
- 1. Penn State 21.3K posts
- 2. Mendoza 18.1K posts
- 3. Gus Johnson 5,656 posts
- 4. #iufb 3,782 posts
- 5. $SSHIB 1,252 posts
- 6. Omar Cooper 8,323 posts
- 7. Sunderland 149K posts
- 8. Sayin 64.7K posts
- 9. Estevao 23K posts
- 10. Jim Knowles N/A
- 11. Texas Tech 13.1K posts
- 12. James Franklin 7,571 posts
- 13. Happy Valley 1,733 posts
- 14. Iowa 18.7K posts
- 15. #UFCVegas111 3,041 posts
- 16. Arsenal 251K posts
- 17. Neto 22.8K posts
- 18. WHAT A CATCH 10.9K posts
- 19. Oregon 32.9K posts
- 20. Charlie Becker N/A