Rachit Poudel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Developer:
  # About me
  def __init__(self):
    self.name = "Rachit Poudel"
    self.role = "Full-Stack Django Developer"
    self.location = "Kathmandu, Nepal"
    self.skills = ["Python", "Django", "JavaScript", "PHP", "PostgreSQL", "Vue.js"]
    self.passion = "Building elegant web applications"

  def contact(self):
    return {
      "email": "info@rachitpoudel.com.np",
      "github": "https://github.com/rachitpoudel101"
    }
1
2
3
class AboutMe:
  # Learning about who I am and what I do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class AboutMe:
  def bio(self):
    return """I'm a 22-year-old full-stack developer with over 2 year 
    of self Learning experience in Django. My passion lies in
    creating dynamic web applications that combine elegant code
    with exceptional user experiences."""

  def journey(self):
    return """I've honed my skills in both front-end and back-end development,
    specializing in Django. I thrive on tackling complex problems
    and turning ideas into functional, scalable applications."""

  def beyond_coding(self):
    return """When I'm not coding, I enjoy graphic design, music, and gaming.
    These creative outlets complement my development work."""
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class TechStack:
  def languages(self):
    return ["Python", "JavaScript", "HTML5", "CSS3", "SQL"]

  def frameworks(self):
    return ["Django", "Django REST Framework", "Vue.js"]

  def databases(self):
    return ["PostgreSQL", "MySQL"]

  def tools(self):
    return ["Git", "GitHub", "Jira"]
Python
"Python"
Vue.js
"Vue.js"
Django
"Django"
JavaScript
"JavaScript"
PostgreSQL
"PostgreSQL"
Git
"Git"
HTML5
"HTML5"
CSS3
"CSS3"
MySQL
"MySQL"
1
2
3
class Portfolio:
  # A collection of my best work
1
2
3
4
5
6
7
8
9
10
11
12
class Portfolio:
  def __init__(self):
    self.projects = []

  def featured_projects(self):
    return [project for project in self.projects if project.featured]

  def recent_projects(self, limit=3):
    return sorted(self.projects, key=lambda x: x.created_at, reverse=True)[:limit]
Vchat

Project::Vchat

Django WebSocket SQLite

A real-time video chat application built with Django, featuring WebSocket integration for seamless communication.

Chat App

Project::ChatApp

Django Channels Redis

A real-time chat application using Django Channels and WebSocket for instant messaging functionality.

Voter List

Project::VoterList

Django SQLite Bootstrap

A digital voter management system built with Django, featuring user authentication and voter data management.

Lugga Collab

Project::LuggaCollab

PHP MySQL Bootstrap

A collaborative e-commerce platform built with PHP, featuring user authentication and product management.

Weather App

Project::WeatherApp

Django API JavaScript

A weather forecast application built with Django, integrating with weather APIs for real-time weather data.

Vendora

Project::Vendora

Django MySQL Vue-js Typescript

A web-based Inventory Management System for electronic items built using Django and Vue.js. Inventory tracking and management Billing and invoicing, User authentication and permissions, Supplier management, Dashboard analytics, Notification system

Haritali Botanics

Project::Haritali Botanics

Django MySQL Tailwind CSS JavaScript

This project was developed as a client solution for Hariyali Botanics, an online shop specializing in botanical products. My role involved building a user-friendly product catalog and category filtering system tailored to the client's requirements. It demonstrates my ability to deliver custom e-commerce features and responsive design for real-world businesses.

1
2
3
class ContactManager:
  # Let's work together
1
2
3
4
5
6
7
8
9
10
11
12
13
class ContactManager:
  def __init__(self):
    self.recipient = "info@rachitpoudel.com.np"
    self.subject = "New message from portfolio"

  def send_message(self, name, email, message):
    if name and email and message:
      self._send_mail(
        message=message,
        from_email=email
      )
      return {"success": True, "message": "Thanks for reaching out! I'll get back to you soon."}
    else:
      return {"success": False, "message": "Please fill out all fields."}

Contact Information

def location

Kathmandu, Nepal

Connect With Me