Viewing profile — notanaverageman
notanaverageman
HN member- Joined
- Wed, May 20, 2020, 2:57 PM UTC
- HN karma
- 76
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About notanaverageman
No profile information was provided.
Recent public activity
-
comment
Comment #44808978
Not that I regret it, but I found out that creating a community around an open source project is not like what you expect. I've been working on a tool for a very popular project fo…
- story
-
comment
Comment #44707547
I'm finishing the work of adding apply, list, delete mechanism to my Kubernetes package manager. The tool is written in Go and exposes a JavaScript interface (like k6) to generate …
-
comment
Comment #44612370
I suggest checking out Anemos ( https://github.com/ohayocorp/anemos ), the new boy in the town. It is an open source single-binary tool written in Go and allows you to use JavaScri…
-
story
Show HN: Anemos – Open source Kubernetes manifest manager, alternative to Helm
Hello HN, I am Yusuf from Ohayocorp ( https://ohayocorp.com ). I have been developing a package manager for Kubernetes and I am excited to share it with you all. Currently, the go-…
-
comment
Comment #43458765
Meanwhile I'm trying to adapt ESM only packages to CJS since Goja (JS runtime library for Go) doesn't have ESM support. [1] And yes I know that Grafana has a fork called Sobek that…
-
comment
Comment #40929885
The hardest thing for me when I started using Go after a decade of writing C# is to accept that Go and C# are very different and Go is a much simpler language. It is actually more …
-
comment
Comment #37878677
For a large group of people, lifespan of a phone is the same as the lifespan of the battery. They complain that the phone gets slower day by day, but they don’t know what causes it…
-
comment
Comment #34669020
There is already an analyzer for it: https://github.com/microsoft/RoslynClrHeapAllocationAnalyzer
- story
- story
-
comment
Comment #30752234
More than 50000 people died there in one of the fiercest fights of WWI and many of those people was buried there without a grave. So those lands are treated as graveyards of martyr…
-
comment
Comment #29489159
You still have to use stackalloc to allocate on stack. With Span you don’t have to use the unsafe keyword and you can pass the allocated array to other functions easily.
-
comment
Comment #29303414
Any method does an extra null check and a cast to ICollection which incur unnecessary performance degradation. Of course this is in micro optimization scale. If you do not call Any…
-
comment
Comment #29302796
I use it for structured logging, which makes filtering and searching very convenient. E.g. I can filter by an object’s id and a property to see which tasks change the property of t…
-
comment
Comment #29296249
Thanks, I removed unnecessary parts. It should be better now.
-
comment
Comment #29296062
Note that most of the performance improvements come from PGO, which is enabled with following environment variables. PGO is not enabled in .NET 6 by default, but will be in .NET 7 …
-
comment
Comment #28243732
WPF is still Windows only. It will not work on a Linux machine.
-
comment
Comment #23247760
Each generation has its own problems. Today's problems may seem scary to us, but world has seen worse days. From Billy Joel: We didn't start the fire It was always burning Since th…