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
# The task is got form this video: https://www.youtube.com/watch?v=V8DGdPkBBxg | |
from typing import Mapping, Set, Sequence, Tuple, Union | |
input_facts = ( | |
"m = 3.28 ft", | |
"ft = 12 in", | |
"hr = 60 min", | |
"min = 60 sec", | |
) |
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
(?is)(?P<prefix>^|[\s\p{P}\p{S}])(?P<match>(https?://)?([a-zа-я0-9_-]+\.)+(xn--)?[a-zа-я0-9]{2,}(/[a-z0-9/%@._~+-]*)?(\?[a-z0-9/%@&\[\];_=+-]*)?(#[a-z0-9/%@&\[\];_=+-]*)?)(?P<suffix>[\s\P{L}]|$) |
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
((w) => { | |
const urlPrefix = "https://www.youtube.com/"; | |
const href = w.location.href; | |
if (!href.startsWith(urlPrefix)) { | |
alert("wrong page"); | |
return; | |
} | |
fetch(href) | |
.then((res) => res.text()) |
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
func EscapeMarkdownV2(text string) string { | |
escapeChars := "_*[]()~`>#+-=|{}.!" | |
return regexp.MustCompile(fmt.Sprintf("([%s])", regexp.QuoteMeta(escapeChars))).ReplaceAllString(text, "\\$1") | |
} |
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
DIR = ./.build | |
EXECUTABLE = app | |
GOARCH = amd64 | |
GOOSWIN = windows | |
GOOSX = darwin | |
GOOSLINUX = linux | |
GOMOD = on | |
CGO_ENABLED = 0 |
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
<code_scheme name="Must Have" version="173"> | |
<option name="LINE_SEPARATOR" value="
" /> | |
<option name="FORMATTER_TAGS_ENABLED" value="true" /> | |
<MarkdownNavigatorCodeStyleSettings> | |
<option name="RIGHT_MARGIN" value="72" /> | |
</MarkdownNavigatorCodeStyleSettings> | |
<PHPCodeStyleSettings> | |
<option name="ALIGN_PHPDOC_PARAM_NAMES" value="true" /> | |
<option name="COMMA_AFTER_LAST_ARRAY_ELEMENT" value="true" /> | |
<option name="PHPDOC_BLANK_LINE_BEFORE_TAGS" value="true" /> |
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
RUN touch ~/.bashrc \ | |
&& echo "export PATH=${PATH}:/var/www/vendor/bin" >> ~/.bashrc \ | |
&& echo "PS1='\[\033[1;36m\]\h \[\033[1;34m\]\W\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'" >> ~/.bashrc |
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 sys | |
class TxtProgress: | |
_tpl = "" | |
def __init__(self, template): | |
self._tpl = template | |
def _syswrite(self, string): |
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
CREATE TABLE IF NOT EXISTS `clicks` ( | |
`id` int primary key not null auto_increment, | |
`login` varchar(20) NOT NULL, | |
`button` varchar(20) NOT NULL, | |
`dt` datetime not null | |
) DEFAULT CHARSET=utf8; | |
INSERT INTO `clicks` (`login`, `button`, `dt`) VALUES | |
('Alice', 'blue', NOW()), | |
('Alice', 'red', NOW() - INTERVAL 1 DAY), |
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 io, random, argparse, time | |
# N words by CHARS length | |
def main(): | |
argp = argparse.ArgumentParser() | |
argp.add_argument('N', metavar='N', type=int) | |
argp.add_argument('CHARS', metavar='CHARS', type=int) | |
args = argp.parse_args() |
NewerOlder