<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[King_Coder]]></title><description><![CDATA[King_Coder]]></description><link>https://king-coder.hashnode.dev</link><image><url>https://cdn.hashnode.com/res/hashnode/image/upload/v1631895827554/dwZhCqwH4.png</url><title>King_Coder</title><link>https://king-coder.hashnode.dev</link></image><generator>RSS for Node</generator><lastBuildDate>Mon, 21 Sep 2026 11:54:11 GMT</lastBuildDate><atom:link href="https://king-coder.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Mr. Spammer bot using Python]]></title><description><![CDATA[Hello guys, today I will be telling you how to make a very simple but cool python  bot.
In this blog it is considered that you have your pythons set up to the  latest version.
I named this cool python bot as Mr. Spammer. Obviously this bot will not b...]]></description><link>https://king-coder.hashnode.dev/mr-spammer-bot-using-python</link><guid isPermaLink="true">https://king-coder.hashnode.dev/mr-spammer-bot-using-python</guid><category><![CDATA[Python]]></category><category><![CDATA[python projects]]></category><category><![CDATA[bot]]></category><category><![CDATA[Python 3]]></category><category><![CDATA[python beginner]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Fri, 02 Jul 2021 09:10:41 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1624510590666/RJsRIPYOn.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello guys, today I will be telling you how to make a very simple but cool python  bot.</p>
<p>In this blog it is considered that you have your pythons set up to the  latest version.</p>
<p>I named this cool python bot as Mr. Spammer. Obviously this bot will not be of great use other than spamming a  large set of text on any platform.<br />And yeah, this bot is just for educational purposes</p>
<p>and messing with your friends 😁</p>
<p><strong>Remember that Spamming is illegal, so don't mess with anyone except your friends .</strong>
First step:-  download the following python packages on your terminal </p>
<pre><code>keyboard
pyautogui
<span class="hljs-type">time</span>
</code></pre><p>you can download each of the package, in the same format as the code snippet below </p>
<pre><code><span class="hljs-attribute">pip</span> install <span class="hljs-string">"package name"</span>
</code></pre><p>using the following code you can install any python package on your system</p>
<p>Example </p>
<pre><code><span class="hljs-attribute">pip</span> install keyboard
</code></pre><p><strong> Note : Install these packages on your OS's native terminal . If you are using any IDE like pycharm and you are not able to use these packages, then try installing them again on the IDE's terminal.</strong></p>
<h2 id="into-to-each-of-these-packagesmodules">Into to each of these packages/modules :</h2>
<h3 id="keyboard">keyboard -</h3>
<p>It helps to enter keys, record the keyboard activities and block the keys until a specified key is entered and simulate the keys. It captures all keys, even onscreen keyboard events are also captured. Keyboard module supports complex hotkeys. Using this module we can listen and send keyboard events.</p>
<p>learn more about the package on the following sites-</p>
<p> https://pypi.org/project/keyboard/</p>
<p>https://www.geeksforgeeks.org/keyboard-module-in-python/#:~:text=It%20helps%20to%20enter%20keys,listen%20and%20send%20keyboard%20events.</p>
<h3 id="pyautogui">pyautogui -</h3>
<p>PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux, on Python 3 and 2.</p>
<p>learn more about it on -</p>
<p>https://pypi.org/project/PyAutoGUI/#:~:text=PyAutoGUI%20lets%20Python%20control%20the,on%20Python%203%20and%202.</p>
<h3 id="time">time</h3>
<p>As you can notice the name the Python time module provides many ways of representing time in code, such as objects, numbers, and strings. It also provides functionality other than representing time, like waiting during code execution and measuring the efficiency of your code.</p>
<p>This module will help in controlling the time delay between each word.</p>
<p>learn more about it on - </p>
<p>https://realpython.com/python-time-module/#:~:text=The%20Python%20time%20module%20provides,the%20efficiency%20of%20your%20code.</p>
<h2 id="setting-up-the-spam-file">Setting up the spam file</h2>
<p>Open your browser and look your the longest and most suitable text.
I personally used the  dialogue script of the Bee Movie(you can find that in the link below)</p>
<p>http://www.script-o-rama.com/movie_scripts/a1/bee-movie-script-transcript-seinfeld.html</p>
<p>After finding the best text, store that in a .txt file and place it the same directory as that of the python code file. 
<strong> the directory of the text file and the code file should be same.</strong>
in my case the name of file is <strong>beespam.exe</strong></p>
<h2 id="code">Code</h2>
<p>After installing the packages, you can use the following code snippet on your ide.
Read the respective comments to understand the use of each function.</p>
<pre><code><span class="hljs-comment">#importing required packages</span>
<span class="hljs-keyword">import</span> keyboard
<span class="hljs-keyword">import</span> pyautogui  
<span class="hljs-keyword">import</span> time

