<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://dis-525.github.io/blog/feed.xml" rel="self" type="application/atom+xml" /><link href="https://dis-525.github.io/blog/" rel="alternate" type="text/html" /><updated>2026-02-12T12:21:44+00:00</updated><id>https://dis-525.github.io/blog/feed.xml</id><title type="html">Personal Blog</title><subtitle>This is where I share cool stuff about my life</subtitle><author><name>Your Name</name></author><entry><title type="html">Cornell Note Taking</title><link href="https://dis-525.github.io/blog/2026/02/09/Second-Post.html" rel="alternate" type="text/html" title="Cornell Note Taking" /><published>2026-02-09T00:00:00+00:00</published><updated>2026-02-09T00:00:00+00:00</updated><id>https://dis-525.github.io/blog/2026/02/09/Second-Post</id><content type="html" xml:base="https://dis-525.github.io/blog/2026/02/09/Second-Post.html"><![CDATA[<h1 id="subject-cornell-note-taking">Subject: Cornell Note Taking</h1>
<p><strong>Date:</strong> YYYY-MM-DD | <strong>Course:</strong> [Course Name]</p>

<table>
  <thead>
    <tr>
      <th style="text-align: left">Cues &amp; Questions</th>
      <th style="text-align: left">Notes &amp; Details</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td style="text-align: left">What is X?</td>
      <td style="text-align: left">X is a method used for…</td>
    </tr>
    <tr>
      <td style="text-align: left">Key Formula</td>
      <td style="text-align: left">$E = mc^2$</td>
    </tr>
    <tr>
      <td style="text-align: left">Example Case</td>
      <td style="text-align: left">In the 1920s, this was applied to…</td>
    </tr>
  </tbody>
</table>

<h2 id="-summary">📝 Summary</h2>
<p><em>Write a 3-4 sentence summary of the main points covered in these notes.</em></p>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[Subject: Cornell Note Taking Date: YYYY-MM-DD | Course: [Course Name]]]></summary></entry><entry><title type="html">First Blog Post</title><link href="https://dis-525.github.io/blog/2026/02/07/First-Post.html" rel="alternate" type="text/html" title="First Blog Post" /><published>2026-02-07T00:00:00+00:00</published><updated>2026-02-07T00:00:00+00:00</updated><id>https://dis-525.github.io/blog/2026/02/07/First-Post</id><content type="html" xml:base="https://dis-525.github.io/blog/2026/02/07/First-Post.html"><![CDATA[<h3 id="what-is-markdown">What is Markdown?</h3>
<p>Markdown is a lightweight markup language that you can use to format plain text documents.<br />
Write docs for your GitHub projects, edit your GitHub profile <em>README</em> etc. You fill find it all here.</p>

<p>Let’s dive into it. ⤵️</p>

<h4 id="table-of-contents">Table of Contents</h4>

<ol>
  <li><a href="#paragraph">Paragraph</a></li>
  <li><a href="#headings">Headings</a></li>
  <li><a href="#emphasis">Emphasis</a></li>
  <li><a href="#blockquote">Blockquote</a></li>
  <li><a href="#images">Images</a></li>
  <li><a href="#links">Links</a></li>
  <li><a href="#code">Code</a></li>
  <li><a href="#lists">Lists</a>
    <ul>
      <li><a href="#orderedlist">Ordered List</a></li>
      <li><a href="#unorderedlist">Unordered List</a></li>
      <li><a href="#mixedlist">Mixed List</a></li>
    </ul>
  </li>
  <li><a href="#table">Table</a></li>
  <li><a href="#tasklist">Task List</a></li>
  <li><a href="#footnote">Footnote</a></li>
  <li><a href="#sectionjump">Jump to section</a></li>
  <li><a href="#horizontalline">Horizontal Line</a></li>
  <li><a href="#html">HTML</a></li>
</ol>

<hr />

<h2 id="paragraph">Paragraph</h2>
<p>By writing regular text you are basically writing a paragraph.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>This is a paragraph.
</code></pre></div></div>
<p>This is a paragraph.</p>

