Skip to content

Instantly share code, notes, and snippets.

View taruscript's full-sized avatar
🎧
中島みゆきの詩に、心を救われたことがあります

たーる taruscript

🎧
中島みゆきの詩に、心を救われたことがあります
View GitHub Profile

Keybase proof

I hereby claim:

  • I am taruscript on github.
  • I am taruscript (https://keybase.io/taruscript) on keybase.
  • I have a public key whose fingerprint is 62FE 6B77 90E8 D028 9D3E F58D 31F4 352D 6D07 CBCA

To claim this, I am signing this object:

@taruscript
taruscript / README.txt
Created April 29, 2021 16:03
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.1+commit.df193b15.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
@taruscript
taruscript / sketch.js
Created March 4, 2021 09:26
マウスカーソルを動かすと幾何学が生成されるアート
let symmetry = 10;
let angle = 360 / symmetry;
let saveButton;
let clearButton;
let slider;
let xoff = 0;
function setup() {
createCanvas(1920, 1080);
angleMode(DEGREES);
@taruscript
taruscript / sketch.js
Created March 4, 2021 09:10
えっちなアート
let symmetry = 44;
let angle = 360 / symmetry;
let slider;
let xoff = 0;
function setup() {
frameRate(10)