Skip to content

Instantly share code, notes, and snippets.

View lainshiHenry's full-sized avatar

Henry Le lainshiHenry

  • Ceridian HCM Inc.
  • Winnipeg, Manitoba, Canada
View GitHub Profile
@lainshiHenry
lainshiHenry / index.html
Last active June 1, 2018 02:24
Restaurant Idle Game
<div id="playerInfo">
<div>Name: <span id="playerName"></span></div>
<div>Money: <span id="playerMoney"></span></div>
<div>Inventory: <span id="playerInventory"></span></div>
<div>Recipe: <span id="recipeList"></span></div>
</div>
<div>
<button id="buyMilk">Buy Milk</button>
<button id="sellMilk">Sell Milk</button>
</div>
@lainshiHenry
lainshiHenry / index.html
Created January 3, 2018 04:57
Percentage Change Calculator
<div id="container">
<div id="header" class="jumbotron">
<h1>Percentage Change Calculator</h1>
</div>
<div class="form-group">
<label for="val1">Value 1: </label>
<input id="val1" value="1" class="form-control">
</div>
<div class="form-group">
<label for="val2">Value 2: </label>
@lainshiHenry
lainshiHenry / index.html
Created December 20, 2017 21:18
Recipe Database
<div id="output"></div>
@lainshiHenry
lainshiHenry / index.html
Last active December 20, 2017 06:56
Mining Pool API
<div id="inputContainer">
<h1>Mining Pool Wallet Checker</h1>
<form>
<label>Cryptocurrency:</label>
<select name="currency" form="currency" id="currency">
<option value="eth">ETH</option>
<option value="zec">ZEC</option>
</select><br>
<label>Mining Pool:</label>
<select name="miningPool" form="miningPool" id="miningPool">
@lainshiHenry
lainshiHenry / index.html
Last active October 26, 2017 08:20
Mining Pool API
<div id="inputContainer">
<label>ZEC Wallet Address</label>
<input id="addr"></input>
<button id="loadDataBtn">Load Data</button>
</div>
<div id="outputContainer">
Please check the Console for the output
</div>