Skip to content

Instantly share code, notes, and snippets.

View feer9's full-sized avatar
🏠
Working from home

Fernando feer9

🏠
Working from home
  • Buenos Aires, Argentina
View GitHub Profile
#Tutorial Date: 01/Mar/2026
Nothing needs to be run as root, never.
Best way ATM seems to be install per game.
Preparation:
Download Crewchief.msi
Install wine, winetricks and protontricks on your distro!
Get your gameid:
slemke@games:~> grep name ~/.steam/steam/steamapps/appmanifest_* |grep -v 'Steam\|Proton'
@gubatron
gubatron / compiling_building_c_cpp_notes.md
Last active February 23, 2026 01:00
Things to remember when compiling and linking C/C++ programs

Things to remember when compiling/linking C/C++ software

by Angel Leon. March 17, 2015;

Last update on December 14, 2023

Updated on February 27, 2023

Updated August 29, 2019.

@azadkuh
azadkuh / qt-unix-signals.md
Last active November 8, 2024 15:28
Catch Unix signals in Qt applications

Unix signals in Qt applications

It's quite easy to catch unix signals in Qt applications. you may like to ignore or accept them.

#include <QCoreApplication>

#include <initializer_list>
#include <signal.h>
#include <unistd.h>