You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/README.md

107 lines
4.3 KiB
Markdown

4 years ago
# Komrade
4 years ago
4 years ago
Komrade is a socialist network. It seizes the means of content production.
4 years ago
4 years ago
## Why another social network?
4 years ago
Is a 'socialist network' possible? Although the internet began with anarchic design principles, it quickly consolidated into the hands of a few of the largest corporations in the world. It has effectively recreated the capitalist mode of production within itself: the means of content production (social media platforms) are privatized while the work of production (posting) remains socially distributed. Exploitation inheres in that relation, whether in the industrial factory or the digital platform, because the value you produce is taken from you, concentrated and privatized.
4 years ago
4 years ago
But a digital network can be redesigned. The technology behind these social media platforms is actually quite simple. We can easily build our own social network, one which is secure, insurveillable, and unmonetizable—one which would give people the security they need to communicate about whatever they want, including protesting against capital and the state.
4 years ago
4 years ago
Social networks are weightless. They should be easy to communize.
4 years ago
4 years ago
## Core principles
4 years ago
4 years ago
### Encrypted
4 years ago
4 years ago
All of your data is strongly encrypted, and only you and those you choose will be able to decrypt and read it. To anyone without the right decryption 'key', the data is nonsense.
4 years ago
4 years ago
### Decentralized
4 years ago
4 years ago
Komrade doesn't live on a server, but rather in the ether between all the devices curently running Komrade. Rather than the hierarchical server/client relationship, which exposes the entire network to attacks on a central server, and expose the anonymity on both parties, Komrade uses peer-to-peer networking to 'flood' encrypted data across the network.
4 years ago
4 years ago
### Anonymous
4 years ago
4 years ago
It's impossible to tell who or sent what to anyone. All peers in the network share data randomly, but only the intended recipients have the right decryption key to unlock it. This is a different kind of cloud: a 'dust cloud' of strongly encrypted information. Ideally, for extra anonymity, all network traffic will be routed through Tor (a global maze of computers which hides your footprints), though this currently faces some serious technical challenges.
4 years ago
### Unmonetizable
What's untraceable is also unmonetizable: your data can't be harvested by technology companies and used for advertising algorithms. You're protected from both surveillance capitalism and the surveillance state.
4 years ago
4 years ago
### Open-source
4 years ago
Not just non-profit, we're anti-profit.
4 years ago
4 years ago
## Social media features
4 years ago
We present a simplified set of social media features drawn from everything that's out there and then some:
4 years ago
#### Profile
4 years ago
* Curate a profile with photo and posts (e.g. Twitter)
* Show profile to world (e.g. Twitter)
* Show profile only to friends (e.g. Facebook)
* Show profile only to your local area (e.g. Nextdoor)
4 years ago
#### Posting
* Post up to 1 image and/or 1000 characters
4 years ago
* Post to the entire world (e.g. Twitter)
* Post to your friends (e.g. Facebook)
* Post to your surrounding area by a distance radius (e.g. Nextdoor)
* Anonymously up-vote or down-vote posts (e.g. Reddit)
4 years ago
* Post anonymously or from your account (new)
4 years ago
4 years ago
#### Organizing
4 years ago
* Host events and invite others (e.g. Facebook)
4 years ago
* Host events like protests anonymously (new)
4 years ago
* Anonymously pin on a map sites of danger, like police (e.g. Waze)
4 years ago
4 years ago
#### Messaging
4 years ago
* Message securely with encrypted contents (e.g. Signal)
4 years ago
* Message securely with untraceable metadata (new)
4 years ago
## Progress
4 years ago
### Preview animation
As of the 23rd of August.
4 years ago
4 years ago
<img src="app/assets/komrade-screen-preview-2020-08-23.gif" height="600" alt="GIF animation" />
## Technical details
4 years ago
Design details are changing rapidly, but these are what we have so far.
### App
4 years ago
The cross-platform app is made with [KivyMD](https://github.com/kivymd/KivyMD), a variant of [Kivy](https://kivy.org/), a cross-platform mobile development framework in Python. Python is an easy and versatile progamming language to learn, which keeps the code accessible to as many people as possible.
4 years ago
4 years ago
### Database
4 years ago
4 years ago
The database is a [Kademlia](https://github.com/bmuller/kademlia) Distributed Hash Table, a p2p data store, written in Python.
4 years ago
## Install
### As developer
4 years ago
The usual installation:
4 years ago
```
git clone https://github.com/quadrismegistus/Komrade.git
cd Komrade
. script/bootstrap
4 years ago
```
Then run the client:
```
cd client
./run.sh
```
### As user
Coming soon.