Monday, February 16, 2015

Disable Google Chrome high DPI


Add the following command line parameters to Chrome.exe launcher

chrome.exe /high-dpi-support=1 /force-device-scale-factor=1

Tuesday, February 10, 2015

Find and kill Rails or web apps on Windows OS

Find the Process ID
netstat -a -o -n to determine the pid of the process running on the used port (80, 3000, etc)


Kill that process via:

taskkill /F /pid ####