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 { ethers, providers, Wallet, utils, Transaction } from "ethers"; | |
import { | |
FlashbotsBundleProvider, | |
FlashbotsBundleResolution, | |
} from "@flashbots/ethers-provider-bundle"; | |
import { exit } from "process"; | |
const FLASHBOTS_URL = "https://relay-goerli.flashbots.net"; | |
const TOKEN_ADDRESS = "0x4E5d67a73bdb6BF68fADa7BDD7F455A7aA02C8ab"; |
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 { ethers, providers, Wallet, utils, Transaction } from "ethers"; | |
import { | |
FlashbotsBundleProvider, | |
FlashbotsBundleResolution, | |
} from "@flashbots/ethers-provider-bundle"; | |
import { exit } from "process"; | |
const FLASHBOTS_URL = "https://relay-goerli.flashbots.net"; | |
const TOKEN_ADDRESS = "0x4E5d67a73bdb6BF68fADa7BDD7F455A7aA02C8ab"; |
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
version: '3' | |
services: | |
coolify-builder: | |
image: ghcr.io/coollabsio/coolify-builder | |
volumes: | |
- /data/coolify/source:/data/coolify/source | |
- /var/run/docker.sock:/var/run/docker.sock | |
environment: | |
- LATEST_IMAGE=${LATEST_IMAGE:-} | |
# Add your environment variables here |
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
<main> | |
<h1>This is a Torus Knot rendered on the browser with the help of WebGL | |
</h1> | |
</main> |
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 logo from './logo.svg'; | |
import './App.css'; | |
import React, { useEffect, useState } from 'react' | |
// import Routes from './router/Routes' | |
import { Auth, Hub } from 'aws-amplify' | |
const initialFormState = { | |
username: '', | |
password: '', | |
email: '', |
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 importdir | |
importdir.do("features", globals()) |
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
<?php | |
/** | |
* Customer completed order email | |
* | |
* This template can be overridden by copying it to yourtheme/woocommerce/emails/customer-completed-order.php. | |
* | |
* HOWEVER, on occasion WooCommerce will need to update template files and you | |
* (the theme developer) will need to copy the new files to your theme to | |
* maintain compatibility. We try to do this as little as possible, but it does | |
* happen. When this occurs the version of the template file will be bumped and |
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 telebot | |
import os | |
from config import * | |
from flask import Flask, request | |
server = Flask(__name__) | |
@server.route('/'+ TOKEN, methods=['POST']) | |
def getMessage(): | |
request_object = request.stream.read().decode("utf-8") |
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 telebot | |
import os | |
from config import * | |
from flask import Flask, request | |
server = Flask(__name__) | |
@server.route('/'+ TOKEN, methods=['POST']) | |
def getMessage(): | |
request_object = request.stream.read().decode("utf-8") |
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
<template> | |
<v-container> | |
<v-row v-for="j in 100" :key="j" :class="j === 1 ? '' : 'mt-6'" no-gutters> | |
<v-col v-for="i in j + 1" :key="i"> | |
<v-card class="pa-5" outlined> | |
{{ i }} of {{j + 1 }} | |
</v-card> | |
</v-col> | |
</v-row> | |
</v-container> |