Rezultati pretraživanja
  1. prije 3 sata

    Which code smell do you see the most often? I always see primitive obsession.

  2. prije 5 sati

    Is it a globe? あなたは白い球体が、だんだん地球儀に見えてくる、見えてくる、見えてくる… あぁ~だんだん見えて、見えて、見えて~ くるかーいボケが! テクスチャ無いやん!

  3. prije 8 sati

    "Incremental prevents getting lost in programming tasks" Discover "7 reasons why learning refactoring techniques will improve your life as a engineer"

  4. 2. velj

    If you need to put comment on a Block of code, you need to refactor it to semantic function name and call it. 😊

  5. 2. velj
  6. Driven Development. ! Now! Come on, buddies. Plz!

  7. 1. velj

    Classes that depend on interfaces rather than implementations are a way easier to test. Assertions become less complicated, the tests are focused on what the class does instead of what dependencies do.

    // Before
import utils from './utils';

class A {
  doWork() {
    return utils.getValue()
  }
}

// After
import {ValueProvider} from './utils';

class A {
  constructor(private getValue: ValueProvider) {}
  
  doWork() {
    return this.getValue()
  }
}
  8. 1. velj

    R1D2 rest part of chapter 1 and started chapter 2. 😉

  9. 31. sij

    What's the point of using state of the art development practices for features you don't know if your users will use? Learn more about "Throwing code away frequently"

  10. 31. sij

    Making your code test-able is the first step towards doing good code design.

  11. 31. sij

    Francesco Abeni su Twitter: "And the afternoon starts with taking charge of a Symfony 2.0 project. No composer! Aargh! :-) Don't worry little legacy project. The worst is over. I'll take care of you now. <3 Twitter

  12. 30. sij

    Love 's Fira Code font!!! The fastest way to make the code followed closely by

  13. 30. sij

    RT : Our ( and I) Mikado-TestBuilders-Kata has been open-sourced on repository! Try it and give us feedback

  14. 30. sij

    I had to add new functionality to unknown codebase in C# which I wrote for the 2nd time in my life yesterday. 's "Easiest Nearest Owwie First" helped me a ton to tackle this and be successful! to get into a new cb is awesome!

  15. 30. sij

    I started instead of . I figured out that I should learn from good books so, The book for this round is Yay.

  16. 30. sij

    Refactoring some Flutter code

  17. 29. sij

    “Inline Variable”   Following the prime directive, assume that a previous over-extraction was done with sincere intent However, that should not stop us from inlining now to keep the code clear & concise    

  18. 29. sij
  19. 28. sij

    unlocks drafting an architecture, drawing teams, and a sustainable path. Have a look at "Detailed Agenda of a Big Picture Event Storming "

  20. 28. sij

    Interesting read about various physical patterns in code: The Shapes of Code

Čini se da učitavanje traje već neko vrijeme.

Twitter je možda preopterećen ili ima kratkotrajnih poteškoća u radu. Pokušajte ponovno ili potražite dodatne informacije u odjeljku Status Twittera.