Skip to content

Instantly share code, notes, and snippets.

View gale93's full-sized avatar
💭
Open to contribute to any cool project. Just mail me :)

Matteo Galeotti gale93

💭
Open to contribute to any cool project. Just mail me :)
View GitHub Profile
@gale93
gale93 / premake5.lua
Last active April 5, 2023 12:43
SFML's premake5 build script
workspace "sfml_project"
configurations { "Debug", "Release" }
location "build"
project "sfml_project"
kind "ConsoleApp"
language "C++"
targetdir "bin/%{cfg.buildcfg}"
files { "src/**.*" }
@gale93
gale93 / TextNormalizerFPDF.php
Created July 9, 2018 10:31
FPDF - Script for special characters
<?php
require('fpdf.php');
class TextNormalizerFPDF extends FPDF
{
function __construct()
{
parent::__construct();
}