Interesting FFmpeg effect.

This is a very interesting emboss and sepia effect for FFmpeg. ffmpeg -i NOLm_Ambowide2_1207.mp4 -vf "curves=vintage,convolution=-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2" ambo.mp4ffmpeg -i…

Read More

How to view videos on Youtube and not count as a view.

Use this code in the uBlock Origin dashboard, and this will block Youtube views code, this allows viewing a video and your visit with a browser will not count views. ||https://s.youtube.com/api/stats/* ||https://www.youtube.com/ptracking ||https://s.youtube.com/api/stats/playback ||https://www.youtube.com/api/stats/watchtime||https://s.youtube.com/api/stats/* ||https://www.youtube.com/ptracking ||https://s.youtube.com/api/stats/playback ||https://www.youtube.com/api/stats/watchtime This could be very useful for any Youtube user who does not care…

Read More

Trim multiple spaces with sed into a normal string.

To trim multiple spaces from a sentence and turn it back into properly readable text, use this sed syntax. sed ‘s/ \+/ /g’sed ‘s/ \+/ /g’ This is an example. echo "Hello, this sentence has multiple spaces in it and needs fixing." Hello, this sentence has multiple spaces in it…

Read More

Use nftables on your Linux machine to add more security.

The nftables firewall is a good alternative to iptables. This has better performance than the old iptables system. To install this on Ubuntu 18.04, run this command. 4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables Edit the…

Read More

Iptables samples. Very good ways to filter network traffic.

Sample Iptables configurations A sample iptables output that I am using on an OpenVPN server to allow Internet traffic to be passed through it. ubuntu ~ $ sudo iptables-save # Generated by iptables-save v1.4.21 on Wed Aug 2 22:19:48 2017 *filter :INPUT ACCEPT [2654934:1228315333] :FORWARD ACCEPT [31023:17433690] :OUTPUT ACCEPT [2475842:555885003]…

Read More

Internet Censorship bill.

The Internet Censorship bill will restrict access to many websites on the Internet and restrict Internet freedom in the name of protecting copyrighted material from theft, at least that is what they are saying, but it will have many far-reaching effects that will compromise freedom of speech and the enjoyment…

Read More