https://github.com/riz4d/riz4d
https://github.com/riz4d/riz4d
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/riz4d/riz4d
- Owner: riz4d
- Created: 2021-09-15T04:59:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-10T03:57:49.000Z (over 1 year ago)
- Last Synced: 2025-02-08T07:13:55.333Z (over 1 year ago)
- Size: 861 KB
- Stars: 12
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Hey!!
```JS
// Profile data
interface Profile {
userId: string;
name: string;
pronouns: string;
profession: string;
hobbies: string[];
interestedIn: string[];
contacts: {
telegram: string;
tryHackMe: string;
linkedIn: string;
email: string;
};
}
const profile: Profile = {
userId: '@riz4d',
name: 'Mohamed Rizad',
pronouns: 'He/Him',
profession: 'Student',
hobbies: ["CTF's", 'Researching'],
interestedIn: ['Machine Learning', 'Cyber Security', 'Artificial Intelligence', 'Robotics'],
contacts: {
telegram: 'https://t.me/riz4d',
tryHackMe: 'https://tryhackme.com/p/Mohamedrizad',
linkedIn: 'https://linkedin.com/in/mohamedrizad/',
email: 'mailto:github@rizad.me',
},
};
```
[](https://holopin.io/@riz4d)