Skip to content

Instantly share code, notes, and snippets.

View bisqwit's full-sized avatar

Joel Yliluoma bisqwit

View GitHub Profile
/**
* Mandelbrot fractal portable SIMD calculation core
* Copyright (c) 2017 Joel Yliluoma (http://iki.fi/bisqwit/)
*/
#include <array>
#include <cmath>
/*
* SIMDMandelCalculator template:
*
* T is the underlying (real) numeric type, with which the calculations
@bisqwit
bisqwit / blocksetting.hh
Last active August 29, 2015 14:01
Scoped temporary values
/**
*
* Block-local temporaries
*
* Copyright (C) 2006,2014 Bisqwit (http://iki.fi/bisqwit/)
*
* Example use:
* bool in_critical_context = false;
*
* void example()
@bisqwit
bisqwit / vbsp_bisqwit.cc
Last active June 24, 2018 14:44
Rewriting vbsp_styles (Portal 2 Puzzlemaker BEE2)
/* TO COMPILE:
*
i686-w64-mingw32-g++.exe -o vbsp_bisqwit.exe vbsp_bisqwit.cc -Wall -Wextra -pedantic -Ofast -static -flto -s -std=gnu++1y -fopenmp
OR:
x86_64-w64-mingw32-g++.exe -o vbsp_bisqwit.exe vbsp_bisqwit.cc -Wall -Wextra -pedantic -Ofast -static -flto -s -std=gnu++1y -fopenmp
OR
@bisqwit
bisqwit / sparc64.cc
Created March 5, 2014 18:45
Sparc64 emulator WIP (from 2011)
#include <stdint.h>
#include <stdio.h>
#include <cstring>
#include <string>
#include <map>
#include <vector>
#include <cmath>
@bisqwit
bisqwit / Portal 2 map merger
Last active August 29, 2015 13:56
Portal 2 Puzzlemaker Map Merger. It combines two maps into one map. You will need the PHP interpreter commandline version to run it (/usr/bin/php).
<?php
/* PORTAL 2 PUZZLEMAKER MAP MERGER - VERSION 1.0.0 (2014-02-20)
* COPYRIGHT (C) 2013,2014 Joel Yliluoma - http://iki.fi/bisqwit/
* Source code license: MIT
*/
/* PUT YOUR SETTINGS HERE: */
// Filenames for the input and output maps