How to hide the website description in your Home Page without removing the “description” Meta-tag
Category Archives: Tips and tricks
WordPress: how to hide the website description in your Home Page
Linux resize images
By supposing you have imagemagick installed on your OS, run a shell and type:
mogrify -resize 200x200 -format png *.jpg
then press the ENTER key. Of course you can replace 200×200 with your preferred size.
Linux change file owner
ffmpeg desktop recording – on Linux OS
Save this code as recording.sh:
#!/bin/bash ffmpeg -f x11grab -r 35 -s svga -i :0.0 -sameq /home/user_/grabvideo-svga-out.mpg
then make the file executable (setting permissions). To start recording your actions on desktop, click or double click on the file. To stop recording kill the ffmpeg process typing into a shell:
kill -9 [n]
Linux untar multiple files
FLTK 2 – Open and save files on Windows OS
Native Win code to open / save files on Win Os using FLTK / FLTK 2. I’ve founded this code on Greg Ercolano’s Home Page, The underlined text strings are those I’ve added to load and save files effectively, on FLTK 2 standard text editor../*Open and load file*/ Read more »