Search This Blog

Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Thursday, 21 November 2013

Technology and Ethics

On April 23, 2010 in Langhirano (PR), invited by Mirco Ferrari (webmaster and creator of langhiranovalley.it), with the "Parma Linux Users Group" we participated in a themed evening in which there was discussion about "Technology and Ethics".
My friend Marco Albanese introduced the topic Linux, I (from about 12:00 min) concluded with a focus on the central point of the evening.
After: good wine, ham and appetizers.
I found the video on Vimeo almost by accident. :)


Tecnologia ed etica: un binomio possibile from Mr. Rano on Vimeo.

Wednesday, 5 December 2012

Useful Linux commands for a blogger

Sometimes you make screenshots for your posts, then you cut them at best, then you want the same size for all of them.

Nothing could be simpler with linux, open a terminal, go in the folder with the screenshots and launch this command:
mogrify -resize 550 *.png                                                                                     

All the images in the dir will be resized at 550px width.

NB: you must have installed before the suite imagemagick (just write in the terminal  sudo apt-get install imagemagick).

Sometimes you want to publish a flyer, but you have only the pdf, so you can convert it in a *.png image with a simple command:

convert my_flyer.pdf new_flyer.png                                                                    


Linux is simple!