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

推荐订阅源

N
Netflix TechBlog - Medium
IT之家
IT之家
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - kevinwielander/digital-business-cards
challengerVI · 2026-04-19 · via Hacker News: Show HN

OwnCardly

Features

  • Drag & Drop Designer — Position text, images, shapes, icons, and QR codes on a visual canvas with snap-to-guide alignment
  • 11 Starter Templates — Portrait and landscape designs, ready to customize
  • Quick Create Flow — Pick a template, fill in your info, download — no account needed
  • Company & Team Management — Manage multiple companies with people, photos, and custom fields
  • CSV Bulk Import — Import entire teams with auto column mapping
  • Asset Library — Upload logos, backgrounds, and icons per company
  • Social Icons — LinkedIn, X/Twitter, Instagram, GitHub, and more with clickable links
  • QR Code & vCard — Auto-generated QR codes and one-click contact download
  • 18 Google Fonts — Full weight support (Light to Bold)
  • Layers Panel — Reorder, group, lock, and hide elements like a proper design tool
  • Undo/Redo — Ctrl+Z / Ctrl+Y with full history
  • 10 Languages — English, German, French, Spanish, Portuguese, Italian, Dutch, Japanese, Chinese, Korean
  • Guest Mode — Try everything without signing up (data stored locally)
  • Mobile Responsive — Cards scale automatically on mobile devices
  • Self-Contained Export — Generated HTML files work offline with embedded images, fonts, and vCards
  • Google OAuth — Sign in with Google, data persists in Supabase

Tech Stack

Framework Next.js 16 (App Router) Database Supabase (PostgreSQL + Auth + Storage) Styling Tailwind CSS 4 Language TypeScript 5 Drag & Drop react-rnd Animations Framer Motion QR Codes qrcode Image Cropping react-easy-crop CSV Parsing PapaParse ZIP Generation JSZip
Layer Technology

Quick Start

Prerequisites

  • Node.js 18+
  • Yarn
  • A free Supabase account

Setup

  1. Clone the repo

    git clone https://github.com/kevinwielander/digital-business-cards.git
    cd digital-business-cards
  2. Install dependencies

    yarn install
  3. Set up environment

    cp .env.example .env.local

    Fill in your Supabase URL and anon key from the Supabase Dashboard → Settings → API.

  4. Set up database

    npx supabase login
    npx supabase link --project-ref YOUR_PROJECT_REF
    npx supabase db push
  5. Configure auth (optional, for Google sign-in)

    • Create OAuth credentials in Google Cloud Console
    • Add redirect URI: https://YOUR_PROJECT_ID.supabase.co/auth/v1/callback
    • Enable Google provider in Supabase → Authentication → Providers
  6. Run the dev server

    yarn dev

    Open http://localhost:3000

Seed Sample Data (optional)

To populate with sample companies, people, and template assets:

npx tsx --env-file=.env.local scripts/seed-sample-assets.ts

Deployment

Vercel (Recommended)

Deploy with Vercel

Docker

docker build -t cardgen .
docker run -p 3000:3000 \
  -e NEXT_PUBLIC_SUPABASE_URL=your-url \
  -e NEXT_PUBLIC_SUPABASE_ANON_KEY=your-key \
  cardgen

Self-Hosting

See Self-Hosting Guide for detailed instructions on deploying with Docker, Railway, or Render.

Project Structure

app/
  api/          — API routes (card generation, image proxy)
  auth/         — Auth callback and guest data migration
  companies/    — Company management pages
  components/   — All React components
    designer/   — Card designer (canvas, layers, properties, icons)
  create/       — Quick card creation flow
  templates/    — Template management pages
lib/
  i18n/         — Translation strings (10 languages)
  supabase/     — Client helpers and constants
  types.ts      — TypeScript types
  fonts.ts      — Google Fonts config
  sample-templates.ts — Starter template definitions
supabase/
  migrations/   — Database migrations

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

  1. Fork the repo
  2. Create a feature branch (git checkout -b feat/amazing-feature)
  3. Commit your changes
  4. Push to the branch
  5. Open a Pull Request

License

MIT — free for personal and commercial use.

Acknowledgments