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

推荐订阅源

V
Visual Studio Blog
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
博客园_首页
T
Tailwind CSS Blog
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
S
SegmentFault 最新的问题
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Jina AI
Jina AI
WordPress大学
WordPress大学
U
Unit 42
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare 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
What 5 Years on an Amazon Dock Taught Me About Barcodes
swift king · 2026-06-23 · via DEV Community

swift king

I was the receiver. 3 AM shift. 40 cartons per minute. If a barcode didn't scan in under 100 milliseconds, the whole line stopped.
After five years, I can tell you more about why barcodes fail than most people learn in a career.

The Three Rules Nobody Follows

  1. White space is not optional. Every barcode standard specifies a quiet zone on both sides. UPC requires 9x the narrowest bar
    width. ITF-14 requires 10x. If you print edge-to-edge, your scanner sees noise instead of a barcode. I rejected entire pallets for
    this.

  2. Brown cardboard is not white. Laser scanners read contrast—black bars against a white background. Corrugated cardboard is beige.
    Print directly on it, and the "white" spaces aren't white. Every vendor who skipped the white label step learned this at the
    receiving dock.

  3. Test-scan before printing 1,000 labels. One bad print run at 3 AM costs hours. I print 10 labels and scan all 10. If one fails, I
    recalibrate. The scanner is your QA tool.

Why I Built a Free Tool

After Amazon, I started consulting for small warehouses. Every owner asked the same question: "How do I track inventory without
Spending $10K on a WMS? "The first thing they all needed—before any software—was clean, scannable barcodes.

I built https://genbarcode.org because the existing free generators were loaded with ads, watermarks, and required signup. Mine
runs entirely in your browser. Type a number, get a barcode. No upload. No account. Supports EAN-13, UPC-A, Code 128, ITF-14, and
Code 39.

What Format to Use

┌───────────────────┬────────────────┬────────────────────────────┐
│ Use case │ Format │ Why │
├───────────────────┼────────────────┼────────────────────────────┤
│ Retail product │ UPC-A / EAN-13 │ Global POS standard │
├───────────────────┼────────────────┼────────────────────────────┤
│ Shipping carton │ ITF-14 │ Designed for corrugated │
├───────────────────┼────────────────┼────────────────────────────┤
│ Warehouse bin │ Code 128 │ Alphanumeric, dense, fast │
├───────────────────┼────────────────┼────────────────────────────┤
│ Internal tracking │ Code 39 │ Legacy support, easy print │
└───────────────────┴────────────────┴────────────────────────────┘

If you're printing your own labels for the first time, use Code 128 at 300 DPI on white labels. Test on the surface you're actually
labeling—not office paper. And leave the quiet zone. Your receiver will thank you at 3 AM.


Marcus Rivera is a former Amazon warehouse operations manager. He builds free barcode tools at https://genbarcode.org