time.sleep(<span class="hljs-number">5</span>)  <span class="hljs-comment">#delaying the program so that it doesn't spam on any undesired platform and you get time to switch to the desired platform </span>

f = open(<span class="hljs-string">"beespam.txt"</span>, <span class="hljs-string">'r'</span>)  <span class="hljs-comment">#change beespam.txt with any other text file contaning a long spammable message</span>
<span class="hljs-comment">#loop </span>
<span class="hljs-keyword">for</span> word <span class="hljs-keyword">in</span> f:
    <span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> keyboard.is_pressed(<span class="hljs-string">'s'</span>):  <span class="hljs-comment">#the program will terminate if you press 's' for 1sec</span>
        pyautogui.typewrite(word)     <span class="hljs-comment">#controls the keyboard and types the text</span>
        pyautogui.press(<span class="hljs-string">"enter"</span>)     
       time.sleep(<span class="hljs-number">1</span>) <span class="hljs-comment">#delay of 1 sec between every message</span>
</code></pre><p><strong>NOTE-  You will have to keep the screen open and the cursor once clicked on the text box on the platform where you have to spam. Your bot will stop once you press 's' (or any other key you selected) or when the whole text finishes </strong></p>
<p><strong>Keep in mind that spamming on any unauthorized or any official government websites may lead to account bans or legal actions. So  better never try that. I will not be responsible for any of suck situations.</strong></p>
<p>Link to my github repository for the Mr. Spammer bot :</p>
<p>https://github.com/Kushagra-Jain99/MrSpammer</p>
<p>Now go and open your friends direct message and spam 😂</p>
<p>Hope you learned something new :))  </p>
<p>For any queries or suggestions, please feel fell to comment below or mail me at kushagra9101@gmail.com</p>
<p>Have a good day 😊</p>
]]></content:encoded></item><item><title><![CDATA[Creating a Hacking Environment]]></title><description><![CDATA[Hey Guys,
In this blog, we will be setting a complete hacking environment using Virtual Box.
In our future hacking tutorials also, we will do all of the hacking stuff on Virtual machines only(not on our primitive machine).
Need of Virtual Machines in...]]></description><link>https://king-coder.hashnode.dev/creating-a-hacking-environment</link><guid isPermaLink="true">https://king-coder.hashnode.dev/creating-a-hacking-environment</guid><category><![CDATA[hacking]]></category><category><![CDATA[Tutorial]]></category><category><![CDATA[setup]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Tue, 16 Feb 2021 07:49:55 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1613461705142/kzjVzsC0d.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hey Guys,</p>
<p>In this blog, we will be setting a complete hacking environment using Virtual Box.
In our future hacking tutorials also, we will do all of the hacking stuff on Virtual machines only(not on our primitive machine).</p>
<h2 id="heading-need-of-virtual-machines-in-hacking">Need of Virtual Machines in Hacking</h2>
<p>As a beginner in hacking, one can make several mistakes or even get infected by our own trojans. To prevent all of that stuff to mess up our primitive host machine, we will be creating Virtual Machines on Oracle Virtual Box. All of our machines will be connected via a <strong>NAT Network</strong> so that there is an unrestricted flow of network across the devices. You can even create snapshots of virtual machines and restore the original state, in case you messed the VM OS. </p>
<h2 id="heading-setting-the-environment">Setting the Environment</h2>
<p>We will download two major virtual machines. One will be the attack machine, one will be the victim machine.</p>
<p><strong>NOTE- All the attacks done on virtual machines can be done in the same way to real machines also. But never try to hack someone else's system without his concern, because it's also considered a crime.</strong></p>
<p>The Victim machine will be Windows MS Edge VM &amp; the attacking machine will be Kali Linux(Customized by Z security)</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613461415004/wmGLxO46x.webp" alt="2019-04-22-ts3_thumbs-4ab.webp" /></p>
<h3 id="heading-downloading-oracle-virtual-box-and-required-virtual-machines">Downloading Oracle Virtual Box and required virtual machines</h3>
<p>Refer to the link below in order to install Virtual Box and setting Windows Virtual Machine on it.
https://king-coder.hashnode.dev/running-multiple-oss-on-a-single-machineoracle-vb</p>
<p>After downloading the Windows VM, you can download  Kali Linux from the link below:-</p>
<p>https://zsecurity.org/download-custom-kali/</p>
<p>The default Username and Password is mentioned on the above website.
Download Kali in the same way as you did Windows VM. Ram available to Kali should be more than that of the Windows VM because it will run a number of processes. </p>
<p><strong>NOTE:- Both the Virtual Machines should be on <em>NAT Network</em>, otherwise they will not be able to communicate with each other.
</strong></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613461475162/2xwcaQEKS.png" alt="PSVMImage12.png" /></p>
<p>After downloading both the virtual machines, configure them according to your need.
Use the login details mention in the z security website to get into Kali System.</p>
<p>Make sure your Kali is connected wiredly.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613460097863/pehJ-nRA2.png" alt="ftp0B.png" /></p>
<h3 id="heading-errors-you-might-face-after-downloading-kali-linux">Errors you might face after downloading Kali Linux</h3>
<p>Missing NAT Network:- https://www.youtube.com/watch?v=y0PMFg-oAEs</p>
<p>Black Screen Error:-  https://zsecurity.org/got-a-blank-screen-after-importing-kali-in-virtual-box-heres-how-to-fix-it/</p>
<p>After Successful opening Kali with no issue, have a look at the interface. Since we will be doing most of our work on the root terminal, let's have a look at the various commands we can use.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613461593969/qlBfd_PEO.webp" alt="001-Kali-Linux-terminal-server.webp" /></p>
<p>Link to various Linux commands:- https://www.mediacollege.com/linux/command/linux-command.html</p>
<p>After opening Kali our first step will be to update the system..
Run the following code in the root terminal</p>
<pre><code>apt-<span class="hljs-keyword">get</span> <span class="hljs-keyword">update</span>
</code></pre><p>After updating, run the following code to install the terminator</p>
<pre><code>apt-<span class="hljs-keyword">get</span> install terminator
</code></pre><p><strong>Terminator is also a root terminal with more accessibility and efficient coding features. You can spit the main window into a number of terminals using terminator</strong></p>
<h1 id="heading-congratulations-you-just-completely-set-up-the-hacking-environment">Congratulations, you just completely set up the hacking environment.</h1>
<p>Hope you learned something new today!</p>
<p>Don't hesitate to comment below to raise any queries or suggestions.</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[Running multiple OS's on a single machine(ORACLE VB)]]></title><description><![CDATA[Hey guys,
In this article, you will get to know about Oracle Virtual Box, using via which you can run a number of different operating systems on a single device.
NOTE- Minimum of i3 processor and 4GB ram is required for smooth function of the virtual...]]></description><link>https://king-coder.hashnode.dev/running-multiple-oss-on-a-single-machineoracle-vb</link><guid isPermaLink="true">https://king-coder.hashnode.dev/running-multiple-oss-on-a-single-machineoracle-vb</guid><category><![CDATA[operating system]]></category><category><![CDATA[Windows]]></category><category><![CDATA[hacking]]></category><category><![CDATA[Tutorial]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Mon, 15 Feb 2021 14:20:45 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1613398776061/Kn01q12Mq.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hey guys,</p>
<p>In this article, you will get to know about Oracle Virtual Box, using via which you can run a number of different operating systems on a single device.</p>
<p><strong>NOTE- Minimum of i3 processor and 4GB ram is required for smooth function of the virtual machines.   8GB ram recommended.   You may need strong wifi to download huge setup files</strong></p>
<p><strong>This blog is for your general information and will also help you in setting up the hacking environment(I will be posting a complete hacking tutorial series from basics).</strong></p>
<h2 id="virtual-box">Virtual Box</h2>
<p>There are a number of softwares with which you can run multiple operating systems but amongst them, Oracle Virtual box is the most reliable.
I am going to tell you how to set up virtual box and after that we will be downloading a Microsoft Virtual Machine.</p>
<h3 id="downloading-oracle-vb">Downloading Oracle VB</h3>
<p>link:- https://www.virtualbox.org/wiki/Downloads</p>
<p>Select your OS from the platform packages menu... eg- Windows users should select windows hosts.</p>
<p>Download the extension pack under the heading
<strong>VirtualBox [version] Oracle VM VirtualBox Extension Pack</strong></p>
<p><strong>The above extension pack is required for hacking. By the way, it's useful for general purposes also, hence, I suggest you all to download it.</strong></p>
<p><strong>NOTE:- The extension pack and the main software should of the same version all the time. While updating the VB, update the extension pack also.</strong></p>
<p>Follow the onscreen instruction after running the setup file.</p>
<p>You will see the following window after downloading</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613398536320/vN_tpzwzL.png" alt="unnamed.png" /></p>
<h3 id="downloading-and-running-your-first-virtual-machine">Downloading and running your first Virtual Machine</h3>
<p>We will be downloading<strong> Windows Virtual Machine</strong></p>
<p>https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/</p>
<p><strong>Choose MSEdge VM &amp; Virtual Box as the platform.</strong></p>
<p><strong>Note:- Windows VM license expires after 1year. Hence you can create a snapshot, which you can restore after it expires.
Refer to this Link to know more about Snapshots in Virtual Box
https://www.techrepublic.com/article/how-to-use-snapshots-in-virtualbox/#:~:text=You%20can%20also%20create%20a,Snapshots%20button%20(Figure%20B).&amp;text=The%20blue%20camera%20icon%20is%20the%20Snapshots%20button.
</strong>
After downloading the file, extract it if it's compressed. Then just double-click on it load it on the virtual box. The process will take time according to your System Specs.</p>
<p>Open Virtual Machine Settings.
After completely downloading, set your network to <strong>NAT network</strong> in the networks tab.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613398615896/5TsurrO8l.png" alt="PSVMImage12.png" />
Then in System Tab, select the ram you want to give to the VM while running(2/2.5 GB is sufficient).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613398628651/Q1p9HJs_z.jpeg" alt="UkRK5.jpg" /></p>
<p>If you are getting any sign showing error, then analyze the problem and fix it accordingly, or feel free to comment below.</p>
<p>Run windows VM by clicking on the start icon on the window.</p>
<p>Your default password for windows VM is set to <strong>Passw0rd!</strong>.</p>
<p>Now run and customize it ;)</p>
<p>If you are facing any issues in any of the above, then feel free to comment below or mail me at kushagra9101@gmail.com</p>
<p>Hope you learned something new today!</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[How you get hacked?   [CYBER CRIMES]]]></title><description><![CDATA[Hello Guys,
Today I will tell you guys about Cybercrimes and the different ways using which hackers can get to you over the internet and steal important information.
There are a number of powerful hacking tools in the hacking industry. All those tool...]]></description><link>https://king-coder.hashnode.dev/how-you-get-hacked-cyber-crimes</link><guid isPermaLink="true">https://king-coder.hashnode.dev/how-you-get-hacked-cyber-crimes</guid><category><![CDATA[hacking]]></category><category><![CDATA[internet]]></category><category><![CDATA[cybersecurity]]></category><category><![CDATA[Internet of Things]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Sat, 13 Feb 2021 04:53:36 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1613191847610/9aRHHBWEg.webp" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello Guys,</p>
<p>Today I will tell you guys about Cybercrimes and the different ways using which hackers can get to you over the internet and steal important information.</p>
<p>There are a number of powerful hacking tools in the hacking industry. All those tools actually connect and communicate with other penetrable devices via the rooted system (Rooted systems include our PC's/Laptops(pre-rooted) whereas our Android devices need to be rooted for to perform powerful hacking techniques but the problem with Android is that if one rooted an android without a vast knowledge of rooting, he might end up messing the whole device. Similarly, we have Jailbreaking in iOS, it also has the same risk as we have with Android)
<img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613191677362/a2_gS-5_n.jpeg" alt="android-tool-640x353.jpg" /></p>
<p> <strong>Hackers generally prefer Linux based OS as it's very fast and highly customizable.</strong></p>
<p>All the Hackers always look for a backdoor or a violated system functionality with the help of which they can create a backdoor to get to your system.</p>
<p>All things that a trained hacker requires to hack into your system is your IP address, Mac address(not always).
Most hacking techniques are performed over wifi, in which hackers capture data packets(even of other systems) in the air(floating around) and try to get useful information. Hopefully, the data packets have a number of encrypted(info coded in various patterns not known), which is hard to decrypt. But obviously, it's not impossible.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613191696977/aKmCYbM2m.jpeg" alt="hack-wi-fi-get-anyones-wi-fi-password-without-cracking-using-wifiphisher.1280x600.jpg" /></p>
<p>Hackers often try to get your wifi password and once they are successful in getting that, you come in huge trouble. After getting your password, a hacker might make his system a <strong>middle man </strong> between your system and your router, and then all the information you will enter will first pass to his system, then to the router. Still, the data will be encrypted but now it becomes a little easy to decrypt it and the person will get all the information.
So to prevent all of the above, we recommend all the readers reading this to have a WPA2 or more encrypted wifi because then it becomes very very difficult for a hacker 
to get the password due to the high-level security features.</p>
<h3 id="things-to-keep-in-mind-to-prevent-such-attack">Things to keep in mind to prevent such attack</h3>
<ol>
<li>Don't disclose your online IP to anyone.</li>
<li>Try using the address bar on your browser to search and open websites.</li>
<li>Always read the link of the website you want to reach as many times, if you want to go to facebook.com, hackers might take you to facebook.corn (notice, at last, it's 'rn').
Hence to prevent the above, follow the second point.</li>
<li>Don't connect to an unknown/not trusted free wifi, as it might be of a hacker, which will get all info, once you connect to it and start working using the same.</li>
<li>Don't prefer connecting to Info or Not secure website(websites which show '!' at the left of the address bar) as when a hacker redirects you to another faulty website, the above sign comes up. But you can open these types of the website if you trust the owner.
Never enter sensitive info on a Not secure or Dangerous website.</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1613191730978/1pX_ldA2U.png" alt="asd.PNG" /></p>
<p>Hope you learned something new :)</p>
<p>Feel free to comment below for any queries or suggestions...</p>
<p>There's a lot more stuff related to cybersecurity, which I would accommodate in other blogs. In future articles, I will also tell you how you can do hacking yourself and all the system requirements required for the same.</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[Voice Automated System Control]]></title><description><![CDATA[Hey guys,
Today I am going to tell you all about a software using which you can voice automate your windows. 
It's not like Cortana, where you keep getting 'I am unable to do this at the moment'.
The best part of this software is that it supports cus...]]></description><link>https://king-coder.hashnode.dev/voice-automated-system-control</link><guid isPermaLink="true">https://king-coder.hashnode.dev/voice-automated-system-control</guid><category><![CDATA[Windows]]></category><category><![CDATA[AI]]></category><category><![CDATA[automation]]></category><category><![CDATA[software]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Tue, 09 Feb 2021 17:12:46 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1612890753759/HAiOHDqsZ.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hey guys,
Today I am going to tell you all about a software using which you can voice automate your windows. </p>
<p>It's not like Cortana, where you keep getting 'I am unable to do this at the moment'.
The best part of this software is that it supports custom commands. </p>
<p>I am talking about <strong>Links Mark II</strong></p>
<p>link to the website:- https://mega-voice-command.com/</p>
<p>From the above website, you can download links mark II available for free users or if you are interested then you can pay to upgrade our account and download Links Mark III. </p>
<p>The best part of this software is that it has very cool verbal scripts and of course you can customize them too.</p>
<h3 id="basic-guidance">Basic Guidance</h3>
<p>After the setup is complete, first you will need to restart the software.</p>
<p>You can add more than one verbal script by using <strong>;</strong></p>
<p>You can add a number of commands for eg. Open Hashnode, Show me my mails, and many more.</p>
<p>You can also change the voice. By default it's Zira(female), you can also choose David(male) from the settings.</p>
<p>Hope you discovered something new :)</p>
<p>Don't hesitate to comment below for any queries or suggestions...</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[Hello World!]]></title><description><![CDATA[Hi guys!
Today's blog will be quite interesting. 
In the world of programming, a simple Hello World! program is a must when one starts learning a specific language.
Hello World! beginners code has been a tradition in coding. 
Today we are going to se...]]></description><link>https://king-coder.hashnode.dev/hello-world</link><guid isPermaLink="true">https://king-coder.hashnode.dev/hello-world</guid><category><![CDATA[General Programming]]></category><category><![CDATA[programming languages]]></category><category><![CDATA[programmer]]></category><category><![CDATA[Programming Blogs]]></category><category><![CDATA[coding]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Sun, 07 Feb 2021 13:43:42 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1612705406864/wDuyUQxal.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hi guys!</p>
<p>Today's blog will be quite interesting. </p>
<p>In the world of programming, a simple Hello World! program is a must when one starts learning a specific language.</p>
<p>Hello World! beginners code has been a tradition in coding. </p>
<p>Today we are going to see Hello World! codes in different major known programming languages.</p>
<h2 id="assembly-first-programming-language">Assembly //First Programming Language</h2>
<pre><code>bdos    equ    <span class="hljs-number">0005</span>H    ; BDOS entry <span class="hljs-type">point</span>
<span class="hljs-keyword">start</span>:  mvi    c,<span class="hljs-number">9</span>      ; BDOS <span class="hljs-keyword">function</span>: output string
        lxi    d,msg$   ; address <span class="hljs-keyword">of</span> msg
        <span class="hljs-keyword">call</span>   bdos
        ret             ; <span class="hljs-keyword">return</span> <span class="hljs-keyword">to</span> CCP  
