🌐 🎯 🧠 👀👁 👔🛍 🎯 🧿
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
{ | |
"name": "My Token List", "logoURI": "ipfs://QmUSNbwUxUYNMvMksKypkgWs8unSm8dX2GjCPBVGZ7GGMr", "keywords": [ "audited", "verified", "special tokens" ], "tags": { "stablecoin": { "name": "Stablecoin", "description": "Tokens that are fixed to an external asset, e.g. the US dollar" }, "compound": { "name": "Compound Finance", "description": "Tokens that earn interest on compound.finance" } }, "timestamp": "2020-06-12T00:00:00+00:00", "tokens": [ { "chainId": 1, "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "symbol": "USDC", "name": "USD Coin", "decimals": 6, "logoURI": "ipfs://QmXfzKRvjZz3u5JRgC4v5mGVbm9ahrUiB4DgzHBsnWbTMM", "tags": [ "stablecoin" ] }, { "chainId": 1, "address": "0x39AA39c021dfbaE8faC545936693aC917d5E7563", "symbol": "cUSDC", "name": "Compound USD Coin", "decimals": 8, "logoURI": "ipfs://QmUSNbwUxUYNMvMksKypkgWs8unSm8dX2GjCPBVGZ7GGMr", "tags": [ "compound" ] } ], "version": { "major": 1, "minor": 0, "patch": 0 } | |
} |
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
FROM apify/actor-node-chrome | |
# Copy source code | |
COPY . ./ | |
COPY src ./src | |
# Install default dependencies, print versions of everything | |
RUN npm --quiet set progress=false \ | |
&& npm install --only=prod --no-optional \ | |
&& echo "Installed NPM packages:" \ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>${TITLE}</title> | |
<meta name="viewport" content="device-width, initial-scale=1"> | |
</head> | |
<body> | |
<header> | |
<h1>${HEADER}</h1> |
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
#!/bin/bash | |
# Found at: http://blog.likewise.org | |
# Slightly updated by: https://github.com/kdidenko | |
# Install xscreensaver and addons: | |
sudo apt-get install \ | |
xscreensaver xscreensaver-data-extra \ | |
xscreensaver-gl xscreensaver-gl-extra |
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
var Banchmark = (function(){ | |
'use strict'; | |
const instance = null; | |
let create = function() { | |
let __created = new Date(); | |
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
var iife = (function() { | |
// IIFE implementation code here | |
// ... | |
// return result | |
})() |
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
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: disable-transparent-hugepages | |
# Required-Start: $local_fs | |
# Required-Stop: | |
# X-Start-Before: mongod mongodb-mms-automation-agent | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Disable Linux transparent huge pages |