Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vsevagen/vsevagen
https://github.com/vsevagen/vsevagen
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/vsevagen/vsevagen
- Owner: VSevagen
- Created: 2021-02-02T09:54:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T08:53:20.000Z (almost 2 years ago)
- Last Synced: 2024-11-04T08:42:28.347Z (3 months ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Hi there, I'm Sevagen 👋
![visitors](https://page-views.glitch.me/badge?page_id=VSevagen.VSevagen)
[![Twitter Follow](https://img.shields.io/twitter/follow/SevagenV?label=Follow)](https://twitter.com/intent/follow?screen_name=SevagenV)
[![Linkedin: Sevagen](https://img.shields.io/badge/-Sevagen-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/veerasamy-sevagen/)](https://www.linkedin.com/in/veerasamy-sevagen/)```javascript
import React, { UseState } from "react";function Sevagen() {
const [pronous, setPronouns] = useState(["He", "Him", "His"]);
const [askMeAbout, setAskMeAbout] = useState(["web dev","tech","GNOME","scuba diving","Git"]);
const [code, setCode] = useState(["Javascript", "C++", "Python"]);
const [learning, setLearning] = useState(["React", "Django", "GraphQL"]);return (
I'm a 3rd year computer science student from Amrita Vishwa Vidyapeetham, in the state of Kerala
and I'm from Mauritius. You can address me as {`${pronouns}`} and ask me about {`${askMeAbout}`}
I'm knowledgable in {`${code}`} and currently learning {`${learning}`}
I love connecting with different people so if you want to say hi,
I'll be happy to meet you more!Reach me through email: [email protected] or just google me :)
);
}const error = "Don't try to compile this, you'll get errors :)"
export default Sevagen;
```