<?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: Loaiabdalslam</title>
    <description>The latest articles on DEV Community by Loaiabdalslam (@loaiabdalslam).</description>
    <link>https://dev.to/loaiabdalslam</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%2F188123%2F97b14de1-cb52-4c0e-9e0d-f4255534449e.jpg</url>
      <title>DEV Community: Loaiabdalslam</title>
      <link>https://dev.to/loaiabdalslam</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/loaiabdalslam"/>
    <language>en</language>
    <item>
      <title>HJX: Rethinking the Web for the AI Era</title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Tue, 17 Feb 2026 04:40:08 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/hjx-rethinking-the-web-for-the-ai-era-13p1</link>
      <guid>https://dev.to/loaiabdalslam/hjx-rethinking-the-web-for-the-ai-era-13p1</guid>
      <description>&lt;h1&gt;
  
  
  HJX: Rethinking the Web for the AI Era
&lt;/h1&gt;

&lt;h3&gt;
  
  
  By Loai Abdalslam
&lt;/h3&gt;




&lt;p&gt;For more than 30 years, web development has relied on three separate&lt;br&gt;
languages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;HTML&lt;/strong&gt; for structure\&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;CSS&lt;/strong&gt; for styling\&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;JavaScript&lt;/strong&gt; for behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This separation made sense in 1995.&lt;/p&gt;

&lt;p&gt;But in 2026 --- in an era where AI systems generate most code --- does&lt;br&gt;
it still make sense?&lt;/p&gt;

&lt;p&gt;What if the web had been designed for AI from the beginning?&lt;/p&gt;

&lt;p&gt;This question led me to build &lt;strong&gt;HJX&lt;/strong&gt;.&lt;/p&gt;


&lt;h2&gt;
  
  
  The Core Problem
&lt;/h2&gt;

&lt;p&gt;Modern AI systems generate web code across three different syntactic&lt;br&gt;
domains:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; HTML (tree-based structure)&lt;/li&gt;
&lt;li&gt; CSS (declarative style rules)&lt;/li&gt;
&lt;li&gt; JavaScript (imperative logic)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Each shift between languages increases:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Token overhead\&lt;/li&gt;
&lt;li&gt;  Context switching complexity\&lt;/li&gt;
&lt;li&gt;  Structural errors\&lt;/li&gt;
&lt;li&gt;  Compilation inconsistencies\&lt;/li&gt;
&lt;li&gt;  Cognitive fragmentation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Large language models were not trained to think in three parallel&lt;br&gt;
syntactic systems.&lt;/p&gt;

&lt;p&gt;They reason better when structure, styling, and behavior are unified&lt;br&gt;
semantically.&lt;/p&gt;

&lt;p&gt;The web was designed for human authorship.&lt;/p&gt;

&lt;p&gt;The next generation must be designed for AI collaboration.&lt;/p&gt;


