Readit News logoReadit News
bbx · a year ago
I just had a look at the creators's other project and this one his hilarious! https://www.unoptimal.com/push-off

Two friends receive a notification and the first one to tap it wins!

eieio · a year ago
I was a tester for this game! Testing it with a small group was hilarious; I was super motivated to try to win (although I rarely won) since I knew everyone else playing and the notifications came all the time because Justin was doing lots of testing. It absolutely ruined me (which is the point!)
gond · a year ago
This is a gold mine, too:

https://www.unoptimal.com/automated-ragequit

Love it! Now needed more than ever.

lucb1e · a year ago
Only shows a link for iOS and it also says "concluded" so it sounds like even if I had an Apple device, it has been shut down?

If so, I'm very tempted to make a variant that uses email since I'll run an email server with cronjobs forever anyway (for my other million projects). Will shoot the author a (you guessed it) email to check if they're okay with that when due credits are given!

codazoda · a year ago
The app is still available on iOS but if you open it the screen only shows "THE END" and a winner is announced. It also says, "Stay tuned for hte next game.". So, maybe it is dead now.
joshdavham · a year ago
ChatGPT Youtube Player is also hilarious: https://chromewebstore.google.com/detail/chatgpt-youtube-pla...

It plays a youtube video while you wait for chatGPT to finish responding to your prompt lmao!

madeofpalk · a year ago
As much as this is the complete opposite of what I consider to be a healthy way to use computers, this is really neat.
vrighter · a year ago
I unintentionally made something that had a similar effect once.

I wrote an application (back when android phones still had notification leds) that allowed us employees to notify each other whether our boss was in the building or not. A state change could be triggered by anyone from their phone (there was some "debouncing" server side), which then popped up a silent notification on everyone's phone telling them who updated the status, as well as switched the color of the notification LED (green meant the boss had left the office, red meant that he was in).

It got pretty funny watching everyone scramble for their phones as soon as our boss closed the door, each time he had to leave. And of course, they competed to see whose name would show up in the notification.

gunian · a year ago
as if my life isn't gameified for entertainment already lol
ancientstraits · a year ago
This is a very unexpected way to try combatting addiction. I don't know how well it will work, but I will consider it.
mordechai9000 · a year ago
Negative reinforcement. There's a strategy for smoking where you put a wad of hair in your cigarettes. I used nicotine patches myself, so I can't speak to the efficacy.
3PS · a year ago
Nit: that's not what negative reinforcement means. Negative reinforcement is about removing a negative stimulus, like inducing someone to go to a desirable website by improving their initially bad text contrast whenever they go there.

In this case, jumpscaring yourself would just be considered punishment (or "positive punishment").

spoonfeeder006 · a year ago
There's also Allen Carr's books about treating addiction, and they don't use negative reinforcement, at least the ones I've read

Rather it helps you learn to recognize the fallacies behind the addictive cravings themselves, and to thus resolve the core of why you turn to that in the first place

Still have to make the decision to recall those in the moment, but when you do you do neutralize the cravings

His first book was Easy Way to Stop Smoking

For digital addiction there's Smart Phone, Dumb Phone

For internet porn there's easypeasymethod.org (based on EasyWay to Stop Smoking)

kazinator · a year ago
I put wads of toenail clippings like ))))) in my Lisp code.

Didn't work; still at it, 25 years and counting.

thfuran · a year ago
As someone who has smelled burning hair, it at least sounds plausible. On the other hand, cigarette smoke already doesn't smell good.

Deleted Comment

corobo · a year ago
> where you put a wad of hair in your cigarettes

Oh god I almost gagged just thinking about it. If negative reinforcement works, that'd do it haha

drumdance · a year ago
SNRIs like Wellbutrin do this. They make cigarettes taste gross.
larodi · a year ago
It is hilarious that page shows how one replaces FB with HN... which is precisely what I did in 2019, and now I'm a total HN addict, spending more than a few minutes on it at least 5 times a day.
screwt · a year ago
In case you don't already know - set noprocrast in your HN profile to limit the time you spend on this site.
throwup238 · a year ago
I really hope that the demo video on the frontpage uses the referrer (referer?) HTTP header to select the URL!

I bet you can do that with Chrome’s puppeteer and cache the domain to optimize it. You won’t get the personalized pages of Facebook et al but it would be really fun.

