v86
adblock-rust
v86 | adblock-rust | |
---|---|---|
162 | 55 | |
20,437 | 1,610 | |
1.1% | 3.4% | |
9.5 | 9.0 | |
5 days ago | about 15 hours ago | |
JavaScript | Rust | |
BSD 2-clause "Simplified" License | Mozilla Public License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
v86
- V86: Working Operating Systems in the Browser
- Webvm: Virtual Machine for the Web
- WebVM 2.0: A complete Linux Desktop Environment in the browser via WebAssembly
- Windows 95 Running in the Browser
-
Run a Virtual Machine in Your Browser
import { useEffect } from 'react'; function App() { useEffect(function initializeEmulator(){ // See https://github.com/copy/v86/blob/master/src/browser/starter.js for options window.emulator = new window.V86({ wasm_path: '/v86.wasm', screen_container: document.getElementById("screen_container"), bios: { url: "/bios/seabios.bin", }, vga_bios: { url: "/bios/vgabios.bin", }, hda: { // Hard Disk url: "/images/fd12-base.img", async: true, size: 419430400, // Recommended to add size of the image in URL. see https://github.com/copy/v86/blob/master/src/browser/starter.js }, autostart: true, }); }, []); return (
Initializing Emulator…div> canvas> div> ); } export default App; - WebVM is a server-less virtual Linux environment running client-side
- Windows 8 Running in the Browser
- Run Windows on the browser with WASM power
-
WASI 0.2.0 and Why It Matters
> As a thought experiment, we're almost there! We could technically have `win95.img + bochs86vm.wasm + autorun.inf + msword.exe` wrapped in a "browser evaluator"
I looked into this and... holy crap! We are there. Not for modern programs quite yet, sure, but this is amazing. You can use Windows 2000 from your browser.
https://copy.sh/v86/?profile=windows2000
-
Is offline-first not enough? Do we need "serverfree"?
I think you are looking for Shadow.
https://shadow.goose.icu
Or just the whole kitchen sink. Why not?
http://copy.sh/v86/?profile=windows98
adblock-rust
-
"test your adblocker" websites can harm users and the adblocker ecosystem
If you really wanted to know, most of the tests for Brave's adblock engine are at https://github.com/brave/adblock-rust/tree/master/tests
Those are automated unit and integration tests with controlled filter data as inputs. That's the only practically useful kind of test for an adblocker.
-
uBlock Origin is no longer available on Chrome web store
Why do you think this would happen? Brave incorporates ublock as part of their Rust based adblocking library https://github.com/brave/adblock-rust
-
In June 2024, ad blockers such as uBlock Origin will be disabled in Chrome 127
Brave has written their own (open source) adblock engine (in rust) that is directly integrated into the browser (ie. not an extension, so is not affected by Manifest V3).
https://github.com/brave/adblock-rust
Here is a (somewhat dated) article describing it by the authors:
https://brave.com/improved-ad-blocker-performance/
- Brave's Rust-based adblock engine
-
uBlock Origin 1.50.0
Brave has its own Rust implementation of an adblocker embedded in the browser: https://github.com/brave/adblock-rust; so it does not embed uBlock Origin (but the filters are mostly compatible)
Disclaimer: I work at Brave but not on the browser.
-
Does Brave now fully support Procedural Filtering or is uBlock still needed?
We support :has currently, which impacts many filters in EL and uBO. Some non-supported filters such as upward() can be manually converted over to use :has instead. The other unsupported procedual filters are a WIP will depend how easy/hard they are implement. No ETA, but have opened a ticket https://github.com/brave/adblock-rust/issues/293
-
Firefox extends its anti-tracking protection to Android
ublock on chromium and brave itself can't use all of the filters in that list: https://github.com/brave/adblock-rust/issues/4
-
take your daily medicine guys
It's open source https://github.com/brave/adblock-rust
-
$removeparam not working in filter lists
I've fixed this in the adblock engine as of https://github.com/brave/adblock-rust/commit/8a755bdb190bb55a3a3acee1e6507085051bdeec, and I'll push to get this patched in 1.47 soon. Thanks for the reports!
What are some alternatives?
webvm - Virtual Machine for the Web
brave-browser - Brave browser for Android, iOS, Linux, macOS, Windows.
yoroi-frontend - Yoroi Wallet - Cardano ADA Wallet - Your gateway to the financial world (extension frontend)
uBlock - uBlock Origin - An efficient blocker for Chromium and Firefox. Fast and lean.
daedalOS - Desktop environment in the browser
privacytests.org - Source code for privacytests.org. Includes browser testing code and site rendering.