Skip to content

Instantly share code, notes, and snippets.

@htfy96
htfy96 / cpp-build-profile-2024.md
Last active November 8, 2024 18:30
C++ Build profiles for 2024 projects

C++ Build profiles for 2024 projects

Standard development profile

This profile achieves 50% - 80% release profile performance, while also provides a reasonable amount of safety checks and debugging support. This should also be the profile for your CI build.

Compilation flags

-Og -Wall -Wextra -D_FORTIFY_SOURCE=2 -fstack-protector-strong -g -D_GLIBCXX_ASSERTIONS
@Gemba
Gemba / # AppleWin libretro INSTALL.md
Last active October 28, 2024 05:02
Applewin libretro scriptmodule for RetroPie

INSTALLATION

On RetroPie shell as user pi:

cd RetroPie-Setup
mkdir -p ext/local/scriptmodules/libretrocores/lr-applewin
pushd ext/local/scriptmodules/libretrocores
wget -O lr-applewin.sh https://gist.githubusercontent.com/Gemba/9dff49492c3ad1d2d3fbb15bfb3ebc4a/raw/2d4edce7744be1fb1f610a52441b752a4f6f9931/lr-applewin.sh
popd
@gtors
gtors / gist:effe8eef7dbe7052b22a009f3c7fc434
Created December 10, 2018 12:57
Makefile -> compilation_commands.json
@paolocarrasco
paolocarrasco / README.md
Last active March 21, 2025 15:19
How to understand the `gpg failed to sign the data` problem in git

Problem

You have installed GPG, then tried to commit and suddenly you see this error message after it:

error: gpg failed to sign the data
fatal: failed to write commit object

Debug

@plentz
plentz / nginx.conf
Last active March 28, 2025 17:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048