The name is genius.

joshdavham · a year ago
Any chance this gets open sourced? I understand that you can just look at the code of your installed extensions in chrome's directory on your computer, but it would be cool to look at the code, if you're willing to share.
insin · a year ago
CRX Viewer is handy for peeking without installing:

https://robwu.nl/crxviewer/?crx=https%3A%2F%2Fchromewebstore...

doix · a year ago
Oh wow, I expected it to be minimized, obfuscated JS, but it's completely readable! I wish more extensions were like this...
IncreasePosts · a year ago
A fun idea, but I am so hesitant to install extensions that have access to any URL. I don't know who this developer is, so how can I know they won't accept $10k to sell their extension to some malware group that will try to exfil all of my banking credentials after updating this extension?
CobrastanJorji · a year ago
It's worse. Even if you DO know and trust the developer, in a year or two, they're probably going to get an email from a nice man who will want to buy their extension for $10,000, and they've long gotten bored of it, so why not?
ok_dad · a year ago
I would hope that these days the popular extension devs would know about this type of attack and would guard against it by perhaps selling the extension code but shutting down the original extension page under their control so users have to choose to install the new company's extension. As a matter of fact, why won't Google/Mozilla prevent this by making an extension and a person's account inseparable, and have legal language in the ToS that says they can't sell the extension as-is with the install base to a new company? It would prevent so much.
lucb1e · a year ago
Could turn off automatic updates so it won't matter who buys it
scotty79 · a year ago
Can't you pin the extension version so it doesn't auto-update?
e44858 · a year ago
An extension like this should be relatively small. Download the source code, read it to make sure nothing bad is happening, then install it from source so it doesn't get automatically updated.
patrickhogan1 · a year ago
This is a good point and I haven’t read the manifest as I’m in a bit of a rush. Chrome did do a lot of work improving the manifest for conditions like this in v3. I know with webRequest you have to specify urls but not sure if there is a separation of duties here in terms of

1. Permission to operate on any url page loaded locally and being able to modify the html/insert html like the clown image

2. Being able to webRequest http outbound to <any_url> where you could exfiltrate data.

I thought there was a way to insert html into any loaded page without having access to send outbound network requests.

If that is the case that it’s separate if the chrome extension were to be sold and the manifest were changed to allow nefarious behavior you would know.

renewiltord · a year ago
This is quite the problem with the chrome extension ecosystem. It is rife with malware. How does someone build an extension that can promise better behaviour. There doesn’t seem to be a way to restrict oneself.

Even manifest changes aren’t “scary enough”.

HWR_14 · a year ago
Why would this extension ever need to be updated?
moralestapia · a year ago
Easy solution. Don't install it.
marcodiego · a year ago
I really wonder how well averse conditioning works... maybe I'll try it if it works on firefox and is open source.

Something I've done on some periods I was fighting my procrastination was to use pomodoro timers and mantras: "Just for today" and "one day at a time". Interestingly, these simple tools worked very very well.

y33t · a year ago
> "Just for today"

This is great at getting me to justify procrastination.

iammrpayments · a year ago
Combat addiction with PTSD
chrislongss · a year ago
I know this is a joke, but iirc there used to be certain procedures that would surgically implant something physically harmful into an addicts arm to scare them into soberness. Like a capsule maybe?.. Can't remember the details. And if the person were to start drinking alcohol again, the capsule would break down and release a chemical into their bloodstream.
ioblomov · a year ago
Suspect you may be thinking of this…

> Disulfiram (Antabuse) changes the way your body breaks down alcohol. If you drink while taking it, you get sick.

https://www.webmd.com/mental-health/addiction/features/fight...

331c8c71 · a year ago
i looked it up. disulfiram subdermal implants. just proves i need this extension for firefox %(
mariopt · a year ago
Not really, MeatSpin is missing
telesilla · a year ago
Oh warning please! I got a demo jumpscare and almost had a household of very upset kids from the scream and my almost-heart attack reaction. Well done!

For those with stronger stomachs this is a fantastic idea.

nickvec · a year ago
I'd say the tagline of "add random jumpscares to sites you're trying to avoid" is a fair warning of what the demo entails.
wussboy · a year ago
But what does it do?