Monday, October 31, 2016

Presenting pdf with next slide and timer

Finding a tool that is not heavy weight in order to do presentations is not as easy as it seems.
But on Ubuntu pdf-presenter-console dies the job quite well.
Just provide a pdf.
The pdf can be easily generated by markdown using pandoc or your pdf generator of choice.

The project name is pdfpc and can be found on github

Saturday, October 29, 2016

An alternative to lens flare correction

If your lens tends to create monochromatic spherical flares, one of mine does, then you can get rid of the flare by selecting it, going to levels, selecting the color channel (blue in my case) and fiddle a bit with the middle slider.
That can help you sort out the flare without an issue.

Lens flare correction with gimp

Got a photo that has flare?

It can be corrected with gimp. Check out this article. I am copying the text here so it wont dissappear if the post goes away.

After purchasing a glorious new Nikon D40X Digital SLR Camera online today, I was inspired to fix up a couple images.
So, I was trying to get rid of the obvious flaw in the following picture, and I found a pretty easy way to do it with GIMP.
Now, I’m no expert at GIMP or anything, but all I did was select the region in question using the lasso, like so:
Then, I used the Colors -> Components -> Channel Mixer tool to bend it to my will (make sure you grow your selection to encompass the whole flare using the Select -> Grow tool):
Notice how in the preview window the blemish isn’t visible?  That’s what you want.  Now, hit OK.
So, now all we have is a little bit of a color/contrast issue.  Let’s fix that up with the Colors -> Color Balance tool:
Now, if you look closely, you can still see just a tiny bit of brightness, but that’s alright with me – it’s much better than the blue crap.  Here’s the end result:
And there you have it: how to remove those annoying lens flares with GIMP.

Sunday, October 16, 2016

Thursday, October 6, 2016

Getting webex to run on linux

It can mess up your system, so why not use docker instead?


Get this image
url: https://hub.docker.com/r/dnk8n/docker-webex/
command: docker pull dnk8n/docker-webex


close all running firefox instances

start image

sudo docker run -it \
    --env DISPLAY=unix$DISPLAY \
    --privileged \
    --name=docker-webex \
    --volume /dev/snd:/dev/snd \
    --volume /tmp/.X11-unix:/tmp/.X11-unix \
    dnk8n/docker-webex:latest $1


if firefox is already open and you want to maintain your existing session

sudo docker run -it \
    --env DISPLAY=unix$DISPLAY \
    --privileged \
    --name=docker-webex \
    --volume /dev/snd:/dev/snd \
    --volume /tmp/.X11-unix:/tmp/.X11-unix \
    dnk8n/docker-webex:latest $1 \
    /usr/bin/firefox go.webex.com --no-remote

make sure there is no whitespace after \ otherwise the multiline commands wont work

Wednesday, October 5, 2016

The last unicorn, by Peter S Beagle

A nice book with a rather poetic style and multiple references to the power of the stories.
Recommended

Finetuning an adafruit pir sensor

These sensors are a bit tricky to calibrate, so this web site is quite handy http://arduinobasics.blogspot.co.uk/2013/12/pir-sensor-part-2.html