Skip to content

Instantly share code, notes, and snippets.

View wilbo's full-sized avatar
👨‍💻
Centering divs

Wilbert Schepenaar wilbo

👨‍💻
Centering divs
View GitHub Profile
@wilbo
wilbo / error.log
Created May 20, 2021 12:02
Fastlane deliver error: The provided entity includes a relationship with an invalid value - You cannot create a new version of the App in the current state.
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)>'

Keybase proof

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:

@wilbo
wilbo / Matrix2D.ts
Created March 8, 2018 12:29
A Matrix and Vector class in TypeScript
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
@wilbo
wilbo / Traversals.cs
Last active October 28, 2017 10:33
Tree traversals
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;