今日精选
HOT最新资讯
共 27419 篇🔥 lodash / lodash - A modern JavaScript utility library delivering modularity, p
GitHub热门项目 | A modern JavaScript utility library delivering modularity, performance, & extras. | Stars: 61,273 | 26 stars this week | 语言: JavaScript
🔥 Tracer-Cloud / opensre - Build your own AI SRE agents. The open source toolkit for th
GitHub热门项目 | Build your own AI SRE agents. The open source toolkit for the AI era. | Stars: 9,680 | 536 stars this week | 语言: Python
🔥 modelcontextprotocol / python-sdk - The official Python SDK for Model Context Protocol servers a
GitHub热门项目 | The official Python SDK for Model Context Protocol servers and clients | Stars: 23,833 | 127 stars this week | 语言: Python
🔥 sinelaw / fresh - Terminal based IDE & text editor: easy, powerful and fast
GitHub热门项目 | Terminal based IDE & text editor: easy, powerful and fast | Stars: 8,060 | 26 stars today | 语言: Rust
🔥 sharkdp / bat - A cat(1) clone with wings.
GitHub热门项目 | A cat(1) clone with wings. | Stars: 59,966 | 14 stars today | 语言: Rust
🔥 podman-desktop / podman-desktop - Podman Desktop is the best free and open source tool to work
GitHub热门项目 | Podman Desktop is the best free and open source tool to work with Containers and Kubernetes for developers. Get an intuitive and user-friendly interface to effortlessly build, manage, and deploy containers and Kubernetes — all from your desktop. | Stars: 7,872 | 10 stars today | 语言: TypeScript
🔥 vuejs / core - 🖖 Vue.js is a progressive, incrementally-adoptable JavaScrip
GitHub热门项目 | 🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web. | Stars: 54,074 | 8 stars today | 语言: TypeScript
🔥 microsoft / agent-academy - Curated lessons on getting started building agents with Copi
GitHub热门项目 | Curated lessons on getting started building agents with Copilot Studio | Stars: 3,131 | 6 stars today | 语言: JavaScript
🔥 open-gsd / gsd-core - Git. Ship. Done - Core
GitHub热门项目 | Git. Ship. Done - Core | Stars: 7,532 | 49 stars today | 语言: JavaScript
🔥 SimplifyJobs / Summer2027-Internships - Summer 2026 software engineering, data science, AI, quant, p
GitHub热门项目 | Summer 2026 software engineering, data science, AI, quant, product management, and hardware internship postings. Updated daily by Simplify and Pitt CSC. | Stars: 45,641 | 49 stars today | 语言: Python
🔥 iv-org / invidious - Invidious is an alternative front-end to YouTube
GitHub热门项目 | Invidious is an alternative front-end to YouTube | Stars: 21,463 | 361 stars today | 语言: Crystal
🔥 abus-aikorea / voice-pro - Gradio WebUI for creators and developers, featuring key TTS
GitHub热门项目 | Gradio WebUI for creators and developers, featuring key TTS (Edge-TTS, kokoro) and zero-shot Voice Cloning (E2 & F5-TTS, CosyVoice), with Whisper audio processing, YouTube download, Demucs vocal isolation, and multilingual translation. | Stars: 11,557 | 53 stars today | 语言: Python
🔥 github / gh-stack - GitHub Stacked PRs
GitHub热门项目 | GitHub Stacked PRs | Stars: 696 | 67 stars today | 语言: Go
🔥 microsoft / generative-ai-for-beginners - 21 Lessons, Get Started Building with Generative AI
GitHub热门项目 | 21 Lessons, Get Started Building with Generative AI | Stars: 113,915 | 104 stars today | 语言: Jupyter Notebook
Engadget review recap: Samsung Galaxy Z Fold 8, Meta Glasses and more
A roundup of recent reviews published by Engadget.
The Mermaid Mask is a perfect vacation murder mystery
The Mermaid Mask, the next point-and-click game from Tangle Tower developer SFB Games, has everything you could ask for in a great murder mystery. It starts with a compelling setup: The captain of a submarine is found dead in a locked room, his body next to a mysterious cauldron with blood trickling across the floor. […]
Flycast WASM JIT v1 released (Dreamcast emulator in browser) with technical write-up
Write-up From r/emulation : Six months ago I got upstream Flycast compiling to WebAssembly and running as a libretro core. It booted games at about 2 FPS on the interpreter. Fun proof of concept, completely unplayable. Today, heavy 3D titles like Jet Grind Radio and Shenmue hold their target framerate at native resolution with clean audio, in a browser tab, on ordinary hardware. Here's how that gap closed. Why this wasn't supposed to work Every Dreamcast emulator that runs at full speed depends on a dynamic recompiler. A dynarec generates native code at runtime and jumps into it. WebAssembly makes that structurally impossible: code and data live in separate address spaces, so there's no writable-executable memory to generate into, and nothing you write into linear memory can ever be executed. Upstream had already declined WASM support, and the consensus was that this was a dead end. Browser Dreamcast would stay a slideshow. Fuck that. The workaround The JIT doesn't patch memory. It generates entire WebAssembly modules at runtime. SH4 code is decoded into Flycast's SHIL IR, lowered to wasm bytecode in the browser, compiled and instantiated through the wasm API, and dispatched via call_indirect from a C dispatch loop. The host boundary gets crossed once per module, at compile time. Steady-state execution is wasm calling wasm, with no JavaScript anywhere on the dispatch path. Getting from "it works" to "it's fast" Months of walls, and slightly less hair. Every one of these is documented with numbers in the writeup: Self-modifying code detection via per-page generation counters, eliminating 98% of runtime block hashing Fusing hot blocks into multi-block modules Inline fast paths for guest memory access. This was the big wall. Memory ops were crossing the wasm to JS import boundary about 500,000 times per frame. It's now about 700. A frame pacer that repays guest time instead of counting renders Compile storm management so scene transitions don't freeze An AudioWorklet r
jenkins pipeline for Github cloning and building
After setting up Jenkins and creating my first Declarative Pipeline, the next step was preparing my machine to build Docker images. Since my pipeline will eventually clone code from GitHub, build a Docker image, and push it to a container registry, Jenkins needs access to Docker. Without Docker installed, the docker build stage would fail because Jenkins wouldn't be able to execute Docker commands. Installing Docker On my Ubuntu machine, I installed Docker using: sudo apt update sudo apt install docker.io -y Once the installation completed, I verified it using: docker --version This confirmed that Docker was successfully installed and ready to use. Verifying Docker Installation Installing Docker is only half the job. The next step is to check whether your current user has permission to use Docker. Run: docker ps Expected Output If everything is configured correctly, you should see something similar to: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES Even if no containers are running, getting an empty table like the one above means Docker is working correctly. What If You Get a Permission Error? If you see an error like: permission denied while trying to connect to the Docker daemon socket it means your current user doesn't have permission to access the Docker daemon. First, check which user you're currently logged in as: whoami Example output: nishant Now add your user to the docker group: sudo usermod -aG docker $USER What does this command do? usermod modifies a user account. -aG means append the user to a supplementary group without removing existing groups. docker is the group that has permission to communicate with the Docker daemon. $USER automatically refers to your currently logged-in username. Apply the Changes The group membership won't take effect immediately. You have two options: Option 1 (Recommended): Log out of your Ubuntu session and log back in. This refreshes your user groups and is the most reliable method. Option 2: Simply restart your ter