Skip to content

Instantly share code, notes, and snippets.

@thcipriani
Last active February 6, 2019 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thcipriani/265c2d585fdc501e610d8af0e7d89dee to your computer and use it in GitHub Desktop.
Save thcipriani/265c2d585fdc501e610d8af0e7d89dee to your computer and use it in GitHub Desktop.
Update all the github descriptions for WMF repos
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
update-wikimedia-repos.py
~~~~~~~~~
Update all Wikimedia repositories to point to the code mirror on gerrit.
Prompts for username and password as well as 2fa code. You will be prompted twice
for a 2fa code -- once for listing orgs, once for listing repos.
Requirements:
- github3.py (pip install github3.py -- https://pypi.python.org/pypi/github3.py)
- six (pip install six -- https://pypi.python.org/pypi/six)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import getpass
import github3
import six
GERRIT_MSG_FMT = (
'Github mirror of {} - our actual code is hosted with Gerrit '
'(please see https://www.mediawiki.org/wiki/Developer_access for '
'contributing)')
def get_userpass():
"""
Prompt for username, pass
"""
username = six.moves.input('Github username: ')
password = getpass.getpass('GitHub password for {0}: '.format(username))
return username, password
def get_two_factor():
"""
Prompt for 2fa
"""
return six.moves.input('Github 2fa code: ')
def needs_update(current_description):
"""
Determine if a github repo description needs to be updated.
"""
# No description
if current_description is None:
return True
# We don't mention a "mirror" in the description
return 'mirror' not in [s.lower for s in current_description.split()]
def gerrit_repo_name(repo_name):
"""
Format repo name as it appears in gerrit
"""
return '/'.join(repo_name.split('-'))
def main():
username, password = get_userpass()
g = github3.GitHub()
g.login(
username,
password,
two_factor_callback=get_two_factor
)
wikimedia_org = None
for org in g.iter_orgs():
if org.login == 'wikimedia':
wikimedia_org = org
for repo in wikimedia_org.iter_repos():
description = repo.description
if not needs_update(description):
continue
repo_name = gerrit_repo_name(repo.name)
new_description = GERRIT_MSG_FMT.format(repo_name)
if description:
new_description = '{} - {}'.format(
description.encode('utf8'), new_description)
# print('{}: {}'.format(repo.name, new_description))
repo.edit(repo.name, description=new_description)
if __name__ == '__main__':
main()
wikipedia-iphone: An obsolete version of the Wikipedia iPhone app. Please use the current version: - Github mirror of wikipedia/iphone - our actual code is hosted withGerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WiktionaryMobile: Wiktionary on Mobile! - Github mirror of WiktionaryMobile - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn: A GUI Visualization Toolkit - Github mirror of limn - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WLMMobile: DEPRECATED -- not for production use. - Github mirror of WLMMobile - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WikipediaMobileJ2ME: Wikipedia Mobile for J2ME - Github mirror of WikipediaMobileJ2ME - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery-tipsy: Facebook-style tooltips plugin for jQuery - Github mirror of jquery/tipsy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
incubator-cordova-js: Mirror of Apache Cordova js - Github mirror of incubator/cordova/js - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
incubator-cordova-android: Mirror of Apache Cordova Android - Github mirror of incubator/cordova/android - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
incubator-cordova-ios: Mirror of Apache Cordova iOS - Github mirror of incubator/cordova/ios - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery.i18n: jQuery based internationalization library - Github mirror of jquery.i18n - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery.webfonts: jQuery based Webfonts library - Github mirror of jquery.webfonts - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery.ime: jQuery based input methods library - Github mirror of jquery.ime - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery.uls: Universal Language Selector - Github mirror of jquery.uls - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-cdh: Puppet module for Hadoop and the rest of Cloudera's CDH 5. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. https://gerrit.wikimedia.org - Github mirror of puppet/cdh - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limnpy: A library for creating [limn](https://github.com/wikimedia/limn) compatible datasources and datafiles - Github mirror of limnpy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
sqoopy: Python CLI to generate custom sqoop import statements - Github mirror of sqoopy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WikisourceMobile: Github mirror of WikisourceMobile - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-kafka-0.7.2: A Puppet module for installing and managing Apache Kafka brokers. - Github mirror of puppet/kafka/0.7.2 - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki: The collaborative editing software that runs Wikipedia. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-EventLogging: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/EventLogging - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-Gadgets: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/Gadgets - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-MobileFrontend: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/MobileFrontend - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-SemanticMediaWiki: Mirror of SMW - Github mirror of mediawiki/extensions/SemanticMediaWiki - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-SyntaxHighlight_GeSHi: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/SyntaxHighlight_GeSHi - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-VisualEditor: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/VisualEditor - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
kraken-puppet: Puppet Repository for the WMF Kraken Analytics cluster. - Github mirror of kraken/puppet - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-storm: Puppet module to install and manage Storm. - Github mirror of puppet/storm - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
xhprof: XHProf: A Hierarchical Profiler for PHP — XHProf is a function-level hierarchical profiler for PHP and has a simple HTML based navigational interface. The raw data collection component is implemented in C (as a PHP extension). The reporting/UI layer is all in PHP. It is capable of reporting function-level inclusive and exclusive wall times, memory usage, CPU times and number of calls for each function. Additionally, it supports ability to compare two runs (hierarchical DIFF reports), or aggregateresults from multiple runs. - Github mirror of xhprof - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
android-mwlogin: Android library for doing login / authentication - Github mirror of android/mwlogin - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
java-mwapi: DEPRECATED -- please use https://github.com/wikimedia/apps-android-java-mwapi - Github mirror of java/mwapi - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
dClass: Device Classification Engine - Github mirror of dClass - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn-deploy: Github mirror of limn/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
java-morelangs: Port of the core functionality and data of jQuery.IME to Java - Github mirror of java/morelangs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
aosp-morelangs-ime-dictionaries: Dictionaries for aosp-morelang-ime - Github mirror of aosp/morelangs/ime/dictionaries - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
aosp-morelangs-ime: A fork of the AOSP Keyboard with more languages - Github mirror of aosp/morelangs/ime - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-vagrant: A virtual MediaWiki development environment, built on Vagrant, VirtualBox, and Puppet. This is a mirror from https://gerrit.wikimedia.org. - Github mirror of mediawiki/vagrant - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
kraken: Wikimedia analytics data services platform. - Github mirror of kraken - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
riemann-jmx: Utility to send hbase metrics to Riemann - Github mirror of riemann/jmx - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
integration-docroot: Github mirror of integration/docroot - our actual code is hosted at gerrit.wikimedia.org - Github mirror of integration/docroot - our actual code ishosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-gerrit: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/gerrit - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
PyBal: PyBal is a LVS monitor. It monitors Squid or Apache servers and adapts LVS state based on the results. - Github mirror of PyBal - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-mediawiki-config: Configuration for Wikimedia Foundation wikis. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/mediawiki/config - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet: Wikimedia Foundation operates some of the largest collaborative projects in the world. This is our Puppet repo. This repository is a mirror; see https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of puppet - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn-data: Example datafiles, datasources, and graphs that Limn can work with - Github mirror of limn/data - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn-editor-engagement-data: Editor Engagement and Features Analysis Data in a format that Limn can understand. - Github mirror of limn/editor/engagement/data - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
metrics: Deprecated -- Use https://github.com/wikimedia/analytics-metrics - Github mirror of metrics - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
user_metrics: Wikimedia Foundation E3 Team Analysis Code - Github mirror of user_metrics - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn-fundraising-data: Github mirror of limn/fundraising/data - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limn-debugging-data: limn graphs and dashboards used to troubleshoot various analyses - Github mirror of limn/debugging/data - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-toollabs: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of labs/toollabs- our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
umapi_client: Client wrapper for Wikipedia User Metrics API. - Github mirror of umapi_client - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
bingle: A tool to get bugs from Bugzilla and import them into Mingle and/or Trello. - Github mirror of bingle - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
lcm-dashboard: Dashboard and data visualization for Language Coverage Matrix data - Github mirror of lcm/dashboard - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-zookeeper: Install and configures a Zookeeper client and/or server. - Github mirror of puppet/zookeeper - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
pywikibot-core: A Python library that interfaces with the MediaWiki API. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of pywikibot/core - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-jmxtrans: A Puppet module for jmxtrans. - Github mirror of puppet/jmxtrans - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
varnishkafka: Varnish log collector with Apache Kafka integration. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of varnishkafka - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
camus: Github mirror of camus - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
puppet-kafka: Puppet module for Apache Kafka 0.8. - Github mirror of puppet/kafka - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-fundraising-crm: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/fundraising/crm - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-statsd-ganglia: A plug-in backend for StatsD providing support for writing statistics to Ganglia - Github mirror of analytics/statsd/ganglia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
restbase-mod-table-cassandra: Cassandra table storage backend for RESTBase - Github mirror of restbase/mod/table/cassandra - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mathoid: Using MathJax and PhantomJS to create SVGs and MathML server side with minimum overhead. - Github mirror of mathoid - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-WikimediaEvents: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/WikimediaEvents - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
apps-android-wikipedia: The official Wikipedia Android app. This is a mirror from https://gerrit.wikimedia.org. - Github mirror of apps/android/wikipedia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikipedia-ios: The official Wikipedia iOS app. - Github mirror of wikipedia/ios - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
oojs: Power for object oriented javascript libraries. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of oojs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
oojs-ui: Modern JavaScript UI toolkit. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. Visit the main website for further documentation: - Github mirror of oojs/ui - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
parsoid: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of parsoid - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-parsoid-deploy: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/services/parsoid/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
VisualEditor: Stand-alone contentEditable-based rich HTML5 editor. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of VisualEditor - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
scap: scap is a tool for putting code in places and for other purposes - Github mirror of scap - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-private: "Private" repo for labs. It's not actually private, as you can see. - Github mirror of labs/private - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-tools-guc: GitHub mirror of "labs/tools/guc.git". See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of labs/tools/guc - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
git-fat: Simple way to handle fat files without committing them to git, supports synchronization using rsync - Github mirror of git/fat - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
grunt-banana-checker: Grunt checker for the Banana JSON i18n system provided by MediaWiki and jquery.i18n - Github mirror of grunt/banana/checker - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WikiFont: Free & open-source icon font for Wikimedia + Wikipedia. WikiFont is no longer officially supported. Please refer to the OOjs UI icons instead. - Github mirror of WikiFont - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
restbase: Distributed storage with REST API & dispatcher for backend services - Github mirror of restbase - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
citolytics: Citation Analysis for Wikipedia with Apache Flink - Github mirror of citolytics - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-rcstream: Broadcast activity from MediaWiki wikis using socket.io - Github mirror of mediawiki/services/rcstream - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
htmldumper: HTML dump script for Parsoid HTML - Github mirror of htmldumper - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
node-rcstream: Github mirror of node/rcstream - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
citoid: Mirror of mediawiki/services/citoid.git (see https://www.mediawiki.org/wiki/Developer_access for contributing) - Github mirror of citoid - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
routeswitch: A regexp switch based, efficient router. - Github mirror of routeswitch - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
MathJax: Beautiful math in all browsers - Github mirror of MathJax - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
MathJax-node: Mathjax for Node - Github mirror of MathJax/node - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
unicodejs: A library for working with the Unicode standard - Github mirror of unicodejs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
simplei18n: No frills internationalization engine for use with PHP projects. - Github mirror of simplei18n - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimediablog-wordpresscom: Wikimedia blog theme, mirrored from WordPress's SVN - Github mirror of wikimediablog/wordpresscom - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
integration-config: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of integration/config - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
preq: Yet another promising node-request wrapper - Github mirror of preq - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
git-client-plugin: Jenkins git client plugin - Github mirror of git/client/plugin - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
nagf: Not another Graphite frontend. - Github mirror of nagf - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
texvcjs: A LaTeX validator/translator for TeX strings embedded in wikitext - Github mirror of texvcjs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
cdb: Constant database wrapper. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirrorof cdb - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
cassandra-codec: Cassandra data encoding / decoding, in particular Java BigInteger varints and Decimals - Github mirror of cassandra/codec - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
node-txstatsd: Modified version of https://github.com/sivy/node-statsd/ for WMF specific txstatsd constraints. - Github mirror of node/txstatsd - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
dumpgrepper: A MediaWiki XML dump grepper tool - Github mirror of dumpgrepper - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
html-metadata: MetaData html scraper and parser for Node.js (supports Promises and callback style) - Github mirror of html/metadata - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
composer-merge-plugin: Merge one or more additional composer.json files at Composer runtime - Github mirror of composer/merge/plugin - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
swagger-router: A swagger 2 based router with support for assembling multiple APIs from swagger fragments. Developed in support of RESTBase. - Github mirror of swagger/router - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ChromeWikimediaDebug: Wikimedia debug extension for Chrome - Github mirror of ChromeWikimediaDebug - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
arc-lamp: A set of scripts for getting useful performance data out of HHVM's Xenon extension. - Github mirror of arc/lamp - our actual code is hosted with Gerrit (pleasesee https://www.mediawiki.org/wiki/Developer_access for contributing)
FirefoxWikimediaDebug: Wikimedia debug add-on for Firefox - Github mirror of FirefoxWikimediaDebug - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
restbase-mod-table-sqlite: SQLite backend for RESTBase - Github mirror of restbase/mod/table/sqlite - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
swagger-ui: Swagger UI is a dependency-free collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API. - Github mirror of swagger/ui - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
service-runner: Generic nodejs service supervisor - Github mirror of service/runner - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
service-template-node: Template for creating MediaWiki Services in Node.js - Github mirror of service/template/node - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
utfnormal: Unicode normalization functions. - Github mirror of utfnormal - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
Wiki-Class: A library for performing automatic detection of assessment classes of Wikipedia article text. - Github mirror of Wiki/Class - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ve-dirtydiffbot: Bot to look for dirty diffs by crawling random Wikipedia articles. - Github mirror of ve/dirtydiffbot - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jquery-client: User-agent detection. - Github mirror of jquery/client - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_accessfor contributing)
ifttt: Flask web app providing an IFTTT Channel Protocol API for featured content on Wikimedia wikis - Github mirror of ifttt - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ansible-deploy: Ansible deploy utilities - Github mirror of ansible/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
json-stable-stringify: deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results - Github mirror of json/stable/stringify -our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-tools-forrestbot: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of labs/tools/forrestbot - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
at-ease: A safe alternative to PHP's "@" error control operator. - Github mirror of at/ease - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
AhoCorasick: A PHP implementation of the Aho-Corasick string search algorithm - Github mirror of AhoCorasick - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ve-needcheck-reporter-bot: Reports last 24 hours of ve-needcheck edits to #mediawiki-visualeditor channel - Github mirror of ve/needcheck/reporter/bot - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
IPSet: PHP library to match IPs against CIDR specs. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of IPSet - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
cassandra-metrics-collector: Cassandra JMX metrics collector - Github mirror of cassandra/metrics/collector - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-logo: Github mirror of wikimedia/logo - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
restbase-mod-table-spec: Shared spec and tests for RESTBase table storage - Github mirror of restbase/mod/table/spec - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
grunt-tyops: A grunt task to check files for typos and fail if any are found - Github mirror of grunt/tyops - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
www.wikipedia.org: A fork of www.wikipedia.org - Github mirror of www.wikipedia.org - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
template-expression-compiler: An expression compiler for KnockoutJS inspired template expressions. - Github mirror of template/expression/compiler - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WrappedString: Compacting text containing redundant wrappers. - Github mirror of WrappedString - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
phlogiston: A script to pull Phabricator task history out of MySQL and denormalize it for reporting - Github mirror of phlogiston - our actual code is hosted with Gerrit(please see https://www.mediawiki.org/wiki/Developer_access for contributing)
swagger-js: Javascript library to connect to swagger-enabled APIs via browser or nodejs - Github mirror of swagger/js - our actual code is hosted with Gerrit (please seehttps://www.mediawiki.org/wiki/Developer_access for contributing)
html5depurate: This is an HTTP frontend for the validator.nu HTML 5 parser. It parses some input text and returns the reserialized HTML. - Github mirror of html5depurate- our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wpt-reporter: We use the wpt-reporter to drive WebPageTest. - Github mirror of wpt/reporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
CLDRPluralRuleParser: PHP library to parse CLDR plural rule syntax. - Github mirror of CLDRPluralRuleParser - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
htcp-purge: Node module to purge caches over the HTCP protocol, as implemented by Squid - Github mirror of htcp/purge - our actual code is hosted with Gerrit (please seehttps://www.mediawiki.org/wiki/Developer_access for contributing)
avro-php: A library for using Avro with PHP. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. -Github mirror of avro/php - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
php-gpglib: A wrapper around GPG for stateless operations - Github mirror of php/gpglib - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
SelfSizingWaterfallCollectionViewLayout: SelfSizingWaterfallCollectionViewLayout is a UICollectionViewLayout subclass that organizes items of dynamic height into a grid of variable columns (as if you're winning at Tetris upside-down). Designed for use alongside AutoLayout and iOS8 self-sizing cell technologies. - Github mirror of SelfSizingWaterfallCollectionViewLayout - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
portals: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of portals - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
community-tech-tools: Random scripts and tools used internally by the Community Tech team - Github mirror of community/tech/tools - our actual code is hosted with Gerrit(please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jscs-preset-wikimedia: JSCS preset for Wikimedia. - Github mirror of jscs/preset/wikimedia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
RelPath: Compute a relative path between two paths. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of RelPath - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
bunyan-syslog-udp: A udp-only syslog stream for bunyan - Github mirror of bunyan/syslog/udp - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
piwik-sdk-ios: Piwik iOS SDK: a Piwik tracker written in Objective-C - Github mirror of piwik/sdk/ios - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
restevent: Prototype REST event bus service - Github mirror of restevent - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
web-html-stream: Efficient element matching and processing for HTML5 DOM serialized HTML. - Github mirror of web/html/stream - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
node-serviceworker: Environment for running serviceworkers in node.js, as 'isomorphic' request handlers for clients without SW support. - Github mirror of node/serviceworker - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
RunningStat: PHP implementations of online statistical algorithms - Github mirror of RunningStat - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
content-type: Create and parse HTTP Content-Type header - Github mirror of content/type - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
eventlogging: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of eventlogging -our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-exif-optimizer: Github mirror of thumbor/exif/optimizer - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-mattermost: Github mirror of operations/software/mattermost - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-ImageTweaks: Github mirror of mediawiki/extensions/ImageTweaks - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-nfsd-ldap: Github mirror of operations/debs/nfsd/ldap - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_accessfor contributing)
integration-uprightdiff: Github mirror of integration/uprightdiff - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
mediawiki-event-schemas: Github mirror of mediawiki/event/schemas - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
operations-software-matterircd: Github mirror of operations/software/matterircd - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-EventBus: Github mirror of mediawiki/extensions/EventBus - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-dotted: Github mirror of operations/debs/python/dotted - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-discovery-prince: Github mirror of wikimedia/discovery/prince - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-SemanticExternalQueryLookup: Github mirror of mediawiki/extensions/SemanticExternalQueryLookup - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-UserExport: Github mirror of mediawiki/extensions/UserExport - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-PCRGUIInserts: Github mirror of mediawiki/extensions/PCRGUIInserts - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
change-propagation: A RESTBase queuing module for Apache Kafka - Github mirror of change/propagation - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-PerformanceInspector: Github mirror of mediawiki/extensions/PerformanceInspector - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-proxy-engine: Github mirror of thumbor/proxy/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-vips-engine: Github mirror of thumbor/vips/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-salt: Github mirror of operations/debs/salt - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
parsoid-dom-utils: A collection of utilities for working with HTML DOM emitted by Parsoid - Github mirror of parsoid/dom/utils - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
OAStackView: Porting UIStackView to iOS 7+ - Github mirror of OAStackView - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
MGSwipeTableCell: An easy to use UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. - Github mirror of MGSwipeTableCell - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-containers: Containerized MediaWiki install including VisualEditor, Parsoid, RESTBase & other services. - Github mirror of mediawiki/containers - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-docker: Docker container for MediaWiki - Github mirror of mediawiki/docker - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-node-services: Run several mediawiki nodejs services (RESTBase, Parsoid) in a single docker container. Useful for small / low-memory installs. - Github mirror of mediawiki/node/services - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-WikiLabels: Github mirror of mediawiki/extensions/WikiLabels - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-discovery-experimental: Github mirror of wikimedia/discovery/experimental - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
TSMessages: Easy to use and customizable messages/notifications for iOS à la Tweetbot - Github mirror of TSMessages - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-PageAssessments: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/extensions/PageAssessments - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-limn-wikidata-data-vendor: Github mirror of analytics/limn/wikidata/data/vendor - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-NotebookViewer: Github mirror of mediawiki/extensions/NotebookViewer - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-base-engine: Github mirror of thumbor/base/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-bloomd: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/bloomd - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-svg-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of thumbor/svg/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-video-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of thumbor/video/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
testreduce: Parsoid's round-trip test server - Github mirror of testreduce - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-docker-images-debian: Wikimedia mirror of official debian docker images - Github mirror of operations/docker/images/debian - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-tiff-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/tiff/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-page: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/page - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-proxy-loader: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirrorof wikimedia/thumbor/proxy/loader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-video-loader: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirrorof wikimedia/thumbor/video/loader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-xcf-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/xcf/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-multi-handler: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/multi/handler - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-ghostscript-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/ghostscript/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-request-storage: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/request/storage - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-analytics-wikimetrics-deploy: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/analytics/wikimetrics/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-thumbor-djvu-engine: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/thumbor/djvu/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-IPSet: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/IPSet - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-wikimetrics-deploy: Github mirror of analytics/wikimetrics/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-tiff-engine: Github mirror of thumbor/tiff/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-xcf-engine: Github mirror of thumbor/xcf/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-proxy-loader: Github mirror of thumbor/proxy/loader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-page: Github mirror of thumbor/page - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-parsoid-testreduce: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Githubmirror of mediawiki/services/parsoid/testreduce - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-djvu-engine: Github mirror of thumbor/djvu/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-request-storage: Github mirror of thumbor/request/storage - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
thumbor-video-loader: Github mirror of thumbor/video/loader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-multi-handler: Github mirror of thumbor/multi/handler - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
thumbor-ghostscript-engine: Github mirror of thumbor/ghostscript/engine - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-varnish4: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/varnish4 - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
hyperswitch: HyperSwitch is a framework for creating REST web services - Github mirror of hyperswitch - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
html-formatter: Performs transformations of HTML by wrapping around libxml2 and working around its countless bugs. This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of html/formatter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-gevent: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/python/gevent - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-varnish-libvmod-vslp: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/software/varnish/libvmod/vslp - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-giella-core: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing.- Github mirror of operations/debs/contenttranslation/giella/core - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
analytics-query-service: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics/query/service - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-varnish-libvmod-tbf: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/software/varnish/libvmod/tbf - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
limitation: An efficient rate limiter with several backends, including a Kademlia DHT. - Github mirror of limitation - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
NSDate-Extensions: Practical real-world dates - Github mirror of NSDate/Extensions - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-tools-stewardbots: Github mirror of labs/tools/stewardbots - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-title: mediawiki title normalization library - Github mirror of mediawiki/title - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-xhgui: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/software/xhgui - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-hhvm: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/hhvm - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-aqs: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics/aqs- our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-aqs-deploy: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics/aqs/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-linux44: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/linux44 - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
nodejs-driver: DataStax Node.js Driver for Apache Cassandra - Github mirror of nodejs/driver - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-reportupdater: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics/reportupdater - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-discovery-relevanceForge: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of wikimedia/discovery/relevanceForge - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-reportupdater-queries: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics/reportupdater/queries - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
research-ores-wheels: Github mirror of research/ores/wheels - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
phantomjs: NPM wrapper for installing phantomjs - Github mirror of phantomjs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-kubernetes: Mirror of the kubernetes source build used at Wikimedia - Github mirror of operations/software/kubernetes - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-apache-config: Github mirror of operations/apache/config - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-sprockets-mixins-statsd: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing.- Github mirror of operations/debs/python/sprockets/mixins/statsd - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
CopyPatrol: The web interface for Plagiabot (authored by @Eranroz) - Github mirror of CopyPatrol - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
AnimatedGIFImageSerialization: Complete Animated GIF Support for iOS, with Functions, NSJSONSerialization-style Class, and (Optional) UIImage Swizzling - Github mirror of AnimatedGIFImageSerialization - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-wheels: Parent repo for all our wheeeeels - Github mirror of operations/wheels - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-wheels-devpi: Wheels used to deploy devpi - Github mirror of operations/wheels/devpi - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
SWStepSlider: A step slider, drop-in replacement for UISlider. - Github mirror of SWStepSlider - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
eventlogging-scap-analytics: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror ofeventlogging/scap/analytics - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia.github.io: Wikimedia repos on GitHub - Github mirror of wikimedia.github.io - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
oojs-router: Object-oriented call routing library based on OOjs. This is a mirror from https://phabricator.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of oojs/router - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics.wikimedia.org: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of analytics.wikimedia.org - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
grunt-stylelint: Grunt plugin for running Stylelint - Github mirror of grunt/stylelint - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
stylelint-config-wikimedia: Wikimedia CSS Coding Standards shareable config for stylelint - Github mirror of stylelint/config/wikimedia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
malu: A basic JS end-to-end test harness for MediaWiki. This is a mirror of https://phabricator.wikimedia.org/diffusion/GMALU/ please see https://www.mediawiki.org/wiki/Developer_access for information about contributing. - Github mirror of malu - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-ores: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/services/ores - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-ores-deploy: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirrorof mediawiki/services/ores/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
authoid: Auth & session backend service prototype - Github mirror of authoid - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
CocoaLumberjack: A fast & simple, yet powerful & flexible logging framework for Mac and iOS - Github mirror of CocoaLumberjack - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-docker-images-toolabs-images: Github mirror of operations/docker/images/toolabs/images - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-service-checker: A monitoring tool for swagger-based webservices - Github mirror of operations/software/service/checker - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
AFNetworking: A delightful networking framework for iOS, OS X, watchOS, and tvOS. - Github mirror of AFNetworking - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
3d2png: This is a read-only mirror from https://phabricator.wikimedia.org/source/3d2png/. - Github mirror of 3d2png - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
node-rdkafka: Direct node.js wrappers over C++ librdkafka API - Github mirror of node/rdkafka - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-apertium-mk-en: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/debs/contenttranslation/apertium/mk/en - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-docker-images-toollabs-images: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/docker/images/toollabs/images - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
tool-gridengine-status: Mirror of https://phabricator.wikimedia.org/diffusion/1921/ - Github mirror of tool/gridengine/status - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WikimediaUI-Style-Guide: Wikimedia User Interface Style Guide authored by Wikimedia Foundation design team. - Github mirror of WikimediaUI/Style/Guide - our actual codeis hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
eslint-config-wikimedia: Wikimedia ESLint config - Github mirror of eslint/config/wikimedia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
web-stream-util: Merge and transform web streams and templates into one ReadableStream. - Github mirror of web/stream/util - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-thumbor-wikimedia: Github mirror of operations/debs/python/thumbor/wikimedia - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
Cyberbot_II: Shared development fork for InternetArchiveBot development by WMF Community Tech team. See upstream for cannonical source. - Github mirror of Cyberbot_II - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
DeadlinkChecker: Code to determine if a link on the web is dead or alive - Github mirror of DeadlinkChecker - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-refinery-scap: Github mirror of analytics/refinery/scap - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access forcontributing)
node-serviceworker-proxy: A proxy service running serviceworker code on behalf of clients without native support. Based on node-serviceworker. - Github mirror of node/serviceworker/proxy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
integration-commit-message-validator: Github mirror of integration/commit/message/validator - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WikimediaUI-base: WikimediaUI base provides stylesheets with Wikimedia Foundation's base user interface variables (Less or CSS). Mirror of https://phabricator.wikimedia.org/diffusion/WMUI/ - Github mirror of WikimediaUI/base - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-discovery-stats: Github mirror of analytics/discovery/stats - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_accessfor contributing)
operations-debs-contenttranslation-giella-sme: Github mirror of operations/debs/contenttranslation/giella/sme - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ms-fonts: Github mirror of ms/fonts - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-elasticsearch-tool: Wikimedia Foundation operates some of the largest collaborative projects in the world. This is our Puppet repo. This repository is a mirror; see https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of operations/software/elasticsearch/tool - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-EditOwn: Github mirror of mediawiki/extensions/EditOwn - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-apertium-srd: Github mirror of operations/debs/contenttranslation/apertium/srd - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-apertium-srd-ita: Github mirror of operations/debs/contenttranslation/apertium/srd/ita - our actual code is hosted with Gerrit (pleasesee https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-apertium-ita: Github mirror of operations/debs/contenttranslation/apertium/ita - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-ChangeAuthor: Github mirror of mediawiki/extensions/ChangeAuthor - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
kasocki: Kafka Consumer -> socket.io library - Github mirror of kasocki - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
dump-scheduler-eval: Github mirror of dump/scheduler/eval - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
ScopedCallback: Class for asserting that a callback happens when a dummy object leaves scope - Github mirror of ScopedCallback - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
Timestamp: Github mirror of Timestamp - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
WaitConditionLoop: Wait loop that reaches a condition or times out - Github mirror of WaitConditionLoop - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
eslint-config-node-services: Simple config module for ESLint, used by node services at WMF. - Github mirror of eslint/config/node/services - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
twcs: Time Window CompactionStrategy for Apache Cassandra - Github mirror of twcs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-pivot: Github mirror of analytics/pivot - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-snakebite: Github mirror of operations/debs/python/snakebite - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
research-recommendation-api-wheels: Github mirror of research/recommendation/api/wheels - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-contenttranslation-apertium-swe: Github mirror of operations/debs/contenttranslation/apertium/swe - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-bdsync: Github mirror of operations/debs/bdsync - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
research-recommendation-api: Github mirror of research/recommendation/api - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
analytics-pivot-deploy: Github mirror of analytics/pivot/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-libs-FileOgg: Github mirror of mediawiki/libs/FileOgg - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
KafkaSSE: Kafka Consumer -> SSE - Github mirror of KafkaSSE - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
labs-tools-suggestor: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of labs/tools/suggestor - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
YapDatabase: YapDatabase is an extensible database for iOS & Mac. - Github mirror of YapDatabase - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-calico-containers: Github mirror of operations/calico/containers - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
apps-android-commons: Upload pictures from Android to Wikimedia Commons. Looking for volunteers! Come say hi at https://groups.google.com/d/forum/commons-app-android andinstall at https://play.google.com/store/apps/details?id=fr.free.nrw.commons - Github mirror of apps/android/commons - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
stashbot: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of stashbot - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-trending-edits: Github mirror of mediawiki/services/trending/edits - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
eventlogging-scap-eventbus: Github mirror of eventlogging/scap/eventbus - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-Dashiki: Github mirror of mediawiki/extensions/Dashiki - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-DisplayTitle: Github mirror of mediawiki/extensions/DisplayTitle - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
BlocksKit: The Objective-C block utilities you always wish you had. - Github mirror of BlocksKit - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
SSDataSources: Flexible data sources for your UITableView and UICollectionView. - Github mirror of SSDataSources - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
hpple: An XML/HTML parser for Objective-C, inspired by Hpricot. - Github mirror of hpple - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
Tweaks: An easy way to fine-tune, and adjust parameters for iOS apps in development. - Github mirror of Tweaks - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
TUSafariActivity: A UIActivity subclass that opens URLs in Safari - Github mirror of TUSafariActivity - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-services-eventstreams: Streams of events from MediaWiki wikis. Events will be streamed to clients using SSE, backed by Kafka - https://github.com/wikimedia/kafkasse - Github mirror of mediawiki/services/eventstreams - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-prometheus-redis-exporter: Github mirror of operations/debs/prometheus/redis/exporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-hhvm_exporter: Github mirror of operations/software/hhvm_exporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-libs-RemexHtml: HTML5 parser in PHP - Github mirror of mediawiki/libs/RemexHtml - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
services-adhoc-reports: Github mirror of services/adhoc/reports - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
cumin: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. – https://wikitech.wikimedia.org/wiki/Cumin - Github mirror of cumin - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
jmx_exporter: A process for exposing JMX Beans via HTTP for Prometheus consumption - Github mirror of jmx_exporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-confluent-kafka: Debian packaging for https://github.com/confluentinc/confluent-kafka-python - Github mirror of operations/debs/python/confluent/kafka - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-libs-phpstorm-stubs: This is a mirror from https://gerrit.wikimedia.org. See https://www.mediawiki.org/wiki/Developer_access for contributing. - Github mirror of mediawiki/libs/phpstorm/stubs - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
popularpages: Tool for generating popular page reports for WikiProjects - Github mirror of popularpages - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
tool-my-first-flask-oauth-tool: Mirror of https://phabricator.wikimedia.org/source/tool-my-first-flask-oauth-tool/ - Github mirror of tool/my/first/flask/oauth/tool - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
search-ltr: Github mirror of search/ltr - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-openssl11: Github mirror of operations/debs/openssl11 - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_accessfor contributing)
mediawiki-services-eventstreams-deploy: Github mirror of mediawiki/services/eventstreams/deploy - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-debs-python-ua-parser: Github mirror of operations/debs/python/ua/parser - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-software-etcd-mirror: Github mirror of operations/software/etcd/mirror - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-FileImporter: Github mirror of mediawiki/extensions/FileImporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mapdata: Github mirror of mapdata - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
mediawiki-extensions-FileExporter: Github mirror of mediawiki/extensions/FileExporter - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
keyholder: Securely share ssh agents among groups of users - Github mirror of keyholder - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
wikimedia-page-library: Cross-platform JavaScript library for Wikimedia apps - Github mirror of wikimedia/page/library - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
SDWebImage: Asynchronous image downloader with cache support as a UIImageView category - Github mirror of SDWebImage - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
operations-switchdc: Github mirror of operations/switchdc - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contribu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment