Stealing Storage from Telegram

  Рет қаралды 187,480

Dev Detour

Dev Detour

Күн бұрын

By popular demand.
Discord: / discord
Github for code: github.com/devdetour/Telegram...
Ko-Fi: ko-fi.com/devdetour
Chapters:
00:00 Last Time
00:40 Shameless plug
0:42 Why I Didn't Do That
1:58 What/Why Telegram
2:32 Not Banned Yet
2:43 Teldrive
3:20 FUSE programs
4:36 Implementing It
6:18 Fixing It
6:34 Writing is Hard
9:48 Reading is Also Hard
10:52 Performance
11:29 TY, CYA

Пікірлер: 327
@shayhan6227
@shayhan6227 3 ай бұрын
This guy is the reason free services eventually start to cost money.
@R_Samnan
@R_Samnan Ай бұрын
Yea specially if its out in the public then alot of people will do the same, just because something is free doesnt mean it has no expenses behind it
@rayanfernandes2631
@rayanfernandes2631 3 ай бұрын
2 years ago I wanted build the exact same fuse mount thingy with telegram, but gave up since it was very very very much ambitious for my knowledge in systems file i/o operations. Really informative content, Keep em coming. Enjoyed every bit! ❤
@Yuki-HoYo
@Yuki-HoYo 4 ай бұрын
I was kinda surprise when I found your channel. You’re underrated for the type of content you’re making
@Spiderfffun
@Spiderfffun 4 ай бұрын
ty you reminded me to subscribe to this amazing creator
@devdetour
@devdetour 3 ай бұрын
1 correction, when I mention at 10:37 that Telegram is doing some encryption stuff and maybe that's why it's slow, this is incorrect. Though Telegram DOES support encryption, this was not an encrypted chat, so that wouldn't make things slow. Another clarification, I knew what RAR was before my last video, just not that it could break files into chunks and password protect them. I guess I phrased this badly :)
@Yoshidzo
@Yoshidzo Ай бұрын
The thing you mentioned is actually about end-to-end encryption (E2EE). Every chat is encrypted by default. The difference is whenever this encryption is E2E (telegram secret chats) or client-server (default).
@DarkxPunk
@DarkxPunk Ай бұрын
And to add, the data is not only encrypted to the server, it’s is obfuscated by breaking it into pieces and storing it on multiple servers so if only one server is access the data is junk.
@DeadCrusader
@DeadCrusader 6 күн бұрын
Telegram Premium will increase the download speeds, and instead of telethon checkout pyrogram.
@UtkarshKoppikar
@UtkarshKoppikar 4 ай бұрын
Can you open source this? Would like to contribute. Or you have already and I haven't reached that point in the video
@devdetour
@devdetour 4 ай бұрын
Yeah! GitHub repo link is in the description. Contributions very much welcome!
@sketchychillandchill
@sketchychillandchill 4 ай бұрын
​@@devdetourand the discord fs?
@-john-9438
@-john-9438 3 ай бұрын
Me not knowing how Github works (Im not a programmer)
@guinea_horn
@guinea_horn 3 ай бұрын
​@@-john-9438then why comment
@xynocode
@xynocode 3 ай бұрын
this project may help me archiving my interpolated video project when I don't have any available HDD storage. thanks
@suvantmsuvantheminecraftia7407
@suvantmsuvantheminecraftia7407 4 ай бұрын
I JUST saw your part 1 video of stealing storage from discord and your part 2 is up by the time I finished the video(uploaded an hour ago)!
@prawnproductions234
@prawnproductions234 3 ай бұрын
The algorithm has brought me back. Thank you.
@a1x5h04
@a1x5h04 3 күн бұрын
I was thinking to create a file storage platform based on telegram, and you made it much much easier ❤
@smith3463
@smith3463 4 ай бұрын
You're amazing. I had always given up on my dream of becoming a programmer, but you sparked it once more.
@ohmygosh6176
@ohmygosh6176 3 ай бұрын
Anyday Google Drive, Dropbox, or other cloud storage can change their policy or go down. That is why it is always a good idea to have multiple backup plans.
@jamlie977
@jamlie977 4 ай бұрын
that's amazing lmao to be honest, this approach is much easier than the previous one. it took me around 8 seconds to think of a way to create this, but the only difference is that i would have to use something like a /sync to send the new pictures/videos
@GreatTS
@GreatTS 3 ай бұрын
Same here. First I watched your video related to Discord unlimited storage and then realised why didn't i used telegram and then i upgraded my code for telegram.
@JamesSmith-ix5jd
@JamesSmith-ix5jd 4 ай бұрын
Telegram is slow for non premium especially in the evening (in Europe), sometimes downloading a simple 20MB video takes forever.
@luizansounds
@luizansounds 25 күн бұрын
Honestly just for the unlimited file size, it's worth paying the premium just for the speed, specially if you compress everything in 2gb chunks for backup
@kleins0
@kleins0 4 ай бұрын
Very interesting video again!
@supernenechi
@supernenechi 4 ай бұрын
Yay, got into the video! Great video dude!
@oussama7132
@oussama7132 4 ай бұрын
can you reduce the background music volume next time?
@devdetour
@devdetour 4 ай бұрын
Thanks for the feedback, I'll keep this in mind. Still trying to figure out the right audio levels :)
@toggenburger
@toggenburger 3 ай бұрын
@@devdetour please dont go way lower. often videos have comedically quiet background music. Guess its a matter of preference
@edicarlosmartins1562
@edicarlosmartins1562 3 ай бұрын
Hey man! Could you mentioned in the description that people also can TELEGRAM-UPLOAD from Pypi?
@phizicks
@phizicks 4 ай бұрын
I would've written each chunk as their own file and have a metadata file (FAT) for each message id part to the file. if you overwrite, you replace the initial X block files and delete the rest if they are smaller, or create new block files if they are bigger.
@TunisiaSparx
@TunisiaSparx 3 ай бұрын
awsome i always wanted to do omething like that ! uploading photos to some place and showing them dynamically from my deployed web app
@Kalphalus
@Kalphalus 3 ай бұрын
On discord, why dont use another channel to save the name and the file ids? Or at least make a backup of the id list every once in a while on Google Drive, Dropbox, (Telegram, Discord,) etc.
@kairu_b
@kairu_b 3 ай бұрын
Another great video!
@Twisted_Code
@Twisted_Code 3 ай бұрын
FUSE sounds like it might be relevant to a problem I've had on my to do list to solve. Is this the same term used by the Windows ecosystem for the concept?
@parkour_pain
@parkour_pain 19 күн бұрын
You mentioned having to do some unconventional things to get the library to work for dlscord, what might those things be? I’m working on a different project but I’m needing to call functions in my bot too and I’m struggling
@parkour_pain
@parkour_pain 19 күн бұрын
I’ll take any help I can get I would appreciate it so much I am very desperate
@skygnd
@skygnd 3 ай бұрын
I’m from the future, you’ll have at least 500k subs by the end of this year man
@wrathofainz
@wrathofainz 3 ай бұрын
There are no good fuse tutorials in yt search, you should add fuselib or something to the tags or title of the video. I intend to use this for a personal server of mine if i can figure out how to get it working on my linux machine. Theres already some fusefs stuff going on under the hood so it can't be too bad... right? Edit: i downloaded the example script amd your telegram fusefs script as examples so hopefully I can make sense of it with those.
@DanDrakeV
@DanDrakeV 4 ай бұрын
This is so good!
@killervacuum
@killervacuum 3 ай бұрын
i use telegram as a backup mainly for the photos from my phone but also other important files. the main drawback is that the download and upload speeds can be quite slow sometimes.
@ErikUden
@ErikUden 3 ай бұрын
Sure, these are “bad” download and upload speeds if compared to transferring files to a local drive, but what about enabling it to sync just like Nextcloud or OneDrive does? Wouldn't it be awesome to use this in order to have locally stored files backed up to the cloud. I could assume the Nextcloud client would be a huge help to implement something like this here! What do you think?
@rovicrosales5547
@rovicrosales5547 3 ай бұрын
I have a question?? Does the files last as long as the telegram exists?
@realcheez795
@realcheez795 4 ай бұрын
this is amazing
@Girgoo
@Girgoo 4 ай бұрын
I would love to see a fuse system that cache usb-drive metadata only. Meaning I dont have to connect the usb-drive to my computer to check what files I had on it last time it was connected.
@thewhitefalcon8539
@thewhitefalcon8539 4 ай бұрын
I think Windows has that and calls it hierarchical storage management
@Slada1
@Slada1 4 ай бұрын
Everything from voidtools can do that too
@myfather7893
@myfather7893 3 ай бұрын
wasn't there Unlim Cloud app which used telegram for storgae. Or did it stopped working?
@CodeF53
@CodeF53 3 ай бұрын
7z supports encrypting, splitting, and compressing files into chunks and has better compression ratios than rar. I would also use the brotli fork, as it has an even better compression algorithm.
@lancemarchetti8673
@lancemarchetti8673 3 ай бұрын
Great video!
@excessiveanalysis2982
@excessiveanalysis2982 3 ай бұрын
One thing I noticed in your design layout was the decision to encrypt each segment of the total file separately. While this does not affect functionality, it can impact the information security of the uploaded data. By encrypting each chunk separately, with what I assume is the same symmetric key, you run the risk of crypto-analysis on the file chunks revealing data on the key and or plaintext. The reason for this is due to the fact, because of the segmented nature of the encryption, you are effectively re-using the same key for multiple encryptions. While this is not a huge deal practically, it is still a possible attack vector. A simple solution would be to simply encrypt the entire file once, and then split the encrypted data afterwards. Other than that (unrealistic, you used CBC mode by the looks of it, so IV helps a lot) security vulnerability in a scheme that was made for fun, amazing video! I must say, I love over-the-top systems that solve problems in a way-more-than-necessary manner simply because it can 😂
@maciej.opalinski
@maciej.opalinski 3 ай бұрын
The caching scheme you implemented does not let you read files if they don't fit in RAM. Fuse manages data in chunks to allow working on files larger than free memory.
@JyothisJayanth
@JyothisJayanth 3 ай бұрын
btw the teldrive owner got his own rclone fork that supports teldrive. I was using rclone mount and it was working perfectly fine :)
@mehregankbi
@mehregankbi 3 ай бұрын
did you also purchase premium? it's cheap iirc and it says speed does increase for premium users.
@hoangduong5954
@hoangduong5954 3 ай бұрын
What about creating a bunch of google/microsoft account and store files in there?
@MightyElemental
@MightyElemental 3 ай бұрын
sounds great for a backup system that has no guarantee the data will remain there 😅 Those file upload speeds don't seem right though... Would adding more upload/download workers improve the performance? The data may need to be split into chunks for each worker, but it may be faster overall?
@AtaGunZ
@AtaGunZ 3 ай бұрын
I'm pretty sure it is rate limited per account or even per IP
@kabul891234
@kabul891234 4 ай бұрын
NIce, just installed teldrive, just make sure to use your own api id and hash
@ManIkWeet
@ManIkWeet 4 ай бұрын
A lot of specialized file download software can download a file using multiple connections simultaneously, maybe you can use that to improve speeds more?
@Jmcgee1125
@Jmcgee1125 10 күн бұрын
This is honestly a pretty interesting example of filesystem optimizations. You're treating the network as a very slow SMR hard disk, and trying to find a way to optimize on top of that by adding your own (very large...) buffer cache with readahead. 10:57 :)
@davia.sampaio8633
@davia.sampaio8633 3 ай бұрын
This is actually good if you dont want certain files on four system. This way you can just drop them on a "cloud" that has no connection to you
@sassas4557
@sassas4557 3 ай бұрын
TIP: Try to send all the zipped files togheter and to download all of them togheter and then allow the user to modify, etc., so the flow should look like "read:download all (storing in temp)->check if they are all (by seeing witch are the missing ones checking their names from the DB file)->once they're all merge the file->show the file", " write: if the new file was used less then x time ago (ex. 2 hours ago), wait; else, move the file to temp->split in chunks->check and write to db->upload->check with db". Like 3 months ago, I tried to do the same thing by hand, separating the files with Winrar and uploading them slowly, and it worked, but if I have to upload a lot of things, it could get messy. PS: We also have to think about resuming upload after power-up and checking partially uploaded files during shoutdown, but it can be resolved by leaving the files in temp until they're fully uploaded with the checks mentioned before and other checks when booting and shutting down the PC (we write the queue of files to upload and download somewhere in the database to know what we were doing before the shoutdown). Nice video, keep on going man, I love these kind of things. Sorry for my bad english btw.
@SMASHTheGamingCanuck
@SMASHTheGamingCanuck 3 ай бұрын
Wonder if Guilded would be faster then discord as it offers 500mb file upload limit
@brennanlaurent4748
@brennanlaurent4748 3 ай бұрын
What about steam could you store files on steam using there cloud save feature
@DealazonDaily
@DealazonDaily 3 ай бұрын
I have an idea can you create an GUI for telegram only for uploading the files like if the members is free the file limit will be 2GB I'd the premium users is 4GB limit so if this idea create an GUI project is bit more powerful to use ??❤
@KaptanUfuk
@KaptanUfuk 3 ай бұрын
yes. i found this method about 2,5 years ago but i never automated it, i couldnt do it. i was waiting for someone to do this application. thanks
@weak
@weak 4 ай бұрын
i never thought of telegram for storage
@AnoshterHaar
@AnoshterHaar 3 ай бұрын
Does this provide any form of redundancy? Cause why would you otherwise even bother the slightest... There are zip programs out there making raid like redundancy possible for zip files. Multipar for example.
@Girgoo
@Girgoo 4 ай бұрын
Maybe it is better if you just sync the file in the background, possible make small chunks to have multiple upload run simultaneously? Now with 2 different providers(telegram + discord) you can actually have raid 1?
@zine_eddinex24
@zine_eddinex24 3 ай бұрын
Cool keep up 🆙 👍 😅
@ayte1549
@ayte1549 3 ай бұрын
It'd be fun to have a whole OS stored in telegram, and have your bootloader fetch if form there every time you boot up the PC.
@luizansounds
@luizansounds 25 күн бұрын
Dude making a suggestion of how a data center can boot x3
@heated1333
@heated1333 3 ай бұрын
How is this not a negative for telegram? I love telegram as a service, I don't think I'm a fan of potentially them bearing more load then they need to when the provide such an amazing service so cleanly. Is it reasonable to ask to rethink this? Maybe do it to someone like Apple?
@shubhsharma19
@shubhsharma19 3 ай бұрын
Can we do same thing with Javascript? if someone can update me on this coz i have no idea about python but i want to try this in JavaScript
@tomerbs440
@tomerbs440 3 ай бұрын
any windows alternative to FUSE?
@nameq
@nameq 3 ай бұрын
On a TDLib level for telegram you can request parts of the file instead of the whole file from the storage
@Chicken_Soy
@Chicken_Soy 4 ай бұрын
thank you
@ReaperXXIII
@ReaperXXIII 4 ай бұрын
great vid, but htf do you not know rar? is it some sort of generational gap?
@Cahangir
@Cahangir 4 ай бұрын
Generation Z is the least technical. It is a fact.
@jmvr
@jmvr 4 ай бұрын
​@@Cahangir and thus, the endless cycle of "___ generation is worse than my generation" continues, as it always has
@Cahangir
@Cahangir 4 ай бұрын
@@jmvr you misunderstood me. I'm simply quoting senior level IT professionals.
@jmvr
@jmvr 4 ай бұрын
@@Cahangir if that's the case, it would be clearer to use quotation marks to signify as such, otherwise people will mistake your comment as being hateful of people not of your generation, which is what my comment pointed toward. For what seems like forever, people have always said that the generations below them are bad, so forgive me if I wrote your comment off as being in a similar vein as that line of thought.
@SHALLGLISTENBEFORETHETEMPLESOF
@SHALLGLISTENBEFORETHETEMPLESOF 4 ай бұрын
​​@@Cahangir they absolutely didn't misunderstand you.
@hwtw
@hwtw 3 ай бұрын
How about make telegram and discord on a raid like thing?
@MccTube
@MccTube 4 ай бұрын
I love it when you do this lol
@juuujuuu1564
@juuujuuu1564 4 ай бұрын
What about pings? You can give them data and they'll send it back. Just do that a lot of times a second sending data to different IPs and you're storing data.. over internet wires!
@Spiderfffun
@Spiderfffun 4 ай бұрын
I swear I saw a video like that already.
@juuujuuu1564
@juuujuuu1564 4 ай бұрын
@@Spiderfffun Please link it if you can find it! Would be interesting.
@Jsephos
@Jsephos 4 ай бұрын
@@juuujuuu1564 kzfaq.info/get/bejne/gMl6hrpot9bWmaM.html
@realminecraaftt
@realminecraaftt 4 ай бұрын
@@juuujuuu1564 kzfaq.info/get/bejne/gMl6hrpot9bWmaM.html
@devdetour
@devdetour 4 ай бұрын
Yes, someone has done this! kzfaq.info/get/bejne/gMl6hrpot9bWmaM.html. It's really really interesting!
@MrPeepa
@MrPeepa 3 ай бұрын
Why not use read write streams for uploading and downloading. And then in the pipeline add a counter for the amount of chunks that got written or read.
@kabuuu_voky
@kabuuu_voky 4 ай бұрын
Very nice
@notchieuwu
@notchieuwu 3 ай бұрын
i LOVE fuse stuff, i've tried to do a similar thing in windows with terabox because the client sucks, but it didn't work out
@esecallum
@esecallum 3 ай бұрын
MEGA does 50 gb ?
@nand3kudasai
@nand3kudasai 19 күн бұрын
KISS instead of fighting against the cache. Upload the chunks and not the whole files. That would improve random access times in case you want to read or start reading from a random part. Pretty much the same way FAT stores files in chunks. It might even help if you implement some sort of parallelization in the pipeline. Ive seen mny of these tools, i find them interesting, i remember there was one to store files on email accounts (back when goggle falsely advertised infinite storage). Good job on using py fuse. Like others i would have used 7z to split and encrypt.
@nand3kudasai
@nand3kudasai 19 күн бұрын
It will also improve your ram usage problem.theres a reason why libfuse uses samll chunks and youre basically going against that.
@Bromon655
@Bromon655 4 ай бұрын
People who experiment with these free storage tactics are a large part of the reason why tech companies have started putting up paywalls for their services. Server space doesn’t grow on trees.
@Kipruto254
@Kipruto254 4 ай бұрын
This is why we can't have good things. Telegram will likely impose a restrictions after this.
@Spiderfffun
@Spiderfffun 4 ай бұрын
@@Kipruto254 didn't this guy mention something like this existing already?
@kaidenrogers
@kaidenrogers 3 ай бұрын
@@Kipruto254 Telegram just deletes old files when they start running out of space. Your uploaded files aren't guaranteed to live there forever. The faster people use it up like this, the faster they delete. So it's really no sweat off their back. Other than increased bandwidth usage, but we saw Telegram's mitigation for that, they throttle it, hoping you'll upgrade to premium.
@R_Samnan
@R_Samnan Ай бұрын
exactly dude, free storage doesnt mean it auto generates itself with no costs infinitely
@kaidenrogers
@kaidenrogers Ай бұрын
@@R_Samnan It's a loss leader. And it's not like it's guaranteed storage. If they need more space, they just delete your old files. The storage may not auto generate, but it does regenerate.
@nourmagdi6031
@nourmagdi6031 3 ай бұрын
i loved the Rick and Morty reference
@erikehlers7006
@erikehlers7006 3 ай бұрын
I have noticed, that the download speed is kinda slow even when you download files normaly. So I think it actually has to do something with their servers
@om1431
@om1431 3 ай бұрын
Brother do you know how to link yt dlp on telegram
@hanspeter9636
@hanspeter9636 4 ай бұрын
Can it run DOOM?
@Sircliffe
@Sircliffe 4 ай бұрын
Store files on KZfaq with digital data modes like OFDM-3500.
@czypherth
@czypherth 3 ай бұрын
what if you emulate how ssd works
@simon_roy
@simon_roy 3 ай бұрын
Can you get ban from telegram for doing this ?
@MrImodre
@MrImodre 4 ай бұрын
fsync/fflush: exists devdetour: reinvented cache goes brrrrr
@devdetour
@devdetour 4 ай бұрын
I did actually look at pyfuse3's fsync(), but I don't think it behaves like a cache. As far as I can tell from the pyfuse3 docs (www.rath.org/pyfuse3-docs/operations.html#pyfuse3.Operations.fsync), it just passes the fh, not actually the data, so a separate cache is still needed - and I couldn't actually get pyfuse3 to call into fsync() in testing, so I kept it in release(). Maybe not optimal, but it works!
@D0Samp
@D0Samp 3 ай бұрын
I see we have advanced pretty far from the time I used a free ad-supported web hoster with filesize limits and a PHP script to concatenate split files.
@JellyRockFN
@JellyRockFN 3 ай бұрын
Is this safe to store content in telegram?
@ErikUden
@ErikUden 3 ай бұрын
Imagine you could sync with this like with Nextcloud ^ ^
@talhahussains1b47
@talhahussains1b47 3 ай бұрын
start teaching coding ngl your really fun to watch❤❤
@tutacat
@tutacat 3 ай бұрын
Actually, HTTP supports something called download range, which only downloads the requested range from a file.
@densxd
@densxd 3 ай бұрын
Isn't this not safe? Maybe your files,documents,text files etc... can be leaked some how? Or im wrong please comment i want to use this "type" system in my project thanks.
@kaidenrogers
@kaidenrogers 3 ай бұрын
Well the files are chunked, so someone would need to know how to re-assemble them. And as he said in the beginning of the video, they can be encrypted.
@Viralvlogvideos
@Viralvlogvideos 3 ай бұрын
how to make a video player that is hosted online but it uses telegram data
@gabrielebenedetti559
@gabrielebenedetti559 3 ай бұрын
figo, iscritta
@mizukun9037
@mizukun9037 3 ай бұрын
i wanna learn computer science like coding stuff how to start
@this-one
@this-one 3 ай бұрын
No need for Samba on your Linux host, if you want to run it on windows there is WinFsp, which is basically FUSE for Windows.
@minidragonlady
@minidragonlady 4 ай бұрын
Not that interested in the storage stuffs, I'm just curious how you did the animations in your video. For example, at 1:33, the animation of the arrow sliding down another graphic. I see that done often in online courses but don't' know how to do it. Could you tell more / do a simple tutorial about that? Thanks :)
@fitmotheyap
@fitmotheyap 4 ай бұрын
Probably just done in after effects or another editing app
@devdetour
@devdetour 4 ай бұрын
The arrow sliding down is just an animation in Adobe Premiere. Some of the other stuff - like text writing in at 9:09, I did in Manim, which is a super cool Python library for math-y animations created by 3blue1brown.
@minidragonlady
@minidragonlady 4 ай бұрын
@@devdetour Thanks for replying! I think you could release some videos about this topic, how to do these and all. I mean, all the effects are so cool to watch and it's just pleasant to present to people too.
@SysReset
@SysReset 4 ай бұрын
DAMNN
@abasgames
@abasgames 3 ай бұрын
you can store your data on KZfaq by uploading videos and use them as filesystem
@ivanromanchenko459
@ivanromanchenko459 3 ай бұрын
What if telegram will cut this feature?
@jecksfoxofficial
@jecksfoxofficial 3 ай бұрын
Isnt telegram automatically download all files to ur phone?
@TheCollectiveHexagon
@TheCollectiveHexagon 3 ай бұрын
there's a config for that(even by file size) which you can enable/disable
@wrathofainz
@wrathofainz 3 ай бұрын
6:39 Code salesman: **Slaps roof of Time Complexity** "This bad boy can fit so much N in it."
@undead2146
@undead2146 4 ай бұрын
tbh when you live in a country where an SSD costs an entire months paycheck, a free but shitty cloud service doesn't seem that bad.
@Hoopaugi
@Hoopaugi 3 ай бұрын
I completely forgot rar files were a thing. Don't really run into them outside of torrenting games.
@LovelyNucleus
@LovelyNucleus 4 ай бұрын
2:50 Literally me with all of my projects 😭
@ALoonwolf
@ALoonwolf 3 ай бұрын
I didn't have enough storage space so I used KZfaq to store all my videos, including my own film which took months of tedious work to make. Then KZfaq deleted my channel, destroying everything. Don't trust online storage!
@algj
@algj 4 ай бұрын
You used FUSE and still - no random reads/writes, missed a huge opportunity to allow streaming media with low latency, torrent seeding and many other things.
@Zeazy
@Zeazy 4 ай бұрын
genius
@selachian
@selachian 4 ай бұрын
This is the type of abuse that ruins things for everybody else. Well, I guess the fact that you don't abuse it by creating hundreds of accounts to accomplish this and only use your single account makes it a little less problematic.
@kaedriz
@kaedriz 3 ай бұрын
I thought the same, like I hate corporations more than other guy, but this will only hurt legit users in the end, like restrictions on max file upload, max attachment size etc. And it's even funnier when people do it to backup data like there exists specialised products to it, my fav Backblaze, for just 9$/m for unlimited data. I understand someone in third world might be burdened by it, but then do you realy need that much storage for backup important documents, like gigabytes? Someone testing it if it works is ok, but abusing it longterm like that? 🙄
How A Steam Bug Deleted Someone’s Entire PC
11:49
Kevin Fang
Рет қаралды 874 М.
Why You Can't Visit 💀🎺.com
8:50
Dev Detour
Рет қаралды 508 М.
ПАРАЗИТОВ МНОГО, НО ОН ОДИН!❤❤❤
01:00
Chapitosiki
Рет қаралды 2,5 МЛН
He tried to save his parking spot, instant karma
00:28
Zach King
Рет қаралды 17 МЛН
Indian sharing by Secret Vlog #shorts
00:13
Secret Vlog
Рет қаралды 58 МЛН
How I Steal Storage Using Code :)
5:23
StupidGeek
Рет қаралды 76 М.
Using docker in unusual ways
12:58
Dreams of Code
Рет қаралды 389 М.
A Simple Devlog of my Operating system.
0:53
Random Tech Stuff
Рет қаралды 2,6 М.
Breaking Bitlocker - Bypassing the Windows Disk Encryption
9:11
stacksmashing
Рет қаралды 861 М.
Pavel Durov of Telegram: WhatsApp Sucks
20:09
TechCrunch
Рет қаралды 898 М.
I Made a Graph of Wikipedia... This Is What I Found
19:44
adumb
Рет қаралды 2,3 МЛН
The ULTIMATE Raspberry Pi 5 NAS
32:14
Jeff Geerling
Рет қаралды 1,4 МЛН
Unlimited AI Agents running locally with Ollama & AnythingLLM
15:21
I Optimised My Game Engine Up To 12000 FPS
11:58
Vercidium
Рет қаралды 495 М.
I Ran a Chess Programming Tournament, Here's How it Went!
1:18:42
Sebastian Lague
Рет қаралды 506 М.
ПРОБЛЕМА МЕХАНИЧЕСКИХ КЛАВИАТУР!🤬
0:59
Корнеич
Рет қаралды 3,6 МЛН
How To Unlock Your iphone With Your Voice
0:34
요루퐁 yorupong
Рет қаралды 17 МЛН
Цифровые песочные часы с AliExpress
0:45
Очень странные дела PS 4 Pro
1:00
ТЕХНОБЛОГ ГУБАРЕВ СЕРГЕЙ
Рет қаралды 299 М.