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
const ethers = require("ethers"); | |
const { | |
DefenderRelaySigner, | |
DefenderRelayProvider, | |
} = require("defender-relay-client/lib/ethers"); | |
const speed = "safeLow"; | |
const ForwarderAbi = [ | |
{ inputs: [], stateMutability: "nonpayable", type: "constructor" }, |
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
{ | |
"path": "emoji-cz", | |
"emoji-cz": { | |
"types": { | |
"Refactor": { | |
"emoji": "♻️" | |
}, | |
"Docs": { | |
"emoji": "📝" | |
}, |
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
cd /home/ploi/DOMAIN_PATH | |
git pull origin master | |
composer install --no-interaction --prefer-dist --optimize-autoloader | |
echo "" | sudo -S service php7.4-fpm reload | |
php artisan optimize | |
php please cache:clear | |
php please stache:clear | |
php please glide:clear | |
echo "🚀 Application deployed!" |
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
const injectScript = (id,url,callback) => { | |
const existingScript = document.getElementById(id) | |
if (!existingScript) { | |
const script = document.createElement('script') | |
script.src = url | |
script.id = id | |
document.body.appendChild(script) | |
script.onload = () => { | |
if (callback) callback() | |
} |
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
{{ if images }} | |
<div class="image-gallery is-multiline is-mobile columns"> | |
{{ assets:images }} | |
<figure class="column is-narrow"> | |
<a href="{{ url }}" class="photoswipe" title="{{ caption }}" data-size="{{ width }}x{{ height }}"> | |
<img width="128" height="128" src="{{ glide:url width="256" height="256" }}"> | |
</a> | |
</figure> | |
{{ /assets:images }} | |
</div> |
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
import Block from './PageBuilder/Block' | |
import Cover from './PageBuilder/Cover' | |
import Embed from './PageBuilder/Embed' | |
const DynamicBlock = (props) => { | |
const blocks = { | |
"pages.cover": Cover, | |
"pages.block": Block, | |
"pages.embed": Embed |
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
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/ | |
#train | |
python train.py --dataroot ./datasets/v --name v --model pix2pix --direction AtoB | |
#test | |
python test.py --dataroot ./datasets/walker/ --direction AtoB --model test --name v --netG unet_256 --dataset_mode single --norm batch --num_test 7000 |
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
const editorMachine = Machine({ | |
id: 'editor', | |
type: 'parallel', | |
states: { | |
editor: { | |
initial: 'idle', | |
states: { | |
idle: { | |
on: { | |
NODE_MDOWN: 'checkNodeMove', |
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
FLOWING EDITOR& | |
Navigation | |
Idle | |
nodeMouseDown -> Node Wait | |
canvasMouseDown -> Canvas Wait | |
choiceMouseDown -> Choice Wait | |
Node Wait | |
moved? -> Drag Node | |
stay? -> Idle |
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
/* import google font */ | |
@import url('https://fonts.googleapis.com/css?family=Calistoga&display=swap'); | |
/* global styles */ | |
tw-story { | |
font-family: 'Calistoga'; | |
background: #eee; | |
color: #ff0000; |
NewerOlder