Saturday, September 20, 2008

HowTo: Resize Many Pictures Easily in Ubuntu

Simone Brunozzi is cool. He found out and happily shared how you could resize many photos automagically on your computer easily with just a few clicks of the mouse button on Ubuntu and Gimp. Of course we should also thank the one who made the plugin: David Hodson. Simone, David you guys are awesome!

1 comment:

  1. You can achieve same results using imagemagick and bash.

    for i in `find . -name '*.jpg'`;do mogrify -resize 1024x768 $i;done

    This will resize all jpeg images inside the current directory and all other subdirectory.

    ReplyDelete

EventId's in Nostr - from CGPT4

The mathematical operation used to derive the event.id in your getSignedEvent function is the SHA-256 hash function, applied to a string rep...