Hi folks! Imagine you have work and personal profile for git on one OS and you want to git select proper email when you do git stuff.
File structure:
home-directory
├── .gitconfig
├── .gitconfig-personal
└── .gitconfig-work
| # Simple workflow for deploying static content to GitHub Pages | |
| name: Deploy React project to GitHub Pages | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ['main'] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: |
Hi folks! Imagine you have work and personal profile for git on one OS and you want to git select proper email when you do git stuff.
File structure:
home-directory
├── .gitconfig
├── .gitconfig-personal
└── .gitconfig-work
| import cv2 | |
| import numpy as np | |
| from collections import deque | |
| from enum import Enum | |
| import time | |
| import pyautogui | |
| # инициализируем | |
| video = cv2.VideoCapture(1) # id устройства камеры | |
| hands_haar_cascade = cv2.CascadeClassifier("rpalm.xml") |
The RIAEvangelist/node-ipc module contains protestware peacenotwar.
Excerpt from RIAEvangelist/node-ipc:
as of v11.0.0 & v9.2.2 this module uses the peacenotwar module.
Основной стек: nginx + mysql + php-fpm.
Предполагается, что вы только что настроили WSL в своей системе и установили чистую ubuntu 18.04 LTS.
Почему не apache? С точки зрения производительности, быстродействия, а как следствие - нагрузки - связка nginx + php-fpm показывает себя гораздо лучше. Есть в этом решении и минусы - мы лишаемся удобного .htaccess и все необходимые настройки будем вынуждены производить в конфигах nginx и php, но оно того стоит.
| const words = [ | |
| // Borrowed from xkcd password generator which borrowed it from wherever | |
| "ability","able","aboard","about","above","accept","accident","according", | |
| "account","accurate","acres","across","act","action","active","activity", | |
| "actual","actually","add","addition","additional","adjective","adult","adventure", | |
| "advice","affect","afraid","after","afternoon","again","against","age", | |
| "ago","agree","ahead","aid","air","airplane","alike","alive", | |
| "all","allow","almost","alone","along","aloud","alphabet","already", | |
| "also","although","am","among","amount","ancient","angle","angry", | |
| "animal","announced","another","answer","ants","any","anybody","anyone", |
| import asyncio | |
| from pywebio import start_server | |
| from pywebio.input import * | |
| from pywebio.output import * | |
| from pywebio.session import defer_call, info as session_info, run_async, run_js | |
| chat_msgs = [] | |
| online_users = set() |
Основной стек: nginx + mysql + php-fpm.
Предполагается, что вы только что настроили WSL в своей системе и установили чистую ubuntu 18.04 LTS.
Почему не apache? С точки зрения производительности, быстродействия, а как следствие - нагрузки - связка nginx + php-fpm показывает себя гораздо лучше. Есть в этом решении и минусы - мы лишаемся удобного .htaccess и все необходимые настройки будем вынуждены производить в конфигах nginx и php, но оно того стоит.
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).