Live data from Hacker News

Viewing profile — cygned

cygned

HN member
Joined
Wed, Aug 10, 2016, 9:46 AM UTC
HN karma
1,461
Public activity
447 items

About cygned

top: #aba4de

¯\_(ツ)_/¯

Recent public activity

  1. comment
    Comment #32812758

    Try MJML, works wonders

  2. comment
    Comment #32182274

    Concern was that it still turns down too many, maybe we were too careful. We have another vacant position soon, I might try it.

  3. comment
    Comment #32182221

    We don’t post salary ranges right now. We are a small firm and cannot keep up with the salaries from enterprises in our area. We are looking for (and finding) candidates that are w…

  4. comment
    Comment #29801364

    > what I am arguing is that SCRUM as most enforced things "micromanage and/or ignore human psychology". I think you are arguing Scrum can lead to these situations - which you cover…

  5. comment
    Comment #29800588

    Isn’t that why many teams opt to use Fibonacci sequence?

  6. comment
    Comment #29800564

    Aren’t these interactions put in place to create transparency across the team regarding progress and purpose as well as empirical validation? I am not sure how that necessarily cla…

  7. comment
    Comment #29800281

    > Every single tiny aspect of work is dictated by somebody else, commitee or some kind of process. That is not the way Scrum is meant to be implemented. The goal is to have a cross…

  8. comment
    Comment #29800187

    Whenever I come across teams with situations outlined as in this article and I talk to the people involved, it becomes apparent that Scrum was implemented for the sake of implement…

  9. comment
    Comment #29799891

    Despite him not saying "Scrum", the structure he's describing is not Scrum anyway. It might be close to what some people understand when they say "Scrum", but it is not Scrum.

  10. comment
    Comment #29799792

    How does Scrum micromanage and/or ignore human psychology?

  11. comment
    Comment #29603167

    Work Clean: The life-changing power of mise-en-place to organize your life, work, and mind Charnas, D. https://www.workclean.com/

  12. comment
    Comment #29513208

    The lower entry barrier for a lot of things. It allows the community to grow, learn and become more diverse. On the other hand, I regularly read blog articles about complex topics …

  13. comment
    Comment #29140671

    Others will talk about the benefits, so let me give you a few gotchas from us: 1. It does not replace type checks at runtime (in integration layers) 2. Compilation and startup (in …

  14. comment
    Comment #29140633

    The thing is, though, that Typescript is not solving runtime type checks. Typescript is declarative, it does not check at runtime and if you have any code interacting with third-pa…

  15. comment
    Comment #28980152

    https://teuxdeux.com/

  16. comment
    Comment #28777846

    We built a system that creates backups of PII using that mechanism; throw away the key after data is supposed to be deleted. That is legal under EU GDPR.

  17. comment
    Comment #28750542

    I use https://teuxdeux.com for weekly planning. Basically for any planning. That's the only todo list that works for me.

  18. comment
    Comment #28653210

    Try Yoga. I started doing it every morning for 15-30 minutes, it makes a big difference. Another advise I can give you: your health is more important than your job. Take the time y…

  19. comment
    Comment #28566655

    > I'm not sure what "spreading" even refers to We have code like (stupid example) something.map( {a, b, ...rest} => ({ ...rest, ...a, ...[b, c, d]})) I know what it does and how it…

  20. comment
    Comment #28566620

    What I am referring to with factories in particular is that I can have a bean injected in Spring automagically using an annotation, have an interface and an implementation behind i…

  21. comment
    Comment #28566265

    That DI layer (speaking for Spring) is pretty handy for large projects, though, because I can switch out implementations based on configurations centrally, I can use factories with…

  22. comment
    Comment #28566242

    I am leading a transition from TypeScript to Java + Spring Boot and comparing those side-by-side, Java is significantly easier to follow. In TypeScript, we have a (from my point of…

  23. comment
    Comment #28565540

    The aspects mentioned (Spring, DI containers, ...) are tool on top, though. If we just look at the language, I'd argue Java is boring - which is a good thing for certain types of a…

  24. comment
    Comment #28564050

    > It may lack a lot of the fancier features Coming from JavaScript, TypeScript, Python and Go back to Java I can tell you that’s actually a good thing.

  25. comment
    Comment #28526877

    We would use them as data transfer objects between different layers of the system - however, they cannot extend another class and thus are not suitable in our specific case.