惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
3..2..1 Launch!: My journey from zero to Django Contribut...
(James) Kani · 2026-05-15 · via DEV Community

Though contribution sound big, its process require many tiny step composed up for single PR. I hope my reflection journey of Django contribution via Djangonaut program will inspire anyone who want to contribute to open source.

Introduction

When I surfed website before coding-ere. There was always a question; How was these website created? Such question was clarified during my first web-programming. We have to write HTML/CSS and Javascript. Then we plugged it to server-side application. Well, I accidentally came across open-source framework, Django, because of admin feature my client requested 5 years ago.

Contribution Challenge

As you may know, using open source and contributing to it are totally different. I thought it include: reading contribution.md, select an issue, fixing thing, open pull request, then boom! merged!!!

Well, that's 50% true. But less people talks about hidden parts. So many times there are;

  • Feeling nervous to select an issue because good-first-issue are occupied so quick.
  • No idea where to navigate, in particular large codebase software.
  • What if reviewer wouldn't like my PR at all?

Yeah, those are what happens when I first try to help Open Source project. Especially big project like Django, they are over hundred smart engineers around the world working on this thing. Finding your spot and starting point are surely challenging. That's why Django team has beginner-friendly program fostering new contributor, Djangonaut!

Launch Your Contribution: Djangonaut Space!

Djangonaut

It's 8-weeks near-asynchronize program where you'll be in team, mine is Saturn. (yeah, creative space relates name tho). Each team has different project to contribute. All team has Djangonauts (you and teammate) with your Captain, and Navigator. There is team expert, my team is Django Fellow who asynchornizedly help us along the program.

It's not only Django Djangonaut contributed but also community-wide libraries in Django/Python ecosystem. (Check website for more)

My Artifacts from Saturn

Fortunately, my two PRs got merged during program. It's my pleasure to receive very helpful suggestion from Django Core team.

Coalescing JSON-primitive strings

Coalescing JSON-primitive strings

PR: Link
This is very interesting bug. You can perform coalesce to receive not-null first value from given columns fetching. However, column's type are vary. Let imagine you coalesce Column A (string), Column B (JSON).

Technically to serve potential types, we need to wrap them with union type. In this case it's NCLOB, which can hold String and JSON. Basically database would cast type for us resulting in no problem in other database except Oracle. So, we have to handle type casting manually.

Hidden sensitive variables for Django admin panel

Hidden sensitive variables for Django admin panel

PR: Link

Django show sensitive data in stack trace if Debug=True is set. It's development-only and strongly recommended to disable during production. Even though even disable Debug mode, somehow it will throw sensitive information to stack trace, or worse Admin email, for default login/reset password form. This bug damage is only exposed to admin role.

The solution is straight forward, Django already provide sensitive_variables() to hide sensitive information. I have to attach it to authenticate() function for login / password reset.

How is it after two merged PRs?

Well, it's mixed feeling. My works got merged into big project. On the other hand, it clarified mystery under the iceberg.

Iceberg to clarify open source contribution

What I always see is new PRs open, new feature updated, new version to pull. But Those are just surface of iceberg. There are below the water where;

  • People get stuck for a week without any progress because of codebase size.
  • Over 20 discussions without (yet) tangible direction for issue.
  • No paid for all of this << this is very serious problem in open source now.

Well, is it worth? Absolutely Though my contributions are tiny progression, at least it gradually drive project forward. I learn many thing along the way, which I believe it will help me toward my career.

Final Thought

I would like to thank all Saturn team member, Django Core Team, and Djangonaut for this valuable experience. For ones who want to join, new batch is coming soon! Please stay in touch by following Djangonaut Linkin and website.

Also, if you have any question (relating/unrelating to this post), please feel free to reach out.