This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
π Morning 43 commits βββββββββββββββββββββ 22.8% | |
π Daytime 123 commits βββββββββββββββββββββ 65.1% | |
π Evening 19 commits βββββββββββββββββββββ 10.1% | |
π Night 4 commits βββββββββββββββββββββ 2.1% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TypeScript 8 hrs 15 mins βββββββββββββββββββββ 86.9% | |
JSON 21 mins βββββββββββββββββββββ 3.8% | |
Other 14 mins βββββββββββββββββββββ 2.6% | |
Mermaid 11 mins βββββββββββββββββββββ 1.9% | |
JavaScript 10 mins βββββββββββββββββββββ 1.9% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Rectangle(object): | |
def __init__(self, h, v): | |
self.h = h | |
self.v = v | |
def area(self): | |
return self.h * self.v | |
r = Rectangle(10, 20) |