<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Md. Ashraful Alam Shemul</title>
    <description>The latest articles on DEV Community by Md. Ashraful Alam Shemul (@aashemul).</description>
    <link>https://dev.to/aashemul</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F628898%2Fc5af335d-9167-4954-8ee4-6d17d03137c1.jpg</url>
      <title>DEV Community: Md. Ashraful Alam Shemul</title>
      <link>https://dev.to/aashemul</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aashemul"/>
    <language>en</language>
    <item>
      <title>Introducing Shemul v1.0.0 for PIP: Your Ultimate Task Runner</title>
      <dc:creator>Md. Ashraful Alam Shemul</dc:creator>
      <pubDate>Wed, 11 Feb 2026 18:52:55 +0000</pubDate>
      <link>https://dev.to/stechbd/introducing-shemul-v100-for-pip-your-ultimate-task-runner-311g</link>
      <guid>https://dev.to/stechbd/introducing-shemul-v100-for-pip-your-ultimate-task-runner-311g</guid>
      <description>&lt;p&gt;Shemul is a lightweight task runner that actually respects your workflow&lt;/p&gt;

&lt;p&gt;Every developer knows the feeling. You open a project and instantly start typing the same commands again. Build, migrate, run, restart, test… repeat. Over time, those commands get scattered across shell history, README files, and half-remembered notes.&lt;/p&gt;

&lt;p&gt;Shemul started from that exact frustration. Not to replace how you work, but to make daily development smoother and safer.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Why Shemul Exists
&lt;/h2&gt;

&lt;p&gt;Modern stacks are powerful, but everyday workflows often feel messy. One project uses Docker, another runs FastAPI, and another needs custom scripts just to start. You end up juggling commands instead of focusing on real development.&lt;/p&gt;

&lt;p&gt;Shemul keeps things simple.&lt;/p&gt;

&lt;p&gt;It is a lightweight, project-aware CLI that centralizes your repetitive commands inside a single shemul.json file. Instead of remembering long scripts, you run clean, readable commands from one place.&lt;/p&gt;

&lt;p&gt;No heavy frameworks. No complicated setup. Just clarity.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧩 What Makes Shemul Different
&lt;/h2&gt;

&lt;p&gt;Shemul was built with a small but intentional philosophy: powerful enough to help, simple enough to trust.&lt;/p&gt;

&lt;p&gt;Here is what that looks like in practice:&lt;/p&gt;

&lt;p&gt;✨ Dual scope configuration&lt;br&gt;
Commands can live inside your project or globally across your system.&lt;/p&gt;

&lt;p&gt;🎯 Deterministic precedence&lt;br&gt;
Project commands always override global ones, so nothing behaves unexpectedly.&lt;/p&gt;

&lt;p&gt;🔎 Automatic project discovery&lt;br&gt;
If a shemul.json exists, the CLI understands the context instantly.&lt;/p&gt;

&lt;p&gt;🛡️ Safety first execution&lt;br&gt;
Confirm prompts, danger warnings, dry runs, and trace mode help prevent mistakes.&lt;/p&gt;

&lt;p&gt;🧱 Template-based initialization&lt;br&gt;
Start new projects faster with built-in templates for common stacks.&lt;/p&gt;

&lt;p&gt;📦 Rich CLI output&lt;br&gt;
Commands are grouped, explained, and easy to explore.&lt;/p&gt;

&lt;p&gt;The goal is not to force a new workflow. The goal is to organize the one you already have.&lt;/p&gt;
&lt;h2&gt;
  
  
  ⚙️ How It Works
&lt;/h2&gt;

&lt;p&gt;At the core of Shemul is a simple JSON configuration file where commands live.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"$schema"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://www.shemul.net/schema.json"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"example-project"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"runtime"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"docker"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"commands"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"up"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"run"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"docker compose up --build"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"desc"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Start stack"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After that, your workflow becomes:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;shemul up
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Short. Predictable. Easy to remember.&lt;/p&gt;

&lt;h3&gt;
  
  
  🌍 Scope Model
&lt;/h3&gt;

&lt;p&gt;Shemul supports two configuration scopes:&lt;/p&gt;

