Skip to content

Instantly share code, notes, and snippets.

View max-berman's full-sized avatar

Max Berman max-berman

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="test4Fresh" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
@max-berman
max-berman / index.html
Created August 13, 2014 10:24
Guest Book Guest book leveraging local storage // source http://jsbin.com/winici/1
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Guest book leveraging local storage" />
<link rel="stylesheet" type="text/css" href="styles/style.css" >
<link rel="shortcut icon" href="favicon.ico" />
<title>Guest Book</title>
<style id="jsbin-css">
@max-berman
max-berman / index.html
Created October 20, 2014 08:44
AjaxTest-_underscoreTemplating // source http://jsbin.com/tuwos
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="AjaxTest-_underscoreTemplating" />
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
<!DOCTYPE html>
<html>
<head>
<link href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script>
<meta name="description" content="tets" />
<!DOCTYPE html>
<html>
<head>
<link href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script>
<meta name="description" content="tets" />
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
body {
margin:0;
padding:0;
function UnlinkRequest ({
custom,
device,
facebook,
google,
email
} = {}) {
function build_ () {
if (custom) return { link: { custom } } // Should return { unlink: { custom } } instead
if (device) return { link: { device } } // Should return { unlink: { device } } instead
pragma solidity ^0.4.4;
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}
@max-berman
max-berman / arcade-token.sol
Created June 12, 2018 13:40
Arcade Coin Token used as a virtual coin in playchap.io
pragma solidity ^0.4.4;
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}