今日已更新 303 条资讯 | 累计 27107 条内容
关于我们

开发者

编程技术、框架工具、最佳实践

7586
篇文章

共 7586 篇 · 第 368/380 页

Reddit r/webdev

Thinking About Building a New Open-Source Database — Looking for Problems to Solve & Passionate People to Team Up

I’m a big fan of PostgreSQL and recently started thinking about building a new database system as a side project. I know creating a database is a huge challenge, and I’m still learning, but I really like the idea. If a few passionate people team up together, I believe we can build something interesting. I’d love to know: What struggles do you face with current databases? What features are missing in existing systems? What problems do you wish databases solved better? Performance? Scaling? RAM usage? Replication? Developer experience? Your feedback and ideas would really help. Or shorter and more Reddit-style: Title What problems do you face with existing databases? Content I’m thinking about creating a new database project because I really enjoy working with PostgreSQL. I know it’s a huge challenge, but I like the idea and want to learn deeply by building something. If a few passionate developers team up, maybe we can create something interesting. What problems or frustrations do you currently face with databases? What would you improve if you could design your own database? I’m deeply interested in backend architecture, distributed systems, and database engineering. Previously, I built a backend framework in Go called KVolt, which gave me strong experience in scalability, API architecture, performance optimization, and system design. Recently, I started exploring a bigger challenge: I’m a big fan of PostgreSQL, but I believe there’s still room for innovation in areas like: Performance Scalability Distributed systems Replication Memory optimization Developer experience Modern architecture design I know database engineering is one of the hardest areas in software development, and that’s exactly why it interests me. I’m also looking for a few passionate developers, backend engineers, and system-level programmers who genuinely enjoy solving hard engineering problems and would like to team up on this open-source journey. I’d love to hear from the community: What struggl

/u/Party-Tension-2053 2026-05-28 14:45 👁 5 查看原文 →
The Verge AI

The golden age of handheld gaming is already over

For a few glorious years, a $399 portable gadget could run almost anything you'd want to play. In 2022, the Steam Deck finally made PC gaming portable and affordable. I played through the vast majority of Elden Ring on a Steam Deck, agape that such a rich world could comfortably fit between my two hands. […]

Sean Hollister 2026-05-28 14:30 👁 12 查看原文 →
Reddit r/programming

[ Removed by Reddit ]

[ Removed by Reddit on account of violating the content policy . ] submitted by /u/Economy_Goose_8561 [link] [留言]

/u/Economy_Goose_8561 2026-05-28 13:57 👁 5 查看原文 →
Reddit r/webdev

Modern web development feels weirdly exhausting lately

Maybe I’m just getting older, but frontend tooling changes so fast now that sometimes it feels harder keeping up with the ecosystem than actually building products. Feels like every few months there’s a new framework, rendering strategy, state management pattern or deployment workflow people suddenly expect you to know. submitted by /u/Bladerunner_7_ [link] [留言]

/u/Bladerunner_7_ 2026-05-28 13:13 👁 6 查看原文 →
Dev.to

Export all of Andoid apps

Download: App List Sau khi Export một file .html thì bạn mở lên sẽ không thấy app icons đâu. Hãy chạy đoạn script Python dưới đây để có thể **bổ sung app icons vào Android app list *. Để tìm kiếm và bổ sung tự động icon thực tế của ứng dụng (từ Google Play Store hoặc các nguồn khác trên mạng) vào file HTML của bạn, phương pháp tối ưu nhất là sử dụng Script tự động (Python hoặc NodeJS) kết hợp với các công cụ/API cào dữ liệu (Web Scraping). Vì trong file HTML của bạn đã có sẵn mã gói ứng dụng (ví dụ: com.alibaba.aliyun ), việc tìm kiếm bằng package-name sẽ cho kết quả chính xác 100%. Dưới đây là các phương pháp phổ biến và dễ thực hiện nhất: Phương pháp 1: Sử dụng thư viện Python google-play-scraper (Khuyên dùng) Đây là cách dễ nhất, không cần đăng ký API key và tỷ lệ thành công rất cao. Thư viện này sẽ tự động tìm kiếm trên Google Play Store dựa trên package-name và trả về link icon (hình ảnh). Cách hoạt động: Đọc file HTML của bạn để lấy tất cả package-name . Dùng thư viện quét qua Play Store để lấy URL của icon. Chèn thẻ <img src="URL_ICON" /> vào trước tên ứng dụng trong HTML. Đoạn code Python mẫu để bạn chạy: (Trước khi chạy, bạn cài thư viện bằng lệnh: pip install google-play-scraper beautifulsoup4 ) Lưu file với tên tuỳ chọn và chạy trong cmd.exe: py append_applist_icons.py . from bs4 import BeautifulSoup from google_play_scraper import app as play_app import time # 1. Đọc file HTML gốc của bạn (thay tên file tương ứng) input_file = " apps_20260527232642_1.html " output_file = " apps_with_icons.html " with open ( input_file , " r " , encoding = " utf-8 " ) as f : soup = BeautifulSoup ( f . read (), " html.parser " ) # Tìm tất cả các khối ứng dụng app_items = soup . find_all ( " div " , class_ = " app-item " ) print ( f " Đang xử lý { len ( app_items ) } ứng dụng... " ) for index , item in enumerate ( app_items ): package_div = item . find ( " div " , class_ = " package-name " ) if package_div : package_name = package_div . text . strip () try : # 2. Lấy thông

Phuong Tran (IT) 2026-05-28 11:37 👁 4 查看原文 →
Reddit r/webdev

I encountered this issue in the last phases of my web app

After finishing the app I've been working on, I decided to use Paddle to handle monthly and yearly subscriptions. I followed their documentation and getting started page and did almost everything they say, yet I got this error as in the screenshot. That happens after I generate a checkout link in the server side, and navigating to it. If you've encountered such issue before and somehow fixed it, or at least you know a little better in this field, any helpful hints or advices will be truly appreciated https://preview.redd.it/1y9muysics3h1.png?width=1209&format=png&auto=webp&s=baebc208c65540d0a2cc8be24c0e90110b3ceefd submitted by /u/WadieZN [link] [留言]

/u/WadieZN 2026-05-28 10:01 👁 5 查看原文 →