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
| const Clean = require('clean-webpack-plugin') | |
| // ... | |
| { | |
| // ... | |
| plugins: [ | |
| new Clean('build/*.*', {/* options */}) | |
| ] | |
| // ... | |
| } |
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
| /** | |
| * Animated works by building a directed acyclic graph of dependencies | |
| * transparently when you render your Animated components. | |
| * | |
| * new Animated.Value(0) | |
| * .interpolate() .interpolate() new Animated.Value(1) | |
| * opacity translateY scale | |
| * style transform | |
| * View#234 style | |
| * View#123 |
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
| const slsw = require('serverless-webpack'); | |
| const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; | |
| const analyzer = new BundleAnalyzerPlugin({ | |
| analyzerMode: 'static', | |
| openAnalyzer: false, | |
| generateStatsFile: 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
| ''' | |
| v0.2 Not sell or buy twice the same level over/under the price | |
| ''' | |
| import math | |
| def initialize(state): | |
| state.number_offset_trades = 0 | |
| # 50 BUSD every time | |
| buy_value = 50 |
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
| import { serve } from "https://deno.land/[email protected]/http/server.ts"; | |
| // Sustituye este enlace por el que devuelve el despliegue de tu aplicación | |
| // con arkb | |
| const fileService = "https://arweave.net/RhfPbeXFU3ieGVS5qALEnrIqeHNyeOiYnnVsmI04pPg"; | |
| async function reqHanlder( req: Request ) { | |
| let path = new URL(req.url).pathname; | |
| if( path === '/faq' ){ | |
| path = '/'; |
OlderNewer