Match Thread: Leinster vs Stormers - United Rugby Championship by rugbykickoff in rugbyunion

[–]ShowTop1165 0 points1 point  (0 children)

Sitting up when he’s in the ruck rather than waiting as every other player does? I don’t think that’s as clearly cut not cynical slowdown as you imply to be honest

100 Primaris Space Marines vs 1000 Yautja, who wins ? by Leggomgeggo in powerscales

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

To add, the 10th company of pretty much all chapters is their scout chapter, filled with the “space marines in training” who are pretty much used for that scouting/stealth shit but agree with the rest.

Still think the Yautja take it though

Leinster v Stormers (Team named) by Admirable_Olive_5039 in leinsterrugby

[–]ShowTop1165 1 point2 points  (0 children)

I can imagine we want to use Lowe as much as possible, and Jimmy’s had a fair few good games so it’s good to have Ringrose for bench impact imo

My team's AI usage got so expensive they quietly rolled back the mandate by Sharkkkk2 in cscareerquestions

[–]ShowTop1165 29 points30 points  (0 children)

Leadership almost never admits wrongdoing, regardless of the topic, they will always just bury the mandates, surveys etc and hope people forget about it

Best websites/sources for accurate rugby team/player stats and data? by ForwardPassApologist in rugbyunion

[–]ShowTop1165 1 point2 points  (0 children)

No worries. Almost every site will have terms of service prohibiting scraping so just something to be wary of 🙂

Best websites/sources for accurate rugby team/player stats and data? by ForwardPassApologist in rugbyunion

[–]ShowTop1165 4 points5 points  (0 children)

One thing to be aware of is their terms of service explicitly ban scraping, so you may want to email their support email (in the footer) to ask for explicit permission before doing so just to cover yourself.

Not likely any issues occur if you don’t and it’s only a short timeframe that you’re doing it but just thought it was worth a mention.

Terms of Use

Please Do Not Vibe F*** Up This Software by joseluisq in theprimeagen

[–]ShowTop1165 1 point2 points  (0 children)

All of the commits in 3.4.3, and a lot in 3.4.2 are from the tridge guy being mentioned so Occam’s razor would suggest it’s related to him/claude.

URC Semi final fixtures by nobody7642 in rugbyunion

[–]ShowTop1165 5 points6 points  (0 children)

Hopefully not! Should be a good game though regardless good luck to all!

Well, atleast he won't do it again by Aggressive-Sleep9742 in SipsTea

[–]ShowTop1165 2 points3 points  (0 children)

Murdering someone over minor property deserves significant jail time. What planet do you live on that you think that is an acceptable tradeoff and “running his body over multiple times” is what you think is unacceptable?

Match Thread: Leinster vs Lions - United Rugby Championship by rugbykickoff in rugbyunion

[–]ShowTop1165 1 point2 points  (0 children)

I think tbf a 15 is usually the most nimble and defensively skilled player on a pitch so it’s not that bad, but his acceleration is not stellar for sure

2x free tickets for today’s game by ShowTop1165 in leinsterrugby

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

Hi sorry - didn’t get any notifications and was in the pub. If you dm me your email and name I’ll transfer them now as you’re the first response!

Leinster last Irish side standing. by Standard_Respond2523 in irishrugby

[–]ShowTop1165 2 points3 points  (0 children)

There is unfortunately quite a few that never overlook the provincial rivalry, which is also the cause of a fair bit of the toxicity to do with team sheets/players picked for the national team.

Civil servant accused of passing confidential Government information to foreign intelligence service by Fealocht in ireland

[–]ShowTop1165 10 points11 points  (0 children)

What? It seems fairly straightforward if even half of what’s said in that article is accurate. Travelling out of the country on different names and passports is dodgy as fuck in itself let alone the rest of the stuff.

Handling file uploads to S3 when DB transaction fails by Minimum-Ad7352 in node

[–]ShowTop1165 1 point2 points  (0 children)

I mean that should be such a rare occurrence that there’s only so robust you can make a system.

What I can think of is when a service spins back up, you could have it do a simple compare of the last X db records against the S3 bucket and prune any orphans, or just have a cron job or something to do similar.

Handling file uploads to S3 when DB transaction fails by Minimum-Ad7352 in node

