开发者
编程技术、框架工具、最佳实践
共 7609 篇 · 第 369/381 页
The Quintessential CRUD App?
In your opinion what would you say is the quintessential CRUD app? If you were to make a sample demo app utilizing and comparing the different tech stack (eg Laravel vs Django vs Spring Boot etc), which CRUD app would be the best? Thanks submitted by /u/Temporary_Practice_2 [link] [留言]
how to filter elements with javascript???
Making a personal website and trying to showcase projects I've worked on and trying to make it filterable. But I can not for the life of me figure out how the javascript part works? W3schools has been amazing and digestible up until this point. Using this as my base but what do I replace in the java part to make it filterable???? https://preview.redd.it/a35guno7yt3h1.png?width=1990&format=png&auto=webp&s=169b5610856995b84e1cee0881dac68dbc8be32d submitted by /u/ToxicGhostJuice [link] [留言]
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
Ring programming language version 1.27 is released!
submitted by /u/mrpro1a1 [link] [留言]
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. […]
Folding in Parallel
submitted by /u/Xaneris47 [link] [留言]
Dispatches from the possibly last days of human relevance
I Thought Coding Was The Job
Two years ago, when I got my first freelance client, I was still in my final semester of college. A...
Google engineer charged with using inside information to win $1.2M on Polymarket
[ Removed by Reddit ]
[ Removed by Reddit on account of violating the content policy . ] submitted by /u/Economy_Goose_8561 [link] [留言]
I Built an MCP Agent Framework for My B.Tech Major Project. It Got 750+ npm Downloads in Week One. Here's the Comeback Story.
This is a submission for the GitHub Finish-Up-A-Thon Challenge What I Built Last...
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] [留言]
Herman Miller Promo Codes: 40% Off June
Whether you’re looking for a Herman Miller promo code or discounts in their sale, here is how to save on the world's best ergonomic office furniture this month.
Sigbovik 2026 Proceedings [pdf]
MIT president: Why so many optimistic scientists are losing heart
Hallucinate – Massively Multiplayer Online Rave
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