Skip to main content

Use of USB External DVD+/- RW Drive

 


1. Ripping CDs and DVDs to media files.
Amazing how many libraries have free rentals....

2. Watching movies and listening to music from #1 that still do not exist online, streaming, etc.

Watching extras not available

Watching the above in the original format, not compressed like cd to mp3s, or double compressed like raw film to dvd to streaming compression.

E.g. American soldier, exit from rooftop during ending sandstorm battle, check out the shadows in the sand. Bluray already struggles to render this difficult scene well - barely enough bits. Dvd, streaming - both even worse and blocky. Can't even see clearly.

3. Accessing data files for work and from archive that's only on disc.

4. Burning files for backup and offline transfer.
Cloud goes down - Amazon went down last week. And IF they go down, where's your files? Gone!
Offline backup in a bank vault is safer than the cloud.

5. No home internet. No interest in paying for streaming.
Instead of $50~/month + $25~/month for the above, that's $900!! / year~ or two new Playstation 5's per year down the drain, the local library has all the latest music and movie hits FREE and the cellphone already gets me online.

6. Reinstalling Windows from disc

7. Backup of fresh system install and setup to disc for restore later.

8. Creating dvd movies of birthdays, weddings, etc that you'd rather not have the world watching.
Anything put online is forever public.

And tons of grandparents don't use none of that new fangled online crap. Besides, their analog tv hooked up to the digital antenna converter box and dvd player is about as online as they'll ever get...because some are in internet blackholes.

9. Higher price selling whatever is on the discs.
People don't blink as much paying $25 per disc for a nicely printed and cased wedding video, but stream it and they'll go cheap - can't even cover labor to make the video.

10. PS1/PS2/Wii/etc emulators.
Yes, you can rip discs, download images, but easier/quicker just to play from the original discs.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...