Last Name = Sidorov First Name = Mitrofan Middle Name - check "No middle name"
Male
#!/usr/bin/python3 | |
import os | |
if name == 'main': | |
print('Start append') | |
currentDir = os.getcwd() | |
addSymbol = '*' | |
fileNames = os.listdir(currentDir) | |
docs = list(filter(lambda x: not x.endswith('.py'), fileNames)) |
module.exports = (filePath) => { | |
const dirPathArr = filePath.split('/'); | |
const targerFile = dirPathArr[dirPathArr.length - 1]; | |
const dotIndex = targerFile.indexOf('.'); | |
return targerFile.slice(0, dotIndex > -1 ? dotIndex : targerFile.length); | |
} |
version: '3' | |
services: | |
rethink: | |
image: rethinkdb # load latest rethinkDB image | |
volumes: | |
- ./rethinkdb_data:/data/rethinkdb_data # volume for load backup or save new data files on mapping | |
ports: | |
- 8080:8080 # Listening for administrative HTTP connections on port 8080 | |
- 28015:28015 # Listening for client driver connections on port 28015 | |
- 29015:29015 # Listening for intracluster connections on port 29015 |
const MaxUint = ^uint(0) | |
const MinUint = 0 | |
const MaxInt = int(MaxUint >> 1) | |
const MinInt = -MaxInt - 1 |
import requests | |
query = 'Только не по лицу' | |
genre = 10 | |
def get_genres(): | |
""" | |
Функция отправляет запрос к Балабобе, | |
и получает в ответ список жанров. |
%------------------------- | |
% Resume in Latex | |
% Author : Jake Gutierrez | |
% Based off of: https://github.com/sb2nov/resume | |
% License : MIT | |
%------------------------ | |
\documentclass[letterpaper,11pt]{article} | |
\usepackage{latexsym} |
package hw02unpackstring | |
import ( | |
"errors" | |
"strconv" | |
"strings" | |
"unicode" | |
) | |
const escapeSymbol string = "\\" |
package hw06pipelineexecution | |
type ( | |
In = <-chan interface{} | |
Out = In | |
Bi = chan interface{} | |
) | |
type Stage func(in In) (out Out) |
package hw05parallelexecution | |
import ( | |
"errors" | |
"sync" | |
"sync/atomic" | |
) | |
var ErrErrorsLimitExceeded = errors.New("errors limit exceeded") |