View thirds.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* building; | |
* cl.exe thirds.cpp /std:c++17 /EHsc /Zi /Ox /link /subsystem:windows | |
* | |
* using; | |
* Win-Ctrl-A : [-1/3-:-1/3-:-1/3-] | |
* Win-Ctrl-Z : [-1/3-:----2/3----] + fat middle | |
* Win-Ctrl-W : toggles between top/bottom halves of column from 'A' | |
*/ |
View pdbdump.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------------------------------------ | |
// pdbdump.c - dump symbols from .pdb and executable files (public domain). | |
// - to compile; cl.exe /Ox /Zi pdbdump.c | |
// - | |
// - Martin Ridgers, pdbdump 'at' fireproofgravy.co.uk | |
//------------------------------------------------------------------------------ | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <DbgHelp.h> |
View mandel.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
set r=set /a | |
for /l %%y in (-16,1,16) do ( | |
set l= | |
for /l %%x in (-57,1,21) do ( | |
set u=0 | |
set v=0 | |
set "j=M.-+l$?+*:="'~-. " | |
for /l %%i in (0,1,15) do ( |