Skip to content

Instantly share code, notes, and snippets.

View fxoz's full-sized avatar
🟡
Busy

Felix Orosz fxoz

🟡
Busy
View GitHub Profile
@fxoz
fxoz / quiz.cpp
Created August 4, 2025 22:25
WiSe 2023-24 - Aufg. 4 (Quiz)
#include <fstream>
#include <iostream>
#include <vector>
#include <iomanip>
#include <sstream>
#include <string>
class Frage {
public:
std::string _frage;
@fxoz
fxoz / curl-pia-proxy.md
Last active July 12, 2025 21:18
cURL with Private Internet Access SOCKS5 proxy
@fxoz
fxoz / SFML-CMakeLists.txt
Last active April 21, 2025 14:32
My CMake configuration for SFML 2D/3D development in C++ on Windows
set(SFML_TARGETS sfml-graphics sfml-window sfml-system sfml-audio sfml-network)
cmake_minimum_required(VERSION 3.15)
project(MyNewGame CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
set(GIT_EXECUTABLE "C:/Program Files/Git/bin/git.exe")
include(FetchContent)