from datetime import datetime, timedelta
class Attributes(Aashay):
@staticmethod
def contact() -> tuple:
email = "[email protected]"
linkedin = "https://www.linkedin.com/in/abd77/"
return email, linkedin
@staticmethod
def life() -> tuple:
langs = ['English', 'Hindi']
nationality = 'Indian'
dob_str = "17th July 1997" # Given date of birth
dob = datetime.strptime(dob_str, "%dth %B %Y")
age = (datetime.now() - dob)
return langs, nationality, age
@staticmethod
def coding() -> tuple:
langs = ['python', 'go', 'typescript', 'java']
databases = ['PostgreSQL','MongoDB','ApacheKafka']
frameworks = ['Grpc/protocol-buffers', 'websockets',
'FlasAPI', 'Pytorch', 'Pytorch-Geometric']
specialities = ['backend', 'distributed systems', 'AI/ML']
environnement = ['vscode', 'nano']
return langs, databases, frameworks, specialities, environnement
@staticmethod
def projects() -> tuple:
return {
"Ask": {
"link": "https://chromewebstore.google.com/detail/ask/donmdonnblkneanplkifkejjlnhjjlhh/",
"Descrition": "Chrome extension personalized AI assistant leveraging memory recall and context awareness"
},
"RPi4b_cellular_OBDscanner": {
"link": "https://github.com/AashayBhupendraDoshi/RPi4b_cellular_OBDscanner",
"Descrition": "OBD2 and Sensor Data Collection Agent for Raspberry Pi"
},
"py_Face_Search": {
"link": "https://github.com/AashayBhupendraDoshi/py_Face_Search",
"Descrition": "Python based GUI application for single and multi face search"
},
}
-
Amazon
- in/abd77
Popular repositories Loading
-
-
Multi_pool_convolution
Multi_pool_convolution PublicMulti-pooling convolution algorithm for Explainable Geometric Deep Learning
Jupyter Notebook 2
-
-
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.



