diff --git a/src/en/src/arch.md b/src/en/src/arch.md index 194d3a6..950ef7b 100644 --- a/src/en/src/arch.md +++ b/src/en/src/arch.md @@ -17,6 +17,7 @@ We do not get paid by any service providers! We are not affiliated with them in Candidates: - Own personal iron server. Our main priority right now. +- A service provider that will provide an API to deploy an iron server. Outside [FVEY](https://en.wikipedia.org/wiki/Five_Eyes) - OVH - Scaleway - DigitalOcean diff --git a/src/en/src/fonds.md b/src/en/src/fonds.md index 0bc63f5..ceeca59 100644 --- a/src/en/src/fonds.md +++ b/src/en/src/fonds.md @@ -1 +1,2 @@ -# Funds +# Foundations +https://nlnet.nl/foundation/ want support ) \ No newline at end of file diff --git a/src/en/src/policy.md b/src/en/src/policy.md index 6e58460..95be193 100644 --- a/src/en/src/policy.md +++ b/src/en/src/policy.md @@ -15,4 +15,6 @@ The recommended client applications interact only with your server. Exceptions: - There are questions about [bitwarden](pass.md) mobile app. It seems there are tracker libs, but the traffic has not analyzed yet, maybe not active. ## Our web-resources -You leave a lot of your data when you visit any site. At least IP, at most all kinds of tracking. \ No newline at end of file +You leave a lot of your data when you visit any site. At a minimum, IP, at a maximum, all kinds of tracking data. +We **do not use tracking** in any form, on any of our public services. +But **we aggregate access-logging** to understand how many users we have and from what country. All visitor IPs are stored as subnets (x.x.x.0) and may not uniquely identify you. But we recommend to use means of traffic anonymization, as we do not guarantee that our server provider does not collect meta-information. \ No newline at end of file diff --git a/src/en/src/services.md b/src/en/src/services.md index 0e435cd..39ca289 100644 --- a/src/en/src/services.md +++ b/src/en/src/services.md @@ -14,7 +14,9 @@ SelfPrivacy functionality grows through services: | [Gitea](git.md) | 🏁 | ❌ | ✅ | ✅ | | [OpenConnect](vpn.md)| ⚒ | ✅ | ✅ | ✅ | | SearX | 🗓ī¸ | - | - | - | -| Jitsy | 🗓ī¸ | - | - - | +| XMPP | 🗓ī¸ | - | - - | +| syncserver FF | 🗓ī¸ | - | - - | +| Jitsy | |1F5D3↩ī¸ | - | - - | | OwnCast | 🗓ī¸ | - | - - | | PeerTube | 🗓ī¸ | - | - - | | Matrix | |1F5D3↩ī¸ | - | - - | diff --git a/src/en/src/team.md b/src/en/src/team.md index 19c64b1..34efa36 100644 --- a/src/en/src/team.md +++ b/src/en/src/team.md @@ -14,9 +14,15 @@ International team of independent professionals: - NixOS Community ## đŸĢ‚ Like-minded people -- [Cloudron](https://www.cloudron.io/) - commercial project, code closed, from $15 per month for email and multiple services. You have to install cloudron application yourself, keep an eye on server resources. -- [IndieWeb](https://indieweb.org/) - open source project, complicated in configuration. -- [Kubenav](https://kubenav.io/) - manages docker containers from mobile. Promising but for skilled users. -- [Yunohsot](https://yunohost.org/) - open project, not very stable. +- [Cloudron](https://www.cloudron.io/) - commercial project, code closed, from $15 per month for email and multiple services. You have to install the application yourself on the server, keep an eye on the server resources. +- [IndieWeb](https://indieweb.org/) - it is open-source project, complicated in configuration. +- [Kubenav](https://kubenav.io/) - manages docker containers from mobile. Promising but for highly skilled users. +- [Yunohsot](https://yunohost.org/) - open-source project, but not very stable. - [FreedomBox](https://freedombox.org) - open source project on ARM -- [Tunrkeylinux](https://turnkeylinux.org) - ready to use software for qualified users \ No newline at end of file +- [Tunrkeylinux](https://turnkeylinux.org) - ready to use software for advanced users + +### Useful +- https://ssd.eff.org +- https://datadetoxkit.org +- https://securityplanner.consumerreports.org/tool +- https://www.fordfoundation.org/work/our-grants/building-institutions-and-networks/cybersecurity-assessment-tool/ \ No newline at end of file diff --git a/translate_docs.sh b/translate_docs.sh index 93997d9..fda47f8 100755 --- a/translate_docs.sh +++ b/translate_docs.sh @@ -1,9 +1,6 @@ -inputFiles=$(ls src/ru/src/*.md) -outputFiles=$(ls src/en/src/*.md) - -for inputFile,outputFile in inputFiles,outputFiles +for inputFile in $(ls src/ru/src) do - python3.9 ${1} --file ${inputFile} --output ${outputFile} + python3.9 ${1} --file src/ru/src/${inputFile} --output src/en/src/${inputFile} done buildEnglishTranslation()