Me Forgetful

Change Font Sizes Automatically Relative to Root Font Size

To change the fontsize of all elements relative to root font size: First set root font size with css html {                 font-size: 12px;             } then set related element sizes with rem size h1 {                 font-size: 2rem;               […]

Read Me Leave comment

Laravel Installation

1. Global Installation composer global require laravel/installer laravel new example-app   2. Per Project Installation composer create-project laravel/laravel example-app   3. Specific Version Installation composer create-project laravel/laravel:^8.0 example-app (Install version 8.0)      

Read Me Leave comment

Apache Cordova emulator not running on android run in Debian Linux.

Apache Cordova emulator not running on android run in Debian Linux.

Read Me Leave comment

Stellaris game video resolution in linux

If for some reason the game starts in windowed mode and there are no options for resetting the graphic video resoultion for stellaris in linux for steam the following can be done to rectify: Open the settings.txt file at the following path. It might also be settings.ini. $HOMEDIR/.local/share/Paradox Interactive/Stellaris/settings.txt After opening it edit your graphic resolution and update it to match your current system resoultion. […]

Read Me Leave comment

How to write Python Bindings for Qt Applications

This article gives indepth tutorial for creating custom pythons bindigns for your qt Applications: https://www.qt.io/blog/2018/05/31/write-python-bindings

Read Me Leave comment