#codestyle 搜尋結果

La oferta de 5,99€ 🥵 #CodeStyle

Style_coc's tweet image. La oferta de 5,99€ 🥵

#CodeStyle

Another win for the night 🥵 #Dirt #CodeStyle

TheGreatStyl3s's tweet image. Another win for the night 🥵 #Dirt #CodeStyle

Habrá que celebrarlo con algún sorteo, digo yo, no? Atentos al Stream de hoy! 💪 #CodeStyle 😍

Style_coc's tweet image. Habrá que celebrarlo con algún sorteo, digo yo, no?

Atentos al Stream de hoy! 💪

#CodeStyle 😍

Redesigns 🎨 are totally righteous 😎. Check out my tight new look here: stickler-ci.com. Now your style tool is as fly 🎩 as your code 🤓. #codereview #codestyle

sticklerci's tweet image. Redesigns 🎨 are totally righteous 😎. Check out my tight new look here: stickler-ci.com. Now your style tool is as fly 🎩 as your code 🤓. #codereview #codestyle

When I see developers pointlessly arguing about code style... #dev #programming #codestyle


🍰 Chore: prettier has been landed in ng-run.com Ctrl+Alt+Shift+P #Angular #CodeStyle


Is it just me or in this example the with curly braces is actually more readable? #CodeStyle #JavaScript #ReactJS #CodeNewbie

swashata's tweet image. Is it just me or in this example the with curly braces is actually more readable?

#CodeStyle #JavaScript #ReactJS #CodeNewbie
swashata's tweet image. Is it just me or in this example the with curly braces is actually more readable?

#CodeStyle #JavaScript #ReactJS #CodeNewbie

#powershell #codestyle am I crazy for the intent of the indent?!

Xajuan17's tweet image. #powershell #codestyle am I crazy for the intent of the indent?!

Settle a debate: tabs or spaces? #DevLife #CodeStyle #Technologists

Andela's tweet image. Settle a debate: tabs or spaces? 
#DevLife #CodeStyle #Technologists

Automate Python workflow using pre-commits: black and flake8 ljvmiranda921.github.io/notebook/2018/… #Python #CodeStyle


🚀 C# Devs, which do you prefer? 🚀 ✅ var firstName = "John"; ✅ string firstName = "John"; var keeps things short, string improves readability. What’s your take? Reply below! 👇 Looking for a dev? DM me! #CSharp #DotNet #CodeStyle #SoftwareDevelopment #LookingForADeveloper

kmasocha's tweet image. 🚀 C# Devs, which do you prefer? 🚀

✅ var firstName = "John";
✅ string firstName = "John";

var keeps things short, string improves readability. What’s your take? Reply below! 👇
Looking for a dev? DM me!

#CSharp #DotNet #CodeStyle #SoftwareDevelopment #LookingForADeveloper

This repo has code style rules that require you to write comments for methods. #CleanCode #PHP #CodeStyle

JeroenDeDauw's tweet image. This repo has code style rules that require you to write comments for methods. #CleanCode #PHP #CodeStyle

🔥 New Prettier Release 🚀 📦 2.1.0 ✨ FEATURE RELEASE 🎉🎉 🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler 🔗 github.com/prettier/prett…

releasebutler's tweet image. 🔥 New Prettier Release 🚀
  
📦 2.1.0 
✨ FEATURE RELEASE 🎉🎉

🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler

🔗 github.com/prettier/prett…

🔥 New Prettier Release 🚀 📦 3.0.0-alpha.0 🚧 ALPHA PRE-RELEASE 🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler 🔗 github.com/prettier/prett…

releasebutler's tweet image. 🔥 New Prettier Release 🚀
  
📦 3.0.0-alpha.0 
🚧 ALPHA PRE-RELEASE

🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler

🔗 github.com/prettier/prett…

comparism of classic conditional assign of a variable in contrast to #modernABAP. See the Advantages in code #CodeStyle #abapdevelopment #ABAP

Timo_John's tweet image. comparism of classic conditional assign of a variable in contrast to #modernABAP.

See the Advantages in code
#CodeStyle #abapdevelopment
#ABAP

Settle a debate: tabs or spaces? #DevLife #CodeStyle #Technologists

Andela's tweet image. Settle a debate: tabs or spaces? 
#DevLife #CodeStyle #Technologists

$ nanoPrime init --website-development ⚡ Fast websites. 🔒 High security. 🎨 Beautiful design. 📈 Maximum conversions. We’re coding your brand’s next big move. Ready to deploy? #NanoPrimeZW #WebsiteDevelopment #CodeStyle #TechBranding #ZimbabweBusiness

NanoPrimeZw's tweet image. $ nanoPrime init --website-development

⚡ Fast websites.
🔒 High security.
🎨 Beautiful design.
📈 Maximum conversions.

We’re coding your brand’s next big move. Ready to deploy?

#NanoPrimeZW #WebsiteDevelopment #CodeStyle #TechBranding #ZimbabweBusiness

"Consistent code style is crucial. Use linters & formatters religiously (e.g., ESLint, Prettier). Saves debugging time & improves team collaboration. ⚡️ Aim for 95%+ code coverage with unit tests. 💎" #codestyle #linters #testing


The best codebases I’ve worked with weren’t the most clever—they were the most consistent. #CleanCode #CodeStyle #SoftwareEngineering #DevTips


3️⃣ Set your coding rules. Tabs vs spaces. TypeScript vs JS. Naming patterns. Copilot isn’t opinionated—you are. Make it follow your vibe. #cleancode #CodeStyle #TypeScript


Consistent coding style reduces friction in teams. Pick a style guide and stick to it. #TeamWork #CodeStyle #DeveloperTips #Programming


