Skip to content

Instantly share code, notes, and snippets.

View tommulkins's full-sized avatar
🕸️
Lots of cobwebs here

Tom Mulkins tommulkins

🕸️
Lots of cobwebs here
View GitHub Profile
@tommulkins
tommulkins / contracts...helloworld.sol
Created October 23, 2021 22:11
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.4.24;
contract Message {
string myMessage;
function setMessage(string x) public {
myMessage = x;
}
function getMessage() public view returns (string) {
@tommulkins
tommulkins / React Native Resources.md
Last active July 12, 2020 13:18
React Native Worthy Project
@tommulkins
tommulkins / keybase.md
Created September 18, 2019 15:52
Keybase.io

Keybase proof

I hereby claim:

  • I am tommulkins on github.
  • I am tommulkins (https://keybase.io/tommulkins) on keybase.
  • I have a public key ASBqSeixRq-RPJGO_oP2ZYCmRLEtetIGfQpdiESYVRE8bwo

To claim this, I am signing this object:

@tommulkins
tommulkins / unhash example.js
Created August 1, 2018 19:24
Provide an unhash function complements hash
function hash(s)
{
let hash = 7
let letters = "acdfgilmnoprstuw"
for(i = 0; i < s.length; i++)
{
hash = (hash * 23 + letters.indexOf(s[i]))
}
return hash
}