Skip to content

Instantly share code, notes, and snippets.

View pktiuk's full-sized avatar

Paweł Kotiuk pktiuk

View GitHub Profile
@pktiuk
pktiuk / gist:19069866b8f4cd0f57f94ad90ba75e98
Last active May 16, 2026 17:15
Asus Rog Flow - steam system info
Computer Information:
Manufacturer: ASUSTeK COMPUTER INC.
Model: GV301RE
Form Factor: Laptop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen 7 6800HS with Radeon Graphics
CPU Family: 0x19
CPU Model: 0x44
@pktiuk
pktiuk / CMakeLists.txt
Last active February 8, 2021 22:17
C++ used in python using Boost and CMake
cmake_minimum_required(VERSION 3.5)
project(cpp_to_pyt_bindings)
# Find python and Boost - both are required dependencies
find_package(PythonLibs 3.5 REQUIRED)
find_package(Boost COMPONENTS python REQUIRED)
# Without this, any build libraries automatically have names "lib{x}.so"
set(CMAKE_SHARED_MODULE_PREFIX "")