Skip to content

Instantly share code, notes, and snippets.

View lihdaf's full-sized avatar
💭
Sorry dear, i'm busy enjoying my life

Fadhil lihdaf

💭
Sorry dear, i'm busy enjoying my life
View GitHub Profile

Keybase proof

I hereby claim:

  • I am faaaaaaadhil on github.
  • I am lihdaf (https://keybase.io/lihdaf) on keybase.
  • I have a public key ASCYeCsM_vqvLGjy7XUKxtJtybwYhgXIUF5x7l5fCWGG0Ao

To claim this, I am signing this object:

@lihdaf
lihdaf / stopwatch.py
Created November 19, 2017 05:41 — forked from igniteflow/stopwatch.py
A simple stopwatch implemented in Python
import datetime
class Timer(object):
"""A simple timer class"""
def __init__(self):
pass
def start(self):
"""Starts the timer"""