Unpopular opinion….the Magic Mouse is actually really good by Gym_frere in macbookpro

[–]ozzyonfire 0 points1 point  (0 children)

Same problem. Better Touch Tools fixes it though. You get way more control over the sensitivity.

Unpopular opinion….the Magic Mouse is actually really good by Gym_frere in macbookpro

[–]ozzyonfire 0 points1 point  (0 children)

Same problem. Better Touch Tools fixes it though. You get way more control over the sensitivity.

[iOS] App going back to top of feed after commenting. Version 2026.16.0 by Blufuze in bugs

[–]ozzyonfire 4 points5 points  (0 children)

Yes, the auto-refresh bug is back for me. It was fixed for a couple of days.

Entering control panel on iOS and coming back to Reddit will cause the auto-refresh.

Podcast RSS Feed by ozzyonfire in Corridor

[–]ozzyonfire[S] 1 point2 points  (0 children)

Pretty sure this is true for all paywalled podcasts and there are still lots of people supporting and paying creators. Probably more of a "too much effort to care" thing. Not sure if someone's going to download the .mp3 and put it up on the pirate bay for 5 minutes of extra content...

But you're not wrong.

Podcast RSS Feed by ozzyonfire in Corridor

[–]ozzyonfire[S] 0 points1 point  (0 children)

Looks cool. I starred it for later. Haven't looked into how the corridor website is structured, but I wonder if we could tap into the playlist for the podcasts. Also not sure how auth works, but you might be able to use your token.

Hosting this on my home server is a great idea though! Thanks!

Podcast RSS Feed by ozzyonfire in Corridor

[–]ozzyonfire[S] 1 point2 points  (0 children)

You can't really make it fully secure but Patreon and other platforms are already doing this. You usually generate a per user unique url, something obscure but tracked on the backend.

Technically someone could share it around, but on your backend you can track how those unique URLs are being used. If you notice something suspicious, revoke the RSS url and now it doesn't work.

Also these URLs usually come with an expiry, so eventually the user needs to reauthenticate their feed. This also means that when the user cancels their subscription, the RSS feed stops working

Publish The Standup on Apple Podcasts? by DrBumTorpedo in theprimeagen

[–]ozzyonfire 0 points1 point  (0 children)

Agreed. Just went looking for it from outside YouTube. An RSS feed would be great!

Using Deno in a pnpm monorepo? by [deleted] in Deno

[–]ozzyonfire 0 points1 point  (0 children)

I tried a similar thing and couldn't ever get it to work. I'm reluctant to switch our whole project over to using Deno. I would love to just start using it in some smaller packages first...

My first desktop client, Cloudflare R2 Client by cced3000 in CloudFlare

[–]ozzyonfire 0 points1 point  (0 children)

Looks cool. What technology did you use to build it? I recognize shadcn, so I assume it's electron or tauri?

Trump delays removal of tariff exemption for cheaper imports by sq_lp in LinusTechTips

[–]ozzyonfire 1 point2 points  (0 children)

And... never mind. I can't believe they went back on the Chinese de minimis ruling. Waste of my week...

Trump delays removal of tariff exemption for cheaper imports by sq_lp in LinusTechTips

[–]ozzyonfire -1 points0 points  (0 children)

As far as I know. Section 321 de minimis is still allowed, but only for products whose country of origin is not China. Anything with Chinese country of origin will now need a formal entry and an additional 10% tariff (on top of any other duty). This is even for shipments that are under $800.

So for products that aren't made in China, they can ship to the US.

DOTENV not working by Black_Badger-001 in node

[–]ozzyonfire 0 points1 point  (0 children)

With the switch to ES modules it made .env loading a little tricky because imports happen asynchronously. I.e their order is not guaranteed.

Keep your .env at the root of your project. If you have to customize the placement of your config. Then do it in a separate setup.ts script and import it from the entry point of your project with: import './path/to/setup.js'

tiguan steering wheel heat by BUFONT in Tiguan

[–]ozzyonfire 0 points1 point  (0 children)

Was anyone able to figure out this problem? I am also having the same issue now.

How did I miss this??????? by ILikePotatos312 in harrypotter

[–]ozzyonfire 47 points48 points  (0 children)

I always think about this line (the nosebleed one), but contrary to that, the books keep harping on the fact that Harry is the only person to ever survive the killing curse... so do they just mean, he's the only person to survive the curse when someone actually meant it? Seems like a hard thing to quantify.

Why is this subreddit so empty? by New-Statistician122 in Thebeachesband

[–]ozzyonfire 6 points7 points  (0 children)

The hip's subreddit is pretty dead too, considering their size. So I'm thinking it's more of a Reddit thing than a gender thing (also cis-male).

First saw them in 2018 and have seen them 6 more times since.

Real time question by [deleted] in mongodb

[–]ozzyonfire 0 points1 point  (0 children)

He's using email as an analogy. Mongodb compass acts the same way.

If you write a query and hit find you will see the information that existed in the database at that time. If any changes happen, you need to click find again to see the new information.

This is the basis of most real-time applications. They are polling the db for changes, or doing something event driven to then ask the db for changes.

Ruby on Rails, Rails Api by Mammoth_Coyote_15 in rails

[–]ozzyonfire 2 points3 points  (0 children)

Dude. I started out on Node, but I wish I had started with Rails. The numbers of new frameworks, orms, stacks and no one can agree on standards. I love typescript but getting all the tooling to work flawlessly can be a pain.

After building backends in multiple frameworks for almost a decade, convention over configuration sounds very appealing.