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
| { | |
| "workbench.colorCustomizations": { | |
| "terminal.foreground": "#839496", | |
| "terminal.background": "#002833", | |
| "terminal.ansiBlack": "#003541", | |
| "terminal.ansiBlue": "#268bd2", | |
| "terminal.ansiCyan": "#2aa198", | |
| "terminal.ansiGreen": "#859901", | |
| "terminal.ansiMagenta": "#d33682", | |
| "terminal.ansiRed": "#dc322f", |
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
| /** | |
| * 1. Initialize new node project (npm init -y) | |
| * 2. Run: npm install ethers | |
| * 3. Add private key where PRIVATE_KEY | |
| * 4. Optionally, update gas price (line 29) or chosen gas limit | |
| * 5. Run: node mint-temporal-loot.js | |
| * 6. NOTE: Don't forget to get an API key fgrom Alchemy and replace the variable in line 15 | |
| */ | |
| // Imports | |
| require("dotenv").config(); |
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
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
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
| // Highcharts CheatSheet Part 1. | |
| // Create interactive charts easily for your web projects. | |
| // Download: http://www.highcharts.com/download | |
| // More: http://api.highcharts.com/highcharts | |
| // 1. Installation. | |
| // Highcharts requires two files to run, highcharts.js and either jQuery, MooTools or Prototype or the Highcharts Standalone Framework which are used for some common JavaScript tasks. | |
| // <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| // <script src="https://code.highcharts.com/highcharts.js"></script> |