HN user

dawkins

996 karma

meet.hn/city/40.4167047,-3.7035825/Madrid

Posts44
Comments116
View on HN
twitter.com 25d ago

End-to-end model that listens, sees, thinks and responds on video in real time

dawkins
1pts1
github.com 5mo ago

Show HN: Launchpick – Native macOS launcher and window switcher

dawkins
2pts0
time.com 3y ago

How Bad a Nuclear War Would Actually Be

dawkins
24pts32
world.hey.com 3y ago

They're rebuilding the Death Star of complexity

dawkins
8pts0
twitter.com 3y ago

Had a little disagreement with GPT-3

dawkins
2pts0
twitter.com 4y ago

Sam Harris is hiring a Head of Web3 Projects

dawkins
1pts0
www.reviewgeek.com 5y ago

Porsche Recalls 43,000 Taycan EVs Worldwide

dawkins
3pts0
www.universal-sci.com 5y ago

Mars didn't dry up at once; it had alternating dry and wet eras

dawkins
1pts0
arstechnica.com 5y ago

Chrome OS became the second-most popular OS

dawkins
48pts13
blog.golang.org 5y ago

Go on ARM and Beyond

dawkins
48pts0
golang.org 5y ago

Go 1.15 Released

dawkins
4pts2
blog.tempus-ex.com 6y ago

Generics in Go – How They Work and How to Play with Them

dawkins
3pts0
www.dropbox.com 6y ago

Covid-19 Handbook from Chinese Experience

dawkins
2pts0
hackaday.com 6y ago

2D-Platform Seeks Balance with a Touch Screen

dawkins
2pts0
www.youtube.com 6y ago

2k drones light up night sky in Shanghai to welcome new year [video]

dawkins
2pts0
elpais.com 6y ago

The US government was spying on Assange 24/7

dawkins
9pts4
sivers.org 6y ago

Have a Private Email Account

dawkins
6pts3
github.com 6y ago

Execute JavaScript from Go

dawkins
1pts0
www.youtube.com 6y ago

Live: Jack Ma and Elon Musk's AI Debate in Shanghai

dawkins
2pts0
medium.com 7y ago

Lessons from 6 Software Rewrite Stories

dawkins
11pts0
go.googlesource.com 7y ago

Another Go 2 Proposal: Error Inspection

dawkins
1pts0
github.com 8y ago

An NPM package to check if a number is equal to 13

dawkins
53pts14
www.kde.org 8y ago

KDE: Arbitrary command execution in the removable device notifier

dawkins
1pts0
joeshaw.org 9y ago

Don’t defer Close() on writable files (Go)

dawkins
3pts0
groups.google.com 9y ago

Go 1.8 Beta 1 is released

dawkins
3pts0
docs.google.com 10y ago

Introducing Go 1.6: asymptotically approaching boring (GopherconIndia keynote)

dawkins
4pts0
www.thecompletelistoffeatures.com 10y ago

Complete list of new features in MySQL 5.7

dawkins
2pts1
texlution.com 11y ago

Why Go is doomed to succeed

dawkins
291pts313
www.theverge.com 11y ago

The second Ubuntu phone is coming out this month

dawkins
2pts0
groups.google.com 11y ago

Crypto optimizations for Go from CloudFlare/Intel blocked by licensing issues

dawkins
125pts36

I agree. The limited expressiveness in Go also worked as an advantage because of its simplicity. Additionally, as the article mentions, the lack of lambdas made the syntax less convenient. For me, it struck a good balance before generics and other features were added.

What an amazing track record from Joel Spolsky: Launched Fog Creek, then StackOverflow, Trello and now Glitch (which I think is the successor of Fog Creek)

I switched from google closure to esbuild and it is amazing how fast and well it works. It even generates smaller code in my use case (200k lines app). Also the creator is really nice. He implemented two features I requested right away, which surprised me a lot. What a great project!

Proof-of-work systems are pure, unadulterated energy waste

The more you pollute, the richer you get. I can't understand why nobody talks about this.

That was a fun read. Very interesting.

I have noticed that the AST nodes don't have a parent reference. I wonder how it knows for example when encountering a "continue LABEL" that the code is nested maybe deeply in a loop with that label. The only way I would think of is traversing the tree up but I think there is no way of doing this. How do they do it?

SwiftWebUI 7 years ago

This reminds me a lot about ASP.net Webforms. Maybe this is better conceived but trying to program the web like a desktop app created more problems than what it tried to solve.

It's an sports club management system (online reservations, classes, memberships, POS, Inventory...). Lots of modules that I will like to explore the possibility of selling it to another market.

I have been using Go in production since 2012 and I find it a fantastic tool. Except for point 8 ("The sort.Interface approach is clumsy") the rest are features for me.

I am so grateful for the Go creators for having made it as it is. What worries me is the recent changes: modules (never had a problem with GOPATH) and Go 2 proposals. I hope they are able to keep their vision as it started.

I'm a little bit tempted to make a simple compile-to-go language.

That's what I did for my current project. I love Go but for web apps is not the best in my opinion. I had some spare time and ended up building a VM that compiles typescript to bytecode. The performance loss is minimal, I still use the Go std library but it is a pleasure to use VS Code, generics (the VM ignores types but the TS compiler gives you static type safety, autocompletion, refactoring, etc...) Also exceptions is great for web apps where usually there is nothing else you can do but save all the info that you can and show an error to the user.