<hr />

<h2 id="headings">Headings</h2>
<p>There are 6 heading variants. The number of “#” symbols, followed by text, indicates the importance of the heading.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
</code></pre></div></div>

<h1 id="heading-1">Heading 1</h1>
<h2 id="heading-2">Heading 2</h2>
<h3 id="heading-3">Heading 3</h3>
<h4 id="heading-4">Heading 4</h4>
<h5 id="heading-5">Heading 5</h5>
<h6 id="heading-6">Heading 6</h6>

<hr />

<h2 id="emphasis">Emphasis</h2>
<p>Modifying text is so neat and easy. You can make your text bold, italic and strikethrough.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>Using two asterisks **this text is bold**.  
Two underscores __work as well__.  
Let's make it *italic now*.  
You guessed it, _one underscore is also enough_.  
Can we combine **_both of that_?** Absolutely.
What if I want to ~~strikethrough~~?
</code></pre></div></div>

<p>Using two asterisks <strong>this text is bold</strong>.<br />
Two underscores <strong>work as well</strong>.<br />
Let’s make it <em>italic now</em>.<br />
You guessed it, <em>one underscore is also enough</em>.<br />
Can we combine <strong><em>both of that</em>?</strong> Absolutely.<br />
What if I want to <del>strikethrough</del>?</p>

<hr />

<h2 id="blockquote">Blockquote</h2>
<p>Want to emphasise importance of the text? Say no more.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&gt; This is a blockquote.
&gt; Want to write on a new line with space between?
&gt;
&gt; &gt; And nested? No problem at all.
&gt; &gt;
&gt; &gt; &gt; PS. you can **style** your text _as you want_.
</code></pre></div></div>

<blockquote>
  <p>This is a blockquote.
Want to write on a new line with space between?</p>

  <blockquote>
    <p>And nested? No problem at all.</p>

    <blockquote>
      <p>PS. you can <strong>style</strong> your text <em>as you want</em>. :</p>
    </blockquote>
  </blockquote>
</blockquote>

<hr />

<p><a name="images"></a></p>

<h2 id="images">Images</h2>
<p>The best way is to simply drag &amp; drop image from your computer directly. You can also create reference to image and assign it that way.<br />
Here is the syntax.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>![text if the image fails to load](auto-generated-path-to-file-when-you-upload-image "Text displayed on hover")

[logo]: auto-generated-path-to-file-when-you-upload-image "Hover me"
![error text][logo]
</code></pre></div></div>

<p><img src="https://user-images.githubusercontent.com/46372998/212541682-9907aaea-5198-45a9-8961-2acc8a98a0db.png" alt="text if the image fails to load" title="Text displayed on hover" /></p>

<p><img src="https://user-images.githubusercontent.com/46372998/212541682-9907aaea-5198-45a9-8961-2acc8a98a0db.png" alt="error text" title="Hover me" /></p>

<hr />

<h2 id="links">Links</h2>
<p>Similar to images, links can also be inserted directly or by creating a reference. You can create both inline and block links.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>[markdown-cheatsheet]: https://github.com/im-luka/markdown-cheatsheet
[docs]: https://github.com/adam-p/markdown-here

[Like it so far? Follow me on GitHub](https://github.com/im-luka)
[My Markdown Cheatsheet - star it if you like it][markdown-cheatsheet]
Find some great docs [here][docs]
</code></pre></div></div>

<p><a href="https://github.com/im-luka">Like it so far? Follow me on GitHub</a><br />
<a href="https://github.com/im-luka/markdown-cheatsheet">My Markdown Cheatsheet - star it if you like it</a><br />
Find some great docs <a href="https://github.com/adam-p/markdown-here">here</a></p>

<hr />

<h2 id="code">Code</h2>
<p>You can cerate both inline and full block code snippets. You can also define programming language you were using in your snippet. All by using backticks.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>    I created `.env` file at the root.
    Backticks inside backticks? `` `No problem.` ``

    ```
    {
      learning: "Markdown",
      showing: "block code snippet"
    }
    ```

    ```js
    const x = "Block code snippet in JS";
    console.log(x);
    ```
</code></pre></div></div>

<p>I created <code class="language-plaintext highlighter-rouge">.env</code> file at the root.
Backticks inside backticks? <code class="language-plaintext highlighter-rouge">`No problem.`</code></p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>{
  learning: "Markdown",
  showing: "block code snippet"
}
</code></pre></div></div>

<div class="language-js highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">const</span> <span class="nx">x</span> <span class="o">=</span> <span class="dl">"</span><span class="s2">Block code snippet in JS</span><span class="dl">"</span><span class="p">;</span>
<span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="nx">x</span><span class="p">);</span>
</code></pre></div></div>

