Viewing profile — kukkamario
kukkamario
HN member- Joined
- Mon, Jul 03, 2023, 12:32 PM UTC
- HN karma
- 190
- Public activity
- 57 items
- HN profile
- View on Hacker News ↗
About kukkamario
No profile information was provided.
Recent public activity
-
comment
Comment #48672248
And that is why existing installations put the heat pump to production side and then just pipe the high temperature water to district heating network.
-
comment
Comment #48672087
It still makes sense. If heat is produced by a burning something, it is is more efficient to do that in one dedicated place. It makes it easier to pipe exhaust away from apartments…
-
comment
Comment #47776058
The point of the checksum is to just drop obviously wrong keys. No need to handle revocation or do any DB access if checksum is incorrect, the key can just be rejected.
-
comment
Comment #47528614
I think there is plenty of room to make AI inference much more energy efficient. For example, there are companies testing creating custom silicon to run the model. Once that techno…
-
comment
Comment #47437155
You don't want to copy-paste anything like that as text anyway. Just copy and paste files. No human is reading much data regardless of the format. What is the benefit over using fo…
-
comment
Comment #44062908
I think in this case Rust and C code aren't equivalent which maybe caused this slow down. Union trick also affects the alignment. C side struct is 32 bit aligned, but Rust struct o…
-
comment
Comment #43974351
SAF documentation seems a bit misleading: takePersistableUriPermission part only talks about files, but other sources seem to indicate that it also works for directories so it shou…
-
comment
Comment #43974117
NextCloud currently has to copy all files that it wants to upload & back up to its own app directory which is pain to actual usability. I'm guessing this annoyance is also related …
-
comment
Comment #43579005
Here in Finland, there is legal obligation to help people in emergencies, but this does not mean that you are required to danger yourself or act beyond your abilities. So usually o…
-
comment
Comment #43329724
MikroTik has dynamic DNS that is based on random unique number for their router. I just point my DNS record to that dynamic DNS address and everything just works.
-
comment
Comment #43298471
a) resource use is minimal when deployment isn't in progress. It just idling and waiting for commands b) Agent need to be able to connect to Azure DevOps servers, but it is connect…
-
comment
Comment #43099735
Better option would be to parse json into Bson and then use that as the in-memory format. It uses minimal memory and is actually also fast to access without parsing into some other…
-
comment
Comment #43091813
That is not how it works. You assume that the rich people can get as much net profit if income tax is higher due to progressiveness, which is not true. Also if there is a way to ge…
-
comment
Comment #42273822
Well Yi Peng 3 recently changed operating only between Chinese ports to operating only outside China and mostly to Russian ports. Current actual owner is probably some Russian olig…
-
comment
Comment #42061600
It is rather annoying that larger policy changes easily take 2-4 years to actually affect anything so current party always gets both blame and thanks for the changes made by the pr…
-
comment
Comment #42061324
In well functioning democracy the government policy shouldn't flipflop constantly and president shouldn't have enough power to break everything. In Europe, president's power is muc…
-
comment
Comment #41907349
I prefer using Python with pybind11. It makes writing new modules or embedding the whole interpreter quite simple.
-
comment
Comment #41901003
Node is so slow to start that python script can complete before Javascript even begins to execute.
-
comment
Comment #41895740
So it is git with rerere.enabled=1?
-
comment
Comment #41880995
And then you'd be limited to only one change at the time and lose the benefit of making lot of changes with one request.
-
comment
Comment #41599954
Yes. We need orbit space tax which profits are used to resolve issues caused.
-
comment
Comment #41539268
> The volume is small That is changing with the drone warfare becoming large part of the future wars. US military (and pretty much everyone else) will make drones major focus of ad…
-
comment
Comment #41087131
Mikrotik at least has that DDNS functionality. It is really nice feature.
-
comment
Comment #40943157
You may want to consider Asp. It is python like language thats interpreter is designed for embedded usage. https://www.asplang.org/ Also fully fuzzy tested to not ever crash regard…
-
comment
Comment #40889096
It is quite easy to write Python code that works just with all Python versions since 3.6. Easier than writing any Perl code...