Author: johayek
-
“awestruct” – a static site baking and deployment tool – used by jenkins-ci.org
http://awestruct.org http://asciidoctor.org https://jenkins-ci.org/blog/2016/01/05/new-website https://github.com/jenkins-infra/jenkins.io – this repository is what powers the Jenkins website: “This uses awestruct with Asciidoctor under the hood to provide a very useful and compelling web presence for the Jenkins automation server.” The new jenkins-ci.org website is based on awestruct. awestruct is written in Ruby. The jenkins-ci.org website is run by Python.
-
“Emacs For Mac OS X” – they fixed an ugly error with a notification area
http://emacsformacosx.com http://emacsformacosx.com/atom/daily http://emacsformacosx.com/emacs-builds/Emacs-2016-01-08_01-41-42-4580671-universal.dmg Starting with the December version Emacs left an ugly blank rectangle as a left over of notifications, now it shows an exclamation mark in a yellow triangle, and there is no left over.
-
“opprtunity” is harvesting LinkedIn for e-mail addresses and subscribe you to their mailing list w/o your consent
I find that a rather bad habit.
-
WordPress 4.4 comes with a REST API
https://en.wikipedia.org/wiki/Representational_state_transfer https://wordpress.org/plugins/rest-api/ http://v2.wp-api.org What a coincidence – just recently I stumbled across my WP-CLI bookmark here. Looks like this was worth while.
-
my Holy Night film (2of3): Brooklyn
http://www.imdb.com/title/tt2381111 – “Brooklyn” – a very, very nice film to see. This was the alternative: http://www.imdb.com/title/tt4025194 – in French: “je suis à vous tout de suite“, in German: “Mademoiselle Hanna und die Kunst nein zu sagen“
-
Synology router “RT1900ac” as an SSH server
How to enable SSH access for user accounts? Log in as root; within /etc/passwd change the default shell entries of the resp. user accounts from /sbin/nologin to /bin/ash. The resp. user accounts may want to have their public keys get placed in their .ssh/authorized_keys2 . Of course the firewall needs to get opened a little on…
-
Synology router “RT1900ac” as an NFS server
https://www.synology.com/en-global/products/RT1900ac https://en.wikipedia.org/wiki/Network_File_System AKA NFS /etc/init/nfsd-adapter.conf – read it, and find out how to start and stop the NFS daemon – it is rather, rather simple, honestly! /etc/exports – all this is on one line in your file: /volumeUSB5/usbshare *(rw,async,no_wdelay,crossmnt,insecure,no_root_squash,insecure_locks,sec=sys,anonuid=1025,anongid=100) The /etc/fstab entry looks like this (again: all this is on one line in your file): SynologyRouter:/volumeUSB5/usbshare /media/synologyrouter nfs4…