blog.html (3411B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 <link rel="icon" type="image/png" href="/img/favicon.png" /> 7 <title>Nirmal Kumar R - blog</title> 8 <link rel="stylesheet" href="/style.css" /> 9 </head> 10 11 <body> 12 <a href="/" class="header"> 13 <div class="logo"> 14 <img src="/img/nklogo.png" width="90px" /> 15 </div> 16 <p><img src="/img/nirmal-banner.png" height="70px"></p> 17 </a> 18 19 <nav> 20 <a href="/blog.html">Blog</a> 21 <a href="/poems.html">Poems</a> 22 <a href="/devlog.html">Devlog</a> 23 <a href="mailto:nirmal@posteo.net">Contact</a> 24 </nav> 25 26 <main> 27 <ul> 28 <li> 29 <a href="blog/when-my-mental-health-goes-down.html">What I do when my mental health goes down</a> 30 <span class="date">[2024-10-22]</span> 31 </li> 32 <li> 33 <a href="blog/a-bite-of-unconscious-way.html" 34 >A bite of unconscious way</a 35 > 36 <span class="date">[2024-08-10]</span> 37 </li> 38 <li> 39 <a href="blog/nothing-can-beat-this.html">Nothing can beat this</a> 40 <span class="date">[2024-03-11]</span> 41 </li> 42 43 <li> 44 <a href="blog/50-years.html">50 Years</a> 45 <span class="date">[2023-07-20]</span> 46 </li> 47 <li> 48 <a href="blog/creativity.html">Creativity</a> 49 <span class="date">[2023-04-20]</span> 50 </li> 51 <li> 52 <a href="blog/mid-of-the-crisis.html">Mid of the crisis</a> 53 <span class="date">[2023-02-07]</span> 54 </li> 55 <li> 56 <a href="blog/my-admiration-and-respect-for-bruce-lee.html" 57 >My admiration and respect for Bruce Lee</a 58 > 59 <span class="date">[2022-12-17]</span> 60 </li> 61 <li> 62 <a href="blog/in-praise-of-silent-voice.html" 63 >In praise of silent voice</a 64 > 65 <span class="date">[2022-10-20]</span> 66 </li> 67 <li> 68 <a href="blog/time-goes-by-and-does-life-grow-in-you.html" 69 >Time goes by and does life grow in you?</a 70 > 71 <span class="date">[2022-07-09]</span> 72 </li> 73 <li> 74 <a href="blog/occurrence-and-non-occurrence.html" 75 >Occurrence and non-occurrence</a 76 > 77 <span class="date">[2022-05-04]</span> 78 </li> 79 <li> 80 <a href="blog/is-it-really-smart-work.html" 81 >Is it really smart work?</a 82 > 83 <span class="date">[2022-05-02]</span> 84 </li> 85 <li> 86 <a href="blog/hello-from-mysticmode.html">Hello from mysticmode</a> 87 <span class="date">[2021-11-28]</span> 88 </li> 89 <li> 90 <a href="blog/interview-with-annamalai-swami-by-jim-lemkin.html" 91 >Interview with Annamalai Swami by Jim Lemkin</a 92 > 93 <span class="date">[2020-11-10]</span> 94 </li> 95 </ul> 96 </main> 97 98 <footer> 99 <hr /> 100 © Nirmal Kumar R. All original text, is licensed under a 101 <a href="http://creativecommons.org/licenses/by/4.0/" 102 >Creative Commons Attribution 4.0 International License</a 103 >. Source code of this website can be found 104 <a href="https://git.sr.ht/~mysticmode/nirm.al">here</a>. 105 </footer> 106 </body> 107 </html>