-
Шаг 1. Глобально устанавливаем
vercel
.Для этого в консоли пишем
npm i -g vercel
. На момент написания инструкции актуальная версия — 21.0.1. -
Шаг 2. Регистрируемся на vercel.com.
-
Шаг 3. Переходим в корень проекта.
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 nodemailer = require('nodemailer'); | |
const smtpTransport = require('nodemailer-smtp-transport'); | |
const transporter = nodemailer.createTransport( | |
smtpTransport({ | |
service: 'yandex/google', | |
host: 'smtp.yandex.ru/smtp.gmail.com', | |
auth: { | |
user: '[email protected]', | |
pass: 'yourEmailPassword', |
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
# U U SSSSS EEEEEE RRRRR | BBBBB OOOOO TTTTTTTTT | |
# U U S E R R | B B O O T | |
# U U SSSS EEEEEE RRRRR | BBBBB O O T | |
# U U S E R R | B B O O T | |
# UUUU SSSSS EEEEEE R R | BBBBB OOOOO T | |
from pyrogram import Client, filters | |
from pyrogram.errors import FloodWait | |
from pyrogram.raw import functions |
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 React from "react"; | |
import Compose from "./Compose.js"; | |
import Context from "./Context.js"; | |
export default function App() { | |
const [foo] = React.useState(1); | |
const [bar] = React.useState(2); | |
return ( | |
<Compose |
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
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse |
sudo pacman -Syu zsh
You do not need to install manjaro-zsh-config
and all the other related packages like zsh-syntax-highlighting
, zsh-history-substring-search
, zsh-autosuggestions
, etc., as we will use Oh My Zsh.
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
#!/usr/bin/env bash | |
SLEEP_DURATION=${SLEEP_DURATION:=1} # default to 1 second, use to speed up tests | |
progress-bar() { | |
local duration | |
local columns | |
local space_available | |
local fit_to_screen | |
local space_reserved |
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
version: '3' | |
services: | |
nginx-web: | |
image: nginx | |
labels: | |
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true" | |
container_name: ${NGINX_WEB:-nginx-web} | |
restart: always | |
ports: | |
- "${IP:-0.0.0.0}:80:80" |