I hereby claim:
- I am kylekellogg on github.
- I am kylekellogg (https://keybase.io/kylekellogg) on keybase.
- I have a public key ASDaVLflDDxNuh2aKbmWlQlBRNA1oSs7qdPbUhEOwipaYAo
To claim this, I am signing this object:
package com.company; | |
import java.util.Random; | |
public class Box { | |
private int size; | |
private int boxPrice = 5; | |
public static Item[] items; | |
Random itempick; | |
BoxOpener b = new BoxOpener(); |
package com.kylekellogg.kristest; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.os.Message; | |
import android.support.v7.app.AppCompatActivity; | |
import android.view.View; | |
import android.widget.TextView; | |
import java.lang.ref.WeakReference; |
07-12 11:37:08.235 19716-19778/? W/Unity: The referenced script on this Behaviour (Game Object 'UIBokehParticle') is missing! | |
(Filename: Line: 1655) | |
07-12 11:37:08.236 19716-19778/? W/Unity: The referenced script on this Behaviour (Game Object 'UIBokehParticle') is missing! | |
(Filename: Line: 1655) | |
07-12 11:37:08.251 19716-19778/? W/Unity: The referenced script on this Behaviour (Game Object 'UIBokehParticleColor2') is missing! | |
(Filename: Line: 1655) | |
07-12 11:37:08.261 19716-19778/? W/Unity: The referenced script on this Behaviour (Game Object 'UIBokehGroup') is missing! |
import React from 'react' | |
/* | |
This will happily pass your tests (via TestUtils), but will not work when | |
implemented in a real-world scenario (via browserify & babelify with es2015 | |
and react presets, for example) | |
*/ | |
export class CheckboxWithLabel extends React.Component { | |
constructor (props) { | |
super(props) |
This is for the itch.io game made for PMGJ of March 2015
For the theme, "With Our Powers Combined", we created a tabletop card game. Here's the tl;dr version:
A group of wizards band together to clear a cave system of it's elemental monster
inhabitants. While not powerful enough individually, they are able to join their
spells together to overcome the great difficulties facing them.
(by @andrestaltz)
So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
#!/usr/bin/env bash | |
for /r %%i in (*) do ( | |
pushd "%%i" | |
for /f in (dir /b * 2^>nul) do ( | |
# Something similar to the above using this below sed command | |
if [[ -f $file ]] | |
then | |
#sed "s/$//" | |
echo "Converting $file" |