This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The previous two files should give you an object, `typePoints` | |
// for this to work, you need to delete the last point of each contour | |
function drawChar(char, x, y, s, stroke_, fill_) { | |
push() | |
translate(x-25*s, y+40*s) | |
scale(s) | |
stroke(stroke_) | |
fill(fill_||stroke_) | |
let contourOpen = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin; | |
drop schema friendworld cascade; | |
drop schema friendworld_private cascade; | |
drop domain username_domain; | |
drop role friendworld_root; | |
drop role friendworld_anonymous; | |
drop role friendworld_user; | |
create extension if not exists "uuid-ossp"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "FeatureContract.sol" | |
contract CoreContract { | |
FeatureContract public featureContract; | |
address public CEO; | |
function FastCashMoneyPlusPermissions(address _featureContractAddress) public { | |
featureContract = FeatureContract(_featureContractAddress); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.17; | |
/* | |
Copyright 2017, FastCashMoneyPlus.biz | |
This contract is for educational purposes only, and is presented WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. | |
*/ | |
contract FastCashMoneyPlusPermissions { | |
address public centralBanker; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.17; | |
/* | |
Copyright 2017, FastCashMoneyPlus.biz | |
This contract is for educational purposes only, and is presented WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. | |
*/ | |
contract FastCashMoneyPlus { | |
uint public totalSupply; | |
uint256 public fastCashBank; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.17; | |
/* | |
Copyright 2017, FastCashMoneyPlus.biz | |
This contract is for educational purposes only, and is presented WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. | |
*/ | |
contract FastCashMoneyPlus { | |
uint public totalSupply; | |
uint256 public fastCashBank; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.17; | |
/* | |
Copyright 2017, FastCashMoneyPlus.biz | |
This contract is for educational purposes only, and is presented WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. | |
*/ | |
contract FastCashMoneyPlus { | |
uint public totalSupply; | |
uint256 public fastCashBank; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.17; | |
/* | |
Copyright 2017, FastCashMoneyPlus.biz | |
This is highly propriatary software. Under no circumstances is anyone, except for employees of | |
FastCashMoneyPlus.biz, authorized to modify, distribute, use, or otherwise profit from these | |
contracts. Anyone attempting to do so will be prosecuted under the full extent of the law. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const expressionStart = (token) => token[0] === '('; | |
const expressionEnd = (token) => token[token.length - 1] === ')'; | |
function evaluate(token) { | |
let numbered = Number(token); | |
if (token === 'true') { | |
return true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Lisp parser. Written in JavaScript/ES6. | |
const expressionStart = (token) => token[0] === '('; | |
const expressionEnd = (token) => token[token.length - 1] === ')'; | |
function evaluate(token) { | |
let numbered = Number(token); | |
if (token === 'true') { |
NewerOlder