<hr />

<h2 id="lists">Lists</h2>
<p>As you can do in HTML, Markdown allows creating of both ordered and unordered lists.</p>

<h3 id="ordered-list">Ordered List</h3>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>1. HTML
2. CSS
3. Javascript
4. React
7. I'm Frontend Dev now 👨🏼‍🎨
</code></pre></div></div>

<ol>
  <li>HTML</li>
  <li>CSS</li>
  <li>Javascript</li>
  <li>React</li>
  <li>I’m Frontend Dev now 👨🏼‍🎨</li>
</ol>

<h3 id="unordered-list">Unordered List</h3>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>- Node.js
+ Express
* Nest.js
- Learning Backend ⌛️
</code></pre></div></div>

<ul>
  <li>Node.js</li>
  <li>Express</li>
  <li>Nest.js</li>
  <li>Learning Backend ⌛️</li>
</ul>

<h3 id="mixed-list">Mixed List</h3>
<p>You can also mix both of the lists and create sublists.<br />
<strong>PS.</strong> Try not to create lists deeper than two levels. It is the best practice.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>1. Learn Basics
   1. HTML
   2. CSS
   7. Javascript
2. Learn One Framework
   - React 
     - Router
     - Redux
   * Vue
   + Svelte
</code></pre></div></div>

<ol>
  <li>Learn Basics
    <ol>
      <li>HTML</li>
      <li>CSS</li>
      <li>Javascript</li>
    </ol>
  </li>
  <li>Learn One Framework
    <ul>
      <li>React
        <ul>
          <li>Router</li>
          <li>Redux</li>
        </ul>
      </li>
      <li>Vue</li>
      <li>Svelte</li>
    </ul>
  </li>
</ol>

<hr />

<h2 id="table">Table</h2>
<p>Great way to display well-arranged data. Use “|” symbol to separate columns and “:” symbol to align row content.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>| Left Align (default) | Center Align | Right Align |
| :------------------- | :----------: | ----------: |
| React.js             | Node.js      | MySQL       |
| Next.js              | Express      | MongoDB     |
| Vue.js               | Nest.js      | Redis       |
</code></pre></div></div>

<table>
  <thead>
    <tr>
      <th style="text-align: left">Left Align (default)</th>
      <th style="text-align: center">Center Align</th>
      <th style="text-align: right">Right Align</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td style="text-align: left">React.js</td>
      <td style="text-align: center">Node.js</td>
      <td style="text-align: right">MySQL</td>
    </tr>
    <tr>
      <td style="text-align: left">Next.js</td>
      <td style="text-align: center">Express</td>
      <td style="text-align: right">MongoDB</td>
    </tr>
    <tr>
      <td style="text-align: left">Vue.js</td>
      <td style="text-align: center">Nest.js</td>
      <td style="text-align: right">Redis</td>
    </tr>
  </tbody>
</table>

<hr />

<h2 id="task-list">Task List</h2>
<p>Keeping track of the tasks that are done, and those that need to be done.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>- [x] Learn Markdown
- [ ] Learn Frontend Development
- [ ] Learn Full Stack Development
</code></pre></div></div>

<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Learn Markdown</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Learn Frontend Development</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Learn Full Stack Development</li>
</ul>

<hr />

<h2 id="footnote">Footnote</h2>
<p>Want to describe something at the end of the file? Use footnote!</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>#### I am working on a new project. [^1]
[^1]: Stack is: React, Typescript, Tailwind CSS  

