<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blog on My New Hugo Site</title><link>https://example.org/tags/blog/</link><description>Recent content from My New Hugo Site</description><generator>Hugo</generator><language>en</language><managingEditor>pathakdivy03@gmail.com (Divy Pathak)</managingEditor><webMaster>pathakdivy03@gmail.com (Divy Pathak)</webMaster><copyright>All articles on this blog are licensed under the BY-NC-SA license agreement unless otherwise stated. Please indicate the source when reprinting!</copyright><lastBuildDate>Wed, 01 Oct 2025 22:07:57 +0530</lastBuildDate><atom:link href="https://example.org/tags/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>Solved 4 in Div 4</title><link>https://example.org/post/first-time-solving-4-questions-in-div-4/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/first-time-solving-4-questions-in-div-4/</guid><description>
<![CDATA[<h1>Solved 4 in Div 4</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <p>#cpp #contest #div4</p>
<p>It is with great honor I announce to you that for the first time, I have solved 4 questions in a Div 4 contest on codeforces within 40 mins and without any wrong attempt.</p>
<ul>
<li>1st question was too basic, solved under 2 mins</li>
<li>2nd was also very easy but expecting it to be tricky submitted it a bit late than I must have.</li>
<li>3rd was a good question and had to use vector of pairs but solved it.</li>
<li>4th one, I think it was easier than the 3rd one, only had to sort odd numbers and add half of them :)</li>
</ul>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description><category>dsa</category></item><item><title>Learning Obsidian</title><link>https://example.org/post/learning-obsidian/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/learning-obsidian/</guid><description>
<![CDATA[<h1>Learning Obsidian</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <p>Starting learning obsidian for note making from today 13-Sep.
<a href="https://www.youtube.com/watch?v=QgbLb6QCK88&amp;t=16s">Obsidian for Beginners</a>started watching this tutorial</p>
<p>Learn to write [[Markdown]] with Obsidian</p>
<p>Yay!! I enabled Vim key bindings for Obsidian too and its pretty cool.</p>
<p><strong>Some Keyboard Shortcuts for Obsidian</strong></p>
<ul>
<li><code>ctrl + o</code> to create or find note</li>
<li><code>ctrl + p</code> to open cmd palette</li>
</ul>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description><category>project</category></item><item><title>Josh Interview</title><link>https://example.org/post/josh/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/josh/</guid><description>
<![CDATA[<h1>Josh Interview</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <ul>
<li><input disabled="" type="checkbox"> [[Self Introduction]]</li>
<li><input disabled="" type="checkbox"> [[Strengths &amp; Weaknesses]]</li>
<li><input disabled="" type="checkbox"> Round 3 Assignment</li>
<li><input disabled="" type="checkbox"> Ask question to them</li>
<li><input disabled="" type="checkbox"> Latest Resume</li>
<li><input disabled="" type="checkbox"> All deployed projects links</li>
<li><input disabled="" type="checkbox"> Know about every technology I wrote in my resume</li>
<li><input disabled="" type="checkbox"> Revise through [[JS Flash Card]]</li>
</ul>
<p>[[HTML]]</p>
<ul>
<li>
<!-- raw HTML omitted -->
</li>
<li>meta tag</li>
</ul>
<p>[[CSS]]</p>
<ul>
<li>use of important!</li>
<li>specificity order</li>
<li>CSS Frameworks</li>
<li>SASS vs Tailwind CSS</li>
</ul>
<p>[[JavaScript]]</p>
<ul>
<li>var vs let</li>
<li>Hoisting</li>
<li>[[JS Flash Card]]</li>
</ul>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description></item><item><title>HTML</title><link>https://example.org/post/html/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/html/</guid><description>
<![CDATA[<h1>HTML</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <p>Hyper Text Markup Language is the backbone of any website.</p>
<ul>
<li>Avoid using more than 1 <!-- raw HTML omitted -->  as it is the biggest heading, only one h1 should be present in one sheet.</li>
<li>Always use headings in order, first h1 then h2 and so on.</li>
<li>Always use img tag inside a figure tag when images have caption</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">figure</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">   <span class="p">&lt;</span><span class="nt">img</span> <span class="na">src</span><span class="o">=</span><span class="s">&#34;&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">   <span class="p">&lt;</span><span class="nt">figcaption</span><span class="p">&gt;</span>Caption<span class="p">&lt;/</span><span class="nt">figcaption</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl"><span class="p">&lt;/</span><span class="nt">figure</span><span class="p">&gt;</span>
</span></span></code></pre></div><ul>
<li>Use [[Semantic Tags]] like header, footer, section, article</li>
<li>Avoid using <!-- raw HTML omitted -->, <!-- raw HTML omitted --> for bold and italics, instead use [[CSS]] properties like font-weight and font-style: &ldquo;italic&rdquo; or use <!-- raw HTML omitted --> for bold and <!-- raw HTML omitted --> for emphasis/italics.</li>
<li>Don&rsquo;t use <a href="/post/html/#block-and-inline-element">block</a> elements inside <a href="/post/html/#block-and-inline-element">inline</a> elements</li>
</ul>
<h3 id="block-and-inline-element">
<a class="header-anchor" href="#block-and-inline-element"></a>
Block and Inline element
</h3><blockquote>
<p>Block elements always start on a new line and take up the <strong>full width</strong> available.</p>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description><category>prep</category></item><item><title>How to Contribute</title><link>https://example.org/post/how-to-contribution/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/how-to-contribution/</guid><description>
<![CDATA[<h1>How to Contribute</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <h1 id="how-to-contribute">
<a class="header-anchor" href="#how-to-contribute"></a>
How to Contribute
</h1><h3 id="if-you-do-not-have-permission-for-the-repo">
<a class="header-anchor" href="#if-you-do-not-have-permission-for-the-repo"></a>
If you do not have permission for the repo
</h3><ul>
<li>Fork the repo you want to contribute to create your own copy.</li>
</ul>
<blockquote>
<p>Keep your forked repo up to date and synced</p></blockquote>
<ul>
<li>Clone this forked repo to local system</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-shell" data-lang="shell"><span class="line"><span class="cl">git clone &lt;repo_url&gt;
</span></span><span class="line"><span class="cl"><span class="nb">cd</span> &lt;repo_name&gt;
</span></span></code></pre></div><ul>
<li>Create a branch for feature or fix</li>
</ul>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-shell" data-lang="shell"><span class="line"><span class="cl">git checkout -b &lt;branch-name&gt;
</span></span></code></pre></div><ul>
<li>Then make changes into this branch only and save locally.</li>
</ul>
<blockquote>
<p>Use your favourite editor to edit, run and test the code.</p>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description><category>dsa</category></item><item><title>Blog Website</title><link>https://example.org/post/blog-website/</link><pubDate>Sun, 14 Sep 2025 20:12:52 +0800</pubDate><author>pathakdivy03@gmail.com (Divy Pathak)</author><guid>https://example.org/post/blog-website/</guid><description>
<![CDATA[<h1>Blog Website</h1><p>Author: Divy Pathak(pathakdivy03@gmail.com)</p>
        
          <p>I also started writing blogs after seeing everyone else&rsquo;s blogs on internet. But to display my blogs I need a website which should render my [[Markdown]]s as content for blogs.</p>
<p>I can develop a full stack web-app on which one can login write and post blogs, but it requires 3 different servers (frontend, backend, db) and so much efforts if it&rsquo;s only me who is writing the blog. Also I want to use of my already written markdowns. But there is another way instead of developing a full stack website, I can create a static website and push new markdowns every time I write a new blog. Static websites are faster, lighter and much easier to develop.</p>
        
        <hr><p>Published on 2025-09-14 at <a href='https://example.org/'>My New Hugo Site</a>, last modified on 2025-10-01</p>]]></description><category>project</category></item></channel></rss>