HN user

justJanne

41 karma

Janne Mareike Koschinski, CompSci student.

https://github.com/justJanne

Current maintainer of QuasselDroid https://quasseldroid.info/

Posts0
Comments15
View on HN
No posts found.

No?

http://www.kn-online.de/News/Aktuelle-Politik-Nachrichten/Na...

This is not happening?

The EU is suing Germany in front of the ECJ because Germany is far above the levels.

The EU Commission is literally suing Germany because our drinking water is exceeding the limits, and you say it’s not happening?

This http://www.dw.com/en/eu-sues-germany-over-water-tainted-by-n... isn’t happening?

EU sues Germany over water tainted by nitrate fertilizer

The European Commission has lost patience with Germany over the high concentration of nitrate fertilizer in its ground water. Taxpayers could now end up paying hundreds of millions of euros in fines.

This? https://www.euractiv.com/section/agriculture-food/news/eu-ta...

This? https://www.thelocal.de/20161107/eu-sues-germany-over-water-...

This? http://europa.eu/rapid/press-release_IP-16-1453_en.htm

Every news outlet is reporting on this, and you’re saying it isn’t happening? We truly live in postfactual times.

Or you could have people use busses or other transit methods.

Yet a common criticism when that is suggested is that only the poor use public transit, and that everyone in public transit smells bad.

Which is what I’m questioning here: Self-Driving cars provide no real technological advantage over existing transit methods, and the real issues are social problems.

And we can’t solve social problems with technological solutions.

Maybe self driving cars can be the "last/first mile" in transit so that more people actually will use public transit.

So the Park+Ride concept. That’s already possible today, yet completely underutilized. A criticism often brought against transit is "I’d have to switch trains at some point", do you think these people would start using that now?

They will be driving around and not be parked..

All the time? That’d be quite wasteful, considering most cars are only used for about 2h a day, during the rush hours, for the commute.

I think you have to think bigger. Why would you want to own a car if you could call one at any moment with your phone with an app?

Why would you want to own a car if you could call a taxi at any moment with your phone with an app?

Why would you want to own a car if busses and trains come every 2-5 minutes at every stop, and you’re never more than 400m from a stop?

Reality is, as European cities show, all these "advantages" can already be gotten with public transit today. I’m not sure what self-driving cars actually improve compared to existing public transit methods. And especially because they’re using space more inefficient than existing transit methods, these advantages would have to be huge to make any tradeoff worth it.

Otherwise you could just invest in better transit, not self-driving cars.

Well, I’m just extending the previous’ posters list.

But Amazon will lower your CPU quota as well, if you use it for too long, so it’s not like the numbers of Amazon themselves even really mean anything.

The same story with storage performance – Amazon’s is horrible, but it’s network-attached.

Simple: Seperate documents, interactivity, and programs.

If I browse the web, I usually want documents.

Sometimes I also want interactivity, like in comment forms, which could be a seperated widget which could only interact in limited ways, and only with the page and the server it connects to.

And then there would be programs, which could access even local files – but would have an installation process like browser extensions.

Giving documents access that normally just programs do is stupid, as we have seen in Word Macro-based malware, PDF-based malware, Browser-based malware (the pdf.js exploit, for example), and so on.

In theory, yes, in practice, Google can terminate the contract whenever they want – so they just would terminate the contract with the first company, regardless if the second company is actually the same legal entity.

Well, the idea was to do stuff like

    @media(max-size: 200px) { #container { background: url(tiny_mobile.png); } }

    @media(max-size: 400px) { #container { background: url(small_mobile.png); } }

    @media(max-size: 800px) { #container { background: url(medium_tablet.png); } }

    @media(max-size: 2000px) { #container { background: url(large_desktop.png); } }

    @media(min-size: 2000px) { #container { background: url(retina.png); } }
Not always loading the same image is a good idea on mobile.