&lt;p&gt;📁 Project scope /shemul.json&lt;/p&gt;

&lt;p&gt;🌐 Global scope&lt;/p&gt;

&lt;p&gt;Windows: %APPDATA%\Shemul\shemul.json&lt;br&gt;
macOS: ~/Library/Application Support/Shemul/shemul.json&lt;br&gt;
Linux: $XDG_CONFIG_HOME/shemul/shemul.json or ~/.config/shemul/shemul.json&lt;/p&gt;

&lt;p&gt;If both scopes define the same command, the project version wins automatically.&lt;/p&gt;
&lt;h2&gt;
  
  
  ✨ Features You Will Notice Immediately
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Dual scope project and global configs&lt;/li&gt;
&lt;li&gt;Template-driven initialization&lt;/li&gt;
&lt;li&gt;Env and variable templating&lt;/li&gt;
&lt;li&gt;Safety flags like confirm and danger&lt;/li&gt;
&lt;li&gt;Diagnostics via shemul doctor&lt;/li&gt;
&lt;li&gt;JSON schema validation&lt;/li&gt;
&lt;li&gt;Friendly help and suggestions&lt;/li&gt;
&lt;li&gt;Shell completion for bash, zsh, and fish&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is designed to feel familiar from the first run.&lt;/p&gt;
&lt;h2&gt;
  
  
  🛠️ Getting Started
&lt;/h2&gt;

&lt;p&gt;Requirements:&lt;/p&gt;

&lt;p&gt;Python 3.14 or higher&lt;/p&gt;

&lt;p&gt;Install using pip:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install shemul
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Initialize global config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;shemul init -g
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Initialize a project:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;shemul init fastapi-backend
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;List commands:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;shemul ls
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run one:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;shemul &amp;lt;command&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also preview execution safely using dry run and trace mode before running anything risky.&lt;/p&gt;

&lt;h2&gt;
  
  
  📦 Version 1.0.0 Highlights
&lt;/h2&gt;

&lt;p&gt;This first release focuses on stability and strong fundamentals:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Project and global configuration system&lt;/li&gt;
&lt;li&gt;Template-based initialization&lt;/li&gt;
&lt;li&gt;Built-in safety controls&lt;/li&gt;
&lt;li&gt;Diagnostics and schema validation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of shipping dozens of experimental features, 1.0.0 focuses on reliability you can depend on daily.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔐 Security and Open Source
&lt;/h2&gt;

&lt;p&gt;Shemul is fully open source under the MIT License. Transparency and safety were core priorities from day one.&lt;/p&gt;

&lt;p&gt;If you discover any security-related issues, please contact &lt;a href="mailto:product@stechbd.net"&gt;product@stechbd.net&lt;/a&gt; directly.&lt;/p&gt;

&lt;p&gt;Contributions, ideas, and improvements are always welcome through GitHub.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧭 What Comes Next
&lt;/h2&gt;

&lt;p&gt;The roadmap is already moving forward:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Plugin and extensibility system&lt;/li&gt;
&lt;li&gt;Community template registry&lt;/li&gt;
&lt;li&gt;Improved cross-platform UX&lt;/li&gt;
&lt;li&gt;Optional team shared configuration&lt;/li&gt;
&lt;li&gt;More diagnostics and command introspection&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The vision is simple: give developers structure without slowing them down.&lt;/p&gt;

&lt;h2&gt;
  
  
  👨‍💻 About the Author
&lt;/h2&gt;

&lt;p&gt;Md. Ashraful Alam Shemul created Shemul from real-world development experience, where repetitive commands kept getting in the way of progress.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌏 About S Technologies
&lt;/h2&gt;

&lt;p&gt;Shemul is published by S Technologies, a research-focused technology company in Bangladesh, founded in 2013. The company works across AI research, software development, SaaS platforms, infrastructure, and open source innovation.&lt;/p&gt;

&lt;h2&gt;
  
  
  💬 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Shemul 1.0.0 is not about reinventing development tools. It is about removing friction.&lt;/p&gt;

&lt;p&gt;One config file.&lt;br&gt;
One clean CLI.&lt;br&gt;
One place for your workflow.&lt;/p&gt;

