Live data from Hacker News

Viewing profile — fabioz

fabioz

HN member
Joined
Tue, Jul 07, 2015, 1:57 PM UTC
HN karma
116
Public activity
57 items

About fabioz

No profile information was provided.

Recent public activity

  1. comment
    Comment #48919966

    I'm working on the area in https://beolis.com . The system as a whole is meant to support that use case, where each task (ticket in its jargon) can be tackled using a custom workfl…

  2. comment
    Comment #48897318

    I'm working on a tool to manage developing with Agents for teams, using a UI like a Kanban board and workflows, so the development starts from a given workflow and not from a promp…

  3. comment
    Comment #48896659

    That's one of the reasons I started https://beolis.com . Now I have a workflow that says to do things in a TDD and run only new tests and related tests but NEVER run the full suite…

  4. comment
    Comment #48771922

    I'm in the same boat and I'm not a fan on the current way of working of agents, but I think tooling is what needs to catch up. So, I actually decided to try to tackle it myself and…

  5. comment
    Comment #48709168

    I wouldn't trust anything from Claude here image-wise (maybe to get a 2nd opinion on the report itself and treatment it's reasonable), but also, on the cases there is something som…

  6. comment
    Comment #48538215

    I can second this. Compared to many countries Brazil doesn't have such high taxes (I'd say that if you work remotely for a company outside of Brazil, you'll probably have much lowe…

  7. comment
    Comment #47739379

    I agree it's hard to get it to output things in different styles... I started doing a side project for writing with LLMs (ailivrum.com -- my main focus being doing some writing/rea…

  8. comment
    Comment #47713823

    Initially I believe Google was known for getting unreliable hardware with good software to manage it (a single laptop probably won't cut it, but a bunch of laptops scattered around…

  9. comment
    Comment #47556181

    I usually go for https://simplepdf.com/ (gets the job done, files never leave the browser either).

  10. comment
    Comment #44858801

    Static analysis of imports should be solved by mypy (or your favorite static analyzer). I guess you meant "run all imports at startup is desirable to check if they work", but I hav…

  11. comment
    Comment #44839583

    It'd have been really nice to have that PEP in as it'd have helped me not have to write local imports everywhere. As it is, top-level imports IMHO are only meant to be used for mod…

  12. comment
    Comment #44150451

    Isn't `useContext` the builtin React alternative to that issue?

  13. comment
    Comment #42594217

    I believe this view is actually outdated -- it was actually true in the past, but I know that currently "Cognitive Behavioral Therapy" does define things much more objectively than…

  14. comment
    Comment #41969603

    The first advantage the homepage lists is: > Mill can build the same Java codebase 5-10x faster than Maven, or 2-4x faster than Gradle Speed per se can be a good selling point (hav…

  15. comment
    Comment #41694893

    Yes, PyLance has a pretty strict license and makes it very clear it cannot be used in forks (and that's not really surprising and pretty standard I'd even say for a corporation suc…

  16. story
    Show HN: Pydevd and Sys.monitoring (PEP 669)

    Over the weekend I've done the first release of the PyDev Debugger using PEP 669 and I've gotten some really good results (so, Python 3.12 is now by far the fastest target when usi…

  17. comment
    Comment #39131547

    Particularly, I'd say that it would be awesome and could save sports which are graded based on such rules as the current state of affairs is pretty appalling (I hate seeing competi…

  18. comment
    Comment #38810115

    Well, I'm working on reimplementing the pydevd debugger to use it. The general idea is that pydevd will be able to use that API instead of relying on sys.settrace (which was percei…

  19. comment
    Comment #38707848

    > However, no IDE will show any problem with this code. That's not entirely True... I just checked it here and Eclipse/PyDev does flag this correctly -- since version 11.0.0 ;) See…

  20. comment
    Comment #37305922

    Actually, you get the speed increase if using threads on python with numpy because numpy will release the GIL internally, so, operations using numpy will actually run in parallel (…

  21. comment
    Comment #36572438

    I did work in Smalltalk in the university and I must say that in practice it was horrible to work with. It was very common to have the image corrupted -- imagine that you by mistak…

  22. comment
    Comment #36451337

    Posting about what I've been working for a while (a library -- with a focus on Python automations -- which is able to report what actually happened in a Python execution).

  23. story
  24. comment
    Comment #34355803

    My go-to library in python for this is: https://pypi.org/project/pytest-regressions/ It's a bit different in that it'll save the expected to a different file... IMHO that's usually…

  25. comment
    Comment #34084501

    Package management in Python is mostly solved to me with conda+conda devenv+conda lock. Sometimes I still need to get packages from pip in that scenario, but conda makes package ma…