- А – 丹升什闩
- Б – 石右五
- В – 归乃巧日扫丑
- Г – 厂广
- Д – 亼 囗
- Е – 巨乞仨巳它正臣亖乜
- Ё – 庄
- Ж – 水卌兴川氽米
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
var DEBUG_TIME_LEVEL = { | |
"QUICKLY": 1, | |
"VERY_QUICKLY": 0, | |
"VERY_SLOWLY": 4, | |
"COMPREHENSIBLE": 2, | |
"SLOWLY": 3 | |
}; | |
var DEBUG_TIME_LEVEL_LC_NAME = { | |
"4": "very_slowly", | |
"1": "quickly", |
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
#!/bin/bash | |
cd ~/Desktop/root/github/spaces.ru && npm start | |
git commit -a -m "$(date +"%x %T")" && git push | |
read | |
# Windows .bat | |
# cd %USERPROFILE%/Desktop/root/github/spaces.ru && npm start | |
# git commit -a -m "$(date +"%x %T")" && git push | |
# pause |
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 | |
$headers = getallheaders(); | |
header("Content-Type: application/json"); | |
header("Access-Control-Allow-Credentials: true"); | |
header("Access-Control-Allow-Origin: ".$headers["Origin"]); | |
$data = $_POST["value"]; | |
if (isset($data) && !empty($data)) { |
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
<input type="checkbox" id="switchTheme"> | |
<label for="switchTheme"></label> |
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
[ | |
"На Рython можно написать все. На C++ можно написать Python.", | |
"Убраться на столе? Не, не слышал.", | |
"Кому и командная строка – дружественный интерфейс...", | |
"На С я могу просто делать ошибки. На С++ я могу их наследовать!", | |
"Я сам раозбарл, поичтсил и сбоарл клаиуавтру.", | |
"9 утра. — Уже работаешь? ... — Ещё работаю.", | |
"Никто не называет автомобиль двигателем, но вот системный блок процессором...", | |
"Работай! Ну пожалуйста...", | |
"Дописал свою баговую прогу, все продебажил, работает идеально...но тут — проснулся.", |
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 | |
header('Content-Type: application/json'); | |
header('Access-Control-Allow-Credentials: false'); | |
header("Access-Control-Allow-Origin: *"); | |
require "../vendor/autoload.php"; | |
use PHPHtmlParser\Dom; | |
$dom = new Dom; |
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
{ | |
"window.title": "${dirty}${appName} ¯\\_(ツ)_/¯ ${rootName}", | |
"editor.tabSize": 2, | |
"terminal.integrated.smoothScrolling": true, | |
"editor.inlineSuggest.enabled": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.smoothScrolling": true, | |
"editor.minimap.enabled": true, | |
"editor.stickyScroll.enabled": false, | |
"editor.inlayHints.enabled": "on", |
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": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Nodemon", | |
"type": "node", | |
"request": "attach", | |
"processId": "${command:PickProcess}", | |
"restart": true, | |
"protocol": "inspector" |
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 { exec } from 'child_process' | |
const speed = 5 | |
const volume = 35 | |
// get installed voices | |
// Add-Type -AssemblyName System.speech;$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer;$speak.GetInstalledVoices() | % {$_.VoiceInfo.Name} | |
const voice = 'Microsoft Irina Desktop' | |
const message = 'Привет' | |
// filtering special characters |
OlderNewer