Skip to content
View valeriiduz's full-sized avatar
🐼
🐼
Block or Report

Block or report valeriiduz

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. Makefile for manipulate docker-compo... Makefile for manipulate docker-compose of python Dockerfile
    1
    include .env
    2
    export $(shell sed 's/=.*//' .env)
    3
    
    
    4
    .PHONY: help up start stop restart status ps clean
    5
    
    
  2. Profilers for check how much time sp... Profilers for check how much time spend method or funtion
    1
    import cProfile
    2
    import datetime
    3
    import logging
    4
    from functools import wraps
    5
    from inspect import isclass
  3. symfall/front symfall/front Public archive

    Frontend of simple project(messenger) to improve skills

    Vue

  4. symfall/api symfall/api Public archive

    Backend of simple project(messenger) to improve skills

    Python

  5. Django query debugger Django query debugger
    1
    from django.db import connection, reset_queries
    2
    import time
    3
    import functools
    4
    
    
    5
    def query_debugger(func):