Just as easy as resizing images with mogrify…
1. Download and install GIMP
2. Open Image
3. Filters -> Light and Shadow -> Drop Shadow
Some random places I Have seen ... |
||||
| loading ... | ||||
Archive for August, 2009Just as easy as resizing images with mogrify… 1. Download and install GIMP 2. Open Image 3. Filters -> Light and Shadow -> Drop Shadow Couldn’t be easier! Simply: 1. Install ImageMagick 2. Setup the needed environment variables: export MAGICK_HOME="/opt/local/var/ImageMagick-6.5.3" export PATH="/opt/local/var/ImageMagick-6.5.3/bin:$PATH" export DYLD_LIBRARY_PATH="/opt/local/var/ImageMagick-6.5.3/lib" 3. Resize: bash-3.2$ /opt/local/bin/mogrify -resize 525x700 image.jpg (NOTE: Overwrites image (does not create a new image)) Tags: Image Manipulation, ImageMagick, Mogrify
Aug 24
2009
97 Things Every Software Architect Should KnowPosted by dvromeu in Software EngineeringIf you like good, easy-reading and free knowledge like me, you will surely find taking a look at 97 Things Every Software Architect Should Know worthwhile. Every software project is different, and has it’s own and unique needs, and as Edward Garson points out in Context is King: “I feel there is a certain irony in trying to impart something about architectural ideals, when the very premise I wish to begin with is that effectively there are no ideals. If this is indeed the case, then surely there is nothing to write, I am a contradiction and by doing this I run the risk of the universe imploding or something like that.” However: “But alas, ceci n’est pas une pipe.” I also believe that software engineering projects do share some common issues (or at least I hope for this, any morale booster is welcomed: software engineering is such a challenging discipline that despair is frequent !). “97 Things” points out some topics and solutions that should probably be applicable for any software engineering endeavor. There are some big names and many years of experience behind these tidbits of wisdom, and in my short career so far, I have found many of the described issues in “97 Things” in past and present projects. Because 97 things are too much for my short term memory, these are the top 3 things to know that I strive to remember: Tags: Knowledge Source, Michael Nygard, Neal Ford
Aug 18
2009
Release It! Design and Deploy Production-Ready SoftwarePosted by dvromeu in Software EngineeringMichael Nygard is a professional programmer and architect with over 15 years experience, and also the author of “Release It! Design and Deploy Production-Ready Software”. Having encountered this book on many “Top Books a Software Engineer Must Read” lists, I thought i’d give it a try. This will not be a in-depth review, as there are already many out there, but rather a summary of ideas that will stay with me after this first read. Michael’s book is all about the problematics related to successfully executing software systems in production, and although it is centered on high availability and large scale distributed systems, many of the discussed topics can be applied to any software system. The book covers all the possible elements and layers of software engineering I can think of: management, delivery, testing, design, coding…, front-end, back-end, deployment, etc., and rather than trying to answer all the questions, it tries to point out the good direction in which to go. This is certainly a book that I expect to come back to in the future, as the ideas and scenarios that will stay with me after this first read are only the ones which I can relate to, because I have encountered them in current and past projects. Tags: Knowledge Source, Michael Nygard |