Viewing profile — kikimora
kikimora
HN member- Joined
- Tue, Mar 14, 2017, 4:34 AM UTC
- HN karma
- 258
- Public activity
- 285 items
- HN profile
- View on Hacker News ↗
About kikimora
No profile information was provided.
Recent public activity
-
comment
Comment #49220422
I like drag&drop way more than .pkg. just easier to deal with. If you do a CLI tool then maybe `brew install CLI` is the way to go instead of a pkg file?
-
comment
Comment #49152794
>The coalescing is two-level: first, simple duplicates are weeded out. Second, if the update queue gets very full, it becomes coarser-grained, and weeds out duplicates based on tha…
-
comment
Comment #49151359
MVC is not bad, but it is not a silver bullet. Calling MVC an ultimate solution to UI is oversimplification. Just looking at the steps you listed I can ask: How do you collect all …
-
comment
Comment #49151245
Famous UI = f(Model) is oversimplification that was sold in slides. Real “functional UI” frameworks implement UI = f(Model, UIState) where UIState is scroll and cursor positions, v…
-
comment
Comment #48967985
No, but the project does not meet its goals around memory safety. It is usage Rust all the way down with same memory safety issues.
-
comment
Comment #48643258
Yes, bonds, sometimes corporate debts, often money market participation.
-
comment
Comment #48617845
So you add threads to allow a shared objects graph with a side effect of more frequent stop the world. Then you fight stop the world by resorting to low level memory management. Bu…
-
comment
Comment #48614795
This is from PR: v1 collects synchronous and stop-the-world Go build performant web app that has stop-the-world all the time.
-
comment
Comment #48614729
Except there is often no background thread but async IO.
-
comment
Comment #48614697
I don’t think it is extreme. Imagine this is added to WebKit. Now I have a new question to answer - can I use library X across multiple threads? How do I know it does not have a li…
-
comment
Comment #48614645
If the goal of this change is to: >mostly share read-heavy graphs and coordinate through a few hot objects, which is what Lock/Atomics are for. Then it is a clear overkill to me. I…
-
comment
Comment #48351539
To me being able to query over psql is secondary. I’m fine with any SQL. What is very important is being able to transform the data to better suite analytical queries. That is, def…
-
comment
Comment #48351518
I don’t disagree, just placing emphasis on a different aspect. In an ideal world there is a tool that moves your schema into an analytical store “as is” with a single click. Then t…
-
comment
Comment #48350214
IDK, AWS Zero ETL from Autora into Redshift really helped us at some point. You right that data transformation is very limited if not possible. But having data in an analytical sto…
-
comment
Comment #48345626
Is this a theory or your personal experience? I lived in Russia for most of my life. Had 21 C set in the car even in -20 C. If the coat is too hot then you just put it off. One rea…
-
comment
Comment #48338093
While being widely criticized I don’t get it > Physical controls for temperature and fan speed. I have set temperature to 21 C in Tesla when I bought it and never changed since. Wh…
-
comment
Comment #48296133
I think this is the glimpse of what to come - https://github.com/oven-sh/bun/issues/31463
-
comment
Comment #48296066
In other words you can use time as your TX id, add MVCC and now you can transactionally read data from multiple partitions/shards. In a traditional distributed DBMS it would requir…
-
comment
Comment #48295957
Why people say they have big test coverage while other say it segfaults a lot? I saw lot of JS test that this is just API surface test. Edge cases happens inside API implementation…
-
comment
Comment #48264890
>The only assumption you need to make is how the process went about, which was described by Jarred This is not how the process went. This is how Jarred thinks it went, a huge diffe…
-
comment
Comment #48264855
You suggest there is only JS tests that do not need a rewrite? This is crazier than I thought… I took tests as an example. There are so many other things that can go wrong. Rust an…
-
comment
Comment #48264654
What is significance of this?
-
comment
Comment #48251444
Nobody reviewed resulting code. Maybe all tests are empty and this is why they pass. Maybe tests were modified to pass because this is the only thing LLM could do to make them pass…
-
comment
Comment #48251421
Because of borrow checker you would build data structures differently in Rust compared to Zig. Automated translation simply maps Zig constructs onto unsafe Rust code. I have no ide…
-
comment
Comment #48247880
Bun never was great in terms of stability. It has been vibe coded for 6 month but code was reviewed by a person. >It already has been proven that LLM's can maintain such codebases.…