disables certain network features, so there's less traffic going to microsoft.
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
| console.clear() | |
| matrix = [ | |
| [1, -1, 3], | |
| [-2, 5, 7], | |
| [1, 1, 2] | |
| ] | |
| for (let i = 0; i < 3; i++) { | |
| for (let j = 0; j < 3; j++) { |
venv - средство для создания так называемых "виртуальных сред" Python. В данном материале мы разберем что такое виртуальная среда, зачем она нужна, и как начать ей пользоваться.
Представим, что вы в своем проекте захотели использовать какую-нибудь библиотеку, будь то Flask или numpy. Чтобы ее установить, вы открываете консоль и набираете:
pip install numpy
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 http = require('http') | |
| const crypto = require('crypto') | |
| const cp = require('child_process') | |
| // Configuration variables | |
| // secret you set in github settings | |
| const secret = process.env.SECRET | |
| // port to listen for requests |