<?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: Meisam Maani</title>
    <description>The latest articles on DEV Community by Meisam Maani (@maanimis).</description>
    <link>https://dev.to/maanimis</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%2F1944410%2F2851aab5-fde9-46f1-b57a-954a240b3bed.jpeg</url>
      <title>DEV Community: Meisam Maani</title>
      <link>https://dev.to/maanimis</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maanimis"/>
    <language>en</language>
    <item>
      <title>Kickstart Your MT4 EA Development withmql4-template</title>
      <dc:creator>Meisam Maani</dc:creator>
      <pubDate>Fri, 09 May 2025 14:46:19 +0000</pubDate>
      <link>https://dev.to/maanimis/kickstart-your-mt4-ea-development-withmql4-template-2n21</link>
      <guid>https://dev.to/maanimis/kickstart-your-mt4-ea-development-withmql4-template-2n21</guid>
      <description>&lt;h1&gt;
  
  
  🚀 Kickstart Your MT4 EA Development with &lt;code&gt;mql4-template&lt;/code&gt;
&lt;/h1&gt;

&lt;p&gt;If you're diving into algorithmic trading with MetaTrader 4 (MT4), you’ve probably felt the friction of working with raw &lt;code&gt;.mq4&lt;/code&gt; files, manually organizing your code, and struggling with code reuse across different Expert Advisors (EAs). After going through this myself, I decided to streamline the process by creating a modern, modular MQL4 EA template — and I’m excited to share it with you.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;GitHub Repo:&lt;/strong&gt; &lt;a href="https://github.com/marketnoobtrader/mql4-template" rel="noopener noreferrer"&gt;marketnoobtrader/mql4-template&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Template?
&lt;/h2&gt;

&lt;p&gt;MT4’s native development environment and scripting conventions are... dated. This template brings structure, consistency, and separation of concerns into MQL4 development — inspired by best practices from broader software engineering.&lt;/p&gt;

&lt;p&gt;Whether you're a beginner building your first strategy, or an advanced trader tired of copy-pasting functions across EAs, this repo will save you time and headaches.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✨ Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Modular file structure&lt;/strong&gt; – Cleanly separates logic (like indicators, entries, risk management).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scalable architecture&lt;/strong&gt; – Easily extend or refactor without spaghetti code.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in utility functions&lt;/strong&gt; – Common helpers like order management, logging, and more.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ready-to-build EA&lt;/strong&gt; – Plug in your own logic and hit compile.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Commented code&lt;/strong&gt; – Every block of code includes annotations to help you understand what’s happening.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧱 Folder Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mql4-template/
├── experts/         &lt;span class="c"&gt;# Main EA entry point&lt;/span&gt;
├── includes/        &lt;span class="c"&gt;# Utility and helper files&lt;/span&gt;
├── strategies/      &lt;span class="c"&gt;# Your custom trading logic&lt;/span&gt;
├── risk/            &lt;span class="c"&gt;# Risk and money management logic&lt;/span&gt;
├── indicators/      &lt;span class="c"&gt;# Custom or wrapper indicators&lt;/span&gt;
└── tests/           &lt;span class="c"&gt;# Optional: backtesting or testing scripts&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






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

&lt;ol&gt;
&lt;li&gt;Clone the repo:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   git clone https://github.com/marketnoobtrader/mql4-template.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Open the &lt;code&gt;.mq4&lt;/code&gt; file in MetaEditor.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Start modifying the logic inside the &lt;code&gt;/strategies&lt;/code&gt; and &lt;code&gt;/risk&lt;/code&gt; folders.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Compile and test in MT4 Strategy Tester.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  📈 Who Is This For?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Forex traders writing custom EAs in MT4&lt;/li&gt;
&lt;li&gt;Developers building modular and testable trading bots&lt;/li&gt;
&lt;li&gt;Anyone tired of writing procedural, monolithic &lt;code&gt;.mq4&lt;/code&gt; files&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🙌 Contributions Welcome
&lt;/h2&gt;

