getting lagged documents, now with index
This commit is contained in:
parent
f892dac38a
commit
54445c2e56
@ -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)
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -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
|
|
|
File diff suppressed because it is too large
Load Diff
@ -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
|
|
@ -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
|
|
@ -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
|
|
||||||
'''
|
|
@ -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
|
|
@ -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)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user