getting lagged documents, now with index

This commit is contained in:
Matthew Gaughan 2025-02-05 23:50:54 -06:00
parent f892dac38a
commit 54445c2e56
10 changed files with 5028 additions and 10006 deletions

View File

@ -3,6 +3,10 @@ import os
import datetime as dt import datetime as dt
import json import json
import shutil import shutil
import re
from datetime import datetime, timedelta
def repo_id_from_upstream(vcs_link): def repo_id_from_upstream(vcs_link):
if 'github' in vcs_link: if 'github' in vcs_link:
@ -129,9 +133,12 @@ def cp_existing_docs(matched_repo_ids, is_readme):
def document_in_diffs(diffs, doc_name): def document_in_diffs(diffs, doc_name):
#return any(d['parent_filepath'] == doc_name or d['child_filepath'] == doc_name for d in diffs) #return any(d['parent_filepath'] == doc_name or d['child_filepath'] == doc_name for d in diffs)
if doc_name in diffs: if doc_name == "README":
return True pattern = ": 'README"
if doc_name in diffs: else:
pattern = ": 'CONTRIBUTING"
#if re.search(pattern, diffs):
if pattern in diffs:
return True return True
return False return False
@ -142,24 +149,43 @@ def get_doc_publication(dirpath, file, doc_name):
unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=True) unmatched_df = unmatched_df.sort_values(by='commit_date', ascending=True)
#print(unmatched_df.head()) #print(unmatched_df.head())
unmatched_df['diff_contains_document'] = unmatched_df['diff_info'].apply(lambda diffs: document_in_diffs(diffs, doc_name)) unmatched_df['diff_contains_document'] = unmatched_df['diff_info'].apply(lambda diffs: document_in_diffs(diffs, doc_name))
first_instance = unmatched_df[unmatched_df['diff_contains_document']].head(1) relevant_commits = unmatched_df[unmatched_df['diff_contains_document'] == True]
first_instance = relevant_commits.head(1)
#lagging
commit_dt = first_instance['commit_date'].iloc[0]
lagged_date = commit_dt + pd.Timedelta(days=7)
filtered_df = relevant_commits[relevant_commits['commit_date'] < lagged_date].sort_values(by='commit_date', ascending=False)
lagged_hash = filtered_df['commit_hash'].iloc[0]
#first_instance = unmatched_df.loc["'parent_filepath': 'README'" in unmatched_df['diff_info']].head(1) #first_instance = unmatched_df.loc["'parent_filepath': 'README'" in unmatched_df['diff_info']].head(1)
return first_instance return first_instance, lagged_hash
def process_vcs_links(link):
if "github" in link:
repo_id = link[len('https://github.com/'):]
else:
parts = link.split('/')
domain = parts[2]
repo_id = '/'.join(parts[3:])
und_repo_id = '_'.join(repo_id.split("/"))
return und_repo_id
def get_doc_pub_for_all(is_readme): def get_doc_pub_for_all(is_readme):
full_data = pd.read_csv('for_batching/deb_full_data.csv') full_data = pd.read_csv('for_batching/deb_full_data.csv')
full_data['upstream_vcs_link'] = full_data['upstream_vcs_link'].str.strip()
full_data['repo_id'] = full_data['upstream_vcs_link'].apply(lambda link: pd.Series(process_vcs_links(link)))
if is_readme: if is_readme:
dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/readme/" dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/final_data/main_commit_data/readme/"
doc_name = "README" doc_name = "README"
else: else:
dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/contributing/" dirpath = "/data/users/mgaughan/kkex/012825_cam_revision_main/final_data/main_commit_data/contributing/"
doc_name = "CONTRIBUTING" doc_name = "CONTRIBUTING"
csv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')] csv_files = [f for f in os.listdir(dirpath) if f.endswith('_commits.csv')]
first_instances = [] first_instances = []
index = 0 index = 0
for file in csv_files: for file in csv_files:
index += 1 index += 1
first_instance = get_doc_publication(dirpath, file, doc_name) first_instance, lagged_hash = get_doc_publication(dirpath, file, doc_name)
first_instance['lagged_hash'] = lagged_hash
if file.startswith('_'): if file.startswith('_'):
repo_id = file[1:-12] repo_id = file[1:-12]
else: else:
@ -169,17 +195,10 @@ def get_doc_pub_for_all(is_readme):
id_array = repo_id.split("_") id_array = repo_id.split("_")
project_handle = ("/").join(id_array) project_handle = ("/").join(id_array)
first_instance['project_handle'] = project_handle first_instance['project_handle'] = project_handle
full_data['upstream_vcs_link'] = full_data['upstream_vcs_link'].str.strip()
#matching with vcs #matching with vcs
mask = pd.Series([True] * len(full_data)) result = full_data[full_data['repo_id'] == repo_id]
for id_part in id_array:
mask &= full_data['upstream_vcs_link'].str.contains(id_part, case=False, na=False)
result = full_data[mask]
#print(repo_id)
first_match = result['upstream_vcs_link'].values[0] first_match = result['upstream_vcs_link'].values[0]
#print(first_match)
first_instance['upstream_vcs_link'] = first_match first_instance['upstream_vcs_link'] = first_match
#print(first_instance['upstream_vcs_link']) #print(first_instance['upstream_vcs_link'])
first_instance.drop(['message', 'diff_info'], axis=1, inplace=True) first_instance.drop(['message', 'diff_info'], axis=1, inplace=True)
@ -189,10 +208,9 @@ def get_doc_pub_for_all(is_readme):
else: else:
print(f"at index: {index}") print(f"at index: {index}")
print(f"no first commit found for {repo_id}") print(f"no first commit found for {repo_id}")
break
#save the #save the
first_instances_df = pd.concat(first_instances, ignore_index=True) first_instances_df = pd.concat(first_instances, ignore_index=True)
first_instances_df.to_csv(f'{doc_name}_publication_commits.csv', index = False) first_instances_df.to_csv(f'0205_{doc_name}_publication_commits.csv', index = False)
def list_for_doc_collection(unmatched_files, is_readme): def list_for_doc_collection(unmatched_files, is_readme):
if is_readme: if is_readme:
@ -237,6 +255,7 @@ def list_for_doc_collection(unmatched_files, is_readme):
else: else:
print(f"at index: {index}") print(f"at index: {index}")
print(f"no first commit found for {repo_id}") print(f"no first commit found for {repo_id}")
if index > 15:
break break
first_instances_df = pd.concat(first_instances, ignore_index=True) first_instances_df = pd.concat(first_instances, ignore_index=True)
first_instances_df.to_csv(f'020125_{doc_name}_for_download.csv', index = False) first_instances_df.to_csv(f'020125_{doc_name}_for_download.csv', index = False)

View File

