This file contains 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 twitter api is stupid. it is stupid and bad and expensive. hence, this. | |
Literally just paste this in the JS console on the bookmarks tab and the script will automatically scroll to the bottom of your bookmarks and keep a track of them as it goes. | |
When finished, it downloads a JSON file containing the raw text content of every bookmark. | |
for now it stores just the text inside the tweet itself, but if you're reading this why don't you go ahead and try to also store other information (author, tweetLink, pictures, everything). come on. do it. please? | |
*/ |
This file contains 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
//external variable | |
const disabledEndYear = true | |
//schema validation for yup | |
const schema = yup | |
.object({ | |
field_name: yup.number().when([], { | |
is: (val: any) => { | |
return !disabledEndYear; //if false | |
}, |
This file contains 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 below function accepts the HTMLInputElement event from a <input type="file" /> | |
// and returns a binary string | |
function readFileDataAsBase64(e) { | |
const file = e.target.files[0]; | |
return new Promise((resolve, reject) => { | |
const reader = new FileReader(); | |
reader.onload = (event) => { | |
resolve(event.target.result); |
This file contains 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 routes = [['foo', 'bar'], ['foo'], ['products']] | |
function TrieNode(value) { | |
this.value = value; | |
this.children = [] | |
} | |
const checkValue = (node, value) => { | |
return node.value === value; | |
} |
This file contains 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.5.0; | |
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol"; | |
contract DAOToken is ERC20 { | |
/// The event emitted (useable by web3) when a token is purchased | |
event LogFunding(address indexed sender, uint256 tokens); | |
This file contains 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
getWeb3 = () => new Promise((resolve, reject) => { | |
try{ | |
if(typeof window.web3 !== undefined){ | |
resolve(new Web3(Web3.givenProvider)) | |
}else{ | |
this.setState({errorMsg:'web3 not found'}) |
This file contains 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 DEPLOYED_ADDRESS | |
const CONTRACT_EVENT | |
try { | |
const web3 = await this.getWeb3() | |
const accounts = await web3.eth.getAccounts() | |
const tickerRegInstance = new web3.eth.Contract(TickerRegistry.abi, DEPLOYED_ADDRESS) |
This file contains 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 React, { Component } from 'react'; | |
import Web3 from 'web3' | |
import logo from './poly_logo.svg'; | |
import './App.css'; | |
const PolyTokenFaucet = require('./contracts/PolyTokenFaucet.json'); | |
class App extends Component { |
This file contains 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 React, { Component } from 'react'; | |
import Web3 from 'web3' | |
import { Container, Row, Col, Button, Alert, Form, FormGroup, Label, Input, FormText } from 'reactstrap' | |
import logo from './poly_logo.svg'; | |
import './App.css'; | |
const PolyTokenFaucet = require('./contracts/PolyTokenFaucet.json'); | |
class App extends Component { |
This file contains 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 React, { Component } from 'react'; | |
import Web3 from 'web3' | |
import logo from './poly_logo.svg'; | |
import './App.css'; | |
class App extends Component { | |
constructor(props) { | |
super(props) |
NewerOlder