<?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: Banana Cool</title>
    <description>The latest articles on DEV Community by Banana Cool (@banana_cool).</description>
    <link>https://dev.to/banana_cool</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3999768%2F8274d6d1-4f55-4699-a7fb-d5551174e49c.png</url>
      <title>DEV Community: Banana Cool</title>
      <link>https://dev.to/banana_cool</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/banana_cool"/>
    <language>en</language>
    <item>
      <title>I made a web framework</title>
      <dc:creator>Banana Cool</dc:creator>
      <pubDate>Tue, 04 Aug 2026 03:53:50 +0000</pubDate>
      <link>https://dev.to/banana_cool/i-made-a-web-framework-2obn</link>
      <guid>https://dev.to/banana_cool/i-made-a-web-framework-2obn</guid>
      <description>&lt;p&gt;Hi everyone! I made an SSR web framework on NPM named &lt;strong&gt;Authtics Host&lt;/strong&gt; (or &lt;strong&gt;HostJS&lt;/strong&gt;)&lt;/p&gt;

&lt;h2&gt;
  
  
  About
&lt;/h2&gt;

&lt;p&gt;Based on tests, it starts the server in &lt;strong&gt;under 1&lt;/strong&gt; second. For a user to see the page, it takes &lt;strong&gt;1-4&lt;/strong&gt; seconds.&lt;/p&gt;

&lt;p&gt;It also has a &lt;strong&gt;Developer Panel&lt;/strong&gt;, which has controls to control the website &lt;strong&gt;&lt;em&gt;(e.g., Restart, Shutdown and Pause Users)&lt;/em&gt;&lt;/strong&gt; with &lt;strong&gt;DAT&lt;/strong&gt; (&lt;strong&gt;Developer Access Token&lt;/strong&gt;) authorization for the Developer Panel.&lt;/p&gt;

&lt;p&gt;The framework's Developer Panel has &lt;strong&gt;console&lt;/strong&gt; and &lt;strong&gt;network&lt;/strong&gt; tabs, where devs can see: what the page is receiving, sending or what logs it's placing in the console. Better than importing a package and setting it up on mobile.&lt;/p&gt;

&lt;h2&gt;
  
  
  3 Reasons why I made this
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Most frameworks start in 2-5+ seconds&lt;/li&gt;
&lt;li&gt;There isn't any console or network tab for mobile&lt;/li&gt;
&lt;li&gt;If there's a developer panel in another framework, it might not be mobile-friendly&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;p&gt;The NPM package is at: &lt;a href="https://npmjs.com/package/@bananacool467/authtics-host" rel="noopener noreferrer"&gt;@bananacool467/authtics-host&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Code snippet
&lt;/h2&gt;

&lt;p&gt;For creating and starting the server:&lt;br&gt;
Backend script (index.ts):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;App&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@bananacool467/authtics-host&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;app&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;App&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Bash script to run it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;node &lt;span class="nt"&gt;--experimental-strip-types&lt;/span&gt; index.ts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How I got it to start in under 1 second
&lt;/h2&gt;

&lt;p&gt;What I did was make it do fast stuff, when it starts, it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Loads modules (node:fs, node:http, jiti)&lt;/li&gt;
&lt;li&gt;Then it loads the jiti config file&lt;/li&gt;
&lt;li&gt;Then it starts the server with the config&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>typescript</category>
      <category>react</category>
      <category>npm</category>
      <category>web</category>
    </item>
    <item>
      <title>I want help making an AI please</title>
      <dc:creator>Banana Cool</dc:creator>
      <pubDate>Sat, 18 Jul 2026 05:39:43 +0000</pubDate>
      <link>https://dev.to/banana_cool/i-want-help-making-an-ai-please-146j</link>
      <guid>https://dev.to/banana_cool/i-want-help-making-an-ai-please-146j</guid>
      <description>&lt;p&gt;Can someone please help me make an AI model in &lt;strong&gt;C++&lt;/strong&gt;?&lt;/p&gt;

&lt;p&gt;I tried to make one multiple times.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cpp</category>
      <category>programming</category>
    </item>
    <item>
      <title>I am making a programming language</title>
      <dc:creator>Banana Cool</dc:creator>
      <pubDate>Wed, 24 Jun 2026 04:37:08 +0000</pubDate>
      <link>https://dev.to/banana_cool/i-am-making-a-programming-language-4d9d</link>
      <guid>https://dev.to/banana_cool/i-am-making-a-programming-language-4d9d</guid>
      <description>&lt;p&gt;Hi everyone! I’m currently building a custom programming language called &lt;strong&gt;Swiq&lt;/strong&gt; using C++. &lt;/p&gt;

&lt;p&gt;Most modern languages rely entirely on standard garbage collection or strict block scoping. When I designed Swiq, I wanted to give developers built-in keywords to control variable state directly.&lt;/p&gt;

&lt;h3&gt;
  
  
  What makes Swiq unique?
&lt;/h3&gt;

&lt;p&gt;Swiq tracks both the current state and the instantiation state of your data. Here are a few unique features I've built into the memory management system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Native Archiving:&lt;/strong&gt; You can stash a variable away into a hidden memory space and safely pull it back whenever you need it.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Instant Resetting:&lt;/strong&gt; Swiq remembers the initial value used when a variable was first created, allowing you to instantly reset it to its default state.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Explicit Closures:&lt;/strong&gt; Functions allow explicit variable closure capturing, much like C++ lambdas.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  A Quick Look at the Syntax
&lt;/h3&gt;

&lt;p&gt;Here is a quick look at how clean it is to handle variable states, archiving, and resetting in Swiq:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;set var score = 100;

// Modify it
set score = 150;

// Need a backup state? Archive it!
archive score; 

// Score is now safely stashed away. Bring it back natively:
restore score;

// Want to revert to the very first value?
reset score; // score is now back to 100
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And for functions with closures:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;set var x = 10;
set var y = 70;
set var z = 25;

// Limited access functions
func myFunction () [x, y] {
  log(x);
  log(y);
  // No access to "z"
}

// Full access functions
func myFunction () [&amp;amp;] {
  log(x);
  log(y);
  log(z);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Check out the project!
&lt;/h3&gt;

&lt;p&gt;Swiq is an open-source project and is still actively under development. I built the custom interpreter and Abstract Syntax Tree (AST) completely from scratch in C++.&lt;/p&gt;

&lt;p&gt;You can check out the source code, read the documentation, or contribute here:&lt;br&gt;
👉 &lt;strong&gt;&lt;a href="https://github.com/bananakitssu/Swiq" rel="noopener noreferrer"&gt;github.com/bananakitssu/Swiq&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I would love to hear your thoughts on this approach to state management. What features or use cases would you like to see next?&lt;/p&gt;

</description>
      <category>programming</category>
      <category>cpp</category>
      <category>github</category>
      <category>git</category>
    </item>
  </channel>
</rss>
