This website is powered by GitHub Pages/Jekyll and can be built in under 5 minutes. Literally.
Head over to the GitHub project
to get started.
This template was designed to look great on both desktops and smaller (mobile) devices.
Below are sample blog posts for illustration purposes.
If you like this theme, please consider supporting me :)
Install Openvpn On Zyxel Nsa325.markdown
Posted on June 12, 2016
Working OpenVPN on ZyXEL NSA325-v2 V4.80(AALS.1) Install FFP as zypkg http://zyxel.nas-central.org/wiki/FFP_as_zypkg echo ftp://ftp.zyxel-tech.de/2.new_mirror/NSA325-v2/4.40/zypkg/ >> /etc/package_src_url or even echo ftp://ftp.zyxel-tech.de/2.new_mirror/NSA325-v2/4.40/zypkg/ > /etc/package_src_url Install uwsiteloader.sh to easily manage repositories https://nas-tweaks.net/373/uwsiteloader-tool-to-download-the-sites-definitions-for-packages-of-the-fun_plug-0-7/ wget http://wolf-u.li/u/441 -O /ffp/bin/uwsiteloader.sh chmod a+x /ffp/bin/uwsiteloader.sh Add new repos: - fonz - Mizelf - Uli - barmalej2 - Arie Install packages...
Read More
Enable Facebook Messenger In Mobile Firefox
Posted on June 8, 2016
about:config
general.useragent.override.m.facebook.com
“Mozilla/5.0 (FuckMessenger 1.0; Mobile; rv:41.0) Gecko/41.0 Firefox/41.0”
Read More
Extract data from ovh domain list with xpath
Posted on March 22, 2016
//a[starts-with(@title, "Twoja domena")]/../../td[@data-title='Rozszerzenia']/a/text()[1]
//a[starts-with(@title, "Twoja domena")]/../../td[@data-title='Odnowienie']/span[last()]/text()[1]
Read More
Migrate mail account to outlook.com with offlineimap
Posted on February 22, 2016
You can try an offlineimaprc file like below: [general] accounts = Email-Sync [Account Email-Sync] remoterepository = old_server localrepository = new_server [Repository old_server] type = IMAP remotehost = poczta.o2.pl remoteuser = u_s_e_r maxconnections = 1 readonly = true folderfilter = lambda folder: folder not in ['Trash'] [Repository new_server]...
Read More
SQL - Calculate sum of preceding values
Posted on February 27, 2015
From SQL Server 2012 it’s simple as SELECT val, sum = SUM(val) OVER (ORDER BY val ROWS UNBOUNDED PRECEDING) FROM #tab; Result <div...
Read More