All-inkl.com DDNS for Synology NAS

Recently I had to setup DDNS for my parents DS212+ DiskStation from Synology. I have an all-inkl.com hosting package including a dynamic DNS feature (DDNS under tools): The problem was to get the right settings for the Synology box. Solution for the DDNS problem I found the solution in this blog article: http://www.pflipsen.net/2015/12/21/all-inkl-com-ddns-auf-der-synology-diskstation-einrichten/ I saved […]

Plesk – get information about aliases

To get a list of all existing aliases defined for the respective system, you can connect to the MySQL database of Plesk as admin via key file: $> mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa Afterwards you can get a list of all aliases by the following select statement: select * from domain_aliases; This will give you something […]

OpenSource file sharing with pydio dataware

Just discovered pydio (https://pydio.com). I didn’t now this nice little file sharing tool before. A partner of my agency uses this OpenSource application to share files with customers and partners. It looks very nice, is responsive, provides native apps for iOS and Android, file synchronization over all platforms, flexible access control list (ACL) and is […]

Syntax search engine SyntaxDB

Today I discovered a really nice syntax search engine for programming languages. You can search programming constructs like loops or conditions via an input field. You will get examples for the different programming languages. That’s pretty cool, if you are a cross language programmer like me, because sometimes it’s hard to remember each construct in the […]

Nice Python website crawler framework

Today I stumbled over http://scrapy.org/ while searching for an OpenSource website crawler. Its an interesting crawling and scraping framework for Python. It looks very convenient and easy to use. The most interesting feature seems to be the possibility to select website elements (f.e. hyperlinks) via CSS-selectors. In any case I’ll give it a try.