@ -1,716 +0,0 @@
repo_id,commits_filepath,fvf_filepath
aio-libs_aiomysql.git,_aio-libs_aiomysql.git_commits.csv,aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
qTox_qTox,_qTox_qTox_commits.csv,qTox_qTox_hullabaloo_CONTRIBUTING.md
gohugoio_hugo.git,_gohugoio_hugo.git_commits.csv,gohugoio_hugo.git_hullabaloo_CONTRIBUTING.md
ycm-core_ycmd,_ycm-core_ycmd_commits.csv,ycm-core_ycmd_hullabaloo_CONTRIBUTING.md
aio-libs_aiohttp.git,_aio-libs_aiohttp.git_commits.csv,aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
PyCQA_pycodestyle,_PyCQA_pycodestyle_commits.csv,PyCQA_pycodestyle_hullabaloo_CONTRIBUTING.rst
jupyter_jupyter_console,_jupyter_jupyter_console_commits.csv,jupyter_jupyter_console_hullabaloo_CONTRIBUTING.md
ixion_ixion.git,ixion_ixion.git_commits.csv,ixion_ixion.git_hullabaloo_CONTRIBUTING.md
box_genty.git,_box_genty.git_commits.csv,box_genty.git_hullabaloo_CONTRIBUTING.rst
hackebrot_jinja2-time,_hackebrot_jinja2-time_commits.csv,hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_nbtscan,_resurrecting-open-source-projects_nbtscan_commits.csv,resurrecting-open-source-projects_nbtscan_hullabaloo_CONTRIBUTING.md
DonyorM_weresync.git,_DonyorM_weresync.git_commits.csv,DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
webcamoid_webcamoid.git,_webcamoid_webcamoid.git_commits.csv,webcamoid_webcamoid.git_hullabaloo_CONTRIBUTING.md
datalad_datalad,datalad_datalad_commits.csv,datalad_datalad_hullabaloo_CONTRIBUTING.md
korfuri_django-prometheus,_korfuri_django-prometheus_commits.csv,korfuri_django-prometheus_hullabaloo_CONTRIBUTING.md
lualdap_lualdap.git,_lualdap_lualdap.git_commits.csv,lualdap_lualdap.git_hullabaloo_CONTRIBUTING.md
iovisor_bpftrace,_iovisor_bpftrace_commits.csv,iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
stachenov_quazip.git,_stachenov_quazip.git_commits.csv,stachenov_quazip.git_hullabaloo_CONTRIBUTING.md
netty_netty,_netty_netty_commits.csv,netty_netty_hullabaloo_CONTRIBUTING.md
twbs_bootstrap-sass,_twbs_bootstrap-sass_commits.csv,twbs_bootstrap-sass_hullabaloo_CONTRIBUTING.md
libosinfo_libosinfo.git,libosinfo_libosinfo.git_commits.csv,libosinfo_libosinfo.git_hullabaloo_CONTRIBUTING.md
zopefoundation_roman,_zopefoundation_roman_commits.csv,zopefoundation_roman_hullabaloo_CONTRIBUTING.md
googlei18n_fontmake.git,_googlei18n_fontmake.git_commits.csv,googlei18n_fontmake.git_hullabaloo_CONTRIBUTING.md
Graylog2_gelf-rb,_Graylog2_gelf-rb_commits.csv,Graylog2_gelf-rb_hullabaloo_CONTRIBUTING.md
mqttjs_mqtt-packet,_mqttjs_mqtt-packet_commits.csv,mqttjs_mqtt-packet_hullabaloo_CONTRIBUTING.md
KhronosGroup_Vulkan-Tools,_KhronosGroup_Vulkan-Tools_commits.csv,KhronosGroup_Vulkan-Tools_hullabaloo_CONTRIBUTING.md
tqdm_tqdm.git,_tqdm_tqdm.git_commits.csv,tqdm_tqdm.git_hullabaloo_CONTRIBUTING.md
ranger_ranger.git,_ranger_ranger.git_commits.csv,ranger_ranger.git_hullabaloo_CONTRIBUTING.md
intridea_oauth2,_intridea_oauth2_commits.csv,intridea_oauth2_hullabaloo_CONTRIBUTING.md
timothycrosley_hug.git,_timothycrosley_hug.git_commits.csv,timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
eavgerinos_pkg-pick,eavgerinos_pkg-pick_commits.csv,eavgerinos_pkg-pick_hullabaloo_CONTRIBUTING.md
bk138_gromit-mpx.git,_bk138_gromit-mpx.git_commits.csv,bk138_gromit-mpx.git_hullabaloo_CONTRIBUTING.md
twisted_pydoctor,_twisted_pydoctor_commits.csv,twisted_pydoctor_hullabaloo_CONTRIBUTING.rst
Motion-Project_motion,_Motion-Project_motion_commits.csv,Motion-Project_motion_hullabaloo_CONTRIBUTING.md
watson-developer-cloud_python-sdk.git,_watson-developer-cloud_python-sdk.git_commits.csv,watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
vcr_vcr,_vcr_vcr_commits.csv,_vcr_vcr_CONTRIBUTING.md
scikit-learn-contrib_imbalanced-learn.git,_scikit-learn-contrib_imbalanced-learn.git_commits.csv,scikit-learn-contrib_imbalanced-learn.git_hullabaloo_CONTRIBUTING.rst
ninja-build_ninja.git,_ninja-build_ninja.git_commits.csv,ninja-build_ninja.git_hullabaloo_CONTRIBUTING.md
olive-editor_olive,_olive-editor_olive_commits.csv,olive-editor_olive_hullabaloo_CONTRIBUTING.md
lostisland_faraday_middleware,_lostisland_faraday_middleware_commits.csv,lostisland_faraday_middleware_hullabaloo_CONTRIBUTING.md
gcsideal_syslog-ng-debian,gcsideal_syslog-ng-debian_commits.csv,gcsideal_syslog-ng-debian_hullabaloo_CONTRIBUTING.md
getpelican_pelican,_getpelican_pelican_commits.csv,getpelican_pelican_hullabaloo_CONTRIBUTING.rst
moose_MooseX-Runnable,_moose_MooseX-Runnable_commits.csv,moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
tpope_vim-pathogen.git,_tpope_vim-pathogen.git_commits.csv,tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
ocaml_dune.git,_ocaml_dune.git_commits.csv,ocaml_dune.git_hullabaloo_CONTRIBUTING.md
pyqtgraph_pyqtgraph.git,_pyqtgraph_pyqtgraph.git_commits.csv,pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
coringao_pekka-kana-2,coringao_pekka-kana-2_commits.csv,coringao_pekka-kana-2_hullabaloo_CONTRIBUTING.md
processone_eimp.git,_processone_eimp.git_commits.csv,processone_eimp.git_hullabaloo_CONTRIBUTING.md
plastex_plastex,_plastex_plastex_commits.csv,plastex_plastex_hullabaloo_CONTRIBUTING.md
mruby-debian_mruby,mruby-debian_mruby_commits.csv,mruby-debian_mruby_hullabaloo_CONTRIBUTING.md
processone_stun.git,_processone_stun.git_commits.csv,processone_stun.git_hullabaloo_CONTRIBUTING.md
jazzband_django-push-notifications,_jazzband_django-push-notifications_commits.csv,jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
box_flaky.git,_box_flaky.git_commits.csv,box_flaky.git_hullabaloo_CONTRIBUTING.rst
amueller_word_cloud,_amueller_word_cloud_commits.csv,amueller_word_cloud_hullabaloo_CONTRIBUTING.md
kivy_kivy,_kivy_kivy_commits.csv,kivy_kivy_hullabaloo_CONTRIBUTING.md
opencontainers_runc,_opencontainers_runc_commits.csv,opencontainers_runc_hullabaloo_CONTRIBUTING.md
bitletorg_weupnp.git,_bitletorg_weupnp.git_commits.csv,bitletorg_weupnp.git_hullabaloo_CONTRIBUTING.md
heynemann_pyvows.git,_heynemann_pyvows.git_commits.csv,heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
KhronosGroup_SPIRV-LLVM-Translator,_KhronosGroup_SPIRV-LLVM-Translator_commits.csv,KhronosGroup_SPIRV-LLVM-Translator_hullabaloo_CONTRIBUTING.md
puppetlabs_marionette-collective,_puppetlabs_marionette-collective_commits.csv,puppetlabs_marionette-collective_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-xinetd,_puppetlabs_puppetlabs-xinetd_commits.csv,puppetlabs_puppetlabs-xinetd_hullabaloo_CONTRIBUTING.md
ioquake_ioq3,_ioquake_ioq3_commits.csv,ioquake_ioq3_hullabaloo_CONTRIBUTING.md
docker_compose,_docker_compose_commits.csv,docker_compose_hullabaloo_CONTRIBUTING.md
plasma_kscreen.git,plasma_kscreen.git_commits.csv,plasma_kscreen.git_hullabaloo_CONTRIBUTING.md
nvbn_thefuck.git,_nvbn_thefuck.git_commits.csv,nvbn_thefuck.git_hullabaloo_CONTRIBUTING.md
mapbox_mapnik-vector-tile.git,_mapbox_mapnik-vector-tile.git_commits.csv,mapbox_mapnik-vector-tile.git_hullabaloo_CONTRIBUTING.md
mawww_kakoune.git,_mawww_kakoune.git_commits.csv,mawww_kakoune.git_hullabaloo_CONTRIBUTING
eslint_eslint-scope.git,_eslint_eslint-scope.git_commits.csv,eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
GNOME_balsa,GNOME_balsa_commits.csv,GNOME_balsa_hullabaloo_CONTRIBUTING.md
jupyter_notebook.git,_jupyter_notebook.git_commits.csv,jupyter_notebook.git_hullabaloo_CONTRIBUTING.md
eslint_eslint,_eslint_eslint_commits.csv,eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
mfontanini_libtins.git,_mfontanini_libtins.git_commits.csv,mfontanini_libtins.git_hullabaloo_CONTRIBUTING.md
ukui_peony,ukui_peony_commits.csv,ukui_peony_hullabaloo_CONTRIBUTING.md
publicsuffix_list,_publicsuffix_list_commits.csv,publicsuffix_list_hullabaloo_CONTRIBUTING.md
pimutils_vdirsyncer,_pimutils_vdirsyncer_commits.csv,pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
rr-debugger_rr.git,_rr-debugger_rr.git_commits.csv,rr-debugger_rr.git_hullabaloo_CONTRIBUTING.md
openalpr_openalpr,openalpr_openalpr_commits.csv,openalpr_openalpr_hullabaloo_CONTRIBUTING.md
Mottie_tablesorter.git,_Mottie_tablesorter.git_commits.csv,Mottie_tablesorter.git_hullabaloo_CONTRIBUTING.md
nikic_PHP-Parser,_nikic_PHP-Parser_commits.csv,nikic_PHP-Parser_hullabaloo_CONTRIBUTING.md
tmuxinator_tmuxinator,_tmuxinator_tmuxinator_commits.csv,tmuxinator_tmuxinator_hullabaloo_CONTRIBUTING.md
Nuitka_Nuitka,Nuitka_Nuitka_commits.csv,Nuitka_Nuitka_hullabaloo_CONTRIBUTING.md
dahlia_libsass-python.git,_dahlia_libsass-python.git_commits.csv,dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
intel_intel-vaapi-driver.git,_intel_intel-vaapi-driver.git_commits.csv,intel_intel-vaapi-driver.git_hullabaloo_CONTRIBUTING.md
iem-projects_ambix.git,_iem-projects_ambix.git_commits.csv,iem-projects_ambix.git_hullabaloo_CONTRIBUTING.md
mkdocs_mkdocs,_mkdocs_mkdocs_commits.csv,mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
boto_boto3,_boto_boto3_commits.csv,boto_boto3_hullabaloo_CONTRIBUTING.rst
github_git-lfs.git,_github_git-lfs.git_commits.csv,github_git-lfs.git_hullabaloo_CONTRIBUTING.md
jquast_blessed,_jquast_blessed_commits.csv,jquast_blessed_hullabaloo_CONTRIBUTING.rst
Storyyeller_enjarify,_Storyyeller_enjarify_commits.csv,Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
gnu-octave_statistics,_gnu-octave_statistics_commits.csv,gnu-octave_statistics_hullabaloo_CONTRIBUTING.md
ignitionrobotics_ign-cmake.git,_ignitionrobotics_ign-cmake.git_commits.csv,ignitionrobotics_ign-cmake.git_hullabaloo_CONTRIBUTING.md
boto_s3transfer,_boto_s3transfer_commits.csv,boto_s3transfer_hullabaloo_CONTRIBUTING.rst
derek73_python-nameparser,_derek73_python-nameparser_commits.csv,derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
doctrine_sql-formatter.git,_doctrine_sql-formatter.git_commits.csv,doctrine_sql-formatter.git_hullabaloo_CONTRIBUTING.md
kaminari_kaminari,_kaminari_kaminari_commits.csv,kaminari_kaminari_hullabaloo_CONTRIBUTING.md
coddingtonbear_python-measurement,_coddingtonbear_python-measurement_commits.csv,coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
editorconfig_editorconfig-core-c.git,_editorconfig_editorconfig-core-c.git_commits.csv,editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
libosinfo_osinfo-db.git,libosinfo_osinfo-db.git_commits.csv,libosinfo_osinfo-db.git_hullabaloo_CONTRIBUTING.md
joke2k_faker,_joke2k_faker_commits.csv,joke2k_faker_hullabaloo_CONTRIBUTING.rst
zopefoundation_zope.testing,_zopefoundation_zope.testing_commits.csv,zopefoundation_zope.testing_hullabaloo_CONTRIBUTING.md
npm_nopt,_npm_nopt_commits.csv,npm_nopt_hullabaloo_CONTRIBUTING.md
ocsigen_js_of_ocaml.git,_ocsigen_js_of_ocaml.git_commits.csv,ocsigen_js_of_ocaml.git_hullabaloo_CONTRIBUTING.md
google_gemmlowp,_google_gemmlowp_commits.csv,google_gemmlowp_hullabaloo_CONTRIBUTING.txt
iustin_pylibacl,_iustin_pylibacl_commits.csv,iustin_pylibacl_hullabaloo_CONTRIBUTING.md
PyFilesystem_pyfilesystem2,_PyFilesystem_pyfilesystem2_commits.csv,PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
pallets_werkzeug,_pallets_werkzeug_commits.csv,pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
include-what-you-use_include-what-you-use,_include-what-you-use_include-what-you-use_commits.csv,include-what-you-use_include-what-you-use_hullabaloo_CONTRIBUTING.md
GNOME_gjs.git,GNOME_gjs.git_commits.csv,GNOME_gjs.git_hullabaloo_CONTRIBUTING.md
openSUSE_open-build-service,_openSUSE_open-build-service_commits.csv,openSUSE_open-build-service_hullabaloo_CONTRIBUTING.md
zeromq_pyzmq.git,_zeromq_pyzmq.git_commits.csv,zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
hamcrest_hamcrest-php.git,_hamcrest_hamcrest-php.git_commits.csv,hamcrest_hamcrest-php.git_hullabaloo_CONTRIBUTING.md
swaywm_wlroots,_swaywm_wlroots_commits.csv,swaywm_wlroots_hullabaloo_CONTRIBUTING.md
egh_ledger-autosync,egh_ledger-autosync_commits.csv,egh_ledger-autosync_hullabaloo_CONTRIBUTING
major_MySQLTuner-perl,_major_MySQLTuner-perl_commits.csv,major_MySQLTuner-perl_hullabaloo_CONTRIBUTING.md
jim-easterbrook_pywws,_jim-easterbrook_pywws_commits.csv,jim-easterbrook_pywws_hullabaloo_CONTRIBUTING.rst
WoLpH_numpy-stl,_WoLpH_numpy-stl_commits.csv,WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
rstudio_httpuv.git,_rstudio_httpuv.git_commits.csv,rstudio_httpuv.git_hullabaloo_CONTRIBUTING.md
prometheus_client_python.git,_prometheus_client_python.git_commits.csv,prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
heynemann_preggy,_heynemann_preggy_commits.csv,heynemann_preggy_hullabaloo_CONTRIBUTING.md
zeromq_czmq.git,_zeromq_czmq.git_commits.csv,zeromq_czmq.git_hullabaloo_CONTRIBUTING.md
certbot_certbot.git,_certbot_certbot.git_commits.csv,certbot_certbot.git_hullabaloo_CONTRIBUTING.rst
python-trio_trio,_python-trio_trio_commits.csv,python-trio_trio_hullabaloo_CONTRIBUTING.md
mongoengine_flask-mongoengine,_mongoengine_flask-mongoengine_commits.csv,mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
ionelmc_python-tblib,_ionelmc_python-tblib_commits.csv,ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
brunonova_drmips,brunonova_drmips_commits.csv,brunonova_drmips_hullabaloo_CONTRIBUTING.md
Ultimaker_Cura,_Ultimaker_Cura_commits.csv,Ultimaker_Cura_hullabaloo_CONTRIBUTING.md
h2o_h2o,_h2o_h2o_commits.csv,h2o_h2o_hullabaloo_CONTRIBUTING.md
analogdevicesinc_libiio.git,_analogdevicesinc_libiio.git_commits.csv,analogdevicesinc_libiio.git_hullabaloo_CONTRIBUTING.md
Qiskit_qiskit-terra,_Qiskit_qiskit-terra_commits.csv,Qiskit_qiskit-terra_hullabaloo_CONTRIBUTING.md
castle-engine_castle-engine.git,_castle-engine_castle-engine.git_commits.csv,castle-engine_castle-engine.git_hullabaloo_CONTRIBUTING.markdown
rails_sprockets.git,_rails_sprockets.git_commits.csv,rails_sprockets.git_hullabaloo_CONTRIBUTING.md
rsnapshot_rsnapshot.git,_rsnapshot_rsnapshot.git_commits.csv,rsnapshot_rsnapshot.git_hullabaloo_CONTRIBUTING.md
ocaml_ocamlbuild.git,_ocaml_ocamlbuild.git_commits.csv,ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
karenetheridge_B-Hooks-Parser.git,_karenetheridge_B-Hooks-Parser.git_commits.csv,karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
ceres-solver_ceres-solver.git,_ceres-solver_ceres-solver.git_commits.csv,ceres-solver_ceres-solver.git_hullabaloo_CONTRIBUTING.md
jupyter_nbconvert,_jupyter_nbconvert_commits.csv,jupyter_nbconvert_hullabaloo_CONTRIBUTING.md
ComplianceAsCode_content,_ComplianceAsCode_content_commits.csv,ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
mu-editor_mu,_mu-editor_mu_commits.csv,mu-editor_mu_hullabaloo_CONTRIBUTING.rst
sopel-irc_sopel.git,_sopel-irc_sopel.git_commits.csv,sopel-irc_sopel.git_hullabaloo_CONTRIBUTING
dask_dask,_dask_dask_commits.csv,dask_dask_hullabaloo_CONTRIBUTING.md
jashkenas_underscore.git,_jashkenas_underscore.git_commits.csv,jashkenas_underscore.git_hullabaloo_CONTRIBUTING.md
npm_abbrev-js,_npm_abbrev-js_commits.csv,npm_abbrev-js_hullabaloo_CONTRIBUTING.md
the-tcpdump-group_tcpdump,_the-tcpdump-group_tcpdump_commits.csv,the-tcpdump-group_tcpdump_hullabaloo_CONTRIBUTING
EttusResearch_uhd,_EttusResearch_uhd_commits.csv,EttusResearch_uhd_hullabaloo_CONTRIBUTING.md
jupyter_jupyter_core,_jupyter_jupyter_core_commits.csv,jupyter_jupyter_core_hullabaloo_CONTRIBUTING.md
mlpack_mlpack,_mlpack_mlpack_commits.csv,mlpack_mlpack_hullabaloo_CONTRIBUTING.md
lxc_lxc.git,_lxc_lxc.git_commits.csv,lxc_lxc.git_hullabaloo_CONTRIBUTING
igraph_igraph,_igraph_igraph_commits.csv,igraph_igraph.git_hullabaloo_CONTRIBUTING.md
OpenPrinting_cups-filters,_OpenPrinting_cups-filters_commits.csv,OpenPrinting_cups-filters_hullabaloo_CONTRIBUTING.md
tpm2-software_tpm2-abrmd.git,_tpm2-software_tpm2-abrmd.git_commits.csv,tpm2-software_tpm2-abrmd.git_hullabaloo_CONTRIBUTING.md
Intel-Media-SDK_MediaSDK,_Intel-Media-SDK_MediaSDK_commits.csv,Intel-Media-SDK_MediaSDK_hullabaloo_CONTRIBUTING.md
google_brotli,_google_brotli_commits.csv,google_brotli_hullabaloo_CONTRIBUTING
matthewwithanm_django-imagekit.git,_matthewwithanm_django-imagekit.git_commits.csv,matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
CorsixTH_CorsixTH.git,_CorsixTH_CorsixTH.git_commits.csv,CorsixTH_CorsixTH.git_hullabaloo_CONTRIBUTING
fog_fog-rackspace,_fog_fog-rackspace_commits.csv,fog_fog-rackspace_hullabaloo_CONTRIBUTING.md
tinfoil_devise-two-factor.git,_tinfoil_devise-two-factor.git_commits.csv,tinfoil_devise-two-factor.git_hullabaloo_CONTRIBUTING.md
isaacs_node-glob.git,_isaacs_node-glob.git_commits.csv,isaacs_node-glob.git_hullabaloo_CONTRIBUTING.md
dagolden_class-insideout.git,_dagolden_class-insideout.git_commits.csv,dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
ntop_nDPI.git,_ntop_nDPI.git_commits.csv,ntop_nDPI.git_hullabaloo_CONTRIBUTING.md
lastpass_lastpass-cli,_lastpass_lastpass-cli_commits.csv,lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
OpenTTD_OpenTTD.git,_OpenTTD_OpenTTD.git_commits.csv,OpenTTD_OpenTTD.git_hullabaloo_CONTRIBUTING.md
mlpack_ensmallen,_mlpack_ensmallen_commits.csv,mlpack_ensmallen_hullabaloo_CONTRIBUTING.md
donnemartin_gitsome,_donnemartin_gitsome_commits.csv,donnemartin_gitsome_hullabaloo_CONTRIBUTING.md
RIPE-NCC_ripe.atlas.sagan,_RIPE-NCC_ripe.atlas.sagan_commits.csv,RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
jp9000_obs-studio.git,_jp9000_obs-studio.git_commits.csv,jp9000_obs-studio.git_hullabaloo_CONTRIBUTING
networkx_networkx.git,_networkx_networkx.git_commits.csv,networkx_networkx.git_hullabaloo_CONTRIBUTING.rst
intridea_multi_json,_intridea_multi_json_commits.csv,intridea_multi_json_hullabaloo_CONTRIBUTING.md
zsh-users_antigen,_zsh-users_antigen_commits.csv,zsh-users_antigen_hullabaloo_CONTRIBUTING.md
emcconville_wand,_emcconville_wand_commits.csv,emcconville_wand_hullabaloo_CONTRIBUTING.rst
perl-catalyst_Catalyst-Authentication-Credential-HTTP,_perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv,perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
sslmate_certspotter,_sslmate_certspotter_commits.csv,sslmate_certspotter_hullabaloo_CONTRIBUTING
jazzband_django-sortedm2m.git,_jazzband_django-sortedm2m.git_commits.csv,jazzband_django-sortedm2m.git_hullabaloo_CONTRIBUTING.md
pypa_pipenv.git,_pypa_pipenv.git_commits.csv,pypa_pipenv.git_hullabaloo_CONTRIBUTING.rst
GNOME_gedit.git,GNOME_gedit.git_commits.csv,GNOME_gedit.git_hullabaloo_CONTRIBUTING.md
royhills_arp-scan,_royhills_arp-scan_commits.csv,royhills_arp-scan_hullabaloo_CONTRIBUTING.md
mne-tools_mne-python.git,_mne-tools_mne-python.git_commits.csv,mne-tools_mne-python.git_hullabaloo_CONTRIBUTING.md
python-hyper_h11.git,_python-hyper_h11.git_commits.csv,python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
felixge_node-dateformat,_felixge_node-dateformat_commits.csv,felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
PointCloudLibrary_pcl,_PointCloudLibrary_pcl_commits.csv,PointCloudLibrary_pcl_hullabaloo_CONTRIBUTING.md
libwww-perl_HTTP-Message.git,_libwww-perl_HTTP-Message.git_commits.csv,libwww-perl_HTTP-Message.git_hullabaloo_CONTRIBUTING.md
Grokzen_redis-py-cluster,_Grokzen_redis-py-cluster_commits.csv,Grokzen_redis-py-cluster_hullabaloo_CONTRIBUTING.md
lttng-ust.git,lttng-ust.git_commits.csv,lttng-ust.git_hullabaloo_CONTRIBUTING.md
mongodb_motor,_mongodb_motor_commits.csv,mongodb_motor_hullabaloo_CONTRIBUTING.rst
Icinga_icingaweb2.git,_Icinga_icingaweb2.git_commits.csv,Icinga_icingaweb2.git_hullabaloo_CONTRIBUTING.md
libevent_libevent,_libevent_libevent_commits.csv,libevent_libevent_hullabaloo_CONTRIBUTING.md
bbatsov_powerpack.git,_bbatsov_powerpack.git_commits.csv,bbatsov_powerpack.git_hullabaloo_CONTRIBUTING.md
rthalley_dnspython.git,_rthalley_dnspython.git_commits.csv,rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
Ableton_link.git,_Ableton_link.git_commits.csv,Ableton_link.git_hullabaloo_CONTRIBUTING.md
Ranks_emojione,_Ranks_emojione_commits.csv,Ranks_emojione_hullabaloo_CONTRIBUTING.md
kelektiv_node-uuid,_kelektiv_node-uuid_commits.csv,kelektiv_node-uuid_hullabaloo_CONTRIBUTING.md
prometheus_pushgateway,_prometheus_pushgateway_commits.csv,prometheus_pushgateway_hullabaloo_CONTRIBUTING.md
pyjokes_pyjokes,_pyjokes_pyjokes_commits.csv,pyjokes_pyjokes_hullabaloo_CONTRIBUTING.md
amperser_proselint,_amperser_proselint_commits.csv,amperser_proselint_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_openrdate,_resurrecting-open-source-projects_openrdate_commits.csv,resurrecting-open-source-projects_openrdate_hullabaloo_CONTRIBUTING.md
ARMmbed_yotta.git,_ARMmbed_yotta.git_commits.csv,ARMmbed_yotta.git_hullabaloo_CONTRIBUTING.md
gnutls_libtasn1,gnutls_libtasn1_commits.csv,gnutls_libtasn1_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.schema,_zopefoundation_zope.schema_commits.csv,zopefoundation_zope.schema_hullabaloo_CONTRIBUTING.md
django-ldapdb_django-ldapdb,_django-ldapdb_django-ldapdb_commits.csv,django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
gitpython-developers_GitPython,_gitpython-developers_GitPython_commits.csv,gitpython-developers_GitPython_hullabaloo_CONTRIBUTING.md
OCamlPro_alt-ergo.git,_OCamlPro_alt-ergo.git_commits.csv,OCamlPro_alt-ergo.git_hullabaloo_CONTRIBUTING.md
pyca_pyopenssl,_pyca_pyopenssl_commits.csv,pyca_pyopenssl_hullabaloo_CONTRIBUTING.md
voxpupuli_beaker,_voxpupuli_beaker_commits.csv,voxpupuli_beaker_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.deprecation.git,_zopefoundation_zope.deprecation.git_commits.csv,zopefoundation_zope.deprecation.git_hullabaloo_CONTRIBUTING.md
canonical_lightdm.git,_canonical_lightdm.git_commits.csv,canonical_lightdm.git_hullabaloo_CONTRIBUTING.md
PracticallyGreen_omniauth-saml.git,_PracticallyGreen_omniauth-saml.git_commits.csv,PracticallyGreen_omniauth-saml.git_hullabaloo_CONTRIBUTING.md
django-haystack_django-haystack,_django-haystack_django-haystack_commits.csv,django-haystack_django-haystack_hullabaloo_CONTRIBUTING.md
multani_sonata,_multani_sonata_commits.csv,multani_sonata_hullabaloo_CONTRIBUTING.rst
google_fscrypt,_google_fscrypt_commits.csv,google_fscrypt_hullabaloo_CONTRIBUTING.md
silx-kit_silx.git,_silx-kit_silx.git_commits.csv,silx-kit_silx.git_hullabaloo_CONTRIBUTING
puppetlabs_clj-kitchensink.git,_puppetlabs_clj-kitchensink.git_commits.csv,puppetlabs_clj-kitchensink.git_hullabaloo_CONTRIBUTING.md
porridge_bambam,porridge_bambam_commits.csv,porridge_bambam_hullabaloo_CONTRIBUTING.md
joewing_jwm,_joewing_jwm_commits.csv,joewing_jwm_hullabaloo_CONTRIBUTING.md
hickford_MechanicalSoup,_hickford_MechanicalSoup_commits.csv,hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
cubiq_iscroll,_cubiq_iscroll_commits.csv,cubiq_iscroll_hullabaloo_CONTRIBUTING.md
gtimelog_gtimelog,_gtimelog_gtimelog_commits.csv,gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
GNOME_libgda,GNOME_libgda_commits.csv,GNOME_libgda_hullabaloo_CONTRIBUTING.md
openstack_python-swiftclient.git,_openstack_python-swiftclient.git_commits.csv,openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
prehor_amavisd-milter,_prehor_amavisd-milter_commits.csv,prehor_amavisd-milter_hullabaloo_CONTRIBUTING.md
GNOME_network-manager-applet,GNOME_network-manager-applet_commits.csv,GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
biojava_biojava.git,_biojava_biojava.git_commits.csv,biojava_biojava.git_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_scrot,_resurrecting-open-source-projects_scrot_commits.csv,resurrecting-open-source-projects_scrot_hullabaloo_CONTRIBUTING.md
mypaint_libmypaint,_mypaint_libmypaint_commits.csv,mypaint_libmypaint_hullabaloo_CONTRIBUTING.md
virt-manager_virt-manager,_virt-manager_virt-manager_commits.csv,virt-manager_virt-manager_hullabaloo_CONTRIBUTING.md
rails_jbuilder,_rails_jbuilder_commits.csv,rails_jbuilder_hullabaloo_CONTRIBUTING.md
libvirt_libvirt-ruby.git,libvirt_libvirt-ruby.git_commits.csv,libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
Haivision_srt.git,_Haivision_srt.git_commits.csv,Haivision_srt.git_hullabaloo_CONTRIBUTING.md
DamienCassou_beginend.git,_DamienCassou_beginend.git_commits.csv,DamienCassou_beginend.git_hullabaloo_CONTRIBUTING.md
pydicom_pydicom.git,_pydicom_pydicom.git_commits.csv,pydicom_pydicom.git_hullabaloo_CONTRIBUTING.md
FirefighterBlu3_python-pam,_FirefighterBlu3_python-pam_commits.csv,FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
MatMoul_g810-led.git,_MatMoul_g810-led.git_commits.csv,MatMoul_g810-led.git_hullabaloo_CONTRIBUTING.md
GoogleCloudPlatform_cloudsql-proxy.git,_GoogleCloudPlatform_cloudsql-proxy.git_commits.csv,GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_CONTRIBUTING.md
awslabs_amazon-ecr-credential-helper,awslabs_amazon-ecr-credential-helper_commits.csv,awslabs_amazon-ecr-credential-helper_hullabaloo_CONTRIBUTING.md
Exa-Networks_exabgp,Exa-Networks_exabgp_commits.csv,Exa-Networks_exabgp_hullabaloo_CONTRIBUTING.md
lxqt_qterminal.git,_lxqt_qterminal.git_commits.csv,lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
ddclient_ddclient.git,_ddclient_ddclient.git_commits.csv,ddclient_ddclient.git_hullabaloo_CONTRIBUTING.md
python-gitlab_python-gitlab.git,_python-gitlab_python-gitlab.git_commits.csv,python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_packit,_resurrecting-open-source-projects_packit_commits.csv,resurrecting-open-source-projects_packit_hullabaloo_CONTRIBUTING.md
LLNL_sundials.git,_LLNL_sundials.git_commits.csv,LLNL_sundials.git_hullabaloo_CONTRIBUTING.md
elmar_aptitude-robot,elmar_aptitude-robot_commits.csv,elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
doorkeeper-gem_doorkeeper,_doorkeeper-gem_doorkeeper_commits.csv,doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
rsyslog_rsyslog-doc,_rsyslog_rsyslog-doc_commits.csv,rsyslog_rsyslog-doc_hullabaloo_CONTRIBUTING.md
breunigs_python-librtmp-debian,breunigs_python-librtmp-debian_commits.csv,breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
pdfminer_pdfminer.six.git,_pdfminer_pdfminer.six.git_commits.csv,pdfminer_pdfminer.six.git_hullabaloo_CONTRIBUTING.md
google_python_portpicker,_google_python_portpicker_commits.csv,google_python_portpicker_hullabaloo_CONTRIBUTING.md
carljm_django-model-utils.git,_carljm_django-model-utils.git_commits.csv,carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
GNOME_template-glib.git,GNOME_template-glib.git_commits.csv,GNOME_template-glib.git_hullabaloo_CONTRIBUTING.md
alanxz_rabbitmq-c.git,_alanxz_rabbitmq-c.git_commits.csv,alanxz_rabbitmq-c.git_hullabaloo_CONTRIBUTING.md
davesteele_comitup,davesteele_comitup_commits.csv,davesteele_comitup_hullabaloo_CONTRIBUTING.md
google_flatbuffers.git,_google_flatbuffers.git_commits.csv,google_flatbuffers.git_hullabaloo_CONTRIBUTING.md
oneapi-src_oneTBB.git,_oneapi-src_oneTBB.git_commits.csv,oneapi-src_oneTBB.git_hullabaloo_CONTRIBUTING.md
un33k_django-ipware,_un33k_django-ipware_commits.csv,un33k_django-ipware_hullabaloo_CONTRIBUTING.md
luakit_luakit,_luakit_luakit_commits.csv,luakit_luakit_hullabaloo_CONTRIBUTING.md
trezor_trezor-firmware.git,_trezor_trezor-firmware.git_commits.csv,trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
sphinx-doc_sphinx.git,_sphinx-doc_sphinx.git_commits.csv,sphinx-doc_sphinx.git_hullabaloo_CONTRIBUTING.rst
OSGeo_grass.git,_OSGeo_grass.git_commits.csv,OSGeo_grass.git_hullabaloo_CONTRIBUTING.md
kasei_attean.git,_kasei_attean.git_commits.csv,kasei_attean.git_hullabaloo_CONTRIBUTING
gaetano-guerriero_eyeD3-debian,gaetano-guerriero_eyeD3-debian_commits.csv,gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
zeroc-ice_ice-debian-packaging.git,zeroc-ice_ice-debian-packaging.git_commits.csv,zeroc-ice_ice-debian-packaging.git_hullabaloo_CONTRIBUTING.md
pulseaudio_pulseaudio.git,pulseaudio_pulseaudio.git_commits.csv,pulseaudio_pulseaudio.git_hullabaloo_CONTRIBUTING.md
ionelmc_python-lazy-object-proxy.git,_ionelmc_python-lazy-object-proxy.git_commits.csv,ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
mikel_mail,_mikel_mail_commits.csv,mikel_mail_hullabaloo_CONTRIBUTING.md
Fluidsynth_fluidsynth.git,_Fluidsynth_fluidsynth.git_commits.csv,Fluidsynth_fluidsynth.git_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_stress,_resurrecting-open-source-projects_stress_commits.csv,resurrecting-open-source-projects_stress_hullabaloo_CONTRIBUTING.md
google_stenographer,_google_stenographer_commits.csv,google_stenographer_hullabaloo_CONTRIBUTING
hhatto_autopep8.git,_hhatto_autopep8.git_commits.csv,hhatto_autopep8.git_hullabaloo_CONTRIBUTING.rst
jpy-consortium_jpy,_jpy-consortium_jpy_commits.csv,jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
xtaran_unburden-home-dir,xtaran_unburden-home-dir_commits.csv,xtaran_unburden-home-dir_hullabaloo_CONTRIBUTING.md
jaap-karssenberg_zim-desktop-wiki.git,_jaap-karssenberg_zim-desktop-wiki.git_commits.csv,jaap-karssenberg_zim-desktop-wiki.git_hullabaloo_CONTRIBUTING.md
mongoengine_mongoengine,mongoengine_mongoengine_commits.csv,mongoengine_mongoengine_hullabaloo_CONTRIBUTING.rst
openwisp_django-x509,_openwisp_django-x509_commits.csv,openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
tox-dev_py-filelock,_tox-dev_py-filelock_commits.csv,tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
jeremyevans_sequel,_jeremyevans_sequel_commits.csv,jeremyevans_sequel_hullabaloo_CONTRIBUTING
survivejs_webpack-merge.git,_survivejs_webpack-merge.git_commits.csv,survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
scop_bash-completion,_scop_bash-completion_commits.csv,scop_bash-completion_hullabaloo_CONTRIBUTING.md
libcgroup_libcgroup,_libcgroup_libcgroup_commits.csv,libcgroup_libcgroup_hullabaloo_CONTRIBUTING.md
Smattr_rumur.git,Smattr_rumur.git_commits.csv,Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
lucc_khard,_lucc_khard_commits.csv,lucc_khard_hullabaloo_CONTRIBUTING.rst
Xaviju_inkscape-open-symbols,_Xaviju_inkscape-open-symbols_commits.csv,Xaviju_inkscape-open-symbols_hullabaloo_CONTRIBUTING.md
htop-dev_htop,_htop-dev_htop_commits.csv,htop-dev_htop_hullabaloo_CONTRIBUTING.md
doorkeeper-gem_doorkeeper-openid_connect.git,_doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv,doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_CONTRIBUTING.md
libinput_libinput,libinput_libinput_commits.csv,libinput_libinput_hullabaloo_CONTRIBUTING.md
o9000_tint2,o9000_tint2_commits.csv,o9000_tint2_hullabaloo_CONTRIBUTING.md
source-foundry_Hack,_source-foundry_Hack_commits.csv,source-foundry_Hack_hullabaloo_CONTRIBUTING.md
rizsotto_Bear,_rizsotto_Bear_commits.csv,rizsotto_Bear_hullabaloo_CONTRIBUTING.md
geopython_pycsw.git,_geopython_pycsw.git_commits.csv,geopython_pycsw.git_hullabaloo_CONTRIBUTING.rst
pallets-eco_flask-sqlalchemy,_pallets-eco_flask-sqlalchemy_commits.csv,pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
jashkenas_backbone,_jashkenas_backbone_commits.csv,jashkenas_backbone_hullabaloo_CONTRIBUTING.md
rails_rails-html-sanitizer,_rails_rails-html-sanitizer_commits.csv,rails_rails-html-sanitizer_hullabaloo_CONTRIBUTING.md
ipython_traitlets.git,_ipython_traitlets.git_commits.csv,ipython_traitlets.git_hullabaloo_CONTRIBUTING.md
dbus_dbus,dbus_dbus_commits.csv,dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
isaacs_inherits,_isaacs_inherits_commits.csv,isaacs_inherits_hullabaloo_CONTRIBUTING.md
ropensci_RNeXML.git,_ropensci_RNeXML.git_commits.csv,ropensci_RNeXML.git_hullabaloo_CONTRIBUTING.md
erlware_erlware_commons.git,_erlware_erlware_commons.git_commits.csv,erlware_erlware_commons.git_hullabaloo_CONTRIBUTING.md
openstreetmap_osm2pgsql.git,_openstreetmap_osm2pgsql.git_commits.csv,openstreetmap_osm2pgsql.git_hullabaloo_CONTRIBUTING.md
google_gopacket.git,_google_gopacket.git_commits.csv,google_gopacket.git_hullabaloo_CONTRIBUTING.md
PDAL_PDAL.git,_PDAL_PDAL.git_commits.csv,PDAL_PDAL.git_hullabaloo_CONTRIBUTING.md
janestreet_variantslib.git,_janestreet_variantslib.git_commits.csv,janestreet_variantslib.git_hullabaloo_CONTRIBUTING.md
Perl-Toolchain-Gang_ExtUtils-CBuilder.git,_Perl-Toolchain-Gang_ExtUtils-CBuilder.git_commits.csv,Perl-Toolchain-Gang_ExtUtils-CBuilder.git_hullabaloo_CONTRIBUTING
ipython_ipython_genutils,_ipython_ipython_genutils_commits.csv,ipython_ipython_genutils_hullabaloo_CONTRIBUTING.md
matthewwithanm_pilkit,_matthewwithanm_pilkit_commits.csv,matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
puppetlabs_puppetlabs-mysql,_puppetlabs_puppetlabs-mysql_commits.csv,puppetlabs_puppetlabs-mysql_hullabaloo_CONTRIBUTING.md
sinatra_sinatra.git,_sinatra_sinatra.git_commits.csv,sinatra_sinatra.git_hullabaloo_CONTRIBUTING.md
astropy_photutils.git,_astropy_photutils.git_commits.csv,astropy_photutils.git_hullabaloo_CONTRIBUTING.rst
igraph_igraph.git,_igraph_igraph.git_commits.csv,igraph_igraph.git_hullabaloo_CONTRIBUTING.md
PyCQA_flake8-polyfill.git,_PyCQA_flake8-polyfill.git_commits.csv,PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
google_pybadges.git,_google_pybadges.git_commits.csv,google_pybadges.git_hullabaloo_CONTRIBUTING.md
infirit_caja-admin,_infirit_caja-admin_commits.csv,infirit_caja-admin_hullabaloo_CONTRIBUTING.md
terser_terser,_terser_terser_commits.csv,terser_terser_hullabaloo_CONTRIBUTING.md
PyCQA_prospector,_PyCQA_prospector_commits.csv,PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
coq_coq,_coq_coq_commits.csv,coq_coq_hullabaloo_CONTRIBUTING.md
GNOME_vala.git,GNOME_vala.git_commits.csv,GNOME_vala.git_hullabaloo_CONTRIBUTING.md
aws_aws-cli,_aws_aws-cli_commits.csv,aws_aws-cli_hullabaloo_CONTRIBUTING.md
prawnpdf_prawn,_prawnpdf_prawn_commits.csv,prawnpdf_prawn_hullabaloo_CONTRIBUTING.md
google_yapf.git,_google_yapf.git_commits.csv,google_yapf.git_hullabaloo_CONTRIBUTING
pytest-dev_pytest.git,_pytest-dev_pytest.git_commits.csv,pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
ytdl-org_youtube-dl.git,_ytdl-org_youtube-dl.git_commits.csv,ytdl-org_youtube-dl.git_hullabaloo_CONTRIBUTING.md
pika_pika,_pika_pika_commits.csv,pika_pika_hullabaloo_CONTRIBUTING.md
xonsh_xonsh.git,_xonsh_xonsh.git_commits.csv,xonsh_xonsh.git_hullabaloo_CONTRIBUTING.rst
Backblaze_b2-sdk-python.git,_Backblaze_b2-sdk-python.git_commits.csv,Backblaze_b2-sdk-python.git_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-ntp.git,_puppetlabs_puppetlabs-ntp.git_commits.csv,puppetlabs_puppetlabs-ntp.git_hullabaloo_CONTRIBUTING.md
Beep6581_RawTherapee,_Beep6581_RawTherapee_commits.csv,Beep6581_RawTherapee_hullabaloo_CONTRIBUTING.md
geopandas_geopandas.git,_geopandas_geopandas.git_commits.csv,geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
assimp_assimp,_assimp_assimp_commits.csv,assimp_assimp_hullabaloo_CONTRIBUTING.md
jupyter_jupyter-sphinx.git,_jupyter_jupyter-sphinx.git_commits.csv,jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
Pylons_venusian,_Pylons_venusian_commits.csv,Pylons_venusian_hullabaloo_CONTRIBUTING.rst
jjjake_internetarchive.git,_jjjake_internetarchive.git_commits.csv,jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
cucumber_aruba.git,_cucumber_aruba.git_commits.csv,cucumber_aruba.git_hullabaloo_CONTRIBUTING.md
GNOME_gcr.git,GNOME_gcr.git_commits.csv,GNOME_gcr.git_hullabaloo_CONTRIBUTING.md
rackerlabs_kthresher,_rackerlabs_kthresher_commits.csv,rackerlabs_kthresher_hullabaloo_CONTRIBUTING.md
google_jimfs.git,_google_jimfs.git_commits.csv,google_jimfs.git_hullabaloo_CONTRIBUTING.md
openstack_rally.git,_openstack_rally.git_commits.csv,openstack_rally.git_hullabaloo_CONTRIBUTING.rst
jupyter_jupyter_client,_jupyter_jupyter_client_commits.csv,jupyter_jupyter_client_hullabaloo_CONTRIBUTING.md
beautify-web_js-beautify,_beautify-web_js-beautify_commits.csv,beautify-web_js-beautify_hullabaloo_CONTRIBUTING.md
KDAB_hotspot.git,_KDAB_hotspot.git_commits.csv,KDAB_hotspot.git_hullabaloo_CONTRIBUTING.md
lunarmodules_say.git,_lunarmodules_say.git_commits.csv,lunarmodules_say.git_hullabaloo_CONTRIBUTING.md
coturn_coturn,coturn_coturn_commits.csv,coturn_coturn_hullabaloo_CONTRIBUTING.md
jquery_jquery.git,_jquery_jquery.git_commits.csv,jquery_jquery.git_hullabaloo_CONTRIBUTING.md
cleishm_libneo4j-client,cleishm_libneo4j-client_commits.csv,cleishm_libneo4j-client_hullabaloo_CONTRIBUTING.md
python_typed_ast.git,_python_typed_ast.git_commits.csv,python_typed_ast.git_hullabaloo_CONTRIBUTING.md
neovim_neovim,_neovim_neovim_commits.csv,neovim_neovim_hullabaloo_CONTRIBUTING.md
pyutilib_pyutilib,_pyutilib_pyutilib_commits.csv,pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
prometheus_haproxy_exporter,_prometheus_haproxy_exporter_commits.csv,prometheus_haproxy_exporter_hullabaloo_CONTRIBUTING.md
muse-sequencer_muse.git,_muse-sequencer_muse.git_commits.csv,muse-sequencer_muse.git_hullabaloo_CONTRIBUTING
ahmetb_kubectx,_ahmetb_kubectx_commits.csv,ahmetb_kubectx_hullabaloo_CONTRIBUTING.md
guillaumechereau_goxel.git,_guillaumechereau_goxel.git_commits.csv,guillaumechereau_goxel.git_hullabaloo_CONTRIBUTING.md
matlab2tikz_matlab2tikz,_matlab2tikz_matlab2tikz_commits.csv,matlab2tikz_matlab2tikz_hullabaloo_CONTRIBUTING.md
pavlov99_json-rpc,_pavlov99_json-rpc_commits.csv,pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
pygraphviz_pygraphviz.git,_pygraphviz_pygraphviz.git_commits.csv,pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
fgrehm_vagrant-lxc,_fgrehm_vagrant-lxc_commits.csv,fgrehm_vagrant-lxc_hullabaloo_CONTRIBUTING.md
google_xsecurelock,google_xsecurelock_commits.csv,google_xsecurelock_hullabaloo_CONTRIBUTING
math-comp_math-comp,_math-comp_math-comp_commits.csv,math-comp_math-comp_hullabaloo_CONTRIBUTING.md
prometheus_snmp_exporter,_prometheus_snmp_exporter_commits.csv,prometheus_snmp_exporter_hullabaloo_CONTRIBUTING.md
solnic_virtus.git,_solnic_virtus.git_commits.csv,solnic_virtus.git_hullabaloo_CONTRIBUTING.md
hardbyte_python-can.git,_hardbyte_python-can.git_commits.csv,hardbyte_python-can.git_hullabaloo_CONTRIBUTING.md
karenetheridge_B-Hooks-OP-Check,_karenetheridge_B-Hooks-OP-Check_commits.csv,karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
robert7_nixnote2,_robert7_nixnote2_commits.csv,robert7_nixnote2_hullabaloo_CONTRIBUTING.md
datastax_python-driver.git,_datastax_python-driver.git_commits.csv,datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
petkaantonov_bluebird.git,_petkaantonov_bluebird.git_commits.csv,petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
Pylons_plaster_pastedeploy.git,_Pylons_plaster_pastedeploy.git_commits.csv,Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
juzzlin_DustRacing2D.git,_juzzlin_DustRacing2D.git_commits.csv,juzzlin_DustRacing2D.git_hullabaloo_CONTRIBUTING
zkat_ssri.git,_zkat_ssri.git_commits.csv,zkat_ssri.git_hullabaloo_CONTRIBUTING.md
jtauber_pyuca,_jtauber_pyuca_commits.csv,jtauber_pyuca_hullabaloo_CONTRIBUTING.md
fog_fog-local,_fog_fog-local_commits.csv,fog_fog-local_hullabaloo_CONTRIBUTING.md
pyproj4_pyproj.git,_pyproj4_pyproj.git_commits.csv,pyproj4_pyproj.git_hullabaloo_CONTRIBUTING.md
cespare_reflex.git,_cespare_reflex.git_commits.csv,cespare_reflex.git_hullabaloo_CONTRIBUTING.md
darold_pgbadger.git,_darold_pgbadger.git_commits.csv,darold_pgbadger.git_hullabaloo_CONTRIBUTING.md
Exiv2_exiv2.git,_Exiv2_exiv2.git_commits.csv,Exiv2_exiv2.git_hullabaloo_CONTRIBUTING.md
gitlab-org_ruby_gems_gitlab-mail_room.git,gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv,gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
google_highwayhash,_google_highwayhash_commits.csv,google_highwayhash_hullabaloo_CONTRIBUTING
scipy_scipy.git,_scipy_scipy.git_commits.csv,scipy_scipy.git_hullabaloo_CONTRIBUTING
libvirt_libvirt-python.git,libvirt_libvirt-python.git_commits.csv,libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
linkcheck_linkchecker.git,_linkcheck_linkchecker.git_commits.csv,linkcheck_linkchecker.git_hullabaloo_CONTRIBUTING.mdwn
seccomp_libseccomp,_seccomp_libseccomp_commits.csv,seccomp_libseccomp_hullabaloo_CONTRIBUTING.md
cesbit_libcleri.git,_cesbit_libcleri.git_commits.csv,cesbit_libcleri.git_hullabaloo_CONTRIBUTING.md
astropy_astropy-helpers,_astropy_astropy-helpers_commits.csv,astropy_astropy-helpers_hullabaloo_CONTRIBUTING.md
ruby-ldap_ruby-net-ldap.git,_ruby-ldap_ruby-net-ldap.git_commits.csv,ruby-ldap_ruby-net-ldap.git_hullabaloo_CONTRIBUTING.md
collective_icalendar,_collective_icalendar_commits.csv,collective_icalendar_hullabaloo_CONTRIBUTING.rst
vim-airline_vim-airline.git,_vim-airline_vim-airline.git_commits.csv,vim-airline_vim-airline.git_hullabaloo_CONTRIBUTING.md
jackfranklin_gulp-load-plugins,_jackfranklin_gulp-load-plugins_commits.csv,jackfranklin_gulp-load-plugins_hullabaloo_CONTRIBUTING.md
SCons_scons,_SCons_scons_commits.csv,SCons_scons_hullabaloo_CONTRIBUTING.md
digitalbazaar_pyld,_digitalbazaar_pyld_commits.csv,digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
rsms_inter,_rsms_inter_commits.csv,rsms_inter_hullabaloo_CONTRIBUTING.md
codership_galera,_codership_galera_commits.csv,codership_galera_hullabaloo_CONTRIBUTING.md
chaijs_chai,_chaijs_chai_commits.csv,chaijs_chai_hullabaloo_CONTRIBUTING.md
mathjax_MathJax,_mathjax_MathJax_commits.csv,mathjax_MathJax_hullabaloo_CONTRIBUTING.md
keras-team_keras,_keras-team_keras_commits.csv,keras-team_keras_hullabaloo_CONTRIBUTING.md
dbus_dbus-python,dbus_dbus-python_commits.csv,dbus_dbus-python_hullabaloo_CONTRIBUTING
python-ldap_python-ldap,_python-ldap_python-ldap_commits.csv,python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
SELinuxProject_selinux.git,_SELinuxProject_selinux.git_commits.csv,SELinuxProject_selinux.git_hullabaloo_CONTRIBUTING.md
mongodb_mongo-c-driver,mongodb_mongo-c-driver_commits.csv,mongodb_mongo-c-driver_hullabaloo_CONTRIBUTING.md
pallets_click.git,_pallets_click.git_commits.csv,pallets_click.git_hullabaloo_CONTRIBUTING.rst
ktbyers_netmiko,_ktbyers_netmiko_commits.csv,ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
varietywalls_variety.git,_varietywalls_variety.git_commits.csv,varietywalls_variety.git_hullabaloo_CONTRIBUTING.md
SELinuxProject_selinux,_SELinuxProject_selinux_commits.csv,SELinuxProject_selinux.git_hullabaloo_CONTRIBUTING.md
ipython_ipykernel.git,_ipython_ipykernel.git_commits.csv,ipython_ipykernel.git_hullabaloo_CONTRIBUTING.md
calamares_calamares.git,_calamares_calamares.git_commits.csv,calamares_calamares.git_hullabaloo_CONTRIBUTING.md
osantana_dicteval.git,_osantana_dicteval.git_commits.csv,osantana_dicteval.git_hullabaloo_CONTRIBUTING.md
doctrine_instantiator,_doctrine_instantiator_commits.csv,doctrine_instantiator_hullabaloo_CONTRIBUTING.md
gitlab-org_gitlab-gollum-rugged_adapter,gitlab-org_gitlab-gollum-rugged_adapter_commits.csv,gitlab-org_gitlab-gollum-rugged_adapter_hullabaloo_CONTRIBUTING.md
nojhan_liquidprompt.git,_nojhan_liquidprompt.git_commits.csv,nojhan_liquidprompt.git_hullabaloo_CONTRIBUTING.md
marshmallow-code_marshmallow.git,marshmallow-code_marshmallow.git_commits.csv,marshmallow-code_marshmallow.git_CONTRIBUTING.rst
OpenPrinting_cups,_OpenPrinting_cups_commits.csv,OpenPrinting_cups_hullabaloo_CONTRIBUTING.txt
jquery_sizzle.git,_jquery_sizzle.git_commits.csv,jquery_sizzle.git_hullabaloo_CONTRIBUTING.md
andialbrecht_sqlparse.git,_andialbrecht_sqlparse.git_commits.csv,andialbrecht_sqlparse.git_hullabaloo_CONTRIBUTING.md
apache_trafficserver,_apache_trafficserver_commits.csv,apache_trafficserver_hullabaloo_CONTRIBUTING.md
aws_aws-xray-sdk-python,_aws_aws-xray-sdk-python_commits.csv,aws_aws-xray-sdk-python_hullabaloo_CONTRIBUTING.md
JDimproved_JDim.git,_JDimproved_JDim.git_commits.csv,JDimproved_JDim.git_hullabaloo_CONTRIBUTING.md
spyder-ide_qtawesome,_spyder-ide_qtawesome_commits.csv,spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
puppetlabs_facter.git,_puppetlabs_facter.git_commits.csv,puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
elasticsearch_curator.git,_elasticsearch_curator.git_commits.csv,elasticsearch_curator.git_hullabaloo_CONTRIBUTING.md
jmcnamara_XlsxWriter,_jmcnamara_XlsxWriter_commits.csv,jmcnamara_XlsxWriter_hullabaloo_CONTRIBUTING.md
michaelrsweet_htmldoc.git,_michaelrsweet_htmldoc.git_commits.csv,michaelrsweet_htmldoc.git_hullabaloo_CONTRIBUTING.md
py-pdf_pypdf,_py-pdf_pypdf_commits.csv,py-pdf_pypdf_hullabaloo_CONTRIBUTING.md
marshmallow-code_flask-marshmallow.git,_marshmallow-code_flask-marshmallow.git_commits.csv,marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
resurrecting-open-source-projects_outguess,_resurrecting-open-source-projects_outguess_commits.csv,resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
GNOME_geary.git,GNOME_geary.git_commits.csv,GNOME_geary.git_hullabaloo_CONTRIBUTING.md
skvadrik_re2c,_skvadrik_re2c_commits.csv,skvadrik_re2c_hullabaloo_CONTRIBUTING.md
jashkenas_coffeescript,_jashkenas_coffeescript_commits.csv,jashkenas_coffeescript_hullabaloo_CONTRIBUTING.md
scikit-learn_scikit-learn.git,_scikit-learn_scikit-learn.git_commits.csv,scikit-learn_scikit-learn.git_hullabaloo_CONTRIBUTING.md
rdiff-backup_rdiff-backup.git,_rdiff-backup_rdiff-backup.git_commits.csv,rdiff-backup_rdiff-backup.git_hullabaloo_CONTRIBUTING.md
spyder-ide_qtpy,_spyder-ide_qtpy_commits.csv,spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
thoughtbot_shoulda-matchers,_thoughtbot_shoulda-matchers_commits.csv,thoughtbot_shoulda-matchers_hullabaloo_CONTRIBUTING.md
libxsmm_libxsmm,_libxsmm_libxsmm_commits.csv,libxsmm_libxsmm_hullabaloo_CONTRIBUTING.md
defunkt_mustache,_defunkt_mustache_commits.csv,defunkt_mustache_hullabaloo_CONTRIBUTING.md
letsencrypt_letsencrypt.git,_letsencrypt_letsencrypt.git_commits.csv,letsencrypt_letsencrypt.git_hullabaloo_CONTRIBUTING.rst
thoughtbot_factory_girl.git,_thoughtbot_factory_girl.git_commits.csv,thoughtbot_factory_girl.git_hullabaloo_CONTRIBUTING.md
oauth-xx_oauth-ruby,_oauth-xx_oauth-ruby_commits.csv,oauth-xx_oauth-ruby_hullabaloo_CONTRIBUTING.md
psf_black.git,_psf_black.git_commits.csv,psf_black.git_hullabaloo_CONTRIBUTING.md
mapnik_python-mapnik.git,_mapnik_python-mapnik.git_commits.csv,mapnik_python-mapnik.git_hullabaloo_CONTRIBUTING.md
GNOME_gnome-builder.git,GNOME_gnome-builder.git_commits.csv,GNOME_gnome-builder.git_hullabaloo_CONTRIBUTING.md
GNOME_gdk-pixbuf,GNOME_gdk-pixbuf_commits.csv,GNOME_gdk-pixbuf_hullabaloo_CONTRIBUTING.md
OSGeo_PROJ.git,_OSGeo_PROJ.git_commits.csv,OSGeo_PROJ.git_hullabaloo_CONTRIBUTING.md
softlayer_softlayer-python,_softlayer_softlayer-python_commits.csv,softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
tkf_emacs-jedi.git,_tkf_emacs-jedi.git_commits.csv,tkf_emacs-jedi.git_hullabaloo_CONTRIBUTING.md
giampaolo_psutil,_giampaolo_psutil_commits.csv,giampaolo_psutil_hullabaloo_CONTRIBUTING.md
IJHack_QtPass,_IJHack_QtPass_commits.csv,IJHack_QtPass_hullabaloo_CONTRIBUTING.md
pgbackrest_pgbackrest,_pgbackrest_pgbackrest_commits.csv,pgbackrest_pgbackrest_hullabaloo_CONTRIBUTING.md
emacs-lsp_lsp-mode.git,_emacs-lsp_lsp-mode.git_commits.csv,emacs-lsp_lsp-mode.git_hullabaloo_CONTRIBUTING.md
GNOME_libgweather.git,GNOME_libgweather.git_commits.csv,GNOME_libgweather.git_hullabaloo_CONTRIBUTING.md
shouldjs_should.js.git,_shouldjs_should.js.git_commits.csv,shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
pytest-dev_pytest-bdd.git,_pytest-dev_pytest-bdd.git_commits.csv,pytest-dev_pytest-bdd.git_hullabaloo_CONTRIBUTING.md
jupyter_terminado,_jupyter_terminado_commits.csv,jupyter_terminado_hullabaloo_CONTRIBUTING.rst
django-waffle_django-waffle,_django-waffle_django-waffle_commits.csv,django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
core_dune-common,core_dune-common_commits.csv,core_dune-common_hullabaloo_CONTRIBUTING.md
processone_fast_tls.git,_processone_fast_tls.git_commits.csv,processone_fast_tls.git_hullabaloo_CONTRIBUTING.md
metaodi_osmapi.git,_metaodi_osmapi.git_commits.csv,metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
kilobyte_ndctl,kilobyte_ndctl_commits.csv,kilobyte_ndctl_hullabaloo_CONTRIBUTING.md
kilobyte_memkind,kilobyte_memkind_commits.csv,kilobyte_memkind_hullabaloo_CONTRIBUTING
pallets_itsdangerous,_pallets_itsdangerous_commits.csv,pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
office_ghostwriter,office_ghostwriter_commits.csv,office_ghostwriter_hullabaloo_CONTRIBUTING.md
prometheus_mysqld_exporter,_prometheus_mysqld_exporter_commits.csv,prometheus_mysqld_exporter_hullabaloo_CONTRIBUTING.md
twilio_twilio-python,_twilio_twilio-python_commits.csv,twilio_twilio-python_hullabaloo_CONTRIBUTING.md
c4urself_bump2version,_c4urself_bump2version_commits.csv,c4urself_bump2version_hullabaloo_CONTRIBUTING.md
google_benchmark,_google_benchmark_commits.csv,google_benchmark_hullabaloo_CONTRIBUTING.md
drwetter_testssl.sh.git,_drwetter_testssl.sh.git_commits.csv,drwetter_testssl.sh.git_hullabaloo_CONTRIBUTING.md
pgRouting_pgrouting.git,_pgRouting_pgrouting.git_commits.csv,pgRouting_pgrouting.git_hullabaloo_CONTRIBUTING
trevorld_r-optparse.git,_trevorld_r-optparse.git_commits.csv,trevorld_r-optparse.git_hullabaloo_CONTRIBUTING
galaxyproject_bioblend,_galaxyproject_bioblend_commits.csv,galaxyproject_bioblend_hullabaloo_CONTRIBUTING.md
gawel_panoramisk.git,_gawel_panoramisk.git_commits.csv,gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
Blosc_c-blosc,_Blosc_c-blosc_commits.csv,Blosc_c-blosc_hullabaloo_CONTRIBUTING.md
rails_jquery-rails.git,_rails_jquery-rails.git_commits.csv,rails_jquery-rails.git_hullabaloo_CONTRIBUTING.md
kilobyte_pmemkv,kilobyte_pmemkv_commits.csv,kilobyte_pmemkv_hullabaloo_CONTRIBUTING.md
vim-syntastic_syntastic,_vim-syntastic_syntastic_commits.csv,vim-syntastic_syntastic_hullabaloo_CONTRIBUTING.md
processone_pkix.git,_processone_pkix.git_commits.csv,processone_pkix.git_hullabaloo_CONTRIBUTING.md
faye_faye,_faye_faye_commits.csv,faye_faye_hullabaloo_CONTRIBUTING.md
openstack_swift.git,_openstack_swift.git_commits.csv,openstack_swift.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.proxy,_zopefoundation_zope.proxy_commits.csv,zopefoundation_zope.proxy_hullabaloo_CONTRIBUTING.md
muammar_mkchromecast.git,_muammar_mkchromecast.git_commits.csv,muammar_mkchromecast.git_hullabaloo_CONTRIBUTING.md
alastair_python-musicbrainz-ngs,_alastair_python-musicbrainz-ngs_commits.csv,alastair_python-musicbrainz-ngs_hullabaloo_CONTRIBUTING.md
syncthing_syncthing.git,_syncthing_syncthing.git_commits.csv,syncthing_syncthing.git_hullabaloo_CONTRIBUTING.md
RIPE-NCC_ripe-atlas-cousteau.git,_RIPE-NCC_ripe-atlas-cousteau.git_commits.csv,RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
HaxeFoundation_haxe-debian,HaxeFoundation_haxe-debian_commits.csv,HaxeFoundation_haxe-debian_hullabaloo_CONTRIBUTING.md
quartz-scheduler_quartz,_quartz-scheduler_quartz_commits.csv,quartz-scheduler_quartz_hullabaloo_CONTRIBUTING.md
google_python-gflags.git,_google_python-gflags.git_commits.csv,google_python-gflags.git_hullabaloo_CONTRIBUTING.md
numba_numba.git,_numba_numba.git_commits.csv,numba_numba.git_hullabaloo_CONTRIBUTING.md
composer_semver,_composer_semver_commits.csv,composer_semver_hullabaloo_CONTRIBUTING.md
mdbootstrap_perfect-scrollbar,_mdbootstrap_perfect-scrollbar_commits.csv,mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
heroku_netrc,_heroku_netrc_commits.csv,heroku_netrc_hullabaloo_CONTRIBUTING.md
eclipse_paho.mqtt.python.git,_eclipse_paho.mqtt.python.git_commits.csv,eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
GNOME_folks,GNOME_folks_commits.csv,GNOME_folks_hullabaloo_CONTRIBUTING.md
sshguard_sshguard.git,sshguard_sshguard.git_commits.csv,sshguard_sshguard.git_hullabaloo_CONTRIBUTING.rst
requests-cache_requests-cache,_requests-cache_requests-cache_commits.csv,requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.testrunner,_zopefoundation_zope.testrunner_commits.csv,zopefoundation_zope.testrunner_hullabaloo_CONTRIBUTING.md
ua-parser_uap-core.git,_ua-parser_uap-core.git_commits.csv,ua-parser_uap-core.git_hullabaloo_CONTRIBUTING.md
voxpupuli_pypuppetdb,_voxpupuli_pypuppetdb_commits.csv,voxpupuli_pypuppetdb_hullabaloo_CONTRIBUTING.md
mozilla_source-map,_mozilla_source-map_commits.csv,mozilla_source-map_hullabaloo_CONTRIBUTING.md
libosinfo_osinfo-db-tools.git,libosinfo_osinfo-db-tools.git_commits.csv,libosinfo_osinfo-db-tools.git_hullabaloo_CONTRIBUTING.md
dagolden_math-random-oo.git,_dagolden_math-random-oo.git_commits.csv,dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
ionelmc_python-darkslide.git,_ionelmc_python-darkslide.git_commits.csv,ionelmc_python-darkslide.git_hullabaloo_CONTRIBUTING.rst
clojure_core.cache,_clojure_core.cache_commits.csv,clojure_core.cache_hullabaloo_CONTRIBUTING.md
unknown-horizons_unknown-horizons.git,_unknown-horizons_unknown-horizons.git_commits.csv,unknown-horizons_unknown-horizons.git_hullabaloo_CONTRIBUTING.md
pub_scm_linux_kernel_git_jberg_iw.git,pub_scm_linux_kernel_git_jberg_iw.git_commits.csv,pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
pydata_xarray,_pydata_xarray_commits.csv,pydata_xarray_hullabaloo_CONTRIBUTING.md
pantsbuild_pex.git,_pantsbuild_pex.git_commits.csv,pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
Diaoul_subliminal.git,_Diaoul_subliminal.git_commits.csv,Diaoul_subliminal.git_hullabaloo_CONTRIBUTING.md
certbot_josepy,_certbot_josepy_commits.csv,certbot_josepy_hullabaloo_CONTRIBUTING.rst
janestreet_sexplib.git,_janestreet_sexplib.git_commits.csv,janestreet_sexplib.git_hullabaloo_CONTRIBUTING.md
google_googletest.git,_google_googletest.git_commits.csv,google_googletest.git_hullabaloo_CONTRIBUTING.md
nginxinc_nginx-prometheus-exporter,_nginxinc_nginx-prometheus-exporter_commits.csv,nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
simd-everywhere_simde,_simd-everywhere_simde_commits.csv,simd-everywhere_simde_hullabaloo_CONTRIBUTING.md
AFLplusplus_AFLplusplus.git,_AFLplusplus_AFLplusplus.git_commits.csv,AFLplusplus_AFLplusplus.git_hullabaloo_CONTRIBUTING.md
pyparsing_pyparsing,_pyparsing_pyparsing_commits.csv,pyparsing_pyparsing_hullabaloo_CONTRIBUTING.md
EnterpriseDB_mysql_fdw.git,_EnterpriseDB_mysql_fdw.git_commits.csv,EnterpriseDB_mysql_fdw.git_hullabaloo_CONTRIBUTING.md
sphinx-contrib_restbuilder.git,_sphinx-contrib_restbuilder.git_commits.csv,sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
erikd_libsndfile,_erikd_libsndfile_commits.csv,erikd_libsndfile_hullabaloo_CONTRIBUTING.md
davidcelis_api-pagination.git,_davidcelis_api-pagination.git_commits.csv,davidcelis_api-pagination.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.component,_zopefoundation_zope.component_commits.csv,zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_txt2html,_resurrecting-open-source-projects_txt2html_commits.csv,resurrecting-open-source-projects_txt2html_hullabaloo_CONTRIBUTING.md
stephane_libmodbus.git,_stephane_libmodbus.git_commits.csv,stephane_libmodbus.git_hullabaloo_CONTRIBUTING.md
iovisor_bcc.git,_iovisor_bcc.git_commits.csv,iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
puppetlabs_puppetlabs-firewall,_puppetlabs_puppetlabs-firewall_commits.csv,puppetlabs_puppetlabs-firewall_hullabaloo_CONTRIBUTING.md
codedread_scour.git,_codedread_scour.git_commits.csv,codedread_scour.git_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-concat,_puppetlabs_puppetlabs-concat_commits.csv,puppetlabs_puppetlabs-concat_hullabaloo_CONTRIBUTING.md
philpem_printer-driver-ptouch.git,_philpem_printer-driver-ptouch.git_commits.csv,philpem_printer-driver-ptouch.git_hullabaloo_CONTRIBUTING.md
ycm-core_YouCompleteMe,_ycm-core_YouCompleteMe_commits.csv,ycm-core_YouCompleteMe_hullabaloo_CONTRIBUTING.md
totalopenstation_totalopenstation.git,_totalopenstation_totalopenstation.git_commits.csv,totalopenstation_totalopenstation.git_hullabaloo_CONTRIBUTING.md
diff-match-patch-python_diff-match-patch,_diff-match-patch-python_diff-match-patch_commits.csv,diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
dask_partd.git,_dask_partd.git_commits.csv,dask_partd.git_hullabaloo_CONTRIBUTING.md
boto_botocore,_boto_botocore_commits.csv,boto_botocore_hullabaloo_CONTRIBUTING.md
locationtech_jts.git,_locationtech_jts.git_commits.csv,locationtech_jts.git_hullabaloo_CONTRIBUTING.md
rclone_rclone.git,_rclone_rclone.git_commits.csv,rclone_rclone.git_hullabaloo_CONTRIBUTING.md
osmcode_osmium-tool.git,_osmcode_osmium-tool.git_commits.csv,osmcode_osmium-tool.git_hullabaloo_CONTRIBUTING.md
jtesta_ssh-audit.git,_jtesta_ssh-audit.git_commits.csv,jtesta_ssh-audit.git_hullabaloo_CONTRIBUTING.md
sferik_twitter,_sferik_twitter_commits.csv,sferik_twitter_hullabaloo_CONTRIBUTING.md
developit_preact.git,_developit_preact.git_commits.csv,developit_preact.git_hullabaloo_CONTRIBUTING.md
phpmyadmin_motranslator,_phpmyadmin_motranslator_commits.csv,phpmyadmin_motranslator_hullabaloo_CONTRIBUTING.md
matrix-org_synapse.git,_matrix-org_synapse.git_commits.csv,matrix-org_synapse.git_hullabaloo_CONTRIBUTING.rst
common-workflow-language_schema_salad,_common-workflow-language_schema_salad_commits.csv,common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
dagolden_Config-Identity.git,_dagolden_Config-Identity.git_commits.csv,dagolden_Config-Identity.git_hullabaloo_CONTRIBUTING.mkdn
eproxus_meck.git,_eproxus_meck.git_commits.csv,eproxus_meck.git_hullabaloo_CONTRIBUTING.md
plotly_plotly.R.git,_plotly_plotly.R.git_commits.csv,plotly_plotly.R.git_hullabaloo_CONTRIBUTING.md
ClusterLabs_pacemaker,_ClusterLabs_pacemaker_commits.csv,ClusterLabs_pacemaker_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-apache,_puppetlabs_puppetlabs-apache_commits.csv,puppetlabs_puppetlabs-apache_hullabaloo_CONTRIBUTING.md
PyWavelets_pywt.git,_PyWavelets_pywt.git_commits.csv,PyWavelets_pywt.git_hullabaloo_CONTRIBUTING.md
jazzband_django-recurrence,_jazzband_django-recurrence_commits.csv,jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
Backblaze_B2_Command_Line_Tool,_Backblaze_B2_Command_Line_Tool_commits.csv,Backblaze_B2_Command_Line_Tool_hullabaloo_CONTRIBUTING.md
mvz_ruby-gir-ffi,_mvz_ruby-gir-ffi_commits.csv,mvz_ruby-gir-ffi_hullabaloo_CONTRIBUTING.md
HandBrake_HandBrake,_HandBrake_HandBrake_commits.csv,HandBrake_HandBrake_hullabaloo_CONTRIBUTING.md
fail2ban_fail2ban,_fail2ban_fail2ban_commits.csv,fail2ban_fail2ban_hullabaloo_CONTRIBUTING.md
libwww-perl_URI.git,_libwww-perl_URI.git_commits.csv,libwww-perl_URI.git_hullabaloo_CONTRIBUTING.md
CESNET_libyang,CESNET_libyang_commits.csv,CESNET_libyang_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.event,_zopefoundation_zope.event_commits.csv,zopefoundation_zope.event_hullabaloo_CONTRIBUTING.md
intel_libva.git,_intel_libva.git_commits.csv,intel_libva.git_hullabaloo_CONTRIBUTING.md
nesquena_rabl,_nesquena_rabl_commits.csv,nesquena_rabl_hullabaloo_CONTRIBUTING.md
pytest-dev_pytest-cov.git,_pytest-dev_pytest-cov.git_commits.csv,pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
linuxmint_cjs.git,_linuxmint_cjs.git_commits.csv,linuxmint_cjs.git_hullabaloo_CONTRIBUTING.md
michaeljones_breathe.git,_michaeljones_breathe.git_commits.csv,michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
GoalSmashers_clean-css.git,_GoalSmashers_clean-css.git_commits.csv,GoalSmashers_clean-css.git_hullabaloo_CONTRIBUTING.md
smarty-php_smarty.git,_smarty-php_smarty.git_commits.csv,smarty-php_smarty.git_hullabaloo_CONTRIBUTING.md
coreruleset_coreruleset.git,_coreruleset_coreruleset.git_commits.csv,coreruleset_coreruleset.git_hullabaloo_CONTRIBUTING.md
mapbox_leaflet-image,_mapbox_leaflet-image_commits.csv,mapbox_leaflet-image_hullabaloo_CONTRIBUTING.md
httpie_httpie,_httpie_httpie_commits.csv,httpie_httpie_hullabaloo_CONTRIBUTING.rst
Icinga_icinga2,_Icinga_icinga2_commits.csv,Icinga_icinga2_hullabaloo_CONTRIBUTING.md
bit-team_backintime,_bit-team_backintime_commits.csv,bit-team_backintime_hullabaloo_CONTRIBUTING.md
bastibe_python-soundfile.git,_bastibe_python-soundfile.git_commits.csv,bastibe_python-soundfile.git_hullabaloo_CONTRIBUTING.rst
howardabrams_node-mocks-http,_howardabrams_node-mocks-http_commits.csv,howardabrams_node-mocks-http_hullabaloo_CONTRIBUTING.md
yrro_command-t,yrro_command-t_commits.csv,yrro_command-t_hullabaloo_CONTRIBUTING.md
zaach_jison,_zaach_jison_commits.csv,zaach_jison_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.interface.git,_zopefoundation_zope.interface.git_commits.csv,zopefoundation_zope.interface.git_hullabaloo_CONTRIBUTING.md
rbenv_ruby-build.git,_rbenv_ruby-build.git_commits.csv,rbenv_ruby-build.git_hullabaloo_CONTRIBUTING.md
mishoo_UglifyJS2,_mishoo_UglifyJS2_commits.csv,mishoo_UglifyJS2_hullabaloo_CONTRIBUTING.md
Pylons_hupper,_Pylons_hupper_commits.csv,Pylons_hupper_hullabaloo_CONTRIBUTING.rst
abishekvashok_cmatrix.git,_abishekvashok_cmatrix.git_commits.csv,abishekvashok_cmatrix.git_hullabaloo_CONTRIBUTING.md
gazebosim_gz-transport,_gazebosim_gz-transport_commits.csv,gazebosim_gz-transport_hullabaloo_CONTRIBUTING.md
django-extensions_django-extensions,_django-extensions_django-extensions_commits.csv,django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
P403n1x87_austin,P403n1x87_austin_commits.csv,P403n1x87_austin_hullabaloo_CONTRIBUTING.md
c-ares_c-ares.git,_c-ares_c-ares.git_commits.csv,c-ares_c-ares.git_hullabaloo_CONTRIBUTING
schacon_hg-git.git,_schacon_hg-git.git_commits.csv,schacon_hg-git.git_hullabaloo_CONTRIBUTING
fonttools_fonttools.git,_fonttools_fonttools.git_commits.csv,fonttools_fonttools.git_hullabaloo_CONTRIBUTING.md
mcmtroffaes_pathlib2.git,_mcmtroffaes_pathlib2.git_commits.csv,mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
moment_moment.git,_moment_moment.git_commits.csv,moment_moment.git_hullabaloo_CONTRIBUTING.md
zmartzone_cjose.git,_zmartzone_cjose.git_commits.csv,zmartzone_cjose.git_hullabaloo_CONTRIBUTING.md
ipython_ipython.git,_ipython_ipython.git_commits.csv,ipython_ipython.git_hullabaloo_CONTRIBUTING.md
webrtchacks_adapter,_webrtchacks_adapter_commits.csv,webrtchacks_adapter_hullabaloo_CONTRIBUTING
python-bugzilla_python-bugzilla,_python-bugzilla_python-bugzilla_commits.csv,python-bugzilla_python-bugzilla_hullabaloo_CONTRIBUTING.md
markdown-it_markdown-it,_markdown-it_markdown-it_commits.csv,markdown-it_markdown-it_hullabaloo_CONTRIBUTING.md
jazzband_django-debug-toolbar.git,_jazzband_django-debug-toolbar.git_commits.csv,jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
astropy_astroquery.git,_astropy_astroquery.git_commits.csv,astropy_astroquery.git_hullabaloo_CONTRIBUTING.rst
rasterio_rasterio.git,_rasterio_rasterio.git_commits.csv,rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
librsync_librsync,_librsync_librsync_commits.csv,librsync_librsync_hullabaloo_CONTRIBUTING.md
Xastir_Xastir.git,_Xastir_Xastir.git_commits.csv,Xastir_Xastir.git_hullabaloo_CONTRIBUTING
oar-team_oar,oar-team_oar_commits.csv,oar-team_oar_hullabaloo_CONTRIBUTING.md
zyga_padme,_zyga_padme_commits.csv,zyga_padme_hullabaloo_CONTRIBUTING.rst
zloirock_core-js.git,_zloirock_core-js.git_commits.csv,zloirock_core-js.git_hullabaloo_CONTRIBUTING.md
dropbox_dropbox-sdk-python,_dropbox_dropbox-sdk-python_commits.csv,dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
orcus_orcus,orcus_orcus_commits.csv,orcus_orcus_hullabaloo_CONTRIBUTING.md
scrapinghub_dateparser,_scrapinghub_dateparser_commits.csv,scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
gstreamer_orc,gstreamer_orc_commits.csv,gstreamer_orc_hullabaloo_CONTRIBUTING.md
nodejs_node-gyp.git,_nodejs_node-gyp.git_commits.csv,nodejs_node-gyp.git_hullabaloo_CONTRIBUTING.md
audacity_audacity.git,_audacity_audacity.git_commits.csv,audacity_audacity.git_hullabaloo_CONTRIBUTING.md
kornelski_pngquant.git,_kornelski_pngquant.git_commits.csv,kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
Iotic-Labs_py-ubjson,_Iotic-Labs_py-ubjson_commits.csv,Iotic-Labs_py-ubjson_hullabaloo_CONTRIBUTING.md
puppetlabs_puppetlabs-postgresql.git,_puppetlabs_puppetlabs-postgresql.git_commits.csv,puppetlabs_puppetlabs-postgresql.git_hullabaloo_CONTRIBUTING.md
GNOME_json-glib.git,GNOME_json-glib.git_commits.csv,GNOME_json-glib.git_hullabaloo_CONTRIBUTING.md
easyrdf_easyrdf.git,_easyrdf_easyrdf.git_commits.csv,easyrdf_easyrdf.git_hullabaloo_CONTRIBUTING.md
GNOME_gnome-clocks.git,GNOME_gnome-clocks.git_commits.csv,GNOME_gnome-clocks.git_hullabaloo_CONTRIBUTING.md
Leaflet_Leaflet.markercluster,_Leaflet_Leaflet.markercluster_commits.csv,Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
open-power_skiboot.git,_open-power_skiboot.git_commits.csv,open-power_skiboot.git_hullabaloo_CONTRIBUTING.md
osmcode_libosmium.git,_osmcode_libosmium.git_commits.csv,osmcode_libosmium.git_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_dcfldd,_resurrecting-open-source-projects_dcfldd_commits.csv,resurrecting-open-source-projects_dcfldd_hullabaloo_CONTRIBUTING.md
angband_angband,_angband_angband_commits.csv,angband_angband_hullabaloo_CONTRIBUTING.md
jazzband_django-pipeline,_jazzband_django-pipeline_commits.csv,jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
jquery_qunit.git,_jquery_qunit.git_commits.csv,jquery_qunit.git_hullabaloo_CONTRIBUTING.md
gpodder_gpodder,_gpodder_gpodder_commits.csv,gpodder_gpodder_hullabaloo_CONTRIBUTING.md
gpodder_mygpoclient,_gpodder_mygpoclient_commits.csv,gpodder_mygpoclient_hullabaloo_CONTRIBUTING.md
pytroll_satpy,_pytroll_satpy_commits.csv,pytroll_satpy_hullabaloo_CONTRIBUTING.rst
GNOME_mobile-broadband-provider-info,GNOME_mobile-broadband-provider-info_commits.csv,GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
01org_isa-l.git,_01org_isa-l.git_commits.csv,01org_isa-l.git_hullabaloo_CONTRIBUTING.md
jbeder_yaml-cpp,_jbeder_yaml-cpp_commits.csv,jbeder_yaml-cpp_hullabaloo_CONTRIBUTING.md
letsencrypt_letsencrypt,_letsencrypt_letsencrypt_commits.csv,letsencrypt_letsencrypt.git_hullabaloo_CONTRIBUTING.rst
cookiecutter_whichcraft,_cookiecutter_whichcraft_commits.csv,cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
clojure_tools.logging.git,_clojure_tools.logging.git_commits.csv,clojure_tools.logging.git_hullabaloo_CONTRIBUTING.md
javaparser_javaparser.git,_javaparser_javaparser.git_commits.csv,javaparser_javaparser.git_hullabaloo_CONTRIBUTING.md
boxbackup_boxbackup.git,_boxbackup_boxbackup.git_commits.csv,boxbackup_boxbackup.git_hullabaloo_CONTRIBUTING.md
encode_django-rest-framework,_encode_django-rest-framework_commits.csv,encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
matthewdeanmartin_terminaltables,_matthewdeanmartin_terminaltables_commits.csv,matthewdeanmartin_terminaltables_hullabaloo_CONTRIBUTING.md
akheron_jansson.git,_akheron_jansson.git_commits.csv,akheron_jansson.git_hullabaloo_CONTRIBUTING.md
namhyung_uftrace,_namhyung_uftrace_commits.csv,namhyung_uftrace_hullabaloo_CONTRIBUTING.md
PyTables_PyTables,_PyTables_PyTables_commits.csv,PyTables_PyTables_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_sniffit,_resurrecting-open-source-projects_sniffit_commits.csv,resurrecting-open-source-projects_sniffit_hullabaloo_CONTRIBUTING.md
nicolargo_glances,_nicolargo_glances_commits.csv,nicolargo_glances_hullabaloo_CONTRIBUTING.md
GNOME_glade,GNOME_glade_commits.csv,GNOME_glade_hullabaloo_CONTRIBUTING.md
prometheus_node_exporter,_prometheus_node_exporter_commits.csv,prometheus_node_exporter_hullabaloo_CONTRIBUTING.md
elastic_elasticsearch-ruby,_elastic_elasticsearch-ruby_commits.csv,elastic_elasticsearch-ruby_hullabaloo_CONTRIBUTING.md
lunarmodules_penlight,_lunarmodules_penlight_commits.csv,lunarmodules_penlight_hullabaloo_CONTRIBUTING.md
OSGeo_shapelib.git,_OSGeo_shapelib.git_commits.csv,OSGeo_shapelib.git_hullabaloo_CONTRIBUTING.md
idlesign_django-sitetree,_idlesign_django-sitetree_commits.csv,idlesign_django-sitetree_hullabaloo_CONTRIBUTING
coringao_jag,coringao_jag_commits.csv,coringao_jag_hullabaloo_CONTRIBUTING.md
intridea_grape-entity,_intridea_grape-entity_commits.csv,intridea_grape-entity_hullabaloo_CONTRIBUTING.md
dbus_dbus-glib.git,dbus_dbus-glib.git_commits.csv,dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
eventlet_eventlet.git,_eventlet_eventlet.git_commits.csv,eventlet_eventlet.git_hullabaloo_CONTRIBUTING.md
SethMMorton_natsort.git,_SethMMorton_natsort.git_commits.csv,SethMMorton_natsort.git_hullabaloo_CONTRIBUTING.md
guessit-io_guessit.git,_guessit-io_guessit.git_commits.csv,guessit-io_guessit.git_hullabaloo_CONTRIBUTING.rst
elastic_elasticsearch-py.git,_elastic_elasticsearch-py.git_commits.csv,elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
NagiosEnterprises_nrpe.git,_NagiosEnterprises_nrpe.git_commits.csv,NagiosEnterprises_nrpe.git_hullabaloo_CONTRIBUTING.md
pylons_plaster,_pylons_plaster_commits.csv,pylons_plaster_hullabaloo_CONTRIBUTING.rst
oath-toolkit_oath-toolkit,oath-toolkit_oath-toolkit_commits.csv,oath-toolkit_oath-toolkit_hullabaloo_CONTRIBUTING.md
flot_flot,_flot_flot_commits.csv,flot_flot_hullabaloo_CONTRIBUTING.md
squizlabs_PHP_CodeSniffer,_squizlabs_PHP_CodeSniffer_commits.csv,squizlabs_PHP_CodeSniffer_hullabaloo_CONTRIBUTING.md
rytilahti_python-miio.git,_rytilahti_python-miio.git_commits.csv,rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
Tux_Text-CSV_XS.git,_Tux_Text-CSV_XS.git_commits.csv,Tux_Text-CSV_XS.git_hullabaloo_CONTRIBUTING.md
RiotGames_buff-extensions,_RiotGames_buff-extensions_commits.csv,RiotGames_buff-extensions_hullabaloo_CONTRIBUTING.md
dompdf_dompdf,_dompdf_dompdf_commits.csv,dompdf_dompdf_hullabaloo_CONTRIBUTING.md
EsotericSoftware_kryo.git,_EsotericSoftware_kryo.git_commits.csv,EsotericSoftware_kryo.git_hullabaloo_CONTRIBUTING.md
ronf_asyncssh,_ronf_asyncssh_commits.csv,ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
zopefoundation_zc.lockfile,_zopefoundation_zc.lockfile_commits.csv,zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
qxmpp-project_qxmpp.git,_qxmpp-project_qxmpp.git_commits.csv,qxmpp-project_qxmpp.git_hullabaloo_CONTRIBUTING.md
eclipse-ee4j_eclipselink.git,_eclipse-ee4j_eclipselink.git_commits.csv,eclipse-ee4j_eclipselink.git_hullabaloo_CONTRIBUTING.md
ImageOptim_libimagequant.git,_ImageOptim_libimagequant.git_commits.csv,ImageOptim_libimagequant.git_hullabaloo_CONTRIBUTING.md
ianare_exif-py,_ianare_exif-py_commits.csv,ianare_exif-py_hullabaloo_CONTRIBUTING.rst
wtforms_flask-wtf.git,_wtforms_flask-wtf.git_commits.csv,wtforms_flask-wtf.git_hullabaloo_CONTRIBUTING.rst
websocket-client_websocket-client,_websocket-client_websocket-client_commits.csv,websocket-client_websocket-client_hullabaloo_CONTRIBUTING.md
i18next_i18next,_i18next_i18next_commits.csv,i18next_i18next_hullabaloo_CONTRIBUTING.md
aptly-dev_aptly.git,_aptly-dev_aptly.git_commits.csv,aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
GNOME_gvfs.git,GNOME_gvfs.git_commits.csv,GNOME_gvfs.git_hullabaloo_CONTRIBUTING.md
pymodbus-dev_pymodbus.git,_pymodbus-dev_pymodbus.git_commits.csv,pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
Leaflet_Leaflet,_Leaflet_Leaflet_commits.csv,Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
cyrusimap_cyrus-sasl.git,_cyrusimap_cyrus-sasl.git_commits.csv,cyrusimap_cyrus-sasl.git_hullabaloo_CONTRIBUTING.md
zopefoundation_zope.i18nmessageid,_zopefoundation_zope.i18nmessageid_commits.csv,zopefoundation_zope.i18nmessageid_hullabaloo_CONTRIBUTING.md
gitea_postgis_postgis.git,gitea_postgis_postgis.git_commits.csv,gitea_postgis_postgis.git_hullabaloo_CONTRIBUTING.md
theskumar_python-dotenv.git,_theskumar_python-dotenv.git_commits.csv,theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
sobolevn_django-split-settings,_sobolevn_django-split-settings_commits.csv,sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
Openshot_openshot-qt.git,_Openshot_openshot-qt.git_commits.csv,Openshot_openshot-qt.git_hullabaloo_CONTRIBUTING.md
powerline_powerline,_powerline_powerline_commits.csv,powerline_powerline_hullabaloo_CONTRIBUTING.rst
varvet_pundit,_varvet_pundit_commits.csv,varvet_pundit_hullabaloo_CONTRIBUTING.md
karenetheridge_Module-Manifest,_karenetheridge_Module-Manifest_commits.csv,karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
spacetelescope_gwcs,_spacetelescope_gwcs_commits.csv,spacetelescope_gwcs_hullabaloo_CONTRIBUTING.md
lxc_lxcfs.git,_lxc_lxcfs.git_commits.csv,lxc_lxcfs.git_hullabaloo_CONTRIBUTING.md
colmap_colmap,_colmap_colmap_commits.csv,colmap_colmap_hullabaloo_CONTRIBUTING.md
slime_slime,_slime_slime_commits.csv,slime_slime_hullabaloo_CONTRIBUTING.md
axel-download-accelerator_axel.git,_axel-download-accelerator_axel.git_commits.csv,axel-download-accelerator_axel.git_hullabaloo_CONTRIBUTING.md
tantale_deprecated.git,_tantale_deprecated.git_commits.csv,tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
schleuder_schleuder.git,schleuder_schleuder.git_commits.csv,schleuder_schleuder.git_hullabaloo_CONTRIBUTING.md
voxpupuli_librarian-puppet.git,_voxpupuli_librarian-puppet.git_commits.csv,voxpupuli_librarian-puppet.git_hullabaloo_CONTRIBUTING.md
jmaslak_Net-Netmask.git,_jmaslak_Net-Netmask.git_commits.csv,jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
jobovy_galpy.git,_jobovy_galpy.git_commits.csv,jobovy_galpy.git_hullabaloo_CONTRIBUTING.md
bobek_pkg-pimd,bobek_pkg-pimd_commits.csv,bobek_pkg-pimd_hullabaloo_CONTRIBUTING.md
pydanny_cached-property.git,_pydanny_cached-property.git_commits.csv,pydanny_cached-property.git_hullabaloo_CONTRIBUTING.rst
ros_robot_state_publisher,_ros_robot_state_publisher_commits.csv,ros_robot_state_publisher_hullabaloo_CONTRIBUTING.md
pazz_alot,_pazz_alot_commits.csv,pazz_alot_hullabaloo_CONTRIBUTING.rst
plasma_kwin.git,plasma_kwin.git_commits.csv,plasma_kwin.git_hullabaloo_CONTRIBUTING.md
resurrecting-open-source-projects_cbm,_resurrecting-open-source-projects_cbm_commits.csv,resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
intel_compute-runtime,_intel_compute-runtime_commits.csv,intel_compute-runtime_hullabaloo_CONTRIBUTING.md
thumbor_libthumbor,_thumbor_libthumbor_commits.csv,thumbor_libthumbor_hullabaloo_CONTRIBUTING
epeli_underscore.string,_epeli_underscore.string_commits.csv,epeli_underscore.string_hullabaloo_CONTRIBUTING.md
geopython_geolinks.git,_geopython_geolinks.git_commits.csv,geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
zeroc-ice_ice-builder-gradle-debian-packaging.git,zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv,zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_CONTRIBUTING.md
maxmind_geoip-api-perl.git,_maxmind_geoip-api-perl.git_commits.csv,maxmind_geoip-api-perl.git_hullabaloo_CONTRIBUTING.md
httprb_http.rb,_httprb_http.rb_commits.csv,httprb_http.rb_hullabaloo_CONTRIBUTING.md
rails_rails-dom-testing,_rails_rails-dom-testing_commits.csv,rails_rails-dom-testing_hullabaloo_CONTRIBUTING.md
jas_libntlm,jas_libntlm_commits.csv,jas_libntlm_hullabaloo_CONTRIBUTING.md
silx-kit_pyFAI,_silx-kit_pyFAI_commits.csv,silx-kit_pyFAI_hullabaloo_CONTRIBUTING.md
rakhimov_scram.git,_rakhimov_scram.git_commits.csv,rakhimov_scram.git_hullabaloo_CONTRIBUTING.md
capistrano_sshkit.git,_capistrano_sshkit.git_commits.csv,capistrano_sshkit.git_hullabaloo_CONTRIBUTING.md
X0rg_CPU-X.git,_X0rg_CPU-X.git_commits.csv,X0rg_CPU-X.git_hullabaloo_CONTRIBUTING.md
GNOME_gnome-desktop.git,GNOME_gnome-desktop.git_commits.csv,GNOME_gnome-desktop.git_hullabaloo_CONTRIBUTING.md
florimondmanca_djangorestframework-api-key,_florimondmanca_djangorestframework-api-key_commits.csv,florimondmanca_djangorestframework-api-key_hullabaloo_CONTRIBUTING.md
zopefoundation_BTrees.git,_zopefoundation_BTrees.git_commits.csv,zopefoundation_BTrees.git_hullabaloo_CONTRIBUTING.md
selectize_selectize.js,_selectize_selectize.js_commits.csv,selectize_selectize.js_hullabaloo_CONTRIBUTING.md
jupyter_nbformat,_jupyter_nbformat_commits.csv,jupyter_nbformat_hullabaloo_CONTRIBUTING.md
libidn_libidn2,libidn_libidn2_commits.csv,libidn_libidn2_hullabaloo_CONTRIBUTING
Electrostatics_apbs,_Electrostatics_apbs_commits.csv,Electrostatics_apbs_hullabaloo_CONTRIBUTING.md
checkpoint-restore_criu.git,_checkpoint-restore_criu.git_commits.csv,checkpoint-restore_criu.git_hullabaloo_CONTRIBUTING.md
untitaker_python-atomicwrites,_untitaker_python-atomicwrites_commits.csv,untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
dpmb_dpmb,dpmb_dpmb_commits.csv,dpmb_dpmb_hullabaloo_CONTRIBUTING.md
emcrisostomo_fswatch.git,_emcrisostomo_fswatch.git_commits.csv,emcrisostomo_fswatch.git_hullabaloo_CONTRIBUTING.md
flask-restful_flask-restful,_flask-restful_flask-restful_commits.csv,flask-restful_flask-restful_hullabaloo_CONTRIBUTING.md
joaotavora_yasnippet,_joaotavora_yasnippet_commits.csv,joaotavora_yasnippet_hullabaloo_CONTRIBUTING.md
geopython_stetl.git,_geopython_stetl.git_commits.csv,geopython_stetl.git_hullabaloo_CONTRIBUTING.md
django-polymorphic_django-polymorphic,_django-polymorphic_django-polymorphic_commits.csv,django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
jendrikseipp_vulture.git,_jendrikseipp_vulture.git_commits.csv,jendrikseipp_vulture.git_hullabaloo_CONTRIBUTING.rst
GNOME_gnome-calendar.git,GNOME_gnome-calendar.git_commits.csv,GNOME_gnome-calendar.git_hullabaloo_CONTRIBUTING.md
capistrano_capistrano.git,_capistrano_capistrano.git_commits.csv,capistrano_capistrano.git_hullabaloo_CONTRIBUTING
mwilliamson_spur.py.git,_mwilliamson_spur.py.git_commits.csv,mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst
troglobit_inadyn,_troglobit_inadyn_commits.csv,troglobit_inadyn_hullabaloo_CONTRIBUTING.md
1 repo_id commits_filepath fvf_filepath
2 aio-libs_aiomysql.git _aio-libs_aiomysql.git_commits.csv aio-libs_aiomysql.git_hullabaloo_CONTRIBUTING.rst
3 qTox_qTox _qTox_qTox_commits.csv qTox_qTox_hullabaloo_CONTRIBUTING.md
4 gohugoio_hugo.git _gohugoio_hugo.git_commits.csv gohugoio_hugo.git_hullabaloo_CONTRIBUTING.md
5 ycm-core_ycmd _ycm-core_ycmd_commits.csv ycm-core_ycmd_hullabaloo_CONTRIBUTING.md
6 aio-libs_aiohttp.git _aio-libs_aiohttp.git_commits.csv aio-libs_aiohttp.git_hullabaloo_CONTRIBUTING.rst
7 PyCQA_pycodestyle _PyCQA_pycodestyle_commits.csv PyCQA_pycodestyle_hullabaloo_CONTRIBUTING.rst
8 jupyter_jupyter_console _jupyter_jupyter_console_commits.csv jupyter_jupyter_console_hullabaloo_CONTRIBUTING.md
9 ixion_ixion.git ixion_ixion.git_commits.csv ixion_ixion.git_hullabaloo_CONTRIBUTING.md
10 box_genty.git _box_genty.git_commits.csv box_genty.git_hullabaloo_CONTRIBUTING.rst
11 hackebrot_jinja2-time _hackebrot_jinja2-time_commits.csv hackebrot_jinja2-time_hullabaloo_CONTRIBUTING.rst
12 resurrecting-open-source-projects_nbtscan _resurrecting-open-source-projects_nbtscan_commits.csv resurrecting-open-source-projects_nbtscan_hullabaloo_CONTRIBUTING.md
13 DonyorM_weresync.git _DonyorM_weresync.git_commits.csv DonyorM_weresync.git_hullabaloo_CONTRIBUTING.rst
14 webcamoid_webcamoid.git _webcamoid_webcamoid.git_commits.csv webcamoid_webcamoid.git_hullabaloo_CONTRIBUTING.md
15 datalad_datalad datalad_datalad_commits.csv datalad_datalad_hullabaloo_CONTRIBUTING.md
16 korfuri_django-prometheus _korfuri_django-prometheus_commits.csv korfuri_django-prometheus_hullabaloo_CONTRIBUTING.md
17 lualdap_lualdap.git _lualdap_lualdap.git_commits.csv lualdap_lualdap.git_hullabaloo_CONTRIBUTING.md
18 iovisor_bpftrace _iovisor_bpftrace_commits.csv iovisor_bpftrace_hullabaloo_CONTRIBUTING-TOOLS.md
19 stachenov_quazip.git _stachenov_quazip.git_commits.csv stachenov_quazip.git_hullabaloo_CONTRIBUTING.md
20 netty_netty _netty_netty_commits.csv netty_netty_hullabaloo_CONTRIBUTING.md
21 twbs_bootstrap-sass _twbs_bootstrap-sass_commits.csv twbs_bootstrap-sass_hullabaloo_CONTRIBUTING.md
22 libosinfo_libosinfo.git libosinfo_libosinfo.git_commits.csv libosinfo_libosinfo.git_hullabaloo_CONTRIBUTING.md
23 zopefoundation_roman _zopefoundation_roman_commits.csv zopefoundation_roman_hullabaloo_CONTRIBUTING.md
24 googlei18n_fontmake.git _googlei18n_fontmake.git_commits.csv googlei18n_fontmake.git_hullabaloo_CONTRIBUTING.md
25 Graylog2_gelf-rb _Graylog2_gelf-rb_commits.csv Graylog2_gelf-rb_hullabaloo_CONTRIBUTING.md
26 mqttjs_mqtt-packet _mqttjs_mqtt-packet_commits.csv mqttjs_mqtt-packet_hullabaloo_CONTRIBUTING.md
27 KhronosGroup_Vulkan-Tools _KhronosGroup_Vulkan-Tools_commits.csv KhronosGroup_Vulkan-Tools_hullabaloo_CONTRIBUTING.md
28 tqdm_tqdm.git _tqdm_tqdm.git_commits.csv tqdm_tqdm.git_hullabaloo_CONTRIBUTING.md
29 ranger_ranger.git _ranger_ranger.git_commits.csv ranger_ranger.git_hullabaloo_CONTRIBUTING.md
30 intridea_oauth2 _intridea_oauth2_commits.csv intridea_oauth2_hullabaloo_CONTRIBUTING.md
31 timothycrosley_hug.git _timothycrosley_hug.git_commits.csv timothycrosley_hug.git_hullabaloo_CONTRIBUTING.md
32 eavgerinos_pkg-pick eavgerinos_pkg-pick_commits.csv eavgerinos_pkg-pick_hullabaloo_CONTRIBUTING.md
33 bk138_gromit-mpx.git _bk138_gromit-mpx.git_commits.csv bk138_gromit-mpx.git_hullabaloo_CONTRIBUTING.md
34 twisted_pydoctor _twisted_pydoctor_commits.csv twisted_pydoctor_hullabaloo_CONTRIBUTING.rst
35 Motion-Project_motion _Motion-Project_motion_commits.csv Motion-Project_motion_hullabaloo_CONTRIBUTING.md
36 watson-developer-cloud_python-sdk.git _watson-developer-cloud_python-sdk.git_commits.csv watson-developer-cloud_python-sdk.git_hullabaloo_CONTRIBUTING.md
37 vcr_vcr _vcr_vcr_commits.csv _vcr_vcr_CONTRIBUTING.md
38 scikit-learn-contrib_imbalanced-learn.git _scikit-learn-contrib_imbalanced-learn.git_commits.csv scikit-learn-contrib_imbalanced-learn.git_hullabaloo_CONTRIBUTING.rst
39 ninja-build_ninja.git _ninja-build_ninja.git_commits.csv ninja-build_ninja.git_hullabaloo_CONTRIBUTING.md
40 olive-editor_olive _olive-editor_olive_commits.csv olive-editor_olive_hullabaloo_CONTRIBUTING.md
41 lostisland_faraday_middleware _lostisland_faraday_middleware_commits.csv lostisland_faraday_middleware_hullabaloo_CONTRIBUTING.md
42 gcsideal_syslog-ng-debian gcsideal_syslog-ng-debian_commits.csv gcsideal_syslog-ng-debian_hullabaloo_CONTRIBUTING.md
43 getpelican_pelican _getpelican_pelican_commits.csv getpelican_pelican_hullabaloo_CONTRIBUTING.rst
44 moose_MooseX-Runnable _moose_MooseX-Runnable_commits.csv moose_MooseX-Runnable_hullabaloo_CONTRIBUTING
45 tpope_vim-pathogen.git _tpope_vim-pathogen.git_commits.csv tpope_vim-pathogen.git_hullabaloo_CONTRIBUTING.markdown
46 ocaml_dune.git _ocaml_dune.git_commits.csv ocaml_dune.git_hullabaloo_CONTRIBUTING.md
47 pyqtgraph_pyqtgraph.git _pyqtgraph_pyqtgraph.git_commits.csv pyqtgraph_pyqtgraph.git_hullabaloo_CONTRIBUTING.txt
48 coringao_pekka-kana-2 coringao_pekka-kana-2_commits.csv coringao_pekka-kana-2_hullabaloo_CONTRIBUTING.md
49 processone_eimp.git _processone_eimp.git_commits.csv processone_eimp.git_hullabaloo_CONTRIBUTING.md
50 plastex_plastex _plastex_plastex_commits.csv plastex_plastex_hullabaloo_CONTRIBUTING.md
51 mruby-debian_mruby mruby-debian_mruby_commits.csv mruby-debian_mruby_hullabaloo_CONTRIBUTING.md
52 processone_stun.git _processone_stun.git_commits.csv processone_stun.git_hullabaloo_CONTRIBUTING.md
53 jazzband_django-push-notifications _jazzband_django-push-notifications_commits.csv jazzband_django-push-notifications_hullabaloo_CONTRIBUTING.md
54 box_flaky.git _box_flaky.git_commits.csv box_flaky.git_hullabaloo_CONTRIBUTING.rst
55 amueller_word_cloud _amueller_word_cloud_commits.csv amueller_word_cloud_hullabaloo_CONTRIBUTING.md
56 kivy_kivy _kivy_kivy_commits.csv kivy_kivy_hullabaloo_CONTRIBUTING.md
57 opencontainers_runc _opencontainers_runc_commits.csv opencontainers_runc_hullabaloo_CONTRIBUTING.md
58 bitletorg_weupnp.git _bitletorg_weupnp.git_commits.csv bitletorg_weupnp.git_hullabaloo_CONTRIBUTING.md
59 heynemann_pyvows.git _heynemann_pyvows.git_commits.csv heynemann_pyvows.git_hullabaloo_CONTRIBUTING.md
60 KhronosGroup_SPIRV-LLVM-Translator _KhronosGroup_SPIRV-LLVM-Translator_commits.csv KhronosGroup_SPIRV-LLVM-Translator_hullabaloo_CONTRIBUTING.md
61 puppetlabs_marionette-collective _puppetlabs_marionette-collective_commits.csv puppetlabs_marionette-collective_hullabaloo_CONTRIBUTING.md
62 puppetlabs_puppetlabs-xinetd _puppetlabs_puppetlabs-xinetd_commits.csv puppetlabs_puppetlabs-xinetd_hullabaloo_CONTRIBUTING.md
63 ioquake_ioq3 _ioquake_ioq3_commits.csv ioquake_ioq3_hullabaloo_CONTRIBUTING.md
64 docker_compose _docker_compose_commits.csv docker_compose_hullabaloo_CONTRIBUTING.md
65 plasma_kscreen.git plasma_kscreen.git_commits.csv plasma_kscreen.git_hullabaloo_CONTRIBUTING.md
66 nvbn_thefuck.git _nvbn_thefuck.git_commits.csv nvbn_thefuck.git_hullabaloo_CONTRIBUTING.md
67 mapbox_mapnik-vector-tile.git _mapbox_mapnik-vector-tile.git_commits.csv mapbox_mapnik-vector-tile.git_hullabaloo_CONTRIBUTING.md
68 mawww_kakoune.git _mawww_kakoune.git_commits.csv mawww_kakoune.git_hullabaloo_CONTRIBUTING
69 eslint_eslint-scope.git _eslint_eslint-scope.git_commits.csv eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
70 GNOME_balsa GNOME_balsa_commits.csv GNOME_balsa_hullabaloo_CONTRIBUTING.md
71 jupyter_notebook.git _jupyter_notebook.git_commits.csv jupyter_notebook.git_hullabaloo_CONTRIBUTING.md
72 eslint_eslint _eslint_eslint_commits.csv eslint_eslint-scope.git_hullabaloo_CONTRIBUTING.md
73 mfontanini_libtins.git _mfontanini_libtins.git_commits.csv mfontanini_libtins.git_hullabaloo_CONTRIBUTING.md
74 ukui_peony ukui_peony_commits.csv ukui_peony_hullabaloo_CONTRIBUTING.md
75 publicsuffix_list _publicsuffix_list_commits.csv publicsuffix_list_hullabaloo_CONTRIBUTING.md
76 pimutils_vdirsyncer _pimutils_vdirsyncer_commits.csv pimutils_vdirsyncer_hullabaloo_CONTRIBUTING.rst
77 rr-debugger_rr.git _rr-debugger_rr.git_commits.csv rr-debugger_rr.git_hullabaloo_CONTRIBUTING.md
78 openalpr_openalpr openalpr_openalpr_commits.csv openalpr_openalpr_hullabaloo_CONTRIBUTING.md
79 Mottie_tablesorter.git _Mottie_tablesorter.git_commits.csv Mottie_tablesorter.git_hullabaloo_CONTRIBUTING.md
80 nikic_PHP-Parser _nikic_PHP-Parser_commits.csv nikic_PHP-Parser_hullabaloo_CONTRIBUTING.md
81 tmuxinator_tmuxinator _tmuxinator_tmuxinator_commits.csv tmuxinator_tmuxinator_hullabaloo_CONTRIBUTING.md
82 Nuitka_Nuitka Nuitka_Nuitka_commits.csv Nuitka_Nuitka_hullabaloo_CONTRIBUTING.md
83 dahlia_libsass-python.git _dahlia_libsass-python.git_commits.csv dahlia_libsass-python.git_hullabaloo_CONTRIBUTING.rst
84 intel_intel-vaapi-driver.git _intel_intel-vaapi-driver.git_commits.csv intel_intel-vaapi-driver.git_hullabaloo_CONTRIBUTING.md
85 iem-projects_ambix.git _iem-projects_ambix.git_commits.csv iem-projects_ambix.git_hullabaloo_CONTRIBUTING.md
86 mkdocs_mkdocs _mkdocs_mkdocs_commits.csv mkdocs_mkdocs_hullabaloo_CONTRIBUTING.md
87 boto_boto3 _boto_boto3_commits.csv boto_boto3_hullabaloo_CONTRIBUTING.rst
88 github_git-lfs.git _github_git-lfs.git_commits.csv github_git-lfs.git_hullabaloo_CONTRIBUTING.md
89 jquast_blessed _jquast_blessed_commits.csv jquast_blessed_hullabaloo_CONTRIBUTING.rst
90 Storyyeller_enjarify _Storyyeller_enjarify_commits.csv Storyyeller_enjarify_hullabaloo_CONTRIBUTING.txt
91 gnu-octave_statistics _gnu-octave_statistics_commits.csv gnu-octave_statistics_hullabaloo_CONTRIBUTING.md
92 ignitionrobotics_ign-cmake.git _ignitionrobotics_ign-cmake.git_commits.csv ignitionrobotics_ign-cmake.git_hullabaloo_CONTRIBUTING.md
93 boto_s3transfer _boto_s3transfer_commits.csv boto_s3transfer_hullabaloo_CONTRIBUTING.rst
94 derek73_python-nameparser _derek73_python-nameparser_commits.csv derek73_python-nameparser_hullabaloo_CONTRIBUTING.md
95 doctrine_sql-formatter.git _doctrine_sql-formatter.git_commits.csv doctrine_sql-formatter.git_hullabaloo_CONTRIBUTING.md
96 kaminari_kaminari _kaminari_kaminari_commits.csv kaminari_kaminari_hullabaloo_CONTRIBUTING.md
97 coddingtonbear_python-measurement _coddingtonbear_python-measurement_commits.csv coddingtonbear_python-measurement_hullabaloo_CONTRIBUTING.md
98 editorconfig_editorconfig-core-c.git _editorconfig_editorconfig-core-c.git_commits.csv editorconfig_editorconfig-core-c.git_hullabaloo_CONTRIBUTING
99 libosinfo_osinfo-db.git libosinfo_osinfo-db.git_commits.csv libosinfo_osinfo-db.git_hullabaloo_CONTRIBUTING.md
100 joke2k_faker _joke2k_faker_commits.csv joke2k_faker_hullabaloo_CONTRIBUTING.rst
101 zopefoundation_zope.testing _zopefoundation_zope.testing_commits.csv zopefoundation_zope.testing_hullabaloo_CONTRIBUTING.md
102 npm_nopt _npm_nopt_commits.csv npm_nopt_hullabaloo_CONTRIBUTING.md
103 ocsigen_js_of_ocaml.git _ocsigen_js_of_ocaml.git_commits.csv ocsigen_js_of_ocaml.git_hullabaloo_CONTRIBUTING.md
104 google_gemmlowp _google_gemmlowp_commits.csv google_gemmlowp_hullabaloo_CONTRIBUTING.txt
105 iustin_pylibacl _iustin_pylibacl_commits.csv iustin_pylibacl_hullabaloo_CONTRIBUTING.md
106 PyFilesystem_pyfilesystem2 _PyFilesystem_pyfilesystem2_commits.csv PyFilesystem_pyfilesystem2_hullabaloo_CONTRIBUTING.md
107 pallets_werkzeug _pallets_werkzeug_commits.csv pallets_werkzeug_hullabaloo_CONTRIBUTING.rst
108 include-what-you-use_include-what-you-use _include-what-you-use_include-what-you-use_commits.csv include-what-you-use_include-what-you-use_hullabaloo_CONTRIBUTING.md
109 GNOME_gjs.git GNOME_gjs.git_commits.csv GNOME_gjs.git_hullabaloo_CONTRIBUTING.md
110 openSUSE_open-build-service _openSUSE_open-build-service_commits.csv openSUSE_open-build-service_hullabaloo_CONTRIBUTING.md
111 zeromq_pyzmq.git _zeromq_pyzmq.git_commits.csv zeromq_pyzmq.git_hullabaloo_CONTRIBUTING.md
112 hamcrest_hamcrest-php.git _hamcrest_hamcrest-php.git_commits.csv hamcrest_hamcrest-php.git_hullabaloo_CONTRIBUTING.md
113 swaywm_wlroots _swaywm_wlroots_commits.csv swaywm_wlroots_hullabaloo_CONTRIBUTING.md
114 egh_ledger-autosync egh_ledger-autosync_commits.csv egh_ledger-autosync_hullabaloo_CONTRIBUTING
115 major_MySQLTuner-perl _major_MySQLTuner-perl_commits.csv major_MySQLTuner-perl_hullabaloo_CONTRIBUTING.md
116 jim-easterbrook_pywws _jim-easterbrook_pywws_commits.csv jim-easterbrook_pywws_hullabaloo_CONTRIBUTING.rst
117 WoLpH_numpy-stl _WoLpH_numpy-stl_commits.csv WoLpH_numpy-stl_hullabaloo_CONTRIBUTING.rst
118 rstudio_httpuv.git _rstudio_httpuv.git_commits.csv rstudio_httpuv.git_hullabaloo_CONTRIBUTING.md
119 prometheus_client_python.git _prometheus_client_python.git_commits.csv prometheus_client_python.git_hullabaloo_CONTRIBUTING.md
120 heynemann_preggy _heynemann_preggy_commits.csv heynemann_preggy_hullabaloo_CONTRIBUTING.md
121 zeromq_czmq.git _zeromq_czmq.git_commits.csv zeromq_czmq.git_hullabaloo_CONTRIBUTING.md
122 certbot_certbot.git _certbot_certbot.git_commits.csv certbot_certbot.git_hullabaloo_CONTRIBUTING.rst
123 python-trio_trio _python-trio_trio_commits.csv python-trio_trio_hullabaloo_CONTRIBUTING.md
124 mongoengine_flask-mongoengine _mongoengine_flask-mongoengine_commits.csv mongoengine_flask-mongoengine_hullabaloo_CONTRIBUTING.md
125 ionelmc_python-tblib _ionelmc_python-tblib_commits.csv ionelmc_python-tblib_hullabaloo_CONTRIBUTING.rst
126 brunonova_drmips brunonova_drmips_commits.csv brunonova_drmips_hullabaloo_CONTRIBUTING.md
127 Ultimaker_Cura _Ultimaker_Cura_commits.csv Ultimaker_Cura_hullabaloo_CONTRIBUTING.md
128 h2o_h2o _h2o_h2o_commits.csv h2o_h2o_hullabaloo_CONTRIBUTING.md
129 analogdevicesinc_libiio.git _analogdevicesinc_libiio.git_commits.csv analogdevicesinc_libiio.git_hullabaloo_CONTRIBUTING.md
130 Qiskit_qiskit-terra _Qiskit_qiskit-terra_commits.csv Qiskit_qiskit-terra_hullabaloo_CONTRIBUTING.md
131 castle-engine_castle-engine.git _castle-engine_castle-engine.git_commits.csv castle-engine_castle-engine.git_hullabaloo_CONTRIBUTING.markdown
132 rails_sprockets.git _rails_sprockets.git_commits.csv rails_sprockets.git_hullabaloo_CONTRIBUTING.md
133 rsnapshot_rsnapshot.git _rsnapshot_rsnapshot.git_commits.csv rsnapshot_rsnapshot.git_hullabaloo_CONTRIBUTING.md
134 ocaml_ocamlbuild.git _ocaml_ocamlbuild.git_commits.csv ocaml_ocamlbuild.git_hullabaloo_CONTRIBUTING.adoc
135 karenetheridge_B-Hooks-Parser.git _karenetheridge_B-Hooks-Parser.git_commits.csv karenetheridge_B-Hooks-Parser.git_hullabaloo_CONTRIBUTING
136 ceres-solver_ceres-solver.git _ceres-solver_ceres-solver.git_commits.csv ceres-solver_ceres-solver.git_hullabaloo_CONTRIBUTING.md
137 jupyter_nbconvert _jupyter_nbconvert_commits.csv jupyter_nbconvert_hullabaloo_CONTRIBUTING.md
138 ComplianceAsCode_content _ComplianceAsCode_content_commits.csv ComplianceAsCode_content_hullabaloo_CONTRIBUTING.md
139 mu-editor_mu _mu-editor_mu_commits.csv mu-editor_mu_hullabaloo_CONTRIBUTING.rst
140 sopel-irc_sopel.git _sopel-irc_sopel.git_commits.csv sopel-irc_sopel.git_hullabaloo_CONTRIBUTING
141 dask_dask _dask_dask_commits.csv dask_dask_hullabaloo_CONTRIBUTING.md
142 jashkenas_underscore.git _jashkenas_underscore.git_commits.csv jashkenas_underscore.git_hullabaloo_CONTRIBUTING.md
143 npm_abbrev-js _npm_abbrev-js_commits.csv npm_abbrev-js_hullabaloo_CONTRIBUTING.md
144 the-tcpdump-group_tcpdump _the-tcpdump-group_tcpdump_commits.csv the-tcpdump-group_tcpdump_hullabaloo_CONTRIBUTING
145 EttusResearch_uhd _EttusResearch_uhd_commits.csv EttusResearch_uhd_hullabaloo_CONTRIBUTING.md
146 jupyter_jupyter_core _jupyter_jupyter_core_commits.csv jupyter_jupyter_core_hullabaloo_CONTRIBUTING.md
147 mlpack_mlpack _mlpack_mlpack_commits.csv mlpack_mlpack_hullabaloo_CONTRIBUTING.md
148 lxc_lxc.git _lxc_lxc.git_commits.csv lxc_lxc.git_hullabaloo_CONTRIBUTING
149 igraph_igraph _igraph_igraph_commits.csv igraph_igraph.git_hullabaloo_CONTRIBUTING.md
150 OpenPrinting_cups-filters _OpenPrinting_cups-filters_commits.csv OpenPrinting_cups-filters_hullabaloo_CONTRIBUTING.md
151 tpm2-software_tpm2-abrmd.git _tpm2-software_tpm2-abrmd.git_commits.csv tpm2-software_tpm2-abrmd.git_hullabaloo_CONTRIBUTING.md
152 Intel-Media-SDK_MediaSDK _Intel-Media-SDK_MediaSDK_commits.csv Intel-Media-SDK_MediaSDK_hullabaloo_CONTRIBUTING.md
153 google_brotli _google_brotli_commits.csv google_brotli_hullabaloo_CONTRIBUTING
154 matthewwithanm_django-imagekit.git _matthewwithanm_django-imagekit.git_commits.csv matthewwithanm_django-imagekit.git_hullabaloo_CONTRIBUTING.rst
155 CorsixTH_CorsixTH.git _CorsixTH_CorsixTH.git_commits.csv CorsixTH_CorsixTH.git_hullabaloo_CONTRIBUTING
156 fog_fog-rackspace _fog_fog-rackspace_commits.csv fog_fog-rackspace_hullabaloo_CONTRIBUTING.md
157 tinfoil_devise-two-factor.git _tinfoil_devise-two-factor.git_commits.csv tinfoil_devise-two-factor.git_hullabaloo_CONTRIBUTING.md
158 isaacs_node-glob.git _isaacs_node-glob.git_commits.csv isaacs_node-glob.git_hullabaloo_CONTRIBUTING.md
159 dagolden_class-insideout.git _dagolden_class-insideout.git_commits.csv dagolden_class-insideout.git_hullabaloo_CONTRIBUTING
160 ntop_nDPI.git _ntop_nDPI.git_commits.csv ntop_nDPI.git_hullabaloo_CONTRIBUTING.md
161 lastpass_lastpass-cli _lastpass_lastpass-cli_commits.csv lastpass_lastpass-cli_hullabaloo_CONTRIBUTING
162 OpenTTD_OpenTTD.git _OpenTTD_OpenTTD.git_commits.csv OpenTTD_OpenTTD.git_hullabaloo_CONTRIBUTING.md
163 mlpack_ensmallen _mlpack_ensmallen_commits.csv mlpack_ensmallen_hullabaloo_CONTRIBUTING.md
164 donnemartin_gitsome _donnemartin_gitsome_commits.csv donnemartin_gitsome_hullabaloo_CONTRIBUTING.md
165 RIPE-NCC_ripe.atlas.sagan _RIPE-NCC_ripe.atlas.sagan_commits.csv RIPE-NCC_ripe.atlas.sagan_hullabaloo_CONTRIBUTING.rst
166 jp9000_obs-studio.git _jp9000_obs-studio.git_commits.csv jp9000_obs-studio.git_hullabaloo_CONTRIBUTING
167 networkx_networkx.git _networkx_networkx.git_commits.csv networkx_networkx.git_hullabaloo_CONTRIBUTING.rst
168 intridea_multi_json _intridea_multi_json_commits.csv intridea_multi_json_hullabaloo_CONTRIBUTING.md
169 zsh-users_antigen _zsh-users_antigen_commits.csv zsh-users_antigen_hullabaloo_CONTRIBUTING.md
170 emcconville_wand _emcconville_wand_commits.csv emcconville_wand_hullabaloo_CONTRIBUTING.rst
171 perl-catalyst_Catalyst-Authentication-Credential-HTTP _perl-catalyst_Catalyst-Authentication-Credential-HTTP_commits.csv perl-catalyst_Catalyst-Authentication-Credential-HTTP_hullabaloo_CONTRIBUTING
172 sslmate_certspotter _sslmate_certspotter_commits.csv sslmate_certspotter_hullabaloo_CONTRIBUTING
173 jazzband_django-sortedm2m.git _jazzband_django-sortedm2m.git_commits.csv jazzband_django-sortedm2m.git_hullabaloo_CONTRIBUTING.md
174 pypa_pipenv.git _pypa_pipenv.git_commits.csv pypa_pipenv.git_hullabaloo_CONTRIBUTING.rst
175 GNOME_gedit.git GNOME_gedit.git_commits.csv GNOME_gedit.git_hullabaloo_CONTRIBUTING.md
176 royhills_arp-scan _royhills_arp-scan_commits.csv royhills_arp-scan_hullabaloo_CONTRIBUTING.md
177 mne-tools_mne-python.git _mne-tools_mne-python.git_commits.csv mne-tools_mne-python.git_hullabaloo_CONTRIBUTING.md
178 python-hyper_h11.git _python-hyper_h11.git_commits.csv python-hyper_h11.git_hullabaloo_CONTRIBUTING.md
179 felixge_node-dateformat _felixge_node-dateformat_commits.csv felixge_node-dateformat_hullabaloo_CONTRIBUTING.md
180 PointCloudLibrary_pcl _PointCloudLibrary_pcl_commits.csv PointCloudLibrary_pcl_hullabaloo_CONTRIBUTING.md
181 libwww-perl_HTTP-Message.git _libwww-perl_HTTP-Message.git_commits.csv libwww-perl_HTTP-Message.git_hullabaloo_CONTRIBUTING.md
182 Grokzen_redis-py-cluster _Grokzen_redis-py-cluster_commits.csv Grokzen_redis-py-cluster_hullabaloo_CONTRIBUTING.md
183 lttng-ust.git lttng-ust.git_commits.csv lttng-ust.git_hullabaloo_CONTRIBUTING.md
184 mongodb_motor _mongodb_motor_commits.csv mongodb_motor_hullabaloo_CONTRIBUTING.rst
185 Icinga_icingaweb2.git _Icinga_icingaweb2.git_commits.csv Icinga_icingaweb2.git_hullabaloo_CONTRIBUTING.md
186 libevent_libevent _libevent_libevent_commits.csv libevent_libevent_hullabaloo_CONTRIBUTING.md
187 bbatsov_powerpack.git _bbatsov_powerpack.git_commits.csv bbatsov_powerpack.git_hullabaloo_CONTRIBUTING.md
188 rthalley_dnspython.git _rthalley_dnspython.git_commits.csv rthalley_dnspython.git_hullabaloo_CONTRIBUTING.md
189 Ableton_link.git _Ableton_link.git_commits.csv Ableton_link.git_hullabaloo_CONTRIBUTING.md
190 Ranks_emojione _Ranks_emojione_commits.csv Ranks_emojione_hullabaloo_CONTRIBUTING.md
191 kelektiv_node-uuid _kelektiv_node-uuid_commits.csv kelektiv_node-uuid_hullabaloo_CONTRIBUTING.md
192 prometheus_pushgateway _prometheus_pushgateway_commits.csv prometheus_pushgateway_hullabaloo_CONTRIBUTING.md
193 pyjokes_pyjokes _pyjokes_pyjokes_commits.csv pyjokes_pyjokes_hullabaloo_CONTRIBUTING.md
194 amperser_proselint _amperser_proselint_commits.csv amperser_proselint_hullabaloo_CONTRIBUTING.md
195 resurrecting-open-source-projects_openrdate _resurrecting-open-source-projects_openrdate_commits.csv resurrecting-open-source-projects_openrdate_hullabaloo_CONTRIBUTING.md
196 ARMmbed_yotta.git _ARMmbed_yotta.git_commits.csv ARMmbed_yotta.git_hullabaloo_CONTRIBUTING.md
197 gnutls_libtasn1 gnutls_libtasn1_commits.csv gnutls_libtasn1_hullabaloo_CONTRIBUTING.md
198 zopefoundation_zope.schema _zopefoundation_zope.schema_commits.csv zopefoundation_zope.schema_hullabaloo_CONTRIBUTING.md
199 django-ldapdb_django-ldapdb _django-ldapdb_django-ldapdb_commits.csv django-ldapdb_django-ldapdb_hullabaloo_CONTRIBUTING.rst
200 gitpython-developers_GitPython _gitpython-developers_GitPython_commits.csv gitpython-developers_GitPython_hullabaloo_CONTRIBUTING.md
201 OCamlPro_alt-ergo.git _OCamlPro_alt-ergo.git_commits.csv OCamlPro_alt-ergo.git_hullabaloo_CONTRIBUTING.md
202 pyca_pyopenssl _pyca_pyopenssl_commits.csv pyca_pyopenssl_hullabaloo_CONTRIBUTING.md
203 voxpupuli_beaker _voxpupuli_beaker_commits.csv voxpupuli_beaker_hullabaloo_CONTRIBUTING.md
204 zopefoundation_zope.deprecation.git _zopefoundation_zope.deprecation.git_commits.csv zopefoundation_zope.deprecation.git_hullabaloo_CONTRIBUTING.md
205 canonical_lightdm.git _canonical_lightdm.git_commits.csv canonical_lightdm.git_hullabaloo_CONTRIBUTING.md
206 PracticallyGreen_omniauth-saml.git _PracticallyGreen_omniauth-saml.git_commits.csv PracticallyGreen_omniauth-saml.git_hullabaloo_CONTRIBUTING.md
207 django-haystack_django-haystack _django-haystack_django-haystack_commits.csv django-haystack_django-haystack_hullabaloo_CONTRIBUTING.md
208 multani_sonata _multani_sonata_commits.csv multani_sonata_hullabaloo_CONTRIBUTING.rst
209 google_fscrypt _google_fscrypt_commits.csv google_fscrypt_hullabaloo_CONTRIBUTING.md
210 silx-kit_silx.git _silx-kit_silx.git_commits.csv silx-kit_silx.git_hullabaloo_CONTRIBUTING
211 puppetlabs_clj-kitchensink.git _puppetlabs_clj-kitchensink.git_commits.csv puppetlabs_clj-kitchensink.git_hullabaloo_CONTRIBUTING.md
212 porridge_bambam porridge_bambam_commits.csv porridge_bambam_hullabaloo_CONTRIBUTING.md
213 joewing_jwm _joewing_jwm_commits.csv joewing_jwm_hullabaloo_CONTRIBUTING.md
214 hickford_MechanicalSoup _hickford_MechanicalSoup_commits.csv hickford_MechanicalSoup_hullabaloo_CONTRIBUTING.md
215 cubiq_iscroll _cubiq_iscroll_commits.csv cubiq_iscroll_hullabaloo_CONTRIBUTING.md
216 gtimelog_gtimelog _gtimelog_gtimelog_commits.csv gtimelog_gtimelog_hullabaloo_CONTRIBUTING.rst
217 GNOME_libgda GNOME_libgda_commits.csv GNOME_libgda_hullabaloo_CONTRIBUTING.md
218 openstack_python-swiftclient.git _openstack_python-swiftclient.git_commits.csv openstack_python-swiftclient.git_hullabaloo_CONTRIBUTING.md
219 prehor_amavisd-milter _prehor_amavisd-milter_commits.csv prehor_amavisd-milter_hullabaloo_CONTRIBUTING.md
220 GNOME_network-manager-applet GNOME_network-manager-applet_commits.csv GNOME_network-manager-applet_hullabaloo_CONTRIBUTING
221 biojava_biojava.git _biojava_biojava.git_commits.csv biojava_biojava.git_hullabaloo_CONTRIBUTING.md
222 resurrecting-open-source-projects_scrot _resurrecting-open-source-projects_scrot_commits.csv resurrecting-open-source-projects_scrot_hullabaloo_CONTRIBUTING.md
223 mypaint_libmypaint _mypaint_libmypaint_commits.csv mypaint_libmypaint_hullabaloo_CONTRIBUTING.md
224 virt-manager_virt-manager _virt-manager_virt-manager_commits.csv virt-manager_virt-manager_hullabaloo_CONTRIBUTING.md
225 rails_jbuilder _rails_jbuilder_commits.csv rails_jbuilder_hullabaloo_CONTRIBUTING.md
226 libvirt_libvirt-ruby.git libvirt_libvirt-ruby.git_commits.csv libvirt_libvirt-ruby.git_hullabaloo_CONTRIBUTING.rst
227 Haivision_srt.git _Haivision_srt.git_commits.csv Haivision_srt.git_hullabaloo_CONTRIBUTING.md
228 DamienCassou_beginend.git _DamienCassou_beginend.git_commits.csv DamienCassou_beginend.git_hullabaloo_CONTRIBUTING.md
229 pydicom_pydicom.git _pydicom_pydicom.git_commits.csv pydicom_pydicom.git_hullabaloo_CONTRIBUTING.md
230 FirefighterBlu3_python-pam _FirefighterBlu3_python-pam_commits.csv FirefighterBlu3_python-pam_hullabaloo_CONTRIBUTING.md
231 MatMoul_g810-led.git _MatMoul_g810-led.git_commits.csv MatMoul_g810-led.git_hullabaloo_CONTRIBUTING.md
232 GoogleCloudPlatform_cloudsql-proxy.git _GoogleCloudPlatform_cloudsql-proxy.git_commits.csv GoogleCloudPlatform_cloudsql-proxy.git_hullabaloo_CONTRIBUTING.md
233 awslabs_amazon-ecr-credential-helper awslabs_amazon-ecr-credential-helper_commits.csv awslabs_amazon-ecr-credential-helper_hullabaloo_CONTRIBUTING.md
234 Exa-Networks_exabgp Exa-Networks_exabgp_commits.csv Exa-Networks_exabgp_hullabaloo_CONTRIBUTING.md
235 lxqt_qterminal.git _lxqt_qterminal.git_commits.csv lxqt_qterminal.git_hullabaloo_CONTRIBUTING.md
236 ddclient_ddclient.git _ddclient_ddclient.git_commits.csv ddclient_ddclient.git_hullabaloo_CONTRIBUTING.md
237 python-gitlab_python-gitlab.git _python-gitlab_python-gitlab.git_commits.csv python-gitlab_python-gitlab.git_hullabaloo_CONTRIBUTING.rst
238 resurrecting-open-source-projects_packit _resurrecting-open-source-projects_packit_commits.csv resurrecting-open-source-projects_packit_hullabaloo_CONTRIBUTING.md
239 LLNL_sundials.git _LLNL_sundials.git_commits.csv LLNL_sundials.git_hullabaloo_CONTRIBUTING.md
240 elmar_aptitude-robot elmar_aptitude-robot_commits.csv elmar_aptitude-robot_hullabaloo_CONTRIBUTING.mdown
241 doorkeeper-gem_doorkeeper _doorkeeper-gem_doorkeeper_commits.csv doorkeeper-gem_doorkeeper_hullabaloo_CONTRIBUTING.md
242 rsyslog_rsyslog-doc _rsyslog_rsyslog-doc_commits.csv rsyslog_rsyslog-doc_hullabaloo_CONTRIBUTING.md
243 breunigs_python-librtmp-debian breunigs_python-librtmp-debian_commits.csv breunigs_python-librtmp-debian_hullabaloo_CONTRIBUTING.rst
244 pdfminer_pdfminer.six.git _pdfminer_pdfminer.six.git_commits.csv pdfminer_pdfminer.six.git_hullabaloo_CONTRIBUTING.md
245 google_python_portpicker _google_python_portpicker_commits.csv google_python_portpicker_hullabaloo_CONTRIBUTING.md
246 carljm_django-model-utils.git _carljm_django-model-utils.git_commits.csv carljm_django-model-utils.git_hullabaloo_CONTRIBUTING.rst
247 GNOME_template-glib.git GNOME_template-glib.git_commits.csv GNOME_template-glib.git_hullabaloo_CONTRIBUTING.md
248 alanxz_rabbitmq-c.git _alanxz_rabbitmq-c.git_commits.csv alanxz_rabbitmq-c.git_hullabaloo_CONTRIBUTING.md
249 davesteele_comitup davesteele_comitup_commits.csv davesteele_comitup_hullabaloo_CONTRIBUTING.md
250 google_flatbuffers.git _google_flatbuffers.git_commits.csv google_flatbuffers.git_hullabaloo_CONTRIBUTING.md
251 oneapi-src_oneTBB.git _oneapi-src_oneTBB.git_commits.csv oneapi-src_oneTBB.git_hullabaloo_CONTRIBUTING.md
252 un33k_django-ipware _un33k_django-ipware_commits.csv un33k_django-ipware_hullabaloo_CONTRIBUTING.md
253 luakit_luakit _luakit_luakit_commits.csv luakit_luakit_hullabaloo_CONTRIBUTING.md
254 trezor_trezor-firmware.git _trezor_trezor-firmware.git_commits.csv trezor_trezor-firmware.git_hullabaloo_CONTRIBUTING.md
255 sphinx-doc_sphinx.git _sphinx-doc_sphinx.git_commits.csv sphinx-doc_sphinx.git_hullabaloo_CONTRIBUTING.rst
256 OSGeo_grass.git _OSGeo_grass.git_commits.csv OSGeo_grass.git_hullabaloo_CONTRIBUTING.md
257 kasei_attean.git _kasei_attean.git_commits.csv kasei_attean.git_hullabaloo_CONTRIBUTING
258 gaetano-guerriero_eyeD3-debian gaetano-guerriero_eyeD3-debian_commits.csv gaetano-guerriero_eyeD3-debian_hullabaloo_CONTRIBUTING.rst
259 zeroc-ice_ice-debian-packaging.git zeroc-ice_ice-debian-packaging.git_commits.csv zeroc-ice_ice-debian-packaging.git_hullabaloo_CONTRIBUTING.md
260 pulseaudio_pulseaudio.git pulseaudio_pulseaudio.git_commits.csv pulseaudio_pulseaudio.git_hullabaloo_CONTRIBUTING.md
261 ionelmc_python-lazy-object-proxy.git _ionelmc_python-lazy-object-proxy.git_commits.csv ionelmc_python-lazy-object-proxy.git_hullabaloo_CONTRIBUTING.rst
262 mikel_mail _mikel_mail_commits.csv mikel_mail_hullabaloo_CONTRIBUTING.md
263 Fluidsynth_fluidsynth.git _Fluidsynth_fluidsynth.git_commits.csv Fluidsynth_fluidsynth.git_hullabaloo_CONTRIBUTING.md
264 resurrecting-open-source-projects_stress _resurrecting-open-source-projects_stress_commits.csv resurrecting-open-source-projects_stress_hullabaloo_CONTRIBUTING.md
265 google_stenographer _google_stenographer_commits.csv google_stenographer_hullabaloo_CONTRIBUTING
266 hhatto_autopep8.git _hhatto_autopep8.git_commits.csv hhatto_autopep8.git_hullabaloo_CONTRIBUTING.rst
267 jpy-consortium_jpy _jpy-consortium_jpy_commits.csv jpy-consortium_jpy_hullabaloo_CONTRIBUTING.md
268 xtaran_unburden-home-dir xtaran_unburden-home-dir_commits.csv xtaran_unburden-home-dir_hullabaloo_CONTRIBUTING.md
269 jaap-karssenberg_zim-desktop-wiki.git _jaap-karssenberg_zim-desktop-wiki.git_commits.csv jaap-karssenberg_zim-desktop-wiki.git_hullabaloo_CONTRIBUTING.md
270 mongoengine_mongoengine mongoengine_mongoengine_commits.csv mongoengine_mongoengine_hullabaloo_CONTRIBUTING.rst
271 openwisp_django-x509 _openwisp_django-x509_commits.csv openwisp_django-x509_hullabaloo_CONTRIBUTING.rst
272 tox-dev_py-filelock _tox-dev_py-filelock_commits.csv tox-dev_py-filelock_hullabaloo_CONTRIBUTING.md
273 jeremyevans_sequel _jeremyevans_sequel_commits.csv jeremyevans_sequel_hullabaloo_CONTRIBUTING
274 survivejs_webpack-merge.git _survivejs_webpack-merge.git_commits.csv survivejs_webpack-merge.git_hullabaloo_CONTRIBUTING.md
275 scop_bash-completion _scop_bash-completion_commits.csv scop_bash-completion_hullabaloo_CONTRIBUTING.md
276 libcgroup_libcgroup _libcgroup_libcgroup_commits.csv libcgroup_libcgroup_hullabaloo_CONTRIBUTING.md
277 Smattr_rumur.git Smattr_rumur.git_commits.csv Smattr_rumur.git_hullabaloo_CONTRIBUTING.rst
278 lucc_khard _lucc_khard_commits.csv lucc_khard_hullabaloo_CONTRIBUTING.rst
279 Xaviju_inkscape-open-symbols _Xaviju_inkscape-open-symbols_commits.csv Xaviju_inkscape-open-symbols_hullabaloo_CONTRIBUTING.md
280 htop-dev_htop _htop-dev_htop_commits.csv htop-dev_htop_hullabaloo_CONTRIBUTING.md
281 doorkeeper-gem_doorkeeper-openid_connect.git _doorkeeper-gem_doorkeeper-openid_connect.git_commits.csv doorkeeper-gem_doorkeeper-openid_connect.git_hullabaloo_CONTRIBUTING.md
282 libinput_libinput libinput_libinput_commits.csv libinput_libinput_hullabaloo_CONTRIBUTING.md
283 o9000_tint2 o9000_tint2_commits.csv o9000_tint2_hullabaloo_CONTRIBUTING.md
284 source-foundry_Hack _source-foundry_Hack_commits.csv source-foundry_Hack_hullabaloo_CONTRIBUTING.md
285 rizsotto_Bear _rizsotto_Bear_commits.csv rizsotto_Bear_hullabaloo_CONTRIBUTING.md
286 geopython_pycsw.git _geopython_pycsw.git_commits.csv geopython_pycsw.git_hullabaloo_CONTRIBUTING.rst
287 pallets-eco_flask-sqlalchemy _pallets-eco_flask-sqlalchemy_commits.csv pallets-eco_flask-sqlalchemy_hullabaloo_CONTRIBUTING.rst
288 jashkenas_backbone _jashkenas_backbone_commits.csv jashkenas_backbone_hullabaloo_CONTRIBUTING.md
289 rails_rails-html-sanitizer _rails_rails-html-sanitizer_commits.csv rails_rails-html-sanitizer_hullabaloo_CONTRIBUTING.md
290 ipython_traitlets.git _ipython_traitlets.git_commits.csv ipython_traitlets.git_hullabaloo_CONTRIBUTING.md
291 dbus_dbus dbus_dbus_commits.csv dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
292 isaacs_inherits _isaacs_inherits_commits.csv isaacs_inherits_hullabaloo_CONTRIBUTING.md
293 ropensci_RNeXML.git _ropensci_RNeXML.git_commits.csv ropensci_RNeXML.git_hullabaloo_CONTRIBUTING.md
294 erlware_erlware_commons.git _erlware_erlware_commons.git_commits.csv erlware_erlware_commons.git_hullabaloo_CONTRIBUTING.md
295 openstreetmap_osm2pgsql.git _openstreetmap_osm2pgsql.git_commits.csv openstreetmap_osm2pgsql.git_hullabaloo_CONTRIBUTING.md
296 google_gopacket.git _google_gopacket.git_commits.csv google_gopacket.git_hullabaloo_CONTRIBUTING.md
297 PDAL_PDAL.git _PDAL_PDAL.git_commits.csv PDAL_PDAL.git_hullabaloo_CONTRIBUTING.md
298 janestreet_variantslib.git _janestreet_variantslib.git_commits.csv janestreet_variantslib.git_hullabaloo_CONTRIBUTING.md
299 Perl-Toolchain-Gang_ExtUtils-CBuilder.git _Perl-Toolchain-Gang_ExtUtils-CBuilder.git_commits.csv Perl-Toolchain-Gang_ExtUtils-CBuilder.git_hullabaloo_CONTRIBUTING
300 ipython_ipython_genutils _ipython_ipython_genutils_commits.csv ipython_ipython_genutils_hullabaloo_CONTRIBUTING.md
301 matthewwithanm_pilkit _matthewwithanm_pilkit_commits.csv matthewwithanm_pilkit_hullabaloo_CONTRIBUTING.rst
302 puppetlabs_puppetlabs-mysql _puppetlabs_puppetlabs-mysql_commits.csv puppetlabs_puppetlabs-mysql_hullabaloo_CONTRIBUTING.md
303 sinatra_sinatra.git _sinatra_sinatra.git_commits.csv sinatra_sinatra.git_hullabaloo_CONTRIBUTING.md
304 astropy_photutils.git _astropy_photutils.git_commits.csv astropy_photutils.git_hullabaloo_CONTRIBUTING.rst
305 igraph_igraph.git _igraph_igraph.git_commits.csv igraph_igraph.git_hullabaloo_CONTRIBUTING.md
306 PyCQA_flake8-polyfill.git _PyCQA_flake8-polyfill.git_commits.csv PyCQA_flake8-polyfill.git_hullabaloo_CONTRIBUTING.rst
307 google_pybadges.git _google_pybadges.git_commits.csv google_pybadges.git_hullabaloo_CONTRIBUTING.md
308 infirit_caja-admin _infirit_caja-admin_commits.csv infirit_caja-admin_hullabaloo_CONTRIBUTING.md
309 terser_terser _terser_terser_commits.csv terser_terser_hullabaloo_CONTRIBUTING.md
310 PyCQA_prospector _PyCQA_prospector_commits.csv PyCQA_prospector_hullabaloo_CONTRIBUTING.rst
311 coq_coq _coq_coq_commits.csv coq_coq_hullabaloo_CONTRIBUTING.md
312 GNOME_vala.git GNOME_vala.git_commits.csv GNOME_vala.git_hullabaloo_CONTRIBUTING.md
313 aws_aws-cli _aws_aws-cli_commits.csv aws_aws-cli_hullabaloo_CONTRIBUTING.md
314 prawnpdf_prawn _prawnpdf_prawn_commits.csv prawnpdf_prawn_hullabaloo_CONTRIBUTING.md
315 google_yapf.git _google_yapf.git_commits.csv google_yapf.git_hullabaloo_CONTRIBUTING
316 pytest-dev_pytest.git _pytest-dev_pytest.git_commits.csv pytest-dev_pytest.git_hullabaloo_CONTRIBUTING.txt
317 ytdl-org_youtube-dl.git _ytdl-org_youtube-dl.git_commits.csv ytdl-org_youtube-dl.git_hullabaloo_CONTRIBUTING.md
318 pika_pika _pika_pika_commits.csv pika_pika_hullabaloo_CONTRIBUTING.md
319 xonsh_xonsh.git _xonsh_xonsh.git_commits.csv xonsh_xonsh.git_hullabaloo_CONTRIBUTING.rst
320 Backblaze_b2-sdk-python.git _Backblaze_b2-sdk-python.git_commits.csv Backblaze_b2-sdk-python.git_hullabaloo_CONTRIBUTING.md
321 puppetlabs_puppetlabs-ntp.git _puppetlabs_puppetlabs-ntp.git_commits.csv puppetlabs_puppetlabs-ntp.git_hullabaloo_CONTRIBUTING.md
322 Beep6581_RawTherapee _Beep6581_RawTherapee_commits.csv Beep6581_RawTherapee_hullabaloo_CONTRIBUTING.md
323 geopandas_geopandas.git _geopandas_geopandas.git_commits.csv geopandas_geopandas.git_hullabaloo_CONTRIBUTING.md
324 assimp_assimp _assimp_assimp_commits.csv assimp_assimp_hullabaloo_CONTRIBUTING.md
325 jupyter_jupyter-sphinx.git _jupyter_jupyter-sphinx.git_commits.csv jupyter_jupyter-sphinx.git_hullabaloo_CONTRIBUTING.md
326 Pylons_venusian _Pylons_venusian_commits.csv Pylons_venusian_hullabaloo_CONTRIBUTING.rst
327 jjjake_internetarchive.git _jjjake_internetarchive.git_commits.csv jjjake_internetarchive.git_hullabaloo_CONTRIBUTING.rst
328 cucumber_aruba.git _cucumber_aruba.git_commits.csv cucumber_aruba.git_hullabaloo_CONTRIBUTING.md
329 GNOME_gcr.git GNOME_gcr.git_commits.csv GNOME_gcr.git_hullabaloo_CONTRIBUTING.md
330 rackerlabs_kthresher _rackerlabs_kthresher_commits.csv rackerlabs_kthresher_hullabaloo_CONTRIBUTING.md
331 google_jimfs.git _google_jimfs.git_commits.csv google_jimfs.git_hullabaloo_CONTRIBUTING.md
332 openstack_rally.git _openstack_rally.git_commits.csv openstack_rally.git_hullabaloo_CONTRIBUTING.rst
333 jupyter_jupyter_client _jupyter_jupyter_client_commits.csv jupyter_jupyter_client_hullabaloo_CONTRIBUTING.md
334 beautify-web_js-beautify _beautify-web_js-beautify_commits.csv beautify-web_js-beautify_hullabaloo_CONTRIBUTING.md
335 KDAB_hotspot.git _KDAB_hotspot.git_commits.csv KDAB_hotspot.git_hullabaloo_CONTRIBUTING.md
336 lunarmodules_say.git _lunarmodules_say.git_commits.csv lunarmodules_say.git_hullabaloo_CONTRIBUTING.md
337 coturn_coturn coturn_coturn_commits.csv coturn_coturn_hullabaloo_CONTRIBUTING.md
338 jquery_jquery.git _jquery_jquery.git_commits.csv jquery_jquery.git_hullabaloo_CONTRIBUTING.md
339 cleishm_libneo4j-client cleishm_libneo4j-client_commits.csv cleishm_libneo4j-client_hullabaloo_CONTRIBUTING.md
340 python_typed_ast.git _python_typed_ast.git_commits.csv python_typed_ast.git_hullabaloo_CONTRIBUTING.md
341 neovim_neovim _neovim_neovim_commits.csv neovim_neovim_hullabaloo_CONTRIBUTING.md
342 pyutilib_pyutilib _pyutilib_pyutilib_commits.csv pyutilib_pyutilib_hullabaloo_CONTRIBUTING.md
343 prometheus_haproxy_exporter _prometheus_haproxy_exporter_commits.csv prometheus_haproxy_exporter_hullabaloo_CONTRIBUTING.md
344 muse-sequencer_muse.git _muse-sequencer_muse.git_commits.csv muse-sequencer_muse.git_hullabaloo_CONTRIBUTING
345 ahmetb_kubectx _ahmetb_kubectx_commits.csv ahmetb_kubectx_hullabaloo_CONTRIBUTING.md
346 guillaumechereau_goxel.git _guillaumechereau_goxel.git_commits.csv guillaumechereau_goxel.git_hullabaloo_CONTRIBUTING.md
347 matlab2tikz_matlab2tikz _matlab2tikz_matlab2tikz_commits.csv matlab2tikz_matlab2tikz_hullabaloo_CONTRIBUTING.md
348 pavlov99_json-rpc _pavlov99_json-rpc_commits.csv pavlov99_json-rpc_hullabaloo_CONTRIBUTING.md
349 pygraphviz_pygraphviz.git _pygraphviz_pygraphviz.git_commits.csv pygraphviz_pygraphviz.git_hullabaloo_CONTRIBUTING.rst
350 fgrehm_vagrant-lxc _fgrehm_vagrant-lxc_commits.csv fgrehm_vagrant-lxc_hullabaloo_CONTRIBUTING.md
351 google_xsecurelock google_xsecurelock_commits.csv google_xsecurelock_hullabaloo_CONTRIBUTING
352 math-comp_math-comp _math-comp_math-comp_commits.csv math-comp_math-comp_hullabaloo_CONTRIBUTING.md
353 prometheus_snmp_exporter _prometheus_snmp_exporter_commits.csv prometheus_snmp_exporter_hullabaloo_CONTRIBUTING.md
354 solnic_virtus.git _solnic_virtus.git_commits.csv solnic_virtus.git_hullabaloo_CONTRIBUTING.md
355 hardbyte_python-can.git _hardbyte_python-can.git_commits.csv hardbyte_python-can.git_hullabaloo_CONTRIBUTING.md
356 karenetheridge_B-Hooks-OP-Check _karenetheridge_B-Hooks-OP-Check_commits.csv karenetheridge_B-Hooks-OP-Check_hullabaloo_CONTRIBUTING
357 robert7_nixnote2 _robert7_nixnote2_commits.csv robert7_nixnote2_hullabaloo_CONTRIBUTING.md
358 datastax_python-driver.git _datastax_python-driver.git_commits.csv datastax_python-driver.git_hullabaloo_CONTRIBUTING.md
359 petkaantonov_bluebird.git _petkaantonov_bluebird.git_commits.csv petkaantonov_bluebird.git_hullabaloo_CONTRIBUTING.md
360 Pylons_plaster_pastedeploy.git _Pylons_plaster_pastedeploy.git_commits.csv Pylons_plaster_pastedeploy.git_hullabaloo_CONTRIBUTING.rst
361 juzzlin_DustRacing2D.git _juzzlin_DustRacing2D.git_commits.csv juzzlin_DustRacing2D.git_hullabaloo_CONTRIBUTING
362 zkat_ssri.git _zkat_ssri.git_commits.csv zkat_ssri.git_hullabaloo_CONTRIBUTING.md
363 jtauber_pyuca _jtauber_pyuca_commits.csv jtauber_pyuca_hullabaloo_CONTRIBUTING.md
364 fog_fog-local _fog_fog-local_commits.csv fog_fog-local_hullabaloo_CONTRIBUTING.md
365 pyproj4_pyproj.git _pyproj4_pyproj.git_commits.csv pyproj4_pyproj.git_hullabaloo_CONTRIBUTING.md
366 cespare_reflex.git _cespare_reflex.git_commits.csv cespare_reflex.git_hullabaloo_CONTRIBUTING.md
367 darold_pgbadger.git _darold_pgbadger.git_commits.csv darold_pgbadger.git_hullabaloo_CONTRIBUTING.md
368 Exiv2_exiv2.git _Exiv2_exiv2.git_commits.csv Exiv2_exiv2.git_hullabaloo_CONTRIBUTING.md
369 gitlab-org_ruby_gems_gitlab-mail_room.git gitlab-org_ruby_gems_gitlab-mail_room.git_commits.csv gitlab-org_ruby_gems_gitlab-mail_room.git_hullabaloo_CONTRIBUTING.md
370 google_highwayhash _google_highwayhash_commits.csv google_highwayhash_hullabaloo_CONTRIBUTING
371 scipy_scipy.git _scipy_scipy.git_commits.csv scipy_scipy.git_hullabaloo_CONTRIBUTING
372 libvirt_libvirt-python.git libvirt_libvirt-python.git_commits.csv libvirt_libvirt-python.git_hullabaloo_CONTRIBUTING.rst
373 linkcheck_linkchecker.git _linkcheck_linkchecker.git_commits.csv linkcheck_linkchecker.git_hullabaloo_CONTRIBUTING.mdwn
374 seccomp_libseccomp _seccomp_libseccomp_commits.csv seccomp_libseccomp_hullabaloo_CONTRIBUTING.md
375 cesbit_libcleri.git _cesbit_libcleri.git_commits.csv cesbit_libcleri.git_hullabaloo_CONTRIBUTING.md
376 astropy_astropy-helpers _astropy_astropy-helpers_commits.csv astropy_astropy-helpers_hullabaloo_CONTRIBUTING.md
377 ruby-ldap_ruby-net-ldap.git _ruby-ldap_ruby-net-ldap.git_commits.csv ruby-ldap_ruby-net-ldap.git_hullabaloo_CONTRIBUTING.md
378 collective_icalendar _collective_icalendar_commits.csv collective_icalendar_hullabaloo_CONTRIBUTING.rst
379 vim-airline_vim-airline.git _vim-airline_vim-airline.git_commits.csv vim-airline_vim-airline.git_hullabaloo_CONTRIBUTING.md
380 jackfranklin_gulp-load-plugins _jackfranklin_gulp-load-plugins_commits.csv jackfranklin_gulp-load-plugins_hullabaloo_CONTRIBUTING.md
381 SCons_scons _SCons_scons_commits.csv SCons_scons_hullabaloo_CONTRIBUTING.md
382 digitalbazaar_pyld _digitalbazaar_pyld_commits.csv digitalbazaar_pyld_hullabaloo_CONTRIBUTING.rst
383 rsms_inter _rsms_inter_commits.csv rsms_inter_hullabaloo_CONTRIBUTING.md
384 codership_galera _codership_galera_commits.csv codership_galera_hullabaloo_CONTRIBUTING.md
385 chaijs_chai _chaijs_chai_commits.csv chaijs_chai_hullabaloo_CONTRIBUTING.md
386 mathjax_MathJax _mathjax_MathJax_commits.csv mathjax_MathJax_hullabaloo_CONTRIBUTING.md
387 keras-team_keras _keras-team_keras_commits.csv keras-team_keras_hullabaloo_CONTRIBUTING.md
388 dbus_dbus-python dbus_dbus-python_commits.csv dbus_dbus-python_hullabaloo_CONTRIBUTING
389 python-ldap_python-ldap _python-ldap_python-ldap_commits.csv python-ldap_python-ldap_hullabaloo_CONTRIBUTING.rst
390 SELinuxProject_selinux.git _SELinuxProject_selinux.git_commits.csv SELinuxProject_selinux.git_hullabaloo_CONTRIBUTING.md
391 mongodb_mongo-c-driver mongodb_mongo-c-driver_commits.csv mongodb_mongo-c-driver_hullabaloo_CONTRIBUTING.md
392 pallets_click.git _pallets_click.git_commits.csv pallets_click.git_hullabaloo_CONTRIBUTING.rst
393 ktbyers_netmiko _ktbyers_netmiko_commits.csv ktbyers_netmiko_hullabaloo_CONTRIBUTING.md
394 varietywalls_variety.git _varietywalls_variety.git_commits.csv varietywalls_variety.git_hullabaloo_CONTRIBUTING.md
395 SELinuxProject_selinux _SELinuxProject_selinux_commits.csv SELinuxProject_selinux.git_hullabaloo_CONTRIBUTING.md
396 ipython_ipykernel.git _ipython_ipykernel.git_commits.csv ipython_ipykernel.git_hullabaloo_CONTRIBUTING.md
397 calamares_calamares.git _calamares_calamares.git_commits.csv calamares_calamares.git_hullabaloo_CONTRIBUTING.md
398 osantana_dicteval.git _osantana_dicteval.git_commits.csv osantana_dicteval.git_hullabaloo_CONTRIBUTING.md
399 doctrine_instantiator _doctrine_instantiator_commits.csv doctrine_instantiator_hullabaloo_CONTRIBUTING.md
400 gitlab-org_gitlab-gollum-rugged_adapter gitlab-org_gitlab-gollum-rugged_adapter_commits.csv gitlab-org_gitlab-gollum-rugged_adapter_hullabaloo_CONTRIBUTING.md
401 nojhan_liquidprompt.git _nojhan_liquidprompt.git_commits.csv nojhan_liquidprompt.git_hullabaloo_CONTRIBUTING.md
402 marshmallow-code_marshmallow.git marshmallow-code_marshmallow.git_commits.csv marshmallow-code_marshmallow.git_CONTRIBUTING.rst
403 OpenPrinting_cups _OpenPrinting_cups_commits.csv OpenPrinting_cups_hullabaloo_CONTRIBUTING.txt
404 jquery_sizzle.git _jquery_sizzle.git_commits.csv jquery_sizzle.git_hullabaloo_CONTRIBUTING.md
405 andialbrecht_sqlparse.git _andialbrecht_sqlparse.git_commits.csv andialbrecht_sqlparse.git_hullabaloo_CONTRIBUTING.md
406 apache_trafficserver _apache_trafficserver_commits.csv apache_trafficserver_hullabaloo_CONTRIBUTING.md
407 aws_aws-xray-sdk-python _aws_aws-xray-sdk-python_commits.csv aws_aws-xray-sdk-python_hullabaloo_CONTRIBUTING.md
408 JDimproved_JDim.git _JDimproved_JDim.git_commits.csv JDimproved_JDim.git_hullabaloo_CONTRIBUTING.md
409 spyder-ide_qtawesome _spyder-ide_qtawesome_commits.csv spyder-ide_qtawesome_hullabaloo_CONTRIBUTING.md
410 puppetlabs_facter.git _puppetlabs_facter.git_commits.csv puppetlabs_facter.git_hullabaloo_CONTRIBUTING.md
411 elasticsearch_curator.git _elasticsearch_curator.git_commits.csv elasticsearch_curator.git_hullabaloo_CONTRIBUTING.md
412 jmcnamara_XlsxWriter _jmcnamara_XlsxWriter_commits.csv jmcnamara_XlsxWriter_hullabaloo_CONTRIBUTING.md
413 michaelrsweet_htmldoc.git _michaelrsweet_htmldoc.git_commits.csv michaelrsweet_htmldoc.git_hullabaloo_CONTRIBUTING.md
414 py-pdf_pypdf _py-pdf_pypdf_commits.csv py-pdf_pypdf_hullabaloo_CONTRIBUTING.md
415 marshmallow-code_flask-marshmallow.git _marshmallow-code_flask-marshmallow.git_commits.csv marshmallow-code_flask-marshmallow.git_hullabaloo_CONTRIBUTING.rst
416 resurrecting-open-source-projects_outguess _resurrecting-open-source-projects_outguess_commits.csv resurrecting-open-source-projects_outguess_hullabaloo_CONTRIBUTING.md
417 GNOME_geary.git GNOME_geary.git_commits.csv GNOME_geary.git_hullabaloo_CONTRIBUTING.md
418 skvadrik_re2c _skvadrik_re2c_commits.csv skvadrik_re2c_hullabaloo_CONTRIBUTING.md
419 jashkenas_coffeescript _jashkenas_coffeescript_commits.csv jashkenas_coffeescript_hullabaloo_CONTRIBUTING.md
420 scikit-learn_scikit-learn.git _scikit-learn_scikit-learn.git_commits.csv scikit-learn_scikit-learn.git_hullabaloo_CONTRIBUTING.md
421 rdiff-backup_rdiff-backup.git _rdiff-backup_rdiff-backup.git_commits.csv rdiff-backup_rdiff-backup.git_hullabaloo_CONTRIBUTING.md
422 spyder-ide_qtpy _spyder-ide_qtpy_commits.csv spyder-ide_qtpy_hullabaloo_CONTRIBUTING.rst
423 thoughtbot_shoulda-matchers _thoughtbot_shoulda-matchers_commits.csv thoughtbot_shoulda-matchers_hullabaloo_CONTRIBUTING.md
424 libxsmm_libxsmm _libxsmm_libxsmm_commits.csv libxsmm_libxsmm_hullabaloo_CONTRIBUTING.md
425 defunkt_mustache _defunkt_mustache_commits.csv defunkt_mustache_hullabaloo_CONTRIBUTING.md
426 letsencrypt_letsencrypt.git _letsencrypt_letsencrypt.git_commits.csv letsencrypt_letsencrypt.git_hullabaloo_CONTRIBUTING.rst
427 thoughtbot_factory_girl.git _thoughtbot_factory_girl.git_commits.csv thoughtbot_factory_girl.git_hullabaloo_CONTRIBUTING.md
428 oauth-xx_oauth-ruby _oauth-xx_oauth-ruby_commits.csv oauth-xx_oauth-ruby_hullabaloo_CONTRIBUTING.md
429 psf_black.git _psf_black.git_commits.csv psf_black.git_hullabaloo_CONTRIBUTING.md
430 mapnik_python-mapnik.git _mapnik_python-mapnik.git_commits.csv mapnik_python-mapnik.git_hullabaloo_CONTRIBUTING.md
431 GNOME_gnome-builder.git GNOME_gnome-builder.git_commits.csv GNOME_gnome-builder.git_hullabaloo_CONTRIBUTING.md
432 GNOME_gdk-pixbuf GNOME_gdk-pixbuf_commits.csv GNOME_gdk-pixbuf_hullabaloo_CONTRIBUTING.md
433 OSGeo_PROJ.git _OSGeo_PROJ.git_commits.csv OSGeo_PROJ.git_hullabaloo_CONTRIBUTING.md
434 softlayer_softlayer-python _softlayer_softlayer-python_commits.csv softlayer_softlayer-python_hullabaloo_CONTRIBUTING.md
435 tkf_emacs-jedi.git _tkf_emacs-jedi.git_commits.csv tkf_emacs-jedi.git_hullabaloo_CONTRIBUTING.md
436 giampaolo_psutil _giampaolo_psutil_commits.csv giampaolo_psutil_hullabaloo_CONTRIBUTING.md
437 IJHack_QtPass _IJHack_QtPass_commits.csv IJHack_QtPass_hullabaloo_CONTRIBUTING.md
438 pgbackrest_pgbackrest _pgbackrest_pgbackrest_commits.csv pgbackrest_pgbackrest_hullabaloo_CONTRIBUTING.md
439 emacs-lsp_lsp-mode.git _emacs-lsp_lsp-mode.git_commits.csv emacs-lsp_lsp-mode.git_hullabaloo_CONTRIBUTING.md
440 GNOME_libgweather.git GNOME_libgweather.git_commits.csv GNOME_libgweather.git_hullabaloo_CONTRIBUTING.md
441 shouldjs_should.js.git _shouldjs_should.js.git_commits.csv shouldjs_should.js.git_hullabaloo_CONTRIBUTING.md
442 pytest-dev_pytest-bdd.git _pytest-dev_pytest-bdd.git_commits.csv pytest-dev_pytest-bdd.git_hullabaloo_CONTRIBUTING.md
443 jupyter_terminado _jupyter_terminado_commits.csv jupyter_terminado_hullabaloo_CONTRIBUTING.rst
444 django-waffle_django-waffle _django-waffle_django-waffle_commits.csv django-waffle_django-waffle_hullabaloo_CONTRIBUTING.rst
445 core_dune-common core_dune-common_commits.csv core_dune-common_hullabaloo_CONTRIBUTING.md
446 processone_fast_tls.git _processone_fast_tls.git_commits.csv processone_fast_tls.git_hullabaloo_CONTRIBUTING.md
447 metaodi_osmapi.git _metaodi_osmapi.git_commits.csv metaodi_osmapi.git_hullabaloo_CONTRIBUTING.md
448 kilobyte_ndctl kilobyte_ndctl_commits.csv kilobyte_ndctl_hullabaloo_CONTRIBUTING.md
449 kilobyte_memkind kilobyte_memkind_commits.csv kilobyte_memkind_hullabaloo_CONTRIBUTING
450 pallets_itsdangerous _pallets_itsdangerous_commits.csv pallets_itsdangerous_hullabaloo_CONTRIBUTING.rst
451 office_ghostwriter office_ghostwriter_commits.csv office_ghostwriter_hullabaloo_CONTRIBUTING.md
452 prometheus_mysqld_exporter _prometheus_mysqld_exporter_commits.csv prometheus_mysqld_exporter_hullabaloo_CONTRIBUTING.md
453 twilio_twilio-python _twilio_twilio-python_commits.csv twilio_twilio-python_hullabaloo_CONTRIBUTING.md
454 c4urself_bump2version _c4urself_bump2version_commits.csv c4urself_bump2version_hullabaloo_CONTRIBUTING.md
455 google_benchmark _google_benchmark_commits.csv google_benchmark_hullabaloo_CONTRIBUTING.md
456 drwetter_testssl.sh.git _drwetter_testssl.sh.git_commits.csv drwetter_testssl.sh.git_hullabaloo_CONTRIBUTING.md
457 pgRouting_pgrouting.git _pgRouting_pgrouting.git_commits.csv pgRouting_pgrouting.git_hullabaloo_CONTRIBUTING
458 trevorld_r-optparse.git _trevorld_r-optparse.git_commits.csv trevorld_r-optparse.git_hullabaloo_CONTRIBUTING
459 galaxyproject_bioblend _galaxyproject_bioblend_commits.csv galaxyproject_bioblend_hullabaloo_CONTRIBUTING.md
460 gawel_panoramisk.git _gawel_panoramisk.git_commits.csv gawel_panoramisk.git_hullabaloo_CONTRIBUTING.rst
461 Blosc_c-blosc _Blosc_c-blosc_commits.csv Blosc_c-blosc_hullabaloo_CONTRIBUTING.md
462 rails_jquery-rails.git _rails_jquery-rails.git_commits.csv rails_jquery-rails.git_hullabaloo_CONTRIBUTING.md
463 kilobyte_pmemkv kilobyte_pmemkv_commits.csv kilobyte_pmemkv_hullabaloo_CONTRIBUTING.md
464 vim-syntastic_syntastic _vim-syntastic_syntastic_commits.csv vim-syntastic_syntastic_hullabaloo_CONTRIBUTING.md
465 processone_pkix.git _processone_pkix.git_commits.csv processone_pkix.git_hullabaloo_CONTRIBUTING.md
466 faye_faye _faye_faye_commits.csv faye_faye_hullabaloo_CONTRIBUTING.md
467 openstack_swift.git _openstack_swift.git_commits.csv openstack_swift.git_hullabaloo_CONTRIBUTING.md
468 zopefoundation_zope.proxy _zopefoundation_zope.proxy_commits.csv zopefoundation_zope.proxy_hullabaloo_CONTRIBUTING.md
469 muammar_mkchromecast.git _muammar_mkchromecast.git_commits.csv muammar_mkchromecast.git_hullabaloo_CONTRIBUTING.md
470 alastair_python-musicbrainz-ngs _alastair_python-musicbrainz-ngs_commits.csv alastair_python-musicbrainz-ngs_hullabaloo_CONTRIBUTING.md
471 syncthing_syncthing.git _syncthing_syncthing.git_commits.csv syncthing_syncthing.git_hullabaloo_CONTRIBUTING.md
472 RIPE-NCC_ripe-atlas-cousteau.git _RIPE-NCC_ripe-atlas-cousteau.git_commits.csv RIPE-NCC_ripe-atlas-cousteau.git_hullabaloo_CONTRIBUTING.rst
473 HaxeFoundation_haxe-debian HaxeFoundation_haxe-debian_commits.csv HaxeFoundation_haxe-debian_hullabaloo_CONTRIBUTING.md
474 quartz-scheduler_quartz _quartz-scheduler_quartz_commits.csv quartz-scheduler_quartz_hullabaloo_CONTRIBUTING.md
475 google_python-gflags.git _google_python-gflags.git_commits.csv google_python-gflags.git_hullabaloo_CONTRIBUTING.md
476 numba_numba.git _numba_numba.git_commits.csv numba_numba.git_hullabaloo_CONTRIBUTING.md
477 composer_semver _composer_semver_commits.csv composer_semver_hullabaloo_CONTRIBUTING.md
478 mdbootstrap_perfect-scrollbar _mdbootstrap_perfect-scrollbar_commits.csv mdbootstrap_perfect-scrollbar_hullabaloo_CONTRIBUTING.md
479 heroku_netrc _heroku_netrc_commits.csv heroku_netrc_hullabaloo_CONTRIBUTING.md
480 eclipse_paho.mqtt.python.git _eclipse_paho.mqtt.python.git_commits.csv eclipse_paho.mqtt.python.git_hullabaloo_CONTRIBUTING.md
481 GNOME_folks GNOME_folks_commits.csv GNOME_folks_hullabaloo_CONTRIBUTING.md
482 sshguard_sshguard.git sshguard_sshguard.git_commits.csv sshguard_sshguard.git_hullabaloo_CONTRIBUTING.rst
483 requests-cache_requests-cache _requests-cache_requests-cache_commits.csv requests-cache_requests-cache_hullabaloo_CONTRIBUTING.md
484 zopefoundation_zope.testrunner _zopefoundation_zope.testrunner_commits.csv zopefoundation_zope.testrunner_hullabaloo_CONTRIBUTING.md
485 ua-parser_uap-core.git _ua-parser_uap-core.git_commits.csv ua-parser_uap-core.git_hullabaloo_CONTRIBUTING.md
486 voxpupuli_pypuppetdb _voxpupuli_pypuppetdb_commits.csv voxpupuli_pypuppetdb_hullabaloo_CONTRIBUTING.md
487 mozilla_source-map _mozilla_source-map_commits.csv mozilla_source-map_hullabaloo_CONTRIBUTING.md
488 libosinfo_osinfo-db-tools.git libosinfo_osinfo-db-tools.git_commits.csv libosinfo_osinfo-db-tools.git_hullabaloo_CONTRIBUTING.md
489 dagolden_math-random-oo.git _dagolden_math-random-oo.git_commits.csv dagolden_math-random-oo.git_hullabaloo_CONTRIBUTING
490 ionelmc_python-darkslide.git _ionelmc_python-darkslide.git_commits.csv ionelmc_python-darkslide.git_hullabaloo_CONTRIBUTING.rst
491 clojure_core.cache _clojure_core.cache_commits.csv clojure_core.cache_hullabaloo_CONTRIBUTING.md
492 unknown-horizons_unknown-horizons.git _unknown-horizons_unknown-horizons.git_commits.csv unknown-horizons_unknown-horizons.git_hullabaloo_CONTRIBUTING.md
493 pub_scm_linux_kernel_git_jberg_iw.git pub_scm_linux_kernel_git_jberg_iw.git_commits.csv pub_scm_linux_kernel_git_jberg_iw.git_hullabaloo_CONTRIBUTING
494 pydata_xarray _pydata_xarray_commits.csv pydata_xarray_hullabaloo_CONTRIBUTING.md
495 pantsbuild_pex.git _pantsbuild_pex.git_commits.csv pantsbuild_pex.git_hullabaloo_CONTRIBUTING.md
496 Diaoul_subliminal.git _Diaoul_subliminal.git_commits.csv Diaoul_subliminal.git_hullabaloo_CONTRIBUTING.md
497 certbot_josepy _certbot_josepy_commits.csv certbot_josepy_hullabaloo_CONTRIBUTING.rst
498 janestreet_sexplib.git _janestreet_sexplib.git_commits.csv janestreet_sexplib.git_hullabaloo_CONTRIBUTING.md
499 google_googletest.git _google_googletest.git_commits.csv google_googletest.git_hullabaloo_CONTRIBUTING.md
500 nginxinc_nginx-prometheus-exporter _nginxinc_nginx-prometheus-exporter_commits.csv nginxinc_nginx-prometheus-exporter_hullabaloo_CONTRIBUTING.md
501 simd-everywhere_simde _simd-everywhere_simde_commits.csv simd-everywhere_simde_hullabaloo_CONTRIBUTING.md
502 AFLplusplus_AFLplusplus.git _AFLplusplus_AFLplusplus.git_commits.csv AFLplusplus_AFLplusplus.git_hullabaloo_CONTRIBUTING.md
503 pyparsing_pyparsing _pyparsing_pyparsing_commits.csv pyparsing_pyparsing_hullabaloo_CONTRIBUTING.md
504 EnterpriseDB_mysql_fdw.git _EnterpriseDB_mysql_fdw.git_commits.csv EnterpriseDB_mysql_fdw.git_hullabaloo_CONTRIBUTING.md
505 sphinx-contrib_restbuilder.git _sphinx-contrib_restbuilder.git_commits.csv sphinx-contrib_restbuilder.git_hullabaloo_CONTRIBUTING.rst
506 erikd_libsndfile _erikd_libsndfile_commits.csv erikd_libsndfile_hullabaloo_CONTRIBUTING.md
507 davidcelis_api-pagination.git _davidcelis_api-pagination.git_commits.csv davidcelis_api-pagination.git_hullabaloo_CONTRIBUTING.md
508 zopefoundation_zope.component _zopefoundation_zope.component_commits.csv zopefoundation_zope.component_hullabaloo_CONTRIBUTING.md
509 resurrecting-open-source-projects_txt2html _resurrecting-open-source-projects_txt2html_commits.csv resurrecting-open-source-projects_txt2html_hullabaloo_CONTRIBUTING.md
510 stephane_libmodbus.git _stephane_libmodbus.git_commits.csv stephane_libmodbus.git_hullabaloo_CONTRIBUTING.md
511 iovisor_bcc.git _iovisor_bcc.git_commits.csv iovisor_bcc.git_hullabaloo_CONTRIBUTING-SCRIPTS.md
512 puppetlabs_puppetlabs-firewall _puppetlabs_puppetlabs-firewall_commits.csv puppetlabs_puppetlabs-firewall_hullabaloo_CONTRIBUTING.md
513 codedread_scour.git _codedread_scour.git_commits.csv codedread_scour.git_hullabaloo_CONTRIBUTING.md
514 puppetlabs_puppetlabs-concat _puppetlabs_puppetlabs-concat_commits.csv puppetlabs_puppetlabs-concat_hullabaloo_CONTRIBUTING.md
515 philpem_printer-driver-ptouch.git _philpem_printer-driver-ptouch.git_commits.csv philpem_printer-driver-ptouch.git_hullabaloo_CONTRIBUTING.md
516 ycm-core_YouCompleteMe _ycm-core_YouCompleteMe_commits.csv ycm-core_YouCompleteMe_hullabaloo_CONTRIBUTING.md
517 totalopenstation_totalopenstation.git _totalopenstation_totalopenstation.git_commits.csv totalopenstation_totalopenstation.git_hullabaloo_CONTRIBUTING.md
518 diff-match-patch-python_diff-match-patch _diff-match-patch-python_diff-match-patch_commits.csv diff-match-patch-python_diff-match-patch_hullabaloo_CONTRIBUTING.md
519 dask_partd.git _dask_partd.git_commits.csv dask_partd.git_hullabaloo_CONTRIBUTING.md
520 boto_botocore _boto_botocore_commits.csv boto_botocore_hullabaloo_CONTRIBUTING.md
521 locationtech_jts.git _locationtech_jts.git_commits.csv locationtech_jts.git_hullabaloo_CONTRIBUTING.md
522 rclone_rclone.git _rclone_rclone.git_commits.csv rclone_rclone.git_hullabaloo_CONTRIBUTING.md
523 osmcode_osmium-tool.git _osmcode_osmium-tool.git_commits.csv osmcode_osmium-tool.git_hullabaloo_CONTRIBUTING.md
524 jtesta_ssh-audit.git _jtesta_ssh-audit.git_commits.csv jtesta_ssh-audit.git_hullabaloo_CONTRIBUTING.md
525 sferik_twitter _sferik_twitter_commits.csv sferik_twitter_hullabaloo_CONTRIBUTING.md
526 developit_preact.git _developit_preact.git_commits.csv developit_preact.git_hullabaloo_CONTRIBUTING.md
527 phpmyadmin_motranslator _phpmyadmin_motranslator_commits.csv phpmyadmin_motranslator_hullabaloo_CONTRIBUTING.md
528 matrix-org_synapse.git _matrix-org_synapse.git_commits.csv matrix-org_synapse.git_hullabaloo_CONTRIBUTING.rst
529 common-workflow-language_schema_salad _common-workflow-language_schema_salad_commits.csv common-workflow-language_schema_salad_hullabaloo_CONTRIBUTING.md
530 dagolden_Config-Identity.git _dagolden_Config-Identity.git_commits.csv dagolden_Config-Identity.git_hullabaloo_CONTRIBUTING.mkdn
531 eproxus_meck.git _eproxus_meck.git_commits.csv eproxus_meck.git_hullabaloo_CONTRIBUTING.md
532 plotly_plotly.R.git _plotly_plotly.R.git_commits.csv plotly_plotly.R.git_hullabaloo_CONTRIBUTING.md
533 ClusterLabs_pacemaker _ClusterLabs_pacemaker_commits.csv ClusterLabs_pacemaker_hullabaloo_CONTRIBUTING.md
534 puppetlabs_puppetlabs-apache _puppetlabs_puppetlabs-apache_commits.csv puppetlabs_puppetlabs-apache_hullabaloo_CONTRIBUTING.md
535 PyWavelets_pywt.git _PyWavelets_pywt.git_commits.csv PyWavelets_pywt.git_hullabaloo_CONTRIBUTING.md
536 jazzband_django-recurrence _jazzband_django-recurrence_commits.csv jazzband_django-recurrence_hullabaloo_CONTRIBUTING.rst
537 Backblaze_B2_Command_Line_Tool _Backblaze_B2_Command_Line_Tool_commits.csv Backblaze_B2_Command_Line_Tool_hullabaloo_CONTRIBUTING.md
538 mvz_ruby-gir-ffi _mvz_ruby-gir-ffi_commits.csv mvz_ruby-gir-ffi_hullabaloo_CONTRIBUTING.md
539 HandBrake_HandBrake _HandBrake_HandBrake_commits.csv HandBrake_HandBrake_hullabaloo_CONTRIBUTING.md
540 fail2ban_fail2ban _fail2ban_fail2ban_commits.csv fail2ban_fail2ban_hullabaloo_CONTRIBUTING.md
541 libwww-perl_URI.git _libwww-perl_URI.git_commits.csv libwww-perl_URI.git_hullabaloo_CONTRIBUTING.md
542 CESNET_libyang CESNET_libyang_commits.csv CESNET_libyang_hullabaloo_CONTRIBUTING.md
543 zopefoundation_zope.event _zopefoundation_zope.event_commits.csv zopefoundation_zope.event_hullabaloo_CONTRIBUTING.md
544 intel_libva.git _intel_libva.git_commits.csv intel_libva.git_hullabaloo_CONTRIBUTING.md
545 nesquena_rabl _nesquena_rabl_commits.csv nesquena_rabl_hullabaloo_CONTRIBUTING.md
546 pytest-dev_pytest-cov.git _pytest-dev_pytest-cov.git_commits.csv pytest-dev_pytest-cov.git_hullabaloo_CONTRIBUTING.md
547 linuxmint_cjs.git _linuxmint_cjs.git_commits.csv linuxmint_cjs.git_hullabaloo_CONTRIBUTING.md
548 michaeljones_breathe.git _michaeljones_breathe.git_commits.csv michaeljones_breathe.git_hullabaloo_CONTRIBUTING.rst
549 GoalSmashers_clean-css.git _GoalSmashers_clean-css.git_commits.csv GoalSmashers_clean-css.git_hullabaloo_CONTRIBUTING.md
550 smarty-php_smarty.git _smarty-php_smarty.git_commits.csv smarty-php_smarty.git_hullabaloo_CONTRIBUTING.md
551 coreruleset_coreruleset.git _coreruleset_coreruleset.git_commits.csv coreruleset_coreruleset.git_hullabaloo_CONTRIBUTING.md
552 mapbox_leaflet-image _mapbox_leaflet-image_commits.csv mapbox_leaflet-image_hullabaloo_CONTRIBUTING.md
553 httpie_httpie _httpie_httpie_commits.csv httpie_httpie_hullabaloo_CONTRIBUTING.rst
554 Icinga_icinga2 _Icinga_icinga2_commits.csv Icinga_icinga2_hullabaloo_CONTRIBUTING.md
555 bit-team_backintime _bit-team_backintime_commits.csv bit-team_backintime_hullabaloo_CONTRIBUTING.md
556 bastibe_python-soundfile.git _bastibe_python-soundfile.git_commits.csv bastibe_python-soundfile.git_hullabaloo_CONTRIBUTING.rst
557 howardabrams_node-mocks-http _howardabrams_node-mocks-http_commits.csv howardabrams_node-mocks-http_hullabaloo_CONTRIBUTING.md
558 yrro_command-t yrro_command-t_commits.csv yrro_command-t_hullabaloo_CONTRIBUTING.md
559 zaach_jison _zaach_jison_commits.csv zaach_jison_hullabaloo_CONTRIBUTING.md
560 zopefoundation_zope.interface.git _zopefoundation_zope.interface.git_commits.csv zopefoundation_zope.interface.git_hullabaloo_CONTRIBUTING.md
561 rbenv_ruby-build.git _rbenv_ruby-build.git_commits.csv rbenv_ruby-build.git_hullabaloo_CONTRIBUTING.md
562 mishoo_UglifyJS2 _mishoo_UglifyJS2_commits.csv mishoo_UglifyJS2_hullabaloo_CONTRIBUTING.md
563 Pylons_hupper _Pylons_hupper_commits.csv Pylons_hupper_hullabaloo_CONTRIBUTING.rst
564 abishekvashok_cmatrix.git _abishekvashok_cmatrix.git_commits.csv abishekvashok_cmatrix.git_hullabaloo_CONTRIBUTING.md
565 gazebosim_gz-transport _gazebosim_gz-transport_commits.csv gazebosim_gz-transport_hullabaloo_CONTRIBUTING.md
566 django-extensions_django-extensions _django-extensions_django-extensions_commits.csv django-extensions_django-extensions_hullabaloo_CONTRIBUTING.md
567 P403n1x87_austin P403n1x87_austin_commits.csv P403n1x87_austin_hullabaloo_CONTRIBUTING.md
568 c-ares_c-ares.git _c-ares_c-ares.git_commits.csv c-ares_c-ares.git_hullabaloo_CONTRIBUTING
569 schacon_hg-git.git _schacon_hg-git.git_commits.csv schacon_hg-git.git_hullabaloo_CONTRIBUTING
570 fonttools_fonttools.git _fonttools_fonttools.git_commits.csv fonttools_fonttools.git_hullabaloo_CONTRIBUTING.md
571 mcmtroffaes_pathlib2.git _mcmtroffaes_pathlib2.git_commits.csv mcmtroffaes_pathlib2.git_hullabaloo_CONTRIBUTING.rst
572 moment_moment.git _moment_moment.git_commits.csv moment_moment.git_hullabaloo_CONTRIBUTING.md
573 zmartzone_cjose.git _zmartzone_cjose.git_commits.csv zmartzone_cjose.git_hullabaloo_CONTRIBUTING.md
574 ipython_ipython.git _ipython_ipython.git_commits.csv ipython_ipython.git_hullabaloo_CONTRIBUTING.md
575 webrtchacks_adapter _webrtchacks_adapter_commits.csv webrtchacks_adapter_hullabaloo_CONTRIBUTING
576 python-bugzilla_python-bugzilla _python-bugzilla_python-bugzilla_commits.csv python-bugzilla_python-bugzilla_hullabaloo_CONTRIBUTING.md
577 markdown-it_markdown-it _markdown-it_markdown-it_commits.csv markdown-it_markdown-it_hullabaloo_CONTRIBUTING.md
578 jazzband_django-debug-toolbar.git _jazzband_django-debug-toolbar.git_commits.csv jazzband_django-debug-toolbar.git_hullabaloo_CONTRIBUTING.md
579 astropy_astroquery.git _astropy_astroquery.git_commits.csv astropy_astroquery.git_hullabaloo_CONTRIBUTING.rst
580 rasterio_rasterio.git _rasterio_rasterio.git_commits.csv rasterio_rasterio.git_hullabaloo_CONTRIBUTING.rst
581 librsync_librsync _librsync_librsync_commits.csv librsync_librsync_hullabaloo_CONTRIBUTING.md
582 Xastir_Xastir.git _Xastir_Xastir.git_commits.csv Xastir_Xastir.git_hullabaloo_CONTRIBUTING
583 oar-team_oar oar-team_oar_commits.csv oar-team_oar_hullabaloo_CONTRIBUTING.md
584 zyga_padme _zyga_padme_commits.csv zyga_padme_hullabaloo_CONTRIBUTING.rst
585 zloirock_core-js.git _zloirock_core-js.git_commits.csv zloirock_core-js.git_hullabaloo_CONTRIBUTING.md
586 dropbox_dropbox-sdk-python _dropbox_dropbox-sdk-python_commits.csv dropbox_dropbox-sdk-python_hullabaloo_CONTRIBUTING.rst
587 orcus_orcus orcus_orcus_commits.csv orcus_orcus_hullabaloo_CONTRIBUTING.md
588 scrapinghub_dateparser _scrapinghub_dateparser_commits.csv scrapinghub_dateparser_hullabaloo_CONTRIBUTING.rst
589 gstreamer_orc gstreamer_orc_commits.csv gstreamer_orc_hullabaloo_CONTRIBUTING.md
590 nodejs_node-gyp.git _nodejs_node-gyp.git_commits.csv nodejs_node-gyp.git_hullabaloo_CONTRIBUTING.md
591 audacity_audacity.git _audacity_audacity.git_commits.csv audacity_audacity.git_hullabaloo_CONTRIBUTING.md
592 kornelski_pngquant.git _kornelski_pngquant.git_commits.csv kornelski_pngquant.git_hullabaloo_CONTRIBUTING.md
593 Iotic-Labs_py-ubjson _Iotic-Labs_py-ubjson_commits.csv Iotic-Labs_py-ubjson_hullabaloo_CONTRIBUTING.md
594 puppetlabs_puppetlabs-postgresql.git _puppetlabs_puppetlabs-postgresql.git_commits.csv puppetlabs_puppetlabs-postgresql.git_hullabaloo_CONTRIBUTING.md
595 GNOME_json-glib.git GNOME_json-glib.git_commits.csv GNOME_json-glib.git_hullabaloo_CONTRIBUTING.md
596 easyrdf_easyrdf.git _easyrdf_easyrdf.git_commits.csv easyrdf_easyrdf.git_hullabaloo_CONTRIBUTING.md
597 GNOME_gnome-clocks.git GNOME_gnome-clocks.git_commits.csv GNOME_gnome-clocks.git_hullabaloo_CONTRIBUTING.md
598 Leaflet_Leaflet.markercluster _Leaflet_Leaflet.markercluster_commits.csv Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
599 open-power_skiboot.git _open-power_skiboot.git_commits.csv open-power_skiboot.git_hullabaloo_CONTRIBUTING.md
600 osmcode_libosmium.git _osmcode_libosmium.git_commits.csv osmcode_libosmium.git_hullabaloo_CONTRIBUTING.md
601 resurrecting-open-source-projects_dcfldd _resurrecting-open-source-projects_dcfldd_commits.csv resurrecting-open-source-projects_dcfldd_hullabaloo_CONTRIBUTING.md
602 angband_angband _angband_angband_commits.csv angband_angband_hullabaloo_CONTRIBUTING.md
603 jazzband_django-pipeline _jazzband_django-pipeline_commits.csv jazzband_django-pipeline_hullabaloo_CONTRIBUTING.rst
604 jquery_qunit.git _jquery_qunit.git_commits.csv jquery_qunit.git_hullabaloo_CONTRIBUTING.md
605 gpodder_gpodder _gpodder_gpodder_commits.csv gpodder_gpodder_hullabaloo_CONTRIBUTING.md
606 gpodder_mygpoclient _gpodder_mygpoclient_commits.csv gpodder_mygpoclient_hullabaloo_CONTRIBUTING.md
607 pytroll_satpy _pytroll_satpy_commits.csv pytroll_satpy_hullabaloo_CONTRIBUTING.rst
608 GNOME_mobile-broadband-provider-info GNOME_mobile-broadband-provider-info_commits.csv GNOME_mobile-broadband-provider-info_hullabaloo_CONTRIBUTING
609 01org_isa-l.git _01org_isa-l.git_commits.csv 01org_isa-l.git_hullabaloo_CONTRIBUTING.md
610 jbeder_yaml-cpp _jbeder_yaml-cpp_commits.csv jbeder_yaml-cpp_hullabaloo_CONTRIBUTING.md
611 letsencrypt_letsencrypt _letsencrypt_letsencrypt_commits.csv letsencrypt_letsencrypt.git_hullabaloo_CONTRIBUTING.rst
612 cookiecutter_whichcraft _cookiecutter_whichcraft_commits.csv cookiecutter_whichcraft_hullabaloo_CONTRIBUTING.rst
613 clojure_tools.logging.git _clojure_tools.logging.git_commits.csv clojure_tools.logging.git_hullabaloo_CONTRIBUTING.md
614 javaparser_javaparser.git _javaparser_javaparser.git_commits.csv javaparser_javaparser.git_hullabaloo_CONTRIBUTING.md
615 boxbackup_boxbackup.git _boxbackup_boxbackup.git_commits.csv boxbackup_boxbackup.git_hullabaloo_CONTRIBUTING.md
616 encode_django-rest-framework _encode_django-rest-framework_commits.csv encode_django-rest-framework_hullabaloo_CONTRIBUTING.md
617 matthewdeanmartin_terminaltables _matthewdeanmartin_terminaltables_commits.csv matthewdeanmartin_terminaltables_hullabaloo_CONTRIBUTING.md
618 akheron_jansson.git _akheron_jansson.git_commits.csv akheron_jansson.git_hullabaloo_CONTRIBUTING.md
619 namhyung_uftrace _namhyung_uftrace_commits.csv namhyung_uftrace_hullabaloo_CONTRIBUTING.md
620 PyTables_PyTables _PyTables_PyTables_commits.csv PyTables_PyTables_hullabaloo_CONTRIBUTING.md
621 resurrecting-open-source-projects_sniffit _resurrecting-open-source-projects_sniffit_commits.csv resurrecting-open-source-projects_sniffit_hullabaloo_CONTRIBUTING.md
622 nicolargo_glances _nicolargo_glances_commits.csv nicolargo_glances_hullabaloo_CONTRIBUTING.md
623 GNOME_glade GNOME_glade_commits.csv GNOME_glade_hullabaloo_CONTRIBUTING.md
624 prometheus_node_exporter _prometheus_node_exporter_commits.csv prometheus_node_exporter_hullabaloo_CONTRIBUTING.md
625 elastic_elasticsearch-ruby _elastic_elasticsearch-ruby_commits.csv elastic_elasticsearch-ruby_hullabaloo_CONTRIBUTING.md
626 lunarmodules_penlight _lunarmodules_penlight_commits.csv lunarmodules_penlight_hullabaloo_CONTRIBUTING.md
627 OSGeo_shapelib.git _OSGeo_shapelib.git_commits.csv OSGeo_shapelib.git_hullabaloo_CONTRIBUTING.md
628 idlesign_django-sitetree _idlesign_django-sitetree_commits.csv idlesign_django-sitetree_hullabaloo_CONTRIBUTING
629 coringao_jag coringao_jag_commits.csv coringao_jag_hullabaloo_CONTRIBUTING.md
630 intridea_grape-entity _intridea_grape-entity_commits.csv intridea_grape-entity_hullabaloo_CONTRIBUTING.md
631 dbus_dbus-glib.git dbus_dbus-glib.git_commits.csv dbus_dbus-glib.git_hullabaloo_CONTRIBUTING
632 eventlet_eventlet.git _eventlet_eventlet.git_commits.csv eventlet_eventlet.git_hullabaloo_CONTRIBUTING.md
633 SethMMorton_natsort.git _SethMMorton_natsort.git_commits.csv SethMMorton_natsort.git_hullabaloo_CONTRIBUTING.md
634 guessit-io_guessit.git _guessit-io_guessit.git_commits.csv guessit-io_guessit.git_hullabaloo_CONTRIBUTING.rst
635 elastic_elasticsearch-py.git _elastic_elasticsearch-py.git_commits.csv elastic_elasticsearch-py.git_hullabaloo_CONTRIBUTING.md
636 NagiosEnterprises_nrpe.git _NagiosEnterprises_nrpe.git_commits.csv NagiosEnterprises_nrpe.git_hullabaloo_CONTRIBUTING.md
637 pylons_plaster _pylons_plaster_commits.csv pylons_plaster_hullabaloo_CONTRIBUTING.rst
638 oath-toolkit_oath-toolkit oath-toolkit_oath-toolkit_commits.csv oath-toolkit_oath-toolkit_hullabaloo_CONTRIBUTING.md
639 flot_flot _flot_flot_commits.csv flot_flot_hullabaloo_CONTRIBUTING.md
640 squizlabs_PHP_CodeSniffer _squizlabs_PHP_CodeSniffer_commits.csv squizlabs_PHP_CodeSniffer_hullabaloo_CONTRIBUTING.md
641 rytilahti_python-miio.git _rytilahti_python-miio.git_commits.csv rytilahti_python-miio.git_hullabaloo_CONTRIBUTING.md
642 Tux_Text-CSV_XS.git _Tux_Text-CSV_XS.git_commits.csv Tux_Text-CSV_XS.git_hullabaloo_CONTRIBUTING.md
643 RiotGames_buff-extensions _RiotGames_buff-extensions_commits.csv RiotGames_buff-extensions_hullabaloo_CONTRIBUTING.md
644 dompdf_dompdf _dompdf_dompdf_commits.csv dompdf_dompdf_hullabaloo_CONTRIBUTING.md
645 EsotericSoftware_kryo.git _EsotericSoftware_kryo.git_commits.csv EsotericSoftware_kryo.git_hullabaloo_CONTRIBUTING.md
646 ronf_asyncssh _ronf_asyncssh_commits.csv ronf_asyncssh_hullabaloo_CONTRIBUTING.rst
647 zopefoundation_zc.lockfile _zopefoundation_zc.lockfile_commits.csv zopefoundation_zc.lockfile_hullabaloo_CONTRIBUTING.md
648 qxmpp-project_qxmpp.git _qxmpp-project_qxmpp.git_commits.csv qxmpp-project_qxmpp.git_hullabaloo_CONTRIBUTING.md
649 eclipse-ee4j_eclipselink.git _eclipse-ee4j_eclipselink.git_commits.csv eclipse-ee4j_eclipselink.git_hullabaloo_CONTRIBUTING.md
650 ImageOptim_libimagequant.git _ImageOptim_libimagequant.git_commits.csv ImageOptim_libimagequant.git_hullabaloo_CONTRIBUTING.md
651 ianare_exif-py _ianare_exif-py_commits.csv ianare_exif-py_hullabaloo_CONTRIBUTING.rst
652 wtforms_flask-wtf.git _wtforms_flask-wtf.git_commits.csv wtforms_flask-wtf.git_hullabaloo_CONTRIBUTING.rst
653 websocket-client_websocket-client _websocket-client_websocket-client_commits.csv websocket-client_websocket-client_hullabaloo_CONTRIBUTING.md
654 i18next_i18next _i18next_i18next_commits.csv i18next_i18next_hullabaloo_CONTRIBUTING.md
655 aptly-dev_aptly.git _aptly-dev_aptly.git_commits.csv aptly-dev_aptly.git_hullabaloo_CONTRIBUTING.md
656 GNOME_gvfs.git GNOME_gvfs.git_commits.csv GNOME_gvfs.git_hullabaloo_CONTRIBUTING.md
657 pymodbus-dev_pymodbus.git _pymodbus-dev_pymodbus.git_commits.csv pymodbus-dev_pymodbus.git_hullabaloo_CONTRIBUTING.md
658 Leaflet_Leaflet _Leaflet_Leaflet_commits.csv Leaflet_Leaflet.markercluster_hullabaloo_CONTRIBUTING.md
659 cyrusimap_cyrus-sasl.git _cyrusimap_cyrus-sasl.git_commits.csv cyrusimap_cyrus-sasl.git_hullabaloo_CONTRIBUTING.md
660 zopefoundation_zope.i18nmessageid _zopefoundation_zope.i18nmessageid_commits.csv zopefoundation_zope.i18nmessageid_hullabaloo_CONTRIBUTING.md
661 gitea_postgis_postgis.git gitea_postgis_postgis.git_commits.csv gitea_postgis_postgis.git_hullabaloo_CONTRIBUTING.md
662 theskumar_python-dotenv.git _theskumar_python-dotenv.git_commits.csv theskumar_python-dotenv.git_hullabaloo_CONTRIBUTING.md
663 sobolevn_django-split-settings _sobolevn_django-split-settings_commits.csv sobolevn_django-split-settings_hullabaloo_CONTRIBUTING.rst
664 Openshot_openshot-qt.git _Openshot_openshot-qt.git_commits.csv Openshot_openshot-qt.git_hullabaloo_CONTRIBUTING.md
665 powerline_powerline _powerline_powerline_commits.csv powerline_powerline_hullabaloo_CONTRIBUTING.rst
666 varvet_pundit _varvet_pundit_commits.csv varvet_pundit_hullabaloo_CONTRIBUTING.md
667 karenetheridge_Module-Manifest _karenetheridge_Module-Manifest_commits.csv karenetheridge_Module-Manifest_hullabaloo_CONTRIBUTING
668 spacetelescope_gwcs _spacetelescope_gwcs_commits.csv spacetelescope_gwcs_hullabaloo_CONTRIBUTING.md
669 lxc_lxcfs.git _lxc_lxcfs.git_commits.csv lxc_lxcfs.git_hullabaloo_CONTRIBUTING.md
670 colmap_colmap _colmap_colmap_commits.csv colmap_colmap_hullabaloo_CONTRIBUTING.md
671 slime_slime _slime_slime_commits.csv slime_slime_hullabaloo_CONTRIBUTING.md
672 axel-download-accelerator_axel.git _axel-download-accelerator_axel.git_commits.csv axel-download-accelerator_axel.git_hullabaloo_CONTRIBUTING.md
673 tantale_deprecated.git _tantale_deprecated.git_commits.csv tantale_deprecated.git_hullabaloo_CONTRIBUTING.rst
674 schleuder_schleuder.git schleuder_schleuder.git_commits.csv schleuder_schleuder.git_hullabaloo_CONTRIBUTING.md
675 voxpupuli_librarian-puppet.git _voxpupuli_librarian-puppet.git_commits.csv voxpupuli_librarian-puppet.git_hullabaloo_CONTRIBUTING.md
676 jmaslak_Net-Netmask.git _jmaslak_Net-Netmask.git_commits.csv jmaslak_Net-Netmask.git_hullabaloo_CONTRIBUTING
677 jobovy_galpy.git _jobovy_galpy.git_commits.csv jobovy_galpy.git_hullabaloo_CONTRIBUTING.md
678 bobek_pkg-pimd bobek_pkg-pimd_commits.csv bobek_pkg-pimd_hullabaloo_CONTRIBUTING.md
679 pydanny_cached-property.git _pydanny_cached-property.git_commits.csv pydanny_cached-property.git_hullabaloo_CONTRIBUTING.rst
680 ros_robot_state_publisher _ros_robot_state_publisher_commits.csv ros_robot_state_publisher_hullabaloo_CONTRIBUTING.md
681 pazz_alot _pazz_alot_commits.csv pazz_alot_hullabaloo_CONTRIBUTING.rst
682 plasma_kwin.git plasma_kwin.git_commits.csv plasma_kwin.git_hullabaloo_CONTRIBUTING.md
683 resurrecting-open-source-projects_cbm _resurrecting-open-source-projects_cbm_commits.csv resurrecting-open-source-projects_cbm_hullabaloo_CONTRIBUTING.md
684 intel_compute-runtime _intel_compute-runtime_commits.csv intel_compute-runtime_hullabaloo_CONTRIBUTING.md
685 thumbor_libthumbor _thumbor_libthumbor_commits.csv thumbor_libthumbor_hullabaloo_CONTRIBUTING
686 epeli_underscore.string _epeli_underscore.string_commits.csv epeli_underscore.string_hullabaloo_CONTRIBUTING.md
687 geopython_geolinks.git _geopython_geolinks.git_commits.csv geopython_geolinks.git_hullabaloo_CONTRIBUTING.md
688 zeroc-ice_ice-builder-gradle-debian-packaging.git zeroc-ice_ice-builder-gradle-debian-packaging.git_commits.csv zeroc-ice_ice-builder-gradle-debian-packaging.git_hullabaloo_CONTRIBUTING.md
689 maxmind_geoip-api-perl.git _maxmind_geoip-api-perl.git_commits.csv maxmind_geoip-api-perl.git_hullabaloo_CONTRIBUTING.md
690 httprb_http.rb _httprb_http.rb_commits.csv httprb_http.rb_hullabaloo_CONTRIBUTING.md
691 rails_rails-dom-testing _rails_rails-dom-testing_commits.csv rails_rails-dom-testing_hullabaloo_CONTRIBUTING.md
692 jas_libntlm jas_libntlm_commits.csv jas_libntlm_hullabaloo_CONTRIBUTING.md
693 silx-kit_pyFAI _silx-kit_pyFAI_commits.csv silx-kit_pyFAI_hullabaloo_CONTRIBUTING.md
694 rakhimov_scram.git _rakhimov_scram.git_commits.csv rakhimov_scram.git_hullabaloo_CONTRIBUTING.md
695 capistrano_sshkit.git _capistrano_sshkit.git_commits.csv capistrano_sshkit.git_hullabaloo_CONTRIBUTING.md
696 X0rg_CPU-X.git _X0rg_CPU-X.git_commits.csv X0rg_CPU-X.git_hullabaloo_CONTRIBUTING.md
697 GNOME_gnome-desktop.git GNOME_gnome-desktop.git_commits.csv GNOME_gnome-desktop.git_hullabaloo_CONTRIBUTING.md
698 florimondmanca_djangorestframework-api-key _florimondmanca_djangorestframework-api-key_commits.csv florimondmanca_djangorestframework-api-key_hullabaloo_CONTRIBUTING.md
699 zopefoundation_BTrees.git _zopefoundation_BTrees.git_commits.csv zopefoundation_BTrees.git_hullabaloo_CONTRIBUTING.md
700 selectize_selectize.js _selectize_selectize.js_commits.csv selectize_selectize.js_hullabaloo_CONTRIBUTING.md
701 jupyter_nbformat _jupyter_nbformat_commits.csv jupyter_nbformat_hullabaloo_CONTRIBUTING.md
702 libidn_libidn2 libidn_libidn2_commits.csv libidn_libidn2_hullabaloo_CONTRIBUTING
703 Electrostatics_apbs _Electrostatics_apbs_commits.csv Electrostatics_apbs_hullabaloo_CONTRIBUTING.md
704 checkpoint-restore_criu.git _checkpoint-restore_criu.git_commits.csv checkpoint-restore_criu.git_hullabaloo_CONTRIBUTING.md
705 untitaker_python-atomicwrites _untitaker_python-atomicwrites_commits.csv untitaker_python-atomicwrites_hullabaloo_CONTRIBUTING.rst
706 dpmb_dpmb dpmb_dpmb_commits.csv dpmb_dpmb_hullabaloo_CONTRIBUTING.md
707 emcrisostomo_fswatch.git _emcrisostomo_fswatch.git_commits.csv emcrisostomo_fswatch.git_hullabaloo_CONTRIBUTING.md
708 flask-restful_flask-restful _flask-restful_flask-restful_commits.csv flask-restful_flask-restful_hullabaloo_CONTRIBUTING.md
709 joaotavora_yasnippet _joaotavora_yasnippet_commits.csv joaotavora_yasnippet_hullabaloo_CONTRIBUTING.md
710 geopython_stetl.git _geopython_stetl.git_commits.csv geopython_stetl.git_hullabaloo_CONTRIBUTING.md
711 django-polymorphic_django-polymorphic _django-polymorphic_django-polymorphic_commits.csv django-polymorphic_django-polymorphic_hullabaloo_CONTRIBUTING.rst
712 jendrikseipp_vulture.git _jendrikseipp_vulture.git_commits.csv jendrikseipp_vulture.git_hullabaloo_CONTRIBUTING.rst
713 GNOME_gnome-calendar.git GNOME_gnome-calendar.git_commits.csv GNOME_gnome-calendar.git_hullabaloo_CONTRIBUTING.md
714 capistrano_capistrano.git _capistrano_capistrano.git_commits.csv capistrano_capistrano.git_hullabaloo_CONTRIBUTING
715 mwilliamson_spur.py.git _mwilliamson_spur.py.git_commits.csv mwilliamson_spur.py.git_hullabaloo_CONTRIBUTING.rst
716 troglobit_inadyn _troglobit_inadyn_commits.csv troglobit_inadyn_hullabaloo_CONTRIBUTING.md

