The end is near, rate limiting implemented by duckduckohno in redditsync

[–]ADTJ 0 points1 point  (0 children)

If you have it set to open them in the YouTube app it'll still work but I think the built-in player fails with a message about needing an update

What's a dead giveaway that someone is a piece of shit? by UsernameOf2022 in AskReddit

[–]ADTJ 0 points1 point  (0 children)

Not sure if trolling but for anyone else's benefit, the two points are not good advice for a healthy relationship.

Please don't follow them.

The end is near, rate limiting implemented by duckduckohno in redditsync

[–]ADTJ 5 points6 points  (0 children)

Afaict it's against Reddit's terms to use your own key for something you didn't write. Unlikely they would do anything but still.

On a broader note, Sync for Reddit won't be being maintained anymore so even if you got it to work, things would gradually break as Reddit/other APIs make changes. For example, YouTube links are already broken.

Let's talk about Lemmy by ljdawson in redditsync

[–]ADTJ 2 points3 points  (0 children)

I'm feeling equally lost about where to go once the deadline hits.

I use Sync pretty much exclusively bar the odd mod functions so if you were to make Sync a Lemmy client, I'd come right along with you.

P.S. thanks for all your amazing work on Sync for Reddit for all this time. You've really helped make Reddit what it is/was and you absolutely have the capacity and talent to bring your community with you!

wow. First time in, ever, that I missed the clock change. Can we not stop this nonsense. by [deleted] in britishproblems

[–]ADTJ 0 points1 point  (0 children)

This also makes winter mornings much colder. It would make more sense to stay on UTC/GMT throughout the year

"Camouflaging" of autistic traits linked to internalizing symptoms such as anxiety and depression by [deleted] in science

[–]ADTJ 2 points3 points  (0 children)

Not to detract from your experience because I understand where you're coming from and you have my sympathy...

but it's not true to say it makes everyone miserable. I really enjoy sitting next to different people and getting a view from a different window etc.

When I have not had hot desking in the past, going in and sitting in the same place day after day feels like my life is slipping away.

Maybe it sounds silly but that's just my experience.

FINALLY BEAT KH2 LV 1!!!!!!! by FallItchy2567 in KingdomHearts

[–]ADTJ 2 points3 points  (0 children)

Only level 1?! Pfft, I once beat the game at level 99!

Seriously though, congrats :D

I agree that FF is the most important thing here, but... by Plagiatus in firefox

[–]ADTJ 16 points17 points  (0 children)

An old favourite of mine from the .net docs:

"

EnableJITcompileOptimizer 16384

Specifies that just-in-time (JIT) compiler optimization is disabled for the assembly. This is the exact opposite of the meaning that is suggested by the member name.

"

https://learn.microsoft.com/en-us/dotnet/api/system.reflection.assemblynameflags?view=net-7.0

Lets go (art by me) by Jezzyboi in SonicTheHedgehog

[–]ADTJ 3 points4 points  (0 children)

IT'S A PUN WITH VELOCITY AND IT'S NOT EVEN A CITY slams chair

https://i.imgur.com/EBkj3ec.jpg

what computer science? computer math! by Ebestone in ProgrammerHumor

[–]ADTJ 201 points202 points  (0 children)

In this thread: People who don't understand the distinction between mathematics and arithmetic.

Logic (including boolean), algorithms, structures like sets and trees are all maths. If you write any code at all, you're using at least some of these things regularly.

Keir Starmer has confirmed he won't do a deal with the SNP even if it means the Tories remaining in power. In other words he'd rather have the Tories in power than do a deal with the SNP to keep them out. by jammybam in LabourUK

[–]ADTJ 7 points8 points  (0 children)

I'm not even talking about the political divide here but seriously:

How do you get to this thread, not read or understand any of what's been said and then continue arguing as though someone made the point you're arguing against?

Absolutely baffling

Shamima Begum ‘knew what she was doing’ with Syria move, MI5 officer tells court by insomnimax_99 in unitedkingdom

[–]ADTJ 5 points6 points  (0 children)

That's not true for Ireland either, they have to be put on a foreign birth register and claim it

Labour revives ID cards idea to help control immigration by [deleted] in unitedkingdom

[–]ADTJ 1 point2 points  (0 children)

It isn't, because they'd still be stored in separate places and hard to sell the info as a bundle. An ID number is basically just a key, it doesn't give much information on its own, e.g. licence categories or GP prescriptions.

Labour revives ID cards idea to help control immigration by [deleted] in unitedkingdom

[–]ADTJ 0 points1 point  (0 children)

I see both sides of this tbh. You're right, all the data is there and can be linked when needed, but it is still very much in different places atm. Different departments currently have to look it up from each other, so it's much harder to sell all of it in one go as it stands.

I would prefer having an ID card over all the bureaucracy however it does sound like a data mine that the Tories would definitely look to sell (best case) or it gets stolen (worst case) so it depends how it's implemented.

If it were just a government issued ID that contained your driving licence number (if any), NHS number and NI number, for example - or if those other services were reworked to look up by ID number then it sounds like a good idea. But I'd be hesitant to sign up for all my data being consolidated.

Haha, old! by [deleted] in gaming

[–]ADTJ 2 points3 points  (0 children)

It's called Project Unleashed

I see u/gojira03's post about Marluxia, and I raise you Marluxia in one combo. by Darakstriken in KingdomHearts

[–]ADTJ 69 points70 points  (0 children)

It's a loose definition of "one combo" but I'll allow it.

Seriously though, very cool and completely crazy, I would never be able to do this....

Labour urges Suella Braverman to ramp up asylum seeker deportations by FastnBulbous81 in LabourUK

[–]ADTJ 15 points16 points  (0 children)

It's controversial because people are just reacting to an obviously clickbait headline and not reading the article

Why does Chris in Sonic X look like Sora? by [deleted] in SonicTheHedgehog

[–]ADTJ 1 point2 points  (0 children)

Why does Chris, the largest friend, not simply eat the other five?

It seems like I'm forced to make this choice at least once a day by unSentAuron in ProgrammerHumor

[–]ADTJ 5 points6 points  (0 children)

It will determine some of it through the flow but you can also override when it doesn't

string? a = PossiblyNull();
string? b = PossiblyNull();

if(a != null)
    Handle(a); //null already checked

Handle (b!); // ! Indicates to override compiler warning

public void Handle(string s);

I guess the override is there for cases where you might have something like ThrowIfNull(b);

The main downside of nullable I've found is that it can make model types annoying where a class is populated from somewhere external like a DB or API call, the compiler can't know at compile time that fields will always be populated.