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:
| 10 REM CALENDAR.BAS - LAST EDITTED 31/01/82 | |
| 20 REM Dr Dobbs Nov 1981 p61 | |
| 30 REM This program inputs a month and year and | |
| 40 REM from that prints the current months calendar. | |
| 50 REM | |
| 60 DEFINT A-Y | |
| 70 DEFSTR Z | |
| 80 INPUT "Month";M | |
| 90 INPUT "Year";Y | |
| 100 IF Y<1900 OR Y > 2099 THEN PRINT "Between 1900 and 2099 please!" : GOTO 80 |
| #!/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); |