Live data from Hacker News

Three women contract HIV from dirty "vampire facials" at unlicensed spa

arstechnica.com

91–99 of 99 posts

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#91

Earlier quoted context omitted.

>Are we at the stage of inserting silicone in your junk so your jock strap looks better? Yes? People do get penis enlargement surgery, see https://en.wikipedia.org/wiki/Penis_enlargement#Surgical_met... or phalloplasty which has a Wikipedia page I'd rather not link here. Not really a fair comparison to breast augmentation though, which is more similar to the plastic surgery muscles some people get. Or hair plugs. Whi…

At the risk of being more hated on: My general understanding is that phallus enlargement is intended to enhance sexual pleasure whereas breast enlargement has no such function and from what I gather likely reduces sexual pleasure for the woman. But I don't have a phallus, haven't seen one in ages and I'm perfectly happy to be educated on the topic by actual penis-having peoples more in the know than little ole me.

I know one of the major risks of enlargement is impotence, and like with breast enlargement I can't imagine jamming a bunch of non-nerve things in there improving sexual pleasure.

I'm no expert on the subject, but I've always thought people primarily got them to look better with maybe some hope of performing better for their partner. I've never thought they were for their pleasure, except in the same way as breast enlargement where you enjoy pleasing your partner.

Still, I think a better comparison is "men get hair treatments, primarily as a looks thing."

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#92
post #89

There are a bunch of weird things in the article. HIV typically has three phases: acute for first 6 months (most contagious, perhaps cold symptoms), chronic for up 11 years if untreated, or much longer if under treatment, and then AIDS. Per the report two cases were acute and one case (two?) had AIDS, yet they all fell within the same viral DNA cluster (AIDS if infected in 2018 would be rare). So it seems that they w…

> AIDS if infected in 2018 would be rare.

That's incorrect. 8-10 years is generally reported as the "average" time from infection to AIDS, but faster progressions are by no means rare. One study found that up to 13% of newly infected patients may develop AIDS within one year. Developing AIDS 6 years out from infection is certainly unfortunate but by no means rare.

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#93

Just a meta-observation on the discourse here. I'm _shocked_ that the discourse on ArsTechnica for this story seems civilized while here on HN it's all (so far) snark.

There are definitely snarky comments, but at least looking at it now all the shitty comments are flagged or downvoted at the bottom, while the more useful and insightful ones are at the top.

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#94

Earlier quoted context omitted.

“progressive individualism” seems a lot kinder than I would put it. I’d call it libertarianism or anarcho-capitalism (both derogatory).

"Libertarian" is a pejorative now?

In progressive circles (eg. reddit), yeah.

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#96

Earlier quoted context omitted.

Phone posters, Eternal September, tech industry interlopers.

Unrelated to you comment here, but I figured you'll see this reply rather than one from your week old comment. I replied to your serverless comment here: https://news.ycombinator.com/item?id=40054222 Very interested in what more you have to say, if you're interesting in discussing it more.

Apologies, I'm on a phone -- and quite tired -- but I will try.

The general ethos of my gripes with serverless are here (not my post): https://www.reddit.com/r/aws/comments/14noh28/comment/jq95xz...

It excels in only one area: scaling. You can "scale down to zero" (to the point where if there is no usage, you theoretically are not paying for stand-by hardware). You also do not have to -- theoretically -- worry about scaling rules and about provisioning more hardware when your service needs more workers to handle demand.

However, everywhere else it is a shit-show. Not being able to do anything resembling local testing & debugging requires you either: keep the architecture very simple (why use serverless in that case?), try and spin up one of the numerous half-baked virtualization solutions, or spend more time writing, testing, and maintaining scaffolding/mocking/whatever to interface between all your "add-ons" (e.g. SQS, S3, etc.). Your only way to track message flow is with extensive and expressive logging.

Deployment is a pain. What should be a sub 30second operation is routinely 5mins for even the smallest packages (AWS deployment tools are stupid inefficient) -- annoyingly breaking any sort of flow every time you have to deploy to test things you cannot test locally. Now imagine that being your working loop every day -- utter madness if you want to keep any sort of velocity or morale.

The ecosystem is not mature. I still have packaging utilities (built and maintained by a mag7) that fail silently causing production outages. The other tooling is also half-baked and a pain in the ass to use (much less learn the edge cases around). Serverless (the framework) is a shitty replacement for Terraform. The lack of a language server to understand whether or not my YAML IaC will actually do what I want it to do without dry-running is tedious.

Containers are wasteful, half-baked, and unperformant.

My workloads have always been either CPU or I/O heavy. No I do not need 2GB of RAM and a single (unknown spec) vCPU. I need at most a 100MB of RAM for my JVM/CLR and a fast-enough CPU. But the only way to provision a faster/less gimped CPU is to "bump the tier" of the lambda by provisioning more memory. Ergo you pay for memory you do not use nor need, simply so your lambda doesn't time out in its maximum 15min container lifespan, on heavy workloads.

The file handle limits are also something asinine, like 128 open handles per lambda with no way to modify. So I cannot open more than ~128 network sockets when I need to fan out compute to get past kneecapped container resources.

Cold-starts: it's been beaten to death. But if you're running a language with a bytecode interpreter your options are to either provision concurrency (i.e. force a container to always be warm/spun-up, and incurring all those costs, which would have been unarguably cheaper with a server, even an EC2) or modify your source and ahead-of-time compile everything you can. Otherwise, you will not get sub 300ms cold invocations (a sever in the most optimal location would get you sub 10ms latencies).

If you have long-running workloads or are trying to squeeze the most performance out of your backend: serverless is not going to cut it. This is ignoring all the inter-infrastructure communication that add even more latency.

N.B. this is for moderately complex web apps built on AWS, it may not be wholly representative of the landscape.

And apologies for the harsh language, but the entire "serverless" hype has given me plenty of scar tissue -- especially in a "move fast, now!" startup landscape.

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#97

Earlier quoted context omitted.

Unrelated to you comment here, but I figured you'll see this reply rather than one from your week old comment. I replied to your serverless comment here: https://news.ycombinator.com/item?id=40054222 Very interested in what more you have to say, if you're interesting in discussing it more.

Apologies, I'm on a phone -- and quite tired -- but I will try. The general ethos of my gripes with serverless are here (not my post): https://www.reddit.com/r/aws/comments/14noh28/comment/jq95xz... It excels in only one area: scaling. You can "scale down to zero" (to the point where if there is no usage, you theoretically are not paying for stand-by hardware). You also do not have to -- theoretically -- worry about…

Thanks for the reply. It was a good read. And I can agree on the points from experience.

One suggestion/correction: "Your only way to track message flow is with extensive and expressive logging.", you can do distributed tracing. It not a silver bullet, nor does it replace a proper debugger, but it's better than following logs. You can use a number of distributed tracing SaaS's, but you still have to do at least some manual instrumentation in your code to add additional info.

Re: Three women contract HIV from dirty "vampire facials" at unlicensed spa

#98

Earlier quoted context omitted.

HN has gotten meaner lately.

If you see a uncivil discussion, you can send an email to dang hn@ycombinator.com and he may come and write a few warnings or ban some account.

And thank him profusely, please.
Post reply on HN