freenet-core
freenet-core copied to clipboard
Declare your digital independence
Use a browser profile to specify Locutus as a proxy: https://superuser.com/questions/1633255/how-can-i-start-a-google-chrome-instance-which-uses-a-proxy-while-already-having
Register a URI handler in the OS for "freenet:" that launches the custom Freenet browser. ## Notes Yes, it's possible to create custom URI schemes on Windows, MacOS, and Linux,...
Peers should look for unusual statistical patterns in requests coming from their neighbors. For example, a bunch of new contracts being added all with unusually similar locations might be indicative...
Supporting SOCKS5 as an alternate transport would be useful for people who wish to use VPNs with Locutus. There is some [code](https://github.com/comit-network/rust-libp2p-tokio-socks5) to add SOCKS5 support to libp2p, but it...
A decentralized web of trust system that can accommodate many different types of trust relationship, including but not limited to: * I trust this identity not to send spam *...
Just running through [the tutorial](https://docs.freenet.org/tutorial.html) with a fresh install of locutus on Ubuntu: ```bash $ ldt new web-app (base) Wed 10 May 2023 03:46:26 PM CDT Created library `/tmp/my-app/web/container` package...
## Overview The Key Generation (KeyGen) system is designed to enable users to generate public-private key pairs within their web browsers, without the key pairs ever leaving the browser or...
A tool that securely synchronizes files and directories across multiple computers, perhaps using diff/merge for text files. This would be similar to Dropbox except maintaining a cloud backup would be...
* [Mutation testing](https://github.com/llogiq/mutagen) * [Fuzzing](https://github.com/rust-fuzz/cargo-fuzz)
The change in the the API would be something similar to: ```rust type Key = &[u8]; trait ContractInterface { fn lookup_data( key: Key state: State