#bettercode ผลการค้นหา
#BetterCode Move the try-catch to a function to avoid reassigning a variable or putting your whole code in try!
#BetterCode Every level of indention in your code can be moved to a separate function. Especially if you have an if without else you can use return in your function and avoid having any login in the if.
Presenting at the noon poster session today!! So excited to share my project on using human computer interaction to help teams learn practices that make their code better. #ghc19 #teamcigna #bettercode #codereview
Write better Java code by using these five tools! #Java #BetterCode #automation developer.okta.com/blog/2019/12/2…
Guideline #10: Write Clean Code Why: Clean code is more Maintainable - Proactively search and remove code smells - Remove useless comments, commented code blocks & dead code - Refactor poorly handled exceptions, magic constants & poorly named units or variables #bettercode
In his keynote at #FnConf19 Aaron Hsu explored the problems associated with code bloat and demonstrated the speed of the APL compiler he created. #APL #BetterCode #FunctionalProgramming
So, schnell noch “Schallschutz” für meinen .NET MAUI Vortrag auf der @bettercodeconf heute Nachmittag aufgebaut. Ich hoffe jetzt gibt es keine Probleme mehr mit zu viel Hall 😁 #dotnetmaui #betterCode
Check out this video of Aaron Hsu at #FnConf19. confng.in/4e7TKb-4 Like it? Sign up for 2020 conference alerts. #BetterCode #APL #Beginner #FP #FunctionalProgramming
Become a friend of the thing that disrupts your plan. — Jordan Peterson #GoldenRepair #Kintsukuroi #BetterCode #AppCraft SmallCo.co
Dunedin startup @codelingoapp and Jesse Meek are helping the world solve a multi-billion-dollar problem: waste and rework when writing software code! #SaaS #bettercode callaghaninnovation.govt.nz/success-storie…
Am 27.04. erklärt @dk_1977 auf der #betterCode() API, wie man mit gutem Design bessere und erfolgreiche APIs baut und damit Kunden begeistert: cclnk.de/3Bycd6g #api #apiexperience
Ich habe gerade laut gelacht. 😂 (aus: Passing/Jander, Weniger schlecht programmieren, Heidelberg 2013, S. 20). #bettercode #coding #hobby #Urlaubslektüre
Bad : var i; for (i = 0; i < arr.length; i++) {} Better Code : var i; var l = arr.length; for (i = 0; i < l; i++) { } #100DaysOfCode #javascript #BetterCode
Reading before coding really makes your thinking and code better. Why did nobody mention this before for me? #reading #gamedev #bettercode #work #goodtoread #knowledge #lostknowledge
Let's dispel a misconception. 100% test coverage does not make 100% bug free code, however it does make 100% deterministic code, which is arguably more valuable. #unittests #coverage #bettercode
Unlocking the Code to Success: How Continuous Improvement Drives Better Code and Better Results . . Download DevBytes App for the latest news and more tech-related content #ContinuousImprovement #CodeRefinement #BetterCode #CodeOptimization #ProgressiveDevelopment #Software
Auf der #bettercode erstellen @sippsack und @RalfDMueller in einem Online-Workshop 📊Diagramme für eine effektive Architekturdokumentation und entwickeln dabei eine nützliche #Checkliste. 👉 kurzelinks.de/nefp
🚨 Why 80% of prod incidents are self-inflicted: Lack of rigorous testing and hasty deployments! 🛠️🔍 Let's learn from our mistakes and ensure robust checks. Reply with your worst outage story—we've all been there! #DevLife #BetterCode
🫵 Follow eickernews.com »Can #LLMs write #bettercode if you keep asking them to “write better code”?« minimaxir.com/2025/01/write-… #tech #media
Navigate quality assurance with ease. SunriseQA leads the way! 🌍 #SunriseQA #QAInnovation #BetterCode
Shortcut key number #7 of VS code: 🧩 Extensions: Use Ctrl + Shift + X to find new #VSCode extensions. Nearly everything has an extension! 🔍 #BetterCode #DevTools
Sending positive vibes to all the attendees at betterCode() Spring 2024! Keep the momentum going and make the most of this amazing opportunity from @bettercodeconf. #bettercode #Java!
Write #bettercode, faster! Test-driven #development (TDD) helps design & test software simultaneously. Learn the #steps & benefits of #TDD for cleaner, more reliable code. testrigtechnologies.com/blogs/introduc… #testrig #dallasTx #javascript #TexasTech #softwareEngineering #developer
testrigtechnologies.com
Quick Guide: Test Driven Development (TDD): Life Cycle in Steps & Advantages
This guide explains everything about the life cycle ( Steps) of Test Driven Development and the Benefits it has over traditional software development models.
Have a great first day at betterCode() API 2024! Learn about #API and #GraphQL - and shoutout to @bettercodeconf! #bettercode
@harleyf may we create a tv series on @shopify and bettering technology internationally? Focused on my responsibilities, however the world must know the world of @burtonsnowboard #bettercode #javascript #other #socialgoods
Finland leads as the happiest place to live, seven times in a row! 🇫🇮 It's not about the money, but the quality of life and community. Let's explore what makes them stand out. #HappinessIndex #BetterCode
Sending our best to all participants of betterCode() Clean Architecture 2024! We hope you have an amazing time networking and learning from the experts. A big shoutout to @bettercodeconf. Share highlights using #API. #bettercode.
So, schnell noch “Schallschutz” für meinen .NET MAUI Vortrag auf der @bettercodeconf heute Nachmittag aufgebaut. Ich hoffe jetzt gibt es keine Probleme mehr mit zu viel Hall 😁 #dotnetmaui #betterCode
Da freue ich mich auf die #bettercode von @heiseonline am 27.11 #PHP
By using AI coding tools, developers can save time, improve the quality of their code, and stay ahead of the competition. 🤝 #AICodingTools #Developers #BetterCode tinyurl.com/yrufutox
Heute auf der #bettercode erstellen @sippsack und @RalfDMueller in einem Online-Workshop Diagramme für eine effektive Architekturdokumentation und entwickeln dabei eine nützliche #Checkliste. 👉 kurzelinks.de/nefp
Presenting at the noon poster session today!! So excited to share my project on using human computer interaction to help teams learn practices that make their code better. #ghc19 #teamcigna #bettercode #codereview
Write better Java code by using these five tools! #Java #BetterCode #automation developer.okta.com/blog/2019/12/2…
Navigate quality assurance with ease. SunriseQA leads the way! 🌍 #SunriseQA #QAInnovation #BetterCode
Finland leads as the happiest place to live, seven times in a row! 🇫🇮 It's not about the money, but the quality of life and community. Let's explore what makes them stand out. #HappinessIndex #BetterCode
#BetterCode Move the try-catch to a function to avoid reassigning a variable or putting your whole code in try!
@alexhillphd sharing her view on code reviewing at #deRSE19. What you can do with it, what not, and how to avoid common pitfalls (personal conflicts, misunderstandings, unrealistic expectations). Now I want to do some code reviewing. #RSE #bettercode
#BetterCode Every level of indention in your code can be moved to a separate function. Especially if you have an if without else you can use return in your function and avoid having any login in the if.
Something went wrong.
Something went wrong.
United States Trends
- 1. #AEWDynamite 15.2K posts
- 2. JUNGWOO 31.5K posts
- 3. #Survivor49 2,816 posts
- 4. Donovan Mitchell 4,742 posts
- 5. doyoung 32.9K posts
- 6. Snell 10.8K posts
- 7. Cavs 8,307 posts
- 8. Trey Yesavage 4,763 posts
- 9. Kacie N/A
- 10. Anthony Davis 2,163 posts
- 11. #SistasOnBET 1,268 posts
- 12. #LoveIsBlindReunion N/A
- 13. Mobley 1,914 posts
- 14. Josh Minott 1,019 posts
- 15. #AbbottElementary 1,431 posts
- 16. Okada 4,112 posts
- 17. Jaylen Brown 7,357 posts
- 18. Trae Young 2,393 posts
- 19. Magic 333K posts
- 20. Blood and Guts N/A