Gnome 42 desktop release is more bloated than ever and dumbed down as well.

The new Gnome 42 desktop release has some doubtful design decisions. One of them is removing the terminal and adding a custom terminal application called Console, but this is apparently worse. Gnome Terminal was just fine to use, now they have a worse application you are supposed to use. The new Console app has fewer … Read more

How to encode a movie clip with FFmpeg and have the encoding start right away.

Encoding a movie clip with FFmpeg is very simple, but getting the encoding to start right away is the hard part. Sometimes it will take many seconds to start, but this is due to the slow searching through the file looking for the right section. Putting the “-ss 01:58:11” parameter before the “-i” parameter is … Read more

A good tip to speed up the Firefox UI easily on Ubuntu 20.04.

The Firefox UI on Ubuntu 20.04 was very slow for some reason. But this trick was a good way to help speed it back up. Go into about:config and then set the value below to true and then restart the browser. gfx.webrender.force-disabledgfx.webrender.force-disabled This seems to have sped it up greatly. I am not sure why … Read more

How to use FFmpeg to get a slow-motion video clip.

Making a slow-motion clip from a video can be very useful to show off what is happening in a certain scene. The example below will make a slow-motion clip from a video file. This would be another very useful FFmpeg tip. > ffmpeg -i qS_lu5dKo9A2qoNW.mp4 -c:v libvpx -b:v 3200k -filter:v "setpts=2.0*PTS" -ss 00:00:03 -t 6.9 … Read more

Removing Network Manager from Ubuntu. I am sick of it.

I am finally sick of using Network Manager on Ubuntu 18. It seems to make my Internet connection slower and I am constantly messing around trying to fix it. I used the command below to remove the Network Manager service. 4.4 Fri Aug 31 jason@Yog-Sothoth 0: $ sudo apt-get remove network-manager network-manager-gnome network-manager-pptp network-manager-pptp-gnome Now … Read more