&lt;p&gt;This project is intentionally lightweight, and I’d love feedback or pull requests if you have improvements in mind. Let's bring some modern dev practices into the world of MQL4.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧭 Roadmap Ideas
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add common indicator wrappers (e.g., RSI, MACD, ATR)&lt;/li&gt;
&lt;li&gt;Support multi-timeframe logic&lt;/li&gt;
&lt;li&gt;Add automatic risk per trade calculator&lt;/li&gt;
&lt;li&gt;Basic backtest data logging template&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Check It Out
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/marketnoobtrader/mql4-template" rel="noopener noreferrer"&gt;GitHub – marketnoobtrader/mql4-template&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;If you found this useful, feel free to ⭐ the repo, fork it, or share it with fellow MT4 coders. Happy trading!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Kickstart Your MT4 EA Development withmql4-template</title>
      <dc:creator>Meisam Maani</dc:creator>
      <pubDate>Fri, 09 May 2025 14:46:19 +0000</pubDate>
      <link>https://dev.to/maanimis/kickstart-your-mt4-ea-development-withmql4-template-pj1</link>
      <guid>https://dev.to/maanimis/kickstart-your-mt4-ea-development-withmql4-template-pj1</guid>
      <description>&lt;h1&gt;
  
  
  🚀 Kickstart Your MT4 EA Development with &lt;code&gt;mql4-template&lt;/code&gt;
&lt;/h1&gt;

&lt;p&gt;If you're diving into algorithmic trading with MetaTrader 4 (MT4), you’ve probably felt the friction of working with raw &lt;code&gt;.mq4&lt;/code&gt; files, manually organizing your code, and struggling with code reuse across different Expert Advisors (EAs). After going through this myself, I decided to streamline the process by creating a modern, modular MQL4 EA template — and I’m excited to share it with you.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;GitHub Repo:&lt;/strong&gt; &lt;a href="https://github.com/marketnoobtrader/mql4-template" rel="noopener noreferrer"&gt;marketnoobtrader/mql4-template&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Template?
&lt;/h2&gt;

&lt;p&gt;MT4’s native development environment and scripting conventions are... dated. This template brings structure, consistency, and separation of concerns into MQL4 development — inspired by best practices from broader software engineering.&lt;/p&gt;

&lt;p&gt;Whether you're a beginner building your first strategy, or an advanced trader tired of copy-pasting functions across EAs, this repo will save you time and headaches.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✨ Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Modular file structure&lt;/strong&gt; – Cleanly separates logic (like indicators, entries, risk management).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scalable architecture&lt;/strong&gt; – Easily extend or refactor without spaghetti code.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in utility functions&lt;/strong&gt; – Common helpers like order management, logging, and more.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ready-to-build EA&lt;/strong&gt; – Plug in your own logic and hit compile.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Commented code&lt;/strong&gt; – Every block of code includes annotations to help you understand what’s happening.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧱 Folder Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;mql4-template/
├── experts/         &lt;span class="c"&gt;# Main EA entry point&lt;/span&gt;
├── includes/        &lt;span class="c"&gt;# Utility and helper files&lt;/span&gt;
├── strategies/      &lt;span class="c"&gt;# Your custom trading logic&lt;/span&gt;
├── risk/            &lt;span class="c"&gt;# Risk and money management logic&lt;/span&gt;
├── indicators/      &lt;span class="c"&gt;# Custom or wrapper indicators&lt;/span&gt;
└── tests/           &lt;span class="c"&gt;# Optional: backtesting or testing scripts&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






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

&lt;ol&gt;
&lt;li&gt;Clone the repo:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   git clone https://github.com/marketnoobtrader/mql4-template.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Open the &lt;code&gt;.mq4&lt;/code&gt; file in MetaEditor.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Start modifying the logic inside the &lt;code&gt;/strategies&lt;/code&gt; and &lt;code&gt;/risk&lt;/code&gt; folders.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Compile and test in MT4 Strategy Tester.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  📈 Who Is This For?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Forex traders writing custom EAs in MT4&lt;/li&gt;
&lt;li&gt;Developers building modular and testable trading bots&lt;/li&gt;
&lt;li&gt;Anyone tired of writing procedural, monolithic &lt;code&gt;.mq4&lt;/code&gt; files&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🙌 Contributions Welcome
&lt;/h2&gt;

