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: 12/12/2024
#This is for: 211500 (ACC), if you are installing for another game use that game ID
#If not raceroom, find game id with bellow command:
grep name ~/.steam/steam/steamapps/appmanifest_*
------------
Install protontricks and winetricks on your distro.
Install dotnet48 into the game vessel. 211500(raceroom) in this example, to install dotnet48:
-> All commands are as normal user (never root)
@gubatron
gubatron / compiling_building_c_cpp_notes.md
Last active April 15, 2025 16:19
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>