HN user

sunseb

641 karma
Posts19
Comments218
View on HN
playclassic.games 5y ago

DOS games in the browser using Web Assembly

sunseb
2pts0
www.youtube.com 11y ago

Taxi drivers violence against UberPop

sunseb
3pts0
blog.hut8labs.com 11y ago

Coding, Fast and Slow: Developers and the Psychology of Overconfidence

sunseb
2pts0
www.voanews.com 11y ago

Islamic State Hacks French TV5

sunseb
1pts0
www.youtube.com 11y ago

A behind the scenes look at the Logitech MX Master wireless mouse

sunseb
1pts0
awesci.com 11y ago

Crocodiles Do Not Die

sunseb
6pts0
www.theguardian.com 11y ago

Printer ink cartridges: why you're paying more but getting a lot less

sunseb
1pts0
forumblog.org 12y ago

Five ways success will look different by 2020

sunseb
2pts0
www.varnish-cache.org 12y ago

Why HTTP/2.0 does not seem interesting

sunseb
9pts0
www.traksearch.com 12y ago

5 sentence rule for emails benefits you and the recipient

sunseb
2pts0
www.programcreek.com 12y ago

Top Movies for Programmers

sunseb
1pts0
samsaffron.com 12y ago

Ruby 2.1 Garbage Collection: ready for production

sunseb
204pts38
news.ycombinator.com 12y ago

Ask HN: Basic income and digital currencies ?

sunseb
3pts1
www.foxbusiness.com 12y ago

Mt. Gox: Chat with Mark Karpeles

sunseb
2pts0
www.youtube.com 12y ago

Bitcoin vs Gold

sunseb
4pts0
gist.github.com 12y ago

A minimal ERB-like template engine for Ruby (33 lines of code)

sunseb
1pts0
www.youtube.com 12y ago

The Pixel Painter

sunseb
1pts0
blog.mongodb.org 13y ago

Ruby, Rails, MongoDB and the Object-Relational Mismatch

sunseb
3pts1
ruby-lang.github.io 13y ago

Http://ruby-lang.github.io/

sunseb
4pts8

“Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.” Marcus Aurelius

We need to stop trying to enforce "the truth" to other people. Just let people talk and have different opinions. That includes letting people having conservative values, because lately this thought police is getting out of control.

It's funny how the media are saying this kid defending himself from the violent mob is the devil for using self-defense and protecting the city, but at the same time Jacob Blake (who was charged with sexual assault and had a long history of violence) is an angel. We are living 1984. The truth is the opposite of what we are being told. All values are inverted.

I don't get it. Is Mozilla a Neo-Marxist organization now?

Why don't you talk about software development instead? About building FireFox? About disrupting tech?

It seems Mozilla is now run by people more interested into communism than actually building a fucking software and bringing value to the world. RIP Mozilla.

Sorry, it's because I am French, my English is not that good yet.

My country (France) is sinking: daily violence, ethnic gangs, religious fanaticism, tribalism, women being harassed daily in the streets. It's really scary for the future actually.

So when I read comments on HN about disbanding the police, it seems to me that some guys in here have lost touch with reality. It's not because you are a good person with moral values that all people in the world are like you.

What could go wrong? Lunatics are running the asylum it seems. Authority is always here. Disband the police and you will get another arbitrary authority (being gangs, some kind of political repression, and so). There already are no-go zones in Europa where the police don't go anymore, believe me, you wouldn't want to live there.

If you don't want the official police anymore, why not starting with your place, your home and your family?

Yes, net neutrality was for Internet providers to just be some kind of pipes that don't prioritize some websites over others. I think a platform like Facebook is a bit like that on a higher level. It's about information distribution, not about being an editor of contents.

I live in Europa, so really I don't get what's happening in the US right now, but this Wired article seems so partial and biased against Trump (and Zuckerberg).

It's a problem I see more and more in the media: taking side politically. Remember net neutrality? This was one one of the founding stone of Internet.

Peer pressure, pushing people and platforms, this is what looks like tyranny to me - not Trump nor Zuckerberg.

And of course I will get downvoted by these same people talking continuously about diversity of opinions and freedom of speech.

Firefox 77 6 years ago

No Firefox, no! Please don't embed distraction directly into the browser (pocket recommendations)! I don't want to hear about Coronavirus or ongoing politics bullshit whenever I open a tab! I just want to ignore this noise.

I despise David Icke but I think platforms like YouTube or Facebook should remain neutral. It's not their job to tell us what people should be looking at or not. Then what? We end up like China where we can only browse government propaganda?

Yes, `let` is fine. I use `let` 99% of the time in my personal projects, it's more convenient, but I often must use `const` when working on an existing codebase. :(

Most of JavaScript devs do like you, they default to `const` and if they need to reassign the variable, they switch to `let`.

To me it feels more like a ceremony for declaring a variable than a rational and a useful practice. :)

I agree lukifer. Immutability is useful and interesting, but `const` in JS not really about immutability, it's about variable reassignment (which is trivial to handle really, even for a noob programmer).

const arr = ['foo'];

arr[0] = 'bar';

assert(arr[0] === 'bar'); // !!!

Something like that would make sense though IMHO:

const PHI = 1.618;

I don't get how JS is designed really, they try to solve a bad design (`var`) but they introduce another bad design (`const`) and they make things even messier. Many devs ship JavaScript thought TypeScript these days, so I hope Microsoft can clean this mess one day.

On a side note, I find crazy this obsessive-compulsive behavior to use `const` everywhere in modern JS codebase (even in Webkit now).

It solves really no problem (I mean, Python, Ruby and almost all other programming languages are doing fine without preventing against variable reassignment, and we can still reassign function parameters and object properties in JS).

So much brain power wasted on this useless thing.

Also using `const` everywhere is semantically misleading and ugly. It's not what you would expect in 99% of other programming languages out there.