I hereby claim:
- I am wilbo on github.
- I am wilberts (https://keybase.io/wilberts) on keybase.
- I have a public key ASDuiPMpVsC5MTWKG_OWQkiUFwqN1rMK7XXCvzEjpo7qwAo
To claim this, I am signing this object:
deliver | |
fastlane finished with errors | |
bundler: failed to load command: fastlane (/Users/[username]/.gems/bin/fastlane) | |
Traceback (most recent call last): | |
53: from /usr/local/opt/[email protected]/bin/bundle:23:in `<main>' | |
52: from /usr/local/opt/[email protected]/bin/bundle:23:in `load' | |
51: from /usr/local/Cellar/[email protected]/2.7.2/lib/ruby/gems/2.7.0/gems/bundler-2.2.14/exe/bundle:37:in `<top (required)>' | |
50: from /usr/local/lib/ruby/site_ruby/2.7.0/bundler/friendly_errors.rb:130:in `with_friendly_errors' | |
49: from /usr/local/Cellar/[email protected]/2.7.2/lib/ruby/gems/2.7.0/gems/bundler-2.2.14/exe/bundle:49:in `block in <top (required)>' |
I hereby claim:
To claim this, I am signing this object:
import Vector2D from './Vector2D' | |
class Matrix2D { | |
private _matrix: number[][] | |
constructor(value?: number[][] | Vector2D) { | |
if (typeof value === 'undefined') { | |
this._matrix = Matrix2D.identity | |
} else if (value instanceof Vector2D) { | |
this._matrix = Matrix2D.identity |
public class Node | |
{ | |
public int Value; | |
public Node Left = null; | |
public Node Right = null; | |
public Node(int value) | |
{ | |
Value = value; | |
} |
/* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript */ | |
/** | |
* okaidia theme for JavaScript, CSS and HTML | |
* Loosely based on Monokai textmate theme by http://www.monokai.nl/ | |
* @author ocodia | |
*/ | |
code[class*="language-"], | |
pre[class*="language-"] { | |
color: #f8f8f2; |