View File

@ -1,4 +0,0 @@
https://github.com/vcrhonek/hwdata.git, 7b9bf81a172eaccb55f282c39480161f73edf8f8
https://invent.kde.org/plasma/libksysguard.git, 94623f22ddc05e6ba39515f5dd19fde28c2d3f23
https://github.com/python-babel/flask-babel, 1174bff582e4a8c41bec10b7114aa202a32c6b48
https://github.com/ralphbean/bugwarrior, af6b7f05af97c6be88e1e3dc2be5e2a5a108d464

View File

@ -1,4 +0,0 @@
https://github.com/lebigot/uncertainties.git, 4a89afd24a347ef179d747dc578ec3b3db77f1d7
https://github.com/dstosberg/odt2txt, aadfd070d3cdf7e01a0935bdf597541fc7b54c48
https://github.com/Bioconductor/AnnotationDbi.git, 3683f9f261e8a21b3638f3587dedc6d16c0068af
https://gitlab.com/stevenshiau/clonezilla.git, 828a8bc85526e1d52ae0dca058cd2254537649b3

View File

@ -24,8 +24,8 @@ print(missing_files_df)
#source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/second_batch/readme_commits' # Replace with your source directory path #source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/second_batch/readme_commits' # Replace with your source directory path
#target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/second_batch/first_version_documents/validation_readme' # Replace with your target directory path #target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/second_batch/first_version_documents/validation_readme' # Replace with your target directory path
source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/main_commit_data/readme' # Replace with your source directory path source_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/final_data/main_commit_data/readme/' # Replace with your source directory path
target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/readme' # Replace with your target directory path target_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/lagged_files/readme' # Replace with your target directory path
# List all files in the source directory # List all files in the source directory
source_files = os.listdir(source_directory) source_files = os.listdir(source_directory)
@ -54,7 +54,7 @@ for file in source_files:
print(no_pair) print(no_pair)
manifest_df = pd.DataFrame(manifest, columns=['repo_id', 'commits_filepath', 'fvf_filepath']) manifest_df = pd.DataFrame(manifest, columns=['repo_id', 'commits_filepath', 'fvf_filepath'])
print(len(manifest_df)) print(len(manifest_df))
manifest_df.to_csv(f"all_fvf_README_manifest-link.csv", index=False) manifest_df.to_csv(f"0205_all_fvf_README_manifest-link.csv", index=False)
#12825_revision/misc_data_files/main/all_fvf_CONTRIBUTING_manifest-link.csv #12825_revision/misc_data_files/main/all_fvf_CONTRIBUTING_manifest-link.csv
#source_file_path = os.path.join(source_directory, file_name) #source_file_path = os.path.join(source_directory, file_name)
#target_file_path = os.path.join(target_directory, file_name) #target_file_path = os.path.join(target_directory, file_name)
@ -64,7 +64,7 @@ manifest_df.to_csv(f"all_fvf_README_manifest-link.csv", index=False)
# print(f"File '{file_name}' exists in both directories.") # print(f"File '{file_name}' exists in both directories.")
# else: # else:
# print(f"File '{file_name}' does not exist in the target directory.") # print(f"File '{file_name}' does not exist in the target directory.")
'''
# Load the CSV file into a DataFrame # Load the CSV file into a DataFrame
csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/test_second_batch_readme_manifest.csv' # Replace with your CSV file path csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/test_second_batch_readme_manifest.csv' # Replace with your CSV file path
column_name = 'fvf_filepath' # Replace with your column name containing filenames column_name = 'fvf_filepath' # Replace with your column name containing filenames
@ -91,16 +91,14 @@ print("Filenames in the directory that are not reflected in the CSV column:")
for file in missing_files: for file in missing_files:
print(file) print(file)
csv_file = '/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/all_013025_contributing_manifest.csv' # Replace with your CSV file path csv_file = "/home/SOC.NORTHWESTERN.EDU/nws8519/git/24_deb_pkg_gov/12825_revision/misc_data_files/0205_all_fvf_README_manifest-link.csv" # Replace with your CSV file path
column_name = 'fvf_filepath' # Replace with your column name containing filenames column_name = 'fvf_filepath' # Replace with your column name containing filenames
# Read the CSV file # Read the CSV file
df = pd.read_csv(csv_file) df = pd.read_csv(csv_file)
file_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/first_version_documents/validation_contributing' file_directory = '/data/users/mgaughan/kkex/012825_cam_revision_main/lagged_files/readme/'
directory_files = os.listdir(file_directory) directory_files = os.listdir(file_directory)
for file in directory_files: for file in directory_files:
filtered_df = df[df[column_name] == file] filtered_df = df[df[column_name] == file]
if len(filtered_df) != 1: if len(filtered_df) != 1:
print(filtered_df) print(filtered_df)
break
'''

