#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

Mike_Bello90's tweet image. 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)👇

Mike_Bello90's tweet image. 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)👇

Mike_Bello90's tweet image. 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)👇

Mike_Bello90's tweet image. 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)👇

Mike_Bello90's tweet image. 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

sebwilgosz's tweet image. 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

Mike_Bello90's tweet image. 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

fezz4real's tweet image. 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):

ascript_dev's tweet image. 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.

Mike_Bello90's tweet image. 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

Mike_Bello90's tweet image. 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

Ekbyte's tweet image. `width: max-content;`

This thing in css is a saviour for `absolute` positioned child elements!

#css #codeTip #cssPlayce #web

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!

geezy_tim's tweet image. 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.

wariorashidd's tweet image. 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

nerijusoftas's tweet image. 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

SunnySameer_'s tweet image. 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

geezy_tim's tweet image. 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…


🚀 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

Aditya_Ojha__'s tweet image. Code Tip:

 vector&amp;lt;bool&amp;gt;  unordered_set&amp;lt;int&amp;gt;
...when the value range is known &amp;amp; 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

nerijusoftas's tweet image. Laravel tip of the day: Did you know about Eloquent&apos;s when() method for cleaner conditionals? Here’s a quick example: Post::when($isActive, fn($q) =&amp;gt; $q-&amp;gt;where(&apos;status&apos;, &apos;active&apos;)) 🎯 #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):

ascript_dev's tweet image. 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


JS tip: Use map, filter, and reduce to work smarter with arrays! #JavaScript #CodeTip

CodeWith_ML's tweet image. JS tip: Use map, filter, and reduce to work smarter with arrays! #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

Mel_Graphix's tweet image. 💡 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

SunnySameer_'s tweet image. 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


JS tip: Use map, filter, and reduce to work smarter with arrays! #JavaScript #CodeTip

CodeWith_ML's tweet image. JS tip: Use map, filter, and reduce to work smarter with arrays! #JavaScript #CodeTip

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

bazlur_rahman's tweet image. 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&quot;
⤵️

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

sebwilgosz's tweet image. 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

geezy_tim's tweet image. When working with TypeScript, leverage union types for better type safety. They allow you to combine different types without any extra interfaces! 🚀 It&apos;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

Mike_Bello90's tweet image. Hi Friends!

Today I wanna share with you another #softwaredevelopment Good practice. 
#CodeTip.

Let&apos;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!

geezy_tim's tweet image. In TypeScript, using union types can greatly improve your code&apos;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

fezz4real's tweet image. J&apos;étais fatigué de la redondance des données dans ma base de données  J&apos;ai utilisé ce petit bout de code pour économiser de l&apos;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

0xf4r's tweet image. 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

Mel_Graphix's tweet image. 💡 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

khemsok97's tweet image. 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

Ekbyte's tweet image. `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)👇

Mike_Bello90's tweet image. Hi guys!

Today wanna talk to you about another #softwareDevelopment good practice.

#CodeTip

6.- Plan &amp;amp; Design Before Execution.

When starting a project, it&apos;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

byte_hide's tweet image. 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)👇

Mike_Bello90's tweet image. Hi all!

Today I&apos;m gonna share with you a software development good practice  to improve your #code 

Let&apos;s start!

 #CodeTip

1.- YAGNI Principle.

YAGNI stands for &quot;You Ain&apos;t Gonna Need it&quot;, 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)👇

Mike_Bello90's tweet image. Hi Friends! 

Today Let&apos;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)👇

Mike_Bello90's tweet image. Hi Guys! Today I want to share another #CodeTip to write #CleanCode, this is tip number 6, check my profile if you haven&apos;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

nerijusoftas's tweet image. Laravel tip of the day: Did you know about Eloquent&apos;s when() method for cleaner conditionals? Here’s a quick example: Post::when($isActive, fn($q) =&amp;gt; $q-&amp;gt;where(&apos;status&apos;, &apos;active&apos;)) 🎯 #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

SunnySameer_'s tweet image. 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):

ascript_dev's tweet image. 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

khemsok97's tweet image. Design patterns are a great way to help design efficient &amp;amp; reusable code. Favor composition over inheritance for a more maintainable &amp;amp; robust system. #Codetip

Loading...

Something went wrong.


Something went wrong.


United States Trends