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

推荐订阅源

博客园 - 三生石上(FineUI控件)
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
博客园 - 叶小钗
博客园 - 聂微东
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
小众软件
小众软件
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理

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
What Actually Happens When a Barcode Won't Scan at 3 AM
swift king · 2026-06-22 · via DEV Community

swift king

What Actually Happens When a Barcode Won't Scan at 3 AM

I spent five years on the receiving dock at Amazon. Here's what I learned about barcodes that nobody tells you in the spec sheets.

## The Quiet Zone Is Not Optional

Every barcode standard—UPC, EAN, Code 128, ITF-14—requires blank space on both sides. The spec calls this the "quiet zone." At 3 AM
with a conveyor belt doing 40 cartons per minute, a barcode without enough quiet zone doesn't scan at all. The laser needs that
blank margin to know where the barcode starts and ends.

I've watched receivers waste entire shifts because a vendor printed barcodes edge-to-edge with no margin. The fix isn't
technical—it's just leaving space. For UPC, it's 9x the narrowest bar width on each side. For ITF-14, it's 10x.

## Why Corrugated Cardboard Eats Your Barcode

Laser scanners read the contrast between black bars and white spaces. Corrugated cardboard is brown, not white. Print a barcode
directly on kraft cardboard and the "white" spaces aren't white—they're beige at best. The scanner's laser sees mush.

The industry fix is printing on a white label first, then applying it to the carton. Sounds obvious. Three separate vendors I dealt
with skipped this because "the printer said it would work on brown." It doesn't.

## Check Digits Catch Everything Except Human Error

EAN-13 and UPC-A both use a modulo-10 check digit. It catches 100% of single-digit errors and most transpositions. What it doesn't
catch: someone putting the wrong label on the wrong carton. Or printing the right barcode for the wrong product. The check digit
validates the number—it doesn't validate your process.

I once received a pallet of "phone chargers" that scanned as baby formula. The barcodes were perfect. The picker had grabbed the
wrong stack of labels. The check digit was happy. The inventory system was not.

## What I Recommend for Small Business Shipping

If you're printing your own barcodes for the first time: use Code 128. It's denser than Code 39, handles alphanumeric, and every
warehouse scanner reads it. Print at 300 DPI minimum. Leave white space. Test on the actual surface you're labeling—not on your
office printer paper.