Viewing profile — balencpp
balencpp
HN member- Joined
- Fri, Mar 17, 2023, 5:44 PM UTC
- HN karma
- 21
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About balencpp
No profile information was provided.
Recent public activity
-
comment
Comment #49163311
Doesn't apply as much to Clojurescript due to it being dynamically typed and its flexibility. Sure, you often write a wrapper, but it's more of an abstraction and a good practice, …
-
comment
Comment #45070222
R.E. scaffolding in C#, with upcoming .NET 10, it's really simple: - Write code to myfile.cs - `dotnet run myfile.cs` That doesn't need scaffolding either. And the standard library…
-
comment
Comment #44028901
What are you implying by that?
-
comment
Comment #43885248
So you make incrementing a counter a full page reload?
-
comment
Comment #42135886
They’re not mutually exclusive. Most of the large performance improvements are from .NET, the runtime and compilers. They’re not related to C#.
-
comment
Comment #42123819
.NET has come to be a very solid, performant, cross-platform, productive runtime. I always come back to it for most projects. Thanks to everyone involved!
-
comment
Comment #42118517
There is no lock-in to Microsoft in C#. It hasn't been like that for years, and it's only getting better. IDE wise, there is Rider, which is free now, and one of the best IDE exper…
-
comment
Comment #42089670
Did you discover Scala 3 and give it a thought? I think of it as Rust with an _overall_ stronger type-system, but where you don't have to worry about memory management. It has an a…
-
comment
Comment #42089583
I am genuinely curious too. .NET is a very mature, very performant runtime, and I think of F#, a beautiful, productive language, running on it a big pro. Perhaps things used to be …
-
comment
Comment #42025800
Their flagship models are available for free for everyone: aistudio.google.com. You have the option to enable "search grounding" to get the same thing as ChatGPT Search.
-
comment
Comment #41853628
Offtopic: As an Iraqi Kurd, it's quite amazing (and surprising!) to find another Clojurian in Iraq. Also, the website looks and runs great!
-
comment
Comment #41037094
When was the last time you tried C#? These days, it's as simple as getting dotnet and executing "dotnet new -o MyNewProject" to make a new project. Then "dotnet run" or "dotnet wat…
-
comment
Comment #40618039
There are many screen recorders that do not show a "giant banner", and even if there weren't, it's ~200 LoC to implement an efficient screen recorder for Windows that's hidden.
-
comment
Comment #40408850
If you mean windows, it has been so many years since .NET has been able to run on many different platforms; and by now, most of the ecosystem supports majority of platforms too.. Y…
-
comment
Comment #40405096
Why would you avoid .NET?
-
comment
Comment #39216066
Some form of static typing != proper static typing. The 'static typing' from Python (and other previously dynamic languages) do not come close to Dart's; neither does Typescript's.…
-
comment
Comment #38331378
Besides the 'correctness' issues, all of the issues that blogpost mentioned were fixed back then ASAP. Most of it arise from the usage of @inbounds, which to be fair, the documenta…
-
comment
Comment #38331328
I think the implication is that @inbounds turns out of bound memory accesses into undefined, silent behavior, which can stay hidden and cause weird bugs later on. Out of bounds wit…
-
comment
Comment #37696908
I think Elixir is doing quite well now. It's by no means mainstream, but it's also not in the same category as Clojure; it's on a slow,steady positive trajectory.
-
comment
Comment #37609348
Yup. I think it's because Elixir has powerful LISP-like meta-programming facilities that it allows the seamless communication Rustler and Zigler provide. I haven't seen anything as…
-
comment
Comment #37349037
"Our sponsors - Mythic Beasts ISP provides us two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." On their github README.md.…
-
comment
Comment #37342858
A lot of ugly,unreadable code has come into existence because of the need to twist it into NumPy calls. If you can replace these with good old for loops and achieve similar perform…