<?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: AMZY31</title>
    <description>The latest articles on DEV Community by AMZY31 (@amzy31).</description>
    <link>https://dev.to/amzy31</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%2F3448503%2F738b5209-df7a-4ead-a888-660be875701c.jpeg</url>
      <title>DEV Community: AMZY31</title>
      <link>https://dev.to/amzy31</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amzy31"/>
    <language>en</language>
    <item>
      <title>Pck3r is a modern package manager for Windows 10 x64</title>
      <dc:creator>AMZY31</dc:creator>
      <pubDate>Thu, 27 Aug 2026 11:08:11 +0000</pubDate>
      <link>https://dev.to/amzy31/pck3r-is-a-modern-package-manager-for-windows-10-x64-3i7b</link>
      <guid>https://dev.to/amzy31/pck3r-is-a-modern-package-manager-for-windows-10-x64-3i7b</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/amzy31/pck3r" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Pck3r: C++ Package Manager for Windows
&lt;/h1&gt;

&lt;p&gt;Pck3r is a modern package manager for Windows 10 x64, implemented in C++ for performance and modularity. It helps users manage software installations with MSI/EXE installers on Windows. Pck3r makes installing, downloading, and managing software easier with a clear interface and straightforward commands.&lt;/p&gt;

&lt;h2&gt;
  
  
  Requirements
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Windows 10 x64&lt;/li&gt;
&lt;li&gt;g++ compiler (MinGW or similar)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Setup
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Compile the project using g++:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;g++ &lt;span class="nt"&gt;-Iinclude&lt;/span&gt; &lt;span class="nt"&gt;-o&lt;/span&gt; pck3r.exe main.cpp &lt;span class="nt"&gt;-lurlmon&lt;/span&gt; &lt;span class="nt"&gt;-lshell32&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Run the executable with desired commands:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.&lt;span class="se"&gt;\p&lt;/span&gt;ck3r.exe &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="nb"&gt;command&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;options]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Commands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;install&lt;/strong&gt;: Install a package
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.&lt;span class="se"&gt;\p&lt;/span&gt;ck3r.exe &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;package_name]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Supported packages include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;nodejs&lt;/li&gt;
&lt;li&gt;google-chrome&lt;/li&gt;
&lt;li&gt;firefox&lt;/li&gt;
&lt;li&gt;&lt;p&gt;winrar&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;cls&lt;/strong&gt;: Clear the terminal (just for fun)&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.&lt;span class="se"&gt;\p&lt;/span&gt;ck3r.exe cls
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;version&lt;/strong&gt;: Show the current version
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.&lt;span class="se"&gt;\p&lt;/span&gt;ck3r.exe version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;help&lt;/strong&gt;: Show help information
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.&lt;span class="se"&gt;\p&lt;/span&gt;ck3r.exe /help
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Development
&lt;/h2&gt;

&lt;p&gt;The project is modularized for easier maintenance and extension. The main executable handles command parsing and delegates to modules for specific functionality.&lt;/p&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Pck3r uses the license in the &lt;a href="//./LICENSE"&gt;LICENSE&lt;/a&gt; file.&lt;/p&gt;

</description>
      <category>c</category>
      <category>cpp</category>
      <category>microsoft</category>
      <category>windows10</category>
    </item>
    <item>
      <title>CharleX Operating Syste</title>
      <dc:creator>AMZY31</dc:creator>
      <pubDate>Mon, 29 Sep 2025 23:01:13 +0000</pubDate>
      <link>https://dev.to/amzy31/charlex-operating-system-3ang</link>
      <guid>https://dev.to/amzy31/charlex-operating-system-3ang</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/amzy31/CharleXOS" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

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

&lt;/div&gt;
&lt;h1&gt;
  
  
  CharleX OS
&lt;/h1&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Build it. Understand it. Improve it. Keep it free.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;CharleX is a simple, experimental, free, and open-source operating system project.&lt;/p&gt;

&lt;p&gt;The kernel is written in &lt;strong&gt;C&lt;/strong&gt; and is being developed from the ground up as a learning and engineering project. The current implementation is small, but the goal is not.&lt;/p&gt;

&lt;p&gt;CharleX is intended to grow into a real general-purpose operating system with its own kernel, userspace, tools, filesystem support, networking, applications, and development ecosystem.&lt;/p&gt;

&lt;p&gt;This is a work in progress.&lt;/p&gt;

&lt;p&gt;It is not finished.&lt;br&gt;
It is not perfect.&lt;br&gt;
And that's the point.&lt;/p&gt;


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

&lt;p&gt;CharleX is built around a simple idea:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The computer belongs to the person using it.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Software should be understandable, modifiable, shareable, and free to improve.&lt;/p&gt;

&lt;p&gt;We don't want an operating system that treats its users as spectators.&lt;/p&gt;

&lt;p&gt;We want an operating system where developers can open the source, understand what is happening, change it, break it, fix it, and contribute the improvements back.&lt;/p&gt;

&lt;p&gt;CharleX follows a few principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Freedom to study the source&lt;/li&gt;
&lt;li&gt;Freedom to modify the system&lt;/li&gt;
&lt;li&gt;Freedom to redistribute improvements&lt;/li&gt;
&lt;li&gt;Minimal unnecessary restrictions&lt;/li&gt;
&lt;li&gt;Simple and understandable engineering&lt;/li&gt;
&lt;li&gt;Community-driven development&lt;/li&gt;
&lt;li&gt;No artificial walls between users and developers&lt;/li&gt;
&lt;li&gt;Build functionality instead of building bureaucracy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project is inspired by the philosophy and engineering culture surrounding&lt;br&gt;
free operating systems such as Linux and FreeBSD.&lt;/p&gt;


&lt;h1&gt;
  
  
  Why CharleX?
&lt;/h1&gt;

&lt;p&gt;There are already excellent operating systems.&lt;/p&gt;

&lt;p&gt;Linux exists.&lt;/p&gt;

&lt;p&gt;FreeBSD exists.&lt;/p&gt;

&lt;p&gt;Other systems exist.&lt;/p&gt;

&lt;p&gt;So why build another one?&lt;/p&gt;

&lt;p&gt;Because building an operating system teaches things that using one doesn't.&lt;/p&gt;

&lt;p&gt;CharleX is an attempt to understand the machine from the bottom up:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hardware
   ↓
Boot
   ↓
Kernel
   ↓
Memory
   ↓
Processes
   ↓
Drivers
   ↓
Filesystem
   ↓
Userspace
   ↓
Applications
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>wsl</category>
      <category>operatingsystem</category>
      <category>c</category>
      <category>cpp</category>
    </item>
  </channel>
</rss>
