[ Main ] [ Home ] [ Work ] [ Code ] [ Rants ] [ Readings ] [ Links ] |
[2024] [2023] [2022] [2021] [2020] December November October September August July June May April March February January [2019] [2018] [2017] [2016] [2015] [2014] [2013] [2012] [2011] [2010] [2009] [2008] [2007] [2006] [2005] [2004] [2003] |
Firefox 84 to enable WebRender by default
[Fri Nov 20 15:47:42 CET 2020]
I just read that Firefox 84 will be enabling WebRender by default in Linux. To be honest, I hadn't heard of WebRender before, but I've been giving it a try on Firefox 83 today (see below for instructions on how to configure it), and it does appear to be fast and stable. Basically, it's a feature written in Rust that makes the rendering of web pages quite snappy. In order to enable it on Firefox 83, simply go to A command to display cheatsheets on Linux commands: tldr
[Tue Nov 10 11:17:15 CET 2020]
Here is an interesting article on a command ( {link to this entry}$ tldr bzip2 bzip2 A block-sorting file compressor.More information: http://bzip.org. - Compress a file: bzip2 {{path/to/file_to_compress}} - Decompress a file: bzip2 -d {{path/to/compressed_file.bz2}} - Decompress a file to standard output: bzip2 -dc {{path/to/compressed_file.bz2}} Nifty bash function to extract archives
[Wed Nov 4 17:34:29 CET 2020]
Here is a very useful trick. A bash function that you can add to your own {link to this entry}extract () { if [ -f $1 ] ; then case $1 in *.tar.bz2) tar xjf $1 ;; *.tar.gz) tar xzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) rar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xf $1 ;; *.tbz2) tar xjf $1 ;; *.tgz) tar xzf $1 ;; *.zip) unzip $1 ;; *.Z) uncompress $1 ;; *.7z) 7z x $1 ;; *) echo "'$1' cannot be extracted via extract()" ;; esac else echo "'$1' is not a valid file" fi } |