Copied from the Coursera forum:Has anyone managed to get the Java application to launch with a decent resolution on Windows 10? It's nearly impossible to see on my screen.
______________________________
Windows 10 solution(from 
https://superuser.com/questions/988379/how-do-i-run-java-apps-upscaled-on-a-high-dpi-display)
Just found an easy solution on my Windows 10 machine:
    Find 
javaw.exe you installed.
    Right click -> 
Properties    Go to 
Compatibility tab
    
Check Override high DPI scaling behavior.
    Choose 
System for 
Scaling performed by:______________________________
Linux solutionThe solution for Windows was editing the properties of javaw.exe, as described above, then restarting the application.
The solution for (Arch) Linux is editing the HardwareSimulator.sh script [and others] as described here:
https://wiki.archlinux.org/index.php/HiDPI#Java_applicationsChange the run line:
java -Dsun.java2d.uiScale=2 -classpath ...