This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title": "1,000,000 Views!!", | |
"prompt": "Blog Post: Normally when i post a big number like that its followed by the word \"particles\" but surprisingly this time it followed by the word \"views\". Why? Well i have (probably a few days ago now) broken my 1 million plays cherry on 4 flash games.\n\nTo be fair the majority of these have come from my latest game IcySlicy (670k and counting), but im still pretty proud of the number. Im hoping my next game will do over a million by itself, but then again it could just get two plays :P\n\nKeywords: ", | |
"tags": [ | |
"icy slicy free", | |
"icy slicy online", | |
"icy slicy play", | |
"icy slicy puzzle", | |
"icy slicy puzzle game", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BraventCounter, Events } from "./BraventCounter"; | |
import { AnyEvent } from "bravent"; | |
it("updates to the correct state when commands are issued", () => { | |
let counter = BraventCounter.of([]); | |
expect(counter.state()).toBe(0); | |
counter = counter.dispatch({ type: "increment" }); | |
counter = counter.dispatch({ type: "increment" }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
commitId: { | |
type: String, | |
required: true, | |
index: { | |
global: true, | |
name: commitIdIndexName, | |
project: true | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using RSG; | |
using UniRx; | |
namespace PromiseReactiveCommand | |
{ | |
public interface IBasePromiseReactiveCommand | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { MarkdSiteRoot } from "../../MarkdSiteRoot"; | |
import { Signup } from "../../signup/Signup"; | |
import { Homepage } from "../../homepage/Homepage"; | |
import { Router, Route, Link, IndexRoute, browserHistory } from 'react-router'; | |
import * as React from "react"; | |
import * as ReactDOM from "react-dom"; | |
import { FirebaseUsersService } from "../services/UsersService"; | |
import { AggregateLogger, ConsoleLogger } from "../helpers/logging/Logging"; | |
var logger = new AggregateLogger(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// --- AutoWire --- | |
// Service Locator pattern is inferior to DI, but that is what we are stuck with in Unity, so lets make our life easier | |
// | |
// Notes: | |
// 1) any persistent state should be a component or belong to a component (no models, services in thin air) | |
// | |
public class Enemy : AutoWire | |
{ | |
[Locate] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_4_6 | |
// Import extisting border | |
foreach(var existing in importer.spritesheet) | |
if(existing.name==smd.name) | |
smd.border = existing.border; | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BaseMediator<TView> : Mediator | |
{ | |
[Inject] | |
public TView View { get; set; } | |
protected List<SignalBinding> signalBindings = new List<SignalBinding>(); | |
override public void OnRegister() | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package content.views.main; | |
import base.BaseView; | |
import content.views.common.DivView; | |
import content.views.foreground.ForegroundView; | |
import js.JQuery; | |
import js.Lib; | |
import js.Dom; | |
import hsl.haxe.Signaler; | |
import hsl.haxe.DirectSignaler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package base; | |
import js.Dom; | |
import js.JQuery; | |
import robothaxe.core.IViewContainer; | |
/** | |
* ... | |
* @author | |
*/ |
NewerOlder