<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Blogs on Mishal Abdullah</title><link>https://mishalabdullah.com/blogs/</link><description>Recent content in Blogs on Mishal Abdullah</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Wed, 30 Apr 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://mishalabdullah.com/blogs/index.xml" rel="self" type="application/rss+xml"/><item><title>Dokploy - Self-Hosted Platform for Web Apps</title><link>https://mishalabdullah.com/blogs/dokploy-self-hosting/</link><pubDate>Wed, 30 Apr 2025 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/blogs/dokploy-self-hosting/</guid><description>Goodbye Vercel | Hello Dokploy Like many React developers, I’ve always leaned toward Next.js as my go-to React-based framework. Thanks to its tight integration with Vercel, deploying a Next.js app was as simple as pushing to Git.
But lately, Vercel has introduced several limitations on their free tier:
Private Git repositories now require a paid plan There’s a time limit on serverless API routes Additional restrictions that make the platform less appealing for indie devs and hobbyists To be clear, I don’t blame Vercel — businesses need to make money.</description></item><item><title>How To Get Data From URL In NEXTJS 13</title><link>https://mishalabdullah.com/blogs/getting-data-from-links-in-nextjs13/</link><pubDate>Wed, 27 Sep 2023 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/blogs/getting-data-from-links-in-nextjs13/</guid><description>In this we are going to learn how to get data from the url of a NEXTjs application. In this blogs we will be taking a look at the latest version of nextjs which is version 13, it would be different for version 12 and so on. I am assuming you got npm installed or something similar to that for managing your packages.
Creating a NEXTjs Application In NEXTjs 13 for creating an application just run.</description></item><item><title>Medito -A Free And Open Source Meditation App</title><link>https://mishalabdullah.com/blogs/medito/</link><pubDate>Fri, 30 Dec 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/blogs/medito/</guid><description>I’ve been using Medito, a fantastic meditation software, for the past few weeks, and it’s been excellent. The app includes lessons that teach you how to meditate, and you can download a meditation session to use when you don’t have access to the internet. If you choose, this app also offers background music for your meditation session. However, I like to sit in silence rather than with music playing in the background.</description></item><item><title>How To Find HTML Elements Using JavaScript</title><link>https://mishalabdullah.com/jspart3/</link><pubDate>Fri, 04 Nov 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/jspart3/</guid><description>There are three ways of finding HTML elements
document.getElementById() document.getElementsByTagName() document.getElementsByClassName() Element By ID:- The document.getElementById() method is the most common way to find HTML elements. You can assign a Tag any id you want and pass the the id as a parameter to the document.getElementByid() example
&amp;lt;!DOCTYPE html&amp;gt; &amp;lt;html&amp;gt; &amp;lt;head&amp;gt; &amp;lt;/head&amp;gt; &amp;lt;body&amp;gt; &amp;lt;h1 id=&amp;quot;intro&amp;quot;&amp;gt;Hello World&amp;lt;/h1&amp;gt; &amp;lt;/body&amp;gt; &amp;lt;script&amp;gt; var value = document.getElementById(&amp;quot;intro&amp;quot;); value.style.color = &amp;quot;red&amp;quot;; &amp;lt;/script&amp;gt; &amp;lt;/html&amp;gt; Output !</description></item><item><title>10 Basic Linux Commands That You Need To Know</title><link>https://mishalabdullah.com/commandline/</link><pubDate>Sat, 03 Sep 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/commandline/</guid><description>10 Basic Linux Commands That You Need To Know 1. cd The cd command is used for changing directories. cd stands for &amp;ldquo;change the working directory&amp;rdquo;. use can to use to change from one folder to another. **Changing Your Directory **
You can use cd then, followed by the folder directory you want to change to for example:- cd Downloads
If you want to go through multiple directories at a time, instead of using cd Downloads and then cd Wallpapers you can use cd then followed by the directory name then the next directory name separated by a / for example:- cd Downloads/wallpapers cd home/prinux/Desktop/Todolist</description></item><item><title>5 Foss That Will Change Your Life (Android)</title><link>https://mishalabdullah.com/android-foss-apps/</link><pubDate>Sat, 03 Sep 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/android-foss-apps/</guid><description>Why FOSS FOSS stands for &amp;ldquo;Free and Open Source Software&amp;rdquo; (free as in freedom), The Foss application are generally more privacy-friendly and secure. The good thing about foss is that you will discover creativity of developers as their are projects which great, weird, stupid, and cool.
Linux Command Library The Linux Command Library is a FOSS app that shows you all the commands that you need. This Includes Key-bindings for - Vim - Emacs - Nano - Pico This an amazing app as if you forget any specific you can just search in this app and it will provide you with all the results.</description></item><item><title>Gobuster - Finding Hideden Directories</title><link>https://mishalabdullah.com/gobuster/</link><pubDate>Sun, 27 Mar 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/gobuster/</guid><description>How To Find Hidden Directories In Web Pages. What is Gobuster ? Gobuster is a tool and helps us to find directories and files present in a website or a web app.It helps hackers to find the files and directories that are not linked any where is the website. Gobuster is also open-source and it works by sending HTTP requests to the website and enumerating the directory and file names.</description></item><item><title>The Minimalist Phone - Guide</title><link>https://mishalabdullah.com/minimalist-phone/</link><pubDate>Wed, 23 Mar 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/minimalist-phone/</guid><description>In this guide, we will be learning on how to make your phone a less distractive, and also how to reduce the time that you spend on your phone. You only need to follow a few steps, and it can take less than twenty minutes to make your phone a &amp;ldquo;minimalist&amp;rdquo; one. I came up with the name &amp;ldquo;minimalist phone&amp;rdquo; based on the minimalism philosophy, &amp;ldquo;saying no to things we don’t like,&amp;rdquo;.</description></item><item><title>7 Curl Commands That Every Developer Should Know!</title><link>https://mishalabdullah.com/curl/</link><pubDate>Thu, 24 Feb 2022 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/curl/</guid><description>What is a curl command Curl is a command line tool used to transfer data to and from the servers, using the supported protocols (HTTP, FTP, IMAP, POP3, SCP, SFTP, SMTP, TFTP, TELNET, LDAP, or FILE).It is available on windows , MacOs and Linux. Uses of curl
for downloading web images for downloading web pages for authentication SSL connections FTP uplaods To test the output of an API and more Syntax curl [options][URL.</description></item><item><title/><link>https://mishalabdullah.com/blogs/hello-world/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://mishalabdullah.com/blogs/hello-world/</guid><description>Testing Hello World</description></item></channel></rss>