"Consistent code style is crucial. Use linters & formatters religiously (e.g., Prettier, ESLint) for readability & maintainability. Saves debugging time & improves team collaboration. 💻✨🎯" #codestyle #linters #formatters


🔁 Be consistent with your codebase’s conventions. Don’t surprise your teammates. Surprise bugs instead! #CodeStyle #TeamWork #SoftwareEngineering


📏 Endless discussions about code style? Agree on a common style and automate it with linters and formatters. Focus on quality, not preferences. #CodeStyle #Automation #BestPractices


2. Use table aliases wisely ✅ Aliases save time but must be meaningful: 🚫 Avoid a, b, c, it gets messy in joins. #SQL #CodeStyle

manish_virgat's tweet image. 2. Use table aliases wisely
✅ Aliases save time but must be meaningful:
🚫 Avoid a, b, c, it gets messy in joins.

#SQL #CodeStyle

🔤 Variables Use camelCase and descriptive names. ✅ let dogName = "Rocky"; ❌ Avoid using single-letter names such as x, y, and so on. ➡️ Boolean variables have their own rules 👇 #JavaScriptTips #CodeStyle (2/12)

Syncfusion's tweet image. 🔤 Variables
Use camelCase and descriptive names.
✅ let dogName = "Rocky";
❌ Avoid using single-letter names such as x, y, and so on.
➡️ Boolean variables have their own rules 👇
#JavaScriptTips #CodeStyle
(2/12)

I don't know who needs to hear this but Consistency in your codebase is more important than using the 'perfect' pattern. Pick a style and stick with it. #CodeStyle

DeveloperOnearm's tweet image. I don't know who needs to hear this but 

Consistency in your codebase is more important than using the 'perfect' pattern. Pick a style and stick with it. #CodeStyle

Tabs or Spaces? Which do you use for indentation and why? Let's settle this age-old debate among devs! Tell me your preference! 👇 #CodeStyle #Programming


🎨 Formatlamaya özen gösterin. Tutarlı boşluklar, girintiler ve satır sonları kodun okunabilirliğini büyük ölçüde artırır. Linters kullanın! #Formatting #CodeStyle #CleanCode


Tabs or Spaces? Which do you use for indentation, and why? Let's settle the ultimate coding style debate! 👇 #CodeStyle #DevLife


Tabs or Spaces? Which one do you use to indent your code and why? Let's settle this age-old debate! 👇 #Programming #CodeStyle


La oferta de 5,99€ 🥵 #CodeStyle

Style_coc's tweet image. La oferta de 5,99€ 🥵

#CodeStyle

Habrá que celebrarlo con algún sorteo, digo yo, no? Atentos al Stream de hoy! 💪 #CodeStyle 😍

Style_coc's tweet image. Habrá que celebrarlo con algún sorteo, digo yo, no?

Atentos al Stream de hoy! 💪

#CodeStyle 😍

Settle a debate: tabs or spaces? #DevLife #CodeStyle #Technologists

Andela's tweet image. Settle a debate: tabs or spaces? 
#DevLife #CodeStyle #Technologists

Another win for the night 🥵 #Dirt #CodeStyle

TheGreatStyl3s's tweet image. Another win for the night 🥵 #Dirt #CodeStyle

What’s the best way to name Flutter widgets? Logical names or wild creativity? #CodeStyle

birjuvachhani's tweet image. What’s the best way to name Flutter widgets? 
Logical names or wild creativity? 
#CodeStyle

🍰 Chore: prettier has been landed in ng-run.com Ctrl+Alt+Shift+P #Angular #CodeStyle


2. Use table aliases wisely ✅ Aliases save time but must be meaningful: 🚫 Avoid a, b, c, it gets messy in joins. #SQL #CodeStyle

manish_virgat's tweet image. 2. Use table aliases wisely
✅ Aliases save time but must be meaningful:
🚫 Avoid a, b, c, it gets messy in joins.

#SQL #CodeStyle

🔤 Variables Use camelCase and descriptive names. ✅ let dogName = "Rocky"; ❌ Avoid using single-letter names such as x, y, and so on. ➡️ Boolean variables have their own rules 👇 #JavaScriptTips #CodeStyle (2/12)

Syncfusion's tweet image. 🔤 Variables
Use camelCase and descriptive names.
✅ let dogName = "Rocky";
❌ Avoid using single-letter names such as x, y, and so on.
➡️ Boolean variables have their own rules 👇
#JavaScriptTips #CodeStyle
(2/12)

I don't know who needs to hear this but Consistency in your codebase is more important than using the 'perfect' pattern. Pick a style and stick with it. #CodeStyle

DeveloperOnearm's tweet image. I don't know who needs to hear this but 

Consistency in your codebase is more important than using the 'perfect' pattern. Pick a style and stick with it. #CodeStyle

🔥 New Prettier Release 🚀 📦 3.0.0-alpha.0 🚧 ALPHA PRE-RELEASE 🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler 🔗 github.com/prettier/prett…

releasebutler's tweet image. 🔥 New Prettier Release 🚀
  
📦 3.0.0-alpha.0 
🚧 ALPHA PRE-RELEASE

🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler

🔗 github.com/prettier/prett…

#powershell #codestyle am I crazy for the intent of the indent?!

Xajuan17's tweet image. #powershell #codestyle am I crazy for the intent of the indent?!

🔥 New Prettier Release 🚀 📦 2.1.0 ✨ FEATURE RELEASE 🎉🎉 🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler 🔗 github.com/prettier/prett…

releasebutler's tweet image. 🔥 New Prettier Release 🚀
  
📦 2.1.0 
✨ FEATURE RELEASE 🎉🎉

🏷️ #prettier #codestyle #tooling #release #changelog #releasebutler

🔗 github.com/prettier/prett…

Loading...

Something went wrong.


Something went wrong.


United States Trends