<?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: Bhilal. Chitou</title>
    <description>The latest articles on DEV Community by Bhilal. Chitou (@7bhil).</description>
    <link>https://dev.to/7bhil</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%2F3930883%2F7bbaaa09-6c61-4c98-8827-c9e9de03a076.jpeg</url>
      <title>DEV Community: Bhilal. Chitou</title>
      <link>https://dev.to/7bhil</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/7bhil"/>
    <language>en</language>
    <item>
      <title>Introduction to Bhilal: A Hybrid Language for Developers and Security Researchers</title>
      <dc:creator>Bhilal. Chitou</dc:creator>
      <pubDate>Fri, 15 May 2026 10:25:54 +0000</pubDate>
      <link>https://dev.to/7bhil/introduction-to-bhilal-a-hybrid-language-for-developers-and-security-researchers-4hb3</link>
      <guid>https://dev.to/7bhil/introduction-to-bhilal-a-hybrid-language-for-developers-and-security-researchers-4hb3</guid>
      <description>&lt;p&gt;Bhilal is a modern, object-oriented programming language designed to streamline the creation of security tools. It combines a user-friendly syntax with a powerful hybrid engine to bridge&lt;br&gt;
  the gap between high-level scripting and low-level network auditing.&lt;/p&gt;

&lt;p&gt;The Architecture: Node.js meets Go&lt;br&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%2Fu6yme9vulurlkt7zn0kw.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%2Fu6yme9vulurlkt7zn0kw.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The core of Bhilal is built on a hybrid architecture. While the lexer, parser, and high-level logic are handled by Node.js for maximum flexibility, the security-critical modules are&lt;br&gt;
  powered by Go. This allows the language to perform multi-threaded tasks, such as port scanning and DNS brute forcing, with native performance.&lt;/p&gt;

&lt;p&gt;Key Technical Features&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Localized Syntax: Bhilal uses French keywords (soit, montre, si, tantque, classe) making it a unique entry in the world of specialized languages.&lt;/li&gt;
&lt;li&gt;Built-in Security Arsenal: Unlike general-purpose languages, Bhilal includes native functions for penetration testing:

&lt;ul&gt;
&lt;li&gt;scan_ports(host, ports)&lt;/li&gt;
&lt;li&gt;dirbuster(url)&lt;/li&gt;
&lt;li&gt;dns_resolve(hostname)&lt;/li&gt;
&lt;li&gt;subnet_scan(cidr)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Full OOP Implementation: It supports classes, inheritance, and clean object instantiation.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Quick Code Example&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1 # Simple security audit script
2 montre("Starting network analysis...")
3 soit target = "127.0.0.1"
4 soit results = scan_ports(target, [22, 80, 443, 3306])
5
6 pour chaque res dans results {
7     si res.open {
8         montre("Found open port: " + res.port)
9     }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Resources and Installation&lt;/p&gt;

&lt;p&gt;Bhilal can be installed globally via npm:&lt;br&gt;
  npm install -g bhilal&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Official Documentation: &lt;a href="https://bhil-documentations.netlify.app/" rel="noopener noreferrer"&gt;https://bhil-documentations.netlify.app/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Source Code: &lt;a href="https://github.com/7Bhil/Language-Bhilal" rel="noopener noreferrer"&gt;https://github.com/7Bhil/Language-Bhilal&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Bhilal is an open-source project. We are looking for contributors to help expand the standard library and the Go-based security modules.&lt;/p&gt;

</description>
      <category>node</category>
      <category>programming</category>
      <category>security</category>
      <category>showdev</category>
    </item>
    <item>
      <title>How I built a Virtual Currency Wallet with NestJS &amp; Next.js (Beta out!) The "500 Million" Surprise</title>
      <dc:creator>Bhilal. Chitou</dc:creator>
      <pubDate>Thu, 14 May 2026 12:54:59 +0000</pubDate>
      <link>https://dev.to/7bhil/how-i-built-a-virtual-currency-wallet-with-nestjs-nextjs-beta-outthe-500-million-surprise-3aji</link>
      <guid>https://dev.to/7bhil/how-i-built-a-virtual-currency-wallet-with-nestjs-nextjs-beta-outthe-500-million-surprise-3aji</guid>
      <description>&lt;p&gt;A few days ago, I looked at my account and saw 500 million. No, I didn't hack a bank. It’s Vitch, my latest Fintech project, and the beta is officially live!&lt;br&gt;
What is Vitch?&lt;br&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%2Fad1yt1uptkm50wat73b1.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%2Fad1yt1uptkm50wat73b1.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Vitch is a virtual currency platform designed for scalability. To make the onboarding fun, every new user automatically receives a welcome bonus (500 FCFA, 1€, or 1$ depending on their geographical location) upon registration.&lt;br&gt;
The Tech Stack&lt;/p&gt;

&lt;p&gt;I wanted to build something robust and secure, so I chose a modern fullstack architecture:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Backend: NestJS (Node.js) for a structured and scalable API.

Frontend: Next.js / React for a fast and SEO-friendly interface.

Styling: Tailwind CSS (aiming for a minimalist/modern UI).

Deployment: Vercel (for that sweet global CDN and speed).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2F840jvrrdkhju3izmhkv9.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%2F840jvrrdkhju3izmhkv9.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What I learned&lt;/p&gt;

&lt;p&gt;Building a fintech app from scratch is addictive. You have to think about currency logic, secure authentication, and real-time balance updates. There’s nothing like the feeling of seeing the transaction logic work perfectly for the first time.&lt;br&gt;
I need your Brutal Honesty&lt;/p&gt;

&lt;p&gt;I'm sharing this with the Dev.to community because I don't want compliments; I want to improve.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;UX/UI: How does the flow feel? (A fellow dev already suggested adding Google Auth, which is on my roadmap!).

Security: Pentesters, feel free to poke around.

Logic: Is the virtual wallet architecture sound?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Live Demo: vitch.vercel.app&lt;br&gt;
Open Source&lt;/p&gt;

&lt;p&gt;I believe in "Building in Public". If you are working on a similar wallet idea, don't start from zero. You can check my repositories here:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Frontend (Next.js): 7Bhil/wallet-next

Backend (NestJS): 7Bhil/wallet-nest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Let's discuss in the comments! Are you working on any Fintech projects lately?&lt;/p&gt;

&lt;h1&gt;
  
  
  showdev #webdev #fintech #opensource #javascript
&lt;/h1&gt;

</description>
    </item>
  </channel>
</rss>
