Month: February 2017

  • OpenVPN on Debian over UFW

    Complete OpenVPN How-To here: Click here for a very nice tutorial about OpenVPN on Debian UFW open ports Get running applications with their used ports netstat -tulpen UFW command to open ports ufw allow 22/tcp SSH Server !!! SSH port HAS TO be opened befor you activate UFW, in other case you will block yourself…

  • Custom Icon font in Ionic 2

    Create/Get icons in SVG format (e.g. FlatIcon) Create and download icons-font using IcoMoon App Extract only the font folder from the downloaded icomoon.zip  archive to assets  folder. Create a new file in theme  folder called _icomoon.scss  with following content (thanks to Stackoverflow user): // icomoon @font-face { font-family: ‘icomoon’; src: url(‘../assets/fonts/icomoon.eot?ls340j’); src: url(‘../assets/fonts/icomoon.eot?ls340j#iefix’) format(’embedded-opentype’), url(‘../assets/fonts/icomoon.ttf?ls340j’) format(‘truetype’),…

  • GitBucket as a service on Debian

    If you want to host your own Git Server you have multiple possibilities. Here I want to describe how to run GitBucket, an Open Source GitHub like platform. The focus of this article is to show you how to setup GitBucket as a service (incl. autostart) on a Debian OS. Installation in short Java 8…

  • Cordova and Ionic 2 Development

    Debug Ionic Android Application on Mobile Devices Run Ionic 2 on the Android device including LiveReload and Console output: ionic run android -c -l # -l: LiveReload # -c: Console output Inspect elements and network monitoring: # Open in Chrome and select the Android device chrome://inspect/#devices source: Codeproject – Debug-Ionic-Android-Application-On-Mobile-Devices   Debug Ionic iOS Application…