msg$:   db    <span class="hljs-string">'Hello, world!$'</span>
<span class="hljs-keyword">end</span>     <span class="hljs-keyword">start</span>
</code></pre><h2 id="fortran">Fortran</h2>
<pre><code>PROGRAM Hello
WRITE (*,*) <span class="hljs-string">'Hello, World!'</span>
STOP
<span class="hljs-keyword">END</span>
</code></pre><h2 id="c">C</h2>
<pre><code><span class="hljs-meta">#<span class="hljs-meta-keyword">include</span> </span>

<span class="hljs-function"><span class="hljs-keyword">int</span> <span class="hljs-title">main</span><span class="hljs-params">(<span class="hljs-keyword">void</span>)</span>
</span>{
    <span class="hljs-built_in">puts</span>(<span class="hljs-string">"Hello, world!"</span>);
}
</code></pre><h2 id="c">C++</h2>
<pre><code><span class="hljs-meta">#<span class="hljs-meta-keyword">include</span> </span>

<span class="hljs-function"><span class="hljs-keyword">int</span> <span class="hljs-title">main</span><span class="hljs-params">()</span>
</span>{
    <span class="hljs-built_in">std</span>::<span class="hljs-built_in">cout</span> &lt;&lt; <span class="hljs-string">"Hello, world!"</span>;
    <span class="hljs-keyword">return</span> <span class="hljs-number">0</span>;
}
</code></pre><h2 id="java">Java</h2>
<pre><code><span class="hljs-keyword">import</span> javax.swing.JFrame;  <span class="hljs-comment">//Importing class JFrame</span>
<span class="hljs-keyword">import</span> javax.swing.JLabel;  <span class="hljs-comment">//Importing class JLabel</span>
<span class="hljs-keyword">public</span> <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">HelloWorld</span> </span>{
    <span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> <span class="hljs-keyword">void</span> <span class="hljs-title">main</span><span class="hljs-params">(String[] args)</span> </span>{
        JFrame frame = <span class="hljs-keyword">new</span> JFrame();           <span class="hljs-comment">//Creating frame</span>
        frame.setTitle(<span class="hljs-string">"Hi!"</span>);                 <span class="hljs-comment">//Setting title frame</span>
        frame.add(<span class="hljs-keyword">new</span> JLabel(<span class="hljs-string">"Hello, world!"</span>));<span class="hljs-comment">//Adding text to frame</span>
        frame.pack();                          <span class="hljs-comment">//Setting size to smallest</span>
        frame.setLocationRelativeTo(<span class="hljs-keyword">null</span>);     <span class="hljs-comment">//Centering frame</span>
        frame.setVisible(<span class="hljs-keyword">true</span>);                <span class="hljs-comment">//Showing frame</span>
    }
}
</code></pre><h2 id="pascal">Pascal</h2>
<pre><code>program HelloWorld;
<span class="hljs-keyword">begin</span>
  WriteLn(<span class="hljs-string">'Hello, world!'</span>);
