Skip to content

Instantly share code, notes, and snippets.

View doomed-phobos's full-sized avatar

doomed-phobos

View GitHub Profile
@doomed-phobos
doomed-phobos / addcuboid.cc
Last active March 3, 2024 16:59
Explaining THE ALGORITHM in the Bisqwit's video about OpenGL
/// Sorry my bad english Dx
/// Original Source: https://www.youtube.com/watch?v=SktXhGElf7w
///
/// God bless Bisqwit
#include <SFML/Graphics.hpp>
#include <SFML/OpenGL.hpp>
#include <cmath>
#include <array>
@doomed-phobos
doomed-phobos / glob_and_copy.cpp
Created February 21, 2022 19:07
Search recursive following a pattern extension.
/* ================
* Glob and Copy
* ================
* «» Add this in manifest file for disable maximum path length limitation:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0">
<application>
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>