Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
pod_krad
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
What is happening to jobs? Separating AI hype from reality
(siepr.stanford.edu)
302 points
by
pod_krad
2mo ago
|
380 comments
2.
▲
by
pod_krad
4mo ago
Under Windows I use following keys to switch among 3 languages: ctrl+8, ctrl+9, ctrl+0. No Autohotkey is required for that, Windows has built-in feature to redefine these keys combinationations (with some limitation).
3.
▲
by
pod_krad
5mo ago
>non-automatable windows servers They are fully automatable, actually. Powershell is all you need fo that, plus, maybe, Active Directory.
4.
▲
by
pod_krad
6mo ago
>a search engine always gives multiple results and it is on me to read and compare. i usually look at the first half a dozen or so results Why do you think they're the best? You just trust the search engine, right? >the problem,
5.
▲
by
pod_krad
9mo ago
Excel Solver allows you to create target function with different variables and describe limits for them. Then you may try to find maximum, minimum or exact value for the target function.
6.
▲
by
pod_krad
10mo ago
They support Oracle Linux. It is almost the same as RHEL.
7.
▲
by
pod_krad
10mo ago
There won't be any other front. Just stop fantasizing. Russia has the same regime as China. China is sponsoring Russia's war with Ukraine by buying Russian oil, supplying dual-use products, and providing diplomatic assistance to R
8.
▲
by
pod_krad
10mo ago
Russia will never fight against China. Moreover, Russia can already be considered a Chinese province.
9.
▲
by
pod_krad
10mo ago
>If the USA can be granted amnesty for its war crimes, why can't other nations? /s So, criminal code is not necessary anymore? That is your logic? As someone might escape from the justice, why do we need that legislation at all
10.
▲
by
pod_krad
10mo ago
>Incremental progress would be a peace negotiation which brings both nations back to the realm of economic exchange, and an end to the senseless mass murder of innocents. Again you don't understand what you talking about. There are
11.
▲
by
pod_krad
10mo ago
> I personally feel that this plan has to proceed, or else the entire world is going to see the conflict expand to our own borders. It looks like you completely don't understand what you are talking about. This plan just lets Russia
12.
▲
by
pod_krad
11mo ago
>Most cases But not all of them, right? I don't need scaling across different hosts, but I need scaling between different threads on the same host. And I don't want for that PostgreSQL, MySQL, Oracle an other stuff like that.
13.
▲
by
pod_krad
11mo ago
I have such application. It scans hosts for gathering some information in several parallel threads. Then each thread stores part of this information in Sqlite database.
14.
▲
by
pod_krad
1y ago
It seems you didn't get the point. Why spending my time for learning those things, if in another language you may perfectly live without them?
15.
▲
by
pod_krad
1y ago
>people overstate its complexity without much study/experience The is no need in any experience to have ability to estimate C++ complexity. C++ specification is about 1500 pages.
16.
▲
by
pod_krad
1y ago
Rust is not only about ownership or ints with specific bit lengths. It is about powerful type system which is quite important in business logic (if you have enough knowledge to use it properly).
17.
▲
by
pod_krad
1y ago
>Nothing of that is a sales pitch for me. Just imagine the case, when you may save on a cloud several hundred thousand dollars per year just choosing more effective programming language.
18.
▲
by
pod_krad
1y ago
I disagree. It requires to know Python, YAML, Jinja2, own set of commands. It requires careful developing of playbooks. It is slow. It is complicated for non-standard cases where you don't have ready for using modules. Is there a bette
19.
▲
by
pod_krad
1y ago
In early versions (before 1.0) Rust already had GC. But then it was removed.
20.
▲
by
pod_krad
1y ago
Garbage Collector acts mainly in unpredictable way. I mean it is possible it won't free memory even if counter is zero already. This is not true if we are talking about Rust.
21.
▲
by
pod_krad
2y ago
So, you can't rely that someone will follow that style in Zig. That is my point.
22.
▲
by
pod_krad
2y ago
>The idiomatic way to handle that is with some combination of `defer` and `errdefer`. Then, in code, there are no lines between alloc/free, and if a try would exit before the free then you would instead first free anyway. Do I under
23.
▲
by
pod_krad
2y ago
>1) Lack of a garbage collector does not make your program faster, it makes the performance more easily predictable in terms of latency. AFAIK, some time ago non-predicable GC behavior was the reason why Discord migrated from Golang to R
24.
▲
by
pod_krad
2y ago
>In particular the bit about "you can't write dlist in safe rust" routinely seems to surprise people, even reasonably expert Rust developers, I talk to in real life. Actually you can write dlist in safe Rust. But with some