Skip to content

Commit

Permalink
Added radnafi.md (kautukkundan#231)
Browse files Browse the repository at this point in the history
* Added radnafi.md

* Met specifications

Forgot to add the star and accreditation at the bottom of the file
  • Loading branch information
ajmeese7 authored Oct 1, 2020
1 parent 06b12ab commit 38d24c4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions code-styled/rednafi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
```python

from dataclasses import dataclass
from typing import Tuple


class Meta(type):
def __new__(cls, name, bases, attrs):
new_cls = super().__new__(cls, name, bases, attrs)
return dataclass(unsafe_hash=True, frozen=True)(new_cls)


class Bio(metaclass=Meta):
name : str = "Redowan Delowar"
designation : str = "Data Scientist"
company : str = "ShopUp"
base : str = "Dhaka, Bangladesh"
blog : str = "rednafi.github.io/digressions"


class Stack(metaclass=Meta):
languages : Tuple[str, ...] = ("Python", "Go", "Shell")
databases : Tuple[str, ...] = ("MySQL", "PostgreSQL", "Mongo", "Redis")
misc : Tuple[str, ...] = ("Docker", "Celery")
ongoing : Tuple[str, ...] = ("Django", "GraphQL")


class Social(metaclass=Meta):
twitter : str = "rednafi"
linkedin : str = "redowan"
```

⭐️ From [rednafi](https://github.com/rednafi)

0 comments on commit 38d24c4

Please sign in to comment.