Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vsevagen/vsevagen


https://github.com/vsevagen/vsevagen

Last synced: about 1 month ago
JSON representation

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;
```