I find quite confusing the fact that the most powerful tool for image sharpening is called unsharpen mask. This is so for historical reasons so we need to live with it. The tool options functionality is also a bit confusing. The manual does a good job in explaining it (https://docs.gimp.org/en/plug-in-unsharp-mask.html)
Wednesday, December 16, 2015
Friday, December 11, 2015
Spectre 2015
Watched the latest James bond film yesterday. Not a bad film although it is a bit predictable. It follows the particular pattern of James bond films
Sunday, November 29, 2015
Adding a list of numbers in linux command line
Easy: ls -l *052015|awk '{s+=$5}END { print s}'
This will sum the size of backups made in May 2015 and return the total. Neat eh?
Sunday, October 4, 2015
Archmage
Tuesday, September 1, 2015
Sunday, August 23, 2015
The Iron Dwarf
Finished the Iron Dwarf of Drizzt series. One of the better books of the series, it is quite enjoyable :)
Wednesday, August 12, 2015
Sony a700 custom settings
A700 high iso settings
sta suggested
the following custom settings:
base mode 'standard', saturation +1, sharpness +2, brightness -2,
zone matching -1; DR+; high ISO NR 'high'.
This option of standard can be found the same way as deep option
And setting for normal light photos
Base mode deep 0 contrast +1 saturation +1 sharpness 0 lighting +1 zone
Thursday, June 25, 2015
Finished digital photography faqz by Jeff wignall
Not a bad book at all. It is written in a question and answer style and the answers come directly to the point. A good read. Amazon url: http://www.amazon.com/Digital-Photography-FAQs-Jeff-Wignall/dp/1118277236
Sunday, May 24, 2015
Alternative google drive client
Wednesday, May 20, 2015
Reading cryptonomicon
It is a weird but interesting book. Quite technical with technology and cryptography references. It is consisted by three storylines that are running in parallel. Two storylines are placed in the 2nd world war period and the third is placed in the modern world. I have not been to the point where the storylines converge yet but it not too far away. It is a biggish book of more than 1000 pages in my nook reader
Monday, April 13, 2015
The mythical man month
Finished this book. It is a book about software development management and is considered by many as a classic. It is definitely an interesting book, somewhat out of date but most of it is still current. Another interesting fact is that it provides some insight to the way software management and development was done in 1970s. Definitely worth the time.
Saturday, April 11, 2015
Edinburgh science festival
- Sugar on the dock
- The living brain
- The science of in the Game of Thrones
Thursday, April 9, 2015
Fullmetal alchemist
Finished this series of anime. Not bad at all, quite interesting series with lots of action and we'll made graphics
Saturday, March 28, 2015
Simple rest with scala
If you are interested in writing simple rest enabled Web apps and are looking for a sinatra like framework in the java world, scalatra may be the answer.
It leverages the rich feature set of scala and the rich community of java. It uses jetty by default making it easy to use without complicated setup but I guess that the end product could be used in a traditional container server quite easily
Sunday, March 15, 2015
Programming scala
Finished this book (almost). Oh boy this book goes deep. Deeper than I would like for an introductory book. That is good and bad at the same time. It is an investment. It also presents best practices in a number of cases and provides elegant solutions in a number of problems.
So I will say that it is a good book to read more than once.
Monday, March 2, 2015
Motorworld
Finished reading this book by top gear presenter Jeremy Clarkson.
This is a book about his experiences while filming the Motorworld episodes around the world.
It makes for a nice relaxed reading especially if you are a motorsports fan. It is not heavy on technical details and Clarkson's humour makes it really easy to read.
Sunday, February 22, 2015
Salt in masterless mode
Friday, January 30, 2015
Mpv and mps-youtube
As promised, both are command line tools, that are both powerful and simple at the same time.
mpv exists as a command on its own through the ubuntu repos and mps-youtube is a python tool installable through pip.
In order to use it you need to call the command mpsyt
Tuesday, January 20, 2015
View git tag creation date
Wrong. The command to do that is not very easy to remember.
Here is how you can do it:
git log --tags --simplify-by-decoration --pretty="format:%ai %d"
Sunday, January 18, 2015
A few words about swap in linux
vmstat
command. Leave it running a few seconds to settle down and watch the si
(swapin) and so
(swapout) columns. If nothing is happening then there is no reason to be concerned.Saturday, January 17, 2015
Changing the default boot option in Grub2
In short do a fgrep menuentry /boot/grub/grub.cfg
find the menu entry you are interested in, edit /etc/default/grub and copy the name of the entry in the
GRUB_DEFAULT=0
entry. Save the file and do asudo update-grub
Thats it