#!/usr/bin/python
# -*- coding: utf-8 -*-
class Developer:
def __init__(self):
self.name = "Rajdeep Ghosh"
self.age = 22
self.location = "Kolkata, India"
self.programming_languages = ["๐ Python", "๐ฆ Rust", "๐จ C", "โ Java"]
self.hobbies = ["๐ธ Playing Guitar", "๐ฎ Gaming", "๐๏ธ๐ถ๐ป Trekking"]
def about(self):
print(f"Hey! I am {self.name}. I love to build stuff!")
print(f"I'm {self.age} years old and based in {self.location}.")
print("\n๐ Programming Languages I Enjoy:")
for language in self.programming_languages:
print(f" - {language}")
print("\n๐ฏ Hobbies:")
for hobby in self.hobbies:
print(f" - {hobby}")
def ascii_art(self):
art = r"""
(\_/)
( โข_โข)
/ >๐ Coding the world!
"""
print(art)
if __name__ == '__main__':
me = Developer()
me.about()
me.ascii_art()
๐จโ๐
Exploring
- Latent Space
-
13:43
(UTC +05:30) - in/rumbleftw
- @rumbleFTW
- https://rumbleFTW.github.io
- https://huggingface.co/rumbleFTW
Pinned Loading
-
rusty-retro
rusty-retro PublicA collection of retro system emulators written in Rust. Currently implemented systems include CHIP-8 and NES
-
lung-cancer-detection
lung-cancer-detection PublicA novel pipeline for detecting lung cancer from CT scan images.
-
smart-traffic-monitor
smart-traffic-monitor PublicAutomated system to enforce the use of helmet in Indian roads and the penalty collection system.
-
krishi-sevak
krishi-sevak PublicA ML assisted toolset for Indian farmers for scientific andd modern farming advices.
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.