
<p align="center">
<h3 align="center">⛰️ Cloudlines.</h3>
</p>
<p align="center" style="width: 50%;">
<a href="https://discord.gg/jjAb4wESYu" alt="Discord" title="Cloudlines Discord Server">
<img src="https://img.shields.io/discord/1173290689086377984?color=7289DA&logo=discord&logoColor=white&style=for-the-badge"/></a>
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
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", | |
"Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif; | |
} |
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
let string = "abcdef..." | |
string.length | |
for(let letter of address) | |
{ | |
let index = string.indexOf(letter); | |
let value = string.length / index; | |
255 * value | |
let r = 0; | |
let g = 0; |
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
module.exports = [ | |
{ | |
name: "ENS-Registrar", | |
address: "0x6090A6e47849629b7245Dfa1Ca21D94cd15878Ef", | |
}, | |
{ | |
name: "LooneyLottery", | |
address: "0x2ef76694fBfD691141d83F921A5ba710525De9B0", | |
}, | |
{ |
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
/************************************************************ | |
* Better Singleton by David Darias | |
* Use as you like - credit where due would be appreciated :D | |
* Licence: WTFPL V2, Dec 2014 | |
* Tested on Unity v5.6.0 (should work on earlier versions) | |
* 03/02/2017 - v1.1 | |
* **********************************************************/ | |
using System; | |
using UnityEngine; |