<?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: Nirob Ahmed</title>
    <description>The latest articles on DEV Community by Nirob Ahmed (@lazy_code).</description>
    <link>https://dev.to/lazy_code</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%2F2165116%2Fcded074a-6f67-465e-a967-6268395e8ef4.jpg</url>
      <title>DEV Community: Nirob Ahmed</title>
      <link>https://dev.to/lazy_code</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lazy_code"/>
    <language>en</language>
    <item>
      <title>System.css: A CSS Library for Classic Apple System OS-Inspired Interfaces</title>
      <dc:creator>Nirob Ahmed</dc:creator>
      <pubDate>Mon, 17 Mar 2025 10:00:25 +0000</pubDate>
      <link>https://dev.to/lazy_code/systemcss-a-css-library-for-classic-apple-system-os-inspired-interfaces-13m8</link>
      <guid>https://dev.to/lazy_code/systemcss-a-css-library-for-classic-apple-system-os-inspired-interfaces-13m8</guid>
      <description>&lt;p&gt;&lt;a href="https://sakofchit.github.io/system.css/" rel="noopener noreferrer"&gt;&lt;strong&gt;System.css&lt;/strong&gt;&lt;/a&gt; is a CSS library that recreates the classic look of Apple's System OS (1984–1991). Since System 1 through System 6 had minimal design changes, this library is based on System 6, the last monochrome version of macOS.  &lt;/p&gt;

&lt;p&gt;It’s lightweight, JavaScript-free, and works seamlessly with any front-end framework. Most styles can also be customized.&lt;/p&gt;

&lt;h2&gt;
  
  
  Components
&lt;/h2&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/Nirob-Ahmed/embed/XJWZXMP?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sakofchit/system.css" rel="noopener noreferrer"&gt;&lt;strong&gt;GitHub Repository&lt;/strong&gt;&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;Bring the vintage aesthetic to your projects with ease. Simple, flexible, and CSS-based.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>ui</category>
      <category>frontend</category>
    </item>
    <item>
      <title>5 Best Python TUI Libraries for Building Text-Based User Interfaces</title>
      <dc:creator>Nirob Ahmed</dc:creator>
      <pubDate>Sat, 09 Nov 2024 10:25:53 +0000</pubDate>
      <link>https://dev.to/lazy_code/5-best-python-tui-libraries-for-building-text-based-user-interfaces-5fdi</link>
      <guid>https://dev.to/lazy_code/5-best-python-tui-libraries-for-building-text-based-user-interfaces-5fdi</guid>
      <description>&lt;p&gt;Text-based user interfaces (TUIs) are a great way to create interactive applications that run in terminal environments.&lt;/p&gt;

&lt;p&gt;1.Curses&lt;br&gt;
Curses is the classic Python library for building TUIs. It’s a wrapper around the Unix ncurses library, which is used for managing multi-line text input, windows, and handling keyboard events.&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%2Fi7qn11gq5xw11knpoukd.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%2Fi7qn11gq5xw11knpoukd.png" alt="selecting using keyboard" width="785" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2.Rich&lt;br&gt;
&lt;a href="https://github.com/Textualize/rich" rel="noopener noreferrer"&gt;Rich&lt;/a&gt;&lt;br&gt;
Rich is a modern Python library designed for rich text and beautiful formatting in the terminal. While Rich is often used for rendering formatted logs or terminal output, it also includes a TUI toolkit for building full-fledged interactive applications.&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%2Fw471y8jauko87lfsf939.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%2Fw471y8jauko87lfsf939.png" alt="Features" width="800" height="896"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;3.Textual&lt;br&gt;
&lt;a href="https://github.com/Textualize/textual" rel="noopener noreferrer"&gt;Textual&lt;/a&gt;&lt;br&gt;
Textual is a modern, async-powered TUI library built on top of Rich.Textual adds interactivity to Rich with an API inspired by modern web development.&lt;/p&gt;

&lt;p&gt;On modern terminal software (installed by default on most systems), Textual apps can use 16.7 million colors with mouse support and smooth flicker-free animation. A powerful layout engine and re-usable components makes it possible to build apps that rival the desktop and web experience.&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%2Fgw1o3mxgj25vwpec3kx2.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%2Fgw1o3mxgj25vwpec3kx2.png" alt="Tui app's in textual" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;4.Pytermgui&lt;br&gt;
&lt;a href="https://github.com/bczsalba/pytermgui" rel="noopener noreferrer"&gt;Pytermgui&lt;/a&gt;&lt;br&gt;
Python TUI framework with mouse support, modular widget system, customizable and rapid terminal markup language and more!&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%2Fekdg581sz9sbifvw44z8.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%2Fekdg581sz9sbifvw44z8.png" alt="color picker" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5.ASCIIMATICS&lt;br&gt;
&lt;a href="https://github.com/peterbrittain/asciimatics" rel="noopener noreferrer"&gt;ASCIIMATICS&lt;/a&gt;&lt;br&gt;
A cross platform package to do curses-like operations, plus higher level APIs and widgets to create text UIs and ASCII art animations&lt;/p&gt;

&lt;p&gt;let me know your favorite one!&lt;/p&gt;

</description>
      <category>python</category>
      <category>ui</category>
      <category>terminal</category>
    </item>
  </channel>
</rss>
