Skip to content

Instantly share code, notes, and snippets.

@mattduffield
mattduffield / designer.html
Last active August 29, 2015 14:23
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
The Twitter User Research team would like to invite you to participate in an upcoming research study! We are interested in speaking with mobile game developers to discuss how you work today. This interview will take place remotely or at Twitter's Boston office if you prefer. As our way of saying thanks for your time, we will pay you $250.
Details of the study:
* The study will take place between July 13th-July 24th (you can select the day and time)
* The study will be conducted remotely, or at Twitter Boston if you prefer
* The duration of the study will be approximately 60 minutes
* You'll receive $250 as a token of our appreciation for participation in the study
To participate, you will need to:
* Be at least 18 years old
@mattduffield
mattduffield / gist:676ba9fa69ade880544c
Last active August 29, 2015 14:24
How to monetize your mobile games
42 Strategies for Monetizing Mobile Games
http://blog.soom.la/2013/07/42-ways-to-monetize-your-mobile-game.html
http://www.mobilecommercepress.com/video-ads-mobile-gaming-apps-benefit-developers-gamers/8515368/
http://blogs.unity3d.com/2015/02/02/ads-monetization-overview/
http://www.gartner.com/newsroom/id/2648515
http://forum.unity3d.com/threads/how-much-money-do-you-earn-from-your-games.271820/
http://www.howtomakemobilegames.com/post/video-making-more-money-with-bigger-games-a-look-at-you-escape-sometimes-2-downloads-7251248?pid=1285798173#post1285798173
http://www.quora.com/How-much-money-does-the-average-mobile-game-make
@mattduffield
mattduffield / app.html
Last active September 28, 2017 05:53 — forked from jdanyow/app.html
Aurelia Gist - Tree
<template>
<require from="./tree"></require>
<require from="./context-menu"></require>
<h1>${message}</h1>
<tree items.bind="items"></tree>
<context-menu></context-menu>
@mattduffield
mattduffield / app.html
Last active October 7, 2016 17:33
Aurelia Gist - getViewStrategy
<template>
<h1>${title}</h1>
<compose view-model="dynamic"></compose>
</template>
@mattduffield
mattduffield / app.html
Last active October 7, 2016 17:48
Aurelia Gist - getViewStrategy - ViewService (simple)
<template>
<h1>${title}</h1>
<compose view-model="dynamic"></compose>
</template>
@mattduffield
mattduffield / app.html
Last active October 7, 2016 18:26
Aurelia Gist - getViewStrategy - ViewService (databinding)
<template>
<h1>${title}</h1>
<compose view-model="dynamic"></compose>
</template>
@mattduffield
mattduffield / app.html
Last active February 22, 2018 10:31
Aurelia Gist - Custom Element - Slot
<template>
<require from='bs-panel'></require>
<h1>${title}</h1>
<bs-panel header="My Discourse">
<p>Four score and seven years ago...</p>
</bs-panel>
</template>
@mattduffield
mattduffield / app.html
Last active October 9, 2016 04:33
Aurelia Gist - CreateJS
<template>
<canvas id="demoCanvas" width="500" height="300"></canvas>
</template>
@mattduffield
mattduffield / app.html
Last active October 10, 2016 17:17
Aurelia Gist - Referencing Functions
<template>
<require from='save-button'></require>
<h1>${title}</h1>
<save-button save-func.call="performSave()"></save-button>
</template>