DEV Community

Cover image for Talk About Code
M. Fauzilkamil Zainuddin
M. Fauzilkamil Zainuddin

Posted on

Talk About Code

Long time ago, I was writing about code and my journey in helping other coders in my blog http://coderstalk.blogspot.com

It's been a while that I haven't doing that anymore since I got super busy with my screen printing hobby and business.

Last year, I found this dev.to platform. And this is my first post.

The fact that in all these years of silence, I'm not totally stop writing about coding and my experiences. It's just I'm not really motivated to write for public readers. I just wrote a lot of notes for myself in markdown and keep it all in my note folder for myself.

I'm back

While writing this first dev.to post, I feel like home. Because I'm still writing in Markdown and I can paste my code as usual:

#!/bin/bash

echo "Hello world, Coder's Talk is back!!"

This post is basically my exploration in dev.to platform.

The Markdown feels the same like github but mermaid is not working.


```mermaid
graph TD;
  A-->B;
  A-->C;
  B-->D;
  C-->D;
  D-->A;
```

However, I love the way syntax highlighting like this diff is working

+ hello reader
- heyo who ever you are

and php...

<?php
$title = "apogee @ dev.to";
// who ever you are reading this...
echo "Welcome to ".$title;
?>

and c...

void function read_me() {
   printf("I'm glad you still reading this!");
}

and python...

# this is python greetings
print("Greetings to my reader!")

Anyway, I'm okay with it and I'm feeling grateful to whatever it is.

Feel free to have conversation with me by dropping your comment below. So I know who enjoy reading this.

Thanks for reading!

Top comments (3)

Collapse
 
katnel20 profile image
Katie Nelson

I thought Mermaid was a plug-in for Markdown. If you need to use it in a post, you should request it as a new feature.

Collapse
 
apogee profile image
M. Fauzilkamil Zainuddin

Yes, Mermaid is a plug-in. It is good to have. I'm okay without it. I'm getting used to it in GitLab. Mermaid feature in github is not yet available either.

Collapse
 
katnel20 profile image
Katie Nelson

Thanks for reading my post and leaving a unicorn! You’re so nice to do that.