Skip to content

Instantly share code, notes, and snippets.

View norbekaiser's full-sized avatar

Norbert L. Ruehl norbekaiser

View GitHub Profile
@norbekaiser
norbekaiser / boot_sector.asm
Last active August 29, 2015 14:27
minimalistic x86 bootsector , creating a 0 filled file with the magic <55><aa>
jmp $
times 508 db 0
dw 0xaa55
@norbekaiser
norbekaiser / preprocessor_fun.h
Last active August 29, 2015 14:27 — forked from aras-p/preprocessor_fun.h
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
@norbekaiser
norbekaiser / mathproblem.cpp
Created August 8, 2015 07:41
seems it cannot be solved with a pair of 3 numbers from this pool, however, trying more iterations might work
#include <iostream>
#include <stdlib.h>
int start=1;
int steps=2;
int max_value=15;
int main(){