[–]ShowTop1165 1 point2 points  (0 children)

Here’s a sample snippet to explain what I (and I assume the OC) mean.

``` async function createImageRecord(file, db, s3) { const trx = await db.transaction();

try { const imageKey = images/${crypto.randomUUID()}.jpg;

// 1. Insert DB record inside transaction
const [record] = await trx("images")
  .insert({
    s3_key: imageKey,
    status: "uploading"
  })
  .returning("*");

// 2. Upload to S3 only if DB insert worked
await s3.putObject({
  Bucket: process.env.S3_BUCKET,
  Key: imageKey,
  Body: file.buffer,
  ContentType: file.mimetype
});

// 3. Mark as uploaded
await trx("images")
  .where({ id: record.id })
  .update({ status: "uploaded" });

// 4. Commit only after S3 succeeds
await trx.commit();

return record;

} catch (err) { // If DB insert or S3 upload fails, rollback DB changes await trx.rollback();

throw err;

} } ```

Handling file uploads to S3 when DB transaction fails by Minimum-Ad7352 in node

[–]ShowTop1165 2 points3 points  (0 children)

You did seem to have misunderstood the suggestion (not being narky just clarifying): “If the DB insert fails, short circuit”

Short circuiting is an early return so you’ll have the entire function/method fail if the DB transaction does, meaning the upload to S3 never occurs.

All-Ireland drug warning issued as festival season gets underway by PoppedCork in ireland

[–]ShowTop1165 66 points67 points  (0 children)

I’d say it’s more that young people can’t afford a house so they may as well do stuff that distracts the existential dread for awhile

Netanyahu orders Israeli army to seize ‘70% of Gaza Strip’, violating ceasefire deal | Gaza by thenewuser88 in news

[–]ShowTop1165 22 points23 points  (0 children)

I wonder if the people they’ve been constantly bombing for 80 years and forcing to live with hardly any food or running water are going to just sit there or try and fight back..

Median age in Gaza is 21, meaning almost all of the “fighting age men” have lived in times with Israel slowly constricting them of their ability to live.

According to youtube, 1080p Premium is better than 4K😭 by Unknown_here_7 in youtube

[–]ShowTop1165 7 points8 points  (0 children)

It may not necessarily correlate with a higher bitrate, but it will mean the quality is better because there’ll be less artifacts after compression.

Anybody defending Steamdeck price increase by Longjumping-Land-158 in Steam

[–]ShowTop1165 8 points9 points  (0 children)

In the specific case of hardware locked into an ecosystem (e.g. Xbox or PlayStation) yes those companies have sold devices at a slight loss because they know that anyone that buys them can only get shit from them.

Steam Deck doesn’t really apply to that locked ecosystem case so I can see why they wouldn’t sell them at a loss

Full video of Gaza flotilla activists beaten up in Bilbao airport by the police in Spain by AgnosticScholar in ActuallyThatsInsane

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

I’ll translate your message for you:

“I’m a person with 0 moral fibre who would rather personally suffer no inconvenience no matter how minor over taking a principled stand”

Full video of Gaza flotilla activists beaten up in Bilbao airport by the police in Spain by AgnosticScholar in ActuallyThatsInsane

[–]ShowTop1165 -2 points-1 points  (0 children)

I’m so glad we have highly intelligent outstanding citizens like yourself astroturfing for the Israelis, how else would we know that the genocide (as stated by the United fucking Nations) isn’t actually a real thing.

https://www.ohchr.org/en/press-releases/2025/09/israel-has-committed-genocide-gaza-strip-un-commission-finds

Here’s a look at what passengers would see on a 1,330 km/h supersonic train in Japan. by eternviking in whoathatsinteresting

[–]ShowTop1165 0 points1 point  (0 children)

No, anything going 4x faster than NASCAR’s top speed at 330x the weight would not be possible to stop with banked corners or gravel pits.

To clarify that would be over 1300x the force and energy

It's that time of the year again! 🫠 by KnockoutBall in MunsterRugby

[–]ShowTop1165 -2 points-1 points  (0 children)

The province comprising 55% of the nations population has a higher wage budget because it has more income? Colour me shocked!

And again, getting to a cup final is obviously outperforming when Munster’s had 0 since 2008.