I hereby claim:
- I am doctorlai on github.
- I am justyyuk (https://keybase.io/justyyuk) on keybase.
- I have a public key ASBfqWrhnsHDAgiuEH4V8Z0ZjoqekYiFdMGP4XkyjYUJ4Qo
To claim this, I am signing this object:
| #!/bin/bash | |
| set -xe | |
| repos=( | |
| "steemfans/pricefeed:latest" | |
| "steemfans/authsteem:edge" | |
| "steemfans/authsteem:latest" | |
| "steemfans/steem-dev-tools:latest" | |
| "steemfans/steem-conductor:latest" |
I hereby claim:
To claim this, I am signing this object:
| // Author: Huahua (https://www.youtube.com/user/xxfflower) | |
| // p5 web editor: https://editor.p5js.org | |
| var rows = 25; | |
| var cols = 25; | |
| var a = 20; | |
| var s; | |
| var f; | |
| function Snake() { | |
| this.x = 12; |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
| // Bresenham3D | |
| // | |
| // A slightly modified version of the source found at | |
| // http://www.ict.griffith.edu.au/anthony/info/graphics/bresenham.procs | |
| // Provided by Anthony Thyssen, though he does not take credit for the original implementation | |
| // | |
| // It is highly likely that the original Author was Bob Pendelton, as referenced here | |
| // | |
| // ftp://ftp.isc.org/pub/usenet/comp.sources.unix/volume26/line3d | |
| // |
| using System; | |
| using System.ComponentModel; | |
| using System.Runtime.InteropServices; | |
| namespace ComWithoutRegisteringExample | |
| { | |
| internal static class ComHelper | |
| { | |
| private delegate int DllGetClassObject(ref Guid clsid, ref Guid iid, [Out, MarshalAs(UnmanagedType.Interface)] out IClassFactory classFactory); |