ZIP whole dir with deno
28. June 2021
Compressing a whole directory as a zip archive is actually quite trivial, its just not well documented (by now): If you need the archive for direct output you use method ..
Real Android splash screen with Cordova
8. February 2021
Cordova offers a splash screen plugin that initializes the splashscreen way too late on Android: as long as the webview is not loaded, you just see an empty window. Looks ..
Firefox Minimum Tab Width
7. February 2021
You do not have to use userChrome.css to set min-width of Firefox Browser Tabs. There is a setting for that in about:config. Go to about:config in the browser location bar ..
Firefox Multi Tab Rows after v74
EDIT December 7th: As the Multirow-Pather is discontinued, and the latest Firefix 108 breaks the tweak, I am using this solution: https://www.youtube.com/watch?v=oVlLVySe5OI Starting with Quantum you could no longer have ..
WordPress: add sorting function from pages (menu_order) to posts
17. September 2019
There is a quite simple way to add the sorting function from WordPress pages (called menu_order) to the post form. Just put this in your themes functions.php file:
Calling nodeJS APPs via IP:Port stopped working after Ubuntu Upgrade
8. August 2018
After i upgraded my server to Ubuntu 18.04 and installed iRedMail suddenly all my nodejs scripts that were listening to a port with http server were no longer accessable by ..
Magento2: Show grand_total in Minicart
3. August 2018
One of our customers needed the minicart to show the grand_total because of the huge quantity discounts they give. The Minicarts view file is Magento_Checkout/templates/cart/minicart.phtml. For the grand_total to work ..
WordPress: Get second Menu Level only
25. September 2015
This function returns the second nav menu level of a wordpress custom menu according to the current active page.
How to add preview thumbs to your WordPress RSS2-Feed
4. September 2015
I searched a while to find an elegant solution to add preview thumbs to your WordPress RSS2-Feed. Most „solutions“ I found just append the image to the excerpt or content. ..