12factor App
found an interesting page about some base principals you should remember when building an application: https://12factor.net/de/
found an interesting page about some base principals you should remember when building an application: https://12factor.net/de/
see https://github.com/mbogner/java-website-base
Java base project for website under tomcat Read More »
You get a list of all input devices with the command “xinput list“. You will need the id of the device you want do disable or enable. Here is an example output of this command: ~$ xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] … ⎜ ↳ SynPS/2 Synaptics TouchPad id=12 [slave pointer
disable input device like a touchpad under linux Read More »
See https://github.com/docker/compose/releases for instructions. The documentation possibly doesn’t show the latest infos.
Install docker-compose Read More »
Updating to the latest grub version leads to “error: symbol ‘grub_efi_find_last_device_path’ not found” on my dual boot system having Ubuntu 15.10 next to Windows 10. This can be fixed by downgrading to the version before the latest one in the ubuntu repository till this bug is fixed. Here is how I downgraded my grub installation:
error: symbol ‘grub_efi_find_last_device_path’ not found Read More »
Go to the IntelliJ installation folder and open the bin-directory Add “-Djava.net.useSystemProxies=true” at the end of the idea64.vmoptions file (without 64 on a 32-bit system) Restart IntelliJ and configure it to automatically configure proxy (Settings > Appearance & Behavior > System Settings > HTTP Proxy)
IntelliJ use system proxy settings Read More »
My English version of Windows 10 and Ubuntu 16.04 could not agree whether my hwclock is UTC or not. So booting either Window or Linux changed my hwclock and then the time in the other OS was wrong. So I changed my hwclock to UTC and told Windows and Linux that my clock is set
hwclock problems with dual boot Read More »
In this example eth0 should get a static ip. This can be done by editing /etc/network/interfaces: allow-hotplug eth0 iface eth0 inet static address 192.168.0.2 netmask 255.255.255.0 gateway 192.168.0.1 dns-nameservers 192.168.0.1 This is the entry to configure gateway and dns-server.
Static IP-Configuration in /etc/network/interfaces Read More »
I have a pivot monitor and want to set it up correctly. First you get a list of your connected displays with the command xrandr -q This says something like HDMI-0 connected 1920×1200+1920+0 (normal left inverted right x axis y axis) 593mm x 371mm 1920×1200 59.95*+ 59.88 1920×1080 60.00 59.94 50.00 60.05 60.00 50.04 1680×1050
Rotate Monitor under Linux Read More »
Magento 2 complained that I should set always_populate_raw_post_data to -1. Changing the php.ini didn’t help. The solution was to add php_value always_populate_raw_post_data -1 to my VirtualHost (directly after the AllowOverride of the DocumentRoot-directory config).
Magento 2 always_populate_raw_post_data Read More »