By Richard 'Jodi' Maxwell 2018-04-05
-
You are a writer, not a programmer.
-
Your code is read by:
- People
-
Tools
I hereby claim:
To claim this, I am signing this object:
By Richard Maxwell
I wrote this because all the OpenGL and DirectX tutorials on the net and stackoverflow are all confusing and needlessly complicated. Conflating row and column matrices with matrix storage in computer memory, pre and post multiplication, right hand and left hand coordinates, and unexplained mathematical shortcuts and reader assumptions. It means it's hard to get anything right first time. So I wrote this document while I figured it all out myself, so that I could have a reference for myself later.
#!/usr/bin/python2 | |
# | |
# gdbBacktraceToJson.py. Parses gdb backtraces into json. | |
# Copyright (C) 2014 Richard Maxwell <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# |
#!/usr/bin/python2 | |
""" | |
sqlTablesToCsClasses.py Turns sql table creation text dumps into sqlite-net CSharp classes. | |
Copyright (C) 2013 Richard Maxwell <[email protected]> | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. |
<!DOCTYPE html> | |
<?php | |
/* | |
CsvToHtml5Table - Coverts a CSV file to a HTML5 table | |
Copyright (C) 2013 Richard Maxwell | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU Affero General Public License as | |
published by the Free Software Foundation, either version 3 of the | |
License, or (at your option) any later version. |