&lt;p&gt;This project is intentionally lightweight, and I’d love feedback or pull requests if you have improvements in mind. Let's bring some modern dev practices into the world of MQL4.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧭 Roadmap Ideas
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add common indicator wrappers (e.g., RSI, MACD, ATR)&lt;/li&gt;
&lt;li&gt;Support multi-timeframe logic&lt;/li&gt;
&lt;li&gt;Add automatic risk per trade calculator&lt;/li&gt;
&lt;li&gt;Basic backtest data logging template&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Check It Out
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/marketnoobtrader/mql4-template" rel="noopener noreferrer"&gt;GitHub – marketnoobtrader/mql4-template&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;If you found this useful, feel free to ⭐ the repo, fork it, or share it with fellow MT4 coders. Happy trading!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introducing localcache-meisam (Storage Manager)</title>
      <dc:creator>Meisam Maani</dc:creator>
      <pubDate>Wed, 04 Sep 2024 09:58:32 +0000</pubDate>
      <link>https://dev.to/maanimis/introducing-localcache-meisam-storage-manager-5ejk</link>
      <guid>https://dev.to/maanimis/introducing-localcache-meisam-storage-manager-5ejk</guid>
      <description>&lt;h2&gt;
  
  
  Introducing localcache-meisam: Simplified Node.js Storage Management
&lt;/h2&gt;

&lt;p&gt;I'm thrilled to introduce &lt;strong&gt;&lt;a href="https://github.com/maanimis/localcache-meisam" rel="noopener noreferrer"&gt;localcache-meisam&lt;/a&gt;&lt;/strong&gt;, a streamlined Node.js application designed to handle both in-memory and file-based local storage. Whether you're building a web application or need a quick data storage solution, localcache-meisam offers an easy-to-use RESTful API to manage your data efficiently.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;In-Memory Storage:&lt;/strong&gt; Fast and temporary storage for quick access.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local File-Based Storage:&lt;/strong&gt; Persistent storage on the file system.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Global Utility:&lt;/strong&gt; Easily run the server from the command line.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Package Integration:&lt;/strong&gt; Use it as a package in your Node.js projects.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why Use &lt;a href="https://github.com/maanimis/localcache-meisam" rel="noopener noreferrer"&gt;localcache-meisam&lt;/a&gt;?
&lt;/h3&gt;

&lt;p&gt;If you have a small project and want to avoid the hassle of setting up a database or API, this package is here to help. It simplifies data management so you can focus on building your application without the overhead of complex database systems.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/maanimis/localcache-meisam" rel="noopener noreferrer"&gt;https://github.com/maanimis/localcache-meisam&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introducing telAdviser: Your Ultimate Telegram Assistant</title>
      <dc:creator>Meisam Maani</dc:creator>
      <pubDate>Sun, 18 Aug 2024 18:14:39 +0000</pubDate>
      <link>https://dev.to/maanimis/introducing-teladviser-your-ultimate-telegram-assistant-2b8m</link>
      <guid>https://dev.to/maanimis/introducing-teladviser-your-ultimate-telegram-assistant-2b8m</guid>
      <description>&lt;p&gt;Are you tired of dealing with restrictions on Telegram channels and groups? Want an easier way to manage your posts and keep backups? Meet telAdviser - a Telegram assistant designed to make your experience smoother and more efficient.&lt;br&gt;
&lt;a href="https://github.com/maanimis/telAdviser" rel="noopener noreferrer"&gt;https://github.com/maanimis/telAdviser&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fryuqlwkuifqxy4nvjhjf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fryuqlwkuifqxy4nvjhjf.png" alt="Image description" width="800" height="3612"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why telAdviser?&lt;/strong&gt;&lt;br&gt;
telAdviser is a powerful tool that allows you to:&lt;br&gt;
Bypass Restrictions: Effortlessly forward posts from channels and groups that have blocked posting and forwarding.&lt;br&gt;
Backup with Ease: Save posts from both public and private channels and groups to any location of your choice.&lt;br&gt;
Save Time: Forget about the hassle of manually selecting posts - telAdviser does it all for you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to Get Started&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/maanimis/telAdviser" rel="noopener noreferrer"&gt;GitHub - maanimis/telAdviser&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Getting started with telAdviser is straightforward:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Get Your Credentials: Retrieve your hash and ID from the Telegram site.&lt;/li&gt;
&lt;li&gt;Edit the Config File: Customize your settings by editing the production.json file.&lt;/li&gt;
&lt;li&gt;Install Node.js: If you haven't already, install Node.js.&lt;/li&gt;
&lt;li&gt;Run telAdviser: Execute the following commands in your terminal:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;nano config/production.json&lt;br&gt;
npm i&lt;br&gt;
npm start&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Explore the Features: Use the /help command within the bot to discover all the functionalities telAdviser has to offer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
Whether you're a casual user or a power Telegram user, telAdviser is here to make your life easier. Say goodbye to the limitations and enjoy a more flexible, efficient experience on Telegram.&lt;/p&gt;