&lt;p&gt;If your projects feel cluttered with scripts and repeated commands, Shemul might be the small tool that makes a big difference.&lt;/p&gt;

</description>
      <category>shemul</category>
      <category>python</category>
      <category>cli</category>
    </item>
    <item>
      <title>S Database Explorer (SDE) v3.0.0</title>
      <dc:creator>Md. Ashraful Alam Shemul</dc:creator>
      <pubDate>Sun, 16 Jul 2023 07:51:52 +0000</pubDate>
      <link>https://dev.to/stechbd/s-database-explorer-sde-v300-37na</link>
      <guid>https://dev.to/stechbd/s-database-explorer-sde-v300-37na</guid>
      <description>&lt;p&gt;Introducing &lt;strong&gt;S Database Explorer (SDE)&lt;/strong&gt; - A Lightweight MySQL Database Explorer Library!&lt;/p&gt;

&lt;p&gt;We are excited to announce the release of &lt;strong&gt;S Database Explorer (SDE)&lt;/strong&gt;, a simple and lightweight MySQL database explorer library based on PHP and PDO. SDE is a free and open-source database management library that provides a user-friendly interface to manage your MySQL database efficiently. With its extensive features and easy-to-use methods, SDE simplifies the process of creating, updating, deleting, and selecting records in your MySQL database.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Create table: Easily create tables in your MySQL database.&lt;/li&gt;
&lt;li&gt;Insert record: Insert new records with customizable fields.&lt;/li&gt;
&lt;li&gt;Update record: Update existing records with specified criteria.&lt;/li&gt;
&lt;li&gt;Delete record: Delete records based on specific conditions.&lt;/li&gt;
&lt;li&gt;Select record: Retrieve single records from your database.&lt;/li&gt;
&lt;li&gt;Select all records: Fetch all records from a table.&lt;/li&gt;
&lt;li&gt;Select records with a where clause: Filter records using a custom WHERE clause.&lt;/li&gt;
&lt;li&gt;Select records with where clause and limit: Limit the number of records returned.&lt;/li&gt;
&lt;li&gt;Select records with where clause, limit, and offset: Fetch records with pagination.&lt;/li&gt;
&lt;li&gt;Select records with where clause, limit, offset, and order by: Sort and filter records simultaneously.&lt;/li&gt;
&lt;li&gt;Run custom query: Execute custom SQL queries for advanced database operations.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  VERSION 3.0.0 (JULY 16, 2023)
&lt;/h2&gt;

&lt;p&gt;This major release brings significant improvements and new features to SDE. Here's what's new:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Added support for PHP 7.4 or higher, ensuring compatibility with the latest PHP versions.&lt;/li&gt;
&lt;li&gt;Replaced MySQLi with PDO, enhancing database connectivity and security.&lt;/li&gt;
&lt;li&gt;Renamed the custom query method to run() for better clarity and consistency.&lt;/li&gt;
&lt;li&gt;Renamed the last insert item method to last() to improve usability.&lt;/li&gt;
&lt;li&gt;Renamed the number of rows count method to count() for better understanding.&lt;/li&gt;
&lt;li&gt;Added JSON output method, allowing you to retrieve query results in JSON format.&lt;/li&gt;
&lt;li&gt;Introduced the sum() method to calculate the sum of a column in a table.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;To get started with S Database Explorer (SDE), follow these simple steps:&lt;/p&gt;

&lt;p&gt;Install SDE using Composer:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;composer require stechbd/sde
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Autoload the library in your PHP file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="k"&gt;require_once&lt;/span&gt; &lt;span class="k"&gt;__DIR__&lt;/span&gt; &lt;span class="mf"&gt;.&lt;/span&gt; &lt;span class="s1"&gt;'/vendor/autoload.php'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Connect to your database:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="nv"&gt;$sde&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;STechBD\SDE&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'name'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'username'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'password'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'host'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'prefix'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Use the various methods provided by SDE to perform database operations, such as inserting, updating, deleting, and selecting records.&lt;/p&gt;