Project is about music &amp; movies.

##### Hope you will like it. [^see]
[^see]: Loading... ⌛️
</code></pre></div></div>

<h4 id="i-am-working-on-a-new-project-">I am working on a new project. <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup></h4>

<p>Project is about music &amp; movies.</p>

<h5 id="hope-you-will-like-it-">Hope you will like it. <sup id="fnref:see" role="doc-noteref"><a href="#fn:see" class="footnote" rel="footnote">2</a></sup></h5>

<hr />

<h2 id="jump-to-section">Jump to section</h2>
<p>You can give ID to a section so that you can jump straight to that part of the file from wherever you are.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>[Jump to a section with custom ID](#some-id)

...

&lt;a name="some-id" /&gt;

##### Section with some ID
</code></pre></div></div>

<p><a href="#some-id">Jump to a section with custom ID</a></p>

<hr />

<h2 id="horizontal-line">Horizontal Line</h2>
<p>You can use asterisks, hyphens or underlines (*, -, _) to create horizontal line.<br />
The only rule is that you must include at least three chars of the symbol.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>First Horizontal Line

***

Second One

-----

Third

_________
</code></pre></div></div>

<p>First Horizontal Line</p>

<hr />

<p>Second One</p>

<hr />

<p>Third</p>

<hr />

<hr />

<h2 id="html">HTML</h2>
<p>You can also use raw HTML in your Markdown file. Most of the times that will work well, but sometimes you can experience some differences that you are not used to when working with standard HTML. Using CSS will not work.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&lt;h1&gt;This is a heading&lt;/h1&gt;
&lt;p&gt;Paragraph...&lt;/p&gt;

&lt;hr /&gt;

&lt;img src="auto-generated-path-to-file-when-you-upload-image" width="200"&gt;
&lt;a href="https://github.com/im-luka"&gt;Follow me on GitHub&lt;/a&gt;

&lt;br /&gt;
&lt;br /&gt;

&lt;p&gt;Quick hack for &lt;strong&gt;&lt;em&gt;centering image&lt;/em&gt;&lt;/strong&gt;?&lt;/p&gt;
&lt;p align="center"&gt;&lt;img src="auto-generated-path-to-file-when-you-upload-image" /&gt;&lt;/p&gt;

&lt;details&gt;
  &lt;summary&gt;One more quick hack? 🎭&lt;/summary&gt;
  
  → Easy  
  → And simple
&lt;/details&gt;
</code></pre></div></div>

<h1>This is a heading</h1>
<p>Paragraph...</p>

<hr />

<p><img src="https://user-images.githubusercontent.com/46372998/212544874-d0654588-82f7-44f2-bbfa-2bf85fd73854.png" width="200" />
<a href="https://github.com/im-luka">Follow me on GitHub</a></p>

<p><br />
<br /></p>

<p>Quick hack for <strong><em>centering image</em></strong>?</p>
<p align="center"><img src="https://user-images.githubusercontent.com/46372998/212544874-d0654588-82f7-44f2-bbfa-2bf85fd73854.png" width="200" /></p>

<details>
  <summary>One more quick hack? 🎭</summary>
  
  → Easy  
  → And simple
</details>

<hr />

<p><a name="some-id"></a></p>

<h5 id="section-with-some-id">Section with some ID</h5>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1" role="doc-endnote">
      <p>Stack is: React, Typescript, Tailwind CSS <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:see" role="doc-endnote">
      <p>Loading… ⌛️ <a href="#fnref:see" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[What is Markdown? Markdown is a lightweight markup language that you can use to format plain text documents. Write docs for your GitHub projects, edit your GitHub profile README etc. You fill find it all here.]]></summary></entry><entry><title type="html">Third Blog Post Title</title><link href="https://dis-525.github.io/blog/2025/12/03/Third-Name.html" rel="alternate" type="text/html" title="Third Blog Post Title" /><published>2025-12-03T00:00:00+00:00</published><updated>2025-12-03T00:00:00+00:00</updated><id>https://dis-525.github.io/blog/2025/12/03/Third-Name</id><content type="html" xml:base="https://dis-525.github.io/blog/2025/12/03/Third-Name.html"><![CDATA[<p>This post outlines a comprehensive and exemplary framework for structuring your blog entries, specifically designed to streamline the process of note taking approach.</p>

