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

https://github.com/u7p4l-in/profile

Profile
https://github.com/u7p4l-in/profile

Last synced: 3 months ago
JSON representation

Profile

Awesome Lists containing this project

README

          

Profile


Simple site to group all my profiles on social networks in one place.

## About the project

This is an open source project that serves as a free alternative to the Linktree website.
- [Demo](https://u7p4l-in.github.io/Profile/)

## 👨‍💻 Quotes:
```go
package main

import "fmt"

type Person struct {
name string
username string
age int
hobbies []string
job string
}

func main() {
var me = new(Person)

me.name = "U7P4L 1N"
me.username = "U7P4L-IN"
me.age = "20"
me.job = "ai developer | web developer"
me.hobbies = []string{"code", "anime", "music"," singing"}

fmt.Println(me)
}
```