<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts on P R A K U S H</title><link>https://prakush.in/posts/</link><description>Recent content in Posts on P R A K U S H</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>© 2026 Prakush Ram</copyright><lastBuildDate>Thu, 18 Jun 2026 22:33:03 +0530</lastBuildDate><atom:link href="https://prakush.in/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>SQL</title><link>https://prakush.in/posts/sql/</link><pubDate>Thu, 18 Jun 2026 22:33:03 +0530</pubDate><guid>https://prakush.in/posts/sql/</guid><description>&lt;h1 class="relative group"&gt;What is SQL?
 &lt;div id="what-is-sql" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-is-sql" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h1&gt;
&lt;p&gt;SQL, or Structured Query Language, is a language designed to allow both technical and non-technical users query, manipulate, and transform data from a relational database. And due to its simplicity, SQL databases provide safe and scalable storage for millions of websites and mobile applications.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Did you know?&lt;/strong&gt;
There are many popular SQL databases including SQLite, MySQL, Postgres, Oracle and Microsoft SQL Server. All of them support the common SQL language standard, which is what this site will be teaching, but each implementation can differ in the additional features and storage types it supports.&lt;/p&gt;</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://prakush.in/posts/sql/feature.png"/></item><item><title>linux commands</title><link>https://prakush.in/posts/linux-commands/</link><pubDate>Wed, 03 Jun 2026 20:11:01 +0530</pubDate><guid>https://prakush.in/posts/linux-commands/</guid><description>&lt;h1 class="relative group"&gt;linux fundamentals from &lt;code&gt;scratch&lt;/code&gt;…
 &lt;div id="linux-fundamentals-from-scratch" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#linux-fundamentals-from-scratch" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h1&gt;

&lt;h2 class="relative group"&gt;1. Opening and Closing the Terminal
 &lt;div id="1-opening-and-closing-the-terminal" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#1-opening-and-closing-the-terminal" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;open : &lt;code&gt;Ctrl+alt+t&lt;/code&gt;
close: &lt;code&gt;Ctrl+d&lt;/code&gt;&lt;/p&gt;

&lt;h2 class="relative group"&gt;2. Basic Commands
 &lt;div id="2-basic-commands" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#2-basic-commands" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;echo&lt;/code&gt; : returns command line arguments to standard output.
&lt;code&gt;date&lt;/code&gt; : show the current date and time
&lt;code&gt;cal&lt;/code&gt; : show the calendar
&lt;code&gt;cat&lt;/code&gt; : read and write files
&lt;code&gt;cut&lt;/code&gt; : divided into blocks and gives u fields
&lt;code&gt;grep&lt;/code&gt; : grep the content from the file
&lt;code&gt;cd&lt;/code&gt; : change directories
&lt;code&gt;ls&lt;/code&gt; : list files and directories
&lt;code&gt;man&lt;/code&gt; : man command is use for finding man pages.
&lt;code&gt;apropos&lt;/code&gt;: to finding man pages or commands.&lt;/p&gt;</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://prakush.in/posts/linux-commands/feature.jpg"/></item><item><title>vim</title><link>https://prakush.in/posts/vim/</link><pubDate>Wed, 03 Jun 2026 20:11:01 +0530</pubDate><guid>https://prakush.in/posts/vim/</guid><description>&lt;h3 class="relative group"&gt;cursore movment and file savings
 &lt;div id="cursore-movment-and-file-savings" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#cursore-movment-and-file-savings" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;The cursor is moved using either the arrow keys or the h j k l keys. &lt;br&gt;
- h (left) &lt;br&gt;
- j (down) &lt;br&gt;
- k (up) &lt;br&gt;
- l (right)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To start Vim from the shell prompt type: vim FILENAME &lt;ENTER&gt; &lt;br&gt;
To exit Vim type: &lt;ESC&gt; :q! &lt;ENTER&gt; to trash all changes. &lt;br&gt;
To delete the character at the cursor type: x&lt;/p&gt;</description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://prakush.in/posts/vim/feature.jpg"/></item></channel></rss>