From 36e27c7d11e60ca0f6eab793c2cddd2bdf1ce8cb Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Tue, 10 Jun 2025 13:43:11 -0600 Subject: [PATCH] docs: Update contributors list (#3056) --- .all-contributorsrc | 148 +++++++++++++++--- .devcontainer/devcontainer.json | 6 +- Dockerfile | 17 ++- README.md | 259 +++++++++++++++++--------------- includes/contributors.md | 251 ++++++++++++++++--------------- 5 files changed, 423 insertions(+), 258 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 4eb4a4e6..7b510b92 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -250,6 +250,45 @@ "ideas" ] }, + { + "login": "jordan-warne", + "name": "jordan warne", + "avatar_url": "https://avatars.githubusercontent.com/u/154663344?v=4", + "profile": "https://jordanwarne.net/", + "contributions": [ + "doc", + "video", + "research", + "ideas", + "question", + "promotion" + ] + }, + { + "login": "EmAtPrivacyGuides", + "name": "Em", + "avatar_url": "https://avatars.githubusercontent.com/u/194856901?v=4", + "profile": "https://github.com/EmAtPrivacyGuides", + "contributions": [ + "blog", + "promotion", + "ideas" + ] + }, + { + "login": "kpham42", + "name": "Kevin Pham", + "avatar_url": "https://avatars.githubusercontent.com/u/123699355?v=4", + "profile": "https://github.com/kpham42", + "contributions": [ + "blog", + "promotion", + "question", + "research", + "ideas", + "doc" + ] + }, { "login": "actions", "name": "GitHub Actions", @@ -1955,15 +1994,6 @@ "doc" ] }, - { - "login": "aghorler", - "name": "Aaron Horler", - "avatar_url": "https://avatars.githubusercontent.com/u/13065365?v=4", - "profile": "https://aaronhorler.com/", - "contributions": [ - "doc" - ] - }, { "login": "Commenter25", "name": "Commenter", @@ -2767,15 +2797,6 @@ "translation" ] }, - { - "login": "jordan-warne", - "name": "jordan warne", - "avatar_url": "https://avatars.githubusercontent.com/u/154663344?v=4", - "profile": "https://jordanwarne.net/", - "contributions": [ - "doc" - ] - }, { "login": "dzenan", "name": "DΕΎenan", @@ -3006,6 +3027,97 @@ "maintenance", "security" ] + }, + { + "login": "austinhuang0131", + "name": "Austin Huang", + "avatar_url": "https://avatars.githubusercontent.com/u/16656689?v=4", + "profile": "https://austinhuang.me/", + "contributions": [ + "doc", + "question" + ] + }, + { + "login": "WardPearce", + "name": "Ward", + "avatar_url": "https://avatars.githubusercontent.com/u/27844174?v=4", + "profile": "https://github.com/WardPearce", + "contributions": [ + "doc" + ] + }, + { + "login": "oilmaint", + "name": "oilmaint", + "avatar_url": "https://avatars.githubusercontent.com/u/79659024?v=4", + "profile": "https://github.com/oilmaint", + "contributions": [ + "doc" + ] + }, + { + "login": "headdirt", + "name": "headdirt", + "avatar_url": "https://avatars.githubusercontent.com/u/37009392?v=4", + "profile": "https://github.com/headdirt", + "contributions": [ + "doc" + ] + }, + { + "login": "qmcree", + "name": "Quentin McRee", + "avatar_url": "https://avatars.githubusercontent.com/u/7796024?v=4", + "profile": "https://github.com/qmcree", + "contributions": [ + "doc" + ] + }, + { + "login": "sv3nnie", + "name": "Sven", + "avatar_url": "https://avatars.githubusercontent.com/u/67653224?v=4", + "profile": "https://github.com/sv3nnie", + "contributions": [ + "doc" + ] + }, + { + "login": "tomhonour", + "name": "Tom Honour", + "avatar_url": "https://avatars.githubusercontent.com/u/132141431?v=4", + "profile": "https://git.sr.ht/~tomhonour/", + "contributions": [ + "doc" + ] + }, + { + "login": "brog-io", + "name": "Brogio", + "avatar_url": "https://avatars.githubusercontent.com/u/141176104?v=4", + "profile": "https://brog.io/", + "contributions": [ + "doc" + ] + }, + { + "login": "nathany", + "name": "Nathan Youngman", + "avatar_url": "https://avatars.githubusercontent.com/u/4566?v=4", + "profile": "https://nathany.com/", + "contributions": [ + "doc" + ] + }, + { + "login": "blanchardjeremy", + "name": "Jeremy", + "avatar_url": "https://avatars.githubusercontent.com/u/32290?v=4", + "profile": "https://github.com/blanchardjeremy", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 5, diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2c128ea7..1e18b550 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,11 @@ // For format details, see https://aka.ms/devcontainer.json. { "name": "Privacy Guides", - "image": "ghcr.io/privacyguides/privacyguides.org:sha-750239d", + "image": "ghcr.io/privacyguides/privacyguides.org:sha-55c050b", + // "build": { + // "dockerfile": "../Dockerfile", + // "context": ".." + // }, "overrideCommand": true, "portsAttributes": { "1337": { diff --git a/Dockerfile b/Dockerfile index 1d844b91..ce086535 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-bookworm AS base +FROM python:3.12-slim-bookworm AS base LABEL org.opencontainers.image.source="https://github.com/privacyguides/privacyguides.org" @@ -33,6 +33,18 @@ COPY Pipfile.lock . # Install all Python dependencies into a project‐local virtual environment at /.venv RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy +#################################################### +# Stage: nodejs-deps +# Install nodejs/npm and compilation dependencies +#################################################### +FROM node:24-bookworm-slim AS nodejs-deps + +RUN npm i -g all-contributors-cli +RUN npm install -g pkg + +RUN cd /usr/local/lib/node_modules/all-contributors-cli && \ + pkg dist/cli.js -t node18-linux -o /usr/local/bin/all-contributors-cli + #################################################### # Stage: runtime # Install runtime dependencies and copy runtime artifacts @@ -60,6 +72,9 @@ RUN apt-get update && \ COPY --from=python-deps /.venv /.venv COPY --from=python-deps /modules/mkdocs-material /modules/mkdocs-material +# Copy all-contributors-cli from nodejs-deps stage +COPY --from=nodejs-deps /usr/local/bin/all-contributors-cli /usr/local/bin/all-contributors-cli + # Ensure the virtual environment’s bin directory is first in PATH ENV PATH="/.venv/bin:$PATH" diff --git a/README.md b/README.md index e7f81258..74b6fc5a 100644 --- a/README.md +++ b/README.md @@ -156,429 +156,446 @@ Privacy Guides wouldn't be possible without these wonderful people ([emoji key](
matchboxbananasynergy

πŸ“– πŸ”¬ πŸ€” πŸ‘€ πŸ“
fria

πŸ“– πŸ‘€ πŸ”¬ πŸ’¬ πŸ› πŸ€” +
jordan warne

πŸ“– πŸ“Ή πŸ”¬ πŸ€” πŸ’¬ πŸ“£ +
Em

πŸ“ πŸ“£ πŸ€” +
Kevin Pham

πŸ“ πŸ“£ πŸ’¬ πŸ”¬ πŸ€” πŸ“– + +
GitHub Actions

πŸš‡
Triplebit

πŸš‡
MAGIC Grants

πŸ’Ό - -
Netlify

πŸš‡
Dependabot

πŸ’» πŸš‡ + +
Hetzner Cloud

πŸš‡
Cloudflare

πŸš‡
Open Collective

πŸ’Ό - -
Safing

πŸ’΅
Dan Arel

πŸ“ πŸ“– πŸ”¬ + +
Techlore

πŸ’΅
elitejake

πŸ“–
samsepi0l

πŸ“– - -
rollsicecream

πŸ“– πŸ’¬ 🌍 πŸ‘€
Henry Fisher

πŸ“– + +
Nate Bartram

πŸ“
Sam Howell

πŸ“
asddsaz

πŸ“– - -
Hugo Costa

πŸ“–
C-O-M-P-A-R-T-M-E-N-T-A-L-I-Z-A-T-I-O-N

πŸ“– + +
Alberto Strappazzon

πŸ“–
Victorhck

πŸ“–
Tai Lam

πŸ“– 🚧 - -
NinebitX

πŸ“–
Alexander Antukh

πŸ“– + +
Gusted

πŸ“–
redoomed1

πŸ‘€ πŸ“–
Offpics

πŸ“– - -
kimg45

πŸ“–
djoate

πŸ“– + +
afighttilldeath

πŸ“–
Paul Verbeke

πŸ“– 🌍 πŸ› πŸ§‘β€πŸ«
Mitchell Cash

πŸ“– - -
NeverDucky

πŸ“–
efb4f5ff-1298-471a-8973-3d47447115dc

πŸ“– + +
Stephen Karl Larroque

πŸ“–
0rdinant

πŸ“–
Zenithium

πŸ“– - -
Jordan Gwyn

πŸ“–
Guru

πŸ“– + +
datoshkr

πŸ“–
Kcchouette

πŸ“–
Jacob Neplokh

πŸ“– - -
Leonardo Mazzon

πŸ“– πŸ› πŸ’΅ πŸ“£ πŸ’¬ 🌍
Andrew Chong

πŸ“– + +
Wok

πŸ“–
nopeitsnothing

πŸ“–
Lynn Stephenson

πŸ“– - -
Cory Solovewicz

πŸ“–
noClaps

πŸ“– + +
Brian

πŸ“–
SkewedZeppelin

πŸ“– πŸ’¬
Arcadius3D

πŸ“– - -
vpnarea

πŸ“–
namazso

πŸ“– πŸ’¬ + +
cYDN48

πŸ“–
gjhklfdsa

πŸ“–
Pavel Zolotarevskiy

πŸ“– - -
quiddity-wp

πŸ“–
Nikhil Jha

πŸ“– + +
Subatomic Honda Civic

πŸ“–
ticklemyIP

πŸ“–
jermanuts

πŸ“– - -
conorohiggins

πŸ“–
TechFanTheo

πŸ“– + +
Ryan Taylor

πŸ“–
Positron832

πŸ“–
JustLuckNoSkill

πŸ“– - -
Arkadiy

πŸ“–
Jack Chou

πŸ“– + +
ave

πŸ“–
Boo

πŸ“–
IDKwhattoputhere

πŸ“– - -
idkrn

πŸ“–
ggg27

πŸ“– + +
WalterKlosse

πŸ“–
Tom Hacohen

πŸ“–
Paul Feuvraux

πŸ“– - -
Scott Bennett

πŸ“–
Federico Ariel Castagnini

πŸ“– + +
jslawler-gh

πŸ“–
spaceoden

πŸ“–
xe3

πŸ“– - -
Andrew Morgan

πŸ“–
Caleb King

πŸ“– + +
Eduardo

πŸ“–
NafeezJS

πŸ“–
Sloofy

πŸ“– - -
Sam Schlinkert

πŸ“–
Gabor Luk

πŸ“– + +
DeiAsPie

πŸ“–
Davide Taviani

πŸ“–
spanishharlem

πŸ“– - -
Jacob Gonzales

πŸ“–
Kaede

πŸ“– + +
LABB

πŸ“–
Raviu8

πŸ“–
Peter Dave Hello

πŸ“– - -
Rose

πŸ“–
Oskar Sharipov

πŸ“– + +
Samuel Lucas

πŸ“–
NylaTheWolf

πŸ“–
Matthew Davis

πŸ“– - -
Mark Cohen

πŸ“–
Mad Scientist

πŸ“– + +
Maarten

πŸ“–
William Davis

πŸ“–
William Thomas Wilkins

πŸ“– - -
wylel

πŸ“–
Will Browning

πŸ“– + +
Yi Cao

πŸ“–
Yusuf Daglioglu

πŸ“–
Zack

πŸ“– - -
ZHηŽ‹

πŸ“–
ansuz

πŸ“– + +
archeite

πŸ“–
asdfghjz

πŸ“–
ayaen

πŸ“– - -
b-harper

πŸ“–
Loic Vourch

πŸ“– + +
crasm

πŸ“–
eagerto-learn

πŸ“–
egecelikci

πŸ“– - -
elleybean

πŸ“–
Evan Song

πŸ“– + +
pynixis

πŸ“–
Seirdy

πŸ“–
Ryan Huang

πŸ“– - -
Sascha P.

πŸ“–
Securified

πŸ“– + +
Sergey Musiyenko

πŸ“–
Spydar007

πŸ“–
Steven Bach

πŸ“– - -
Steven Lehn

πŸ“–
Steven van de Graaf

πŸ“– + +
Sven Kortekaas

πŸ“–
Tejas Gupta

πŸ“–
Tebowy Seba

πŸ“– - -
Ted Gravlin

πŸ“–
TheFrenchGhosty

πŸ“– + +
TheNoobWar

πŸ“–
Thomas Rientjes

πŸ“–
Tim Vergenz

πŸ“– - -
Tom Sullivan

πŸ“–
Tony Tan

πŸ“– + +
TroubleDog54

πŸ“–
User486375

πŸ“–
Nicholas Christensen

πŸ“– - -
oppressor1761

πŸ“–
pbbob

πŸ“– + +
pdjpdjpdj

πŸ“–
Stella Polaris

πŸ“– πŸ”¬ πŸ“£ πŸ’¬ πŸ‘€
regaldude

πŸ“– - -
rusty-snake

πŸ“–
sacha

πŸ“– + +
schwukas

πŸ“–
sh-dv

πŸ“–
szTheory

πŸ“– - -
Thunderbolt Digital

πŸ“–
E. S. Leonesco

πŸ“– + +
titanism

πŸ“–
tomac4t

πŸ“–
virustotalop

πŸ“– - -
wintr

πŸ“–
xelarate86

πŸ“– + +
yeoneer

πŸ“–
foxt

πŸ“–
Freddie

πŸ“– - -
ghbjklhv

πŸ“–
Raymond Hill

πŸ“– + +
luke crouch

πŸ“–
fd1f744993de14178e6c

πŸ“–
habitualname

πŸ“– - -
hook

πŸ“–
nein

πŸ“– + +
jkhgvfgvsth

πŸ“–
joaonsg

πŸ“–
johnnyburnaway

πŸ“– - -
jus9

πŸ“–
kc1212

πŸ“– + +
kryptish

πŸ“–
m3t

πŸ“–
macau23

πŸ“– - -
mat1th

πŸ“–
MWM

πŸ“– -
Michael Plews

πŸ“– -
moritztk

πŸ“– -
Aaron Horler

πŸ“– +
Michael Plews

πŸ“– +
moritztk

πŸ“–
Commenter

πŸ“–
CΓ©dric Laubacher

πŸ“–
Daniel Peukert

πŸ“– -
David Breese

πŸ“– -
Dimitris Apostolou

πŸ“– +
David Breese

πŸ“– +
Dimitris Apostolou

πŸ“–
Dyrimon

πŸ“–
Ikel Atomig

πŸ“–
Elias Ojala

πŸ“– -
Feni Brian

πŸ“– -
Filip Ε 

πŸ“– +
Feni Brian

πŸ“– +
Filip Ε 

πŸ“–
Felix Albroscheit

πŸ“–
GReagle

πŸ“–
Gamma

πŸ“– -
GetBoz

πŸ“– -
GrimPixel

πŸ“– +
GetBoz

πŸ“– +
GrimPixel

πŸ“–
Guillem L. Jara

πŸ“–
HxxxxxS

πŸ“–
Himanshu Chandola

πŸ“– -
Issam Maghni

πŸ“– -
ItsDonny

πŸ“– +
Issam Maghni

πŸ“– +
ItsDonny

πŸ“–
Abdullah Atta

πŸ“–
Adam Sroka

πŸ“–
criadoperez

πŸ“– -
Alex Amiryan

πŸ“– -
Alex Shoup

πŸ“– +
Alex Amiryan

πŸ“– +
Alex Shoup

πŸ“–
Alex Thomassen

πŸ“–
Amolith

πŸ“–
Andrea Scarpino

πŸ“– -
Armando LΓΌscher

πŸ“– -
Ash T

πŸ“– +
Armando LΓΌscher

πŸ“– +
Ash T

πŸ“–
Bernd Eichelberger

πŸ“–
BionicBison05

πŸ“–
Brent Gervais

πŸ“– -
Brian Cooper

πŸ“– -
Caboose700

πŸ“– +
Brian Cooper

πŸ“– +
Caboose700

πŸ“–
Cadel Watson

πŸ“–
trosel

πŸ“–
Carl

πŸ“– -
Chad Birch

πŸ“– -
Chris Barry

πŸ“– +
Chad Birch

πŸ“– +
Chris Barry

πŸ“–
JΓΊlio Ferraz

πŸ“–
Jack Hill

πŸ“–
Mathias Oterhals Myklebust

πŸ“– -
Mats Estensen

πŸ“– -
Matt Baer

πŸ“– +
Mats Estensen

πŸ“– +
Matt Baer

πŸ“–
Mehdi Chaouch

πŸ“–
Mike Perrone

πŸ“–
Mitch Wilkins

πŸ“– -
Mo

πŸ“– -
Morten Linderud

πŸ“– +
Mo

πŸ“– +
Morten Linderud

πŸ“–
natzim

πŸ“–
Douglas

πŸ“–
Nick

πŸ“– -
NielDB

πŸ“– -
Nihal Raj

πŸ“– +
NielDB

πŸ“– +
Nihal Raj

πŸ“–
Noah

πŸ“–
Panagiotis "Ivory" Vasilopoulos

πŸ“–
Patrick R

πŸ“– -
Fart Attorney

πŸ“– -
Pilou

πŸ“– +
Fart Attorney

πŸ“– +
Pilou

πŸ“–
PoorPockets McNewHold

πŸ“– 🌍
PrinceKael

πŸ“–
Richard

πŸ“– -
Jaden Site

πŸ“– -
Jake Zeal

πŸ“– +
Jaden Site

πŸ“– +
Jake Zeal

πŸ“–
James Kerrane

πŸ“–
Sell

πŸ“–
YMHuang

πŸ“– -
Jonathan Vansina

πŸ“– -
jorgeluiscarrillo

πŸ“– +
Jonathan Vansina

πŸ“– +
jorgeluiscarrillo

πŸ“–
Julian

πŸ“–
Kefaku

πŸ“–
Kevin Brennan

πŸ“– -
Kyle Spearrin

πŸ“– -
Leon Allen

πŸ“– +
Kyle Spearrin

πŸ“– +
Leon Allen

πŸ“–
LisaWilbourn

πŸ“–
Lord Shedy

πŸ“–
Louis Wolfers

πŸ“– -
Lunush

πŸ“– -
MMR

πŸ“– +
Lunush

πŸ“– +
MMR

πŸ“–
Mads Peter Rommedahl

πŸ“–
Manuel Quarneti

πŸ“–
Marco Menzel

πŸ“– -
Mario

πŸ“– -
skye

πŸ’¬ +
Mario

πŸ“– +
skye

πŸ’¬
r2fo

🌍
LamTrinh.Dev

πŸ“– πŸ› πŸ’¬
frostlike

πŸ’¬ -
Merlin Scholz

🌍 -
jordan warne

πŸ“– +
Merlin Scholz

🌍
DΕΎenan

🌍
jx tsai

🌍
backstab5983

πŸ“–
antgig

πŸ“– -
Ákos NikhÑzy

πŸ“– +
Ákos NikhÑzy

πŸ“–
Francois Marier

πŸ“–
5-tom

πŸ“–
Ralphie0511

πŸ“–
aleksejs1

πŸ“– -
Martin

πŸ“– +
Martin

πŸ“–
Overwatch

πŸ“–
Kieran Colfer

πŸ“–
Triple T

πŸ“–
IDON-TEXIST

πŸ“– -
Yusuf Daglioglu

πŸ“– +
Yusuf Daglioglu

πŸ“–
Yi Cao

πŸ“–
Sayf Dhū al-Faqār

πŸ“–
eylenburg

πŸ“–
Kieran Colfer

πŸ“– -
Justin Ehrenhofer

πŸ“– πŸ’Ό πŸ” +
Justin Ehrenhofer

πŸ“– πŸ’Ό πŸ”
Alex Bruch

🌍
qiyongzheng

πŸ“–
Sam K

πŸ“– πŸ“£ πŸ’¬
Spirizer

🌍 + +
jordbm

πŸ“– 🚧 πŸ›‘οΈ +
Austin Huang

πŸ“– πŸ’¬ +
Ward

πŸ“– +
oilmaint

πŸ“– +
headdirt

πŸ“– + + +
Quentin McRee

πŸ“– +
Sven

πŸ“– +
Tom Honour

πŸ“– +
Brogio

πŸ“– +
Nathan Youngman

πŸ“– + + +
Jeremy

πŸ“– @@ -602,17 +619,17 @@ This project follows the [all-contributors](https://github.com/all-contributors/ CLI to generate this table: ```bash -npx --package all-contributors-cli -- npx all-contributors generate +all-contributors-cli generate ``` CLI to add a contributor: ```bash -npx --package all-contributors-cli -- npx all-contributors add +all-contributors-cli add ``` -See [this table](https://allcontributors.org/docs/en/emoji-key) for valid contribution reasons, comma-separated. Do **not** use the `content` code for contributors to the website, use `docs` instead (this way it will automatically link to their commits). Example: +See [this table](https://allcontributors.org/docs/en/emoji-key) for valid contribution reasons, comma-separated. Do **not** use the `content` code for contributors to the website, use `doc` instead (this way it will automatically link to their commits). Example: ```bash -npx --package all-contributors-cli -- npx all-contributors add jonaharagon docs,research,question +all-contributors-cli add jonaharagon doc,research,question ``` diff --git a/includes/contributors.md b/includes/contributors.md index f4d3cf98..40497145 100644 --- a/includes/contributors.md +++ b/includes/contributors.md @@ -29,429 +29,446 @@
matchboxbananasynergy

πŸ“– πŸ”¬ πŸ€” πŸ‘€ πŸ“
fria

πŸ“– πŸ‘€ πŸ”¬ πŸ’¬ πŸ› πŸ€” +
jordan warne

πŸ“– πŸ“Ή πŸ”¬ πŸ€” πŸ’¬ πŸ“£ +
Em

πŸ“ πŸ“£ πŸ€” +
Kevin Pham

πŸ“ πŸ“£ πŸ’¬ πŸ”¬ πŸ€” πŸ“– + +
GitHub Actions

πŸš‡
Triplebit

πŸš‡
MAGIC Grants

πŸ’Ό - -
Netlify

πŸš‡
Dependabot

πŸ’» πŸš‡ + +
Hetzner Cloud

πŸš‡
Cloudflare

πŸš‡
Open Collective

πŸ’Ό - -
Safing

πŸ’΅
Dan Arel

πŸ“ πŸ“– πŸ”¬ + +
Techlore

πŸ’΅
elitejake

πŸ“–
samsepi0l

πŸ“– - -
rollsicecream

πŸ“– πŸ’¬ 🌍 πŸ‘€
Henry Fisher

πŸ“– + +
Nate Bartram

πŸ“
Sam Howell

πŸ“
asddsaz

πŸ“– - -
Hugo Costa

πŸ“–
C-O-M-P-A-R-T-M-E-N-T-A-L-I-Z-A-T-I-O-N

πŸ“– + +
Alberto Strappazzon

πŸ“–
Victorhck

πŸ“–
Tai Lam

πŸ“– 🚧 - -
NinebitX

πŸ“–
Alexander Antukh

πŸ“– + +
Gusted

πŸ“–
redoomed1

πŸ‘€ πŸ“–
Offpics

πŸ“– - -
kimg45

πŸ“–
djoate

πŸ“– + +
afighttilldeath

πŸ“–
Paul Verbeke

πŸ“– 🌍 πŸ› πŸ§‘β€πŸ«
Mitchell Cash

πŸ“– - -
NeverDucky

πŸ“–
efb4f5ff-1298-471a-8973-3d47447115dc

πŸ“– + +
Stephen Karl Larroque

πŸ“–
0rdinant

πŸ“–
Zenithium

πŸ“– - -
Jordan Gwyn

πŸ“–
Guru

πŸ“– + +
datoshkr

πŸ“–
Kcchouette

πŸ“–
Jacob Neplokh

πŸ“– - -
Leonardo Mazzon

πŸ“– πŸ› πŸ’΅ πŸ“£ πŸ’¬ 🌍
Andrew Chong

πŸ“– + +
Wok

πŸ“–
nopeitsnothing

πŸ“–
Lynn Stephenson

πŸ“– - -
Cory Solovewicz

πŸ“–
noClaps

πŸ“– + +
Brian

πŸ“–
SkewedZeppelin

πŸ“– πŸ’¬
Arcadius3D

πŸ“– - -
vpnarea

πŸ“–
namazso

πŸ“– πŸ’¬ + +
cYDN48

πŸ“–
gjhklfdsa

πŸ“–
Pavel Zolotarevskiy

πŸ“– - -
quiddity-wp

πŸ“–
Nikhil Jha

πŸ“– + +
Subatomic Honda Civic

πŸ“–
ticklemyIP

πŸ“–
jermanuts

πŸ“– - -
conorohiggins

πŸ“–
TechFanTheo

πŸ“– + +
Ryan Taylor

πŸ“–
Positron832

πŸ“–
JustLuckNoSkill

πŸ“– - -
Arkadiy

πŸ“–
Jack Chou

πŸ“– + +
ave

πŸ“–
Boo

πŸ“–
IDKwhattoputhere

πŸ“– - -
idkrn

πŸ“–
ggg27

πŸ“– + +
WalterKlosse

πŸ“–
Tom Hacohen

πŸ“–
Paul Feuvraux

πŸ“– - -
Scott Bennett

πŸ“–
Federico Ariel Castagnini

πŸ“– + +
jslawler-gh

πŸ“–
spaceoden

πŸ“–
xe3

πŸ“– - -
Andrew Morgan

πŸ“–
Caleb King

πŸ“– + +
Eduardo

πŸ“–
NafeezJS

πŸ“–
Sloofy

πŸ“– - -
Sam Schlinkert

πŸ“–
Gabor Luk

πŸ“– + +
DeiAsPie

πŸ“–
Davide Taviani

πŸ“–
spanishharlem

πŸ“– - -
Jacob Gonzales

πŸ“–
Kaede

πŸ“– + +
LABB

πŸ“–
Raviu8

πŸ“–
Peter Dave Hello

πŸ“– - -
Rose

πŸ“–
Oskar Sharipov

πŸ“– + +
Samuel Lucas

πŸ“–
NylaTheWolf

πŸ“–
Matthew Davis

πŸ“– - -
Mark Cohen

πŸ“–
Mad Scientist

πŸ“– + +
Maarten

πŸ“–
William Davis

πŸ“–
William Thomas Wilkins

πŸ“– - -
wylel

πŸ“–
Will Browning

πŸ“– + +
Yi Cao

πŸ“–
Yusuf Daglioglu

πŸ“–
Zack

πŸ“– - -
ZHηŽ‹

πŸ“–
ansuz

πŸ“– + +
archeite

πŸ“–
asdfghjz

πŸ“–
ayaen

πŸ“– - -
b-harper

πŸ“–
Loic Vourch

πŸ“– + +
crasm

πŸ“–
eagerto-learn

πŸ“–
egecelikci

πŸ“– - -
elleybean

πŸ“–
Evan Song

πŸ“– + +
pynixis

πŸ“–
Seirdy

πŸ“–
Ryan Huang

πŸ“– - -
Sascha P.

πŸ“–
Securified

πŸ“– + +
Sergey Musiyenko

πŸ“–
Spydar007

πŸ“–
Steven Bach

πŸ“– - -
Steven Lehn

πŸ“–
Steven van de Graaf

πŸ“– + +
Sven Kortekaas

πŸ“–
Tejas Gupta

πŸ“–
Tebowy Seba

πŸ“– - -
Ted Gravlin

πŸ“–
TheFrenchGhosty

πŸ“– + +
TheNoobWar

πŸ“–
Thomas Rientjes

πŸ“–
Tim Vergenz

πŸ“– - -
Tom Sullivan

πŸ“–
Tony Tan

πŸ“– + +
TroubleDog54

πŸ“–
User486375

πŸ“–
Nicholas Christensen

πŸ“– - -
oppressor1761

πŸ“–
pbbob

πŸ“– + +
pdjpdjpdj

πŸ“–
Stella Polaris

πŸ“– πŸ”¬ πŸ“£ πŸ’¬ πŸ‘€
regaldude

πŸ“– - -
rusty-snake

πŸ“–
sacha

πŸ“– + +
schwukas

πŸ“–
sh-dv

πŸ“–
szTheory

πŸ“– - -
Thunderbolt Digital

πŸ“–
E. S. Leonesco

πŸ“– + +
titanism

πŸ“–
tomac4t

πŸ“–
virustotalop

πŸ“– - -
wintr

πŸ“–
xelarate86

πŸ“– + +
yeoneer

πŸ“–
foxt

πŸ“–
Freddie

πŸ“– - -
ghbjklhv

πŸ“–
Raymond Hill

πŸ“– + +
luke crouch

πŸ“–
fd1f744993de14178e6c

πŸ“–
habitualname

πŸ“– - -
hook

πŸ“–
nein

πŸ“– + +
jkhgvfgvsth

πŸ“–
joaonsg

πŸ“–
johnnyburnaway

πŸ“– - -
jus9

πŸ“–
kc1212

πŸ“– + +
kryptish

πŸ“–
m3t

πŸ“–
macau23

πŸ“– - -
mat1th

πŸ“–
MWM

πŸ“– -
Michael Plews

πŸ“– -
moritztk

πŸ“– -
Aaron Horler

πŸ“– +
Michael Plews

πŸ“– +
moritztk

πŸ“–
Commenter

πŸ“–
CΓ©dric Laubacher

πŸ“–
Daniel Peukert

πŸ“– -
David Breese

πŸ“– -
Dimitris Apostolou

πŸ“– +
David Breese

πŸ“– +
Dimitris Apostolou

πŸ“–
Dyrimon

πŸ“–
Ikel Atomig

πŸ“–
Elias Ojala

πŸ“– -
Feni Brian

πŸ“– -
Filip Ε 

πŸ“– +
Feni Brian

πŸ“– +
Filip Ε 

πŸ“–
Felix Albroscheit

πŸ“–
GReagle

πŸ“–
Gamma

πŸ“– -
GetBoz

πŸ“– -
GrimPixel

πŸ“– +
GetBoz

πŸ“– +
GrimPixel

πŸ“–
Guillem L. Jara

πŸ“–
HxxxxxS

πŸ“–
Himanshu Chandola

πŸ“– -
Issam Maghni

πŸ“– -
ItsDonny

πŸ“– +
Issam Maghni

πŸ“– +
ItsDonny

πŸ“–
Abdullah Atta

πŸ“–
Adam Sroka

πŸ“–
criadoperez

πŸ“– -
Alex Amiryan

πŸ“– -
Alex Shoup

πŸ“– +
Alex Amiryan

πŸ“– +
Alex Shoup

πŸ“–
Alex Thomassen

πŸ“–
Amolith

πŸ“–
Andrea Scarpino

πŸ“– -
Armando LΓΌscher

πŸ“– -
Ash T

πŸ“– +
Armando LΓΌscher

πŸ“– +
Ash T

πŸ“–
Bernd Eichelberger

πŸ“–
BionicBison05

πŸ“–
Brent Gervais

πŸ“– -
Brian Cooper

πŸ“– -
Caboose700

πŸ“– +
Brian Cooper

πŸ“– +
Caboose700

πŸ“–
Cadel Watson

πŸ“–
trosel

πŸ“–
Carl

πŸ“– -
Chad Birch

πŸ“– -
Chris Barry

πŸ“– +
Chad Birch

πŸ“– +
Chris Barry

πŸ“–
JΓΊlio Ferraz

πŸ“–
Jack Hill

πŸ“–
Mathias Oterhals Myklebust

πŸ“– -
Mats Estensen

πŸ“– -
Matt Baer

πŸ“– +
Mats Estensen

πŸ“– +
Matt Baer

πŸ“–
Mehdi Chaouch

πŸ“–
Mike Perrone

πŸ“–
Mitch Wilkins

πŸ“– -
Mo

πŸ“– -
Morten Linderud

πŸ“– +
Mo

πŸ“– +
Morten Linderud

πŸ“–
natzim

πŸ“–
Douglas

πŸ“–
Nick

πŸ“– -
NielDB

πŸ“– -
Nihal Raj

πŸ“– +
NielDB

πŸ“– +
Nihal Raj

πŸ“–
Noah

πŸ“–
Panagiotis "Ivory" Vasilopoulos

πŸ“–
Patrick R

πŸ“– -
Fart Attorney

πŸ“– -
Pilou

πŸ“– +
Fart Attorney

πŸ“– +
Pilou

πŸ“–
PoorPockets McNewHold

πŸ“– 🌍
PrinceKael

πŸ“–
Richard

πŸ“– -
Jaden Site

πŸ“– -
Jake Zeal

πŸ“– +
Jaden Site

πŸ“– +
Jake Zeal

πŸ“–
James Kerrane

πŸ“–
Sell

πŸ“–
YMHuang

πŸ“– -
Jonathan Vansina

πŸ“– -
jorgeluiscarrillo

πŸ“– +
Jonathan Vansina

πŸ“– +
jorgeluiscarrillo

πŸ“–
Julian

πŸ“–
Kefaku

πŸ“–
Kevin Brennan

πŸ“– -
Kyle Spearrin

πŸ“– -
Leon Allen

πŸ“– +
Kyle Spearrin

πŸ“– +
Leon Allen

πŸ“–
LisaWilbourn

πŸ“–
Lord Shedy

πŸ“–
Louis Wolfers

πŸ“– -
Lunush

πŸ“– -
MMR

πŸ“– +
Lunush

πŸ“– +
MMR

πŸ“–
Mads Peter Rommedahl

πŸ“–
Manuel Quarneti

πŸ“–
Marco Menzel

πŸ“– -
Mario

πŸ“– -
skye

πŸ’¬ +
Mario

πŸ“– +
skye

πŸ’¬
r2fo

🌍
LamTrinh.Dev

πŸ“– πŸ› πŸ’¬
frostlike

πŸ’¬ -
Merlin Scholz

🌍 -
jordan warne

πŸ“– +
Merlin Scholz

🌍
DΕΎenan

🌍
jx tsai

🌍
backstab5983

πŸ“–
antgig

πŸ“– -
Ákos NikhÑzy

πŸ“– +
Ákos NikhÑzy

πŸ“–
Francois Marier

πŸ“–
5-tom

πŸ“–
Ralphie0511

πŸ“–
aleksejs1

πŸ“– -
Martin

πŸ“– +
Martin

πŸ“–
Overwatch

πŸ“–
Kieran Colfer

πŸ“–
Triple T

πŸ“–
IDON-TEXIST

πŸ“– -
Yusuf Daglioglu

πŸ“– +
Yusuf Daglioglu

πŸ“–
Yi Cao

πŸ“–
Sayf Dhū al-Faqār

πŸ“–
eylenburg

πŸ“–
Kieran Colfer

πŸ“– -
Justin Ehrenhofer

πŸ“– πŸ’Ό πŸ” +
Justin Ehrenhofer

πŸ“– πŸ’Ό πŸ”
Alex Bruch

🌍
qiyongzheng

πŸ“–
Sam K

πŸ“– πŸ“£ πŸ’¬
Spirizer

🌍 + +
jordbm

πŸ“– 🚧 πŸ›‘οΈ +
Austin Huang

πŸ“– πŸ’¬ +
Ward

πŸ“– +
oilmaint

πŸ“– +
headdirt

πŸ“– + + +
Quentin McRee

πŸ“– +
Sven

πŸ“– +
Tom Honour

πŸ“– +
Brogio

πŸ“– +
Nathan Youngman

πŸ“– + + +
Jeremy

πŸ“–