<span class="hljs-keyword">end</span>.
</code></pre><h2 id="html">HTML</h2>
<pre><code> <span class="hljs-type">Hello</span> <span class="hljs-type">World!</span>
</code></pre><h2 id="ruby">Ruby</h2>
<pre><code><span class="hljs-built_in">puts</span> <span class="hljs-string">"Hello, world!"</span>
</code></pre><h2 id="python">Python</h2>
<pre><code><span class="hljs-keyword">print</span> <span class="hljs-string">"Hello, world!"</span>
</code></pre><h2 id="swift">Swift</h2>
<pre><code><span class="hljs-selector-tag">println</span>(<span class="hljs-string">"Hello, world!"</span>)
</code></pre><h2 id="javascript">JavaScript</h2>
<pre><code>document.<span class="hljs-keyword">write</span>(<span class="hljs-string">'Hello, world!'</span>);
</code></pre><h2 id="c"><strong>C#</strong></h2>
<pre><code><span class="hljs-keyword">using</span> System;
<span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Program</span>
{</span>
    <span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> <span class="hljs-keyword">void</span> <span class="hljs-title">Main</span><span class="hljs-params">(<span class="hljs-built_in">string</span>[] args)</span>
    </span>{
        Console.WriteLine(<span class="hljs-string">"Hello, world!"</span>);
    }
}
</code></pre><p>Hope you guys had a nice time reading this :)</p>
<p>Comment the language you like the most ;)</p>
<p>Moreover, also comment if you think that a language should be included.</p>
<p>Email me at kushagra9101@gmail.com for any queries or suggestions.</p>
<p>Resource websites- </p>
<p>https://learn.excelwithbusiness.com/blog/post/web-design/say-hello-world-in-28-different-programming-languages</p>
<p>https://medium.com/javarevisited/70-years-of-hello-world-with-50-programming-languages-2400de893a97</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[Jarvis greets you on the computer startup]]></title><description><![CDATA[Most of the people seeing this would have been a Marvel fan like me. One of the most loved Marvel characters is Iron Man and its AI-driven assistant 'Jarvis' always makes people dream of such digital assistance.
You will be able to add Jarvis greetin...]]></description><link>https://king-coder.hashnode.dev/jarvis-greets-you-on-the-computer-startup</link><guid isPermaLink="true">https://king-coder.hashnode.dev/jarvis-greets-you-on-the-computer-startup</guid><category><![CDATA[Windows]]></category><category><![CDATA[Hashnode]]></category><category><![CDATA[Tutorial]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Sat, 06 Feb 2021 11:21:27 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1612610469051/cMIKKyDe3.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Most of the people seeing this would have been a Marvel fan like me. One of the most loved Marvel characters is Iron Man and its AI-driven assistant 'Jarvis' always makes people dream of such digital assistance.</p>
<p>You will be able to add Jarvis greeting sound during Windows startup once you read this whole blog. You can then add a number of smart Iron Man wallpapers. Honestly, when you will start your pc and will receive Jarvis greetings, you will feel like a pro.
Let's get things ready:-</p>
<p>Note:-</p>
<p>You need a minimum of 4GB to ram to do this otherwise the system might slow down.</p>
<h1 id="downloading-all-required-items">Downloading all required items-</h1>
<h2 id="download-startup-sound-changer">Download Startup Sound Changer</h2>
<p>This first step is to download a Software know as Startup sound changer. 
You can download it from the link given below-
https://startup-sound-changer.en.softonic.com/</p>
<h2 id="downloading-your-audio-clip">Downloading  your audio clip</h2>
<p>In this case, we will be going to download Jarvis's voice. Remember that the sound file should be in .wav format only. If you download it in mp4 or any other format then convert it using any 'to .wav converter' available on the internet.
Download the recommended Jarvis voice from the link below:-</p>
<p>https://mega.nz/file/2BcGhRhQ#XkT37ENCwNfEsdpEpQGYdOlB121dtt9CWGkN8eouvrQ</p>
<p><strong> All links mentioned are completely safe</strong></p>
<h1 id="setting-things-up">Setting things up</h1>
<h2 id="enabling-windows-startup-sounds">Enabling windows startup sounds</h2>
<ol>
<li>Open Control Panel</li>
<li><p>Go to 'Hardware and Sound'
<img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1612609192371/4_JyGOhzt.png" alt="hardware_1.png" /></p>
</li>
<li><p>Go to Sound (a pop-up window will appear)</p>
</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1612609238012/JIHyRCAq1.jpeg" alt="win-10-sound.jpg" /></p>
<p>4.Open the Sounds tab on the window
   and Check 'Play Windows Startup Sound.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1612609257110/mOeHf1TjX.png" alt="7cf5a292-b972-4773-b2ab-3a5fa05d5897.png" /></p>