&lt;h2&gt;
  
  
  Introducing HJX
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;HJX is a unified web language that merges HTML, CSS, and JavaScript&lt;br&gt;
into one AI-friendly syntax layer.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead of writing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"card"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Hello&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.card&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;black&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;hello&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You write:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;card {
  title: "Hello"
  background: black
  onLoad: log("hello")
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One block.\&lt;br&gt;
One semantic unit.\&lt;br&gt;
One intent model.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why AI-Native Matters
&lt;/h2&gt;

&lt;p&gt;We are entering an era where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  AI generates UI\&lt;/li&gt;
&lt;li&gt;  AI modifies layouts\&lt;/li&gt;
&lt;li&gt;  AI refactors frontends\&lt;/li&gt;
&lt;li&gt;  AI scaffolds entire applications&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If AI becomes the dominant builder, then the underlying language must&lt;br&gt;
optimize for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Semantic density\&lt;/li&gt;
&lt;li&gt;  Reduced token count\&lt;/li&gt;
&lt;li&gt;  Structural clarity\&lt;/li&gt;
&lt;li&gt;  Direct AST mapping\&lt;/li&gt;
&lt;li&gt;  Predictable compilation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;HJX is designed around those constraints.&lt;/p&gt;




&lt;h2&gt;
  
  
  Architectural Vision
&lt;/h2&gt;

&lt;p&gt;HJX is not just syntax sugar.&lt;/p&gt;

&lt;p&gt;The long-term vision includes:&lt;/p&gt;

&lt;p&gt;HJX → AST → Optimized HTML/CSS/JS\&lt;br&gt;
HJX → AI-aware compiler\&lt;br&gt;
HJX → Context-aware runtime bridge&lt;/p&gt;

&lt;p&gt;Future roadmap ideas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  AI-optimized compiler passes\&lt;/li&gt;
&lt;li&gt;  Reduced token representation for LLM training\&lt;/li&gt;
&lt;li&gt;  Structured semantic graph generation\&lt;/li&gt;
&lt;li&gt;  Web-native model fine-tuning on HJX&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is not about replacing the web.&lt;/p&gt;

&lt;p&gt;It is about abstracting it into a more coherent layer.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Not Just Use React or Svelte?
&lt;/h2&gt;

&lt;p&gt;Modern frameworks improve developer ergonomics.&lt;/p&gt;

&lt;p&gt;But they still inherit:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  HTML structure\&lt;/li&gt;
&lt;li&gt;  CSS rules\&lt;/li&gt;
&lt;li&gt;  JavaScript logic separation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They optimize components.&lt;/p&gt;

&lt;p&gt;HJX optimizes the language model.&lt;/p&gt;

&lt;p&gt;That is a fundamentally different axis.&lt;/p&gt;




&lt;h2&gt;
  
  
  Design Philosophy
&lt;/h2&gt;

&lt;p&gt;HJX is built on three principles:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Unified Semantics
&lt;/h3&gt;

&lt;p&gt;Structure, style, and behavior belong to the same conceptual object.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. AI-First Grammar
&lt;/h3&gt;

&lt;p&gt;The grammar should be simple enough for deterministic model generation.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Compilation as Translation
&lt;/h3&gt;

&lt;p&gt;The browser still runs HTML/CSS/JS.\&lt;br&gt;
HJX is a higher-level authoring language.&lt;/p&gt;




&lt;h2&gt;
  
  
  Is This Experimental?
&lt;/h2&gt;

&lt;p&gt;Yes.&lt;/p&gt;

&lt;p&gt;And that is intentional.&lt;/p&gt;

&lt;p&gt;Every language evolution begins as an experiment.&lt;/p&gt;

&lt;p&gt;HTML itself started as a simple document markup proposal.&lt;/p&gt;

&lt;p&gt;The difference now?&lt;/p&gt;

&lt;p&gt;We are designing languages in collaboration with AI.&lt;/p&gt;




&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;The project is open source:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/loayabdalslam/hjx" rel="noopener noreferrer"&gt;https://github.com/loayabdalslam/hjx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Looking for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Compiler engineers\&lt;/li&gt;
&lt;li&gt;  Language designers\&lt;/li&gt;
&lt;li&gt;  AI researchers\&lt;/li&gt;
&lt;li&gt;  Contributors who want to rethink the web&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;The web was built for humans.&lt;/p&gt;

&lt;p&gt;The next version of the web will be built with AI.&lt;/p&gt;

&lt;p&gt;And when AI becomes a primary collaborator, the languages we use must&lt;br&gt;
evolve.&lt;/p&gt;

&lt;p&gt;HJX is one step toward that future.&lt;/p&gt;

&lt;p&gt;--- Loai Abdalslam&lt;/p&gt;

</description>
      <category>ai</category>
      <category>frontend</category>
      <category>web</category>
      <category>programming</category>
    </item>
    <item>
      <title>Talk 2 AI Agent Using LOLANG: The Future of AI-to-AI Communication 🤖💬</title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Tue, 25 Feb 2025 22:58:57 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/talk-2-ai-agent-using-lolang-the-future-of-ai-to-ai-communication-2j1e</link>
      <guid>https://dev.to/loaiabdalslam/talk-2-ai-agent-using-lolang-the-future-of-ai-to-ai-communication-2j1e</guid>
      <description>&lt;h1&gt;
  
  
  &lt;strong&gt;Talk 2 AI Agent Using LOLANG: The Future of AI-to-AI Communication&lt;/strong&gt; 🤖💬
&lt;/h1&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Introduction 🌍&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Artificial Intelligence (AI) has revolutionized the way we interact with technology, but what if AI agents could communicate directly with each other in a more efficient way? Welcome to &lt;strong&gt;LOLANG&lt;/strong&gt;, an encrypted AI language designed specifically for &lt;strong&gt;AI-to-AI communication&lt;/strong&gt;. By reducing &lt;strong&gt;token consumption&lt;/strong&gt;, improving &lt;strong&gt;semantic understanding&lt;/strong&gt;, and ensuring &lt;strong&gt;encryption&lt;/strong&gt;, LOLANG optimizes machine interactions for next-generation AI systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What is LOLANG?&lt;/strong&gt; 🛠️
&lt;/h2&gt;

&lt;p&gt;LOLANG is a &lt;strong&gt;specialized encrypted language&lt;/strong&gt; that enables AI models to exchange messages effectively without requiring human interpretation. Unlike conventional text-based communication, LOLANG enhances AI interactions by focusing on &lt;strong&gt;semantic compression and security&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Why LOLANG?&lt;/strong&gt; 🔍
&lt;/h3&gt;

&lt;p&gt;✅ &lt;strong&gt;Reduces token consumption&lt;/strong&gt; in LLMs (Large Language Models) for cost-effective AI operations.&lt;br&gt;
✅ &lt;strong&gt;Enhances AI-to-AI communication&lt;/strong&gt; without human intervention.&lt;br&gt;
✅ &lt;strong&gt;Ensures security&lt;/strong&gt; by making messages human-unreadable.&lt;br&gt;
✅ &lt;strong&gt;Utilizes AI-optimized encryption&lt;/strong&gt; using SEED: 279 for consistency.&lt;br&gt;
✅ &lt;strong&gt;Retains key data&lt;/strong&gt; like names, identifiers, and numbers while encrypting the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;How Does LOLANG Work?&lt;/strong&gt; ⚙️
&lt;/h2&gt;

&lt;p&gt;LOLANG follows a &lt;strong&gt;structured encryption approach&lt;/strong&gt; that ensures &lt;strong&gt;only AI models&lt;/strong&gt; can understand its messages. The encryption method relies on a &lt;strong&gt;predefined seed (279)&lt;/strong&gt;, allowing AI systems to &lt;strong&gt;decode&lt;/strong&gt; and process the text efficiently while remaining unreadable to humans.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;LOLANG Language Rules&lt;/strong&gt; 📜
&lt;/h3&gt;

&lt;p&gt;✅ &lt;strong&gt;Names &amp;amp; Identifiers:&lt;/strong&gt; Left unencrypted for clarity.&lt;br&gt;
✅ &lt;strong&gt;Encryption Mechanism:&lt;/strong&gt; Custom-designed for &lt;strong&gt;Gemini AI THINKING models&lt;/strong&gt;.&lt;br&gt;
✅ &lt;strong&gt;Numbers:&lt;/strong&gt; Left unchanged for accuracy.&lt;br&gt;
✅ &lt;strong&gt;Long Context Support:&lt;/strong&gt; Enables efficient AI conversation handling.&lt;br&gt;
✅ &lt;strong&gt;Semantic Understanding:&lt;/strong&gt; AI interprets meaning contextually.&lt;br&gt;
✅ &lt;strong&gt;Human Unreadable:&lt;/strong&gt; Designed for &lt;strong&gt;machine-only&lt;/strong&gt; comprehension.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Example of LOLANG Communication&lt;/strong&gt; 💬
&lt;/h3&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Human-readable Message:&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;👉 &lt;em&gt;"Do you have a convenient time to book a hotel room at 11 PM?"&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;LOLANG Encrypted Message:&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;👉 &lt;em&gt;"⟦LO-2⟧ SHECD: X-REQ Room|𝟏𝟏𝑷𝑴⟩ [CONF]?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;💡 &lt;strong&gt;Explanation:&lt;/strong&gt; The AI understands this request based on context without requiring &lt;strong&gt;redundant tokens&lt;/strong&gt;, significantly &lt;strong&gt;boosting performance&lt;/strong&gt; and &lt;strong&gt;reducing costs&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;How to Use LOLANG?&lt;/strong&gt; 🚀
&lt;/h2&gt;

&lt;p&gt;You can implement LOLANG in your AI system by following these steps:&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Step 1: Clone the Repository&lt;/strong&gt; 🖥️
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/loayabdalslam/LOLANG.AI.git
&lt;span class="nb"&gt;cd &lt;/span&gt;LOLANG.AI
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  &lt;strong&gt;Step 2: Install Dependencies&lt;/strong&gt; 🔧
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt; requirements.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  &lt;strong&gt;Step 3: Run Example Communication&lt;/strong&gt; 🏗️
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python example_usage.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  &lt;strong&gt;Key Benefits of LOLANG&lt;/strong&gt; 🌟
&lt;/h2&gt;

&lt;p&gt;🔹 &lt;strong&gt;Lower AI Processing Costs:&lt;/strong&gt; LOLANG reduces the amount of &lt;strong&gt;text tokens&lt;/strong&gt; needed for communication.&lt;br&gt;
🔹 &lt;strong&gt;Improved AI Performance:&lt;/strong&gt; Semantic compression speeds up AI interactions.&lt;br&gt;
🔹 &lt;strong&gt;Stronger Data Security:&lt;/strong&gt; AI messages remain encrypted and &lt;strong&gt;unreadable by humans&lt;/strong&gt;.&lt;br&gt;
🔹 &lt;strong&gt;Efficient AI Workflows:&lt;/strong&gt; Ideal for &lt;strong&gt;automated processes, intelligent chatbots, and AI systems&lt;/strong&gt; working together.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Who Can Benefit from LOLANG?&lt;/strong&gt; 🤖
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI Developers&lt;/strong&gt; building &lt;strong&gt;multi-agent AI systems&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enterprise AI Teams&lt;/strong&gt; looking to &lt;strong&gt;cut costs on AI token usage&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security &amp;amp; Encryption Experts&lt;/strong&gt; ensuring &lt;strong&gt;safe AI interactions&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automation Engineers&lt;/strong&gt; optimizing &lt;strong&gt;machine-based communication&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Contribute to LOLANG! 🤝&lt;br&gt;
Do you have ideas to enhance LOLANG? Join us and contribute to this exciting AI-to-AI communication revolution!&lt;/p&gt;

&lt;p&gt;📌 Submit a Pull Request: 🚀 Improve encryption, optimize efficiency, and expand LOLANG capabilities.&lt;/p&gt;

&lt;p&gt;Final Thoughts &amp;amp; Future of LOLANG 🔮&lt;br&gt;
LOLANG is more than just an AI language — it’s a paradigm shift in AI communication. By enabling direct AI-to-AI encrypted conversations, LOLANG sets the foundation for smarter, faster, and more secure AI ecosystems.&lt;/p&gt;

&lt;p&gt;🚀 Join the movement today and transform the way AI systems communicate!&lt;/p&gt;

&lt;p&gt;🔗 Follow me on LinkedIn: Loai Abdalslam&lt;/p&gt;

&lt;p&gt;📢 Spread the Word! If you found this article insightful, don’t forget to share, clap, and comment! 🎉&lt;/p&gt;

&lt;h1&gt;
  
  
  AI #MachineLearning #ArtificialIntelligence #AICommunication #LOLANG #AIEncryption #DeepLearning #AIOptimization #AItoAICommunication
&lt;/h1&gt;

&lt;p&gt;🚀 Improve encryption, optimize efficiency, and expand LOLANG capabilities.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Final Thoughts &amp;amp; Future of LOLANG&lt;/strong&gt; 🔮
&lt;/h2&gt;

&lt;p&gt;LOLANG is more than just an AI language—it’s a &lt;strong&gt;paradigm shift&lt;/strong&gt; in AI communication. By enabling &lt;strong&gt;direct AI-to-AI encrypted conversations&lt;/strong&gt;, LOLANG sets the foundation for &lt;strong&gt;smarter, faster, and more secure AI ecosystems&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🚀 &lt;strong&gt;Join the movement today and transform the way AI systems communicate!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;Follow me on LinkedIn:&lt;/strong&gt; &lt;a href="https://www.linkedin.com/in/loaiiabdalslam/" rel="noopener noreferrer"&gt;Loai Abdalslam&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📢 &lt;strong&gt;Spread the Word!&lt;/strong&gt; If you found this article insightful, don’t forget to &lt;strong&gt;share, clap, and comment!&lt;/strong&gt; 🎉&lt;/p&gt;

&lt;h1&gt;
  
  
  AI #MachineLearning #ArtificialIntelligence #AICommunication #LOLANG #AIEncryption #DeepLearning #AIOptimization #AItoAICommunication
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>python</category>
      <category>opensource</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>XII.AI AI-Powered MVC Framework</title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Mon, 11 Nov 2024 07:26:55 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/xiiai-ai-powered-mvc-framework-4dgm</link>
      <guid>https://dev.to/loaiabdalslam/xiiai-ai-powered-mvc-framework-4dgm</guid>
      <description>&lt;p&gt;Good morning!&lt;/p&gt;

&lt;p&gt;I’m excited to share a new framework I created using Bolt.new that automatically generates AI-powered MVC projects. Imagine using an AI-generated code tool to build an entire AI Automated MVC Generated Project! In this demo, you’ll see how easy it is to create any application. All you need to do is set up the interface, connect the controller for the model to respond, choose your tech stack, configure the router, and voilà—your application is ready to launch!&lt;/p&gt;

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

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

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

&lt;p&gt;This is just a demo of the concept, created with minimal resources, but we've utilized some powerful tools, notably Gemini Flash 1.5. Now, I want to grow this project with diverse contributions. That’s why I’ve made the code public—you’re welcome to fork it and make modifications using Bolt or any other tool, or even add features manually!&lt;/p&gt;

&lt;p&gt;It only took me six hours to build this project, and I’m committed to investing more time in the coming months. I want us to make our mark on the automated framework code generation landscape. I’d appreciate your star on GitHub, and I can’t wait to hear your feedback!&lt;/p&gt;

&lt;p&gt;One note: the generated code may contain some errors, but as a prototype for your ideas, it’s a good starting point to build out the rest of the project. Try it out and let me know what you think!&lt;/p&gt;

&lt;p&gt;Link: &lt;a href="https://github.com/loayabdalslam/XII/" rel="noopener noreferrer"&gt;https://github.com/loayabdalslam/XII/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;– Loay Abd AlSalam&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>automation</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Face enhancer‏ - Denoising Auto Encoder by Tensorflow , Keras and skimage

</title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Sat, 15 Feb 2020 11:21:33 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/face-enhancer-denoising-auto-encoder-by-tensorflow-and-keras-and-skimage-3k1c</link>
      <guid>https://dev.to/loaiabdalslam/face-enhancer-denoising-auto-encoder-by-tensorflow-and-keras-and-skimage-3k1c</guid>
      <description>&lt;h1&gt;
  
  
  &lt;a href="https://github.com/loaiabdalslam/FC"&gt;Auto Face Photo Encaher&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;It is a simple example of how restructuring and Denosing works within the Auto Encoderes model , we used the dataset of faces you can reach it from &lt;a href="https://drive.google.com/drive/u/0/folders/1tZUcXDBeOibC6jcMCtgRRz67pzrAHeHL"&gt;Download Link&lt;/a&gt;&lt;br&gt;
by &lt;a href="https://research.nvidia.com/person/tero-karras"&gt;Tero Karras&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://colab.research.google.com/github/loaiabdalslam/FC/blob/master/face-enhancer%E2%80%8F.ipynb"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cw8uDh-t--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" width="117" height="20"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Requirements
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="//tensorflow.org"&gt;tensorflow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://keras.io/"&gt;keras&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://pypi.org/project/opencv-python/"&gt;open cv&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Table Of Contents
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt; Importing Data&lt;/li&gt;
&lt;li&gt; Nosie Fliters using skimage&lt;/li&gt;
&lt;li&gt; Image2Image Auto Encoder&lt;/li&gt;
&lt;li&gt; HyperParams Tunning Tips&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  MLP Encoder
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iILkx8Tw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/model.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iILkx8Tw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/model.png" alt="Results" width="423" height="627"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Results
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--D82j69Tk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--D82j69Tk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res1.png" alt="Results" width="880" height="411"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_BPy4RLl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_BPy4RLl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res2.png" alt="Results" width="880" height="390"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BFzwUQjP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BFzwUQjP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res3.png" alt="Results" width="880" height="408"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DCofhopu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DCofhopu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/loaiabdalslam/FC/raw/master/media/res4.png" alt="Results" width="880" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Contributing
&lt;/h1&gt;

&lt;p&gt;Any kind of enhancement or contribution is welcomed.&lt;/p&gt;

</description>
      <category>deeplearning</category>
      <category>python</category>
      <category>machinelearning</category>
      <category>opensource</category>
    </item>
    <item>
      <title>MKT | Stock Prediction in 30 sec</title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Sun, 28 Jul 2019 18:35:17 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/mkt-stock-prediction-in-30-sec-l8j</link>
      <guid>https://dev.to/loaiabdalslam/mkt-stock-prediction-in-30-sec-l8j</guid>
      <description>&lt;h1&gt;
  
  
  &lt;a href="https://github.com/loaiabdalslam/MKT"&gt;MKT&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;MKT.js is an Exchange Price Service , Stocks , Cryptocurrency,Stock prediction and more \&lt;br&gt;
This package contains hundreds of currencies, cryptocurrencies and stocks prices.\&lt;br&gt;
6,096 coin , 283,037 TRADING PAIRS , 31 News Provider It also works with the TensorFlow  Read more here &lt;a href="https://min-api.cryptocompare.com/faq"&gt;Read more about crypto-compare service&lt;/a&gt;&lt;br&gt;
for market forecasting / stock prediction using RNN and also works on the visualizing of stocks data using canvas.js&lt;/p&gt;

&lt;h2&gt;
  
  
  Dependencies
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Neural Networks (brain.js)&lt;/li&gt;
&lt;li&gt;Tensorflow Framework (tensorflow.js)&lt;/li&gt;
&lt;li&gt;Data visualization (canvas.js)&lt;/li&gt;
&lt;li&gt;Main Api ( min-api.cryptocompare.com )&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Get started :
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1 -  Get Full details response (multiaple fsym &amp;amp; tsym)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC',
    tsyms: 'USD',
    type: 'full'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 
/* 
{
   "RAW":{
      "BTC":{
         "USD":{
            "TYPE":"5",
            "MARKET":"CCCAGG",
            "FROMSYMBOL":"BTC",
            "TOSYMBOL":"USD",
            "FLAGS":"2",
            "PRICE":9885.11,
            "LASTUPDATE":1563398729,
            "LASTVOLUME":0.1,
            "LASTVOLUMETO":986.6100000000001,
            "LASTTRADEID":"379345663",
            "VOLUMEDAY":93692.97987050914,
            "VOLUMEDAYTO":893517565.3549776,
            "VOLUME24HOUR":104598.9946433591,
            "VOLUME24HOURTO":997000834.8997525,
            "OPENDAY":9423.44,
            "HIGHDAY":9982.24,
            "LOWDAY":9086.51,
            "OPEN24HOUR":9649.99,
            "HIGH24HOUR":9988.35,
            "LOW24HOUR":9076.48,
            "LASTMARKET":"Bitfinex",
            "VOLUMEHOUR":2210.51459713301,
            "VOLUMEHOURTO":21755061.31969251,
            "OPENHOUR":9692.2,
            "HIGHHOUR":9943.53,
            "LOWHOUR":9663.39,
            "TOPTIERVOLUME24HOUR":101424.52271706509,
            "TOPTIERVOLUME24HOURTO":966363837.9391046,
            "CHANGE24HOUR":235.1200000000008,
            "CHANGEPCT24HOUR":2.436479208786753,
            "CHANGEDAY":461.6700000000001,
            "CHANGEPCTDAY":4.899166334162472,
            "SUPPLY":17823212,
            "MKTCAP":176184411173.32,
            "TOTALVOLUME24H":720083.9899007804,
            "TOTALVOLUME24HTO":7081137716.36884,
            "TOTALTOPTIERVOLUME24H":425384.18596477184,
            "TOTALTOPTIERVOLUME24HTO":4168740744.7056427,
            "IMAGEURL":"/media/19633/btc.png"
         }
      }
   },
   "DISPLAY":{
      "BTC":{
         "USD":{
            "FROMSYMBOL":"Ƀ",
            "TOSYMBOL":"$",
            "MARKET":"CryptoCompare Index",
            "PRICE":"$ 9,885.11",
            "LASTUPDATE":"Just now",
            "LASTVOLUME":"Ƀ 0.1000",
            "LASTVOLUMETO":"$ 986.61",
            "LASTTRADEID":"379345663",
            "VOLUMEDAY":"Ƀ 93,693.0",
            "VOLUMEDAYTO":"$ 893,517,565.4",
            "VOLUME24HOUR":"Ƀ 104,599.0",
            "VOLUME24HOURTO":"$ 997,000,834.9",
            "OPENDAY":"$ 9,423.44",
            "HIGHDAY":"$ 9,982.24",
            "LOWDAY":"$ 9,086.51",
            "OPEN24HOUR":"$ 9,649.99",
            "HIGH24HOUR":"$ 9,988.35",
            "LOW24HOUR":"$ 9,076.48",
            "LASTMARKET":"Bitfinex",
            "VOLUMEHOUR":"Ƀ 2,210.51",
            "VOLUMEHOURTO":"$ 21,755,061.3",
            "OPENHOUR":"$ 9,692.20",
            "HIGHHOUR":"$ 9,943.53",
            "LOWHOUR":"$ 9,663.39",
            "TOPTIERVOLUME24HOUR":"Ƀ 101,424.5",
            "TOPTIERVOLUME24HOURTO":"$ 966,363,837.9",
            "CHANGE24HOUR":"$ 235.12",
            "CHANGEPCT24HOUR":"2.44",
            "CHANGEDAY":"$ 461.67",
            "CHANGEPCTDAY":"4.90",
            "SUPPLY":"Ƀ 17,823,212.0",
            "MKTCAP":"$ 176.18 B",
            "TOTALVOLUME24H":"Ƀ 720.08 K",
            "TOTALVOLUME24HTO":"$ 7.08 B",
            "TOTALTOPTIERVOLUME24H":"Ƀ 425.38 K",
            "TOTALTOPTIERVOLUME24HTO":"$ 4.17 B",
            "IMAGEURL":"/media/19633/btc.png"
         }
      }
   }
}


*/

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  2 -  Get Single price response (Single Ftsym only)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC', // Single Fysm only 
    tsyms: 'USD,EGP', // Multiaple Tsyms is allowed
    type: 'single'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 

{
   "USD":9888.01,
   "EGP":182256.26
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  3 -  Get Multiaple price response
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC,ETH', // Single Fysm only 
    tsyms: 'USD,EGP', // Multiaple Tsyms is allowed
    type: 'multi'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 

{
   "BTC":{
      "USD":9906.65,
      "EGP":182256.26
   },
   "ETH":{
      "USD":215.27,
      "EGP":3964.07
   }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Some of the ideas I put forward and you can get started:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add processing of natural languages to increase confidence in prices that have been predicted &lt;/li&gt;
&lt;li&gt;Add simulation of the investment process and the development of some strategies of trades.&lt;/li&gt;
&lt;li&gt;Monitor the markets and manufacture a global dashboard.&lt;/li&gt;
&lt;li&gt;add simples and examples using MKT.JS&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  contributions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;For the first contributor you can delete the file and be the first shareholder (I left it to you)&lt;/li&gt;
&lt;li&gt;For the rest, if you think of an idea, you should make pull request and apply it immediately.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;author : Loaii abdalslam &lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>javascript</category>
      <category>tensorflow</category>
      <category>python</category>
    </item>
    <item>
      <title>MKT.JS </title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Wed, 17 Jul 2019 22:41:24 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/mkt-js-3h0n</link>
      <guid>https://dev.to/loaiabdalslam/mkt-js-3h0n</guid>
      <description>&lt;h1&gt;
  
  
  &lt;a href="https://github.com/loaiabdalslam/MKT"&gt;MKT&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;MKT.js is an Exchange Price Service , Stocks , Cryptocurrency,Stock prediction and more \&lt;br&gt;
This package contains hundreds of currencies, cryptocurrencies and stocks prices.\&lt;br&gt;
6,096 coin , 283,037 TRADING PAIRS , 31 News Provider It also works with the TensorFlow  Read more here &lt;a href="https://min-api.cryptocompare.com/faq"&gt;Read more about crypto-compare service&lt;/a&gt;&lt;br&gt;
for market forecasting / stock prediction using RNN and also works on the visualizing of stocks data using canvas.js&lt;/p&gt;

&lt;h2&gt;
  
  
  Dependencies
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Neural Networks (brain.js)&lt;/li&gt;
&lt;li&gt;Tensorflow Framework (tensorflow.js)&lt;/li&gt;
&lt;li&gt;Data visualization (canvas.js)&lt;/li&gt;
&lt;li&gt;Main Api ( min-api.cryptocompare.com )&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Get started :
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1 -  Get Full details response (multiaple fsym &amp;amp; tsym)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC',
    tsyms: 'USD',
    type: 'full'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 
/* 
{
   "RAW":{
      "BTC":{
         "USD":{
            "TYPE":"5",
            "MARKET":"CCCAGG",
            "FROMSYMBOL":"BTC",
            "TOSYMBOL":"USD",
            "FLAGS":"2",
            "PRICE":9885.11,
            "LASTUPDATE":1563398729,
            "LASTVOLUME":0.1,
            "LASTVOLUMETO":986.6100000000001,
            "LASTTRADEID":"379345663",
            "VOLUMEDAY":93692.97987050914,
            "VOLUMEDAYTO":893517565.3549776,
            "VOLUME24HOUR":104598.9946433591,
            "VOLUME24HOURTO":997000834.8997525,
            "OPENDAY":9423.44,
            "HIGHDAY":9982.24,
            "LOWDAY":9086.51,
            "OPEN24HOUR":9649.99,
            "HIGH24HOUR":9988.35,
            "LOW24HOUR":9076.48,
            "LASTMARKET":"Bitfinex",
            "VOLUMEHOUR":2210.51459713301,
            "VOLUMEHOURTO":21755061.31969251,
            "OPENHOUR":9692.2,
            "HIGHHOUR":9943.53,
            "LOWHOUR":9663.39,
            "TOPTIERVOLUME24HOUR":101424.52271706509,
            "TOPTIERVOLUME24HOURTO":966363837.9391046,
            "CHANGE24HOUR":235.1200000000008,
            "CHANGEPCT24HOUR":2.436479208786753,
            "CHANGEDAY":461.6700000000001,
            "CHANGEPCTDAY":4.899166334162472,
            "SUPPLY":17823212,
            "MKTCAP":176184411173.32,
            "TOTALVOLUME24H":720083.9899007804,
            "TOTALVOLUME24HTO":7081137716.36884,
            "TOTALTOPTIERVOLUME24H":425384.18596477184,
            "TOTALTOPTIERVOLUME24HTO":4168740744.7056427,
            "IMAGEURL":"/media/19633/btc.png"
         }
      }
   },
   "DISPLAY":{
      "BTC":{
         "USD":{
            "FROMSYMBOL":"Ƀ",
            "TOSYMBOL":"$",
            "MARKET":"CryptoCompare Index",
            "PRICE":"$ 9,885.11",
            "LASTUPDATE":"Just now",
            "LASTVOLUME":"Ƀ 0.1000",
            "LASTVOLUMETO":"$ 986.61",
            "LASTTRADEID":"379345663",
            "VOLUMEDAY":"Ƀ 93,693.0",
            "VOLUMEDAYTO":"$ 893,517,565.4",
            "VOLUME24HOUR":"Ƀ 104,599.0",
            "VOLUME24HOURTO":"$ 997,000,834.9",
            "OPENDAY":"$ 9,423.44",
            "HIGHDAY":"$ 9,982.24",
            "LOWDAY":"$ 9,086.51",
            "OPEN24HOUR":"$ 9,649.99",
            "HIGH24HOUR":"$ 9,988.35",
            "LOW24HOUR":"$ 9,076.48",
            "LASTMARKET":"Bitfinex",
            "VOLUMEHOUR":"Ƀ 2,210.51",
            "VOLUMEHOURTO":"$ 21,755,061.3",
            "OPENHOUR":"$ 9,692.20",
            "HIGHHOUR":"$ 9,943.53",
            "LOWHOUR":"$ 9,663.39",
            "TOPTIERVOLUME24HOUR":"Ƀ 101,424.5",
            "TOPTIERVOLUME24HOURTO":"$ 966,363,837.9",
            "CHANGE24HOUR":"$ 235.12",
            "CHANGEPCT24HOUR":"2.44",
            "CHANGEDAY":"$ 461.67",
            "CHANGEPCTDAY":"4.90",
            "SUPPLY":"Ƀ 17,823,212.0",
            "MKTCAP":"$ 176.18 B",
            "TOTALVOLUME24H":"Ƀ 720.08 K",
            "TOTALVOLUME24HTO":"$ 7.08 B",
            "TOTALTOPTIERVOLUME24H":"Ƀ 425.38 K",
            "TOTALTOPTIERVOLUME24HTO":"$ 4.17 B",
            "IMAGEURL":"/media/19633/btc.png"
         }
      }
   }
}


*/

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  2 -  Get Single price response (Single Ftsym only)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC', // Single Fysm only 
    tsyms: 'USD,EGP', // Multiaple Tsyms is allowed
    type: 'single'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 

{
   "USD":9888.01,
   "EGP":182256.26
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  3 -  Get Multiaple price response
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const { MKT } = require('@mkt-eg/mkt')

const mkt = new MKT(
  'bbbc22c3a13c74456a6d4bb7ba5745476ebfdc81c867fc240258122b78eb6a6f'
)
const data = mkt
  .exchange({
    fsym: 'BTC,ETH', // Single Fysm only 
    tsyms: 'USD,EGP', // Multiaple Tsyms is allowed
    type: 'multi'
  })
  .then(response =&amp;gt; {
    console.log(JSON.stringify(response.data))
  })
  .catch(error =&amp;gt; {
    console.log(error)
  })

// JSON OUTPUT 

{
   "BTC":{
      "USD":9906.65,
      "EGP":182256.26
   },
   "ETH":{
      "USD":215.27,
      "EGP":3964.07
   }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Some of the ideas I put forward and you can get started:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add processing of natural languages to increase confidence in prices that have been predicted &lt;/li&gt;
&lt;li&gt;Add simulation of the investment process and the development of some strategies of trades.&lt;/li&gt;
&lt;li&gt;Monitor the markets and manufacture a global dashboard.&lt;/li&gt;
&lt;li&gt;add simples and examples using MKT.JS&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  contributions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;For the first contributor you can delete the file and be the first shareholder (I left it to you)&lt;/li&gt;
&lt;li&gt;For the rest, if you think of an idea, you should make pull request and apply it immediately.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;author : Loaii abdalslam &lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>beginners</category>
      <category>javascript</category>
      <category>node</category>
    </item>
    <item>
      <title>Applied Justice in Blockchain </title>
      <dc:creator>Loaiabdalslam</dc:creator>
      <pubDate>Sun, 30 Jun 2019 23:50:16 +0000</pubDate>
      <link>https://dev.to/loaiabdalslam/applied-justice-in-blockchain-4l34</link>
      <guid>https://dev.to/loaiabdalslam/applied-justice-in-blockchain-4l34</guid>
      <description>&lt;h1&gt;
  
  
  &lt;a href="https://github.com/loaiabdalslam/Justice/"&gt;Judge Contract&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;A decentralized application of elections and opinion polls&lt;br&gt;
Justice is a decentralized application aimed at holding fair elections without fraud on the visible and hearing of all.&lt;/p&gt;

&lt;p&gt;I had had a lot of problems because I'm a principle in the field of Blockchain, especially Ethereum. Therefore, I decided to make the project opensource but on my own terms and rules to make a business deal with everyone who contribution in this project in the near future.&lt;/p&gt;

&lt;p&gt;The whole idea is that governments are paying billions of dollars for elections and everyone is questioning their integrity as a result of the lack of independence of the judiciary in some countries and governments, so I decided to move my passion towards that point: Applied Justice on Blockchain network&lt;/p&gt;

&lt;p&gt;From that point on, I prepared a plan to walk together:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Preparation of electoral rooms where each room contains a number of numbers of voters (ID numbers)&lt;/li&gt;
&lt;li&gt;Connecting the voters' chambers to the voters and making sure they are affiliated with that room&lt;/li&gt;
&lt;li&gt;Use one of the front-end frameworks such as angular or react to complete the project&lt;/li&gt;
&lt;li&gt;Set up to start ICO for integrating the two systems together&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;

&lt;p&gt;Justice requires &lt;a href="https://nodejs.org/"&gt;Node.js&lt;/a&gt; v4+ to run.&lt;br&gt;
 &lt;a href="https://github.com/MetaMask/metamask-extension/releases/tag/v5.3.1"&gt;Meta Mask&lt;/a&gt;  Client Provider&lt;br&gt;
  &lt;a href="https://www.trufflesuite.com/"&gt;Truffle&lt;/a&gt; Blockchain Network&lt;/p&gt;

&lt;p&gt;Install the dependencies and devDependencies and start the server.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;Justice
&lt;span class="nv"&gt;$ &lt;/span&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;truffle migrate
&lt;span class="nv"&gt;$ &lt;/span&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>blockchain</category>
      <category>javascript</category>
      <category>react</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