&lt;p&gt;For detailed usage instructions, including examples and code snippets, refer to the &lt;a href="https://docs.stechbd.net/SDE/" rel="noopener noreferrer"&gt;documentation&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  License and Security
&lt;/h2&gt;

&lt;p&gt;S Database Explorer (SDE) is an open-source library released under the GPLv3 license. It promotes collaboration and encourages contributions from the community. If you encounter any security issues, please reach out to us at &lt;a href="mailto:product@stechbd.net"&gt;product@stechbd.net&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Future Plans
&lt;/h2&gt;

&lt;p&gt;We have an exciting roadmap for S Database Explorer (SDE). Our future plans include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create and manage databases.&lt;/li&gt;
&lt;li&gt;Alter and drop tables.&lt;/li&gt;
&lt;li&gt;Truncate and rename tables.&lt;/li&gt;
&lt;li&gt;Add, rename, and drop columns.&lt;/li&gt;
&lt;li&gt;Add and drop indexes, foreign keys, and unique keys.&lt;/li&gt;
&lt;li&gt;Add and drop primary keys.&lt;/li&gt;
&lt;li&gt;Manage auto-increment values.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Stay tuned for these upcoming features that will further enhance the capabilities of SDE.&lt;/p&gt;

&lt;h2&gt;
  
  
  About &lt;strong&gt;S Technologies&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;S Technologies&lt;/strong&gt; is a technology company based in Dhaka, Bangladesh. We are passionate about developing innovative solutions and contributing to the open-source community. Explore our other open-source projects on our website.&lt;/p&gt;

&lt;h2&gt;
  
  
  Support and Contact
&lt;/h2&gt;

&lt;p&gt;If you have any general issues or questions related to S Database Explorer (SDE), feel free to contact our support team at &lt;a href="https://www.stechbd.net/support" rel="noopener noreferrer"&gt;STechBD.Net/support&lt;/a&gt;. If you discover any bugs or would like to suggest improvements, please use the &lt;a href="https://github.com/STechBD/SDE/issues" rel="noopener noreferrer"&gt;GitHub issue tracker&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Connect with us through our various channels:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/project/SDE/" rel="noopener noreferrer"&gt;Home Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.stechbd.net/SDE/" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/STechBD/SDE/issues" rel="noopener noreferrer"&gt;GitHub Issues&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://packagist.org/packages/stechbd/sde" rel="noopener noreferrer"&gt;Composer Package&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="mailto:product@stechbd.net"&gt;Email&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/support" rel="noopener noreferrer"&gt;Support Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/contact" rel="noopener noreferrer"&gt;Contact Form&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.facebook.com/STechBD.Net" rel="noopener noreferrer"&gt;Facebook&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://twitter.com/STechBD_Net" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/company/STechBD" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Hire Us
&lt;/h2&gt;

&lt;p&gt;Looking for professional web or app development services? Hire us for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/web-development" rel="noopener noreferrer"&gt;Web App Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/android-app-development" rel="noopener noreferrer"&gt;Android App Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/ios-app-development" rel="noopener noreferrer"&gt;iOS App Development&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Join us in improving S Database Explorer (SDE) by contributing to our GitHub repository: &lt;a href="https://github.com/STechBD/SDE" rel="noopener noreferrer"&gt;STechBD/SDE&lt;/a&gt;. We welcome your pull requests and appreciate your valuable contributions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Privacy Policy and Terms &amp;amp; Conditions
&lt;/h2&gt;

&lt;p&gt;Please review our Privacy Policy and Terms &amp;amp; Conditions for more information:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/terms" rel="noopener noreferrer"&gt;Terms &amp;amp; Conditions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/refund-policy" rel="noopener noreferrer"&gt;Refund Policy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.stechbd.net/software-license-agreement" rel="noopener noreferrer"&gt;Software License Agreement&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Copyright
&lt;/h2&gt;

&lt;p&gt;© 2013-23 &lt;strong&gt;S Technologies&lt;/strong&gt;. All rights reserved.&lt;/p&gt;

</description>
      <category>stechbd</category>
      <category>sde</category>
      <category>php</category>
      <category>mysql</category>
    </item>
  </channel>
</rss>
