Skip to content
View volitilov's full-sized avatar

Block or report volitilov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. My personal fish shell config for OS... My personal fish shell config for OS X (better blue colour for directory in dark terminal). Supports git branch and virtualfish for virtualenv
    1
    # ~/.config/fish/config.fish
    2
    # nice light cyan color instead of dark blue
    3
    set -gx LSCOLORS gxfxcxdxbxegedabagacad
    4
    
                  
    5
    function ls --description 'List contents of directory'
  2. Пример простого Blockchain Пример простого Blockchain
    1
    ```python
    2
    # простой пример создание хеша данных с помощью sha256
    3
    
                  
    4
    import hashlib
    5
    import json
  3. Мой конфиг для git Мой конфиг для git
    1
    [user]
    2
            name = volitilov
    3
            email = [email protected]
    4
    [core]
    5
            mergeoptions = --no-off
  4. Работа с базой данных - Postgres Работа с базой данных - Postgres
    1
    создание базы
    2
    ```bash
    3
    sudo -u postgres psql
    4
    postgres=# CREATE DATABASE new_db OWNER username;
    5
    ```