Skip to content
View dot1mav's full-sized avatar
🌎
D00r the Plan3t
🌎
D00r the Plan3t
  • echo "iran" &> /dev/null
  • 11:42 (UTC +03:30)
Block or Report

Block or report dot1mav

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
dot1mav/README.md

dot1mav

love python and linux
add more bug to fix later
always be perfect like c

def always():
  return f'be perfect'

Anurag's github stats Top Langs

Pinned Loading

  1. OwnFirewall OwnFirewall Public

    Make Your Linux better With My Script

    Shell 4 1

  2. Backup Backup Public

    Make youre backup when you dont want youre os any more...

    Python

  3. python-datastructure python-datastructure Public

    Forked from mrzslr/python-datastructure

    python data structures for training myself.

    Python

  4. import blueprints auto for flask app import blueprints auto for flask app
    1
    import os
    2
    
    
    3
    from importlib import import_module
    4
    from flask import Flask, Blueprint
    5
    from typing import Optional, Union
  5. custom thread for python custom thread for python
    1
    from abc import ABC, abstractmethod
    2
    from threading import Event, Thread, ThreadError
    3
    from copy import deepcopy
    4
    from typing import Callable, Optional, Any, Iterable, Dict
    5
    
    
  6. use sync variable in threading use sync variable in threading
    1
    from threading import Lock, Event
    2
    from functools import wraps
    3
    from copy import deepcopy
    4
    from typing import Callable, Optional, List, Any
    5