diff --git a/README.md b/README.md index 1ef4261..e0d6585 100644 --- a/README.md +++ b/README.md @@ -1,96 +1,191 @@ -```go -package main +## 🚧 Projects +- Minecraft Kotlin Paper GUI Library: [InventoryGUI](https://github.com/devproje/InventoryGUI) +- Simple Chatting application + - Frontend: [simple-chat-frontend](https://github.com/devproje/simple-chat-frontend) + - Backend: [simple-chat](https://github.com/devproje/simple-chat) +- Golang discord bot extender for discordgo: [kuma-engine](https://github.com/devproje/kuma-engine-v2) +## šŸ”— Connect with me +
+ + + + + + + + + + + + + + + +
-import ( - "fmt" - "encoding/json" -) +## šŸ“ƒ Github Stats +
+ + + + +
-type Person struct { - Name string `json:"name"` - Age int `json:"age"` -} - -func main() { - raw := []byte(`{"name":"Project_IO","age":20}`) - - var data Person - err := json.Unmarshal(raw, &data) - if err != nil { - panic(err) - } - - fmt.Printf("NAME: %s\nAGE: %d\n", data.Name, data.Age) -} -``` -```bash -projecttl@fedora:~$ go run main.go -NAME: Project_IO -AGE: 20 -projecttl@fedora:~$ -``` -
- -###
I'm Project_IO, A backend developer šŸ‘Øā€šŸ’» working since 2015 šŸš€
- -- šŸ”­ I’m currently working on [Project_IO's Official Workspace](https://github.com/project-official) -- 🌱 I’m currently learning Android, erlang, elixer -- ā“ Ask me about anything related to Linux, Minecraft Plugin -- ⚔ Fun fact: - - HTML is **not** programming language.
- -## Services - -## Connect with me - - - - - - - - - -
- -## Github Stats -![devproje's github status](https://github-readme-stats.vercel.app/api?username=devproje&show_icons=true&theme=default&count_private=true) -
-![devproje's top lang](https://github-readme-stats.vercel.app/api/top-langs/?username=devproje&theme=default&layout=compact) - -## Using Languages - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+## šŸ”§ Skills + + + + + + + + + + + + + + + + + + + + + + + + + + +
LanguageApplicationDevOps
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/main.c b/main.c index cef06e2..3367525 100644 --- a/main.c +++ b/main.c @@ -4,27 +4,28 @@ #define MAX_STRING_SIZE 50 -struct person { - char name[MAX_STRING_SIZE]; - char email[MAX_STRING_SIZE]; - char job[MAX_STRING_SIZE]; - int age; -}; +typedef struct { + char name[MAX_STRING_SIZE]; + char email[MAX_STRING_SIZE]; + char job[MAX_STRING_SIZE]; + int age; +} Person; -int main(int argc, char **argv) { - struct person *project = malloc(sizeof(struct person)); - strcpy(project->name, "Project_IO"); - strcpy(project->job, "Student, Backend Developer"); - strcpy(project->email, "me@projecttl.net"); - project->age = 18; - - puts(strcat(project->name, "'s Profile:")); - printf("\tname: %s\n", project->name); - printf("\tage: %d\n", project->age); - printf("\tjob: %s\n", project->job); - printf("\temail: %s\n", project->email); +int main(int argc, char **argv) +{ + Person *project = malloc(sizeof(Person)); + strcpy(project->name, "Project_IO"); + strcpy(project->job, "Student, Backend Developer"); + strcpy(project->email, "me@projecttl.net"); + project->age = 20; + + printf("%s's Profile\n", project->name); + printf("\tname: %s\n", project->name); + printf("\tage: %d\n", project->age); + printf("\tjob: %s\n", project->job); + printf("\temail: %s\n", project->email); - free(project); + free(project); - return 0; + return 0; }