npx create-react-app tw-app
npx tailwindcss init --full
# First, decide which version of aerospike [community, federal, and enterprise] you want to use, | |
# and which linux + computer architecture you will be running- this code is meant to run on Debian 12 on x86 machines. | |
# Check here to browse aerospike package versions: https://download.aerospike.com/artifacts/ | |
# 1) Get the aerospike tools package | |
wget -O aerospike-tools.tgz https://download.aerospike.com/artifacts/aerospike-server-community/latest/aerospike-server-community_6.4.0.2_tools-9.0.0_debian12_x86_64.tgz | |
## TODO - verify the file downloaded properly | |
# 2) Open the compressed tar file |
import './App.css'; | |
import { useEffect } from 'react'; | |
import { | |
Program, | |
Provider, | |
BN, | |
web3, | |
} from '@project-serum/anchor' | |
import { | |
Connection, |
Use the Star Wars API to generate a list of the films that a particular character appears in.
Submit an application that accomplishes the objectives below. Hosting is up to you, we only need a link to a working deployment of your project, and a link to your source code. We reccomend js bin and Plunker for free, all-in-one solutions.
// Copied from: https://ethfiddle.com/09YbyJRfiI | |
// CryptoKitties Source code | |
// Copied from: https://etherscan.io/address/0x06012c8cf97bead5deae237070f9587f8e7a266d#code | |
pragma solidity ^0.4.11; | |
/** | |
* @title Ownable | |
* @dev The Ownable contract has an owner address, and provides basic authorization control |
language: node_js | |
node_js: | |
- "8.2.1" | |
install: | |
- npm install newman | |
before_script: | |
- node --version | |
- npm --version |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
Use the Star Wars API to generate a list of the films that a particular character appears in.
Submit an application that accomplishes the objectives below. Hosting is up to you, we only need a link to a working deployment of your project, and a link to your source code. We reccomend js bin, Plunker, and StackBlitz for free, all-in-one solutions.
Alternatively, use github, gitlab, or bitbucket for source control, and a real hosting service such as AWS, Google Cloud, Digital Ocean, or Heroku. Bonus points for continuous integration and deployment
This is the content from the original Phaser cheatsheet, the site of which went down. I'm editing outdated information as I come across it.
Reference: http://docs.phaser.io/Phaser.Game.html#Game
var game = new Phaser.Game(width, height, renderer, "parent");
//All parameters are optional but you usually want to set width and height
//Remember that the game object inherits many properties and methods!