I hereby claim:
- I am kdbanman on github.
- I am kdbanman (https://keybase.io/kdbanman) on keybase.
- I have a public key ASBOkmNg9ku5QzJV3vbvz8v-gdthnyxSpwZUKwS-neciNwo
To claim this, I am signing this object:
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect0/forward.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect0/gasstati.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/11.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/12.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/13a.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/13b.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/13c.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/13d.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/14.pdf | |
https://assets.sia.toyota.com/publications/en/om/OM35679U/pdf/omsource/1996om/964runom/sect1/15.pdf |
abbreviated wireworm | Hypnoidus abbreviatus | |
acacia psyllid | Acizzia uncatoides | |
achemon sphinx | Eumorpha achemon | |
acuminate scale | Kilifia acuminata | |
acute-angled fungus beetle | Cryptophagus acutangulus |
def greet(name): | |
print("Hello, " + name) |
I hereby claim:
To claim this, I am signing this object:
CREATE TABLE t1 (id, count_1) | |
AS | |
VALUES | |
(1,9), | |
(2,4), | |
(3,3); | |
CREATE TABLE t2 (id, count_2) | |
AS | |
VALUES |
# Copyright 2017 Kirby Banman | |
# | |
# Licensed MIT: | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
Versions: | |
``` | |
$ jekyll -v | |
jekyll 3.0.4 | |
$ bundle -v | |
Bundler version 1.11.2 | |
$ ruby --version | |
ruby 2.1.7p400 (2015-08-18 revision 51632) [x86_64-linux] | |
``` |
var $ = require('jquery'); | |
var Logger = require('polyball/shared/Logger'); | |
var Physics = require('physicsjs'); | |
var Model = require('polyball/shared/Model'); | |
var Comms = require('polyball/client/Comms'); | |
$(document).ready(function() { | |
var model = new Model(); |
// So you want to use anonymous interface implementations in C#? Does this lambda-based usage look ok? | |
// Ignore the fact that "list" and "projection" are undefined here, just note the lambdas that can close | |
// around any variables and procedures you want. | |
new AnonymousReadOnlyList<TOut>( | |
count: () => list.Count, | |
item: i => projection(list[i]), | |
iterator: list.AsEnumerable().Select(projection)); | |
new AnonymousReadOnlyList<TOut>( |