#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 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 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 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
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
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):
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
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
To gather valuable intelligence about your EC2 instances. Strengthen your defenses with OSINT and AWS synergy! #NetworkSecurity #AWS #CodeTip
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.
`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
Don't undo what you haven't done! Turning something off, doing a task, and then turning it back on seems simple. @laravelphp #codetip #tip youtube.com/watch?v=xGxJyD…
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
To gather valuable intelligence about your EC2 instances. Strengthen your defenses with OSINT and AWS synergy! #NetworkSecurity #AWS #CodeTip
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
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
Hi Friends! Today I wanna share with you another #softwaredevelopment Good practice. #CodeTip. Let's get started! 7.- Use Staging and Production Environments
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
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 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)👇
Design patterns are a great way to solve #programming problems quickly and efficiently. Use them to make re-usable, maintainable code! #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 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)👇
Design patterns are a great way to help design efficient & reusable code. Favor composition over inheritance for a more maintainable & robust system. #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
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
💡 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
Something went wrong.
Something went wrong.
United States Trends
- 1. Gameday 31.7K posts
- 2. Sesko 46.2K posts
- 3. #SaturdayVibes 4,868 posts
- 4. Ugarte 16K posts
- 5. De Ligt 26K posts
- 6. Texas Tech 7,916 posts
- 7. Good Saturday 33.5K posts
- 8. #Caturday 5,072 posts
- 9. Richarlison 21.5K posts
- 10. Trump Stadium 1,989 posts
- 11. Calen Bullock N/A
- 12. Amorim 66K posts
- 13. Cunha 25.3K posts
- 14. Vicario 1,991 posts
- 15. #TOTMUN 18.1K posts
- 16. Casemiro 24.3K posts
- 17. Insurance 192K posts
- 18. Goretzka 1,838 posts
- 19. Luis Diaz 22.7K posts
- 20. Odobert 4,874 posts