Skip to content
View Kuzyashin's full-sized avatar
😀
Some shit
😀
Some shit
Block or Report

Block or report Kuzyashin

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
Kuzyashin/readme.md

Hello there !

Profile views

About

Love cool new things, like the cool template below.

{% awesome_template_for_github_profile %}

And when they are still working, then generally cool 💕

GitHub stats

Pinned

  1. FastAPI_Tortoise_template FastAPI_Tortoise_template Public template

    FastAPI - Tortoise ORM - Celery - Docker template

    Python 217 39

  2. GoDjangoSession GoDjangoSession Public

    Validate Django auth session in Golang

    Go 23

  3. find_remoteness_btw_cords.sql find_remoteness_btw_cords.sql
    1
    CREATE or REPLACE FUNCTION find_remoteness_btw_cords(lat1 double precision, lng1 double precision, lat2 double precision, lng2 double precision)
    2
    	RETURNS double precision
    3
    LANGUAGE plpgsql AS $$
    4
    BEGIN
    5
    	RETURN ACOS(SIN(PI()*lat1/180.0)*SIN(PI()*lat2/180.0)+COS(PI()*lat1/180.0)*COS(PI()*lat2/180.0)*COS(PI()*lng2/180.0-PI()*lng1/180.0))*6367000;
  4. brew-redis-macos.md brew-redis-macos.md
    1
    type below:
    2
    
    
    3
    ```
    4
    brew update
    5
    brew install redis
  5. CeleryPrometheusExporter CeleryPrometheusExporter Public

    Celery prometheus exporter

    Python 3