Some new pages have been added featuring birding photos from our recent trip to Mirthios, Crete.
Enjoy!
Post aus dem “Sturmmöwe”-Blog, hier für die Nachwelt festgehalten:
If you’re interested in flight simulations, you may be aware that “X-Plane 11” hit the digital streets a few weeks ago. I shelled out the €60 or so for the Linux version without thinking twice, and boy, has this been a good investment.
Flying along the “Obersee”, situated about 20km from where I live.
Trying out custom scenery (LGSA Souda on Crete)
FPS look very good even with object-intensive add-on scenery (much can be downloaded for free off the net using some custom, free libraries)
Ready for take-off from RW 11 @ Souda
Flight from Iraklion to Souda along the Cretan Northern Coast
Installation was very painless and worked like a charm. Updating X-plane also worked without any issues. I really like the fact that you can simply move the installation around on your hard disk (as I ran out of space in my /home partition) and re-activate it by simply creating a softlink to the new install folder. That’s how software should work, without any crappy registry entries that break once you move the installation folder.
Parking Position at Emden airport… note the ability to include real weather updated in near real-time.
I just love the Linux support, the version runs flawlessly and natively on my Linux box (currently Mate Cinnamon 18.1) and even the HOTAS Warthog from Thrustmaster works great on Linux natively as two separate devices (throttle / stick) without requiring any drivers or fiddling.
Naturally there is a lot to learn and a a lot of time to be spent on studying the manuals… make no mistake, while you can hop right into X-plane and enjoy the occasional care-free flight, it’s a full blown simulator (what the BMS folks like to call a “study sim”) that will teach you a lot there is to know about aviation and aircrafts.
Bottom line: 9/10 to Laminar Research for this excellent product.
Thanks to “Ackis” talents, birders-hf.de now offers a mobile version for all you birders out there in “the field”
don’t worry, you’ll be redirected to the encrypted site as usual.
Some buzzwwords added for good measure:
disruptive / digital transformation / apps that do not suck / you’re doing it wrong
I’ve created a new section to post some of my “birding” pics taken with my new camera.
While the results are probalby mostly ranging from mediocre to horrible to a professional photographer, I’m still amazed what one can do with the Nikon’s zoom while not lugging around a tripod (which I’m usually doing anyway when birding for my spotting scope, but I’ve yet to buy a 2nd tripod adapter for the camera).
I also hope my composition skills will improve over time so shots will hopefully get better, too… call it a sort of “study history” if you will
You can find the section as a new page next to the “home” link on top.
The SimRacing community mourns the loss of one of its most gifted figures: On May 15th, Dave Purdy passed away aged 71. His countless contributions to simracing will be remembered for a long time.
We raise our glasses in remembrance to a man who never shied away from stating his opinions in a very soothing and likeable, yet determined voice (the only medium that many of us ever got to know him over, sadly) and who produced a plethora of useful information and genuine content that helped us improve, enjoy and pursue our passion.
Our thoughts & deepest sympathies are with his family and friends.
You will be missed.
Godspeed, Dave.
Getting letsencrypt to run on an ancient CentOS or Red Hat Enterprise Linux 5 system (they still tend to appear in the wild from time to time) can be a major headache. I took some notes during the setup, I hope you find the useful (you'll need some basic Unix admin skills in order to follow this recipe, so caution is advised as you go through the procedure). Sources: http://stackoverflow.com/questions/23548188/how-do-i-compile-python-3-4-with-custom-openssl Important: You'll need to use Python 2.7.8, anything beyond that version will die with an invalid certificate error during the certbot setup phase. # compile openssl from source: mkdir -p /server/src && cd /server/src wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz tar xvzf openssl-1.0.1t.tar.gz && cd openssl-1.0.1t ./config --prefix=/server/openssl-1.0.1t shared --openssldir=/server/openssl-1.0.1t/openssl make depend && make && make install # create a softlink for convenience ln -s /server/openssl-1.0.1t /server/openssl # Get Python 2.7.8 cd /server/src && wget https://www.python.org/ftp/python/2.7.11/Python-2.7.8.tgz tar xvzf Python-2.7.8.tar.gz cd python-2.7.8 # set up compile environment export LDFLAGS=-"Wl,-rpath=/server/openssl/lib -L/server/openssl/lib -L/server/openssl/lib64/" export LD_LIBRARY_PATH="/server/openssl/lib/:/server/openssl/lib64" export CPPFLAGS="-I/server/openssl/include -I/server/openssl/include/openssl" ./configure --prefix=/server/python-2.7.8 make && make install # create softlink, adjust PATH ln -s /server/python-2.7.8 /server/python; export PATH=/server/python/bin:$PATH # install pip in new python version wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py python2.7 get-pip.py # install virtualenv, wheel pip install virtualenv wheel # git-clone certbot (latest version) cd /server/src/ ; git clone https://github.com/certbot/certbot # Request a certificate manually (certonly) cd certbot; ./letsencrypt-auto certonly --manual -d my.server.tld # configuring your webserver of choice is left as an exercise for the reader.
I really don’t like web forums all that much, I think they all suck in one way or another and I really yearn for the good old USENET days when everybody was free to use their reader of choice… well, those were the days.
With “vBulletin” being a vey prolific and widespread software for many forums / fora / forae I visit regularly, I wanted to bring some comfort back to browsing them by adding some simple keyboard navigation using some javascript I freely “borrowed” from the web sites out there.
Here’s the result:
“n” – Search for new posts
“g” – go to the first post in the list of new posts
“j/k” – navigate forward / backward in the pages of a thread and / or search results
Cut & Paste the script below and save it to a location of your choice, then you can use the “tampermonkey” extension for Chrome and other browsers to enable these features (chrome stopped accepting non-store based extensions a year ago for whatever reasons they saw fit, tampermonkey helps to get chrome back under the user’s control)
Add the URLs of your favourite forums to the script and import it into tampermonkey (some niftier form of configuration may be on the cards, but I’m lazy so feel free to add it yourself if you want to).
I hope you find this script useful, enjoy keyboard navigation in vB!
// ==UserScript== // @name VBB Show new posts // @namespace http://www.schuerkamp.de/greasemonkeyhacks/ // @description Adds a "whats new" search link and some shortcuts to vbb forum pages // @description Download URL: http://dl.dropbox.com/u/1983539/isi_whatsnew.user.js // ##### ADD THE URL of your vB forums below ################## // @include http*://*isiforums.net/* // @include http*://*www.bmsforum.org/* // // ==/UserScript== var EuropeanDateFormat=1; var newlink = document.createElement('a'); var todays_posts = document.createElement('a'); newlink.href = 'search.php?do=getnew&contenttype=vBForum_Post'; todays_posts.href = 'search.php?do=getdaily&contenttype=vBForum_Post'; tn = document.createTextNode(' Show new posts '); newlink.appendChild(tn); tn2 = document.createTextNode(' Show todays posts'); todays_posts.appendChild(tn2); var footer = document.getElementById('footer_links'); if (footer) { footer.appendChild(newlink); footer.appendChild(todays_posts); } // quick hack to set a default email address from = document.getElementById('it_from_3'); if (from) { from.value="beta-applications@imagespaceinc.com"; } if (EuropeanDateFormat == 1) { var dates = document.getElementsByClassName('date'); for (var i = 0 ; i < dates.length ; i++) { var post_date = dates[i].innerText; // check if there's a year string in the -2012 notation (will stop working in 2100 ;-) if (post_date.indexOf("-20") != -1 ) { year = post_date.substring(6, 10); month = post_date.substring(0, 2); day = post_date.substring(3, 5); var new_date = ""; dates[i].innerText = year + "/" + month + "/" + day; } } } // stolen shamelessly from userscript.org's facebook key navigation // Thanks to Droll Troll function OnKeyUp(e) { var anchors = document.getElementsByTagName('a'); for (var i = 0 ; i < anchors.length ; i++) { var href = anchors[i].getAttribute('href'); if (href) { if(href.match(/goto=newpost/)) { break ; } } } // do a search if we cannot find the "next page" link next_page_or_new ="search.php?do=getnew&contenttype=vBForum_Post" for (var i = 0 ; i < anchors.length ; i++) { var next_page_href = anchors[i].getAttribute('href'); var title01 = anchors[i].getAttribute('title'); if (title01) { if(title01.match(/Next Page/)) { next_page_or_new = next_page_href break ; } } } prev_page_or_new ="search.php?do=getnew&contenttype=vBForum_Post" for (var i = 0 ; i < anchors.length ; i++) { var prev_page_href = anchors[i].getAttribute('href'); var title01 = anchors[i].getAttribute('title'); if (title01) { if(title01.match(/Prev Page/)) { prev_page_or_new = prev_page_href break ; } } } key_map = { "N" : "search.php?do=getnew&contenttype=vBForum_Post", "G" : href, "K" : next_page_or_new, "J" : prev_page_or_new, "T" : 'search.php?do=getdaily&contenttype=vBForum_Post' } if (String.fromCharCode(e.keyCode) in key_map && (typeof e.target.type == "undefined" || (e.target.type != "text" && e.target.type != "textarea")) && !e.altKey && !e.ctrlKey && e.keyCode <= 90) { window.location.replace(key_map[String.fromCharCode(e.keyCode)]) } } window.addEventListener("keyup",function(event) { OnKeyUp(event); },false)
Not much to see here I’m afraid, more or less this post is a reminder to myself that I observed the Mercury Transit using my 100mm spotting scope and a custom built mylar foil filter (basically just a bit of cardboard wrapped abound the tube with some mylar strapped on the business end).
While the view wasn’t very spectacular it boggles the mind to think about what’s actually happening out there: A little planet forever caught up in the Sun’s gravitational well, its hemispheres being alternately boiled by our central star or deep-frozen by exposure to empty space when in the shadow, racing across the Sun’s face in a mere couple of hours… wow, it really boggles the mind, not least of all our ability to predict such events with fantastic precision.
The first wedding of the year has been duly celebrated very much helped by the “Dollies“, a great live band from Osnabrück who really did a stellar job of entertaining us during Robin’s and Linda’s wedding in Kirchlengern yesterday.
Best wishes to Robin & Linda and thanks for a fantastic party!
I guess you know the feeling… what songs to pick for your own funeral and so on while browsing your 50+ GB playlist
My favourites right now would be “Mr. Blue Sky” by ELO, “Träum vom Meer” by the “Wise Guys”, “Drowned on Dry Land” by Del Amitri, “Morning Aire” by Tommy Emmanuel, “Death and and all his friends” by Coldplay , “The Final Trawl” (both versions by North Sea Gas and Emily Smith) and many many more…. probably too many to fit into a service
One of my all time favourite poems for the occasion is copied below thanks to poets.org by Emily Dickinson. Enjoy!
Because I could not stop for Death – He kindly stopped for me – The Carriage held but just Ourselves – And Immortality. We slowly drove – He knew no haste And I had put away My labor and my leisure too, For His Civility – We passed the School, where Children strove At Recess – in the Ring – We passed the Fields of Gazing Grain – We passed the Setting Sun – Or rather – He passed us – The Dews drew quivering and chill – For only Gossamer, my Gown – My Tippet – only Tulle – We paused before a House that seemed A Swelling of the Ground – The Roof was scarcely visible – The Cornice – in the Ground – Since then – ‘tis Centuries – and yet Feels shorter than the Day I first surmised the Horses’ Heads Were toward Eternity –
As you may have heard, the NetHack Devteam blessed us with an update to everyone’s favourite roguelike game “Nethack” a few months ago. As I was unable to track down a precompiled version, I compiled this version from source on my Ubuntu LTS machine.
The package isn’t signed and it might break on your system (hopefully not “your system”), but I’ve decided to put it out there anyway.
nethack360_3.6.0-1_amd64.deb for 64bit systems, Ubuntu LTS 12.04 (may also work on 14.04)
nethack360_3.6.0-1_i386.deb for 32bit systems Ubuntu LTS 12.04 (may also work on 14.04,)
UPDATE:
nethack360_3.6.0-1_amd64.deb for 64bit systems Ubuntu LTS 14.04
Use these debs at your own risk, if they break, you get to keep both parts
Feel free to comment here if you come across any problems and I’ll do my best to fix them.
This morning I woke up a bit earlier than usual and decided to take a stab at observing, or at least glancing, comet C/2013 US10 “Catalina” which has put up quite a show over the recent couple of days:
(This image has been taken from spaceweather.com and was taken by Yasushi Aoshima a few days ago).
After about five minutes or so I managed to spot the comet in my 15×70 Celestron SkyMaster binos around here:
The comet was much dimmer than I had expected it to be, maybe a case of very low surface brightness, but it’s still a great feeling to have seen a celestial body that’s bound for interstellar space once it completes its swing around our central star… puts stuff into perspective really.
This site is now using a free SSL certificate issued by the friendly folks over at “letsencrypt“. Great, isn’t it? I also updated WP in the process and added a permanent redirect to the HTTP version of this site.