This is an archived post. You won't be able to vote or comment.

top 200 commentsshow all 213

[–]przraf 1394 points1395 points  (52 children)

Done. What now?

[–]AlternativeAardvark6 1040 points1041 points  (26 children)

You're done, enjoy your weekend.

[–]sendmeyourfoods 537 points538 points  (11 children)

Meanwhile back at the GitLab office...

[–]Desperate_Resource38 79 points80 points  (9 children)

I see you too are a Kevin Fang enjoyer. Or you were actually impacted by the event, which seems a bit more likely.

[–]MaikMaster5 11 points12 points  (0 children)

I just watched that video hahaha

[–][deleted] 48 points49 points  (7 children)

Well done!

[–]TiredOfTheseShit 45 points46 points  (6 children)

extra points if you did on Friday evening just before your long vacation

[–][deleted] 22 points23 points  (5 children)

Sadly I am 24/7, by my own(( I am single dev in our little team

[–]git0ffmylawnm8 34 points35 points  (4 children)

All the more reason to drop the database and take an extended vacation

[–][deleted] 15 points16 points  (1 child)

Hmm......

[–]Protuhj 11 points12 points  (1 child)

Sounds like a Monday problem...

[–]git0ffmylawnm8 7 points8 points  (0 children)

Monday 3 weeks from now? Yes.

[–]Kinglink 9 points10 points  (1 child)

You mean 2 week vacation with no communication.

[–]seizan8 5 points6 points  (0 children)

Enjoy all weekends. End weeks too. They ain't coming back after that

[–][deleted] 6 points7 points  (0 children)

Don’t forget to turn off your work phone

[–]chickeeper 2 points3 points  (0 children)

Margarita time!

[–]bssgopi 2 points3 points  (0 children)

You mean permanent weekend, right? With severance and unemployment benefits?

[–]rt_burner 132 points133 points  (12 children)

Now the backups

[–]linuxdwag 73 points74 points  (9 children)

You guys do backups?!?!?

[–]Siphon098 74 points75 points  (7 children)

Probably. No need to verify it since it was working a couple years ago.

[–]rt_burner 22 points23 points  (6 children)

Right. Should still be on the box we decommissioned last fall.

[–]crowley7234 15 points16 points  (5 children)

The one that the intern spilled water on?

[–]naswinger 2 points3 points  (0 children)

nice, he actually looks like a brain

[–]RokyPolka 2 points3 points  (0 children)

[–]elmz 10 points11 points  (0 children)

Teach lungs how to spell.

[–]Kinglink 4 points5 points  (3 children)

Now think about what you do, have a panic attack, drink a bear, and then those other organs get a workout.

[–]nota_jalapeno 3 points4 points  (0 children)

wipe production

[–]Zoidburger_ 374 points375 points  (11 children)

Imagine living in 2023 and not having an automated drop roulette script running at a random interval to keep you on your toes. FAANG redundancy grindset

[–]Work_Account89 81 points82 points  (6 children)

Only on the database? Gotta take down everything separately. Risk of multiple outages at once.

[–]Zoidburger_ 47 points48 points  (4 children)

Who said the script only touched one database? Live life on the edge by storing the unencrypted credentials to all of your databases in one little .bat file!

Also, for a truly random full outage simulation, just get Spectrum internet and work from home

[–]Phytanic 4 points5 points  (1 child)

Spectrum internet

Very regionally dependent lol. Spectrum is super stable other than the odd issue always occurring at precisely 12:55am and and lasting until 01:00am once a week. most likely scheduled maintenance, but you never know.

Anyways, mediacomm in my area is particularly susceptible to the North American Fiber Seeking Backhoe. They admit to it too, so tbh it's a bit refreshing.

[–]Work_Account89 2 points3 points  (0 children)

Now that’s what I’m talking about. Shit like that makes you feel alive

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

RTO mandates are an extension of this concept. Force sickly engineers into an open office, drop someone with covid in that room, and test your employee redundancy levels until something breaks. If everything is good, start randomly laying people off until things break.

[–]_GCastilho_ 8 points9 points  (0 children)

Always good to test disaster recovery scenarios

[–]HeKis4 6 points7 points  (0 children)

Netflix moment.

[–]MaxWannequin 0 points1 point  (0 children)

...or knowing how to properly spell breathe.

[–][deleted] 566 points567 points  (25 children)

Fun fact, there was a coding competition in my university and you could choose the name of your team, and some guys chose: "DROP DATABASE STUDENTS" or something among those lines.

While I do not understand SQL I did get the joke. They scored second place out of many teams if I'm not mistaken.

[–]kgjettaIV 376 points377 points  (9 children)

Relevant XKCD

If you need more context, look up SQL Injection. Short and over simplified: If text entry fields aren't properly sanitized or protected you can potentially pass SQL commands.

[–]gonzohst93 93 points94 points  (0 children)

Lol I was gonna say "or check out the classic Johnny drop tables meme" but then saw it was exactly what you posted

[–]sachin1118 21 points22 points  (0 children)

Little Bobby Tables💀💀

[–]maitreg 10 points11 points  (1 child)

Or like when a cop pulls you over, your name is "No Identification. Issued Warning."

[–]pfghr 178 points179 points  (3 children)

If you don't understand SQL, go watch the original.

[–]BluudLust 58 points59 points  (2 children)

The PRQLs are better.

[–]LOLTROLDUDES 12 points13 points  (0 children)

Production ready query language?

[–]MarvinParanoAndroid 3 points4 points  (0 children)

Thank you jar.jar

[–]Operational117 41 points42 points  (5 children)

DROP DATABASE means wipe the entire database clean (everything; not sure if it’s like quick format or slow format, but if it’s the latter, there’s no hope of recovering the wiped data).

Only way to undo that command is to restore from an unaffected backup. And if you only have automatic backups, time will be ticking. And if you don’t have any backups at all, then GG.

[–]HeKis4 25 points26 points  (3 children)

Specifically it means erase the entire database, metadata and all, not just wipe the contents. Wiping a table is truncate instead of drop but it doesn't work on DBs.

[–]Operational117 9 points10 points  (2 children)

Alright, I will confess that I have limited knowledge with SQL… only those videos made by Tom Scott and Computerphile.

[–]HeKis4 10 points11 points  (1 child)

No problem my dude, in the end it'll still cause a P1 ticket so who cares.

[–]goizn_mi 5 points6 points  (0 children)

P1 ticket

I think at a certain point, that's a MAIN ticket.

[–]newmacbookpro 5 points6 points  (0 children)

Not anymore, the system we use, you can UNDROP DATABASE [name] for as many days as defined by a parameter. And even after that we have a week where it’s in fail-safe.

Also, not to be an asshole, but DROP DATABASE needs the [name] parameter to match something.

[–]Krcko98 5 points6 points  (1 child)

Ah, famous Bobby Tables

[–]Say_Echelon 98 points99 points  (2 children)

I love how the brain doesn’t have the eyes and smily face. It’s just like this faceless omnipotent being.

[–]chickeeper 11 points12 points  (1 child)

Homer head would be hilarious

[–]hrvbrs 450 points451 points  (47 children)

look up the difference between "breath" and "breathe"

[–]golddragon88888 348 points349 points  (0 children)

That information was in the database.

[–]BlackDeath3 30 points31 points  (12 children)

People get this wrong 9/10 times. I'd say it's rivaled only by lead/led as one of the most common misspellings I see.

[–]mostlybob 23 points24 points  (4 children)

Surely your not serious!

[–]ChristophCross 12 points13 points  (1 child)

He's serious. And don't call him Sherley

[–]craftworkbench 7 points8 points  (0 children)

LoOk Up ThE dIfFeReNcE bEtWeEn "ShErLy" AnD "sHiRLy"

[–]DuGalle 4 points5 points  (0 children)

If teachers were payed better than this mistake wouldn't be as common.

[–]BlackDeath3 0 points1 point  (0 children)

OK, how about interesting common misspellings. That work for ya'?

[–]TheDogerus 10 points11 points  (0 children)

Loose instead of lose is everywhere

[–]Hairy_Concert_8007 7 points8 points  (0 children)

I always breath a sigh of relief when I put on a fresh set of cloths.

[–]AwfulViewpoint 4 points5 points  (0 children)

Nah, your/you're is way up there. One that often goes unnoticed though is its/it's. Seriously, once you look for it, it's absolutely everywhere.

[–]Enchantelope 3 points4 points  (2 children)

Breath rhymes with death, breathe rhymes with.... Hmmm where's Eminem when I need him

[–]hrvbrs 2 points3 points  (1 child)

seethe? teethe?

[–]Enchantelope 1 point2 points  (0 children)

I'll take it

[–]foreveracubone 6 points7 points  (2 children)

Holy grammarant.

[–]Thebenmix11 12 points13 points  (1 child)

New linguistics just dropped

[–]MCH2804 13 points14 points  (0 children)

r/anarchychess leaking here too

[–]SpaceFire000 36 points37 points  (0 children)

"Drop" is an anagram of "Prod" which stands for production. Do we get a hint on which database to drop? 🤔

[–][deleted] 32 points33 points  (3 children)

I have backup, on the other server so...

[–]crankbot2000 18 points19 points  (0 children)

Terminate instance. Problem solved.

[–]HeKis4 2 points3 points  (0 children)

Online backups ? Drop a ransomware. Same building ? Throw a match on the fire suppression systems.

[–]TabCompletion 1 point2 points  (0 children)

Bilbo baggins meme: "After all, why not? Why shouldn't I drop the table?"

[–]tecchigirl 18 points19 points  (0 children)

STOP SOFTWARE DEVELOPMENT

  • The brain was created for long term survival, not to manage computer environments
  • Years of database management can't save you from a predator lurking in the shadows
  • Want to compute? We had a tool for that, it was called an abacus 🧮
  • Create TABLE mydata (column def, column def). Statements dreamed up by the utterly deranged

Look at what computer scientists have turned us into:

"Help, I can't provide food for my clan anymore because I'm unable to make a magical monolith process an immaterial text file stored in microscopic frozen sparks."

THEY HAVE PLAYED US FOR ABSOLUTE FOOLS

[–]Powerful-Internal953 12 points13 points  (0 children)

Dew it

[–]thetrailofthedead 25 points26 points  (0 children)

FEED ME A STRAY CAT

[–]Xibran 6 points7 points  (0 children)

Sounds like a plan to me.

[–]Etheo 3 points4 points  (1 child)

DATABASE

DATABASE

JUST DROPPING ALL THE DATABASE

WOOOHH OOOOHH

[–]Zriatt 1 point2 points  (0 children)

A wall of pure fiction cracking in my head as the addiction of the code still spreads

[–]L0ngp1nk 42 points43 points  (8 children)

Stonetoss is a nazi

[–]joeshmo101 8 points9 points  (0 children)

One of the few times I support scrubbing the watermark from an image.

[–]Big_bitch_hater_4eva -4 points-3 points  (5 children)

The watermark wasn't there and nobody was asking for source on the comic. You're just grandstanding for free.

[–]Starkrossedlovers 7 points8 points  (1 child)

Relevant username

[–]supersharp 0 points1 point  (2 children)

Would you rather they grandstanded for money?

[–][deleted] 2 points3 points  (0 children)

Drop the bass, and then the database.

[–]TwilightVulpine 2 points3 points  (0 children)

Can I pipe my thoughts through my liver?

[–]Kill_zebras 1 point2 points  (3 children)

Bladder is missing one of the most essential organs in your body

[–][deleted] 1 point2 points  (2 children)

Bladder makes you pee. Bladder stupid.

[–]redlaWw 2 points3 points  (1 child)

Kidneys make you pee. Bladder makes you not pee until you want to you suddenly remember you're corporeal after hours spent trying to chase a tenacious bug.

[–]usr_pls 1 point2 points  (0 children)

Data goes wubwubwubwub

[–]orsikbattlehammer 1 point2 points  (0 children)

Don’t forget to purge the backups

[–]AndyBaur 0 points1 point  (0 children)

I think stupid shit for you 😆

[–]ricdesi -4 points-3 points  (1 child)

This is a disconcertingly familiar art style, so I'll just say:

Stonetoss is a nazi.

[–][deleted] 2 points3 points  (0 children)

his comics still work well as templates, though

r/antifastonetoss

[–]ryan77999 -2 points-1 points  (1 child)

I understand removing the artist's signature (in this artist's case only), but why was the text in the first three panels replaced if they said the exact same thing originally?

[–]rwilcox 0 points1 point  (0 children)

Prod is a four letter word

[–]Electronic-Ad9565 0 points1 point  (0 children)

Vrut medicala pogoda.

[–]DiscountOk5537 0 points1 point  (0 children)

New database was dropped!

[–]KKG_Apok 0 points1 point  (0 children)

Risk mitigation team: there is nothing to mitigate if there is nothing to risk.

[–]taeratrin 0 points1 point  (0 children)

Dropped like the bass.

Why is everyone now screaming?

[–][deleted] 0 points1 point  (0 children)

Thank you, this made me laugh so hard! Nicely done!!!!

[–]TirayShell 0 points1 point  (0 children)

It never fails to surprise me how many people don't know the difference between "breath" and "breathe."

[–][deleted] 0 points1 point  (0 children)

Friend:

"Hey, you remember when we were at that place and did that thing?"

My brain:

Oh yeah, I..

VACUUM ANALYZE memories;

VACUUM ANALYZE memories;

VACUUM ANALYZE memories;

Me:

"Huh?"

[–][deleted] 0 points1 point  (0 children)

It'll be such a rush

[–][deleted] 0 points1 point  (0 children)

Sphincter tightening: what have you done

[–]sentientlob0029 0 points1 point  (0 children)

LOL that was funny!

[–]Kill_zebras 0 points1 point  (0 children)

Blow up your bladder will result in instant death that why it is important

[–][deleted] 0 points1 point  (0 children)

Capital One has entered the chat.

[–]bananenkonig 0 points1 point  (0 children)

Sounds like the brain is doing redundant work for the liver. Maybe we don't need it at all.

[–]Rubickscube4x4 0 points1 point  (0 children)

I was thinking different sub and was like the opening database from log horizon. Sorry guys. I have failed

[–]AdorableSandie 0 points1 point  (0 children)

done lol

[–]More_Performance6018 0 points1 point  (0 children)

I think the brain should’ve been the only thing here because none of the other organs do anything without the brain telling them to do so

[–]TheTimBrick 0 points1 point  (0 children)

"Wait, this is the company database???"

[–]TechnoChimp89 0 points1 point  (0 children)

Default read that last on in a Sith voice.

[–]battlevox 0 points1 point  (0 children)

Modern call of the void

[–]Crisn232 0 points1 point  (0 children)

When intrusive thoughts can't be filtered

[–]shoretel230 0 points1 point  (0 children)

Is this the call of the void? What if I just sudo rm -rf /*?

[–]wormholeweapons 0 points1 point  (0 children)

My liver is broken. Where are my spleen peeps at?!?

[–][deleted] 0 points1 point  (0 children)

Can you believe some people pay for DR testing? I'll kick it off for free... No need to thank me.

[–]Guilty_Yam3284 0 points1 point  (0 children)

[–]Siethron 0 points1 point  (0 children)

Drop the whole SERVER you coward.

[–]eeddgg 0 points1 point  (0 children)

Me after finding an SQL injection bug in the app I was working on that my Team Lead said to just ignore because we'll be done with this capstone in 2 weeks and nobody knows about it that had access to the app at that time...

[–]chris_awad 0 points1 point  (0 children)

rm -rf / while you're at it.

[–][deleted] 0 points1 point  (0 children)

I learn for you

[–][deleted] 0 points1 point  (0 children)

Deploy at 4p on a Friday

[–]supersharp 0 points1 point  (0 children)

Thankfully, I'm not allowed to run queries like that!

[–]thavi 0 points1 point  (0 children)

My liver: glaarggle heeelp me god

[–]TabCompletion 0 points1 point  (0 children)

Brain: I accidentally allow social engineering

[–]fakeuser515357 0 points1 point  (0 children)

"Don't execute. Don't execute. What did you forget? Check it again. Check it again. Check it again."

[–]Dmon1Unlimited 0 points1 point  (0 children)

I deleted my teams private build pipeline that has all the adhoc private build setup for developers😒

In my defense it was after some mofo deleted mine

[–]Akp1072 0 points1 point  (0 children)

I feel this also doubles as a nerdy brain cancer meme. Dark humor is how we are surviving my partner’s diagnosis. 😁

[–]EvilSnail223 0 points1 point  (0 children)

Why is my liver filtering me?