Readit News logoReadit News
suddengunter commented on AI capex is so big that it's affecting economic statistics   paulkedrosky.com/honey-ai... · Posted by u/throw0101c
segmondy · 8 months ago
I can barely get 50Mbps up/down and I only have xfinity in this area. No fiber, I will pay for it, but here we are. 2025 in good ol USA. In an urban area too.
suddengunter · 8 months ago
wow

When a few years ago I moved from Eastern Europe (where I had 1GB/s to my apartment for years) to the UK I was surprised that "the best" internet connection I was able to get was about 40MBit/s phone line. But it's a small town, and during past years even we have fiber up to 2GB/s now.

I'm surprised US still has issues that you mentioned. Have you considered Starlink(fuck Musk, but the product is decent)/alternatives?

suddengunter commented on Go 1.18 Beta 1 is available, with generics   go.dev/blog/go1.18beta1... · Posted by u/pcw888
deepsun · 4 years ago
> Package management

Are you seriously saying that github.com/somelib is a better package management? Of course nobody forces to use that, but it's what actually been used in most go projects. Even NPM looks better in comparison.

The best quality package management I've seen is Maven, followed by Cargo.

suddengunter · 4 years ago
I disagree

for private Go packages all I need is to point it to another git repo. for nuget/maven etc - I need an artifact registry, with it's own bells and whistles

suddengunter commented on Ask HN: Who wants to be hired? (November 2021)    · Posted by u/whoishiring
suddengunter · 4 years ago

  Location: Ukraine
  Remote: Yes
  Willing to relocate: Yes, preferably UK/US/Canada
  Technologies: Go, AWS, k8s, C#/.Net Core, PostgreSQL, MongoDB.
  Résumé/CV: https://suddengunter.github.io/cv
  Email: kolomytsev1996@gmail.com

suddengunter commented on Things Go needs more than generics   betterprogramming.pub/thr... · Posted by u/ngaut
welder · 4 years ago
I don't agree, especially on the second point. Having strings default to empty instead of nil is a feature not a flaw.

What Go actually needs: Nil-Safe Types! [1]

Programmers can work around verbose error handling(3) and lack of enums(1), but forget to check for nil before using a pointer... CRASH! And that's something the compiler doesn't warn about.

[1]: https://wakatime.com/blog/48-go-desperately-needs-nil-safe-t...

suddengunter · 4 years ago
agree.

In C# we were going from "every reference type can be null" to "only things marked with '?' can be null" with nullable reference types. When I started using Go it was nice to see that only something, that is explicitly created as pointer is nullabe, everything else can't be null / nil - and you can't get panic from nil referencing stuff

suddengunter commented on The Updated Draft Design for Go 2 Contracts   go.googlesource.com/propo... · Posted by u/saturn_vk
suddengunter · 7 years ago
Contracts seems to me like Generic interfaces in C#. Why not just call this thing "interface" https://gist.github.com/SuddenGunter/bb105556fde9678abbd97cb... instead of adding yet another keyword?

u/suddengunter

KarmaCake day23July 28, 2019View Original