All Projects → privacyguides → privacyguides.org

privacyguides / privacyguides.org

Licence: other
Protect your data against global mass surveillance programs.

Programming Languages

Markdown
49 projects
CSS
56736 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to privacyguides.org

ImageModels
ImageNet model implemented using the Keras Functional API
Stars: ✭ 63 (-95.21%)
Mutual labels:  mkdocs, mkdocs-material
mkdocs-static-i18n
MkDocs i18n plugin using static translation markdown files
Stars: ✭ 78 (-94.07%)
Mutual labels:  mkdocs, mkdocs-material
mkdocs-jekyll
The Material theme from MkDocs provided as a Jekyll template, optimized for GitHub Pages
Stars: ✭ 55 (-95.82%)
Mutual labels:  mkdocs, mkdocs-material
tutorials
Collection of tutorials for various libraries and technologies
Stars: ✭ 98 (-92.55%)
Mutual labels:  mkdocs, mkdocs-material
mkdocs-section-index
MkDocs plugin to allow clickable sections that lead to an index page
Stars: ✭ 36 (-97.26%)
Mutual labels:  mkdocs, mkdocs-material
taller-de-git
Documentación del taller de git
Stars: ✭ 18 (-98.63%)
Mutual labels:  mkdocs, mkdocs-material
mkdocs-git-revision-date-localized-plugin
MkDocs plugin to add a last updated date to your site pages
Stars: ✭ 73 (-94.45%)
Mutual labels:  mkdocs, mkdocs-material
mkdocs-exclude-search
🔎 A mkdocs plugin that lets you exclude selected chapters from the search index.
Stars: ✭ 16 (-98.78%)
Mutual labels:  mkdocs, mkdocs-material
docs
📖 TomoChain documentation
Stars: ✭ 19 (-98.56%)
Mutual labels:  mkdocs, mkdocs-material
docutools
Dev Centric Tools for Mkdocs Based Documentation
Stars: ✭ 13 (-99.01%)
Mutual labels:  mkdocs, mkdocs-material
lavalink-list
A list of free and available public lavalink. Feel free to make a pull request!
Stars: ✭ 43 (-96.73%)
Mutual labels:  mkdocs, mkdocs-material
fosscord-docs
Docs for Fosscord
Stars: ✭ 23 (-98.25%)
Mutual labels:  mkdocs, mkdocs-material
obsidian-publish-mkdocs
A Template to Publish Obsidian/Foam Notes on Github Pages (uses MkDocs)
Stars: ✭ 219 (-83.36%)
Mutual labels:  mkdocs, mkdocs-material
Privacytools.io
🛡🛠 You are being watched. Protect your privacy against global mass surveillance.
Stars: ✭ 3,048 (+131.61%)
Mutual labels:  surveillance
markdown-fenced-code-tabs
Generates tabs for consecutive markdown code blocks
Stars: ✭ 46 (-96.5%)
Mutual labels:  mkdocs
Wherearetheeyes
Surveillance Detection and Mapping App
Stars: ✭ 212 (-83.89%)
Mutual labels:  surveillance
Acurustrack
A multi-object tracking component. Works in the conditions where identification and classical object trackers don't (e.g. shaky/unstable camera footage, occlusions, motion blur, covered faces, etc.). Works on any object despite their nature.
Stars: ✭ 196 (-85.11%)
Mutual labels:  surveillance
mkdocs-redirects
Open source plugin for Mkdocs page redirects
Stars: ✭ 90 (-93.16%)
Mutual labels:  mkdocs
navio2-docs
No description or website provided.
Stars: ✭ 36 (-97.26%)
Mutual labels:  mkdocs
Viseron
Self-hosted NVR with object detection
Stars: ✭ 192 (-85.41%)
Mutual labels:  surveillance
Privacy Guides

Your central privacy and security resource to protect yourself online.

About

Privacy Guides is a socially motivated website that provides information for protecting your data security and privacy. We are a non-profit collective operated entirely by volunteer team members and contributors.

Our current list of team members can be found here. Additionally, many people have made contributions to the project, and you can too!

Contributing

Mirrors

GitHub Gitea GitLab Codeberg SourceHut

Developing

Committing to this repository requires signing your commits (git config commit.gpgsign true) unless you are making edits via the GitHub.com text editor interface. As of August 2022 the preferred signing method is SSH commit signatures, but GPG signing is also acceptable. You should add your signing key to your GitHub profile.

This website uses mkdocs-material-insiders which offers additional functionality over the open-source mkdocs-material project. For obvious reasons we cannot distribute access to the insiders repository. You can install the website locally with the open-source version of mkdocs-material:

  1. Clone this repository:
    • git clone https://github.com/privacyguides/privacyguides.org.git (then cd privacyguides.org)
    • git submodule init
    • git submodule update docs/assets/brand
    • git config gpg.ssh.allowedSignersFile .allowed_signers
  2. Install Python 3.6+ (currently only tested with 3.10)
  3. Install dependencies: pip install mkdocs mkdocs-material mkdocs-static-i18n mkdocs-macros-plugin typing-extensions
  4. Serve the site locally: mkdocs serve
    • The site will be available at http://localhost:8000
    • You can build the site locally with mkdocs build
    • Your local version of the site may be missing functionality, which is expected. If you are submitting a PR, please ensure the automatic preview generated for your PR looks correct, as that site will be built with the production insiders build.

Team members should clone the repository with mkdocs-material-insiders directly. This method is identical to production:

  1. Clone this repository and submodules: git clone --recurse-submodules https://github.com/privacyguides/privacyguides.org.git
  2. Enable SSH commit verification with our local .allowed_signers file: git config gpg.ssh.allowedSignersFile .allowed_signers
  3. Install Python 3.10
  4. Install pipenv: pip install pipenv
  5. Install dependencies: pipenv install --dev (install Pillow and CairoSVG as well to generate social cards)
  6. Serve the site locally: pipenv run mkdocs serve --config-file mkdocs.production.yml (set CARDS=true to generate social cards)
    • The site will be available at http://localhost:8000
    • You can build the site locally with pipenv run mkdocs build
    • This version of the site should be identical to the live, production version

If you commit to main with commits signed with your SSH key, you should add your SSH key to .allowed_signers in this repo.

Releasing

  1. Create a new tag: git tag -s v2.X.X -m 'Some message'
    • View existing tags
    • Tag numbering: Increment the MINOR (2nd) number when making significant changes (adding/deleting pages, etc.), increment the PATCH (3rd) number when making minor changes (typos, bug fixes). Probably leave the MAJOR number at 2 until a massive revamp (v1 -> v2 was the Jekyll to MkDocs transition).
    • Consider enabling GPG tag signing by default (git config tag.gpgSign true) to avoid missing signatures
  2. Push the tag to GitHub: git push --tags
  3. A GitHub Release will be automatically created and deployed to the live site.
    • You may wish to manually check or edit the release changelog/title after it is published for accuracy.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].