#codetip نتائج البحث
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
Hi Friends! Today I wanna share with you another #softwaredevelopment Good practice. #CodeTip. Let's get started! 7.- Use Staging and Production Environments

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)👇

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

🚀 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
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! 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

To gather valuable intelligence about your EC2 instances. Strengthen your defenses with OSINT and AWS synergy! #NetworkSecurity #AWS #CodeTip

🎯 Laravel Tip of the Day: Eloquent Accessors & Mutators 🎯 Did you know? You can modify Eloquent attribute values when you retrieve or set them. Use accessors & mutators for a cleaner, more maintainable code. Happy coding! 🚀 #Laravel #PHP #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

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

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…

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.

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
**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
Did you know? In C++, you can easily convert a string to an integer using stoi(). 🌟 Example:- std::string str = "123"; int num = std::stoi(str); // num = 123 It even supports different bases! Just pass the base as a parameter. Perfect for those quick conversions. ⚡️ #CodeTip
Hi Friends! Today I wanna share with you another #softwaredevelopment Good practice. #CodeTip. Let's get started! 7.- Use Staging and Production Environments

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

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" ⤵️

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)👇

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 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)👇

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

To gather valuable intelligence about your EC2 instances. Strengthen your defenses with OSINT and AWS synergy! #NetworkSecurity #AWS #CodeTip

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

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…

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

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

Check the diff! #Laravel #CodeTip Before: 23.337s, 57MB. After: 644ms, 7MB. The image shows the diff.


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!

Design patterns are a great way to solve #programming problems quickly and efficiently. Use them to make re-usable, maintainable code! #CodeTip

Something went wrong.
Something went wrong.
United States Trends
- 1. Bears 80.1K posts
- 2. Jake Moody 10.6K posts
- 3. Falcons 47.3K posts
- 4. Bills 134K posts
- 5. Snell 19.9K posts
- 6. Josh Allen 23.9K posts
- 7. Caleb 42.8K posts
- 8. #Dodgers 13.8K posts
- 9. #BearDown 1,779 posts
- 10. Swift 289K posts
- 11. Jayden Daniels 9,599 posts
- 12. Turang 3,797 posts
- 13. Bijan 29.6K posts
- 14. Ben Johnson 3,431 posts
- 15. #NLCS 12.7K posts
- 16. phil 151K posts
- 17. Roki 5,639 posts
- 18. Brewers 45K posts
- 19. #RaiseHail 7,988 posts
- 20. AFC East 8,781 posts