devproje/README.md
2022-09-22 22:16:24 +09:00

83 lines
2.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```c
// main.c
#include <stdio.h>
#include <stdlib.h>
#define MAX_MESSAGE_SIZE 30
int main(int argc, char **argv) {
char *str = malloc(sizeof(char) * MAX_MESSAGE_SIZE);
str = argv[1];
puts(str);
free(str);
return 0;
}
```
```sh
[projecttl@fedora ~]$ gcc -o a.out main.c
[projecttl@fedora ~]$ ./a.out 'Hello, World!'
Hello, World!
[projecttl@fedora ~]$
```
<br/>
### <div align="center">I'm Project_TL, A student developer 👨‍💻 working since 2015 🚀</div>
- 🔭 Im currently working on [Cube Connect](https://github.com/cube1dev)
- 🌱 Im currently learning Rust
- ❓ Ask me about anything related to Minecraft Server Bukkit API
- ⚡ Fun fact:
- C not have bool type.(If not including stdbool.h)
- HTML is **not** programming language.
<br/>
## Connect with me
<a href="https://github.com/devproje">
<img src="https://img.shields.io/badge/GitHub-181717?style=flat-square&logo=github&logoColor=white"/>
</a>
<a href="https://cube1.dev/discord">
<img src="https://img.shields.io/badge/Discord-5865F2?style=flat-square&logo=discord&logoColor=white"/>
</a>
<a href="https://www.youtube.com/channel/UCbFF-pr6prqOLUFbwJEZ16g">
<img src="https://img.shields.io/badge/YouTube-FF0000?style=flat-square&logo=youtube&logoColor=white">
</a>
<br/>
## Github Stats
<div align="left">
<img src="https://github-readme-stats.vercel.app/api?username=devproje&show_icons=true&theme=dark&count_private=true&hide_border=true" align="center" />
<img src="https://github-readme-stats.vercel.app/api/top-langs/?username=devproje&theme=dark&hide_border=true&layout=compact" align="center" />
<br/>
</div>
<br/>
## Using Languages
<a href="https://en.cppreference.com/w/c">
<img src="https://img.shields.io/badge/C-A8B9CC?style=flat-square&logo=c&logoColor=white"/>
</a>
<a href="https://golang.org/doc">
<img src="https://img.shields.io/badge/Go-00ADD8?style=flat-square&logo=go&logoColor=white"/>
</a>
<a href="https://www.rust-lang.org/">
<img src="https://img.shields.io/badge/Rust-000000?style=flat-square&logo=Rust&logoColor=white"/>
</a>
<a href="https://kotlinlang.org/docs/home.html">
<img src="https://img.shields.io/badge/Kotlin-7F52FF?style=flat-square&logo=kotlin&logoColor=white"/>
</a>
<a href="https://docs.scala-lang.org/">
<img src="https://img.shields.io/badge/Scala-DC322F?style=flat-square&logo=scala&logoColor=white"/>
</a>
<a href="https://nodejs.org/en/docs">
<img src="https://img.shields.io/badge/Node.js-339933?style=flat-square&logo=Node.js&logoColor=white"/>
</a>
<a href="https://www.docker.com/">
<img src="https://img.shields.io/badge/Docker-2496ED?style=flat-square&logo=Docker&logoColor=white"/>
</a>
<a href="https://svelte.dev/">
<img src="https://img.shields.io/badge/Svelte-FF3E00?style=flat-square&logo=Svelte&logoColor=white"/>
</a>
<a href="https://www.mongodb.com/">
<img src="https://img.shields.io/badge/MongoDB-47A248?style=flat-square&logo=MongoDB&logoColor=white"/>
</a>
<br/>