<h1 id="your-compelling-blog-post-title">Your Compelling Blog Post Title</h1>

<table>
  <tbody>
    <tr>
      <td>*Published: [Date]</td>
      <td>Reading time: [X] minutes*</td>
    </tr>
  </tbody>
</table>

<h2 id="introduction">Introduction</h2>

<p>Hook your readers with an engaging opening paragraph that clearly states what they’ll learn or gain from reading this post.</p>

<h2 id="the-problemchallenge">The Problem/Challenge</h2>

<p>Describe the problem or challenge that your post addresses. This helps readers understand why this topic matters.</p>

<h2 id="solutionmain-content">Solution/Main Content</h2>

<h3 id="subheading-1">Subheading 1</h3>

<p>Detailed explanation of your first main point.</p>

<h3 id="subheading-2">Subheading 2</h3>

<p>Your second main point with supporting details.</p>

<h3 id="subheading-3">Subheading 3</h3>

<p>Additional insights or examples.</p>

<h2 id="key-takeaways">Key Takeaways</h2>

<ul>
  <li>📌 Important point 1</li>
  <li>📌 Important point 2</li>
  <li>📌 Important point 3</li>
</ul>

<h2 id="conclusion">Conclusion</h2>

<p>Summarize the main points and provide a clear call-to-action for your readers.</p>

<hr />

<p><em>What are your thoughts on [topic]? Share your experience in the comments below!</em></p>

<h3 id="about-the-author">About the Author</h3>

<p>Brief bio and credentials that establish your authority on the topic.</p>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[This post outlines a comprehensive and exemplary framework for structuring your blog entries, specifically designed to streamline the process of note taking approach.]]></summary></entry><entry><title type="html">Weekly Status Report</title><link href="https://dis-525.github.io/blog/2025/11/18/Weekly-report.html" rel="alternate" type="text/html" title="Weekly Status Report" /><published>2025-11-18T00:00:00+00:00</published><updated>2025-11-18T00:00:00+00:00</updated><id>https://dis-525.github.io/blog/2025/11/18/Weekly-report</id><content type="html" xml:base="https://dis-525.github.io/blog/2025/11/18/Weekly-report.html"><![CDATA[<p><img src="/assets/asli-ozcan-01.jpg" alt="test" /></p>

<p>Type something new… Or delete the content.
This post outlines a comprehensive and exemplary framework for structuring your notes, specifically designed to streamline the process of creating your weekly reports.</p>

<h1 id="weekly-status-report">Weekly Status Report</h1>
<p><strong>Date:</strong> [Date] | <strong>Owner:</strong> [Name]</p>

<h2 id="-executive-summary">🎯 Executive Summary</h2>
<p><em>Briefly summarize the week’s key achievements and overall status.</em></p>

<h2 id="-key-accomplishments">🚀 Key Accomplishments</h2>
<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Completed Project Alpha phase 1</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Shipped feature B to production</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Resolved critical bug #102</li>
</ul>

<h2 id="-work-in-progress">🚧 Work in Progress</h2>
<ul>
  <li><strong>Project X:</strong> 50% complete. Waiting on design assets.</li>
  <li><strong>Project Y:</strong> 80% complete. In QA review.</li>
</ul>

<h2 id="️-blockers--risks">⚠️ Blockers &amp; Risks</h2>
<p>| Issue | Impact | Mitigation |
| :— | :— | :— |
| API Downtime | High | Switched to cached data |
| Resource Shortage | Medium | Requested freelance help |</p>

<h2 id="-next-weeks-goals">📅 Next Week’s Goals</h2>
<ol>
  <li>Finalize Project X</li>
  <li>Start planning for Q3</li>
</ol>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[]]></summary></entry></feed>