Skip to content

Instantly share code, notes, and snippets.

Avatar

Bilyk Maxim yozhsh

  • Ukraine, Kharkiv
View GitHub Profile
View Docker usefull links
@yozhsh
yozhsh / config.yml
Created February 17, 2021 23:56 — forked from kenberkeley/config.yml
The simplest CircleCI 2.1 config example for Node / JS projects
View config.yml
## References:
# https://git.io/Jf3l9
# https://circleci.com/docs/2.0/yarn/
# https://circleci.com/docs/2.0/caching/#yarn-node
# https://circleci.com/orbs/registry/orb/circleci/node
# https://discuss.circleci.com/t/circleci-2-1-config-overview/26057
version: 2.1
orbs:
node: circleci/node@2.0.3
@yozhsh
yozhsh / python.code-workspace.json
Last active October 10, 2020 17:49
My VScode basic workspace config
View python.code-workspace.json
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
View RequestParameterParser
def parse_params(http_parameters: dict, client_identicator):
error = {"status": 400}
actions = {
'current': Sale.current_abones(client_identicator),
'previous': Sale.previous_abones(client_identicator),
'all': Sale.all_abones(client_identicator)
}
try:
abones_info = http_parameters['abones_info']