I once pirated a book because I didn’t want to get it from another room.
I have remoted in to my desktop from my laptop or vice versa many times to close a video that either I left playing or the cats have unpaused by walking on the keyboard
I got on Fediverse bc I was too lazy to consume what the algorithm fed me
Called someone in the next room to bring me something.
Adhd?
⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️
Instead of
history | grep whateverYou can just do CTRL+R (in bash at least)
I never remember this when it’d actually be useful
when my apartment gets too messy i just move
I don’t wash stains on walls from dogs or kids. I just paint every few years
maybe we’re related
Upvotes to the left
?
I did the same. I wanted to watch a TV series of which I own the box set but I was too lazy to get the box, put the disc in and go through the menu for every three episodes or so. So I pirated it.
go through the menu for every three episodes
So many providers these days STILL don’t get that the more control you take away the less incentive people have to buy their product. Oh I have to see a mandatory FBI piracy warning splash screen and the speed control is locked at 1.5x max? Jeez it’s a shame you can’t compete with the pirated file that has no nag screens and I can blow through at fucking 20x if I want.
I SSHed my laptop to turn it off, even though my laptop is not that far away from my bed
I WoL my second computer to turn it on, even though it’s at an arm’s reach (but I’d have to stretch a bit to reach it)
I once st
Well d
I dunno if laziest but my landlord certainly thought so. I had bedbugs and there’s so much crap you have to do prep for the extermination like remove all your clothes and wash them three times on hot, flip through all your books to check for them, the list was ridiculous. I’m way too lazy for that so I paid the extra $600 out of pocket for the “good” treatment where they just super heat your entire home to kill them and all you have to do is remove things that might melt or explode.
Thankfully the exterminators found the illegal fireworks I had hidden and forgotten about, removed them, and didn’t say anything to the landlord.
The heat treatment was the only thing that worked when I had to deal with those little fuckers. I’m sorry you had to deal with them, but I’m glad they’re gone now. Those things aren’t just physically irritating, they fuck with your head.
How hot does your room get in such a process?
55 C or thereabouts. I was at work when they did it. When I came home it felt like I’d left the heat on full blast all day
Yea that’s what we did at a public library I worked at whenever a bed bug or signs of it were spotted. All the books in the same space where considered contaminated and we all put them in a special heater.
Damn, that’s enough to deform PLA 3d prints
Illegal fireworks? is that code for explosives?
I did a quick check and looks like there are two categories of fireworks above what regular people can freely buy in a store…
https://eclatsetincelants.fr/blog/reglementation-feux-artifice-france
Fireworks are explosives by definition so yes
Pretty much everything is illegal here except maybe like sparklers and snakes. I only had pretty tame stuff like Roman candles I bought a county over from mine. Lotta wildfires here.
Depending on location they can all be illegal. Firecrackers specifically are illegal in my region, IIRC.
I buy new socks instead of washing them.
Pro tip: If you buy tons of the same type of socks such as 20 pairs of black you can wash and dry them and they pair easily. It’s less effort than going to buy new ones.
Gosh I’ve been trying to force myself to do that for like 5 years already. I’m just too lazy to spend some time and choose a good fit (instead of just buying random socks every once in a while). What brand and type of socks would you recommend??
I legitimately think my boyfriend does this. That man has more socks than any person needs.
Black socks
they never get dirty
The longer you wear them
The blacker they get
Someday, I’ll probably launder them
Something keeps telling me don’t do it yet
Not yet
Not yet
Not yet
Not yet
But you should always wash clothes before wearing them for the first time???
(Seriously though, they have all kinds of dirt and chemicals on them)
I remember when my grandfather died, we were going through his belongings and found a drawer full of electric razors. Why did he have so many?!? Then we noticed every one was full of hair, and concluded that he bought a new one every time it filled up rather than emptying it.
Then years later, my parents became snowbirds who went to Mexico every winter, and they stayed with this other family who were locals. They got good at Spanish and one day I guess, my dad was talking to the other dad and they burst out laughing. I asked what that was all about, and he said the Mexican dad’s father also had a drawer full of electric razors, and he never understood why?
Are they really cheap socks, at least?
yea they are
I once pirated a book because I didn’t want to get it from another room.
I pirated a game I legit bought. This was way back in the days when some games had this annoying copy protection where you had to look up words from the manual before you could play. Enter the 3rd word on line 7 of page 28. This sort of thing.
It got old really fast, so I disassembled the binary and saw where it was calling on a random number generator to select the page. I changed just 1 assembly instruction so that the generator would always return 0. Then it said look up so-and-so and the word turned out to be “time”. After that, all I had to do was enter “time” at launch and I tossed out the manual.
I pirated a game I legit bought.
I would argue that this is not possible.
It definitely is, and I’ve done it several times.
One example is Minecraft, which I legit bought but no longer legitimately own, because when Microsoft took over they forced people to make Microsoft accounts and no longer allow Mojang accounts to be used to authenticate. Because I didn’t make a Microsoft account, I no longer own the game, so now I play a pirated copy because I can no longer legitimately play it.
Another example is some games made by studios that went bust and there’s no longer any legit distributor of the game, so the only copy you can download is a pirated copy.
It’s still piracy if it circumvents the intended method of distribution and validation that you own a licence.
You can disassemble programs like that? and see what’s inside? can you explain like I’m four and three quarters?
Yes. Assembly is barely abstracted from the actual machine instructions, to the point where the process of translating it is easily reversible. Reading assembly code is a thing all on it’s own, though.
There’s specialised software available for this kind of reverse-engineering now, too, if you’re doing something more complicated than just looking for and cutting out a system call.
Yeah. At the lowest level, the CPU reads a program as a bunch of numbers, where each number is a very simple instruction such as “add 2 values together”. Assembly language is a more human-readable version of machine code, where you can see something more like
add r1,r2instead of35397176or whatever numeric code means “add the value in register 1 to 2” for some hypothetical processor. (Registers are where the processor keeps values loaded in from the RAM.)So in my case, if I saw that the program was making some system call to the random number generator and the calling conventions used by the operating system always put the return value in register 0, I could replace the call with something like
clr r0(clear the value in register 0). It’s a pretty simple hack. So the “generator” now always generates zero.These days, programs are often code-signed and if you start messing around like that, they’ll get flagged as malware. But it worked fine back in those open and trusting days.
That’s a lot of work in the short term to be lazy in the long, and I am impressed
Back in my teenage years, when you used to change TV channel by walking over to the TV and physically pressing a button, myself and two friends (likely all a bit stoned), sat on a sofa opposite the TV, invented a ~3 metre long “TV prodding device” from gaffer tape and “anything we could find within arm’s reach”.
I think we spent about half an hour building this device, rather than any of us standing up, taking a few steps forward and physically pressing the button.
The device succeeded.
It fell apart after a few uses.
I once threw away sink full of dirty dishes rather than hand wash them. They had been there for like two weeks and were really nasty. I think that was at the height of my depression.
Depression is expensive. I lost a couple crock pots that way. Finally found disposable liners!
Been there as well
And I tried to save a pan, but the fat and dust would never get of it, and I needed to throw it away anyway…
Fr so liberating
I made an script in Python to batch rename like 10 images in a folder.
What’s the point of automation if not to save seconds by wasting hours?
This immediately came to mind

That’s valid

















