-
環氧樹酯 新手包 (主劑, 硬化劑, 離型劑為必備)
-
珠光粉
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
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({"/Users/chenwei/Desktop/github/metamask-extension/app/scripts/createStandardProvider.js":[function(_dereq_,module,exports){ | |
'use strict'; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
var _promise = _dereq_('babel-runtime/core-js/promise'); | |
var _promise2 = _interopRequireDefault(_promise); |
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.1; | |
contract Test { | |
function getRand() view public returns (uint8, uint8, uint8, uint8) { | |
uint256 t = rand; | |
bytes memory bb = toBytes(t); | |
return (toUnit(bb[7]), toUnit(bb[15]), toUnit(bb[23]), toUnit(bb[31])); | |
} | |
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
class Node { | |
constructor(value) { | |
this.value = value; | |
} | |
insert(insertedValue) { | |
if (insertedValue > this.value) { | |
if (this.right) { | |
this.right.insert(insertedValue); |
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.4.25; | |
contract Election { | |
address owner; // Address of the contract owner | |
bool public isVoting = false; // isVoting should be true when voting starts | |
uint public round = 0; // round number should be increased when new election starts | |
struct Candidate { | |
uint vote; |