HN user

Andoryuuta

716 karma
Posts7
Comments80
View on HN

To add an actual source to this thread, a brief paper by researchers at the International Labour Organization (ILO) states that for knowledge workers globally "... there are between 644 and 997 million jobs, which represents between 19.6 per cent and 30.4 per cent of global employment respectively." [1]

[1]: Berg, Janine and Gmyrek, Pawel, Automation Hits the Knowledge Worker: ChatGPT and the Future of Work (April 21, 2023). UN Multi-Stakeholder Forum on Science, Technology and Innovation for the SDGs (STI Forum) 2023, Available at SSRN: https://ssrn.com/abstract=4458221

Regex Blaster 4 months ago

Ah, I see. Yeah, that one definitely took me multiple attempts to see what it wanted.

I believe that the "enemies":

1. Must start with "#"

2. Must be exactly 6 hex digits

3. Must be lowercase

Regex Blaster 4 months ago

As far as I can tell, the first combat level enemies all start with "ALERT-" and have exactly 3 digits.

In the context of snooping on the SNI extension, you definitely can.

The SNI extension is sent unencrypted as part of the ClientHello (first part of the TLS handshake). Any router along the way see the hostname that the client provides in the SNI data, and can/could drop the packet if they so choose.

At a prior job (fairly recently, past ~5 years), we still used ColdFusion MX7 for some internal apps and reports. They had been around for a long time, so don't break what works I suppose. :)

The biggest issue with them was that _some_ feature (cfform IIRC) was generating flash .swf input forms, which broke after the flash player EOL. Switching it directly to the plain html version wasn't compatible, so we had to manually fix a bunch of code.

Haha, this made me chuckle :)

I'll concede on the joylessness front. However, I assure you that all the posts on my personal blog are 100% artisanal human-made joyless posts! No AI needed.

> widely

Bullshit.

Dark Reader has >9 million total users across browsers as reported by the Chrome, Edge, Firefox, and Mac app stores [1][2][3][4]. That is definitely a very small percentage of total web browser users - with some estimates putting chrome users at 3.2 billion(!)[5], but 9 million users isn't something to scoff at either.

FWIW - I completely agree that mckirk's comment was a great passing "fyi" that doesn't put pressure on the dev. I also think it relevant to the original post (not some tangential common complaint, nor against the HN guidelines).

[1] https://chromewebstore.google.com/detail/dark-reader/eimadpb...

[2] https://microsoftedge.microsoft.com/addons/detail/dark-reade...

[3] https://addons.mozilla.org/en-US/firefox/addon/darkreader/

[4] https://apps.apple.com/us/app/dark-reader-for-safari/id14382...

[5] https://www.statista.com/statistics/543218/worldwide-interne...

I think people certainly have been trying for a while. In fact, I recall being on a (Skype?) call with my brother almost a decade ago while he was trying to write an SIMD library in Go. If I remember correctly, at that time, a bunch of the AVX instructions weren't even encodable in Go's Plan9 assembler - so we had to manually encode them as bytes [0].

The most complete library I've seen (though admittedly never used) uses CGO _partially_, with a neat hack to avoid the overhead that it comes with [1].

[0] https://github.com/slimsag/rand/blob/f1e8d464c0021a391d5cd64...

[1] https://github.com/alivanz/go-simd/

I'm not a lawyer, but the idea of #2 seems crazy to me.

Have there been any past case(s) where the country/nationality of minority owners of a company has been grounds for changing a ruling?

UG is now owned by (Muse Group), which also owns MuseScore, Audacity, StaffPad, etc.

They've had their fair share of controversy beyond just dark-patterns on UG. From adding telemetry into Audacity[0], causing a bunch of drama and multiple forks of Audacity, To (most notably, in my opinion) having their director of strategy, Daniel Ray, publicly threaten to report/have the Chinese government whisk away the developer of a Github repo for a MuseScore sheet music downloader[1]

[0] https://news.ycombinator.com/item?id=27727150

[1] https://news.ycombinator.com/item?id=27881539

Those ads you are seeing above the comments are from the comment service, Disqus. Unless you pay 12$/month, the comment box iframe will inject ads.

These are not ads directly added by "this guy", but rather by his choice of using Disqus for adding comments to the site.

I think it's a play on "four score and seven years ago". "Four GPTs and seven years, eleven months, and nine days ago" doesn't quite have the same ring to it.

I had a TIA(mini-stroke) a few years ago in my early 20s.

From what I understand: strokes are not more dangerous with age, but are much more likely to happen as you age.

I was told that the the risk factor is a matter of how quickly the stroke is identified and how quickly you are able to receive medical care after the onset. Faster response == less time for brain matter to die due lack of blood.

You'd be surprised, or perhaps horrified, by how cheap (self-proclaimed) human-based captcha solving services are.

If you just search for "captcha solving service" the first few results that come up offer 1000 solves of text-based captchas for <= $1 USD, (puzzle / JS browser challenge captchas are charged much higher).

Whether these are actually human based, or just impressive OCR services, it seems like they are still much more cost effective than GPT-4 is for now.

Statements like these only serve to polarize people, not encourage them to write safer code / use safer languages.

There are many places where C/C++ (and many other non-Rust languages) are still used, and where it would not be feasible at this time to fully rewrite them in rust.

Modern resources like the OP posted should be encouraged, as they actively teach about proper use of the language, and foot-guns to avoid (e.g. don't use c-style strings + strcpy, use smart pointers, etc).