From 202a38932685c5d2634cb2f099356e30c73c7965 Mon Sep 17 00:00:00 2001 From: Dev_Project Date: Fri, 20 May 2022 14:18:17 +0900 Subject: [PATCH] feat: change some profile info --- README.md | 286 +++++++++++++++++++++++++++++++++--------------------- main.c | 3 +- 2 files changed, 176 insertions(+), 113 deletions(-) diff --git a/README.md b/README.md index 9846b85..bebf62a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,32 @@ -###
I'm Dev_Project, A student developer šŸ‘Øā€šŸ’» working since 2015 šŸš€
+```c +// main.c +#include +#include + +#define MAX_MESSAGE_SIZE 30 + +int main(int argc, char **argv) { + char *str = malloc(sizeof(char) * MAX_MESSAGE_SIZE); + puts(str); + free(str); + + return 0; +} +``` +```sh +~$ gcc -o message main.c +~$ ./message 'Hello, World!' +Hello, World! +``` +
+ +###
I'm Project_TL, A student developer šŸ‘Øā€šŸ’» working since 2015 šŸš€
- šŸ”­ I’m currently working on [CUBE Connect](https://github.com/cube-connects) -- 🌱 I’m currently learning REST API -- ā“ Ask me about anything related to Minecraft plugin -- ⚔ Fun fact: - - I'm really hate C++ and Skript and Lua's Array first index. +- 🌱 I’m currently learning MCU(MicroController Unit) and Backend +- ā“ Ask me about anything related to Minecraft Server Bukkit +- ⚔ Fun fact: + - C not have bool type.(If not including stdbool.h) - HTML is **not** programming language.
@@ -15,117 +37,159 @@
-## Connect with me -
- - GitHub - - - Discord - - - Twitch - -
+## Connect with me + + + + + + + + + + + + +

-## Languages and Tools -
- C - Go - Kotlin - IntelliJ IDEA - Visual Studio Code - - Nginx - - - HTML5 - - - CSS3 - - - PHP - - - Bootstrap - - - Flutter - - Python - Java - Scala - - Dart - - C# - Bash - JavaScript - - TypeScript +## Using Tools and Languages +### Tools or Frameworks +> System + + + + + - - Node.js - Swift - - MongoDB - - - TeamCity - - - GCP - - - Git - - - Raspberry Pi - - - Docker - - - Linux - - - MySQL - - - Spring - - - Photoshop - - - Premiere Pro - -
- -## HATE THINGS -
- C++ - Skript -
- + + + + +> Database + + + + + + + + + + +### Langauges +> Scripts + + + + +> Frontend + + + + + + + + + + + + + +> System or Backend + + + + + + + + + + + + + + + + + + + + Ruby + + + + + + + + +> Application + + + + + + + + + + +## HATE THINGS +C++ +Skript \ No newline at end of file diff --git a/main.c b/main.c index 75fd2a1..76b4846 100644 --- a/main.c +++ b/main.c @@ -11,13 +11,12 @@ struct person { int main(int argc, char **argv) { struct person *project = malloc(sizeof(struct person)); - strcpy(project->name, "Project_TL"); strcpy(project->job, "Student"); strcpy(project->email, "me@projecttl.net"); project->age = 18; - puts("Current Profile:"); + puts(strcat(project->name, "'s Profile:")); printf("\tname: %s\n", project->name); printf("\tage: %d\n", project->age); printf("\tjob: %s\n", project->job);