##Preview
Display your iOS App Rating info. It uses iTunes Store website as the source.
##Usage
| import React, { Component } from 'react'; | |
| import TextField from 'components/base/TextField'; | |
| const WAIT_INTERVAL = 1000; | |
| const ENTER_KEY = 13; | |
| export default class TextSearch extends Component { | |
| constructor(props) { | |
| super(); |
| #!/bin/bash | |
| # Functions ============================================== | |
| # return 1 if global command line program installed, else 0 | |
| # example | |
| # echo "node: $(program_is_installed node)" | |
| function program_is_installed { | |
| # set to 1 initially | |
| local return_=1 |
| package main | |
| import ( | |
| "net/http" | |
| "database/sql" | |
| "fmt" | |
| "log" | |
| "os" | |
| ) |
##Preview
Display your iOS App Rating info. It uses iTunes Store website as the source.
##Usage
| function Player(id, name) { | |
| this.id = id; | |
| this.name = name; | |
| this.hp = 100; | |
| return this; | |
| } | |
| Player.prototype.attack = function(type) | |
| { | |
| gameLogic.attack(this, type); |
| // rAF polyfill based on https://gist.github.com/1579671 | |
| (function(w) { | |
| "use strict"; | |
| // Find vendor prefix, if any | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; | |
| for( var i = 0; i < vendors.length && !w.requestAnimationFrame; i++ ) { | |
| w.requestAnimationFrame = w[vendors[i]+'RequestAnimationFrame']; | |
| } |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |