sauerbraten's comments

sauerbraten | 3 years ago | on: iPhone 14: Cheapest Country to Buy in 37 Countries

Not sure if the site was updated, but there are multiple comments here about sales tax missing for the US price. The site clearly states it added that tax for Canada and the US, and shows two prices for each country reflecting the lowest and highest tax applicable based on where you buy the phone.

sauerbraten | 5 years ago | on: Why we’re changing to the AGPL license

Okay I get what you mean now, I looked at it from a legality POV. I agree with you that plagiarism might not be illegal but still unethical.

Why do you not just pick a license that forbids uses not compatible with your ethical standpoint, and chose to just not enforce the terms should they be violated? This way, companies are likely to respect your intent and preference and you don't have to make use of a legal system you don't support.

sauerbraten | 5 years ago | on: Why we’re changing to the AGPL license

Is it really plagiarism if you explicitly allow them to use and even sell your code, though? Also, plagiarism implies they don't give you credit and instead put their own name on it.

sauerbraten | 5 years ago | on: Show HN: My notes on Working with Go

I checked out the example code for arrays (https://github.com/betty200744/ultimate-go/blob/3de8a053d9f7...) and noticed that OP seems to misunderstand a few things about Go arrays:

- the cheat sheet differentiates between 'declaring' and 'declaring and initializing', but in Go there are no uninitialized arrays (or slices) - a lot of times in this file, a slice is created instead of an array (lines 18, 21, 25, 31) - arrays in Go don't really have a capacity (it's always the same as the array's length) - the built-ins append and copy as well as the sort functions don't accept arrays (I assume this is why slices are created?)

sauerbraten | 6 years ago | on: Don’t bail out the cruise industry

I don't know much about this, but I assume the advances in renewables and carbon neutral ships is driven mostly by regulation aimed to reduce pollution. Can we really give the cruise companies a lot of credit for that?

> The demand for cruises is not going to go away.

Good, then there will still be cruise ships after the industry felt the consequences, and perhaps they will have learned something.

sauerbraten | 6 years ago | on: Finding the real first post on Instagram

I have my doubts about the timestamps on these first posts. How did Kevin get from Pier 38, where Mike supposedly photographed him at exactly noon, to Todos Santos at ~2:30pm, when it's 28 hours away?

sauerbraten | 6 years ago | on: An algorithm wipes clean the criminal pasts of thousands

The code in the screenshot is valid Go (switching on strings, no parentheses around the if condition, incrementing a map value using ++) and could even be the output of go fmt (with the { on the same line as the if).

The app itself appears to be written in Ruby (the github link is posted elsewhere in the comments), and looking at the image included in the article further down I assume the code is from a Go app that takes the Ruby app's logs and generates some statistics.

sauerbraten | 9 years ago | on: Germany's New Crowdfunded Train

Your BahnCard 100 is only for DB trains, and their partners like regional transport associations. Not sure why you suspect it to be valid for a competitor's service. And I doubt Locomore will ever partner with DB...

sauerbraten | 9 years ago | on: Users You Don’t Want

The user(s) you might not want are the parents, not the disabled child. Proper care for the child represents their quite unique problem that they want you to solve so they can use your product. The child having special needs is what sets these patents/users apart from the parents/users you made the product for.

sauerbraten | 12 years ago | on: How not to write an API

Correction: an API account can see all users that registered through the API with that account's key.

Still, WTF!?

sauerbraten | 12 years ago | on: Show HN: I built this website to help people with hashtags. Hope you'll enjoy it

I thought this would look for words in your text that make for a good hashtag, e.g. converting "you only live once" to "#yolo", and make hashtags from nouns but not verbs and commonly used words. Unfortunately it seems to just put a "#" in front of every word, which (for me) isn't even worth it to go to that website, type my text, copy it over to twitter/instagram, paste it, then send it.
page 1