How to save your place in a movie when exiting MPV.

Saving your place in a movie when exiting MPV is very easy, this would be very useful when watching a long film and you need to exit the player and watch some more later. Add this to the ~/.config/mpv/mpv.conf file. save-position-on-quitsave-position-on-quit This will allow the player to resume playback when you restart playing a movie … Read more

How to save a Youtube playlist as mp3 files with Linux.

Saving a Youtube playlist as mp3 files is easy with Linux. The youtube-dl script is capable of handling this easily. You need to specify the playlist ID instead of the whole URL. Below is an example, this shows how easy it is to save a bunch of videos as mp3 files. ┌──[[email protected]]─[~/Music/newyoutube] └──╼ ╼ $ … Read more

How to download a Youtube video as an MP3 with Linux.

Saving a Youtube video as audio and not video is very easy. This command below will save Youtube audio as an MP3 file. You need youtube-dl as well. Then select a Youtube video and use this one-liner to download it as an MP3 audio file. jason@jason-Lenovo-H50-55:~/Videos$ youtube-dl -f 140 https://www.youtube.com/watch?v=neEXAoYfcRo -o – | ffmpeg -hide_banner … Read more

A saved game for New Arsenal 6 that is set after the annoying caves from Yantar.

Новый Арсенал 6 https://securitronlinux.com/arma3/savedgames.7z. This archive is a saved game for Stalker New Arsenal 6. This is a saved game with the Lab X-16 completed and a massive amount of cash. The player now must travel all the way to Generators to find a floppy for barkeep. This should help out a few people. Now … Read more

How to save an image from a Facebook post when right click save will not work.

It is annoying when you wish to save an image from a Facebook post and this will not work. But this is actually very easy using Firefox. Just right click on the image and select Inspect element with Firebug. Then drill down through the code until the URL to the image is found, just select … Read more

Useful Arma 3 code samples to improve your missions.

This code will make your Arma 3 missions run much more smoothly. And provide some nice tricks to make the mission more enjoyable. Put this into the initPlayerLocal.sqf file. This will remove stamina and make weapon sway much more realistic, i.e no Micheal J Fox mode after running. player setCustomAimCoef 0.34; player setUnitRecoilCoefficient 0.50; player … Read more

How to save your iptables firewall rules using the iptables-persistent package for Linux.

The iptables firewall is the built-in firewall for protecting a Linux machine from online threats. But the settings are not save upon a re-boot. This is easily alleviated by installing the iptables-persistent package for Ubuntu. Once this is installed, you will be greeted with a screen that will ask you if you wish to save … Read more