</description>
      <category>node</category>
      <category>telegram</category>
      <category>bypass</category>
    </item>
    <item>
      <title>Supercharge Your Telegram Experience with Our Chrome Extension</title>
      <dc:creator>Meisam Maani</dc:creator>
      <pubDate>Sun, 18 Aug 2024 17:27:09 +0000</pubDate>
      <link>https://dev.to/maanimis/supercharge-your-telegram-experience-with-our-chrome-extension-30i2</link>
      <guid>https://dev.to/maanimis/supercharge-your-telegram-experience-with-our-chrome-extension-30i2</guid>
      <description>&lt;p&gt;Telegram Mini Apps have revolutionized the way we interact within the Telegram ecosystem, offering a range of utilities from productivity tools to entertainment hubs. However, using these Mini Apps effectively, especially on Telegram Web, can sometimes be a challenge. That’s where our Chrome Extension, Telegram Mini App Tools, comes in.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhs2ijfcxx788w9161cs0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhs2ijfcxx788w9161cs0.png" alt="Image description" width="497" height="709"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What is Telegram Mini App Tools?&lt;/p&gt;

&lt;p&gt;Telegram Mini App Tools is a powerful Chrome Extension designed to enhance your experience with Telegram Web. Whether you’re a developer, a power user, or just someone who loves using Mini Apps, this tool is tailored to make your life easier. Here’s what it offers:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Effortless Authorization Token Retrieval: No more digging through endless code or struggling with complex processes. Our extension allows you to quickly and easily retrieve the authorization token required for many Mini Apps.
Seamless Mini App Access: Want to open Mini Apps directly from Telegram Web? Our tool enables you to do just that, bypassing the limitations that often come with the web version.
Original URL Extraction: Sometimes, you need to get the original URL of a Mini App — whether for sharing, debugging, or other purposes. With our extension, this is just a click away.
Message Copying from Restricted Channels: Telegram channels often restrict copying of messages, making it difficult to save or share important information. Our extension lifts this restriction, allowing you to copy messages even from channels that normally prevent it.

https://github.com/maanimis/TelegramMiniAppTools
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Why You Need This Extension&lt;/p&gt;

&lt;p&gt;Telegram Web users often find themselves limited compared to those using the mobile or desktop apps. Many Mini Apps simply don’t function as expected, or at all, on the web version. Telegram Mini App Tools bridges this gap, ensuring that you can use Mini Apps to their fullest potential, regardless of the platform.&lt;/p&gt;

&lt;p&gt;Here’s how this extension will improve your workflow:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Save Time: No more switching between devices or browsers. Access and use Mini Apps directly from Telegram Web.
Increase Productivity: Quickly access the tools you need without the usual hassles.
Expand Your Capabilities: Do more with Telegram Web by unlocking features typically reserved for mobile users.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Getting Started&lt;/p&gt;

&lt;p&gt;Installing Telegram Mini App Tools is simple. Head over to the Chrome Web Store, search for “Telegram Mini App Tools,” and add it to your browser. Once installed, you’ll have immediate access to all its features.&lt;br&gt;
Conclusion&lt;/p&gt;

&lt;p&gt;Telegram Mini Apps are a powerful part of the Telegram ecosystem, and with Telegram Mini App Tools, you can make the most of them — right from your browser. Whether you’re looking to streamline your workflow, access restricted features, or simply enhance your overall Telegram Web experience, this extension is the tool you’ve been waiting for.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[Give it a try today and take your Telegram Web experience to the next level!

https://github.com/maanimis/TelegramMiniAppTools](https://github.com/maanimis/TelegramMiniAppTools)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>extensions</category>
      <category>telegram</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