View File

@ -1,10 +0,0 @@
https://github.com/skk-dev/ddskk, 1b735bc003f445cc8e08e8ac2c0def423c125231
https://github.com/Starlink/starjava/issues/new, 76cc9ec549d9cd656bb34f45abd1e5e9a93f4f40
https://github.com/OSGeo/libgeotiff.git, 70beb1e3a3fbc1a2cfdfbc73b41e1c66f3719575
http://github.com/barbie/vcs-lite, c18dba813adf8e137db53fc78daaec07c2012c19
https://github.com/geographiclib/geographiclib.git, 21213c3ec0c1c970313934f97003ada1b1067b8c
https://github.com/scipy/scipy.git, c4752ce59e46ba20835c21e905a336779fc72f8a
https://github.com/ddnet/ddnet, 23ffe1ff6577adfce7980f961978ed3e8de59ed6
https://github.com/debian-tex/texlive-bin, d12ac25a96e0417317f0cfc70462ef565544d14e
https://github.com/icl-utk-edu/papi, 37592efffcaeb3315a4fa5e0d5a3e11ba9b7a801
https://github.com/debian-tex/lmodern, 1ff18177e4667dd77fe89a486c332e61903349d2

View File

@ -7,7 +7,7 @@ import pandas as pd
import time import time
#destination DIR: #destination DIR:
dest_dir="/data/users/mgaughan/kkex/012825_cam_revision_main/second_batch/first_version_documents/new_readme/" dest_dir="/data/users/mgaughan/kkex/012825_cam_revision_main/lagged_files/readme/"
#temp DIR: #temp DIR:
temp_dir="/data/users/mgaughan/tmp3/" temp_dir="/data/users/mgaughan/tmp3/"
@ -48,7 +48,7 @@ def delete_clone(temp_location):
# getting the specific readme or contributing file from a given commit # getting the specific readme or contributing file from a given commit
# inputs: upstream vcs link, commit hash, yes/no is it a readme # inputs: upstream vcs link, commit hash, yes/no is it a readme
def get_file(vcs_link, commit_hash, is_readme): def get_file(vcs_link, commit_hash, is_readme, index):
cwd = os.getcwd() cwd = os.getcwd()
os.environ['GIT_SSH_COMMAND'] = 'ssh -o StrictHostKeyChecking=no' os.environ['GIT_SSH_COMMAND'] = 'ssh -o StrictHostKeyChecking=no'
os.environ['GIT_ASKPASS'] = 'false' os.environ['GIT_ASKPASS'] = 'false'
@ -90,17 +90,11 @@ def get_file(vcs_link, commit_hash, is_readme):
doc_name = "README" doc_name = "README"
und_repo_id = '_'.join(repo_id.split("/")) und_repo_id = '_'.join(repo_id.split("/"))
doc_found = False for file in os.listdir(temp_repo_path):
for root, dirs, files in os.walk(temp_repo_path): if doc_name in file:
for file in files: doc_filename = file
if file.startswith(doc_name): doc_path = os.path.join(temp_repo_path, file)
doc_found = True dest_path = os.path.join(dest_dir, f"{index}_{und_repo_id}_{doc_filename}")
doc_filename = file
doc_path = os.path.join(root, file)
break
if doc_found:
break
dest_path = os.path.join(dest_dir, f"{und_repo_id}_hullabaloo_{doc_filename}")
shutil.copy(doc_path, dest_path) shutil.copy(doc_path, dest_path)
except Exception as e: except Exception as e:
print(f"outside cloning error: {e}") print(f"outside cloning error: {e}")
@ -129,18 +123,20 @@ def for_all_files(csv_path, is_readme):
time.sleep(5) time.sleep(5)
manifest_df = pd.DataFrame({ manifest_df = pd.DataFrame({
'commit_hash': [row[0]], 'commit_hash': [row[0]],
'upstream_vcs_link': [row[14]], 'upstream_vcs_link': [row[15]],
'repo_id': [row[12]], 'repo_id': [row[13]],
'project_handle': [row[13]] 'project_handle': [row[14]],
'lagged_hash': [row[12]],
'project_index': index
}) })
_check, new_filepath = get_file(manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0], is_readme) _check, new_filepath = get_file(manifest_df['upstream_vcs_link'][0], manifest_df['lagged_hash'][0], is_readme, index)
manifest_df['new_filepath'] = new_filepath manifest_df['new_filepath'] = new_filepath
if _check == True: if _check == True:
new_manifest_list.append(manifest_df) new_manifest_list.append(manifest_df)
else: else:
parsing_error.append([manifest_df['upstream_vcs_link'][0], manifest_df['commit_hash'][0]]) parsing_error.append([manifest_df['upstream_vcs_link'][0], manifest_df['lagged_hash'][0]], index)
except KeyboardInterrupt: except KeyboardInterrupt:
print("KeyBoardInterrrupt") print("KeyBoardInterrrupt")
finally: finally:
@ -148,11 +144,7 @@ def for_all_files(csv_path, is_readme):
for error in parsing_error: for error in parsing_error:
txt_file.write(', '.join(error) + "\n") txt_file.write(', '.join(error) + "\n")
manifest_df = pd.concat(new_manifest_list, ignore_index=True) manifest_df = pd.concat(new_manifest_list, ignore_index=True)
manifest_df.to_csv(f"013025_{doc}_manifest.csv", index=False) manifest_df.to_csv(f"020525_{doc}_manifest.csv", index=False)
if __name__ == "__main__": if __name__ == "__main__":
for_all_files("../misc_data_files/020125_README_for_download.csv", True) for_all_files("../misc_data_files/main/0205_README_publication_commits.csv", True)
#get_file("https://github.com/breakfastquay/rubberband", "a94f3f33577bf9d71166392febbfdf3cace6f1c8", True)
#get_file("https://gitlab.freedesktop.org/gstreamer/gstreamer", "1762dfbf982a75d895676b0063379e33b4f9b96a", True)
#get_file("https://github.com/ranger/ranger.git", "ea355f491fb10d5ce054c7813d9abdfd3fc68991" ,False)
#get_file("https://gitlab.gnome.org/Archive/glade", "7e5dfa8ccd211945e624b0fab7fe2b19fb1b9907" ,False)