I hereby claim:
- I am brianium on github.
- I am scaturr (https://keybase.io/scaturr) on keybase.
- I have a public key whose fingerprint is E2A3 8685 A6BD F6A5 2D51 33A5 B242 F6DB 4E9C F051
To claim this, I am signing this object:
import "time" | |
type Interval struct { | |
Start Time | |
End Time | |
} | |
func NewInterval(start string, end string) Interval { | |
startTime, err := time.Parse(time.RFC3339, start) |
function Entity() { | |
} | |
Entity.prototype.entityThing = function() { | |
console.log("entity thing"); | |
}; | |
function NPC(name) { | |
Entity.call(this); | |
this.name = name; |
I hereby claim:
To claim this, I am signing this object:
var koa = require('koa'); | |
var app = koa(); | |
var json = require('koa-json'); | |
app.use(json()); | |
app.use(function* (next) { | |
if (this.method != 'GET') return yield next; | |
if (!/x-men/.test(this.originalUrl)) return yield next; |
<?hh | |
type SomeResult = shape('property' => int); | |
function doIoBoundThing(): void { | |
$nums = array( | |
100000000, | |
1000000000, | |
); | |
foreach ($nums as $num) { | |
$i = 0; |
<?hh //strict | |
namespace HackUnit\Runner; | |
class Options | |
{ | |
protected ?string $testPath; | |
public function setTestPath(string $testPath): this | |
{ | |
$this->testPath = $testPath; |
<?hh //partial | |
class TestResult { | |
public function __construct(public string $message) | |
{ | |
} | |
} | |
class TestCase { |
void Main() | |
{ | |
var mod = new Mod10("600649179422170350"); | |
var digit = mod.CheckDigit; //2 | |
var activationNumber = mod.ActivationCardNumber; //6006491794221703502 | |
} | |
public class Mod10 | |
{ | |
private string _serialNumber; |
##Issues, Problems, Impediments
##Possible Ways To Improve
##Issues, Problems, Impediments
##Possible Ways To Improve