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.24; | |
// ---------------------------------------------------------------------------- | |
// Sample token contract | |
// | |
// Symbol : LCST | |
// Name : LCS Token | |
// Total supply : 100000 | |
// Decimals : 2 | |
// Owner Account : 0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe |
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.6.6; | |
contract CoolNumberContract { | |
uint public coolNumber = 10; | |
function setCoolNumber(uint _coolNumber) public { | |
coolNumber = _coolNumber; | |
} | |
} |
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 json | |
from six.moves.urllib.request import urlopen | |
from functools import wraps | |
from flask import Flask, request, jsonify, _request_ctx_stack | |
from flask_cors import cross_origin | |
from jose import jwt | |
AUTH0_DOMAIN = 'AUTH0-DOMAIN' | |
API_IDENTIFIER = 'API-IDENTIFIER' |
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 cv2 | |
import sys | |
(major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.') | |
if __name__ == '__main__' : | |
# Set up tracker. | |
# Instead of CSRT, you can also use | |
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
// Return a list of `params` to populate the [slug] dynamic segment | |
export async function generateStaticParams() { | |
return ['team1', 'team2'].map((team) => ({ | |
teamId: team, | |
})) | |
} | |
type Props = { | |
params: { | |
teamId: string |
OlderNewer