<?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 - Package Manager for UBUNTU 24.04 X64(PURE GOLANG)</title>
      <dc:creator>AMZY31</dc:creator>
      <pubDate>Wed, 09 Sep 2026 21:31:37 +0000</pubDate>
      <link>https://dev.to/amzy31/pck3r-package-manager-for-ubuntu-2404-x64-3o82</link>
      <guid>https://dev.to/amzy31/pck3r-package-manager-for-ubuntu-2404-x64-3o82</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/amzy31/pck3r" rel="noopener noreferrer"&gt;PCK3R REPO&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Pck3r
&lt;/h1&gt;

&lt;p&gt;Pck3r is a &lt;strong&gt;pure Golang Ubuntu package manager and system utility&lt;/strong&gt; designed for a fast, simple, and friendly terminal experience.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Install Ubuntu packages with &lt;code&gt;apt&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Remove and purge packages&lt;/li&gt;
&lt;li&gt;Search Ubuntu repositories&lt;/li&gt;
&lt;li&gt;Update package lists&lt;/li&gt;
&lt;li&gt;Upgrade installed packages&lt;/li&gt;
&lt;li&gt;System upgrade support&lt;/li&gt;
&lt;li&gt;System information&lt;/li&gt;
&lt;li&gt;Install common development and desktop tools&lt;/li&gt;
&lt;li&gt;Interactive terminal interface&lt;/li&gt;
&lt;li&gt;Package name validation&lt;/li&gt;
&lt;li&gt;Safe command execution without shell interpolation&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;Ubuntu 24.04 or compatible Debian-based distribution&lt;/li&gt;
&lt;li&gt;Go 1.22+ for building from source&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;apt&lt;/code&gt; and &lt;code&gt;sudo&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Build
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/amzy-0/pck3r.git
&lt;span class="nb"&gt;cd &lt;/span&gt;pck3r
go build &lt;span class="nt"&gt;-trimpath&lt;/span&gt; &lt;span class="nt"&gt;-ldflags&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"-s -w"&lt;/span&gt; &lt;span class="nt"&gt;-o&lt;/span&gt; pck3r &lt;span class="nb"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo install&lt;/span&gt; &lt;span class="nt"&gt;-m&lt;/span&gt; 755 pck3r /usr/local/bin/pck3r
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pck3r
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;p&gt;Pck3r provides an interactive interface for common Ubuntu package operations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install packages&lt;/li&gt;
&lt;li&gt;Remove packages&lt;/li&gt;
&lt;li&gt;Purge packages&lt;/li&gt;
&lt;li&gt;Search packages&lt;/li&gt;
&lt;li&gt;Update repositories&lt;/li&gt;
&lt;li&gt;Upgrade the system&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The underlying Ubuntu package management system remains &lt;code&gt;apt&lt;/code&gt;, while Pck3r provides a convenient Go-based interface around it.&lt;/p&gt;

&lt;h2&gt;
  
  
  System Tools
&lt;/h2&gt;

&lt;p&gt;Pck3r can also provide installation helpers for commonly used tools and environments, including development runtimes, desktop utilities, Wine, and shell utilities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;p&gt;Pck3r executes system commands using Go's process APIs and passes arguments directly rather than constructing commands through an interactive shell. Administrative operations use &lt;code&gt;sudo&lt;/code&gt; where required.&lt;/p&gt;

&lt;p&gt;Always review package names and commands before granting administrative privileges.&lt;/p&gt;

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

&lt;p&gt;GPL-3.0. See &lt;a href="https://dev.toLICENSE"&gt;LICENSE&lt;/a&gt; for the full license text.&lt;/p&gt;

</description>
      <category>go</category>
      <category>cli</category>
      <category>ubuntu</category>
      <category>debian</category>
    </item>
    <item>
      <title>CharleX WebOS</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="//github.com/amzy31/charlexwebos"&gt;CharleX WebOS REPO&lt;/a&gt;&lt;br&gt;
CharleX WebOS&lt;/p&gt;

&lt;p&gt;CharleX WebOS makes the web feel like a desktop computer. It allows you to use windows, applications, storage, notes, and a terminal directly in your browser.&lt;/p&gt;

&lt;p&gt;The project uses Golang to run the application shell and manage resources, creating a simple Golang Cloud Operating System. Users can easily move, minimize, and close windows.&lt;/p&gt;

&lt;p&gt;Project Identity&lt;/p&gt;

&lt;p&gt;Name: CharleX WebOS Concept: Cloud Operating System with GolangRuntime: Go + modern browserInterface: Desktop-likeCore experience: Windows, applications, storage, notes, terminal&lt;/p&gt;

&lt;p&gt;License&lt;/p&gt;

&lt;p&gt;MIT&lt;/p&gt;

&lt;p&gt;Closing&lt;/p&gt;

&lt;p&gt;CharleX WebOS aims to:&lt;/p&gt;

&lt;p&gt;Make the web feel like a computer. Use Go for the core.&lt;/p&gt;

&lt;p&gt;This idea connects everything in a browser-based experience.&lt;/p&gt;

&lt;p&gt;Hosted at: &lt;a href="https://charlex.ir" rel="noopener noreferrer"&gt;https://charlex.ir&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>go</category>
      <category>cloud</category>
      <category>onlineoperatingsystem</category>
    </item>
  </channel>
</rss>
