Hacker Newsnew | past | comments | ask | show | jobs | submit | arrakeen's commentslogin

i randomly stumbled upon the connection as well while reading about the St. Bride's School. such a random connection between two completely different interests of mine that i joked the universe is a simulation with limited RAM and reuses assets

Cure Dolly has _some_ connection to this group which, to me, just adds even more mystique to an already fascinating story[1]

[1] https://if50.substack.com/p/1992-silverwolf


Having come across the connection from somewhere else entirely, I found it a very curious rabbit hole. I saw recently a website that attempts to summarise the whole thing (not quite complete) [1], with a section on St. Bride's.

Then there's the oral history someone posted on Something Awful some years ago [2] -- from someone who may have accidentally indirectly derailed the entire movement.

[1] https://aristasia.guide [2] https://web.archive.org/web/20230817170434/https://forums.so...


the flimsy, breakable part is on the cable rather than the expensive device


since nothing will happen to them except a slap on the wrist, and all our employers will continue to force this crapware on our machines, i think we should make a point to start using their name as a pejorative (similar to the 'santorum' neologism). any when they inevitably try to rebrand, use that term too


> since nothing will happen to them except a slap on the wrist

I've already bought some of their stock, i'm pretty sure it's bottomed. I bet i make 30% a year from now. This always happens some "ohnoes!" event cuts a stock price off at the knees but then everyone forgets and in a year or so it's back to where it was before the event.


poptimism was a movement to end the critical dismissal of "pop" music in and of itself. that is, music CRITICS and writers not fans. its goal wasn't to kill or devalue rock, it was to recognize and appreciate so-called "low art" of pop music. it won and that's a good thing.

what we have now is not poptimism, because that already won and pop music has been re-evaluated critically. with the internet having more or less killed real music criticism, all that's left is clickbait reviews/articles that attract the most eyeballs. unsurprisingly, the stuff that attracts the most eyeballs is the most popular music and the stuff with the most money behind it.

i don't have a problem with pop music, i quite like pop music. i have a problem with the uncritical acceptance of all pop music being necessarily "good". i like to say i'm not a rockist, i'm a popessimist


so... apache?


Maybe a small express service running on nodejs or bun.


yeah... i thought the article was revealing itself to be satire when it showed which applications were chosen.


it's unbelievable how the X just isn't there on the android version, probably the most user hostile/disrespectful dark pattern i've ever personally encountered.

that said, i'm surprised that it's available on the desktop version. i wonder if it's some sort of malicious compliance?


i don't know, miro and figma seem to be pretty popular applications using a ZUI


Figma is popular in spite of this. It's my number one frustration. Actually being able to link someone to a specific view is nigh impossible to do consistently.


Can't you link them to a specific frame? I used to use that feature all the time. Did they remove it?

https://forum.figma.com/t/link-to-selected-frame-should-be-r...


java:

    Optional<String> result = returnsAnOptional();
    if (result.isPresent()) {
        log.info("result is {}", result.get());
    }

    // and

    returnsAnOptional().map(r -> log.info("result is {}", r);


Optionals are a bit different though, since they don't provide a way to explicitly handle errors, just wrap the `null` value if it exists and force you to be more explicit about it.

I don't know that there's a clean way to do the Either monad in Java without algebraic data types. You could certainly make a wrapper class that maybe has an optional `Left` and `Right` private variable and then make a `map` that handles the unboxing of those, but I think that might be a bit messy.


my post was mostly facetious, but it is as you say: possible but probably not something anyone would want to use


Actually, I almost want to give it a try now. There's some messy try-catch Java code at work that might benefit.

Don't worry, I won't deploy it until my team has seen it ;)


i saw that and thought that it was probably a top contender for "worst commit message of all time"


I was going to be cute and offer "-mbug fixes and performance improvements" but then I remembered that there was some repo posted a few months back where the github tree listed showed "(no message)" and I had no idea that was possible but yup <https://git-scm.com/docs/git-commit#Documentation/git-commit...>

  $ git init
  $ git commit --allow-empty-message --allow-empty -F /dev/null


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: