Category Archives: Windows

How to Install PyOpenGL on Windows 10

By | February 11, 2023

PyOpenGL is an python module that implements OpenGL functions in python allowing you to write OpenGL applications using Python. With OpenGL you are able to write applications that use “GPU acceleration”. So if you have an Nvidia RTX 3060 gpu on your system, the opengl functions will use it to render the 3D graphics on… Read More »

Generate ssh keys on windows 8

By | March 10, 2018

SSH If you are using an ssh client on windows to control a remote webserver and want to setup passwordless logins then you need to create ssh keys. The puttygen command from the putty suite can be used to generate keys in both putty and openssh formats. Download the puttygen program from the following url… Read More »

Install apache mod rewrite on windows

By | September 30, 2009

In httpd.conf file the following line should be uncommented : LoadModule rewrite_module modules/mod_rewrite.so by removing the # sign before it. Then comes a section which looks like this : <Directory "C:/Apache2.2/htdocs"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews #… Read More »