<h2 id="configuring-startup-sound-changer">Configuring Startup sound changer</h2>
<p>1.Open startup sound changer</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1612609325221/AiG4Jt6Vr.jpeg" alt="startup-sound-changer-screenshot.jpg" />
2.You will see a window like this ^^</p>
<ol>
<li>Click on replace and choose the .wav Jarvis sound clip.</li>
<li>Restart your system and get greetings ;)</li>
</ol>
<p><strong> If you get antivirus error/warning while replacing startup sound, then disable the antivirus temporarily and retry</strong></p>
<p><strong> To make your day better, add Iron Man/Jarvis image as your sleep screen wallpaper.</strong></p>
<p>Congrats! you can now get greeted by Jarvis every time you open your pc.</p>
<p>Feel free to comment below to raise your queries or mail me at kushagra9101@gmail.com to give any suggestions.</p>
<p>Have a good day!!</p>
<p>Will see you guys very very soon!! :)</p>
]]></content:encoded></item><item><title><![CDATA[How to make your Windows look like Mac]]></title><description><![CDATA[Adding Mac looks to Windows
Mac looks and Windows interface together will be awesome and easy to use. 
Many of you would have always wanted to use a Mac but due to its costs, you just fall back.
Read the whole article to prevent any possible problems...]]></description><link>https://king-coder.hashnode.dev/how-to-make-your-windows-look-like-mac</link><guid isPermaLink="true">https://king-coder.hashnode.dev/how-to-make-your-windows-look-like-mac</guid><category><![CDATA[Windows]]></category><category><![CDATA[Design]]></category><category><![CDATA[desktop]]></category><category><![CDATA[Tutorial]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Fri, 05 Feb 2021 11:29:34 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1612524557688/VAS1sWgS1.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h1 id="adding-mac-looks-to-windows">Adding Mac looks to Windows</h1>
<p>Mac looks and Windows interface together will be awesome and easy to use. 
Many of you would have always wanted to use a Mac but due to its costs, you just fall back.
Read the whole article to prevent any possible problems.
The link given below will lead you to a website from where you can download a custom transformation pack consisting of a compilation of many third-party skins and features.
It's completely safe and free to use.
It will transform your Windows desktop into a mac home screen.
You can easily install or uninstall it using its .exe setup file. 
You will find more required details in the link mentioned below:-</p>
<p>https://windowsxlive.net/macos-transformation-pack/</p>
<p>The download link may redirect you to a website thememypc.net or even another. But remember that if you get redirected to an unrelated website, then just quickly close them and click on the download link again until you get to the appropriate website.</p>
<p>You will need multiple restarts to completely end up configuring your mac look. Just carefully read and follow the onscreen instructions and you will mess up nothing.
It is completely windows update friendly.
Don't close your pc between installation as it might cause problems.</p>
<p>You can further customize your looks of mac transformation pack by configuring the .exe setup file.</p>
<p>Feel free to comment below for any query. 
Will see you guys very very soon!!
:)</p>
]]></content:encoded></item><item><title><![CDATA[First Intro Post]]></title><description><![CDATA[Hello guys,
I am Kushagra Jain, a senior school student. Hopefully, I am going to start writing blogs on programming, technology, and even basic computing tutorials. I always loved programming and wanted to learn new things. I recently got involved i...]]></description><link>https://king-coder.hashnode.dev/first-post</link><guid isPermaLink="true">https://king-coder.hashnode.dev/first-post</guid><category><![CDATA[Programming Blogs]]></category><category><![CDATA[Blogging]]></category><category><![CDATA[Hashnode]]></category><dc:creator><![CDATA[Kushagra Jain]]></dc:creator><pubDate>Thu, 04 Feb 2021 16:50:19 GMT</pubDate><content:encoded><![CDATA[<p>Hello guys,
I am Kushagra Jain, a senior school student. Hopefully, I am going to start writing blogs on programming, technology, and even basic computing tutorials. I always loved programming and wanted to learn new things. I recently got involved in competitive programming. I am working hard so that I can do something great in the future. From now on, I will be posting informative blogs in my free time. 
I will try my level best to spare time for bogging.
Hoping to get a lot of support from you guys to make King-Coder a successful blogging website in the future.
Feel free to contact me at kushagra9101@gmail.com.
I will be highly pleased if you mail me, sharing your experience and giving me tips to improve my blog.</p>
<p>Will see you guys very very soon!!  :)</p>
]]></content:encoded></item></channel></rss>