Monthly Shaarli

All links of one month in a single page.

December, 2020

GitHub - shannpersand/comic-shanns: a classy font
thumbnail
Replacement Laptop Keys | $3.79 Repair | All Brands
unicode - How can I output UTF-8 from Perl? - Stack Overflow
thumbnail

use utf8; does not enable Unicode output - it enables you to type Unicode in your program. Add this to the program, before your print() statement:

binmode(STDOUT, ":utf8");

See if that helps. That should make STDOUT output in UTF-8 instead of ordinary ASCII.

Comic Mono | comic-mono-font
thumbnail
Use postfix dereferencing | The Effective Perler
How to rename a database in MySQL? - MySQL by Marcelo Altmann
find - How to move the files based on Year - Unix & Linux Stack Exchange
thumbnail

You want to use the -newermt option for find:

find /media/WD/backup/osool/olddata/ -newermt 20120101 -not -newermt 20130101

to get all the files with modification time in 2012.