Live data from Hacker News

Viewing profile — zxcq544

zxcq544

HN member
Joined
Tue, Apr 06, 2021, 6:11 AM UTC
HN karma
12
Public activity
14 items

About zxcq544

No profile information was provided.

Recent public activity

  1. comment
    Comment #42460468

    Use Continue https://ollama.com/blog/continue-code-assistant

  2. comment
    Comment #34531505

    frontend archive takes 18 gb, everything else is like 1-2 gig.

  3. comment
    Comment #33139099

    I have same opinion on react and after trying sveltekit I was really surprised how simple front end could look like. Now I can't even use anything except svelte and it's kinda sad …

  4. comment
    Comment #31999163

    I got nicknamed "Mr sexypants11"

  5. comment
    Comment #31917893

    VISA has 2000 rps for all payment stuff. So it is what it is :)

  6. comment
    Comment #29745928

    Have you tried GIN trigram( https://www.postgresql.org/docs/14/pgtrgm.html CREATE INDEX trgm_idx ON test_trgm USING GIN (t gin_trgm_ops);) and GIN fulltext search indexes(CREATE IN…

  7. comment
    Comment #29589535

    Search for "Project managment". There is "Product management" which sounds similar but it's a bit different: project manager talks with developers and manages task complition while…

  8. comment
    Comment #29563068

    For IDE you can try goland(which is Intellij Idea for go). For replacing shell scripts go should be fine. It's closer to C than Java, so you will often write "if err!=nil" which is…

  9. comment
    Comment #29394498

    Java gui libraries are slow to start. Java starts fast but then GUI starts to load and it takes time.

  10. comment
    Comment #29394477

    You can try these steps https://iam.georgecox.com/2021/11/24/making-jetbrains-ides-r...

  11. comment
    Comment #29393569

    It uses JVM and JVM tends to hunk all memory for object pools so it can allocate fast if needed.

  12. comment
    Comment #29391519

    I guess they mean their GUI framework architecture is close to React's architecture rather than actually using JS for GUI.

  13. comment
    Comment #28601564

    There is a company in Russia called Postgres Pro https://postgrespro.ru/ and they are those people who added json functionality to postgres. As far as I know they work on full text…

  14. comment
    Comment #26708512

    you should take a look at sanic https://github.com/sanic-org/sanic It's very popular among people writing async web services in python. It's like 10% faster than fast api.