semantic-dom-selectors -----> ember-semantic-test-helpers
| |
| |
| |
qunit-semantic-assertions ------
|
|
|
qunit-dom
This file contains hidden or 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
async install(repo){ | |
this.github = await User.githubClient(this.user.id); | |
repo = await this.saveRepo(repo); | |
await this.savePullRequests(repo); | |
await this.ensureInstallerIsMember(repo); | |
return this.saveLabels(repo); | |
} | |
install(repo){ |
This file contains hidden or 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
class BaseClass { | |
static baseMethod () { console.log("Hello from baseMethod"); } | |
} | |
class MyClass extends BaseClass { | |
constructor(props) { | |
super(props); | |
} | |
static Woo () { |
This file contains hidden or 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 Helper from 'ember-helper'; | |
export default Helper.extend({ | |
compute(params, hash, options) { | |
let isBlock = !!options.template.yield; | |
// when used as a block | |
if (isBlock) { | |
options.template.yield(params); | |
} |
This file contains hidden or 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
[ { id: '45', title: '2359: The Haunting Hour' }, | |
{ id: '18', title: '23:59 The Haunting Hour' }, | |
{ id: '30', title: 'Along With The Gods 2' }, | |
{ id: '2', title: 'Along With The Gods: The Last 49 Days' }, | |
{ id: '5', title: 'Alpha' }, | |
{ id: '37', title: 'Alpha' }, | |
{ id: '41', title: 'Ant-Man And The Wasp' }, | |
{ id: '1', title: 'Big Brother' }, | |
{ id: '29', title: 'Big Brother' }, | |
{ id: '59', title: 'Burning' }, |
I hereby claim:
- I am billybonks on github.
- I am billybonks (https://keybase.io/billybonks) on keybase.
- I have a public key ASBQyTP5ChMX-ua3K_6f3raDpKZGpnnFiTzH6YtTJ3iFEgo
To claim this, I am signing this object:
We want to build a MVP of a battleships grid. If you have not played battleships here is an example http://en.battleship-game.org/
The application should have 3 routes.
- A home page where i can choose to either enter:
placement test
route, ortest game
route.
Placement test route
- When i enter the
placement test
route it should automatically place the Ships.
Build an application that consumes/accepts a CSV (Comma Separated Values) file of N-Rows. Each Row is comprised of:
- object_id: is a unique identifier for a specific object.
- object_type: denotes the object type.
- timestamp: needs no explanation
- object_changes: serialized json comprised of properties that changed at timestamp, and their accompanying values.
Here's an example CSV:
object_id,object_type,timestamp,object_changes
This file contains hidden or 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
for f in **/*.ts; do | |
mv -- "$f" "${f%.ts}.js" | |
done | |
for f in **/*.js; do | |
mv -- "$f" "${f%.js}.ts" | |
done |