Skip to content
View ProgrammingFire's full-sized avatar
📚
Probably Learning Something New
📚
Probably Learning Something New
Block or Report

Block or report ProgrammingFire

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ProgrammingFire/README.md

👋 Hi, I’m Nouman Rahman 🚀 🤖 (@ProgrammingFire)

13 Years Old 🔥
Web Developer 💻
UI/UX Designer 🎨
Writes at programmingfire.com 📝
Trying to make something 🚀
Next.js, tRPC, Tailwind, TypeScript ⚙️
📚 I’m currently building SaaS projects (failed!)

Nouman Rahman's Dev Card

GitHub Streak


📺 Latest YouTube Videos

➡️ more videos...


📚 Latest Blog Posts

Kickstart Your Journey with Indie Hacking Kickstart Your Journey with Indie Hacking
Embarking on an indie hacking journey can be both thrilling and daunting, as you dive into the world of entrepreneurship armed with nothing but your dreams and a hunger for success. You crave the freedom to build your own business from scratch, but w...



The Best Typography Hacks to Level Up Your Designs The Best Typography Hacks to Level Up Your Designs
Typography The choice of fonts, font sizes, and font styles plays a significant role in UI/UX design. Typography sets the tone and personality of the interface, enhances readability, and guides users through the content. It is essential to select fon...



Clerk vs. NextAuth: Which one to use and when? Clerk vs. NextAuth: Which one to use and when?
Nowadays, Authentication is one of the most simple and complex things in Web Development. Two prominent authentication solutions that have gained traction among developers are Clerk and NextAuth. While both offer robust authentication capabilities, t...



Do we really need a backend now? Can we build applications without backend with Next.js 14? Do we really need a backend now? Can we build applications without backend with Next.js 14?
In the rapidly evolving landscape of web development, the role of the backend has been a critical component for many years. However, with the advent of modern frameworks like Next.js 14, the question arises: "Do we really need a Backend now? Can we b...



The Modern Web Explained to a 5-Year-Old The Modern Web Explained to a 5-Year-Old
Hey there, little buddy! Have you ever wondered how the internet works and how websites are made? Well, today we're going to talk about the modern web, and I'll try to explain it to you in a way that's easy to understand. Imagine the internet is like...



➡️ more posts...


💻 You Can Find Me On Most Of Social Media


Twitter Follow
YouTube Channel


My Skills

My Skills

Pinned Loading

  1. Pointer In C# Like C/C++ Pointer In C# Like C/C++
    1
    // Add <AllowUnsafeBlocks>true</AllowUnsafeBlocks> To Your *.csproj
    2
    
                  
    3
    int variable = 481;
    4
    
                  
    5
    unsafe
  2. ProgrammingFire Oh My Posh Theme ProgrammingFire Oh My Posh Theme
    1
    {
    2
      "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
    3
      "final_space": true,
    4
      "console_title": true,
    5
      "console_title_style": "folder",
  3. Binary Tree Example With Rust Binary Tree Example With Rust
    1
    #[derive(PartialEq)]
    2
    struct Node<'a> {
    3
        val: &'a str,
    4
        l: Option<Box<Node<'a>>>,
    5
        r: Option<Box<Node<'a>>>,
  4. Map Implemented In Pure TypeScript Map Implemented In Pure TypeScript
    1
    class MyMap<K, V> {
    2
      private map: [key: K, value: V][] = [];
    3
    
                  
    4
      set(key: K, value: V) {
    5
        const result = this.map.find(([k]) => k === key);
  5. Form Field Design With SCSS Form Field Design With SCSS
    1
    input,
    2
    textarea {
    3
      width: 30vw;
    4
      border: 2px solid #ebebf2;
    5
      border-radius: 5px;
  6. My PowerShell Core 7 Profile My PowerShell Core 7 Profile
    1
    using namespace System.Management.Automation
    2
    using namespace System.Management.Automation.Language
    3
    
                  
    4
    if ($host.Name -eq 'ConsoleHost') {
    5
    	Import-Module PSReadLine