Skip to content

Instantly share code, notes, and snippets.

View notatestuser's full-sized avatar
🍴
Hard Forking

Luke Plaster notatestuser

🍴
Hard Forking
View GitHub Profile
// The source code is for Solidity version
// greater than 0.7.0
pragma solidity >=0.7.0 <0.9.0;
// https://github.com/OpenZeppelin/openzeppelin-contracts
import "@openzeppelin/contracts/access/Ownable.sol";
// Starts the contract
contract HelloWorld is Ownable {
// The keyword "public" makes variables

Keybase proof

I hereby claim:

  • I am notatestuser on github.
  • I am notatestuser (https://keybase.io/notatestuser) on keybase.
  • I have a public key ASDPQRF-onN5LuTh1xlY_T8US3guoPygE82xgEE-K8MXrwo

To claim this, I am signing this object:

@notatestuser
notatestuser / coz-todo.md
Last active November 27, 2017 16:42
CoZ To Do
  • Update dependencies in neo-contracts-workspace
  • Codename Neo Artillery
  • Codename Ganache
  • neon-js byte lengths refactor
@notatestuser
notatestuser / gist:30ba66ebdeb69a48bea7
Created May 23, 2014 13:39
sheet_to_row_object_array_with_column_index_props for js-xls(x)
var XLS = { utils: {
// originally https://github.com/SheetJS/js-xls/blob/4076850087785b76e6814213877eea99a8390be5/xls.js#L5135
sheet_to_row_object_array_with_column_index_props:
function(sheet, opts) {
var val, row, r, hdr = {}, isempty, R, C, v;
var out = [];
opts = opts || {};
if(!sheet || !sheet["!ref"]) return out;
r = xls_utils.decode_range(sheet["!ref"]);
for(R=r.s.r, C = r.s.c; C <= r.e.c; ++C) {