Skip to content
View nskondratev's full-sized avatar
🛠️
🛠️
Block or Report

Block or report nskondratev

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

  1. socks5-proxy-server socks5-proxy-server Public

    SOCKS5 proxy server

    JavaScript 84 16

  2. tg-bot-template tg-bot-template Public template

    Template repo with boilerplate code to write Telegram bots in Go

    Go 1

  3. MySQL function for some semver versi... MySQL function for some semver versions comparison
    1
    CREATE FUNCTION `SEMVER_GTE`(_v1 VARCHAR(128), _v2 VARCHAR(128)) RETURNS TINYINT DETERMINISTIC
    2
    BEGIN
    3
        DECLARE _next_v1 TEXT DEFAULT NULL;
    4
        DECLARE _next_v2 TEXT DEFAULT NULL;
    5
        DECLARE _nextlen_v1 INT DEFAULT NULL;
  4. MySQL Greatest Common Divisor function MySQL Greatest Common Divisor function
    1
    CREATE FUNCTION `GCD`(a INTEGER, b INTEGER) RETURNS int(11) DETERMINISTIC
    2
    BEGIN
    3
        DECLARE dividend INT;
    4
        DECLARE divisor INT;
    5
        DECLARE remainder INT;