From 6dcfd5177a0bd948d81b9d088cad61645719f159 Mon Sep 17 00:00:00 2001 From: carminevassallo Date: Wed, 27 May 2020 23:09:10 +0200 Subject: [PATCH] remove zip olders and adapt README accordingly --- README.md | 12 +- cd-linter-code.zip | Bin 200130 -> 0 bytes cd-linter-code/pom.xml | 194 + .../antipattern/entities/CIAntiPattern.java | 256 + .../readers/CIAntiPatternCSVReader.java | 106 + .../writers/CIAntiPatternCSVWriter.java | 58 + .../writers/CIAntiPatternWriter.java | 54 + .../cdlinter/app/ConfigurationAnalytics.java | 416 + .../src/main/java/cdlinter/app/IoUtil.java | 163 + .../main/java/cdlinter/app/StatsPrinter.java | 32 + .../java/cdlinter/app/TemplateGenerator.java | 179 + .../main/java/cdlinter/app/VampirePusher.java | 111 + .../app/run_VampirePush_for_internal.java | 65 + .../run_import_ratings_and_linksToIssues.java | 104 + .../main/java/cdlinter/app/run_sampling.java | 131 + .../main/java/cdlinter/app/run_sampling2.java | 279 + .../cdlinter/app/run_second_sampling.java | 216 + .../datamining/gitlab/GitLabMiner.java | 1067 + .../datamining/gitlab/entities/Branch.java | 49 + .../datamining/gitlab/entities/Commit.java | 170 + .../gitlab/entities/Contributor.java | 92 + .../gitlab/entities/GitLabYAML.java | 36 + .../datamining/gitlab/entities/Issue.java | 115 + .../datamining/gitlab/entities/Job.java | 228 + .../datamining/gitlab/entities/Language.java | 45 + .../datamining/gitlab/entities/Languages.java | 343 + .../gitlab/entities/MergeRequest.java | 78 + .../datamining/gitlab/entities/Pipeline.java | 121 + .../datamining/gitlab/entities/Project.java | 196 + .../gitlab/entities/ProjectItem.java | 241 + .../datamining/gitlab/entities/Tag.java | 50 + .../datamining/gitlab/entities/User.java | 205 + .../gitlab/entities/package-info.java | 8 + .../java/cdlinter/detectors/Detector.java | 21 + .../GitLabYAMLAllowFailureDetector.java | 105 + .../detectors/GitLabYAMLDetector.java | 61 + .../GitLabYAMLDuplicateLibraries.java | 132 + .../detectors/GitLabYAMLManualDetector.java | 122 + .../GitLabYAMLOnlyExceptDetector.java | 182 + .../detectors/GitLabYAMLRetryDetector.java | 86 + .../GitLabYAMLVulnerabilityDetector.java | 206 + .../gitlabyaml/entities/Environment.java | 41 + .../detectors/gitlabyaml/entities/Except.java | 44 + .../gitlabyaml/entities/GitLabYAML.java | 79 + .../detectors/gitlabyaml/entities/Job.java | 262 + .../detectors/gitlabyaml/entities/Only.java | 39 + .../detectors/gitlabyaml/entities/Refs.java | 179 + .../detectors/gitlabyaml/entities/Retry.java | 27 + .../gitlabyaml/entities/RetryWhen.java | 14 + .../detectors/gitlabyaml/entities/When.java | 11 + .../gitlabyaml/parsers/GitLabYAMLParser.java | 113 + .../utils/AllowFailureNumberExtractor.java | 21 + .../utils/GitLabYAMLLineNumberExtractor.java | 43 + .../utils/ManualLineNumberExtractor.java | 22 + .../utils/RetryLineNumberExtractor.java | 21 + .../cdlinter/detectors/maven/pom/POM.java | 151 + .../detectors/maven/pom/POMParser.java | 195 + .../MavenVersionAntiPatternDetector.java | 189 + .../analyzers/VersionSpecifierAnalyzer.java | 94 + .../maven/versioning/entities/Dependency.java | 66 + .../versioning/entities/VersionSpecifier.java | 101 + .../parsers/VersionSpecifierParser.java | 58 + .../PythonVersionAntiPatternDetector.java | 188 + .../analyzers/VersionSpecifierAnalyzer.java | 94 + .../versioning/entities/Dependency.java | 43 + .../versioning/entities/RequirementsTXT.java | 16 + .../versioning/entities/VersionSpecifier.java | 101 + .../versioning/parsers/DependencyParser.java | 57 + .../parsers/GitLabYAMLDependencyParser.java | 105 + .../parsers/RequirementsTXTParser.java | 72 + .../parsers/VersionSpecifierParser.java | 52 + .../cdlinter/platform/entities/Issue.java | 14 + .../parsers/AntiPattern2IssueConverter.java | 37 + .../project/entities/LintProject.java | 257 + .../project/linters/ProjectLinter.java | 39 + .../project/parsers/ProjectParser.java | 99 + .../project/writers/ProjectDownloader.java | 88 + .../java/cdlinter/stats/StatsCalculator.java | 57 + .../templates/ParameterGeneration.java | 124 + .../templates/TemplateGeneration.java | 87 + .../cdlinter/utils/DefinitionPointer.java | 58 + .../java/cdlinter/utils/HTTPConnector.java | 114 + .../cdlinter/utils/LineNumberExtractor.java | 32 + .../utils/LineNumberPathConstructor.java | 8 + .../utils/ProcessedEntitiesReader.java | 39 + .../utils/ProcessedEntitiesWriter.java | 44 + .../java/cdlinter/utils/ResourceReader.java | 48 + .../java/cdlinter/utils/TCIDateFormatter.java | 104 + .../issue-templates/allow_failures.md | 23 + .../issue-templates/insecure-credentials.md | 20 + .../resources/issue-templates/job_creation.md | 18 + .../resources/issue-templates/job_retry.md | 22 + .../resources/issue-templates/manual_job.md | 23 + .../issue-templates/missing_version.md | 18 + .../ModioAB__base-image/.gitlab-ci.yml | 228 + .../projects/assembl__assembl/.gitlab-ci.yml | 71 + .../assembl__assembl/requirements.txt | 1 + .../.gitlab-ci.yml | 147 + .../swe-nrb__sbp-begreppslista/.gitlab-ci.yml | 41 + .../src/main/resources/sampleDataset.csv | 5 + .../src/main/resources/security-keywords.txt | 25 + .../readers/CIAntiPatternCSVReaderTest.java | 78 + .../writers/CIAntiPatternCSVWriterTest.java | 130 + .../datamining/gitlab/GitLabMinerTest.java | 196 + .../GitLabYAMLAllowFailureDetectorTest.java | 94 + .../GitLabYAMLDuplicateLibrariesTest.java | 56 + .../GitLabYAMLManualDetectorTest.java | 28 + .../detectors/GitLabYAMLMergeKeyTest.java | 37 + .../GitLabYAMLOnlyExceptDetectorTest.java | 28 + .../GitLabYAMLRetryDetectorTest.java | 38 + .../GitLabYAMLVulnerabilityDetectorTest.java | 39 + .../parsers/GitLabYAMLParserTest.java | 130 + .../detectors/maven/pom/POMParserTest.java | 74 + .../MavenVersionAntiPatternDetectorTest.java | 46 + ...MavenVerssionAntiPatternDetectorTest2.java | 27 + .../VersionSpecifierAnalyzerTest.java | 137 + .../versioning/entities/DependencyTest.java | 20 + .../entities/VersionSpecifierTest.java | 18 + .../parsers/VersionSpecifierParserTest.java | 82 + .../PythonVersionAntiPatternDetectorTest.java | 98 + .../VersionSpecifierAnalyzerTest.java | 137 + .../versioning/entities/DependencyTest.java | 20 + .../entities/VersionSpecifierTest.java | 19 + .../parsers/DependencyParserTest.java | 67 + .../GitLabYAMLDependencyParserTest.java | 58 + .../parsers/RequirementsTXTParserTest.java | 64 + .../parsers/VersionSpecifierParserTest.java | 100 + .../project/parsers/ProjectParserTest.java | 72 + .../cdlinter/stats/StatsCalculatorTest.java | 67 + .../templates/TemplateGenerationTest.java | 65 + .../cdlinter/utils/DefinitionPointerTest.java | 27 + .../cdlinter/utils/TCIDateFormatterTest.java | 67 + .../antipattern/parsers/antipatterns.csv | 3 + .../gitlabyaml/duplicate/.gitlab-ci.yml | 59 + .../gitlabyaml/except/.gitlab-ci.yml | 35 + .../gitlabyaml/manual/.gitlab-ci.yml | 56 + .../gitlabyaml/merge_key/.gitlab-ci.yml | 34 + .../resources/gitlabyaml/only/.gitlab-ci.yml | 35 + .../gitlabyaml/onlyexcept/.gitlab-ci.yml | 49 + .../retryallowfailure/.gitlab-ci.yml | 167 + .../retryallowfailure/.gitlab-ci2.yml | 34 + .../gitlabyaml/versioning/.gitlab-ci.yml | 70 + .../gitlabyaml/vulnerability/.gitlab-ci.yml | 23 + .../maven/versioning/example1/pom.xml | 41 + .../example2/module1/module1a/pom.xml | 34 + .../maven/versioning/example2/module1/pom.xml | 31 + .../maven/versioning/example2/module2/pom.xml | 31 + .../maven/versioning/example2/pom.xml | 49 + .../maven/versioning/example3/pom.xml | 43 + .../src/test/resources/occurrences.csv | 11 + .../platform/issues_200204-105339.csv | 16 + .../platform/issues_200205-180807.csv | 65 + .../test/resources/platform/issues_update.csv | 11 + .../resources/platform/issues_updateFix.csv | 90 + .../platform/parsers/antipatterns.csv | 4 + .../src/test/resources/platform/projects.csv | 6 + .../resources/platform/projectsWithFork.csv | 6 + .../resources/python/detectors/.gitlab-ci.yml | 25 + .../python/detectors/requirements.txt | 1 + .../python/detectors2/requirements.txt | 1 + .../python/detectors3/requirements.txt | 16 + .../python/detectors4/requirements.txt | 20 + .../parsers/requirementstxt/requirements.txt | 5 + .../src/test/resources/stats/test.csv | 12 + datasets.zip | Bin 852346 -> 0 bytes datasets/analyzedprojects.csv | 26985 ++++++++++++++++ datasets/dataset.csv | 5313 +++ datasets/good_bad_cd-practices.csv | 71 + datasets/rq1-cdsmells.csv | 146 + .../card-sorting-agreement.csv | 1 + .../card-sorting-labels.csv | 31 + .../rejections_reasons_stats.txt | 62 + datasets/rq1-results.txt | 181 + datasets/rq2-precision.csv | 869 + datasets/rq2-recall/recall-results.csv | 92 + datasets/rq2-recall/recall-sample.csv | 1 + datasets/rq3-analysis/dataset_yml-update.csv | 5218 +++ .../rq3-analysis/rq3-results-analysis.txt | 157 + datasets/rq3-analysis/rq3-results.csv | 2896 ++ datasets/tools-to-exclude-fuzzyversion.txt | 16 + scripts.zip | Bin 7369 -> 0 bytes scripts/likert-scaled-reactions.R | 54 + scripts/study-results.py | 590 + 183 files changed, 56605 insertions(+), 4 deletions(-) delete mode 100644 cd-linter-code.zip create mode 100644 cd-linter-code/pom.xml create mode 100644 cd-linter-code/src/main/java/cdlinter/antipattern/entities/CIAntiPattern.java create mode 100644 cd-linter-code/src/main/java/cdlinter/antipattern/readers/CIAntiPatternCSVReader.java create mode 100644 cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternWriter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/ConfigurationAnalytics.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/IoUtil.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/StatsPrinter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/TemplateGenerator.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/VampirePusher.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/run_VampirePush_for_internal.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/run_import_ratings_and_linksToIssues.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/run_sampling.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/run_sampling2.java create mode 100644 cd-linter-code/src/main/java/cdlinter/app/run_second_sampling.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/GitLabMiner.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Branch.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Commit.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Contributor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/GitLabYAML.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Issue.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Job.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Language.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Languages.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/MergeRequest.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Pipeline.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Project.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/ProjectItem.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Tag.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/User.java create mode 100644 cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/package-info.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/Detector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibraries.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Environment.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Except.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/GitLabYAML.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Job.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Only.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Refs.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Retry.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/RetryWhen.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/When.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/AllowFailureNumberExtractor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/GitLabYAMLLineNumberExtractor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/ManualLineNumberExtractor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/RetryLineNumberExtractor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POM.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POMParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzer.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/Dependency.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifier.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/PythonVersionAntiPatternDetector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzer.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/Dependency.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/RequirementsTXT.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/VersionSpecifier.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/DependencyParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/platform/entities/Issue.java create mode 100644 cd-linter-code/src/main/java/cdlinter/platform/parsers/AntiPattern2IssueConverter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/project/entities/LintProject.java create mode 100644 cd-linter-code/src/main/java/cdlinter/project/linters/ProjectLinter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/project/parsers/ProjectParser.java create mode 100644 cd-linter-code/src/main/java/cdlinter/project/writers/ProjectDownloader.java create mode 100644 cd-linter-code/src/main/java/cdlinter/stats/StatsCalculator.java create mode 100644 cd-linter-code/src/main/java/cdlinter/templates/ParameterGeneration.java create mode 100644 cd-linter-code/src/main/java/cdlinter/templates/TemplateGeneration.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/DefinitionPointer.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/HTTPConnector.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/LineNumberExtractor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/LineNumberPathConstructor.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesReader.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesWriter.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/ResourceReader.java create mode 100644 cd-linter-code/src/main/java/cdlinter/utils/TCIDateFormatter.java create mode 100644 cd-linter-code/src/main/resources/issue-templates/allow_failures.md create mode 100644 cd-linter-code/src/main/resources/issue-templates/insecure-credentials.md create mode 100644 cd-linter-code/src/main/resources/issue-templates/job_creation.md create mode 100644 cd-linter-code/src/main/resources/issue-templates/job_retry.md create mode 100644 cd-linter-code/src/main/resources/issue-templates/manual_job.md create mode 100644 cd-linter-code/src/main/resources/issue-templates/missing_version.md create mode 100644 cd-linter-code/src/main/resources/projects/ModioAB__base-image/.gitlab-ci.yml create mode 100644 cd-linter-code/src/main/resources/projects/assembl__assembl/.gitlab-ci.yml create mode 100644 cd-linter-code/src/main/resources/projects/assembl__assembl/requirements.txt create mode 100644 cd-linter-code/src/main/resources/projects/redmic-project__client__web/.gitlab-ci.yml create mode 100644 cd-linter-code/src/main/resources/projects/swe-nrb__sbp-begreppslista/.gitlab-ci.yml create mode 100644 cd-linter-code/src/main/resources/sampleDataset.csv create mode 100644 cd-linter-code/src/main/resources/security-keywords.txt create mode 100644 cd-linter-code/src/test/java/cdlinter/antipattern/readers/CIAntiPatternCSVReaderTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriterTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/datamining/gitlab/GitLabMinerTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibrariesTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLMergeKeyTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/pom/POMParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVerssionAntiPatternDetectorTest2.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzerTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/DependencyTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifierTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/PythonVersionAntiPatternDetectorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzerTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/DependencyTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/VersionSpecifierTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/DependencyParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/project/parsers/ProjectParserTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/stats/StatsCalculatorTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/templates/TemplateGenerationTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/utils/DefinitionPointerTest.java create mode 100644 cd-linter-code/src/test/java/cdlinter/utils/TCIDateFormatterTest.java create mode 100644 cd-linter-code/src/test/resources/antipattern/parsers/antipatterns.csv create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/duplicate/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/except/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/manual/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/merge_key/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/only/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/onlyexcept/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci2.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/versioning/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/gitlabyaml/vulnerability/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example1/pom.xml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example2/module1/module1a/pom.xml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example2/module1/pom.xml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example2/module2/pom.xml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example2/pom.xml create mode 100644 cd-linter-code/src/test/resources/maven/versioning/example3/pom.xml create mode 100644 cd-linter-code/src/test/resources/occurrences.csv create mode 100644 cd-linter-code/src/test/resources/platform/issues_200204-105339.csv create mode 100644 cd-linter-code/src/test/resources/platform/issues_200205-180807.csv create mode 100644 cd-linter-code/src/test/resources/platform/issues_update.csv create mode 100644 cd-linter-code/src/test/resources/platform/issues_updateFix.csv create mode 100644 cd-linter-code/src/test/resources/platform/parsers/antipatterns.csv create mode 100644 cd-linter-code/src/test/resources/platform/projects.csv create mode 100644 cd-linter-code/src/test/resources/platform/projectsWithFork.csv create mode 100644 cd-linter-code/src/test/resources/python/detectors/.gitlab-ci.yml create mode 100644 cd-linter-code/src/test/resources/python/detectors/requirements.txt create mode 100644 cd-linter-code/src/test/resources/python/detectors2/requirements.txt create mode 100644 cd-linter-code/src/test/resources/python/detectors3/requirements.txt create mode 100644 cd-linter-code/src/test/resources/python/detectors4/requirements.txt create mode 100644 cd-linter-code/src/test/resources/python/parsers/requirementstxt/requirements.txt create mode 100644 cd-linter-code/src/test/resources/stats/test.csv delete mode 100644 datasets.zip create mode 100644 datasets/analyzedprojects.csv create mode 100644 datasets/dataset.csv create mode 100644 datasets/good_bad_cd-practices.csv create mode 100644 datasets/rq1-cdsmells.csv create mode 100644 datasets/rq1-comment-sorting/card-sorting-agreement.csv create mode 100644 datasets/rq1-comment-sorting/card-sorting-labels.csv create mode 100644 datasets/rq1-comment-sorting/rejections_reasons_stats.txt create mode 100644 datasets/rq1-results.txt create mode 100644 datasets/rq2-precision.csv create mode 100644 datasets/rq2-recall/recall-results.csv create mode 100644 datasets/rq2-recall/recall-sample.csv create mode 100644 datasets/rq3-analysis/dataset_yml-update.csv create mode 100644 datasets/rq3-analysis/rq3-results-analysis.txt create mode 100644 datasets/rq3-analysis/rq3-results.csv create mode 100644 datasets/tools-to-exclude-fuzzyversion.txt delete mode 100644 scripts.zip create mode 100644 scripts/likert-scaled-reactions.R create mode 100644 scripts/study-results.py diff --git a/README.md b/README.md index 95485a4..2761c22 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ -# Configuration Smells in Continuous Delivery Pipelines: A Linter and A Six-Month Study on GitLab (Replication Package) +# Configuration Smells in Continuous Delivery Pipelines: A Linter and A Six-Month Study on GitLab (FSE 2020, Replication Package) -## DATASETS (datasets.zip) +Authors: Carmine Vassallo, Sebastian Proksch, Anna Jancso, Harald C. Gall, Massimiliano Di Penta. + +Link to the preprint: http://doi.org/10.5281/zenodo.3860985 + +## DATASETS (datasets/) **Warning** Direct links to the opened issues are omitted according to the double-blind policy. Furthermore, we discourage people browsing issues on GitLab projects that might reveal the author identities. @@ -17,7 +21,7 @@ - `good_bad_cd-practices.csv`: all the good and bad practices that we collected from the Foundations part of Humble's book. -## SCRIPTS (scripts.zip) +## SCRIPTS (scripts/) Note: please install all the required dependencies. @@ -25,6 +29,6 @@ Note: please install all the required dependencies. - `likert-scaled-reactions.R`: this script is used to compute Figure 4 (`reactions.csv` that is generated by "study-results.py" must be passed as input file). -## CD-Linter Implementation (cd-linter-code.zip) +## CD-Linter Implementation (cd-linter-code/) It contains the source code of our linter (all packages have been anonymized). diff --git a/cd-linter-code.zip b/cd-linter-code.zip deleted file mode 100644 index 886c4ad10c20c57404c9eb2bf47c21baae9665e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200130 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 + 4.0.0 + + cd-linter + cd-linter + 0.0.1-SNAPSHOT + jar + + ConfigurationAnalytics + http://maven.apache.org + + + UTF-8 + 11 + 5.4.0.Final + 11 + + + + + + + + + org.hibernate + hibernate-core + 5.2.8.Final + + + + org.hibernate + hibernate-entitymanager + ${hibernate.version} + + + + org.hibernate + hibernate-c3p0 + ${hibernate.version} + + + + mysql + mysql-connector-java + 8.0.13 + + + org.xerial + sqlite-jdbc + 3.28.0 + + + junit + junit + 3.8.1 + test + + + com.google.code.gson + gson + 2.8.2 + + + + junit + junit + 4.4 + test + + + org.apache.commons + commons-lang3 + 3.7 + + + org.eclipse.jgit + org.eclipse.jgit + 4.11.0.201803080745-r + + + org.apache.commons + commons-math3 + 3.2 + + + commons-io + commons-io + 2.6 + + + org.zeroturnaround + zt-zip + 1.12 + jar + + + org.yaml + snakeyaml + 1.21 + + + + org.glassfish.jersey.core + jersey-client + 2.29 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.3.0 + + + com.fasterxml.jackson.core + jackson-databind + 2.2.3 + + + + org.apache.commons + commons-csv + 1.7 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.29 + + + + org.glassfish.jersey.inject + jersey-hk2 + 2.29 + + + javax.xml.bind + jaxb-api + 2.3.0 + + + + javax.activation + activation + 1.1.1 + + + + me.tongfei + progressbar + 0.5.5 + + + org.antlr + ST4 + 4.1 + compile + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + maven-assembly-plugin + + + + + cdlinter.app.ConfigurationAnalytics + + + + jar-with-dependencies + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.0 + + 11 + + + + + \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/antipattern/entities/CIAntiPattern.java b/cd-linter-code/src/main/java/cdlinter/antipattern/entities/CIAntiPattern.java new file mode 100644 index 0000000..0dc9ee7 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/antipattern/entities/CIAntiPattern.java @@ -0,0 +1,256 @@ +package cdlinter.antipattern.entities; + +public class CIAntiPattern { + + private String id = ""; + private String remoteRepoLink = ""; + private String remoteCfgLink = ""; + private String localCfgLink = ""; + private String project = ""; + private String stage = ""; + private String category = ""; + private String subCategory = ""; + private String entity = ""; + private String message = ""; + private String context = ""; + private String lineNumber = ""; + private String cfgFileName = ""; + + public CIAntiPattern(String id, String remoteRepoLink, String remoteCfgLink, String localCfgLink, String project, + String stage, String category, String subCategory, String entity, String message, String context, + String lineNumber, String cfgFileName) { + super(); + this.id = id; + this.remoteRepoLink = remoteRepoLink; + this.remoteCfgLink = remoteCfgLink; + this.localCfgLink = localCfgLink; + this.project = project; + this.stage = stage; + this.category = category; + this.subCategory = subCategory; + this.entity = entity; + this.message = message; + this.context = context; + this.lineNumber = lineNumber; + this.cfgFileName = cfgFileName; + } + + public CIAntiPattern() { + + } + + public String getId() { + if (id == null) { + throw new RuntimeException("wtf"); + } + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getRemoteRepoLink() { + return remoteRepoLink; + } + + public void setRemoteRepoLink(String remoteRepoLink) { + this.remoteRepoLink = remoteRepoLink; + } + + public String getRemoteCfgLink() { + return remoteCfgLink; + } + + public void setRemoteCfgLink(String remoteCfgLink) { + this.remoteCfgLink = remoteCfgLink; + } + + public String getLocalCfgLink() { + return localCfgLink; + } + + public void setLocalCfgLink(String localCfgLink) { + this.localCfgLink = localCfgLink; + } + + public String getProject() { + return project; + } + + public void setProject(String project) { + this.project = project; + } + + public String getStage() { + return stage; + } + + public void setStage(String stage) { + this.stage = stage; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public String getSubCategory() { + return subCategory; + } + + public void setSubCategory(String subCategory) { + this.subCategory = subCategory; + } + + public String getEntity() { + return entity; + } + + public void setEntity(String entity) { + this.entity = entity; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public String getContext() { + return context; + } + + public void setContext(String context) { + this.context = context; + } + + public String getLineNumber() { + return lineNumber; + } + + public void setLineNumber(String lineNumber) { + this.lineNumber = lineNumber; + } + + public String getCfgFileName() { + return cfgFileName; + } + + public void setCfgFileName(String cfgFileName) { + this.cfgFileName = cfgFileName; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((category == null) ? 0 : category.hashCode()); + result = prime * result + ((cfgFileName == null) ? 0 : cfgFileName.hashCode()); + result = prime * result + ((context == null) ? 0 : context.hashCode()); + result = prime * result + ((entity == null) ? 0 : entity.hashCode()); + result = prime * result + ((id == null) ? 0 : id.hashCode()); + result = prime * result + ((lineNumber == null) ? 0 : lineNumber.hashCode()); + result = prime * result + ((localCfgLink == null) ? 0 : localCfgLink.hashCode()); + result = prime * result + ((message == null) ? 0 : message.hashCode()); + result = prime * result + ((project == null) ? 0 : project.hashCode()); + result = prime * result + ((remoteCfgLink == null) ? 0 : remoteCfgLink.hashCode()); + result = prime * result + ((remoteRepoLink == null) ? 0 : remoteRepoLink.hashCode()); + result = prime * result + ((stage == null) ? 0 : stage.hashCode()); + result = prime * result + ((subCategory == null) ? 0 : subCategory.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + CIAntiPattern other = (CIAntiPattern) obj; + if (category == null) { + if (other.category != null) + return false; + } else if (!category.equals(other.category)) + return false; + if (cfgFileName == null) { + if (other.cfgFileName != null) + return false; + } else if (!cfgFileName.equals(other.cfgFileName)) + return false; + if (context == null) { + if (other.context != null) + return false; + } else if (!context.equals(other.context)) + return false; + if (entity == null) { + if (other.entity != null) + return false; + } else if (!entity.equals(other.entity)) + return false; + if (id == null) { + if (other.id != null) + return false; + } else if (!id.equals(other.id)) + return false; + if (lineNumber == null) { + if (other.lineNumber != null) + return false; + } else if (!lineNumber.equals(other.lineNumber)) + return false; + if (localCfgLink == null) { + if (other.localCfgLink != null) + return false; + } else if (!localCfgLink.equals(other.localCfgLink)) + return false; + if (message == null) { + if (other.message != null) + return false; + } else if (!message.equals(other.message)) + return false; + if (project == null) { + if (other.project != null) + return false; + } else if (!project.equals(other.project)) + return false; + if (remoteCfgLink == null) { + if (other.remoteCfgLink != null) + return false; + } else if (!remoteCfgLink.equals(other.remoteCfgLink)) + return false; + if (remoteRepoLink == null) { + if (other.remoteRepoLink != null) + return false; + } else if (!remoteRepoLink.equals(other.remoteRepoLink)) + return false; + if (stage == null) { + if (other.stage != null) + return false; + } else if (!stage.equals(other.stage)) + return false; + if (subCategory == null) { + if (other.subCategory != null) + return false; + } else if (!subCategory.equals(other.subCategory)) + return false; + return true; + } + + public String getOwner() { + String[] parts = getRepo().split("/"); + String owner = parts[0]; + return owner; + } + + public String getRepo() { + String repo = remoteRepoLink.substring("https://gitlab.com/".length()); + return repo; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/antipattern/readers/CIAntiPatternCSVReader.java b/cd-linter-code/src/main/java/cdlinter/antipattern/readers/CIAntiPatternCSVReader.java new file mode 100644 index 0000000..986ce80 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/antipattern/readers/CIAntiPatternCSVReader.java @@ -0,0 +1,106 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.antipattern.readers; + +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; + +import cdlinter.antipattern.entities.CIAntiPattern; + +public class CIAntiPatternCSVReader { + + public static String delimiter = "\t"; + private File inputFile; + private CSVParser parser; + + public CIAntiPatternCSVReader(String inputPath){ + this.inputFile = new File(inputPath); + + try { + FileReader reader = new FileReader(new File(inputPath)); + parser = CSVParser.parse(reader, CSVFormat.DEFAULT.withHeader()); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + public Set read() { + List records = null; + try { + records = parser.getRecords(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + Set antipatterns = new HashSet<>(); + for(CSVRecord csvRecord : records) { + + String id = csvRecord.get("ID"); + String remoteRepoLink = csvRecord.get("Repository Link"); + String remoteCfgLink = csvRecord.get("Remote Configuration File Link"); + String localCfgLink = csvRecord.get("Local Configuration File Link"); + String project = csvRecord.get("Project"); + String stage = csvRecord.get("Stage"); + String category = csvRecord.get("Category"); + String subCategory = csvRecord.get("Sub-Category"); + String entity = csvRecord.get("Entity"); + String message = csvRecord.get("Message"); + String context = ""; + String lineNumber = csvRecord.get("Line-Number"); + String cfgFileName = csvRecord.get("Configuration File Name"); + + CIAntiPattern ca = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, project, stage, category, + subCategory, entity, message, context, lineNumber, cfgFileName); + + antipatterns.add(ca); + } + + return antipatterns; + } + + private CIAntiPattern parseLine(String line) { + String[] splittedLine = line.split(delimiter); + + String id = splittedLine[0]; + String remoteRepoLink = splittedLine[1]; + String remoteCfgLink = splittedLine[2]; + String localCfgLink = splittedLine[3]; + String project = splittedLine[4]; + String stage = splittedLine[7]; + String category = splittedLine[5]; + String subCategory = splittedLine[6]; + String entity = splittedLine[8]; + String message = splittedLine[9]; + String context = ""; + String lineNumber = splittedLine[10]; + String cfgFileName = splittedLine[11]; + + CIAntiPattern ca = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, project, stage, category, + subCategory, entity, message, context, lineNumber, cfgFileName); + + return ca; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriter.java b/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriter.java new file mode 100644 index 0000000..fd2140c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriter.java @@ -0,0 +1,58 @@ +package cdlinter.antipattern.writers; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVPrinter; + +import cdlinter.antipattern.entities.CIAntiPattern; + +public class CIAntiPatternCSVWriter{ + + + public static String[] headerFields = new String[] { "ID", "Repository Link", "Remote Configuration File Link", + "Local Configuration File Link", "Project", "Category", "Sub-Category", "Stage", "Entity", "Message", + "Line-Number", "Configuration File Name", "Owner", "Repository Name" }; + + private CSVPrinter printer; + + + public CIAntiPatternCSVWriter(String outputPath) throws IOException { + FileWriter output = new FileWriter(new File(outputPath)); + printer = new CSVPrinter(output, CSVFormat.DEFAULT); + List headerAsList = Arrays.asList(headerFields); + printer.printRecord(headerAsList); // print the new header + + } + + public void write(CIAntiPattern antiPattern) throws IOException { + // String row = String.join(delimiter, extractFields(antiPattern)); + + String remoteRepoLink = antiPattern.getRemoteRepoLink(); + String fullRepoName = remoteRepoLink.substring(19); + String owner = fullRepoName.split("/")[0]; + + printer.printRecord(antiPattern.getId(), antiPattern.getRemoteRepoLink(), antiPattern.getRemoteCfgLink(), + antiPattern.getLocalCfgLink(), antiPattern.getProject(), antiPattern.getCategory(), + antiPattern.getSubCategory(), antiPattern.getStage(), antiPattern.getEntity(), antiPattern.getMessage(), + antiPattern.getLineNumber(), antiPattern.getCfgFileName(), owner, fullRepoName); + + + } + + public void write(Collection antiPatternList) throws IOException { + for (CIAntiPattern antiPattern : antiPatternList) { + + write(antiPattern); + } + } + + public void close() throws IOException { + printer.close(); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternWriter.java b/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternWriter.java new file mode 100644 index 0000000..ddf2f70 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/antipattern/writers/CIAntiPatternWriter.java @@ -0,0 +1,54 @@ +package cdlinter.antipattern.writers; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.PrintWriter; +import java.util.List; + +import cdlinter.antipattern.entities.CIAntiPattern; + +public class CIAntiPatternWriter { + + PrintWriter printWriter; + + public CIAntiPatternWriter(String outputPath) { + printWriter = getWriter(outputPath); + } + + private PrintWriter getWriter(String path) { + + try { + File f = new File(path); + if (f.exists()) { + f.delete(); + } + FileOutputStream fos = new FileOutputStream(path); + return new PrintWriter(fos); + } catch (FileNotFoundException e) { + throw new RuntimeException(e); + } + } + + public void write(CIAntiPattern antiPattern) { + printWriter.println("***********************************"); + printWriter.println("Project: " + antiPattern.getProject()); + printWriter.println("Category: " + antiPattern.getCategory()); + printWriter.println("Entity: " + antiPattern.getEntity()); + printWriter.println("Message: " + antiPattern.getMessage()); + printWriter.println("Context:\n" + antiPattern.getContext()); + printWriter.println("***********************************\n"); + + printWriter.flush(); + } + + public void write(List antiPatternList) { + for (CIAntiPattern antiPattern : antiPatternList) { + write(antiPattern); + } + } + + public void close() { + printWriter.close(); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/app/ConfigurationAnalytics.java b/cd-linter-code/src/main/java/cdlinter/app/ConfigurationAnalytics.java new file mode 100644 index 0000000..3cf51c5 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/ConfigurationAnalytics.java @@ -0,0 +1,416 @@ +package cdlinter.app; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import cdlinter.antipattern.writers.CIAntiPatternCSVWriter; +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.parsers.GitLabYAMLParser; +import cdlinter.detectors.maven.versioning.MavenVersionAntiPatternDetector; +import cdlinter.project.entities.LintProject; +import cdlinter.project.linters.ProjectLinter; +import cdlinter.project.parsers.ProjectParser; +import cdlinter.project.writers.ProjectDownloader; + +import java.io.File; +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.*; + +import org.apache.commons.io.FileUtils; + +public class ConfigurationAnalytics { + + private String projectsCSVSheetPath; + private String antiPatternCSVPath; + private String lintedProjectsPath; + private String projectsDirPath; + private String gitLabTokenPath; + + public ConfigurationAnalytics(String projectsCSVSheetPath, + String outputPath, + String lintedProjectsPath, + String projectsPath, + String gitLabTokenPath) { + this.projectsCSVSheetPath = projectsCSVSheetPath; + this.antiPatternCSVPath = outputPath; + this.lintedProjectsPath = lintedProjectsPath; + this.projectsDirPath = projectsPath; + this.gitLabTokenPath = gitLabTokenPath; + } + + + public static void main3(String [] args) throws IOException { + + String projectsCSVSheetPath = "/Users/xxx/Documents/CI-Linter/cd-linter-paper/resources/anti-patterns-occurrences/fullDataset.csv"; + String projectsSample = "/Users/xxx/Desktop/Rscripts/dataset.csv"; + + List projects = FileUtils.readLines(new File(projectsSample), Charset.defaultCharset()); + + List readLines = FileUtils.readLines(new File(projectsCSVSheetPath), Charset.defaultCharset()); + + List toWrite = new ArrayList<>(); + for(String line : readLines) { + String[] splittedLine = line.split(","); + String projectName = splittedLine[1]; + + if(projects.contains(projectName)) { + System.out.println(line); + toWrite.add(line); + } + } + + File output = new File("/Users/xxx/Desktop/Rscripts/output.csv"); + FileUtils.writeLines(output, toWrite); + } + + /** + * antipattern analysis + * @param args + * @throws IOException + */ + public static void main(String[] args) throws IOException { + + final long start = System.currentTimeMillis(); + + //set some initial parameters + String projectsCSVSheetPath = args[0]; // "src/main/resources/sampleDataset.csv"; + String outputPath = VampirePusher.PATH_ANTI_PATTERN_CSV; + String lintedProjectsPath = "target/lintedProjects.txt"; + String projectsPath = args[1]; // "src/main/resources/projects" ;// "target/projects"; //args[1]; // + String gitLabTokenPath = args[2]; // "gT9xW57fsP3fx9SSDHAn"; // "src/main/resources/gitlab-token"; + String startFrom = args[3]; // "null"; // This parameter is needed when the analysis crashes and needs to be restarted + //String samplePath = "src/main/resources/firstSample.csv"; //args[2]; // data in the first sample +// String openedIssuesPath = args[3]; // list of Vampire's opened issues + + ConfigurationAnalytics analytics = new ConfigurationAnalytics( + projectsCSVSheetPath, + outputPath, + lintedProjectsPath, + projectsPath, + gitLabTokenPath); + + // analyze stages + /* try { + String outputFile = "target/dataset.csv"; + analytics.computeAllStages(projectsPath, gitLabTokenPath, projectsCSVSheetPath, outputFile ); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + System.exit(0);*/ + + // load projects to analyze + ProjectParser projectParser = new ProjectParser(gitLabTokenPath); + List projects = null; + + if(!startFrom.equalsIgnoreCase("null")) { + projects = new ArrayList<>(); + List all = projectParser.getProjectsFromCSVSheet(projectsCSVSheetPath); + boolean add = false; + for(LintProject p : all) { + + if(p.getName().equalsIgnoreCase(startFrom)) + add = true; + + if(add) + projects.add(p); + + } + } + else { + projects = projectParser.getProjectsFromCSVSheet(projectsCSVSheetPath); + } + + + // detect anti-patterns + List analyze = analytics.analyze(projects); + System.out.println("Found: " + analyze.size() + " anti-patterns"); + //filter projects (in first sample only) +// analytics.download(projects, projectsPath);//.getProjectsOfFirstSample(projectsCSVSheetPath, samplePath); + + + final long durationInMilliseconds = System.currentTimeMillis()-start; + System.out.println("executeLongRunningTask() took " + durationInMilliseconds + "ms."); + + +// System.exit(0); + +/* List resultingCias = analytics.analyze(projects);//.download(projectsCSVSheetPath, projectsPath,sample); + Set newCiaIds = new HashSet<>(); + for(CIAntiPattern cia: resultingCias) { + newCiaIds.add(cia.getId()); + } + + // compare old and new anti-patterns + CIAntiPatternCSVReader reader = new CIAntiPatternCSVReader(samplePath); + Set oldCias = reader.read(); + Set oldCiaIds = new HashSet<>(); + for(CIAntiPattern cia: oldCias) { + oldCiaIds.add(cia.getId()); + } + System.out.println("-------- Results"); + + for(String oldCiaId: oldCiaIds) { + if(!newCiaIds.contains(oldCiaId)) { + System.out.println(oldCiaId); + } + }*/ + } + + /** + * select only projects in the first sample + * @param projectsCSVSheetPath + * @param pathToFirstSample + * @return + * @throws IOException + */ + public List getProjectsOfFirstSample(String projectsCSVSheetPath, String pathToFirstSample) throws IOException{ + + ProjectParser projectParser = new ProjectParser(gitLabTokenPath); + List projects = projectParser.getProjectsFromCSVSheet(projectsCSVSheetPath); + + // take all projects in the first sample + CIAntiPatternCSVReader reader = new CIAntiPatternCSVReader(pathToFirstSample); + Set sample = reader.read(); + Set projectNames = new HashSet<>(); // all projects in the sample + for(CIAntiPattern cia: sample) { + String projectName = cia.getProject(); + projectNames.add(projectName); + } + + List resultingProjects = new ArrayList<>(); // take only the lint projects in the sample + + for(String pName: projectNames) { + LintProject p = searchForLintProject(projects,pName); + resultingProjects.add(p); + } + + return resultingProjects; + } + + private LintProject searchForLintProject(List projects, String projectName) { + for(LintProject p: projects) { + if(p.getName().equalsIgnoreCase(projectName)) + return p; + } + return null; + } + + + public List analyze(List projects) throws IOException { + // Set lintedProjects = ProcessedEntitiesReader.getProcessedEntities(lintedProjectsPath); + + CIAntiPatternCSVWriter antiPatternCSVWriter = new CIAntiPatternCSVWriter(antiPatternCSVPath); + // ProcessedEntitiesWriter lintedProjectsWriter = new ProcessedEntitiesWriter(lintedProjectsPath); + ProjectDownloader projectDownloader = new ProjectDownloader(projectsDirPath); + + List resultingCias = new ArrayList<>(); + + int exceptions = 0; + for (LintProject project : projects) { + System.out.println("Inspecting... " + project.getName()); + + projectDownloader.downloadProjectFiles(project); + String projectName = project.getName(); + List antiPatterns; + + //if the project contains other files (via include) inspect them online + + + + // if (!lintedProjects.contains(projectName)) { + + try { + antiPatterns = ProjectLinter.getCIAntiPatterns(project); + } catch (Exception e) { + System.err.println("`"+projectName + "` could not be read!"); + System.out.println(e.toString()); + exceptions++; + continue; + } + + resultingCias.addAll(antiPatterns); + antiPatternCSVWriter.write(antiPatterns); + } + + antiPatternCSVWriter.close(); + + System.out.println("Projects could not be analyzed: " + exceptions); + + return resultingCias; + } + + + + public void computeAllStages(String projectsDirPath, String gitLabTokenPath, String projectsCSVSheetPath, String outputFile) throws IOException { + ProjectParser projectParser = new ProjectParser(gitLabTokenPath); + List projects = projectParser.getProjectsFromCSVSheet(projectsCSVSheetPath); + + // Map stages = new HashMap(); + + ProjectDownloader projectDownloader = new ProjectDownloader(projectsDirPath); + + int numOfProjectsWithYaml = 0; + + int numOfProjectsWithJobs = 0; + + int size = projects.size(); + int counter = 0; + + File output = new File(outputFile); + List lines = new ArrayList<>(); + + lines.add("project,owner,language,hasYaml,hasRequirements,hasPoms,stages,hasBuildStage,hasTestStage,hasDeployStage,hasCustomDeployStage,yml_size"); + + for(LintProject project: projects) { + + projectDownloader.downloadProjectFiles(project); //check presence of files TODO: fix smelly code + + String language = project.getLanguage(); + String buildTool = project.getBuildToolName(); + + counter++; + System.out.println(counter + "/" + size); + + String projectName = project.getName(); + String owner = projectName.split("__")[0]; + + // get all yaml files + String yamlContent = project.getFileContent(".gitlab-ci.yml"); + String[] split = yamlContent.split("\r\n|\r|\n"); + int yamlSize = split.length; + + GitLabYAMLParser parser = new GitLabYAMLParser(); + + GitLabYAML yaml = null; + try { + yaml = parser.parse(yamlContent); + + } catch (Exception e) { // if the project is empty + System.err.println("`"+projectName + "` could not be read!"); + System.out.println(e.toString()); + continue; + } + + /* List stagesInYaml = yaml.getStages(); + + + for(String stage: stagesInYaml) { + if(stages.containsKey(stage)) + stages.put(stage, stages.get(stage) + 1); + else + stages.put(stage, 1); + }*/ + + Map jobs = yaml.getJobs(); + boolean hasYamlFile = (jobs.size()>0); // a project with 0 jobs has no yaml file + + + Set stages = new HashSet<>(); + for(String key: jobs.keySet()) { + String stage = jobs.get(key).getStage(); + stages.add(stage); + } + + boolean hasRequirements = false; + + if (language.equals("Python")) { + String requirementsTXTContent = project.getFileContent("requirements.txt"); + hasRequirements = !requirementsTXTContent.equals(""); + } + // check for the presence of a requirements.txt + + boolean hasPoms = false; + if (buildTool.equals("Maven")) { + MavenVersionAntiPatternDetector detector = new MavenVersionAntiPatternDetector(project); + + int poms = 0; + try { + poms = detector.getPOMs(project).size(); + hasPoms = poms>0; //the project has at least one pom + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + + String line = projectName.replaceAll("__", "/") + "," + + owner + "," + + language + "," + + hasYamlFile + "," + + hasRequirements + "," + + hasPoms + "," + + stages.size() + ","+ + stages.contains(Job.BUILD) + "," + + stages.contains(Job.TEST) + "," + + stages.contains(Job.DEPLOY)+ "," + + hasCustomDeploy(stages) + "," + + yamlSize + ; + + lines.add(line); + + if(jobs.size()>0) + numOfProjectsWithJobs++; + + numOfProjectsWithYaml++; + + } + +/* + for(String stage: stages.keySet()){ + lines.add(stage + "," + stages.get(stage)); + } +*/ + FileUtils.writeLines(output, lines); + System.out.println(numOfProjectsWithJobs+ "/" + size); + System.out.println(numOfProjectsWithYaml+ "/" + size); + } + + /* + * TODO: remove from here! + */ + private boolean hasCustomDeploy(Set stages) { + List deployLList = List.of( + "staging", + "release", + "publish", + "manual", + "install", + "docker", + "container", + "production", + "image", + "environment", + "install", + "prod", + "canary" + ); + + for(String stage: stages) { + if(deployLList.contains(stage)) + return true; + } + + return false; + + } + + + public void download(List projects, String projectsDirPath) { + + ProjectDownloader projectDownloader = new ProjectDownloader(projectsDirPath); + + for (LintProject project : projects) { + String projectName = project.getName(); + + + projectDownloader.downloadProjectFiles(project); + System.out.println("`"+projectName+"` downloaded"); + } + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/app/IoUtil.java b/cd-linter-code/src/main/java/cdlinter/app/IoUtil.java new file mode 100644 index 0000000..01505b8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/IoUtil.java @@ -0,0 +1,163 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import static org.apache.commons.codec.Charsets.UTF_8; + +import java.io.File; +import java.io.FilenameFilter; +import java.io.IOException; +import java.util.Comparator; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.TreeSet; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import org.apache.commons.codec.Charsets; +import org.apache.commons.io.FileUtils; + +import cdlinter.project.entities.LintProject; +import cdlinter.project.parsers.ProjectParser; + +public class IoUtil { + + public enum OrderBy { + Issues, Commits + } + + public static final String FOLDER_LINKS_TO_ISSUES = "/Users/xxx/Downloads/issue_mappings/"; + public static final String PATH_DATASET = "/Users/xxx/Documents/CI-Linter/cd-linter-paper/resources/anti-patterns-validation/dataset.csv";//"/Users/xxx/versioned/documents/paper-xxx-cd-linter/resources/anti-patterns-validation/dataset.csv"; + public static final String PATH_CI_ANTI_PATTERNS = "target/CI-anti-patterns.csv"; + /** + * TODO: the token is passed as argument to the main class + */ + private static final String PATH_GIT_LAB_TOKEN = null; + + public static Set getActiveOwners(OrderBy orderBy) { + final Map counts = readOwnerCounts(orderBy); + + Set set = new TreeSet(new Comparator() { + @Override + public int compare(String a, String b) { + if (!counts.containsKey(a) || !counts.containsKey(b)) { + throw new RuntimeException("unknown key"); + } + int numA = counts.get(a); + int numB = counts.get(b); + if (numA != numB) + return numB - numA; + return b.compareTo(a); + } + }) { + private static final long serialVersionUID = 1L; + + @Override + public boolean add(String s) { + if (!counts.containsKey(s)) { + throw new RuntimeException("unknown key: " + s); + } + return super.add(s); + } + }; + for (String key : counts.keySet()) { + int value = counts.get(key); + if (value > 0) { + set.add(key); + } + } + return set; + } + + private static Map readOwnerCounts(OrderBy orderBy) { + Map counts = new HashMap<>(); + + List projects = new ProjectParser(PATH_GIT_LAB_TOKEN) + .getProjectsFromCSVSheet(PATH_DATASET); + for (LintProject p : projects) { + int count = 0; + + switch (orderBy) { + case Commits: + count = p.getNumCommitsInLastThreeMonths(); + break; + case Issues: + count = p.getNumIssuesOpenedInLastThreeMonths(); + break; + } + + String owner = p.getOwner(); + if (counts.containsKey(owner)) { + int newCount = counts.get(owner) + count; + counts.put(owner, newCount); + } else { + counts.put(owner, count); + } + } + + return counts; + } + + public static Map readPushedIdsAndLinksToIssues() { + Map links = new LinkedHashMap<>(); + try { + + File[] mappingFiles = new File(FOLDER_LINKS_TO_ISSUES).listFiles(new FilenameFilter() { + public boolean accept(File dir, String name) { + return name.endsWith(".txt"); + } + }); + for (File f : mappingFiles) { + readOneFile(f, links); + } + return links; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static void readOneFile(File f, Map links) throws IOException { + List lines = FileUtils.readLines(f, Charsets.UTF_8); + boolean isFirst = true; + for (String line : lines) { + if (isFirst) { // header + isFirst = false; + continue; + } + String[] parts = line.split("\t"); + links.put(parts[0], parts[1]); + } + } + + public static Set readCIAntiPatterns() { + try { + + String content = FileUtils.readFileToString(new File(PATH_CI_ANTI_PATTERNS), UTF_8); + if (content.contains("�")) { + System.err.println("had to fix broken encoding"); + content = content.replaceAll("�", ""); + content = content.replaceAll("\\x00", ""); + FileUtils.writeStringToFile(new File(PATH_CI_ANTI_PATTERNS), content, Charsets.UTF_8); + } + return new CIAntiPatternCSVReader(PATH_CI_ANTI_PATTERNS).read(); + } catch (IOException e) { + throw new RuntimeException(e); + } + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/StatsPrinter.java b/cd-linter-code/src/main/java/cdlinter/app/StatsPrinter.java new file mode 100644 index 0000000..344dd14 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/StatsPrinter.java @@ -0,0 +1,32 @@ +package cdlinter.app; + +import java.util.Set; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import cdlinter.stats.StatsCalculator; + +public class StatsPrinter { + + private static final String PATH_ANTI_PATTERN_CSV = VampirePusher.PATH_ANTI_PATTERN_CSV;; + + public static void main(String[] args) { + StatsPrinter statsPrinter = new StatsPrinter(); + statsPrinter.print(); + } + + private void print() { + CIAntiPatternCSVReader ciAntiPatternCSVReader = new CIAntiPatternCSVReader(PATH_ANTI_PATTERN_CSV); + + Set ciAntiPatternSet = null; + ciAntiPatternSet = ciAntiPatternCSVReader.read(); + + StatsCalculator statsCalculator = new StatsCalculator(ciAntiPatternSet); + System.out.println("Number of violations: " + statsCalculator.getNumberOfViolations()); + System.out.println("Number of violations per category: " + statsCalculator.getNumberOfViolationsPerCategory()); + System.out.println("Number of projects: " + statsCalculator.getNumberOfProjects()); + System.out.println("Number of projects per category: " + statsCalculator.getNumberOfProjectsPerCategory()); + System.out.println("Number of owners: " + statsCalculator.getNumberOfOwners()); + System.out.println("Number of owners per category: " + statsCalculator.getNumberOfOwnersPerCategory()); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/app/TemplateGenerator.java b/cd-linter-code/src/main/java/cdlinter/app/TemplateGenerator.java new file mode 100644 index 0000000..3380535 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/TemplateGenerator.java @@ -0,0 +1,179 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.app; + +import java.io.File; +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.HashSet; +import java.util.LinkedList; +import java.util.List; +import java.util.Set; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import cdlinter.templates.TemplateGeneration; +import org.apache.commons.io.FileUtils; + +public class TemplateGenerator { + + public static final String JOB_NAME = "JOB_NAME"; + public static final String STAGE_NAME = "STAGE_NAME"; + public static final String FILE_NAME = "FILE_NAME"; + public static final String LINK_TO_FILE = "LINK_TO_FILE"; + public static final String LINE_NUMBER = "LINE_NUMBER"; + public static final String LINE_TEXT = "LINE_TEXT"; + public static final String RETRIES_NUMBER = "RETRIES_NUMBER"; + + public static final String DEP_NAME = "DEP_LIST"; + public static final String SUB_CATEGORY_MSG = "SUB_CATEGORY_MSG"; + public static final String SUB_CATEGORY_ONLY_EXCEPT_MSG = "SUB_CATEGORY_ONLY_EXCEPT_MSG"; + + public static final String VERSIONING_ONLY_MAJOR = "only-major-number"; + public static final String VERSIONING_MISSING = "missing-number"; + public static final String VERSIONING_ANY_MINOR = "any-minor-number"; + public static final String VERSIONING_ANY_UPPER = "any-upper-version"; + public static final String VERSIONING_ONLY_MAJOR_MSG = "only the major release is specified in the version number"; + public static final String VERSIONING_MISSING_MSG = "the version is not specified"; + public static final String VERSIONING_ANY_MINOR_MSG = "the minor release is not specified in the version number"; + public static final String VERSIONING_ANY_UPPER_MSG = "TODO"; + + public static void main(String[] args) throws IOException { + + String dataFolder = args[0]; // /resources/anti-patterns-validation/ + String datasetFile = dataFolder + "/CI-anti-patterns-report.csv"; + + CIAntiPatternCSVReader reader = new CIAntiPatternCSVReader(datasetFile); + + Set cias = reader.read(); + + TemplateGeneration gen = new TemplateGeneration(); + + List coveredCats = new LinkedList<>(); + + for (CIAntiPattern cia : cias) { + + String category = cia.getCategory(); + + if (TemplateGeneration.JOB_CREATION_POLICY.equals(category)) { + continue; + } + + String[] titleDesc = gen.generateReport(cia); + + if (!coveredCats.contains(cia.getCategory())) { + coveredCats.add(cia.getCategory()); + + System.out.println("--------\n"); + System.out.printf("TITLE: '%s'\n", titleDesc[0]); + System.out.printf("DESC: '%s'\n", titleDesc[1]); + } + } + + } + + public static Set readReport(File file) throws IOException { + List readLines = FileUtils.readLines(file, Charset.defaultCharset()); + + Set cias = new HashSet(); + + System.out.println(readLines.size()); + + for (int i = 1; i < readLines.size(); i++) { + String line = readLines.get(i); + CIAntiPattern cia = parseLine(line); + cias.add(cia); + } + return cias; + } + + public static Set readCIAntipatternsFromIssues(File issuesFile) throws IOException { + List readLines = FileUtils.readLines(issuesFile, Charset.defaultCharset()); + + Set cias = new HashSet(); + for (int i = 1; i < readLines.size(); i++) { + String line = readLines.get(i); + String[] splitLine = line.split(","); + + String id = splitLine[0]; + String category = splitLine[1]; + + String[] splittedId = id.split("__"); + String owner = splittedId[0]; + String project = splittedId[1]; + + String remoteRepoLink = "https://gitlab.com/" + owner + "/" + project; + String remoteCfgLink = remoteRepoLink + "/blob/master/.gitlab-ci.yml"; + String localCfgLink = null; + String projectName = owner + "/" + project; + String stage = null; + String subCategory = null; + String entity = null; + String message = null; + String context = null; + String lineNumber = null; + String cfgFileName = ".gitlab-ci.yml"; + + if (category.equalsIgnoreCase(TemplateGeneration.VULNERABILITY)) { + entity = splittedId[3]; + message = splittedId[4]; + } else if (category.equalsIgnoreCase(TemplateGeneration.VERSIONING)) { + cfgFileName = splittedId[3]; // in case of job we have a problem + + if (cfgFileName.equalsIgnoreCase("requirementstxt")) { + remoteCfgLink = remoteRepoLink + "/blob/master/requirements.txt"; + } + + entity = splittedId[4]; // modify + subCategory = splittedId[5]; + } else { + entity = splittedId[3]; + } + + CIAntiPattern cia = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, projectName, stage, + category, subCategory, entity, message, context, lineNumber, cfgFileName); + cias.add(cia); + } + return cias; + } + + private static CIAntiPattern parseLine(String line) { + String[] splitLine = line.split(","); + + String id = splitLine[0]; + String remoteRepoLink = splitLine[1]; + String remoteCfgLink = splitLine[2]; + String localCfgLink = splitLine[3]; + String project = splitLine[4]; + String stage = splitLine[5]; + String category = splitLine[6]; + String subCategory = splitLine[7]; + String entity = splitLine[8]; + String message = splitLine[9]; + String context = splitLine[10]; + String lineNumber = splitLine[11]; + String cfgFileName = splitLine[12]; + + CIAntiPattern ci = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, project, stage, category, + subCategory, entity, message, context, lineNumber, cfgFileName); + return ci; + } + + public static String buildHeaderForProjects() { + String header = "id,remoteRepoLink,remoteCfgLink,project,stage,category,subCategory,entity,message,lineNumber,cfgFileName,stars,forks"; + return header; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/app/VampirePusher.java b/cd-linter-code/src/main/java/cdlinter/app/VampirePusher.java new file mode 100644 index 0000000..bf397bc --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/VampirePusher.java @@ -0,0 +1,111 @@ +package cdlinter.app; + +import static cdlinter.platform.parsers.AntiPattern2IssueConverter.convert; +import static org.apache.commons.codec.Charsets.UTF_8; +import static org.glassfish.jersey.client.authentication.HttpAuthenticationFeature.basic; + +import java.io.File; +import java.io.IOException; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import org.apache.commons.io.FileUtils; +import org.glassfish.jersey.client.authentication.HttpAuthenticationFeature; + +import cdlinter.platform.entities.Issue; +import cdlinter.utils.ProcessedEntitiesReader; +import cdlinter.utils.ProcessedEntitiesWriter; +import cdlinter.utils.ResourceReader; +import me.tongfei.progressbar.ProgressBar; + +public class VampirePusher { + + // public static final String VAMPIRE_URL = + // "http://build.kave.cc/vampire/api/issues"; + public static final String URL_VAMPIRE = "http://localhost:8080/api/review/"; + public static final String PATH_CREDENTIALS = "vampire-credentials"; // put it into src/main/resources + public static final String PATH_ANTI_PATTERN_CSV = "target/CI-anti-patterns.csv"; + public static final String PATH_PUSHED_ISSUES = "target/pushedIssues.txt"; + + private final WebTarget webTarget = getWebTarget(URL_VAMPIRE); + + public static void main(String[] args) throws IOException { + + File pushedIssues = new File(PATH_PUSHED_ISSUES); + if (!pushedIssues.exists()) { + pushedIssues.createNewFile(); + } + System.out.printf("Pushing issues to: %s\n", URL_VAMPIRE); + new VampirePusher().push(); + } + + public static WebTarget getWebTarget(String url) { + String[] credentials = getCredentials(); + HttpAuthenticationFeature auth = basic(credentials[0], credentials[1]); + Client client = ClientBuilder.newClient(); + client.register(auth); + WebTarget webTarget = client.target(url); + return webTarget; + } + + public static String[] getCredentials() { + try { + File f = ResourceReader.getFileFromResources(PATH_CREDENTIALS); + List lines = FileUtils.readLines(f, UTF_8); + return new String[] { lines.get(0).trim(), lines.get(1).trim() }; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private void push() { + List issues = getIssues(); + + Set pushedIssues = ProcessedEntitiesReader.getProcessedEntities(PATH_PUSHED_ISSUES); + ProcessedEntitiesWriter pushedIssuesWriter = new ProcessedEntitiesWriter(PATH_PUSHED_ISSUES); + + ProgressBar pb = new ProgressBar("Pushing issues", issues.size()); + pb.start(); + + for (Issue issue : issues) { + + String id = issue.id; + + if (!pushedIssues.contains(id)) { + int status = postIssue(issue); + + if (status == 200) { + pushedIssuesWriter.write(id); + } else { + System.err.println("\n`" + id + "` could not be pushed"); + } + } + + pb.step(); + } + + pb.stop(); + } + + private int postIssue(Issue i) { + Entity e = Entity.entity(i, MediaType.APPLICATION_JSON); + Response r = webTarget.request(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON).post(e); + return r.getStatus(); + } + + private List getIssues() { + Set cias = new CIAntiPatternCSVReader(PATH_ANTI_PATTERN_CSV).read(); + List issues = cias.stream().map(cia -> convert(cia)).collect(Collectors.toList()); + return issues; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/run_VampirePush_for_internal.java b/cd-linter-code/src/main/java/cdlinter/app/run_VampirePush_for_internal.java new file mode 100644 index 0000000..d3b190f --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/run_VampirePush_for_internal.java @@ -0,0 +1,65 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import static cdlinter.app.VampirePusher.URL_VAMPIRE; +import static cdlinter.platform.parsers.AntiPattern2IssueConverter.convert; + +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +import javax.ws.rs.client.Entity; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import cdlinter.platform.entities.Issue; +import me.tongfei.progressbar.ProgressBar; + +public class run_VampirePush_for_internal { + + private WebTarget wt = VampirePusher.getWebTarget(URL_VAMPIRE); + + public static void main(String[] args) { + new run_VampirePush_for_internal().run(); + } + + private void run() { + Set cias = new CIAntiPatternCSVReader(run_sampling2.PATH_CIA_SAMPLED_INTERNAL).read(); + List issues = cias.stream().map(cia -> convert(cia)).collect(Collectors.toList()); + + ProgressBar pb = new ProgressBar("Pushing issues", issues.size()); + pb.start(); + + for (Issue issue : issues) { + pb.step(); + + Entity e = Entity.entity(issue, MediaType.APPLICATION_JSON); + Response r = wt.request(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON).post(e); + + if (r.getStatus() != 200) { + System.err.printf("`%s` could not be pushed (%d: %s)\n", issue.id, r.getStatus(), + r.getStatusInfo().getReasonPhrase()); + continue; + } + } + pb.stop(); + } + +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/run_import_ratings_and_linksToIssues.java b/cd-linter-code/src/main/java/cdlinter/app/run_import_ratings_and_linksToIssues.java new file mode 100644 index 0000000..0033d45 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/run_import_ratings_and_linksToIssues.java @@ -0,0 +1,104 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import java.io.File; +import java.io.IOException; +import java.util.HashSet; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.Response; + +import org.apache.commons.codec.Charsets; +import org.apache.commons.io.FileUtils; + +public class run_import_ratings_and_linksToIssues { + + // private static final String URL_VAMPIRE = "http://build.kave.cc/vampire/"; + private static final String URL_VAMPIRE = "http://localhost:8080/"; + private static final String PATH_TO_RATINGS = "/Users/xxx/Downloads/ratings_190816-173146.txt"; + + public static void main(String[] args) { + Set invalids = new HashSet<>(); + invalids.add(null); + invalids.add("null"); + invalids.add("NULL"); + invalids.add(""); + + Map links = IoUtil.readPushedIdsAndLinksToIssues(); + for (String id : links.keySet()) { + String link = links.get(id); + + if (invalids.contains(id) || invalids.contains(link)) { + // System.err.printf("skipping invalid (%s -> %s)\n", id, link); + continue; + } + + push("api/import/linkToIssue?id=%s&linkToIssue=%s", id, link); + } + + // List ratings = readRatings(); + // for (Rating r : ratings) { + // push("api/import/rating?id=%s&name=%s&isValid=%b", r.id, r.name, r.isValid); + // } + } + + private static void push(String raw, Object... args) { + String url = String.format(raw, args); + System.out.println(url); + WebTarget wt = VampirePusher.getWebTarget(URL_VAMPIRE + url); + Response r = wt.request().get(); + if (r.getStatus() != 200) { + String content = r.readEntity(String.class); + if (!"link to issue did already exist".equals(content)) { + System.err.println("ERROR: " + content); + } + } + } + + private static List readRatings() { + List ratings = new LinkedList<>(); + try { + List lines = FileUtils.readLines(new File(PATH_TO_RATINGS), Charsets.UTF_8); + boolean isFirst = true; + for (String line : lines) { + if (isFirst) { // header + isFirst = false; + continue; + } + String[] parts = line.split("\t"); + Rating r = new Rating(); + r.id = parts[0]; + r.name = parts[1]; + r.isValid = Boolean.parseBoolean(parts[2]); + ratings.add(r); + } + return ratings; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static class Rating { + public String id; + public String name; + public boolean isValid; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/run_sampling.java b/cd-linter-code/src/main/java/cdlinter/app/run_sampling.java new file mode 100644 index 0000000..a91caa8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/run_sampling.java @@ -0,0 +1,131 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.sql.Statement; +import java.util.HashSet; +import java.util.Iterator; +import java.util.LinkedHashSet; +import java.util.Set; + +import cdlinter.app.IoUtil.OrderBy; + +public class run_sampling { + + // SELECT category, COUNT(category) FROM Issue GROUP BY category + // "Job-Retry",928 + // "Job-Allow-Failure",788 + // "Versioning",683 + // "Manual-Job",269 + // "Vulnerability",100 + + private static final String SQLITE_PATH = "/Users/xxx/workspaces/sts4/vampire/db.sqlite"; + private static final String ACTIVITY_PATH = "/Users/xxx/versioned/documents/paper-xxx-cd-linter/resources/anti-patterns-validation/numIssuesUpdated.csv"; + private static final int MAX_SAMPLING = 60; + + private static Connection conn; + + public static void main(String[] args) throws SQLException { + conn = DriverManager.getConnection("jdbc:sqlite:" + SQLITE_PATH); + + Set cats = getCategoriesOrderedByFrequency(); + + Set activeProjects = IoUtil.getActiveOwners(OrderBy.Issues); + + Set selectedIds = new HashSet<>(); + Set selectedProjects = new HashSet<>(); + + for (String cat : cats) { + System.out.println("## " + cat); + Set selectedCatIds = new HashSet<>(); + Iterator it = activeProjects.iterator(); + while (it.hasNext() && selectedCatIds.size() < MAX_SAMPLING) { + String project = it.next(); + String sql = "SELECT id FROM Issue WHERE category = '" + cat + "' AND linkToRepository LIKE '%" + + project + "'"; + ResultSet res = conn.createStatement().executeQuery(sql); + if (res.next() && !selectedProjects.contains(project)) { + selectedCatIds.add(res.getString("id")); + selectedProjects.add(project); + it.remove(); + } + } + + System.out.printf("%d active projects found\n", selectedCatIds.size()); + + String sql = "SELECT id, linkToRepository FROM Issue WHERE category = '" + cat + "'"; + ResultSet res = conn.createStatement().executeQuery(sql); + while (res.next() && selectedCatIds.size() < MAX_SAMPLING) { + String id = res.getString("id"); + String project = res.getString("linkToRepository").substring("https://gitlab.com/".length()); + + if (!selectedCatIds.contains(id) && !selectedProjects.contains(project)) { + selectedCatIds.add(id); + selectedProjects.add(project); + } + } + + if (selectedCatIds.size() < MAX_SAMPLING) { + String msg = String.format("WARN: only %d issues found for category %s", selectedCatIds.size(), cat); + System.err.println(msg); + } else { + String msg = String.format("%d issues found for category %s", selectedCatIds.size(), cat); + System.out.println(msg); + } + selectedIds.addAll(selectedCatIds); + } + + String sql = "SELECT id FROM Issue"; + ResultSet res = conn.createStatement().executeQuery(sql); + while (res.next()) { + String id = res.getString("id"); + if (!selectedIds.contains(id)) { + exec("DELETE FROM Issue WHERE id = \"" + id + "\""); + exec("DELETE FROM Issue_tags WHERE Issue_id = \"" + id + "\""); + exec("DELETE FROM Rating WHERE id = \"" + id + "\""); + } + } + + } + + private static void exec(String sql) throws SQLException { + System.out.println(sql); + conn.createStatement().execute(sql); + } + + private static Set getCategoriesOrderedByFrequency() throws SQLException { + Set cats = new LinkedHashSet<>(); + Statement stmt = conn.createStatement(); + // ResultSet res = stmt + // .executeQuery("SELECT category, COUNT(category) AS count FROM Issue GROUP BY + // category ORDER BY count"); + ResultSet res = stmt.executeQuery("SELECT category, COUNT(category) AS count " + + "FROM (SELECT DISTINCT linkToRepository, category FROM Issue) " + + "GROUP BY category ORDER BY count"); + System.out.println("\t"); + while (res.next()) { + String cat = res.getString("category"); + cats.add(cat); + System.out.printf("%s\t%s\n", cat, res.getString("count")); + } + + return cats; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/run_sampling2.java b/cd-linter-code/src/main/java/cdlinter/app/run_sampling2.java new file mode 100644 index 0000000..5290e80 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/run_sampling2.java @@ -0,0 +1,279 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import java.io.IOException; +import java.util.Collection; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.writers.CIAntiPatternCSVWriter; +import cdlinter.app.IoUtil.OrderBy; + +public class run_sampling2 { + + public static final int SAMPLE_SIZE = 42; + public static final String PATH_CIA_SAMPLED = "target/CI-anti-patterns.csv"; + public static final String PATH_CIA_SAMPLED_INTERNAL = "target/ciaSampleForInternalReview.csv"; + public static final String PATH_CIA_ALL = "target/ciaAllByOwnerAndCategory.csv"; + + private final Set cias = IoUtil.readCIAntiPatterns(); + private final Set pushedIds = new HashSet<>();//.readPushedIdsAndLinksToIssues().keySet(); + private final Set activeOwnersByIssues = IoUtil.getActiveOwners(OrderBy.Issues); + private final Set activeOwnersByCommits = IoUtil.getActiveOwners(OrderBy.Commits); + + public static void main(String[] args) { + new run_sampling2().run(); + } + + private void run() { + Set pushedValidIssues = findValidPushedIssues(); + Set pushedValidIssuesGroupByOwner = groupValidIssuesByOwner(pushedValidIssues); + System.out.printf( + "From %d originally opened issues, %d are still valid, but only %d can be selected due to grouping\n\n", + pushedIds.size(), pushedValidIssues.size(), pushedValidIssuesGroupByOwner.size()); + + Set noOpenIssues = findCiasForWhichTheOwnersDoNotHaveOpenIssues(); + Set onePerOwner = findOneIssuePerOwner(noOpenIssues); + Set workingSet = new LinkedHashSet<>(); + workingSet.addAll(onePerOwner); + workingSet.addAll(pushedValidIssuesGroupByOwner); + Set allIssuesByOwnerAndType = findAllIssuesByOwnerAndType(); + + System.out.printf("The detectors find %d CI Anti-Patterns\n", cias.size()); + System.out.printf("%d remain when filtering owners, for which we have already opened an issue\n", + noOpenIssues.size()); + System.out.printf("%d remain when we only select one issue per owner\n", onePerOwner.size()); + System.out.printf("Adding the opened issues, we end up with %d CI Anti-Patterns\n\n", workingSet.size()); + + printFreqForInvalidOpenedIssues(); + // printTypeFrequency(pushedValidIssues, "\"pushedIssues\""); + // printTypeFrequency(pushedValidIssuesGroupByOwner, + // "\"pushedIssues.groupBy(Owner+cat)\""); + printTypeFrequency(workingSet, "\"workingSet -- groupBy(Owner)\""); + // printTypeFrequency(findAllIssuesByOwner(), "\"all.groupBy(owner)\""); + printTypeFrequency(allIssuesByOwnerAndType, "\"all.groupBy(owner+category)\""); + + Set sampledByOwner = sample(workingSet, pushedValidIssuesGroupByOwner, SAMPLE_SIZE); + + write(allIssuesByOwnerAndType, PATH_CIA_ALL); + write(sampledByOwner, PATH_CIA_SAMPLED); + } + + private void write(Collection x, String path) { + System.out.printf("Writing %s ... (%d entries)\n", path, x.size()); + try { + new CIAntiPatternCSVWriter(path).write(x); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + private Set sample(Set candidates, Set pushed, int sampleSize) { + if (candidates.size() < pushed.size()) { + throw new RuntimeException("#candidates < #pushed... this cannot be!"); + } + + Set categories = candidates.stream().collect(Collectors.groupingBy(cia -> cia.getCategory())).keySet(); + + Set out = new LinkedHashSet<>(); + for (String category : categories) { + Set catOut = new LinkedHashSet<>(); + + System.out.printf("### %s ###\n", category); + + Set catCandidates = candidates.stream().// + filter(cia -> category.equals(cia.getCategory())).// + collect(Collectors.toSet()); + System.out.printf("%s candidates\n", catCandidates.size()); + + Set byIssue = findActive(category, activeOwnersByIssues, catCandidates); + Set byCommits = findActive(category, activeOwnersByCommits, catCandidates); + System.out.printf("active:\n\t%d by issue\n\t%d by commits\n", byIssue.size(), byCommits.size()); + + Set catPushed = pushed.stream().// + filter(cia -> category.equals(cia.getCategory())).// + collect(Collectors.toSet()); + System.out.printf("\nselected %s because they were pushed before\n", catPushed.size()); + + catOut.addAll(catPushed); + + int totalByIssue = 0; + Iterator it = byIssue.iterator(); + while (catOut.size() < sampleSize && it.hasNext()) { + CIAntiPattern next = it.next(); + if (!catOut.contains(next)) { + catOut.add(next); + totalByIssue++; + } + } + System.out.printf("selected %d by issue activity (%d)\n", totalByIssue, catOut.size()); + + int totalByCommits = 0; + it = byCommits.iterator(); + while (catOut.size() < sampleSize && it.hasNext()) { + CIAntiPattern next = it.next(); + if (!catOut.contains(next)) { + catOut.add(next); + totalByCommits++; + } + } + System.out.printf("selected %d by commit activity (%d)\n", totalByCommits, catOut.size()); + + int totalRnd = 0; + for (CIAntiPattern cia : catCandidates) { + if (catOut.size() < sampleSize && !catOut.contains(cia)) { + catOut.add(cia); + totalRnd++; + } + } + System.out.printf("selected %d randomly (%d)\n", totalRnd, catOut.size()); + + System.out.printf("--> %d\n\n", catOut.size()); + out.addAll(catOut); + } + + return out; + } + + private Set findActive(String category, Set activeOwners, Set candidates) { + Set res = new LinkedHashSet<>(); + for (String o : activeOwners) { + for (CIAntiPattern cia : candidates) { + if (o.equals(cia.getOwner()) && category.equals(cia.getCategory())) { + res.add(cia); + } + } + } + return res; + } + + private Set groupValidIssuesByOwner(Set pushedValidIssues) { + + Map> res = pushedValidIssues.stream().// + collect(Collectors.groupingBy(cia -> cia.getOwner())); + + Set pushedValidIssuesGroupByOwner = res.values().stream().// + map(a -> a.get(0)).// + collect(Collectors.toSet()); + + return pushedValidIssuesGroupByOwner; + } + + private void printFreqForInvalidOpenedIssues() { + Map counts = new HashMap(); + + Set currentIds = cias.stream().map(cia -> cia.getId()).collect(Collectors.toSet()); + + for (String id : pushedIds) { + if (!currentIds.contains(id)) { + for (String type : new String[] { "Job-Allow-Failure", "Versioning", "Job-Retry", "Vulnerability", + "Manual-Job" }) { + if (id.contains(type)) { + if (counts.containsKey(type)) { + counts.put(type, counts.get(type) + 1); + } else { + counts.put(type, 1); + } + } + } + } + } + System.out.printf( + "Frequency of the various anti-pattern types that have previously been pushed, but that are no longer valid:\n"); + long total = 0; + for (Object type : counts.keySet()) { + int count = counts.get(type); + System.out.printf(" - %s\t%d\n", type, count); + total += count; + } + System.out.printf(" - total\t%d\n\n", total); + } + + private void printTypeFrequency(Set cs, String qualifier) { + Map typeCounts = countFrequencyOfIssueTypes(cs); + System.out.printf("Frequency of the various anti-pattern types (%s):\n", qualifier); + long total = 0; + for (Object type : typeCounts.keySet()) { + Long count = typeCounts.get(type); + System.out.printf(" - %s\t%d\n", type, count); + total += count; + } + System.out.printf(" - total\t%d\n\n", total); + } + + private Map countFrequencyOfIssueTypes(Set in) { + return in.stream().// + collect(Collectors.groupingBy(cia -> cia.getCategory(), Collectors.counting())); + } + + private Set findAllIssuesByOwner() { + Map> tmp = cias.stream().// + collect(Collectors.groupingBy(cia -> cia.getOwner())); + + Set out = tmp.values().stream().// + map(cias -> cias.get(0)).// + collect(Collectors.toSet()); + + return out; + } + + private Set findAllIssuesByOwnerAndType() { + Map> tmp = cias.stream().// + collect(Collectors.groupingBy(cia -> cia.getOwner() + cia.getCategory())); + + Set out = tmp.values().stream().// + map(cias -> cias.get(0)).// + collect(Collectors.toSet()); + + return out; + } + + private Set findCiasForWhichTheOwnersDoNotHaveOpenIssues() { + Set ownersWithPushedIssues = cias.stream().// + filter(cia -> pushedIds.contains(cia.getId())).// + map(cia -> cia.getOwner()).// + collect(Collectors.toSet()); + return cias.stream().// + filter(cia -> !ownersWithPushedIssues.contains(cia.getOwner())).// + collect(Collectors.toSet()); + } + + private Set findOneIssuePerOwner(Set in) { + Map> tmp = in.stream().// + collect(Collectors.groupingBy(cia -> cia.getOwner())); + + Set out = tmp.values().stream().// + map(cias -> cias.get(0)).// + collect(Collectors.toSet()); + + return out; + } + + private Set findValidPushedIssues() { + return cias.stream().// + filter(cia -> pushedIds.contains(cia.getId())).// + collect(Collectors.toSet()); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/app/run_second_sampling.java b/cd-linter-code/src/main/java/cdlinter/app/run_second_sampling.java new file mode 100644 index 0000000..7425272 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/app/run_second_sampling.java @@ -0,0 +1,216 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.app; + +import static java.lang.String.format; + +import java.io.IOException; +import java.util.HashSet; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.TreeSet; +import java.util.function.Function; +import java.util.stream.Collector; +import java.util.stream.Collectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import cdlinter.antipattern.writers.CIAntiPatternCSVWriter; + +public class run_second_sampling { + + private static Set CIAS_RAW = new CIAntiPatternCSVReader("target/CI-anti-patterns.csv").read(); + private static Set CIAS_ALL = null;//new CIAntiPatternCSVReader(run_sampling2.PATH_CIA_ALL).read(); + private static Set CIAS_SAMPLED = new CIAntiPatternCSVReader(run_sampling2.PATH_CIA_SAMPLED).read(); + + private static Map SAMPLE_SIZES = new LinkedHashMap(); + + public static void main(String[] args) throws IOException { + + SAMPLE_SIZES.put("Job-Allow-Failure", 87); + SAMPLE_SIZES.put("Job-Retry/always", 19); + SAMPLE_SIZES.put("Job-Retry/script_failure", 1); + SAMPLE_SIZES.put("Job-Retry/stuck_or_timeout_failure", 1); + SAMPLE_SIZES.put("Manual-Job", 21); + SAMPLE_SIZES.put("Versioning/any-minor-number", 2); + SAMPLE_SIZES.put("Versioning/any-upper-version", 43); + SAMPLE_SIZES.put("Versioning/missing", 204); + SAMPLE_SIZES.put("Versioning/only-major-number", 9); + SAMPLE_SIZES.put("Vulnerability", 41); + + Set noOverlapWithSample = CIAS_RAW.stream().// + filter(cia -> !CIAS_SAMPLED.contains(cia)).// + collect(Collectors.toSet()); + Set uniqueOwnerTypeSubcategory = reduceToUniqueOwnerTypeSubcategory(noOverlapWithSample); + + System.out.printf("#CIAs in 'all' (ungrouped): %d\n", CIAS_RAW.size()); + System.out.printf("#CIAs in 'sample': %d\n", CIAS_SAMPLED.size()); + System.out.printf("#CIAs remaining: %d\n\n", noOverlapWithSample.size()); + System.out.printf("#CIAs uniqueOwnerTypeSubcategory: %d\n\n", uniqueOwnerTypeSubcategory.size()); + + printStatsAboutGrouping(CIAS_RAW, "raw"); + printStatsAboutGrouping(CIAS_SAMPLED, "sample"); + printStatsAboutGrouping(noOverlapWithSample, "noOverlapWithSample"); + printStatsAboutGrouping(uniqueOwnerTypeSubcategory, "uniqueOwnerTypeSubcategory"); + + reportCategoryCounts(CIAS_RAW, "raw"); + reportCategoryCounts(noOverlapWithSample, "noOverlapWithSample"); + reportCategoryCounts(uniqueOwnerTypeSubcategory, "uniqueOwnerTypeSubcategory"); + + printSampleSize(SAMPLE_SIZES, "orig"); + Map sampleSizeExclSample = reduce(SAMPLE_SIZES, CIAS_SAMPLED); + printSampleSize(sampleSizeExclSample, "orig\\{sample}"); + + Set sample = sample(uniqueOwnerTypeSubcategory, sampleSizeExclSample); + + reportCategoryCounts(CIAS_SAMPLED, "sampled"); + reportCategoryCounts(sample, "final"); + + // decide which sample to upload... + // it is either 'uniqueOwnerTypeSubcategory' or 'sample' + new CIAntiPatternCSVWriter(run_sampling2.PATH_CIA_SAMPLED_INTERNAL).write(uniqueOwnerTypeSubcategory); + // new + // CIAntiPatternCSVWriter(run_sampling2.PATH_CIA_SAMPLED_INTERNAL).write(sample); + } + + private static Set sample(Set in, Map sampleSizes) { + HashSet out = new HashSet(); + + Map> groups = in.stream() + .collect(Collectors.groupingBy(cia -> typeSubcategory(cia))); + + for (String cat : groups.keySet()) { + List list = groups.get(cat); + list.stream().// + limit(sampleSizes.get(cat)).// + forEach(cia -> out.add(cia)); + } + + return out; + } + + private static Set reduceToUniqueOwnerTypeSubcategory(Set tmp) { + Map> categories = tmp.stream().// + collect(Collectors.groupingBy(cia -> ownerTypeSubcategory(cia))); + Set tmp2 = categories.values().stream().map(cias -> cias.get(0)).collect(Collectors.toSet()); + return tmp2; + } + + private static Set subtract(Set all, Set sample, + Function mapping) { + + Collector>> grp = Collectors.groupingBy(mapping); + + Set mappingInSample = sample.stream().collect(grp).keySet(); + + Set noOverlapForMapping = all.stream().// + filter(cia -> !mappingInSample.contains(mapping.apply(cia))).// + collect(Collectors.toSet()); + + return noOverlapForMapping; + } + + private static Map reduce(Map sampleSizes, Set cias) { + Map res = new LinkedHashMap<>(); + + Map> cats = cias.stream().// + collect(Collectors.groupingBy(cia -> typeSubcategory(cia))); + + for (String key : sampleSizes.keySet()) { + int numOrig = sampleSizes.get(key); + int numCias = cats.containsKey(key) ? cats.get(key).size() : 0; + if (numCias > numOrig) { + System.err.printf("Category '%s' is overfilled!\n", key); + } + res.put(key, Math.max(0, numOrig - numCias)); + } + + Set sampleKeys = sampleSizes.keySet(); + for (String key : cats.keySet()) { + if (!sampleKeys.contains(key)) { + String msg = format("CIAs added new category '%s', which is unknown in original sample sizes", key); + throw new RuntimeException(msg); + } + } + + return res; + } + + private static String typeSubcategory(CIAntiPattern cia) { + return cia.getSubCategory() == null || cia.getSubCategory().isEmpty() ? cia.getCategory() + : cia.getCategory() + "/" + cia.getSubCategory(); + } + + private static String ownerTypeSubcategory(CIAntiPattern cia) { + return cia.getOwner() + cia.getCategory() + cia.getSubCategory(); + } + + private static String owner(CIAntiPattern cia) { + return cia.getOwner(); + } + + private static String ownerType(CIAntiPattern cia) { + return cia.getOwner() + cia.getCategory(); + } + + private static void printStatsAboutGrouping(Set cias, String qualifier) { + + Set byOwner = cias.stream().// + collect(Collectors.groupingBy(cia -> owner(cia))).keySet(); + + Set byOwnerType = cias.stream().// + collect(Collectors.groupingBy(cia -> ownerType(cia))).keySet(); + + Set byOwnerTypesSubcat = cias.stream().// + collect(Collectors.groupingBy(cia -> ownerTypeSubcategory(cia))).keySet(); + + Set byTypesSubcat = cias.stream().// + collect(Collectors.groupingBy(cia -> typeSubcategory(cia))).keySet(); + + System.out.printf("Grouping info for '%s':\n", qualifier); + System.out.printf("\t%d \tGROUP BY (owner)\n", byOwner.size()); + System.out.printf("\t%d \tGROUP BY (owner+type)\n", byOwnerType.size()); + System.out.printf("\t%d \tGROUP BY (owner+type+subcat)\n", byOwnerTypesSubcat.size()); + System.out.printf("\t%d \tGROUP BY (type+subcat)\n", byTypesSubcat.size()); + System.out.println(); + } + + private static void reportCategoryCounts(Set allButSample, String qualifier) { + Map> categories = allButSample.stream().// + collect(Collectors.groupingBy(cia -> typeSubcategory(cia))); + + System.out.printf("Category counts for '%s':\n", qualifier); + int total = 0; + for (String category : new TreeSet(categories.keySet())) { + int size = categories.get(category).size(); + total += size; + System.out.printf("- %dx\t%s\n", size, category); + } + System.out.printf("-> %dx\tTotal\n", total); + System.out.println(); + } + + private static void printSampleSize(Map sampleSizes, String qualifier) { + System.out.printf("Sample Sizes (%s):\n", qualifier); + for (String key : sampleSizes.keySet()) { + Integer val = sampleSizes.get(key); + System.out.printf(" - %sx\t%s\n", val, key); + } + System.out.println(); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/GitLabMiner.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/GitLabMiner.java new file mode 100644 index 0000000..e256e36 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/GitLabMiner.java @@ -0,0 +1,1067 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab; + +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.nio.charset.Charset; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.StringTokenizer; + +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVPrinter; +import org.apache.commons.csv.CSVRecord; +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.StringUtils; + +import com.google.gson.Gson; + +import cdlinter.datamining.gitlab.entities.Branch; +import cdlinter.datamining.gitlab.entities.Commit; +import cdlinter.datamining.gitlab.entities.Contributor; +import cdlinter.datamining.gitlab.entities.Issue; +import cdlinter.datamining.gitlab.entities.Job; +import cdlinter.datamining.gitlab.entities.Language; +import cdlinter.datamining.gitlab.entities.MergeRequest; +import cdlinter.datamining.gitlab.entities.Pipeline; +import cdlinter.datamining.gitlab.entities.Project; +import cdlinter.datamining.gitlab.entities.ProjectItem; +import cdlinter.datamining.gitlab.entities.Tag; +import cdlinter.utils.HTTPConnector; +import cdlinter.utils.TCIDateFormatter; + + +public class GitLabMiner { + + public static final String GITLAB_ACCESSPOINT = "https://gitlab.com/api/v4"; + private String privateToken; + private Gson gson; + private Map requests_header = new HashMap<>(); + + public GitLabMiner(String privateToken) { + gson = new Gson(); + this.privateToken = privateToken; + } + + public static void main2(String[] args) throws ParseException, IOException { + String pvtToken = args[0]; + GitLabMiner gm = new GitLabMiner(pvtToken); + List projects = gm.getProjects(); + + String fileName = args[1]; + + CSVPrinter printer = new CSVPrinter(new FileWriter(fileName), CSVFormat.DEFAULT); + printer.printRecord("id","projectName","creationDate","lastUpdate","stars","forks","languages"); + + for(Project p: projects){ + printer.printRecord(p.getId(),p.getPathWithNamespace(),p.getCreatedAt(),p.getLastActivityAt(),p.getStarsCount(), + p.getForksCount(),p.getLanguages()); + } + + // printer.printRecord(projects); + printer.close(); + } + + public static void main(String[] args) throws Exception { + /* long yourmilliseconds = System.currentTimeMillis(); + SimpleDateFormat sdf = new SimpleDateFormat("YYMMdd-HHmmss"); + Date resultdate = new Date(yourmilliseconds); + String currentTime = sdf.format(resultdate); +*/ + String pvtToken = "null"; + GitLabMiner gm = new GitLabMiner(pvtToken); + + String name = "issues_200205-180807"; + String input = "/Users/xxx/Documents/CI-Linter/cd-linter-paper/resources/gitlab-issue-monitoring/"+ name +".csv"; + FileReader reader = new FileReader(input); + String output = "/Users/xxx/Documents/CI-Linter/cd-linter-paper/resources/gitlab-issue-monitoring/"+ name +"_upd.csv"; + FileWriter writer = new FileWriter(output); + gm.updateFixingCommitStats(reader, writer); + } + + public static void main3(String[] args) throws Exception { + String pvtToken = args[0]; + GitLabMiner gm = new GitLabMiner(pvtToken); + + String input = args[1]; + FileReader reader = new FileReader(input); + String output = args[2]; + FileWriter writer = new FileWriter(output); + gm.mineForkedProjects(reader, writer); + } + + public void mineForkedProjects(Reader inputFile, Writer outputFile) throws Exception { + CSVParser parser = CSVParser.parse(inputFile, CSVFormat.DEFAULT.withHeader()); + CSVPrinter printer = new CSVPrinter(outputFile, CSVFormat.DEFAULT); + List headerNames = new ArrayList<>(parser.getHeaderNames()); + headerNames.add("isForked"); + printer.printRecord(headerNames); // print the new header + + int index = 1; + for (CSVRecord csvRecord : parser) { + String projectName = csvRecord.get("projectName"); + index++; + System.out.println("Evaluating " + projectName + " (" + index + ")"); + + String id = csvRecord.get("id"); + String creationDate = csvRecord.get("creationDate"); + String lastUpdate = csvRecord.get("lastUpdate"); + String stars = csvRecord.get("stars"); + String forks = csvRecord.get("forks"); + String languages = csvRecord.get("languages"); + + String checkForkedFrom = checkForkedFrom(id); + + printer.printRecord(id,projectName,creationDate,lastUpdate,stars,forks,languages,checkForkedFrom); + } + + parser.close(); + printer.close(); + } + + /** + * As input the following header "id category reviewTag* title desc linkToRepository + * linkToOpenedIssue fixed (y/n/m) fixingCommit cd-linter-bug + * comment-labels fix-labels notes (e.g., how they fix it,) reaction + * lastChecked state isAssigned numUpvotes numDownvotes + * numComments label* monitoringTag* monitoringComment + * contributors contributorsSinceIssue commitsSinceIssue" + * @param inputFile + * @param outputFile + * @throws Exception + */ + public void updateFixingCommitStats(Reader inputFile, Writer outputFile) throws Exception { + + CSVParser parser = CSVParser.parse(inputFile, CSVFormat.DEFAULT.withHeader()); + CSVPrinter printer = new CSVPrinter(outputFile, CSVFormat.DEFAULT); + List headerNames = new ArrayList<>(parser.getHeaderNames()); + headerNames.add("fixingCommit-message"); + headerNames.add("resolution-time"); + + printer.printRecord(headerNames); // print the new header + + for (CSVRecord csvRecord : parser) { + + //take the commit id + String commitId = csvRecord.get("fixingCommit"); + + Map values = csvRecord.toMap(); // get previous values + + if(!commitId.equalsIgnoreCase("")) { + + //retrieve issue date + String linkToIssue = csvRecord.get("linkToOpenedIssue"); // ex. https://gitlab.com/vuedoc/parser/issues/54 + String[] splittedIssueLink = linkToIssue.substring(19).split("/"); + String projectEncName = splittedIssueLink[0] + "%2F" + splittedIssueLink[1]; + String issueId = splittedIssueLink[3]; + String fullIssueId = projectEncName + "_" + issueId; + System.out.println("Evaluating... "+ fullIssueId); + Issue issue = getIssueById(projectEncName, issueId); + String issueCreationDateStr = issue.getCreated_at(); + Date issueCreationDate = TCIDateFormatter.gitlabStringToDate(issueCreationDateStr); + + //retrieve commit date + System.out.println(projectEncName + " " + commitId); + Commit commit = getCommit(projectEncName, commitId); + String commitDateStr = commit.getCreated_at(); + String commitMessage = commit.getMessage(); + Date commitDate = TCIDateFormatter.gitlabStringToDate(commitDateStr); + + //compute the diff between the two dates (in ms) + long timeBetweenDates = TCIDateFormatter.timeBetweenDates(issueCreationDate, commitDate); + values.put("resolution-time", ""+timeBetweenDates); + values.put("fixingCommit-message", commitMessage); + } + else { + values.put("resolution-time", ""); + values.put("fixingCommit-message", ""); + } + + printer.printRecord(values.get("id"), values.get("category"), values.get("reviewTag*"), values.get("title"), + values.get("desc"), values.get("linkToRepository"), values.get("linkToOpenedIssue"), values.get("fixed (y/n/m)"), + values.get("fixingCommit"), values.get("cd-linter-bug"), values.get("comment-labels"), values.get("fix-labels"), + values.get("notes (e.g., how they fix it,)"), values.get("reaction"), values.get("lastChecked"), + values.get("state"), values.get("isAssigned"), values.get("numUpvotes"), values.get("numDownvotes"), + values.get("numComments"), values.get("label*"), values.get("monitoringTag*"), values.get("monitoringComment"), + values.get("contributors"), values.get("contributorsSinceIssue"), values.get("commitsSinceIssue"), + values.get("fixingCommit-message"), values.get("resolution-time")); + + } + + parser.close(); + printer.close(); + } + + + /** + * The file accepted as input has the following header "id category reviewTag* title desc linkToRepository + linkToOpenedIssue lastChecked state isAssigned numUpvotes numDownvotes + numComments label* monitoringTag* monitoringComment" + * @param inputFile + * @throws Exception + */ + public void updateIssueStats(Reader inputFile, Writer outputFile) throws Exception { + // id category reviewTag* title desc linkToRepository + //linkToOpenedIssue lastChecked state isAssigned numUpvotes numDownvotes + //numComments label* monitoringTag* monitoringComment + + CSVParser parser = CSVParser.parse(inputFile, CSVFormat.DEFAULT.withHeader()); + CSVPrinter printer = new CSVPrinter(outputFile, CSVFormat.DEFAULT); + List headerNames = new ArrayList<>(parser.getHeaderNames()); + headerNames.add("contributors"); + headerNames.add("contributorsSinceIssue"); + headerNames.add("commitsSinceIssue"); + + printer.printRecord(headerNames); // print the new header + + Set analyzedIssues = new HashSet<>(); + + for (CSVRecord csvRecord : parser) { + String linkToIssue = csvRecord.get("linkToOpenedIssue"); // ex. https://gitlab.com/vuedoc/parser/issues/54 + + if(linkToIssue.equalsIgnoreCase("null")) + continue; // skip the null links + + String[] splittedIssueLink = linkToIssue.substring(19).split("/"); + String projectEncName = splittedIssueLink[0] + "%2F" + splittedIssueLink[1]; + String issueId = splittedIssueLink[3]; + String fullIssueId = projectEncName + "_" + issueId; + + if(analyzedIssues.contains(fullIssueId)) { + continue; // skip because it was already analyzed + } + else { + analyzedIssues.add(fullIssueId); + } + + System.out.println("Evaluating... "+ fullIssueId); + + Issue issue = getIssueById(projectEncName, issueId); + Map values = csvRecord.toMap(); + + long yourmilliseconds = System.currentTimeMillis(); + SimpleDateFormat sdf = new SimpleDateFormat("YYMMdd-HHmmss"); + Date resultdate = new Date(yourmilliseconds); + String currentTime = sdf.format(resultdate); + values.put("lastChecked", currentTime); + + if(issue == null) { + values.put("state", "deleted"); + values.put("contributors", "-1"); + values.put("contributorsSinceIssue", "-1"); + values.put("commitsSinceIssue", "-1"); + } + else { + + // tot contributors + int contributors = getContributors(projectEncName).size(); + //contributors and commits from issue creation + String created_at = issue.getCreated_at(); + List commitsSince = getCommits(projectEncName, created_at); + Set contributorsSince = getContributorsFromCommits(commitsSince); + int contributorsSinceIssue = contributorsSince.size(); + int commitsSinceIssue = commitsSince.size(); + + values.put("contributors", ""+contributors); + values.put("contributorsSinceIssue", ""+contributorsSinceIssue); + values.put("commitsSinceIssue", ""+commitsSinceIssue); + + values.put("state", issue.getState()); + values.put("isAssigned", ""+(issue.getAssignees().length>0)); + values.put("numUpvotes", ""+issue.getUpvotes()); + values.put("numDownvotes", ""+issue.getDownvotes()); + values.put("numComments", ""+issue.getUser_notes_count()); + } + + printer.printRecord(values.get("id"), values.get("category"), values.get("reviewTag*"), values.get("title"), + values.get("desc"), values.get("linkToRepository"), values.get("linkToOpenedIssue"), values.get("lastChecked"), + values.get("state"), values.get("isAssigned"), values.get("numUpvotes"), values.get("numDownvotes"), + values.get("numComments"), values.get("label*"), values.get("monitoringTag*"), values.get("monitoringComment"), + values.get("contributors"), values.get("contributorsSinceIssue"), values.get("commitsSinceIssue")); + } + + parser.close(); + printer.close(); + } + + + public List getJobsAtPage(String id, int pageIndex) { + + List jobs = new ArrayList<>(); + + String url = GITLAB_ACCESSPOINT + "/projects/"+id+"/jobs?per_page=100&page="+pageIndex; + requests_header.put("Private-Token", privateToken); + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode == HTTPConnector.STATUS_OK) { + Job[] jobsResponse = gson.fromJson(response, Job[].class); + + for(Job j: jobsResponse) { + jobs.add(j); + } + } + + return jobs; + } + + public Pipeline getPipelineInfo(String projectId, String pipeID) { + + String url = GITLAB_ACCESSPOINT + "/projects/"+projectId+"/pipelines/"+pipeID; + requests_header.put("Private-Token", privateToken); + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode == HTTPConnector.STATUS_OK) { + Pipeline pipelineResponse = gson.fromJson(response, Pipeline.class); + + return pipelineResponse; + } + return null; + } + + public ProjectItem getProjectItem(String projectID) { + + String url = GITLAB_ACCESSPOINT + "/projects/"+projectID; + requests_header.put("Private-Token", privateToken); + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode == HTTPConnector.STATUS_OK) { + ProjectItem projectItemResponse = gson.fromJson(response, ProjectItem.class); + + return projectItemResponse; + } + return null; + } + + public String checkForkedFrom(String id) { + + ProjectItem item= getProjectItem(id); + + String result = null; + + if(item != null) { + if(item.getForked_from_project() == null) + result = "FALSE"; + else + result = "TRUE"; + } + else + result = "NA"; + + return result; + } + + + public List getJobs(String projectId){ + int page = 1; + boolean emptyPage = false; + + List jobs = new ArrayList<>(); + + while(!emptyPage){ + + List jobsAtPage = getJobsAtPage(projectId, page); + if(jobsAtPage.size() == 0) { + emptyPage = true; + } + else { + //print projects for debugging + // for(Job j : jobsAtPage) + // System.out.println(page+ ","+ j.getId()); + + jobs.addAll(jobsAtPage); + page++; + } + } + return jobs; + } + + + public List getProjectsAtPage(int pageIndex) throws ParseException{ + List projects = new ArrayList<>(); + + String url = GITLAB_ACCESSPOINT + "/projects?per_page=100&sort=asc&page="+pageIndex; + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(pageIndex +",nullproject,"+response); // debug + Project fakeProj = new Project(); + projects.add(fakeProj); + } + else { + + ProjectItem[] projectResponse = gson.fromJson(response, ProjectItem[].class); + + for(ProjectItem p : projectResponse) { + + String id = p.getId(); + String pathWithNamespace = p.getPath_with_namespace(); + Date createdAt = null; + Date lastActivityAt = null; + + if(p.getCreated_at() != null) + createdAt = TCIDateFormatter.convertToDate(p.getCreated_at()); + + if(p.getLast_activity_at() != null) + lastActivityAt = TCIDateFormatter.convertToDate(p.getLast_activity_at()); + + int starsCount = 0; + int forksCount = 0; + + if(p.getStar_count() != null) + starsCount = Integer.parseInt(p.getStar_count()); + + if(p.getForks_count() != null) + forksCount = Integer.parseInt(p.getForks_count()); + + Project proj = new Project(id, pathWithNamespace, createdAt, lastActivityAt, starsCount, forksCount); + + getLanguagesForProject(proj); // add languages if any + + projects.add(proj); + }} + + return projects; + } + + + public void getLanguagesForProject(Project p){ + String id = p.getId(); + + String url = GITLAB_ACCESSPOINT + "/projects/"+id+"/languages"; + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println("nulllanguage,"+response); // debug + } + else { + List parseLanguages = parseLanguages(response); + p.setLanguages(parseLanguages); + } + + } + + public String getDefaultBranchForProject(Project p) { + int page = 1; + boolean emptyPage = false; + + String projectId = p.getId(); + + + while(!emptyPage){ + + List branchesAtPage = getBranchesForProjectAtPage(projectId, page); + + if(branchesAtPage.size() == 0) { + emptyPage = true; + } + else { + for (Branch b: branchesAtPage) { + if(b.getDefault()) { + return b.getName(); + } + } + + page++; + } + } + return null; + } + + public List getBranchesForProjectAtPage(String projectId, int pageIndex) { + + List branches = new ArrayList(); + + String url = GITLAB_ACCESSPOINT + "/projects/"+projectId+"/repository/branches?per_page=100&page="+pageIndex; + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Branch[] branchResponse = gson.fromJson(response, Branch[].class); + + for(Branch branch: branchResponse) { + branches.add(branch); + } + } + + return branches; + } + + public List getProjects() throws ParseException{ + int page = 1; + boolean emptyPage = false; + + List projects = new ArrayList<>(); + + while(!emptyPage){ + + List projectsAtPage = getProjectsAtPage(page); + if(projectsAtPage.size() == 0) { + emptyPage = true; + } + else { + //print projects for debugging + // for(Project p : projectsAtPage) + // System.out.println(page+ ","+ p); + + projects.addAll(projectsAtPage); + System.out.println("Analyzed " + page + " pages (" + page*100 + " projects)"); + page++; + } + } + return projects; + } + + + // get contributors + //https://gitlab.com/api/v4/projects/13083/repository/contributors?sort=desc + public List getContributors(String projectId){ + int page = 1; + boolean emptyPage = false; + + List items = new ArrayList<>(); + + while(!emptyPage){ + + List itemsAtPage = getContibutorsAtPage(projectId,page); + if(itemsAtPage.size() == 0) { + emptyPage = true; + } + else { + items.addAll(itemsAtPage); + page++; + } + } + return items; + } + + + public List getContibutorsAtPage(String id, int pageIndex){ + List items = new ArrayList<>(); + + + String url = GITLAB_ACCESSPOINT + "/projects/"+id+ "/repository/contributors?sort=desc&per_page=100&page="+pageIndex; + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Contributor[] itemResponse = gson.fromJson(response, Contributor[].class); + + for(Contributor item: itemResponse) { + items.add(item); + } + } + + return items; + } + + // merge-requests + + public List getMergeRequests(Project p, String state){ + int page = 1; + boolean emptyPage = false; + + String id = p.getId(); + + List items = new ArrayList<>(); + + while(!emptyPage){ + + List itemsAtPage = getMergeRequestsAtPage(id, state, page); + if(itemsAtPage.size() == 0) { + emptyPage = true; + } + else { + + items.addAll(itemsAtPage); + page++; + } + } + return items; + } + + + public List getMergeRequestsAtPage(String id, String state, int pageIndex){ + List items = new ArrayList<>(); + //projects/4921652/merge_requests?per_page=100&page=1&state=closed + String url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/merge_requests?state="+state+"&per_page=100&page="+pageIndex; + + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + MergeRequest[] itemResponse = gson.fromJson(response, MergeRequest[].class); + + for(MergeRequest item: itemResponse) { + items.add(item); + } + } + + return items; + } + + // IP8vai5ahv8ia3xaezaj + + + public Set getContributorsFromCommits(List commits){ + Set contributors = new HashSet<>(); + + for(Commit c: commits) { + String author_name = c.getAuthor_name(); + String author_email = c.getAuthor_email(); + + Contributor contributor = new Contributor(); + contributor.setName(author_name); + contributor.setEmail(author_email); + contributors.add(contributor); + } + + return contributors; + } + + public List getCommits(String projectId, String updatedAfter){ + int page = 1; + boolean emptyPage = false; + + List items = new ArrayList<>(); + + while(!emptyPage){ + + List itemsAtPage = getCommitsAtPage(projectId, updatedAfter, page); + if(itemsAtPage.size() == 0) { + emptyPage = true; + } + else { + items.addAll(itemsAtPage); + page++; + } + } + return items; + } + + public Commit getCommit(String id, String sha) { + String url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/repository/commits/"+sha; + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Commit itemResponse = gson.fromJson(response, Commit.class); + + return itemResponse; + } + + return null; + } + + + + public List getCommitsAtPage(String id, String since, int pageIndex){ + List items = new ArrayList<>(); + //projects/4921652/merge_requests?per_page=100&page=1&state=closed + String url = null; + + if(since != null) { + url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/repository/commits?all=true&per_page=100&page="+pageIndex + + "&since=" + since; + } + else { + url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/repository/commits?all=true&per_page=100&page="+pageIndex; + } + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Commit[] itemResponse = gson.fromJson(response, Commit[].class); + + for(Commit item: itemResponse) { + items.add(item); + } + } + + return items; + } + + + // issues + + public List getIssues(Project p, String state, String updatedAfter){ + int page = 1; + boolean emptyPage = false; + + String id = p.getId(); + + List items = new ArrayList<>(); + + while(!emptyPage){ + + List itemsAtPage = getIssuesAtPage(id, state,updatedAfter, page); + if(itemsAtPage.size() == 0) { + emptyPage = true; + } + else { + + items.addAll(itemsAtPage); + page++; + } + } + return items; + } + + + public List getIssuesAtPage(String id, String state, String updatedAfter, int pageIndex){ + List items = new ArrayList<>(); + //projects/4921652/merge_requests?per_page=100&page=1&state=closed + String url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/issues?state="+state+"&per_page=100&page="+pageIndex + + "&updated_after=" + updatedAfter; + + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Issue[] itemResponse = gson.fromJson(response, Issue[].class); + + for(Issue item: itemResponse) { + items.add(item); + } + } + + return items; + } + + /** + * This method accepts the project's encoded path as one parameter instead of the usual id. + * Ex. "/api/v4/projects/diaspora%2Fdiaspora" + * @param projectEncodedPath + * @param issueId + * @return + * @throws Exception + */ + public Issue getIssueById(String projectEncodedPath, String issueId) throws Exception { + String url = GITLAB_ACCESSPOINT + "/projects/"+projectEncodedPath + +"/issues?iids[]="+ issueId; + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + Set issues = new HashSet(); + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Issue[] itemResponse = gson.fromJson(response, Issue[].class); + + for(Issue item: itemResponse) { + issues.add(item); + } + } + + if(issues.size() == 0) + return null; + else if(issues.size() > 1) + throw new Exception("too many issues"); + else { + return issues.iterator().next(); + } + } + + //tags + + public List getTags(Project p){ + int page = 1; + boolean emptyPage = false; + + String id = p.getId(); + + List items = new ArrayList<>(); + + while(!emptyPage){ + + List itemsAtPage = getTagsAtPage(id,page); + if(itemsAtPage.size() == 0) { + emptyPage = true; + } + else { + + items.addAll(itemsAtPage); + page++; + } + } + return items; + } + + + public List getTagsAtPage(String id, int pageIndex){ + List items = new ArrayList<>(); + //projects/4921652/merge_requests?per_page=100&page=1&state=closed + String url = GITLAB_ACCESSPOINT + "/projects/"+id+ + "/repository/tags?per_page=100&page="+pageIndex; + + + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + + int responseCode = Integer.parseInt(responseResults[0]); + String response = responseResults[1]; + + if(responseCode != HTTPConnector.STATUS_OK) { + // System.out.println(projectId +",nullproject,"+response); // debug + } + else { + Tag[] itemResponse = gson.fromJson(response, Tag[].class); + + for(Tag item: itemResponse) { + items.add(item); + } + } + + return items; + } + + + /** + * example of file in input available at + * @param input + * @return + * @throws IOException + * @throws ParseException + */ + public List readProjects(File input) throws IOException, ParseException{ + List lines = FileUtils.readLines(input, Charset.defaultCharset()); + + List projects = new ArrayList<>(); + + for(int i = 1; i < lines.size(); i++) { + String l = lines.get(i); + Project p = parseLine(l); + projects.add(p); + } + + return projects; + + } + + /** + * example of file in input available at + * @param input + * @return + * @throws IOException + * @throws ParseException + */ + public Map readMetrics(File input) throws IOException, ParseException{ + List lines = FileUtils.readLines(input, Charset.defaultCharset()); + + Map metrics = new HashMap<>(); + + for(int i = 1; i < lines.size(); i++) { + String l = lines.get(i); + String[] fields = StringUtils.split(l, ','); + metrics.put(Integer.parseInt(fields[0]), fields[1]); + } + return metrics; + + } + + + + private Project parseLine(String line) throws ParseException { + String[] fields = StringUtils.split(line, ','); + // id pathWithNamespace createdAt lastActivityAt starsCount forksCount stages isBuildStageInStages isBuildStageInJobs jobNames isBuildInJobsName isDeployStageInStages isDeployStageInJobs jobNames isDeployInJobsName pipelines language languages projectIsAvailable isFork default_branch + String id = fields[0]; + String pathWithNamespace = fields[1]; + Date createdAt = null; + Date lastActivityAt = null; + int starsCount = -1;//Integer.parseInt(fields[5]); + int forksCount = -1;//Integer.parseInt(fields[6]); + String default_branch = fields[6]; + + Project project = new Project(id, pathWithNamespace, createdAt, lastActivityAt, starsCount, forksCount, + default_branch); + + return project; + } + + + + public int getNumberOfPipelines(Project project) { + + String id = project.getId(); + int number = -1; + + String url = GITLAB_ACCESSPOINT + "/projects/"+id+"/pipelines"; + // https://gitlab.com/gitlab-org/gitlab-ce/raw/master/.gitlab-ci.yml + // System.out.println(url); + Map requests_header =new HashMap(); + requests_header.put("Private-Token", privateToken); + requests_header .put("Content-Type", "application/yaml; charset=utf-8"); + String[] responseResults = HTTPConnector.connectAndGetResponseHeader(url, requests_header, "x-total"); + + int responseCode = Integer.parseInt(responseResults[0]); + String responseHeader = responseResults[1]; + + if(responseCode == HTTPConnector.STATUS_OK) + number = Integer.parseInt(responseHeader); + + return number; + } + + + + + + + // other methods + + + /** + * [warning] it might work on for the specific instance of log10...(differences might be in the size of the header) + * @param path + * @param logName + */ + public static void cleanLog(String path, String logName) { + try { + //"/Users/xxx/Desktop/log10.txt" + File file = new File(path + "/" + logName + ".txt"); + + List readLines = FileUtils.readLines(file, Charset.defaultCharset()); + + List filteredLines = new ArrayList<>(); + // String header = "page,id,pathWithNamespace,createdAt,lastActivityAt,starsCount,forksCount"; + // String header = ""; + // filteredLines.add(header); + for(int i = 0; i < readLines.size(); i++) { + String line = readLines.get(i); + // if(line.contains(",nullproject,") || line.contains(",-4,")) { + if(line.contains("nulllanguage")) { + // System.out.println(line); + continue; + } + + filteredLines.add(line); + } + + + File output = new File(path + "/" + logName + "_filtered.csv"); + FileUtils.writeLines(output, filteredLines); + + System.out.println(readLines.size()); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + + private List parseLanguages(String rawLine){ + List languages = new ArrayList<>(); + + if(rawLine == null) + return languages; + + rawLine = rawLine.replaceAll("\\s", ""); + String content = rawLine.substring(1, rawLine.length() - 1); + + // System.out.println(content); + + StringTokenizer tokenizer = new StringTokenizer(content, ","); + + while(tokenizer.hasMoreTokens()) { + String langItem = tokenizer.nextToken(); + StringTokenizer tokenizer2 = new StringTokenizer(langItem, ":"); + + String lang = tokenizer2.nextToken(); + double percentage = Double.parseDouble(tokenizer2.nextToken()); + + String name = lang.substring(1, lang.length() - 1); + Language l = new Language(name, percentage); + languages.add(l); + } + return languages; + } + + + + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Branch.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Branch.java new file mode 100644 index 0000000..e14fecd --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Branch.java @@ -0,0 +1,49 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +import com.google.gson.annotations.SerializedName; + +public class Branch { + + private String name; + + @SerializedName("default") + private boolean d_efault; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public boolean getDefault() { + return d_efault; + } + + public void setDefault(boolean d_efault) { + this.d_efault = d_efault; + } + + @Override + public String toString() { + return "Branch [name=" + name + ", d_efault=" + d_efault + "]"; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Commit.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Commit.java new file mode 100644 index 0000000..d523ed6 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Commit.java @@ -0,0 +1,170 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Commit { + + private String message; + + private String id; + + private String author_email; + + private String title; + + private String committer_email; + + private String short_id; + + private String[] parent_ids; + + private String author_name; + + private String authored_date; + + private String created_at; + + private String committed_date; + + private String committer_name; + + public String getMessage () + { + return message; + } + + public void setMessage (String message) + { + this.message = message; + } + + public String getId () + { + return id; + } + + public void setId (String id) + { + this.id = id; + } + + public String getAuthor_email () + { + return author_email; + } + + public void setAuthor_email (String author_email) + { + this.author_email = author_email; + } + + public String getTitle () + { + return title; + } + + public void setTitle (String title) + { + this.title = title; + } + + public String getCommitter_email () + { + return committer_email; + } + + public void setCommitter_email (String committer_email) + { + this.committer_email = committer_email; + } + + public String getShort_id () + { + return short_id; + } + + public void setShort_id (String short_id) + { + this.short_id = short_id; + } + + public String[] getParent_ids () + { + return parent_ids; + } + + public void setParent_ids (String[] parent_ids) + { + this.parent_ids = parent_ids; + } + + public String getAuthor_name () + { + return author_name; + } + + public void setAuthor_name (String author_name) + { + this.author_name = author_name; + } + + public String getAuthored_date () + { + return authored_date; + } + + public void setAuthored_date (String authored_date) + { + this.authored_date = authored_date; + } + + public String getCreated_at () + { + return created_at; + } + + public void setCreated_at (String created_at) + { + this.created_at = created_at; + } + + public String getCommitted_date () + { + return committed_date; + } + + public void setCommitted_date (String committed_date) + { + this.committed_date = committed_date; + } + + public String getCommitter_name () + { + return committer_name; + } + + public void setCommitter_name (String committer_name) + { + this.committer_name = committer_name; + } + + @Override + public String toString() + { + return "ClassPojo [message = "+message+", id = "+id+", author_email = "+author_email+", title = "+title+", committer_email = "+committer_email+", short_id = "+short_id+", parent_ids = "+parent_ids+", author_name = "+author_name+", authored_date = "+authored_date+", created_at = "+created_at+", committed_date = "+committed_date+", committer_name = "+committer_name+"]"; + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Contributor.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Contributor.java new file mode 100644 index 0000000..6d27ef0 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Contributor.java @@ -0,0 +1,92 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Contributor { + + private String name, email; + private int commits, additions, deletions; + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getEmail() { + return email; + } + public void setEmail(String email) { + this.email = email; + } + public int getCommits() { + return commits; + } + public void setCommits(int commits) { + this.commits = commits; + } + public int getAdditions() { + return additions; + } + public void setAdditions(int additions) { + this.additions = additions; + } + public int getDeletions() { + return deletions; + } + public void setDeletions(int deletions) { + this.deletions = deletions; + } + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + additions; + result = prime * result + commits; + result = prime * result + deletions; + result = prime * result + ((email == null) ? 0 : email.hashCode()); + result = prime * result + ((name == null) ? 0 : name.hashCode()); + return result; + } + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + Contributor other = (Contributor) obj; + if (additions != other.additions) + return false; + if (commits != other.commits) + return false; + if (deletions != other.deletions) + return false; + if (email == null) { + if (other.email != null) + return false; + } else if (!email.equals(other.email)) + return false; + if (name == null) { + if (other.name != null) + return false; + } else if (!name.equals(other.name)) + return false; + return true; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/GitLabYAML.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/GitLabYAML.java new file mode 100644 index 0000000..06f472b --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/GitLabYAML.java @@ -0,0 +1,36 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +import java.util.List; + +import com.google.gson.annotations.SerializedName; + +public class GitLabYAML { + + + private List stages; + + public List getStages() { + return stages; + } + + public void setStages(List stages) { + this.stages = stages; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Issue.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Issue.java new file mode 100644 index 0000000..c6ff0ab --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Issue.java @@ -0,0 +1,115 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Issue { + + private String id, iid, state, created_at, closed_at; + private User[] assignees; + private User assignee; + private int upvotes, downvotes, user_notes_count, merge_requests_count; + private boolean has_tasks; + private String[] labels; + public String getId() { + return id; + } + public String getIid() { + return iid; + } + public void setIid(String iid) { + this.iid = iid; + } + public void setId(String id) { + this.id = id; + } + public String getState() { + return state; + } + public void setState(String state) { + this.state = state; + } + public String getCreated_at() { + return created_at; + } + public void setCreated_at(String created_at) { + this.created_at = created_at; + } + public String getClosed_at() { + return closed_at; + } + public void setClosed_at(String closed_at) { + this.closed_at = closed_at; + } + public String[] getLabels() { + return labels; + } + public void setLabels(String[] labels) { + this.labels = labels; + } + + public User[] getAssignees() { + return assignees; + } + public void setAssignees(User[] assignees) { + this.assignees = assignees; + } + public User getAssignee() { + return assignee; + } + public void setAssignee(User assignee) { + this.assignee = assignee; + } + public int getUpvotes() { + return upvotes; + } + public void setUpvotes(int upvotes) { + this.upvotes = upvotes; + } + public int getDownvotes() { + return downvotes; + } + public void setDownvotes(int downvotes) { + this.downvotes = downvotes; + } + public int getUser_notes_count() { + return user_notes_count; + } + public void setUser_notes_count(int user_notes_count) { + this.user_notes_count = user_notes_count; + } + public int getMerge_requests_count() { + return merge_requests_count; + } + public void setMerge_requests_count(int merge_requests_count) { + this.merge_requests_count = merge_requests_count; + } + public boolean isHas_tasks() { + return has_tasks; + } + public void setHas_tasks(boolean has_tasks) { + this.has_tasks = has_tasks; + } + public String toString() { + String labels_s = ""; + + for(String label : labels) + labels_s = labels_s + "&" + label; + + return id + "," + labels_s + "," + created_at + "," + + closed_at + "," + state; + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Job.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Job.java new file mode 100644 index 0000000..dca1be8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Job.java @@ -0,0 +1,228 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Job +{ + private String id; + + private String status; + + private String tag; + + private String web_url; + + private String stage; + + private Object artifacts; + + private String artifacts_expire_at; + + private String ref; + + private String duration; + + private Commit commit; + + private String coverage; + + private Pipeline pipeline; + + private String name; + + private String created_at; + + private String started_at; + + private Object runner; + + private String finished_at; + + private User user; + + public String getStatus () + { + return status; + } + + public void setStatus (String status) + { + this.status = status; + } + + public String getTag () + { + return tag; + } + + public void setTag (String tag) + { + this.tag = tag; + } + + public String getWeb_url () + { + return web_url; + } + + public void setWeb_url (String web_url) + { + this.web_url = web_url; + } + + public String getStage () + { + return stage; + } + + public void setStage (String stage) + { + this.stage = stage; + } + + + + public String getId () + { + return id; + } + + public void setId (String id) + { + this.id = id; + } + + public String getRef () + { + return ref; + } + + public void setRef (String ref) + { + this.ref = ref; + } + + public String getDuration () + { + return duration; + } + + public void setDuration (String duration) + { + this.duration = duration; + } + + public Commit getCommit () + { + return commit; + } + + public void setCommit (Commit commit) + { + this.commit = commit; + } + + + public Pipeline getPipeline () + { + return pipeline; + } + + public void setPipeline (Pipeline pipeline) + { + this.pipeline = pipeline; + } + + public String getName () + { + return name; + } + + public void setName (String name) + { + this.name = name; + } + + public String getCreated_at () + { + return created_at; + } + + public void setCreated_at (String created_at) + { + this.created_at = created_at; + } + + public String getStarted_at () + { + return started_at; + } + + public void setStarted_at (String started_at) + { + this.started_at = started_at; + } + + public String getFinished_at () + { + return finished_at; + } + + public void setFinished_at (String finished_at) + { + this.finished_at = finished_at; + } + + public User getUser () + { + return user; + } + + public void setUser (User user) + { + this.user = user; + } + + @Override + public String toString() + { + return "ClassPojo [status = "+status+", " + + "tag = "+tag+", " + + "web_url = "+web_url+", " + + "stage = "+stage+", " + + "artifacts_expire_at = "+getArtifacts_expire_at()+", " + + "id = "+id+", ref = "+ref+", duration = "+duration+", " + + "commit = "+commit.getId()+", coverage = "+getCoverage()+", " + + "pipeline = "+pipeline.getId()+", name = "+name+", created_at = "+created_at+", started_at = "+started_at+", finished_at = "+finished_at+"]"; + } + + + public String getArtifacts_expire_at() { + return artifacts_expire_at; + } + + public void setArtifacts_expire_at(String artifacts_expire_at) { + this.artifacts_expire_at = artifacts_expire_at; + } + + public String getCoverage() { + return coverage; + } + + public void setCoverage(String coverage) { + this.coverage = coverage; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Language.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Language.java new file mode 100644 index 0000000..fb9478c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Language.java @@ -0,0 +1,45 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Language { + + private String name; + private double percentage; + + public Language(String name, double percentage) { + super(); + this.name = name; + this.percentage = percentage; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public double getPercentage() { + return percentage; + } + public void setPercentage(double percentage) { + this.percentage = percentage; + } + + public String toString() { + return name+"&"+percentage; + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Languages.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Languages.java new file mode 100644 index 0000000..35395a3 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Languages.java @@ -0,0 +1,343 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +import com.google.gson.annotations.SerializedName; + +public class Languages { + + private String Java,CSS,TypeScript,HTML,JavaScript,Python, + Modelica,TeX,Shell,Batchfile,HCL,BitBake,C,Matlab,TXL,XSLT,Perl,Ruby,PowerShell,Pascal, + ASP,PLpgSQL,Makefile,SQLPL,Puppet,Groovy,M4,Roff,CMake,NSIS,PHP,Go,Smalltalk,Smarty; + + @SerializedName("C++") + private String Cplusplus; + + @SerializedName("Objective-C") + private String ObjectiveC; + + @SerializedName("C#") + private String Csharp; + + @SerializedName("Visual Basic") + private String VisualBasic; + + public String getJava() { + return Java; + } + + public void setJava(String java) { + Java = java; + } + + public String getCSS() { + return CSS; + } + + public void setCSS(String cSS) { + CSS = cSS; + } + + public String getTypeScript() { + return TypeScript; + } + + public void setTypeScript(String typeScript) { + TypeScript = typeScript; + } + + public String getHTML() { + return HTML; + } + + public void setHTML(String hTML) { + HTML = hTML; + } + + public String getJavaScript() { + return JavaScript; + } + + public void setJavaScript(String javaScript) { + JavaScript = javaScript; + } + + public String getPython() { + return Python; + } + + public void setPython(String python) { + Python = python; + } + + public String getModelica() { + return Modelica; + } + + public void setModelica(String modelica) { + Modelica = modelica; + } + + public String getTeX() { + return TeX; + } + + public void setTeX(String teX) { + TeX = teX; + } + + public String getShell() { + return Shell; + } + + public void setShell(String shell) { + Shell = shell; + } + + public String getBatchfile() { + return Batchfile; + } + + public void setBatchfile(String batchfile) { + Batchfile = batchfile; + } + + public String getHCL() { + return HCL; + } + + public void setHCL(String hCL) { + HCL = hCL; + } + + public String getBitBake() { + return BitBake; + } + + public void setBitBake(String bitBake) { + BitBake = bitBake; + } + + public String getC() { + return C; + } + + public void setC(String c) { + C = c; + } + + public String getMatlab() { + return Matlab; + } + + public void setMatlab(String matlab) { + Matlab = matlab; + } + + public String getTXL() { + return TXL; + } + + public void setTXL(String tXL) { + TXL = tXL; + } + + public String getXSLT() { + return XSLT; + } + + public void setXSLT(String xSLT) { + XSLT = xSLT; + } + + public String getPerl() { + return Perl; + } + + public void setPerl(String perl) { + Perl = perl; + } + + public String getRuby() { + return Ruby; + } + + public void setRuby(String ruby) { + Ruby = ruby; + } + + public String getPowerShell() { + return PowerShell; + } + + public void setPowerShell(String powerShell) { + PowerShell = powerShell; + } + + public String getPascal() { + return Pascal; + } + + public void setPascal(String pascal) { + Pascal = pascal; + } + + public String getASP() { + return ASP; + } + + public void setASP(String aSP) { + ASP = aSP; + } + + public String getPLpgSQL() { + return PLpgSQL; + } + + public void setPLpgSQL(String pLpgSQL) { + PLpgSQL = pLpgSQL; + } + + public String getMakefile() { + return Makefile; + } + + public void setMakefile(String makefile) { + Makefile = makefile; + } + + public String getSQLPL() { + return SQLPL; + } + + public void setSQLPL(String sQLPL) { + SQLPL = sQLPL; + } + + public String getPuppet() { + return Puppet; + } + + public void setPuppet(String puppet) { + Puppet = puppet; + } + + public String getGroovy() { + return Groovy; + } + + public void setGroovy(String groovy) { + Groovy = groovy; + } + + public String getM4() { + return M4; + } + + public void setM4(String m4) { + M4 = m4; + } + + public String getRoff() { + return Roff; + } + + public void setRoff(String roff) { + Roff = roff; + } + + public String getCMake() { + return CMake; + } + + public void setCMake(String cMake) { + CMake = cMake; + } + + public String getNSIS() { + return NSIS; + } + + public void setNSIS(String nSIS) { + NSIS = nSIS; + } + + public String getPHP() { + return PHP; + } + + public void setPHP(String pHP) { + PHP = pHP; + } + + public String getGo() { + return Go; + } + + public void setGo(String go) { + Go = go; + } + + public String getSmalltalk() { + return Smalltalk; + } + + public void setSmalltalk(String smalltalk) { + Smalltalk = smalltalk; + } + + public String getSmarty() { + return Smarty; + } + + public void setSmarty(String smarty) { + Smarty = smarty; + } + + public String getCplusplus() { + return Cplusplus; + } + + public void setCplusplus(String cplusplus) { + Cplusplus = cplusplus; + } + + public String getObjectiveC() { + return ObjectiveC; + } + + public void setObjectiveC(String objectiveC) { + ObjectiveC = objectiveC; + } + + public String getCsharp() { + return Csharp; + } + + public void setCsharp(String csharp) { + Csharp = csharp; + } + + public String getVisualBasic() { + return VisualBasic; + } + + public void setVisualBasic(String visualBasic) { + VisualBasic = visualBasic; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/MergeRequest.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/MergeRequest.java new file mode 100644 index 0000000..ae6d573 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/MergeRequest.java @@ -0,0 +1,78 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class MergeRequest { + + private String id, created_at, merged_at,closed_at, state; + private String sha; + private String[] labels; + + + public String getId() { + return id; + } + public void setId(String id) { + this.id = id; + } + public String getCreated_at() { + return created_at; + } + public void setCreated_at(String created_at) { + this.created_at = created_at; + } + public String getMerged_at() { + return merged_at; + } + public void setMerged_at(String merged_at) { + this.merged_at = merged_at; + } + public String getClosed_at() { + return closed_at; + } + public void setClosed_at(String closed_at) { + this.closed_at = closed_at; + } + public String getState() { + return state; + } + public void setState(String state) { + this.state = state; + } + public String[] getLabels() { + return labels; + } + public void setLabels(String[] labels) { + this.labels = labels; + } + public String getSha() { + return sha; + } + public void setSha(String sha) { + this.sha = sha; + } + + public String toString() { + String labels_s = ""; + + for(String label : labels) + labels_s = labels_s + "&" + label; + + return id + "," + sha + "," + labels_s + "," + created_at + "," + + merged_at + "," + closed_at + "," + state; + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Pipeline.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Pipeline.java new file mode 100644 index 0000000..bdd546a --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Pipeline.java @@ -0,0 +1,121 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Pipeline { + + private String id; + + private String ref; + + private String status; + + private String sha; + + private String web_url; + + private String created_at; + + private String updated_at; + + private String started_at; + + private String finished_at; + + public String getId () + { + return id; + } + + public void setId (String id) + { + this.id = id; + } + + public String getRef () + { + return ref; + } + + public void setRef (String ref) + { + this.ref = ref; + } + + public String getStatus () + { + return status; + } + + public void setStatus (String status) + { + this.status = status; + } + + public String getSha () + { + return sha; + } + + public void setSha (String sha) + { + this.sha = sha; + } + + public String getWeb_url () + { + return web_url; + } + + public void setWeb_url (String web_url) + { + this.web_url = web_url; + } + + public String getCreated_at() { + return created_at; + } + + public void setCreated_at(String created_at) { + this.created_at = created_at; + } + + public String getUpdated_at() { + return updated_at; + } + + public void setUpdated_at(String updated_at) { + this.updated_at = updated_at; + } + + public String getStarted_at() { + return started_at; + } + + public void setStarted_at(String started_at) { + this.started_at = started_at; + } + + public String getFinished_at() { + return finished_at; + } + + public void setFinished_at(String finished_at) { + this.finished_at = finished_at; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Project.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Project.java new file mode 100644 index 0000000..e7a5031 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Project.java @@ -0,0 +1,196 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class Project { + + private String id, pathWithNamespace; + private Date createdAt, lastActivityAt; + private int starsCount, forksCount; + private String defaultBranch; + private List languages; + private String language; + + + public Project(String id, String pathWithNamespace, Date createdAt, Date lastActivityAt, int starsCount, + int forksCount) { + super(); + this.id = id; + this.pathWithNamespace = pathWithNamespace; + this.createdAt = createdAt; + this.lastActivityAt = lastActivityAt; + this.starsCount = starsCount; + this.forksCount = forksCount; + this.languages = new ArrayList<>(); + } + + public Project(String pathWithNamespace, int starsCount, String language) { + this.pathWithNamespace = pathWithNamespace; + this.starsCount = starsCount; + this.language= language; + } + + + public Project(String id, String pathWithNamespace, Date createdAt, Date lastActivityAt, int starsCount, + int forksCount, String default_branch) { + super(); + this.id = id; + this.pathWithNamespace = pathWithNamespace; + this.createdAt = createdAt; + this.lastActivityAt = lastActivityAt; + this.starsCount = starsCount; + this.forksCount = forksCount; + this.setDefaultBranch(default_branch); + this.languages = new ArrayList<>(); + } + + public Project(String id, String pathWithNamespace, Date createdAt, Date lastActivityAt, int starsCount, + int forksCount, List languages) { + super(); + this.id = id; + this.pathWithNamespace = pathWithNamespace; + this.createdAt = createdAt; + this.lastActivityAt = lastActivityAt; + this.starsCount = starsCount; + this.forksCount = forksCount; + this.languages = languages; + } + + /** + * empty constructor + */ + public Project() { + this.id = "-4"; + this.pathWithNamespace = "random"; + this.createdAt = new Date(); + this.lastActivityAt = new Date(); + this.starsCount = -3; + this.forksCount = -4; + this.languages = new ArrayList<>(); + } + + public String getId() { + return id; + } + public void setId(String id) { + this.id = id; + } + public String getPathWithNamespace() { + return pathWithNamespace; + } + public void setPathWithNamespace(String pathWithNamespace) { + this.pathWithNamespace = pathWithNamespace; + } + public Date getCreatedAt() { + return createdAt; + } + public void setCreatedAt(Date createdAt) { + this.createdAt = createdAt; + } + public Date getLastActivityAt() { + return lastActivityAt; + } + public void setLastActivityAt(Date lastActivityAt) { + this.lastActivityAt = lastActivityAt; + } + public int getStarsCount() { + return starsCount; + } + public void setStarsCount(int starsCount) { + this.starsCount = starsCount; + } + public int getForksCount() { + return forksCount; + } + public void setForksCount(int forksCount) { + this.forksCount = forksCount; + } + public List getLanguages() { + return languages; + } + public void setLanguages(List languages) { + this.languages = languages; + } + public void addLangugage(Language lang) { + languages.add(lang); + } + + public String getMaxLanguageName() { + if(languages.size() == 0) + return null; + + String maxLanguage = null; + double maxValue = 0; + + for(Language lang: languages) { + String name = lang.getName(); + double percentage = lang.getPercentage(); + + if(percentage >= maxValue) { + maxLanguage = name; + maxValue = percentage; + } + } + + return maxLanguage; + + } + +/* public String toString() { + + String res = id + "," + pathWithNamespace + "," + createdAt + "," + lastActivityAt + "," + starsCount + + "," + forksCount; + + if(languages.size() == 0) + return res; + else { + res = res + "," + languages.get(0).getName() + ","; + + + for(Language l : languages) { + res = res + "&" + l.getName() + ":" + l.getPercentage(); + } + } + + + return res; + }*/ + + public String getDefaultBranch() { + return defaultBranch; + } + + public void setDefaultBranch(String defaultBranch) { + this.defaultBranch = defaultBranch; + } + + + public String getLanguage() { + return language; + } + + + public void setLanguage(String language) { + this.language = language; + } + + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/ProjectItem.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/ProjectItem.java new file mode 100644 index 0000000..96f2f0c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/ProjectItem.java @@ -0,0 +1,241 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class ProjectItem { + + private String avatar_url; + + private String last_activity_at; + + private String ssh_url_to_repo; + + private String web_url; + + private String readme_url; + + private String id; + + private String default_branch; + + private String star_count; + + private String path_with_namespace; + + private String[] tag_list; + + private String description; + + private String name; + + private String path; + + private String created_at; + + private String http_url_to_repo; + + private String name_with_namespace; + + private String forks_count; + + private Object forked_from_project; + + public String getAvatar_url () + { + return avatar_url; + } + + public void setAvatar_url (String avatar_url) + { + this.avatar_url = avatar_url; + } + + public String getLast_activity_at () + { + return last_activity_at; + } + + public void setLast_activity_at (String last_activity_at) + { + this.last_activity_at = last_activity_at; + } + + public String getSsh_url_to_repo () + { + return ssh_url_to_repo; + } + + public void setSsh_url_to_repo (String ssh_url_to_repo) + { + this.ssh_url_to_repo = ssh_url_to_repo; + } + + public String getWeb_url () + { + return web_url; + } + + public void setWeb_url (String web_url) + { + this.web_url = web_url; + } + + public String getReadme_url () + { + return readme_url; + } + + public void setReadme_url (String readme_url) + { + this.readme_url = readme_url; + } + + public String getId () + { + return id; + } + + public void setId (String id) + { + this.id = id; + } + + public String getDefault_branch () + { + return default_branch; + } + + public void setDefault_branch (String default_branch) + { + this.default_branch = default_branch; + } + + public String getStar_count () + { + return star_count; + } + + public void setStar_count (String star_count) + { + this.star_count = star_count; + } + + public String getPath_with_namespace () + { + return path_with_namespace; + } + + public void setPath_with_namespace (String path_with_namespace) + { + this.path_with_namespace = path_with_namespace; + } + + public String[] getTag_list () + { + return tag_list; + } + + public void setTag_list (String[] tag_list) + { + this.tag_list = tag_list; + } + + public String getDescription () + { + return description; + } + + public void setDescription (String description) + { + this.description = description; + } + + public String getName () + { + return name; + } + + public void setName (String name) + { + this.name = name; + } + + public String getPath () + { + return path; + } + + public void setPath (String path) + { + this.path = path; + } + + public String getCreated_at () + { + return created_at; + } + + public void setCreated_at (String created_at) + { + this.created_at = created_at; + } + + public String getHttp_url_to_repo () + { + return http_url_to_repo; + } + + public void setHttp_url_to_repo (String http_url_to_repo) + { + this.http_url_to_repo = http_url_to_repo; + } + + public String getName_with_namespace () + { + return name_with_namespace; + } + + public void setName_with_namespace (String name_with_namespace) + { + this.name_with_namespace = name_with_namespace; + } + + public String getForks_count () + { + return forks_count; + } + + public void setForks_count (String forks_count) + { + this.forks_count = forks_count; + } + + @Override + public String toString() + { + return "ClassPojo [avatar_url = "+avatar_url+", last_activity_at = "+last_activity_at+", ssh_url_to_repo = "+ssh_url_to_repo+", web_url = "+web_url+", readme_url = "+readme_url+", id = "+id+", default_branch = "+default_branch+", star_count = "+star_count+", path_with_namespace = "+path_with_namespace+", tag_list = "+tag_list+", description = "+description+", name = "+name+", path = "+path+", created_at = "+created_at+", http_url_to_repo = "+http_url_to_repo+", name_with_namespace = "+name_with_namespace+", forks_count = "+forks_count+"]"; + } + + public Object getForked_from_project() { + return forked_from_project; + } + + public void setForked_from_project(Object forked_from_project) { + this.forked_from_project = forked_from_project; + } +} + + diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Tag.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Tag.java new file mode 100644 index 0000000..1139cc9 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/Tag.java @@ -0,0 +1,50 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class Tag { + + private Commit commit; + private String name, target, message; + + + public Commit getCommit() { + return commit; + } + public void setCommit(Commit commit) { + this.commit = commit; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getTarget() { + return target; + } + public void setTarget(String target) { + this.target = target; + } + public String getMessage() { + return message; + } + public void setMessage(String message) { + this.message = message; + } + + +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/User.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/User.java new file mode 100644 index 0000000..27ba318 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/User.java @@ -0,0 +1,205 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab.entities; + +public class User { + + private String avatar_url; + + private String location; + + private String linkedin; + + private String web_url; + + private String state; + + private String id; + + private String twitter; + + private String organization; + + private String username; + + private String bio; + + private String name; + + private String created_at; + + private String website_url; + + private String public_email; + + private String skype; + + public String getAvatar_url () + { + return avatar_url; + } + + public void setAvatar_url (String avatar_url) + { + this.avatar_url = avatar_url; + } + + public String getLocation () + { + return location; + } + + public void setLocation (String location) + { + this.location = location; + } + + public String getLinkedin () + { + return linkedin; + } + + public void setLinkedin (String linkedin) + { + this.linkedin = linkedin; + } + + public String getWeb_url () + { + return web_url; + } + + public void setWeb_url (String web_url) + { + this.web_url = web_url; + } + + public String getState () + { + return state; + } + + public void setState (String state) + { + this.state = state; + } + + public String getId () + { + return id; + } + + public void setId (String id) + { + this.id = id; + } + + public String getTwitter () + { + return twitter; + } + + public void setTwitter (String twitter) + { + this.twitter = twitter; + } + + public String getOrganization () + { + return organization; + } + + public void setOrganization (String organization) + { + this.organization = organization; + } + + public String getUsername () + { + return username; + } + + public void setUsername (String username) + { + this.username = username; + } + + public String getBio () + { + return bio; + } + + public void setBio (String bio) + { + this.bio = bio; + } + + public String getName () + { + return name; + } + + public void setName (String name) + { + this.name = name; + } + + public String getCreated_at () + { + return created_at; + } + + public void setCreated_at (String created_at) + { + this.created_at = created_at; + } + + public String getWebsite_url () + { + return website_url; + } + + public void setWebsite_url (String website_url) + { + this.website_url = website_url; + } + + public String getPublic_email () + { + return public_email; + } + + public void setPublic_email (String public_email) + { + this.public_email = public_email; + } + + public String getSkype () + { + return skype; + } + + public void setSkype (String skype) + { + this.skype = skype; + } + + @Override + public String toString() + { + return "ClassPojo [avatar_url = "+avatar_url+", location = "+location+", linkedin = "+linkedin+", web_url = "+web_url+", state = "+state+", id = "+id+", twitter = "+twitter+", organization = "+organization+", username = "+username+", bio = "+bio+", name = "+name+", created_at = "+created_at+", website_url = "+website_url+", public_email = "+public_email+", skype = "+skype+"]"; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/package-info.java b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/package-info.java new file mode 100644 index 0000000..431bd99 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/datamining/gitlab/entities/package-info.java @@ -0,0 +1,8 @@ +/** + * + */ +/** + * + * + */ +package cdlinter.datamining.gitlab.entities; \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/Detector.java b/cd-linter-code/src/main/java/cdlinter/detectors/Detector.java new file mode 100644 index 0000000..b2db4f8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/Detector.java @@ -0,0 +1,21 @@ +package cdlinter.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; + +import java.util.List; + +public abstract class Detector { + + protected LintProject project; + + public Detector(LintProject project) { + this.project = project; + } + + public abstract List lint() throws Exception; + + public static String removeIllegalCharsInID(String id) { + return id.replaceAll("[ <>#%\"{}|^'`;\\[\\]/?:@&=+$,.()\\\\]", "-"); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetector.java new file mode 100644 index 0000000..6dd2116 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetector.java @@ -0,0 +1,105 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.utils.AllowFailureNumberExtractor; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + + +public class GitLabYAMLAllowFailureDetector extends GitLabYAMLDetector{ + + private String category = "Job-Allow-Failure"; + + + public GitLabYAMLAllowFailureDetector(LintProject project) { + super(project); + } + + private Map filterByAllowFailure(Map jobs) { + Map filteredJobs = new HashMap<>(); + + for (String name : jobs.keySet()) { + Job job = jobs.get(name); + String stage = job.getStage(); + String jobName = job.getName(); + if (job.getAllow_failure() && !inBlackList(stage) && + !inBlackList(jobName)) + filteredJobs.put(name, job); + } + + return filteredJobs; + } + + private Boolean inBlackList(String stage) { + List stages = List.of( + "dast", // because in the gitlab template + "sast" + ); + + stage = stage.toLowerCase(); + + for (String blackListedStage : stages) { + if (stage.contains(blackListedStage)) { + return true; + } + } + + return false; + } + + + public List lint() { + List antiPatterns = new ArrayList<>(); + + GitLabYAML gitLabYAML = getGitLabYAML(project); + + AllowFailureNumberExtractor lineNumberExtractor = new AllowFailureNumberExtractor(gitLabYAML); + + Map jobs = gitLabYAML.getJobs(); + + Map filteredJobs = filterByAllowFailure(jobs); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for (String jobName : filteredJobs.keySet()) { + + if(jobName.startsWith(".")) + continue; + + CIAntiPattern antiPattern = new CIAntiPattern(); + + String stage = jobs.get(jobName).getStage(); + String lineNumber = lineNumberExtractor.getLineNumber(jobs.get(jobName)); + + antiPattern.setId(generateID(projectName, jobName)); + antiPattern.setProject(projectName); + antiPattern.setRemoteRepoLink(remoteRepoPath); + antiPattern.setRemoteCfgLink(remoteCfgLink); + antiPattern.setLocalCfgLink(localCfgLink); + antiPattern.setStage(stage); + antiPattern.setCategory(category); + antiPattern.setEntity(jobName); + antiPattern.setMessage("Allows failure of job `"+jobName+"` at stage `"+stage+"`"); + antiPattern.setContext(gitLabYAML.getRaw()); + antiPattern.setLineNumber(lineNumber); + antiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } + + public String generateID(String projectName, String jobName) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + jobName); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDetector.java new file mode 100644 index 0000000..e9d956a --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDetector.java @@ -0,0 +1,61 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.parsers.GitLabYAMLParser; +import cdlinter.detectors.Detector; +import cdlinter.project.entities.LintProject; + +abstract class GitLabYAMLDetector extends Detector { + + GitLabYAMLDetector(LintProject project) { + super(project); + } + + GitLabYAML getGitLabYAML(LintProject project) { + String yamlContent = project.getFileContent(".gitlab-ci.yml"); + GitLabYAMLParser parser = new GitLabYAMLParser(); + GitLabYAML yaml = parser.parse(yamlContent); + + ArrayList include = yaml.getInclude(); + // System.out.println(include.size()); + for(String path: include) { + if(!path.startsWith("/")) + path = "/"+ path; + + System.out.println(path); + String depYamlContent = project.getRemoteFileOnly(path); + // System.out.println(depYamlContent); + GitLabYAMLParser depParser = new GitLabYAMLParser(); + GitLabYAML depYaml = depParser.parse(depYamlContent); + + Map jobs = depYaml.getJobs(); + // System.out.println(jobs.keySet().size()); + List stages = depYaml.getStages(); + Map variables = depYaml.getVariables(); + + + for(String key: jobs.keySet()) { + if(!yaml.getJobs().keySet().contains(key)) { + yaml.addJob(key, jobs.get(key));} + } + + for(String s: stages) { + if(!yaml.getStages().contains(s)) { + yaml.addStage(s);} + } + + for(String key : variables.keySet()) { + if(!yaml.getVariables().keySet().contains(key)) { + yaml.addVariable(key, variables.get(key));} + } + } + + return yaml; + + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibraries.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibraries.java new file mode 100644 index 0000000..3a54110 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibraries.java @@ -0,0 +1,132 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.detectors.gitlabyaml.detectors; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.project.entities.LintProject; + +public class GitLabYAMLDuplicateLibraries extends GitLabYAMLDetector{ + + private String category = "Duplicate-Libraries"; + + public GitLabYAMLDuplicateLibraries(LintProject project) { + super(project); + } + + private List identifyExamples(Map jobs) { + // Map filteredJobs = new HashMap<>(); + + List libraries = new ArrayList<>(); + + for (String name : jobs.keySet()) { + Job job = jobs.get(name); + List before_script = job.getBefore_script(); + List script = job.getScript(); + List after_script = job.getAfter_script(); + + String example1 = identifyLocalDependencies(before_script); + String example2 = identifyLocalDependencies(script); + String example3 = identifyLocalDependencies(after_script); + + if(example1 != null) + libraries.add(example1); + + if(example2 != null) + libraries.add(example2); + + if(example3 != null) + libraries.add(example3); + + } + + return libraries; + } + + @Override + public List lint() throws Exception { + + List antiPatterns = new ArrayList<>(); + GitLabYAML gitLabYAML = getGitLabYAML(project); + Map jobs = gitLabYAML.getJobs(); + List examples = identifyExamples(jobs); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for(String ex: examples) { + CIAntiPattern antiPattern = new CIAntiPattern(); + String stage = "null"; + String lineNumber = "null"; + String jobName = "null"; + + antiPattern.setId(generateID(projectName, jobName)); + antiPattern.setProject(projectName); + antiPattern.setRemoteRepoLink(remoteRepoPath); + antiPattern.setRemoteCfgLink(remoteCfgLink); + antiPattern.setLocalCfgLink(localCfgLink); + antiPattern.setStage(stage); + antiPattern.setCategory(category); + antiPattern.setEntity(jobName); + antiPattern.setMessage(ex); + antiPattern.setContext(gitLabYAML.getRaw()); + antiPattern.setLineNumber(lineNumber); + antiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(antiPattern); + } + + /* + String id; + String remoteRepoLink; + String stage; + String subCategory; + String entity; + String message; + String context; + String lineNumber; + CIAntiPattern antiPattern = new CIAntiPattern(id, remoteRepoLink, + remoteCfgLink, localCfgLink, projectName, stage, category, + subCategory, entity, message, context, + lineNumber, cfgFileName);*/ + + return antiPatterns; + } + + private String identifyLocalDependencies(List script) { + + String goal1 = "install:install-file"; + String goal2 = "deploy:deploy-file"; + + for(String line : script) { + if(line.contains(goal1) || line.contains(goal2)) + return line; + } + return null; + } + + public String generateID(String projectName, String jobName) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + jobName); + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetector.java new file mode 100644 index 0000000..f068150 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetector.java @@ -0,0 +1,122 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.When; +import cdlinter.detectors.gitlabyaml.utils.ManualLineNumberExtractor; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.project.entities.LintProject; + +public class GitLabYAMLManualDetector extends GitLabYAMLDetector { + + private String category = "Manual-Job"; + + public GitLabYAMLManualDetector(LintProject project) { + super(project); + } + + private Map filterByManual(Map jobs) { + Map filteredJobs = new HashMap<>(); + + for (String name : jobs.keySet()) { + Job job = jobs.get(name); + String stage = job.getStage(); + String jobName = job.getName(); + if (job.getWhen() == When.manual && !inBlackList(stage) && + !inBlackList(jobName) && !hasEnvironmentStop(job)) + filteredJobs.put(name, job); + } + + return filteredJobs; + } + + private Boolean hasEnvironmentStop(Job job) { + return job.getEnvironment().getAction().equals("stop"); + } + + private Boolean inBlackList(String stage) { + List stages = List.of( + "staging", + "deploy", + "release", + "publish", + "manual", + "install", + "docker", + "container", + "production", + "image", + "environment", + "install", + "prod", + "canary", + "triage", + "bundle" // previously it was review + ); + + stage = stage.toLowerCase(); + + for (String blackListedStage : stages) { + if (stage.contains(blackListedStage)) { + return true; + } + } + + return false; + } + + public List lint() { + List antiPatterns = new ArrayList<>(); + + GitLabYAML gitLabYAML = getGitLabYAML(project); + + ManualLineNumberExtractor lineNumberExtractor = new ManualLineNumberExtractor(gitLabYAML); + + Map jobs = gitLabYAML.getJobs(); + + Map filteredJobs = filterByManual(jobs); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for (String jobName : filteredJobs.keySet()) { + + if(jobName.startsWith(".")) + continue; + + CIAntiPattern antiPattern = new CIAntiPattern(); + + String stage = jobs.get(jobName).getStage(); + String lineNumber = lineNumberExtractor.getLineNumber(jobs.get(jobName)); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + antiPattern.setId(generateID(projectName, jobName)); + antiPattern.setProject(projectName); + antiPattern.setRemoteRepoLink(remoteRepoPath); + antiPattern.setRemoteCfgLink(remoteCfgLink); + antiPattern.setLocalCfgLink(localCfgLink); + antiPattern.setStage(stage); + antiPattern.setCategory(category); + antiPattern.setEntity(jobName); + antiPattern.setMessage("Manual job `"+jobName+"` at stage `"+stage+"`"); + antiPattern.setContext(gitLabYAML.getRaw()); + antiPattern.setLineNumber(lineNumber); + antiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } + + public String generateID(String projectName, String jobName) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + jobName); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetector.java new file mode 100644 index 0000000..430d2fb --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetector.java @@ -0,0 +1,182 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.detectors.gitlabyaml.entities.Except; +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.entities.Only; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import cdlinter.utils.LineNumberExtractor; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +public class GitLabYAMLOnlyExceptDetector extends GitLabYAMLDetector { + + private String category = "Job-Creation-Policy"; + + public GitLabYAMLOnlyExceptDetector(LintProject project) { + super(project); + } + + public List lint() { + List antiPatterns = new ArrayList<>(); + + GitLabYAML gitLabYAML = getGitLabYAML(project); + + LineNumberExtractor lineNumberExtractor = new LineNumberExtractor(gitLabYAML.getRaw()); + + Map jobs = gitLabYAML.getJobs(); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for (String jobName : jobs.keySet()) { + Job job = jobs.get(jobName); + String lineNumber = lineNumberExtractor.getLineNumber(jobName+":"); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + List jobAntiPatterns = getOnlyExceptAntiPatternsFromJob(job); + for (CIAntiPattern jobAntiPattern : jobAntiPatterns) { + jobAntiPattern.setId(generateID(projectName, jobName, jobAntiPattern.getSubCategory())); + jobAntiPattern.setProject(projectName); + jobAntiPattern.setRemoteRepoLink(remoteRepoPath); + jobAntiPattern.setRemoteCfgLink(remoteCfgLink); + jobAntiPattern.setLocalCfgLink(localCfgLink); + jobAntiPattern.setContext(gitLabYAML.getRaw()); + jobAntiPattern.setLineNumber(lineNumber); + jobAntiPattern.setCfgFileName(cfgFileName); + } + + antiPatterns.addAll(jobAntiPatterns); + + } + + return antiPatterns; + } + + public String generateID(String projectName, String jobName, String subcategory) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + subcategory + "__" + jobName); + } + + private List getOnlyExceptAntiPatternsFromJob(Job job) { + List antiPatterns = new ArrayList<>(); + + String jobName = job.getName(); + String stage = job.getStage(); + + Only only = job.getOnly(); + if (!only.getRefs().hasBranches() && !only.getRefs().hasPushes()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("only-branches"); + antiPattern.setMessage( + "No creation of job `"+jobName + +"` for branches at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (!only.getRefs().hasTags() && !only.getRefs().hasPushes()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("only-tags"); + antiPattern.setMessage( + "No creation of job `"+jobName + +"` for tags at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (only.getRefs().getNames().size() > 0){ + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("only-custom"); + antiPattern.setMessage( + "Creation of job `"+jobName + +"` only for branches/tags: "+only.getRefs().getNames().toString() + +" at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (only.getChanges().size() > 0) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("only-changes"); + antiPattern.setMessage( + "Creation of job `"+jobName + +"`only for changes: "+only.getChanges().toString() + +" at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + Except except = job.getExcept(); + if (except.getRefs().hasBranches() && !only.getRefs().hasPushes()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("except-branches"); + antiPattern.setMessage( + "No creation of job `"+jobName+"` for branches"+" at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (except.getRefs().hasTags() && !only.getRefs().hasPushes()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("except-tags"); + antiPattern.setMessage( + "No creation of job `"+jobName+"` for tags at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (except.getRefs().getNames().size() > 0){ + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("except-custom"); + antiPattern.setMessage( + "No creation of job `"+jobName + +"` for branches/tags: "+except.getRefs().getNames().toString() + +" at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + if (except.getChanges().size() > 0) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setStage(stage); + antiPattern.setEntity(jobName); + antiPattern.setCategory(category); + antiPattern.setSubCategory("except-changes"); + antiPattern.setMessage( + "No creation of job `"+jobName + +"` for changes: "+except.getChanges().toString() + +" at stage `"+stage+"`" + ); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetector.java new file mode 100644 index 0000000..a4400f2 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetector.java @@ -0,0 +1,86 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.utils.RetryLineNumberExtractor; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class GitLabYAMLRetryDetector extends GitLabYAMLDetector { + + private String category = "Job-Retry"; + + public GitLabYAMLRetryDetector(LintProject project) { + super(project); + } + + private Map filterByRetry(Map jobs) { + Map filteredJobs = new HashMap<>(); + + for (String name : jobs.keySet()) { + Job job = jobs.get(name); + if (job.getRetry().getMax() > 0) + filteredJobs.put(name, job); + } + + return filteredJobs; + } + + public List lint() { + List antiPatterns = new ArrayList<>(); + + GitLabYAML gitLabYAML = getGitLabYAML(project); + + RetryLineNumberExtractor lineNumberExtractor = new RetryLineNumberExtractor(gitLabYAML); + + Map jobs = gitLabYAML.getJobs(); + + Map filteredJobs = filterByRetry(jobs); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for (String jobName : filteredJobs.keySet()) { + + if(jobName.startsWith(".")) + continue; + + CIAntiPattern antiPattern = new CIAntiPattern(); + + Job job = jobs.get(jobName); + String stage = job.getStage(); + String subcategory = job.getRetry().getWhen().toString(); + String lineNumber = lineNumberExtractor.getLineNumber(job); + String retries = Integer.toString(job.getRetry().getMax()); + + antiPattern.setId(generateID(projectName, jobName)); + antiPattern.setProject(projectName); + antiPattern.setRemoteRepoLink(remoteRepoPath); + antiPattern.setRemoteCfgLink(remoteCfgLink); + antiPattern.setLocalCfgLink(localCfgLink); + antiPattern.setStage(stage); + antiPattern.setCategory(category); + antiPattern.setSubCategory(subcategory); + antiPattern.setEntity(jobName); + antiPattern.setMessage(retries); + antiPattern.setContext(gitLabYAML.getRaw()); + antiPattern.setLineNumber(lineNumber); + antiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } + + public String generateID(String projectName, String jobName) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + jobName); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetector.java new file mode 100644 index 0000000..e4768f5 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetector.java @@ -0,0 +1,206 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import cdlinter.utils.LineNumberExtractor; + +import java.io.File; +import java.io.FileNotFoundException; +import java.util.*; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class GitLabYAMLVulnerabilityDetector extends GitLabYAMLDetector { + + private String category = "Vulnerability"; + + private List keywords = getKeywords(); + + public GitLabYAMLVulnerabilityDetector(LintProject project) { + super(project); + } + + public List lint() { + List antiPatterns = new ArrayList<>(); + + GitLabYAML gitLabYAML = getGitLabYAML(project); + + LineNumberExtractor lineNumberExtractor = new LineNumberExtractor(gitLabYAML.getRaw()); + + Map variables = gitLabYAML.getVariables(); + + Map jobs = gitLabYAML.getJobs(); + + String cfgFileName = ".gitlab-ci.yml"; + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + for (String jobName : jobs.keySet()) { + + if(jobName.startsWith(".")) + continue; + + + Job job = jobs.get(jobName); + String stage = job.getStage(); + List script = job.getScript(); + + for (String statement : script) { + + for (String keyword : getSecurityKeywords(statement, variables)) { + CIAntiPattern antiPattern = new CIAntiPattern(); + + String lineNumber = lineNumberExtractor.getLineNumber(keyword); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + antiPattern.setId(generateID(projectName, keyword)); + antiPattern.setProject(projectName); + antiPattern.setRemoteRepoLink(remoteRepoPath); + antiPattern.setRemoteCfgLink(remoteCfgLink); + antiPattern.setLocalCfgLink(localCfgLink); + antiPattern.setStage(stage); + antiPattern.setCategory(category); + antiPattern.setEntity(jobName); + antiPattern.setMessage(keyword); + antiPattern.setContext(gitLabYAML.getRaw()); + antiPattern.setLineNumber(lineNumber); + antiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(antiPattern); + } + } + } + + return antiPatterns; + } + + /** + * This method reads the special keywords that need to be included in the matched regexs + * @return + */ + private List getKeywords() { + List keywords = new ArrayList<>(); + + String path = "src/main/resources/security-keywords.txt"; + File file = new File(path); + + Scanner scanner; + + try { + scanner = new Scanner(file); + } + catch (FileNotFoundException e) { + System.out.println(path+" not found"); + return null; + } + + while (scanner.hasNextLine()){ + String keyword = scanner.nextLine().strip(); + if (!keyword.equals("")) { + String regex = "(?i:( |\\S+[-_])"+keyword+"([-_]\\w+)?=(\\S+))"; + Pattern pattern = Pattern.compile(regex); + keywords.add(pattern); + } + } + + return keywords; + } + + /** + * This method has the goal of capturing vulnerabilities in the config file (those are displayed in the generated issues) + * @param statement + * @param variables + * @return + */ + private Set getSecurityKeywords(String statement, Map variables) { + Set securityKeywords = new HashSet<>(); + + for (Pattern rgx : keywords) { + + Matcher matcher = rgx.matcher(statement); + + if (matcher.find()) { + + String expression = matcher.group(); + + + + if (inBlackList(expression)) { + continue; + } + + if (isFileOption(expression)) { + continue; + } + + String keyword = getKeyWord(matcher); + + + if (hasFileExtension(keyword)) { + continue; + } + + // check for the definition of the keyword in the variables' section of the file + if(keyword.startsWith("$")) { // strip $ + String variable = keyword.substring(1); + + if (variables.containsKey(variable)) { + securityKeywords.add(keyword); + }} + else { + securityKeywords.add(expression); + } + } + } + + return securityKeywords; + } + + private String getKeyWord(Matcher matcher) { + String keyword; + + if (matcher.groupCount() == 2) { + keyword = matcher.group(2); + } + else { + keyword = matcher.group(3); + } + + // strip whitespaces + keyword = keyword.strip(); + + // strip quotes + if (keyword.startsWith("\"")) { + keyword = keyword.substring(1, keyword.length()-1); + } + return keyword; + } + + + private Boolean inBlackList(String expression) { + expression = expression.toLowerCase(); + + if (expression.contains("stricthostkeychecking") || expression.contains("gitlab-ci-token")) { + return true; + } + + return false; + } + + private Boolean isFileOption(String expression) { + expression = expression.toLowerCase(); + + return expression.contains("file"); + } + + private Boolean hasFileExtension(String keyword) { + return keyword.matches(".*\\.\\w{1,4}"); + } + + public String generateID(String projectName, String keyword) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + keyword); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Environment.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Environment.java new file mode 100644 index 0000000..69433e0 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Environment.java @@ -0,0 +1,41 @@ +package cdlinter.detectors.gitlabyaml.entities; + +public class Environment { + + private String name = ""; + private String url = ""; + private String on_stop = ""; + private String action = ""; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getOn_stop() { + return on_stop; + } + + public void setOn_stop(String on_stop) { + this.on_stop = on_stop; + } + + public String getAction() { + return action; + } + + public void setAction(String action) { + this.action = action; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Except.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Except.java new file mode 100644 index 0000000..7c9f82d --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Except.java @@ -0,0 +1,44 @@ +package cdlinter.detectors.gitlabyaml.entities; + +import java.util.ArrayList; +import java.util.List; + +public class Except { + private Refs refs = new Refs(); + private Boolean kubernetes = false; + private List variables = new ArrayList<>(); + private List changes = new ArrayList<>(); + + public Except(){ + refs.setBranches(false); + refs.setTags(false); + } + + public Refs getRefs() { + return refs; + } + + public Boolean getKubernetes() { + return kubernetes; + } + + public void setKubernetes(Boolean kubernetes) { + this.kubernetes = kubernetes; + } + + public List getVariables() { + return variables; + } + + public void addVariable(String variable){ + variables.add(variable); + } + + public List getChanges() { + return changes; + } + + public void addChange(String change){ + changes.add(change); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/GitLabYAML.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/GitLabYAML.java new file mode 100644 index 0000000..fdddbc0 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/GitLabYAML.java @@ -0,0 +1,79 @@ +package cdlinter.detectors.gitlabyaml.entities; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class GitLabYAML { + + private String raw; + + public String getRaw() { + return raw; + } + + public void setRaw(String raw) { + this.raw = raw; + } + + private Map variables = new HashMap<>(); + + public Map getVariables() { + return variables; + } + + public void setVariables(Map variables) { + this.variables = variables; + } + + private ArrayList include = new ArrayList<>(); + + public ArrayList getInclude() { + return include; + } + + public void setInclude(ArrayList include) { + this.include = include; + } + + List stages = new ArrayList<>(); + + public List getStages() { + return stages; + } + + public void setStages(List stages) { + this.stages = stages; + } + + private Map jobs = new HashMap<>(); + + public Map getJobs() { + return jobs; + } + + public void addJob(String name, Job job) { + jobs.put(name, job); + } + + public Job getJob(String name) { + return jobs.get(name); + } + + public void addVariable(String key, String value) { + variables.put(key, value); + } + + public void addStage(String s) { + boolean found = false; + + for(String stage: stages) { + if(stage.equalsIgnoreCase(s)) + found = true; + } + + if(!found) + stages.add(s); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Job.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Job.java new file mode 100644 index 0000000..cb0f2eb --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Job.java @@ -0,0 +1,262 @@ +package cdlinter.detectors.gitlabyaml.entities; + +import com.fasterxml.jackson.annotation.JsonSetter; +import com.fasterxml.jackson.databind.JsonNode; + +import java.util.ArrayList; +import java.util.List; + +public class Job { + + public static final String TEST= "test"; + public static final String BUILD= "build"; + public static final String DEPLOY= "deploy"; + + public static final String DEFAULT_STAGE= TEST; + + private String name; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + // https://docs.gitlab.com/ee/ci/yaml/#allow_failure + private Boolean allow_failure = false; + + public Boolean getAllow_failure() { + return allow_failure; + } + + public void setAllow_failure(Boolean allow_failure) { + this.allow_failure = allow_failure; + } + + // https://docs.gitlab.com/ee/ci/yaml/#retry + private Retry retry = new Retry(); + + @JsonSetter("retry") + public void setRetryInternal(JsonNode retryInternal) { + if (retryInternal != null) { + if (retryInternal.isInt()) { + retry.setMax(retryInternal.asInt()); + } + else if (retryInternal.isObject()) { + if (retryInternal.has("max")) { + int max = retryInternal.get("max").asInt(); + retry.setMax(max); + } + + if (retryInternal.has("when")) { + String when = retryInternal.get("when").asText(); + retry.setWhen(when); + } + } + } + } + + public Retry getRetry() { + return retry; + } + + public List getScript() { + return script; + } + + public void setScript(List script) { + this.script = script; + } + + private List script = new ArrayList<>(); + + // overwrites the globally defined before_script and after_script + // https://docs.gitlab.com/ee/ci/yaml/#before_script-and-after_script + private List before_script = new ArrayList<>(); + private List after_script = new ArrayList<>(); + + public List getBefore_script() { + return before_script; + } + + public void setBefore_script(List before_script) { + this.before_script = before_script; + } + + public List getAfter_script() { + return after_script; + } + + public void setAfter_script(List after_script) { + this.after_script = after_script; + } + + private String stage = DEFAULT_STAGE; + + public String getStage() { + return stage; + } + + public void setStage(String stage) { + this.stage = stage; + } + + // https://docs.gitlab.com/ee/ci/yaml/#when + private When when = When.on_success; + + public When getWhen() { + return when; + } + + public void setWhen(String when) { + this.when = When.valueOf(when); + } + + private Only only = new Only(); + + @JsonSetter("only") + public void setOnlyInternal(JsonNode onlyInternal) { + if (onlyInternal != null) { + // simple structure + // https://docs.gitlab.com/ee/ci/yaml/README.html#onlyexcept-basic + if (onlyInternal.isArray()) { + int i; + for (i=0; i image = new HashMap<>(); + // keys: name, entrypoint, command, alias + // https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#available-settings-for-services + private HashMap services; + // https://docs.gitlab.com/ee/ci/yaml/#tags + private List tags = new ArrayList<>(); + // keys: name, url + // https://docs.gitlab.com/ee/ci/environments.html + private HashMap environment = new HashMap<>(); + // names of jobs from which the artifacts are downloaded + // https://docs.gitlab.com/ee/ci/yaml/#dependencies + private List dependencies = new ArrayList<>(); + private String coverage; + private String cache; + private String artifacts; + private int parallel; + private String trigger; + private String include; + private String _extends; + private String pages; + private String variables;*/ + +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Only.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Only.java new file mode 100644 index 0000000..b3d8a16 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Only.java @@ -0,0 +1,39 @@ +package cdlinter.detectors.gitlabyaml.entities; + +import java.util.ArrayList; +import java.util.List; + +public class Only { + private Refs refs = new Refs(); + private Boolean kubernetes = false; + private List variables = new ArrayList<>(); + private List changes = new ArrayList<>(); + + public Refs getRefs() { + return refs; + } + + public Boolean getKubernetes() { + return kubernetes; + } + + public void setKubernetes(Boolean kubernetes) { + this.kubernetes = kubernetes; + } + + public List getVariables() { + return variables; + } + + public void addVariable(String variable){ + variables.add(variable); + } + + public List getChanges() { + return changes; + } + + public void addChange(String change){ + changes.add(change); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Refs.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Refs.java new file mode 100644 index 0000000..ffc84db --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Refs.java @@ -0,0 +1,179 @@ +package cdlinter.detectors.gitlabyaml.entities; + +import java.util.ArrayList; +import java.util.List; +import java.util.Set; + +public class Refs { + // user-defined names of branches and tags + private List names = new ArrayList<>(); + + // special keywords + private Boolean branches = true; + private Boolean tags = true; + private Boolean api = false; + private Boolean external = false; + private Boolean pipelines = false; + private Boolean pushes = false; + private Boolean schedules = false; + private Boolean triggers = false; + private Boolean web = false; + private Boolean merge_requests = false; + private Boolean chats = false; + + // if no keywords are set, then branches and tags are true + // the first time a keyword is set, branches and tags are set to false + private Boolean reset = false; + + private Set keywords = Set.of( + "branches", + "tags", + "api", + "external", + "pipelines", + "pushes", + "schedules", + "triggers", + "web", + "merge_requests", + "chats" + ); + + public void addRef(String ref){ + if (!reset && keywords.contains(ref)) { + reset = true; + branches = false; + tags = false; + } + + switch (ref){ + case "branches": + branches = true; + break; + case "tags": + tags = true; + break; + case "api": + api = true; + break; + case "external": + external = true; + break; + case "pipelines": + pipelines = true; + break; + case "pushes": + pushes = true; + break; + case "schedules": + schedules = true; + break; + case "triggers": + triggers = true; + break; + case "web": + web = true; + break; + case "merge_requests": + merge_requests = true; + break; + case "chats": + chats = true; + break; + default: + names.add(ref); + } + } + + public List getNames() { + return names; + } + + public Boolean hasBranches() { + return branches; + } + + public Boolean hasTags() { + return tags; + } + + public Boolean hasAPI() { + return api; + } + + public Boolean hasExternal() { + return external; + } + + public Boolean hasPipelines() { + return pipelines; + } + + public Boolean hasPushes() { + return pushes; + } + + public Boolean hasSchedules() { + return schedules; + } + + public Boolean hasTriggers() { + return triggers; + } + + public Boolean hasWeb() { + return web; + } + + public Boolean hasMergeRequests() { + return merge_requests; + } + + public Boolean hasChats() { + return chats; + } + + public void setBranches(Boolean branches) { + this.branches = branches; + } + + public void setTags(Boolean tags) { + this.tags = tags; + } + + public void setApi(Boolean api) { + this.api = api; + } + + public void setExternal(Boolean external) { + this.external = external; + } + + public void setPipelines(Boolean pipelines) { + this.pipelines = pipelines; + } + + public void setPushes(Boolean pushes) { + this.pushes = pushes; + } + + public void setSchedules(Boolean schedules) { + this.schedules = schedules; + } + + public void setTriggers(Boolean triggers) { + this.triggers = triggers; + } + + public void setWeb(Boolean web) { + this.web = web; + } + + public void setMerge_requests(Boolean merge_requests) { + this.merge_requests = merge_requests; + } + + public void setChats(Boolean chats) { + this.chats = chats; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Retry.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Retry.java new file mode 100644 index 0000000..e9c2d82 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/Retry.java @@ -0,0 +1,27 @@ +package cdlinter.detectors.gitlabyaml.entities; + +public class Retry { + + private int max = 0; + private RetryWhen when = RetryWhen.always; + + public int getMax() { + return max; + } + + public void setMax(int max) { + this.max = max; + } + + public RetryWhen getWhen() { + return when; + } + + public void setWhen(RetryWhen when) { + this.when = when; + } + + public void setWhen(String when) { + this.when = RetryWhen.valueOf(when); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/RetryWhen.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/RetryWhen.java new file mode 100644 index 0000000..e7b8ccc --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/RetryWhen.java @@ -0,0 +1,14 @@ +package cdlinter.detectors.gitlabyaml.entities; + +public enum RetryWhen +{ + always, + unknown_failure, + script_failure, + api_failure, + stuck_or_timeout_failure, + runner_system_failure, + missing_dependency_failure, + runner_unsupported + ; +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/When.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/When.java new file mode 100644 index 0000000..8c1eb16 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/entities/When.java @@ -0,0 +1,11 @@ +package cdlinter.detectors.gitlabyaml.entities; + +public enum When +{ + always, + on_success, + on_failure, + manual, + delayed + ; +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParser.java new file mode 100644 index 0000000..ffd1184 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParser.java @@ -0,0 +1,113 @@ +package cdlinter.detectors.gitlabyaml.parsers; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.yaml.snakeyaml.Yaml; + +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Set; + +public class GitLabYAMLParser { + + private GitLabYAML gitLabYAML; + + public static final String STAGES = "stages"; + public static final String INCLUDE = "include"; + + private Set nonJobs = Set.of( + "image", + "services", + "stages", + "types", + "before_script", + "after_script", + "variables", + "cache", + "include" + ); + + private Boolean isJob(String job) { + return !(nonJobs.contains(job)); + } + + public GitLabYAML parse(String content) { + + gitLabYAML = new GitLabYAML(); + + gitLabYAML.setRaw(content); + + if (!content.equals("")) { + + Yaml yaml = new Yaml(); + + LinkedHashMap pipeline = (LinkedHashMap) yaml.load(content); + + for (String jobName : pipeline.keySet()) { + + if (jobName.equals("variables")) { + LinkedHashMap variables = (LinkedHashMap) pipeline.get(jobName); + gitLabYAML.setVariables(variables); + } + + if(jobName.equals(STAGES)) { + List stages = (ArrayList) pipeline.get(STAGES); + gitLabYAML.setStages(stages); + } + + if(jobName.equals(INCLUDE)) { + ArrayList includes = (ArrayList) pipeline.get(INCLUDE); + + ArrayList include_deps = new ArrayList(); + + for(Object in: includes) { + if(in instanceof String) { + include_deps.add((String)in); + System.out.println("local found"); + } + else { + LinkedHashMap locations = (LinkedHashMap)in; + for(String key : locations.keySet()) { + if(key.equals("local")) { + String location = locations.get(key); + include_deps.add(location); + System.out.println("local found"); + } + } + + } + } + gitLabYAML.setInclude(include_deps); + } + + else if (isJob(jobName)) { + + Object val = pipeline.get(jobName); + + ObjectMapper oMapper = new ObjectMapper(); + oMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + oMapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true); + + Job job; + + try { + job = oMapper.convertValue(val, Job.class); + } + catch (IllegalArgumentException e) { + System.out.println("Job "+jobName+" cannot be parsed"); + continue; + } + + job.setName(jobName); + + gitLabYAML.addJob(jobName, job); + } + } + } + + return gitLabYAML; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/AllowFailureNumberExtractor.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/AllowFailureNumberExtractor.java new file mode 100644 index 0000000..ea892ee --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/AllowFailureNumberExtractor.java @@ -0,0 +1,21 @@ +package cdlinter.detectors.gitlabyaml.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; + +public class AllowFailureNumberExtractor extends GitLabYAMLLineNumberExtractor { + + public AllowFailureNumberExtractor(GitLabYAML gitLabYAML) { + super(gitLabYAML); + } + + @Override + public Boolean categoryIsNotDefault(Job defJob) { + return defJob.getAllow_failure(); + } + + @Override + public Boolean jobSameAsDefJob(Job job, Job defJob) { + return job.getAllow_failure() == defJob.getAllow_failure(); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/GitLabYAMLLineNumberExtractor.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/GitLabYAMLLineNumberExtractor.java new file mode 100644 index 0000000..d429393 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/GitLabYAMLLineNumberExtractor.java @@ -0,0 +1,43 @@ +package cdlinter.detectors.gitlabyaml.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.utils.DefinitionPointer; +import cdlinter.utils.LineNumberExtractor; + +import java.util.List; +import java.util.Map; + +public abstract class GitLabYAMLLineNumberExtractor { + + protected GitLabYAML gitLabYAML; + protected LineNumberExtractor lineNumberExtractor; + protected Map> pointers; + + public GitLabYAMLLineNumberExtractor(GitLabYAML gitLabYAML) { + this.gitLabYAML = gitLabYAML; + this.lineNumberExtractor = new LineNumberExtractor(gitLabYAML.getRaw()); + DefinitionPointer definitionPointer = new DefinitionPointer(gitLabYAML); + this.pointers = definitionPointer.getPointers(); + } + + public abstract Boolean categoryIsNotDefault(Job defJob); + public abstract Boolean jobSameAsDefJob(Job job, Job defJob); + + public String getLineNumber(Job job) { + String jobName = job.getName(); + if (pointers.containsKey(jobName)) { + for (String def : pointers.get(jobName)) { + Job defJob = gitLabYAML.getJob(def); + if (categoryIsNotDefault(defJob)) { + if (jobSameAsDefJob(job, defJob)) { + return lineNumberExtractor.getLineNumber(defJob.getName()+":"); + } + } + } + } + + return lineNumberExtractor.getLineNumber(jobName+":"); + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/ManualLineNumberExtractor.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/ManualLineNumberExtractor.java new file mode 100644 index 0000000..a2dce0c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/ManualLineNumberExtractor.java @@ -0,0 +1,22 @@ +package cdlinter.detectors.gitlabyaml.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.entities.When; + +public class ManualLineNumberExtractor extends GitLabYAMLLineNumberExtractor { + + public ManualLineNumberExtractor(GitLabYAML gitLabYAML) { + super(gitLabYAML); + } + + @Override + public Boolean categoryIsNotDefault(Job defJob) { + return defJob.getWhen() == When.manual; + } + + @Override + public Boolean jobSameAsDefJob(Job job, Job defJob) { + return job.getWhen() == defJob.getWhen(); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/RetryLineNumberExtractor.java b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/RetryLineNumberExtractor.java new file mode 100644 index 0000000..cb60a43 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/gitlabyaml/utils/RetryLineNumberExtractor.java @@ -0,0 +1,21 @@ +package cdlinter.detectors.gitlabyaml.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; + +public class RetryLineNumberExtractor extends GitLabYAMLLineNumberExtractor { + + public RetryLineNumberExtractor(GitLabYAML gitLabYAML) { + super(gitLabYAML); + } + + @Override + public Boolean categoryIsNotDefault(Job defJob) { + return defJob.getRetry().getMax() != 0; + } + + @Override + public Boolean jobSameAsDefJob(Job job, Job defJob) { + return job.getRetry().getMax() == defJob.getRetry().getMax(); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POM.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POM.java new file mode 100644 index 0000000..9015416 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POM.java @@ -0,0 +1,151 @@ +package cdlinter.detectors.maven.pom; + +import cdlinter.detectors.maven.versioning.entities.Dependency; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Objects; + +public class POM { + + private String raw; + private String groupId; + private String artifactId; + private String version; + private String path; + private POM parent; + + private HashMap properties = new HashMap<>(); + + private ArrayList dependencies = new ArrayList<>(); + + private ArrayList modules = new ArrayList<>(); + + public String getRaw() { + return raw; + } + + public void setRaw(String raw) { + this.raw = raw; + } + + public void addProperty(String name, String value) { + properties.put(name, value); + } + + public HashMap getProperties() { + return properties; + } + + public String getProperty(String name) { + return properties.get(name); + } + + public void addDependency(Dependency dep) { + dependencies.add(dep); + } + + public ArrayList getDependencies() { + + ArrayList deps = new ArrayList<>(); + + for (Dependency dep : dependencies) { + // resolve version if missing + if (dep.getVersionSpecifier().getRaw().equals("")) { + if (hasParent()) { + POM parentPOM = getParent(); + for (Dependency parentDep : parentPOM.getDependencies()) { + if (dep.getName().equals(parentDep.getName())) { + dep.setVersionSpecifier(parentDep.getVersionSpecifier()); + } + } + } + + deps.add(dep); + } + else + deps.add(dep); + } + + return deps; + } + + public void addModule(String module) { + modules.add(module); + } + + public ArrayList getModules() { + return modules; + } + + public void setGroupId(String groupId) { + this.groupId = groupId; + } + + public void setArtifactId(String artifactId) { + this.artifactId = artifactId; + } + + public void setVersion(String version) { + this.version = version; + } + + public String getGroupId() { + return groupId; + } + + public String getArtifactId() { + return artifactId; + } + + public String getVersion() { + return version; + } + + public POM getParent() { + return parent; + } + + public void setParent(POM parent) { + this.parent = parent; + } + + public Boolean hasParent() { + return parent != null + && parent.getGroupId() != null + && parent.getArtifactId() != null + && parent.getVersion() != null; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } + + @Override + public String toString() { + return "POM{" + + "groupId='" + groupId + '\'' + + ", artifactId='" + artifactId + '\'' + + ", version='" + version + '\'' + + '}'; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + POM pom = (POM) o; + return Objects.equals(groupId, pom.groupId) && + Objects.equals(artifactId, pom.artifactId) && + Objects.equals(version, pom.version); + } + + @Override + public int hashCode() { + return Objects.hash(groupId, artifactId, version); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POMParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POMParser.java new file mode 100644 index 0000000..8a45565 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/pom/POMParser.java @@ -0,0 +1,195 @@ +package cdlinter.detectors.maven.pom; + +import cdlinter.detectors.maven.versioning.entities.Dependency; +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; +import cdlinter.detectors.maven.versioning.parsers.VersionSpecifierParser; +import org.w3c.dom.Document; +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; +import org.xml.sax.InputSource; + +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.xpath.XPath; +import javax.xml.xpath.XPathConstants; +import javax.xml.xpath.XPathExpression; +import javax.xml.xpath.XPathFactory; +import java.io.StringReader; +import java.util.ArrayList; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + + +public class POMParser { + + private POM pom; + private Document doc; + private XPath xpath; + + /** + * Parse the content of a pom.xml file. + * @param content The content of a pom.xml file. + * @return The POM instance. + */ + public POM parse(String content) throws Exception { + pom = new POM(); + pom.setRaw(content); + + if (!content.equals("")) { + doc = getDocument(content); + XPathFactory xPathfactory = XPathFactory.newInstance(); + xpath = xPathfactory.newXPath(); + addProjectAttributes(); + addParentPOM(); + addProperties(); + addModules(); + addDependencies(); + } + + return pom; + } + + private Document getDocument(String content) throws Exception{ + DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); + DocumentBuilder builder = factory.newDocumentBuilder(); + InputSource inputSource = new InputSource(new StringReader(content)); + return builder.parse(inputSource); + } + + private String replaceProperties(String string) throws Exception { + String patternString = "(.*?)\\$\\{(.+?)}([^$]*)"; + Pattern pattern = Pattern.compile(patternString); + Matcher matcher = pattern.matcher(string); + + String replaced = ""; + + while(matcher.find()) { + String prefix = matcher.group(1); + String propertyName = matcher.group(2); + String propertyValue = getProperty(propertyName); + String suffix = matcher.group(3); + replaced = replaced + prefix + propertyValue + suffix; + } + + if (!replaced.equals("")) { + return replaced; + } + + return string; + } + + private String getProperty(String name) throws Exception { + String value; + + // A dot (.) notated path in the POM + String path1 = "/" + name.replace('.', '/'); + String path1Value = getValue(path1); + + // Set within a element in the POM + String path2 = "/project/properties/" + name; + String path2Value = getValue(path2); + + if (!path1Value.equals("")) { + value = path1Value; + } + else { + value = path2Value; + } + + return value; + } + + private void addProjectAttributes() throws Exception { + String groupId = getValue("/project/groupId"); + pom.setGroupId(groupId); + String artifactId = getValue("/project/artifactId"); + pom.setArtifactId(artifactId); + String version = getValue("/project/version"); + pom.setVersion(version); + } + + private void addParentPOM() throws Exception { + POM parentPOM = new POM(); + String groupId = getValue("/project/parent/groupId"); + parentPOM.setGroupId(groupId); + String artifactId = getValue("/project/parent/artifactId"); + parentPOM.setArtifactId(artifactId); + String version = getValue("/project/parent/version"); + parentPOM.setVersion(version); + pom.setParent(parentPOM); + } + + private void addModules() throws Exception { + for (Node node : getNodes("/project/modules/module")) { + String value = node.getTextContent(); + pom.addModule(value); + } + } + + private void addProperties() throws Exception{ + for (Node node : getNodes("/project/properties/*")) { + String name = node.getNodeName(); + String value = node.getTextContent(); + pom.addProperty(name, value); + } + } + + private void addDependencies() throws Exception{ + for (Node node : getNodes( + "/project/dependencies/dependency|/project/dependencyManagement/dependencies/dependency")) { + NodeList childNodes = node.getChildNodes(); + + String groupID = ""; + String artificatID = ""; + String version = ""; + + for (int i=0; i < childNodes.getLength(); i++) { + Node childNode = childNodes.item(i); + if (Node.ELEMENT_NODE == childNode.getNodeType()) { + + String tag = childNode.getNodeName(); + + if (tag.equals("groupId")) { + groupID = childNode.getTextContent().strip(); + groupID = replaceProperties(groupID); + } else if (tag.equals("artifactId")) { + artificatID = childNode.getTextContent().strip(); + } else if (tag.equals("version")) { + version = childNode.getTextContent().strip(); + version = replaceProperties(version); + } + } + } + + String name = groupID + '/' + artificatID; + + VersionSpecifier versionSpecifier = new VersionSpecifierParser().parse(version); + + Dependency dependency = new Dependency(name, versionSpecifier); + dependency.setGroupID(groupID); + dependency.setArtifactID(artificatID); + + pom.addDependency(dependency); + } + } + + private ArrayList getNodes(String name) throws Exception { + XPathExpression expr = xpath.compile(name); + NodeList nodes = (NodeList) expr.evaluate(doc, XPathConstants.NODESET); + ArrayList result = new ArrayList<>(); + + for (int i=0; i < nodes.getLength(); i++) { + Node childNode = nodes.item(i); + if (Node.ELEMENT_NODE == childNode.getNodeType()) { + result.add(childNode); + } + } + + return result; + } + + private String getValue(String name) throws Exception { + XPathExpression expr = xpath.compile(name); + return expr.evaluate(doc); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetector.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetector.java new file mode 100644 index 0000000..a6b2fc2 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetector.java @@ -0,0 +1,189 @@ +package cdlinter.detectors.maven.versioning; + +import cdlinter.detectors.maven.pom.POM; +import cdlinter.detectors.maven.pom.POMParser; +import cdlinter.detectors.Detector; +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import cdlinter.detectors.maven.versioning.analyzers.VersionSpecifierAnalyzer; +import cdlinter.detectors.maven.versioning.entities.Dependency; +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; +import cdlinter.utils.LineNumberExtractor; + + +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class MavenVersionAntiPatternDetector extends Detector { + + private String category = "Versioning"; + + public MavenVersionAntiPatternDetector(LintProject project) { + super(project); + } + + private String getHashKey(String groupId, String artifactId, String version) { + return groupId+":"+artifactId+":"+version; + } + + private String getHashKey(POM pom) { + return getHashKey(pom.getGroupId(), pom.getArtifactId(), pom.getVersion()); + } + + public Map getPOMs(LintProject project) throws Exception { + Map poms = new HashMap<>(); + collectPOMs(null, project, Paths.get(""), poms); + return poms; + } + + private void collectPOMs(POM parent, LintProject project, Path path, Map poms) throws Exception{ + String pomPath = Paths.get(path.toString(), "pom.xml").toString(); + String pomContent = project.getFileContent(pomPath); + POMParser pomParser = new POMParser(); + POM pom = pomParser.parse(pomContent); + pom.setPath(pomPath); + // inherit group ID from parent + if (pom.getGroupId().equals("")) { + pom.setGroupId(parent.getGroupId()); + } + String key = getHashKey(pom); + poms.put(key, pom); + + ArrayList modules = pom.getModules(); + for (String module : modules) { + Path modulePath = Paths.get(path.toString(), module); + collectPOMs(pom, project, modulePath, poms); + } + } + + private void connectPOMs(Map poms) { + for (String pomKey : poms.keySet()) { + POM pom = poms.get(pomKey); + if (pom.hasParent()) { + POM parentPOM = pom.getParent(); + String parentPOMkey = getHashKey(parentPOM); + if (poms.containsKey(parentPOMkey)) { + POM newParentPOM = poms.get(parentPOMkey); + pom.setParent(newParentPOM); + } + } + } + } + + private List analyzeDependency(Dependency dep) { + String name = dep.getName(); + VersionSpecifier versionSpecifier = dep.getVersionSpecifier(); + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + + List antiPatterns = analyzer.analyze(); + + for (CIAntiPattern antiPattern : antiPatterns){ + antiPattern.setEntity(name); + } + + return antiPatterns; + } + + public List lint() throws Exception { + List antiPatterns = new ArrayList<>(); + + String projectName = project.getName(); + String remoteRepoPath = project.getRemotePath(); + + Map poms = getPOMs(project); + connectPOMs(poms); + + for (String pomName : poms.keySet()) { + POM pom = poms.get(pomName); + + String cfgFileName = pom.getPath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + LineNumberExtractor lineNumberExtractor = new LineNumberExtractor(pom.getRaw()); + + for (Dependency dep : pom.getDependencies()) { + + if (inBlackList(dep.getArtifactID())) { + continue; + } + + List depAntiPatterns = analyzeDependency(dep); + + // use artifact ID for searching but point to start of dependency node (-2) + String search = ""+dep.getArtifactID()+""; + int lineNumberInt = Integer.parseInt(lineNumberExtractor.getLineNumber(search)); + + if (lineNumberInt == -1) { + search = dep.getArtifactID(); + lineNumberInt = Integer.parseInt(lineNumberExtractor.getLineNumber(search)); + } + + lineNumberInt -= 2; + + String lineNumber = Integer.toString(lineNumberInt); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + if (dep.getGroupID().startsWith("org.springframework")) { + return new ArrayList<>(); + } + + for (CIAntiPattern depAntiPattern : depAntiPatterns) { + depAntiPattern.setId( + generateID( + projectName, + pomName, + depAntiPattern.getEntity(), + depAntiPattern.getSubCategory())); + depAntiPattern.setProject(projectName); + depAntiPattern.setRemoteRepoLink(remoteRepoPath); + depAntiPattern.setRemoteCfgLink(remoteCfgLink); + depAntiPattern.setLocalCfgLink(localCfgLink); + depAntiPattern.setEntity(depAntiPattern.getEntity()); + depAntiPattern.setCategory(category); + depAntiPattern.setLineNumber(lineNumber); + depAntiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(depAntiPattern); + } + } + } + + return antiPatterns; + } + + public String generateID(String projectName, String pomName, String depName, String subcategory) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + pomName + "__" + depName + "__" + subcategory); + } + + private Boolean inBlackList(String dep) { + List deps = List.of( + "pycodestyle", + "flake8", + "tox", + "nose", + "pylint", + "pytest", + "coverage", + "setuptools", + "pip", + "pipenv", + "ipython", + "codecov", + "junit", + "mypy", + "pytest-cov", + "ipython" + ); + + for (String blackListedDep : deps) { + if (dep.equals(blackListedDep)) { + return true; + } + } + + return false; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzer.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzer.java new file mode 100644 index 0000000..c1f9011 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzer.java @@ -0,0 +1,94 @@ +package cdlinter.detectors.maven.versioning.analyzers; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +public class VersionSpecifierAnalyzer { + + private String raw; + private String match; + private String lowerInclusive; + private String lowerExclusive; + private String upperInclusive; + private String upperExclusive; + + public VersionSpecifierAnalyzer(VersionSpecifier versionSpecifier) { + match = versionSpecifier.getMatch(); + raw = versionSpecifier.getRaw(); + lowerInclusive = versionSpecifier.getLowerBoundInclusive(); + lowerExclusive = versionSpecifier.getLowerBoundExclusive(); + upperInclusive = versionSpecifier.getUpperBoundInclusive(); + upperExclusive = versionSpecifier.getUpperBoundExclusive(); + } + + public Boolean hasNoVersionSpecifier(){ + return raw != null && raw.equals(""); + } + + public Boolean hasOnlyMajorRelease() { + for (String num : Arrays.asList(match, lowerInclusive, lowerExclusive, upperInclusive, upperExclusive)) { + if (num != null && num.matches("^\\d{1,3}$")) + return true; + } + + return false; + } + + public Boolean hasStarInMinorRelease() { + for (String num : Arrays.asList(match, lowerInclusive, lowerExclusive, upperInclusive, upperExclusive)) { + if (num != null && num.matches("^\\d+\\.\\*$")) + return true; + } + + return false; + } + + public Boolean hasNoUpperBoundary() { + if (lowerInclusive != null || lowerExclusive != null) { + if (upperInclusive == null && upperExclusive == null) { + return true; + } + } + + return false; + } + + public List analyze() { + + List antiPatterns = new ArrayList<>(); + + if (hasNoVersionSpecifier()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("missing"); + antiPattern.setMessage("version specifier is missing"); + antiPatterns.add(antiPattern); + } + + if (hasOnlyMajorRelease()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("only-major-number"); + antiPattern.setMessage("version specifier `"+raw+"` only refers to a major release, concrete minor versions might be incompatible"); + antiPatterns.add(antiPattern); + } + + if (hasStarInMinorRelease()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("any-minor-number"); + antiPattern.setMessage("version specifier `"+raw+"` matches any minor release, even future versions that might become incompatible"); + antiPatterns.add(antiPattern); + } + + if (hasNoUpperBoundary()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("any-upper-version"); + antiPattern.setMessage("version specifier `"+raw+"` matches future versions that might become incompatible"); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/Dependency.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/Dependency.java new file mode 100644 index 0000000..ea7150f --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/Dependency.java @@ -0,0 +1,66 @@ +package cdlinter.detectors.maven.versioning.entities; + + +import java.util.Objects; + +public class Dependency { + + private String groupID = ""; + private String artifactID = ""; + + private String name; + + private VersionSpecifier versionSpecifier; + + public Dependency(String name, VersionSpecifier versionSpecifier) { + this.name = name; + this.versionSpecifier = versionSpecifier; + } + + public void setVersionSpecifier(VersionSpecifier versionSpecifier) { + this.versionSpecifier = versionSpecifier; + } + + public String getName() { + return name; + } + + public String getGroupID() { + return groupID; + } + + public void setGroupID(String groupID) { + this.groupID = groupID; + } + + public String getArtifactID() { + return artifactID; + } + + public void setArtifactID(String artifactID) { + this.artifactID = artifactID; + } + + public VersionSpecifier getVersionSpecifier() { + return versionSpecifier; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + Dependency that = (Dependency) o; + return name.equals(that.name) && + versionSpecifier.equals(that.versionSpecifier); + } + + @Override + public int hashCode() { + return Objects.hash(name, versionSpecifier); + } + + @Override + public String toString() { + return "Name: " + name + ", Version Specifier: " + versionSpecifier; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifier.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifier.java new file mode 100644 index 0000000..0a46919 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifier.java @@ -0,0 +1,101 @@ +package cdlinter.detectors.maven.versioning.entities; + +import java.util.ArrayList; +import java.util.Objects; + +public class VersionSpecifier { + + private String raw; + + private String lowerBoundExclusive; + + private String lowerBoundInclusive; + + private String upperBoundExclusive; + + private String upperBoundInclusive; + + private String match; + + private ArrayList exclusives = new ArrayList<>(); + + public String getRaw() { + return raw; + } + + public void setRaw(String raw) { + this.raw = raw; + } + + public String getLowerBoundExclusive() { + return lowerBoundExclusive; + } + + public void setLowerBoundExclusive(String lowerBoundExclusive) { + this.lowerBoundExclusive = lowerBoundExclusive; + } + + public String getLowerBoundInclusive() { + return lowerBoundInclusive; + } + + public void setLowerBoundInclusive(String lowerBoundInclusive) { + this.lowerBoundInclusive = lowerBoundInclusive; + } + + public String getUpperBoundExclusive() { + return upperBoundExclusive; + } + + public void setUpperBoundExclusive(String upperBoundExclusive) { + this.upperBoundExclusive = upperBoundExclusive; + } + + public String getUpperBoundInclusive() { + return upperBoundInclusive; + } + + public void setUpperBoundInclusive(String upperBoundInclusive) { + this.upperBoundInclusive = upperBoundInclusive; + } + + public String getMatch() { + return match; + } + + public void setMatch(String match) { + this.match = match; + } + + public ArrayList getExclusives() { + return exclusives; + } + + public void addExclusive(String exclusive) { + exclusives.add(exclusive); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + VersionSpecifier that = (VersionSpecifier) o; + return Objects.equals(raw, that.raw) && + Objects.equals(lowerBoundExclusive, that.lowerBoundExclusive) && + Objects.equals(lowerBoundInclusive, that.lowerBoundInclusive) && + Objects.equals(upperBoundExclusive, that.upperBoundExclusive) && + Objects.equals(upperBoundInclusive, that.upperBoundInclusive) && + Objects.equals(match, that.match) && + Objects.equals(exclusives, that.exclusives); + } + + @Override + public int hashCode() { + return Objects.hash(raw, lowerBoundExclusive, lowerBoundInclusive, upperBoundExclusive, upperBoundInclusive, match, exclusives); + } + + @Override + public String toString() { + return raw; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParser.java new file mode 100644 index 0000000..6f0ccdb --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParser.java @@ -0,0 +1,58 @@ +package cdlinter.detectors.maven.versioning.parsers; + +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; + +public class VersionSpecifierParser { + + public VersionSpecifier parse(String versionSpecifierString) { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + + versionSpecifier.setRaw(versionSpecifierString); + + if (versionSpecifierString.equals("")) + return versionSpecifier; + + String[] versionClauses = versionSpecifierString.split("(? lint() throws Exception { + List antiPatterns = new ArrayList<>(); + + antiPatterns.addAll(getAntiPatternsFromRequirementsTXT(project)); + antiPatterns.addAll(getAntiPatternsFromGitLabYAML(project)); + + return antiPatterns; + } + + private List getAntiPatternsFromRequirementsTXT(LintProject project) throws IOException { + List antiPatterns = new ArrayList<>(); + String requirementsTXTContent = project.getFileContent("requirements.txt"); + RequirementsTXT requirementsTXT = new RequirementsTXTParser().parse(requirementsTXTContent); + LineNumberExtractor lineNumberExtractor = new LineNumberExtractor(requirementsTXTContent); + + String projectName = project.getName(); + String cfgFileName = "requirements.txt"; + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + List dependencies = requirementsTXT.getDependencies(); + for (Dependency dep : dependencies) { + + String name = dep.getName(); + + if (inBlackList(name)) { + continue; + } + + List depAntiPatterns = analyzeDependency(dep); + + String lineNumber = lineNumberExtractor.getLineNumber(dep.getName()); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + for (CIAntiPattern depAntiPattern : depAntiPatterns) { + depAntiPattern.setId( + generateID( + projectName, + "requirementstxt", + depAntiPattern.getEntity(), + depAntiPattern.getSubCategory() + )); + depAntiPattern.setProject(projectName); + depAntiPattern.setRemoteRepoLink(remoteRepoPath); + depAntiPattern.setRemoteCfgLink(remoteCfgLink); + depAntiPattern.setLocalCfgLink(localCfgLink); + depAntiPattern.setCategory(category); + depAntiPattern.setContext("requirements.txt"); + depAntiPattern.setLineNumber(lineNumber); + depAntiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(depAntiPattern); + } + } + + return antiPatterns; + } + + private List getAntiPatternsFromGitLabYAML(LintProject project) { + List antiPatterns = new ArrayList<>(); + String yamlContent = project.getFileContent(".gitlab-ci.yml"); + + LineNumberExtractor lineNumberExtractor = new LineNumberExtractor(yamlContent); + + GitLabYAMLDependencyParser parser = new GitLabYAMLDependencyParser(); + + String projectName = project.getName(); + String cfgFileName = ".gitlab-ci.yml"; + String remoteRepoPath = project.getRemotePath(); + String remoteCfgLink = project.getFullRemotePath(cfgFileName, true); + String localCfgLink = project.getFullLocalPath(cfgFileName); + + List dependencies = parser.parse(yamlContent); + for (Dependency dep : dependencies) { + + String name = dep.getName(); + + if (inBlackList(name)) { + continue; + } + + List depAntiPatterns = analyzeDependency(dep); + + // if(name.contains(" ; ") || name.equals(".")) + // continue; + + String lineNumber = lineNumberExtractor.getLineNumber(name); + //String lineNumberPath = LineNumberPathConstructor.getPath(remoteCfgLink, lineNumber); + + for (CIAntiPattern depAntiPattern : depAntiPatterns) { + depAntiPattern.setId( + generateID( + projectName, + "gitlabyaml", + depAntiPattern.getEntity(), + depAntiPattern.getSubCategory() + )); + depAntiPattern.setProject(projectName); + depAntiPattern.setRemoteRepoLink(remoteRepoPath); + depAntiPattern.setRemoteCfgLink(remoteCfgLink); + depAntiPattern.setLocalCfgLink(localCfgLink); + depAntiPattern.setCategory(category); + depAntiPattern.setContext(yamlContent); + depAntiPattern.setLineNumber(lineNumber); + depAntiPattern.setCfgFileName(cfgFileName); + antiPatterns.add(depAntiPattern); + } + } + + return antiPatterns; + } + + private List analyzeDependency(Dependency dep) { + String name = dep.getName(); + VersionSpecifier versionSpecifier = dep.getVersionSpecifier(); + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + List antiPatterns = analyzer.analyze(); + + for (CIAntiPattern antiPattern : antiPatterns){ + antiPattern.setEntity(name); + } + + return antiPatterns; + } + + public String generateID(String projectName, String cfg, String depName, String subcategory) { + return removeIllegalCharsInID(projectName + "__" + category + "__" + cfg + "__" + depName + "__" + subcategory); + } + + private Boolean inBlackList(String dep) { + + if(dep.length() > 50) // check on unrealistic dependency name's lenght + return true; + + List deps = List.of( + ".", + "pycodestyle", + "flake8", + "tox", + "nose", + "pylint", + "pytest", + "coverage", + "setuptools", + "pip", + "pipenv", + "ipython", + "codecov", + "junit", + "mypy", + "pytest-cov", + "ipython" + ); + + for (String blackListedDep : deps) { + if (dep.equals(blackListedDep)) { + return true; + } + } + + return false; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzer.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzer.java new file mode 100644 index 0000000..462e37e --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzer.java @@ -0,0 +1,94 @@ +package cdlinter.detectors.python.versioning.analyzers; + +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; +import cdlinter.antipattern.entities.CIAntiPattern; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +public class VersionSpecifierAnalyzer { + + private String raw; + private String match; + private String lowerInclusive; + private String lowerExclusive; + private String upperInclusive; + private String upperExclusive; + + public VersionSpecifierAnalyzer(VersionSpecifier versionSpecifier) { + match = versionSpecifier.getMatch(); + raw = versionSpecifier.getRaw(); + lowerInclusive = versionSpecifier.getLowerBoundInclusive(); + lowerExclusive = versionSpecifier.getLowerBoundExclusive(); + upperInclusive = versionSpecifier.getUpperBoundInclusive(); + upperExclusive = versionSpecifier.getUpperBoundExclusive(); + } + + public Boolean hasNoVersionSpecifier(){ + return raw != null && raw.equals(""); + } + + public Boolean hasOnlyMajorRelease() { + for (String num : Arrays.asList(match, lowerInclusive, lowerExclusive, upperInclusive, upperExclusive)) { + if (num != null && num.matches("^\\d+$")) + return true; + } + + return false; + } + + public Boolean hasStarInMinorRelease() { + for (String num : Arrays.asList(match, lowerInclusive, lowerExclusive, upperInclusive, upperExclusive)) { + if (num != null && num.matches("^\\d+\\.\\*$")) + return true; + } + + return false; + } + + public Boolean hasNoUpperBoundary() { + if (lowerInclusive != null || lowerExclusive != null) { + if (upperInclusive == null && upperExclusive == null) { + return true; + } + } + + return false; + } + + public List analyze() { + + List antiPatterns = new ArrayList<>(); + + if (hasNoVersionSpecifier()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("missing"); + antiPattern.setMessage("version specifier is missing"); + antiPatterns.add(antiPattern); + } + + if (hasOnlyMajorRelease()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("only-major-number"); + antiPattern.setMessage("version specifier `"+raw+"` only refers to a major release, concrete minor versions might be incompatible"); + antiPatterns.add(antiPattern); + } + + if (hasStarInMinorRelease()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("any-minor-number"); + antiPattern.setMessage("version specifier `"+raw+"` matches any minor release, even future versions that might become incompatible"); + antiPatterns.add(antiPattern); + } + + if (hasNoUpperBoundary()) { + CIAntiPattern antiPattern = new CIAntiPattern(); + antiPattern.setSubCategory("any-upper-version"); + antiPattern.setMessage("version specifier `"+raw+"` matches future versions that might become incompatible"); + antiPatterns.add(antiPattern); + } + + return antiPatterns; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/Dependency.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/Dependency.java new file mode 100644 index 0000000..d89a4e8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/Dependency.java @@ -0,0 +1,43 @@ +package cdlinter.detectors.python.versioning.entities; + + +import java.util.Objects; + +public class Dependency { + + private String name; + + private VersionSpecifier versionSpecifier; + + public Dependency(String name, VersionSpecifier versionSpecifier) { + this.name = name; + this.versionSpecifier = versionSpecifier; + } + + public String getName() { + return name; + } + + public VersionSpecifier getVersionSpecifier() { + return versionSpecifier; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + Dependency that = (Dependency) o; + return name.equals(that.name) && + versionSpecifier.equals(that.versionSpecifier); + } + + @Override + public int hashCode() { + return Objects.hash(name, versionSpecifier); + } + + @Override + public String toString() { + return "Name: " + name + ", Version Specifier: " + versionSpecifier; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/RequirementsTXT.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/RequirementsTXT.java new file mode 100644 index 0000000..fe7f576 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/RequirementsTXT.java @@ -0,0 +1,16 @@ +package cdlinter.detectors.python.versioning.entities; + +import java.util.ArrayList; + +public class RequirementsTXT { + + private ArrayList dependencies = new ArrayList<>(); + + public void addDependency(Dependency dependency) { + dependencies.add(dependency); + } + + public ArrayList getDependencies() { + return dependencies; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/VersionSpecifier.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/VersionSpecifier.java new file mode 100644 index 0000000..28ade79 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/entities/VersionSpecifier.java @@ -0,0 +1,101 @@ +package cdlinter.detectors.python.versioning.entities; + +import java.util.ArrayList; +import java.util.Objects; + +public class VersionSpecifier { + + private String raw; + + private String lowerBoundExclusive; + + private String lowerBoundInclusive; + + private String upperBoundExclusive; + + private String upperBoundInclusive; + + private String match; + + private ArrayList exclusives = new ArrayList<>(); + + public String getRaw() { + return raw; + } + + public void setRaw(String raw) { + this.raw = raw; + } + + public String getLowerBoundExclusive() { + return lowerBoundExclusive; + } + + public void setLowerBoundExclusive(String lowerBoundExclusive) { + this.lowerBoundExclusive = lowerBoundExclusive; + } + + public String getLowerBoundInclusive() { + return lowerBoundInclusive; + } + + public void setLowerBoundInclusive(String lowerBoundInclusive) { + this.lowerBoundInclusive = lowerBoundInclusive; + } + + public String getUpperBoundExclusive() { + return upperBoundExclusive; + } + + public void setUpperBoundExclusive(String upperBoundExclusive) { + this.upperBoundExclusive = upperBoundExclusive; + } + + public String getUpperBoundInclusive() { + return upperBoundInclusive; + } + + public void setUpperBoundInclusive(String upperBoundInclusive) { + this.upperBoundInclusive = upperBoundInclusive; + } + + public String getMatch() { + return match; + } + + public void setMatch(String match) { + this.match = match; + } + + public ArrayList getExclusives() { + return exclusives; + } + + public void addExclusive(String exclusive) { + exclusives.add(exclusive); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + VersionSpecifier that = (VersionSpecifier) o; + return Objects.equals(raw, that.raw) && + Objects.equals(lowerBoundExclusive, that.lowerBoundExclusive) && + Objects.equals(lowerBoundInclusive, that.lowerBoundInclusive) && + Objects.equals(upperBoundExclusive, that.upperBoundExclusive) && + Objects.equals(upperBoundInclusive, that.upperBoundInclusive) && + Objects.equals(match, that.match) && + Objects.equals(exclusives, that.exclusives); + } + + @Override + public int hashCode() { + return Objects.hash(raw, lowerBoundExclusive, lowerBoundInclusive, upperBoundExclusive, upperBoundInclusive, match, exclusives); + } + + @Override + public String toString() { + return raw; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/DependencyParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/DependencyParser.java new file mode 100644 index 0000000..bc3fc30 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/DependencyParser.java @@ -0,0 +1,57 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; +import cdlinter.detectors.python.versioning.entities.Dependency; + +import java.util.regex.Matcher; +import java.util.regex.Pattern; + + +public class DependencyParser { + + /** + * + * @param dependencyString The dependency string in the format: [package-name][version-specifier]. + * @return A dependency instance. + */ + public Dependency parse(String dependencyString){ + + String[] parts = new DependencyParser().getParts(dependencyString); + + VersionSpecifier versionSpecifier = new VersionSpecifierParser().parse(parts[1]); + + return new Dependency(parts[0], versionSpecifier); + } + + /** + * + * @param dependencyString The dependency string in the format: [package-name][version-specifier]. + * @return An array [package-name, version-specifier]. + */ + String[] getParts(String dependencyString) { + String patternString = "(\\S+?)((===|<=|>=|==|<|>|~=|!=).+)?"; + + Pattern pattern = Pattern.compile(patternString); + Matcher matcher = pattern.matcher(dependencyString); + + String name, versionSpecifierString; + + if (matcher.matches()) { + name = matcher.group(1); + + if (matcher.group(2) != null) { + versionSpecifierString = matcher.group(2); + } + else { + versionSpecifierString = ""; + } + + } + else { + name = ""; + versionSpecifierString = ""; + } + + return new String[] {name, versionSpecifierString}; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParser.java new file mode 100644 index 0000000..ce44560 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParser.java @@ -0,0 +1,105 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.parsers.GitLabYAMLParser; +import cdlinter.detectors.python.versioning.entities.Dependency; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class GitLabYAMLDependencyParser { + + public List parse(String YAMLContent) { + List dependencies = new ArrayList<>(); + + GitLabYAMLParser parser = new GitLabYAMLParser(); + GitLabYAML gitLabYAML = parser.parse(YAMLContent); + + Map jobs = gitLabYAML.getJobs(); + + for (String jobName : jobs.keySet()) { + Job job = jobs.get(jobName); + + dependencies.addAll(getDependencies(job.getBefore_script())); + dependencies.addAll(getDependencies(job.getScript())); + dependencies.addAll(getDependencies(job.getAfter_script())); + } + + return dependencies; + } + + private List getDependencies(List script) { + List dependencies = new ArrayList<>(); + + String patternPip = ".*pip install(.*)"; + retrieveDependencies(dependencies,script,patternPip); + + String patternPipThree = ".*pip3 install(.*)"; + retrieveDependencies(dependencies,script,patternPipThree); + + return dependencies; + } + + public void retrieveDependencies(List dependencies, List script, String patternString){ + + Pattern pattern = Pattern.compile(patternString); + + for (String line : script) { + + Matcher matcher = pattern.matcher(line); + + if (matcher.matches()) { + String dependencyPart = matcher.group(1).strip(); + // dependencies are in a file + if (!dependencyPart.contains("-r")) { + + dependencyPart = removeOptions(dependencyPart); + + String[] dependencyStrings = dependencyPart.split(" "); + for (String dependencyString : dependencyStrings) { + + dependencyString = removeQuotes(dependencyString); + + // ignore paths and archives + if (!isPath(dependencyString) && !isArchive(dependencyString)) { + Dependency dependency = new DependencyParser().parse(dependencyString); + dependencies.add(dependency); + } + } + } + } + } + + } + + public String removeOptions(String dependency) { + // remove options + dependency = dependency.replaceAll("--?\\S+", ""); + // remove redundanct whitespaces + dependency = dependency.replaceAll("\\s+", " "); + // strip leading/trailing whitespaces + dependency = dependency.strip(); + + return dependency; + } + + public String removeQuotes(String dependency) { + return dependency.replace("\"", ""); + } + + public Boolean isArchive(String dependency) { + return dependency.endsWith(".zip") + || dependency.endsWith(".tar") + || dependency.endsWith(".gz") + || dependency.endsWith(".bz2"); + } + + public Boolean isPath(String dependency) { + return dependency.contains("/") + || dependency.matches("\\.{1,2}(\\[.*])?"); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParser.java new file mode 100644 index 0000000..3515b07 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParser.java @@ -0,0 +1,72 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.python.versioning.entities.Dependency; +import cdlinter.detectors.python.versioning.entities.RequirementsTXT; + +import java.io.*; +import java.util.Scanner; + +public class RequirementsTXTParser { + + /** + * Parse the content of a requirements.txt file. + * @param content The content of a requirements.txt file. + * @return The requirementsTXT instance. + */ + public RequirementsTXT parse(String content) throws IOException { + RequirementsTXT requirementsTXT = new RequirementsTXT(); + BufferedReader reader = new BufferedReader(new StringReader(content)); + + String line; + while((line = reader.readLine()) != null ){ + + line = removeRedundantWhitespaces(line); + + if (isDependencyLine(line)) { + Dependency dependency = new DependencyParser().parse(line); + requirementsTXT.addDependency(dependency); + } + } + + return requirementsTXT; + } + + /** + * Parse the requirements.txt file. + * @param filePath Path of the requirements.txt file. + * @return A requirmentsTXT instance. + * @throws FileNotFoundException + */ + public RequirementsTXT parseFromPath(String filePath) throws FileNotFoundException { + + RequirementsTXT requirementsTXT = new RequirementsTXT(); + File file = new File(filePath); + Scanner scanner = new Scanner(file); + + while (scanner.hasNextLine()){ + + String line = scanner.nextLine(); + + line = removeRedundantWhitespaces(line); + + if (isDependencyLine(line)) { + Dependency dependency = new DependencyParser().parse(line); + requirementsTXT.addDependency(dependency); + } + } + + return requirementsTXT; + } + + public Boolean isDependencyLine(String line){ + // ignore comments and empty lines + return !line.startsWith("#") && !line.equals(""); + } + + public String removeRedundantWhitespaces(String line) { + line = line.replaceAll("\\s+", ""); + line = line.strip(); + + return line; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParser.java b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParser.java new file mode 100644 index 0000000..83f031c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParser.java @@ -0,0 +1,52 @@ +package cdlinter.detectors.python.versioning.parsers; + +// https://www.python.org/dev/peps/pep-0440/#id53 + +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; + +public class VersionSpecifierParser { + + /** + * + * @param versionSpecifierString The version specifier string consisting of version + * clauses of the format: [op][version-number]. + * @return A VersionSpecifier instance. + */ + public VersionSpecifier parse(String versionSpecifierString) { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + + versionSpecifier.setRaw(versionSpecifierString); + + String[] versionClauses = versionSpecifierString.split(","); + + for (String clause : versionClauses){ + + if (clause.startsWith("==")){ + String match = clause.substring(2); + versionSpecifier.setMatch(match); + } + else if (clause.startsWith("!=")){ + String exclusive = clause.substring(2); + versionSpecifier.addExclusive(exclusive); + } + else if (clause.startsWith(">=")){ + String upperBoundInclusive = clause.substring(2); + versionSpecifier.setLowerBoundInclusive(upperBoundInclusive); + } + else if (clause.startsWith("<=")){ + String lowerBoundInclusive = clause.substring(2); + versionSpecifier.setUpperBoundInclusive(lowerBoundInclusive); + } + else if (clause.startsWith(">")){ + String upperBoundExclusive = clause.substring(1); + versionSpecifier.setLowerBoundExclusive(upperBoundExclusive); + } + else if (clause.startsWith("<")){ + String lowerBoundExclusive = clause.substring(1); + versionSpecifier.setUpperBoundExclusive(lowerBoundExclusive); + } + } + + return versionSpecifier; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/platform/entities/Issue.java b/cd-linter-code/src/main/java/cdlinter/platform/entities/Issue.java new file mode 100644 index 0000000..8dab469 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/platform/entities/Issue.java @@ -0,0 +1,14 @@ +package cdlinter.platform.entities; + +import java.net.URL; +import java.util.LinkedList; +import java.util.List; + +public class Issue { + public String id; + public String title; + public String desc; + public String category; + public List tags = new LinkedList(); + public URL linkToRepository; +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/platform/parsers/AntiPattern2IssueConverter.java b/cd-linter-code/src/main/java/cdlinter/platform/parsers/AntiPattern2IssueConverter.java new file mode 100644 index 0000000..9e6c37f --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/platform/parsers/AntiPattern2IssueConverter.java @@ -0,0 +1,37 @@ +package cdlinter.platform.parsers; + +import java.net.MalformedURLException; +import java.net.URL; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.platform.entities.Issue; +import cdlinter.templates.TemplateGeneration; + +public class AntiPattern2IssueConverter { + + public static final TemplateGeneration gen = new TemplateGeneration(); + + public static Issue convert(CIAntiPattern cia) { + Issue issue = new Issue(); + + issue.id = cia.getId(); + + try { + issue.linkToRepository = new URL(cia.getRemoteRepoLink()); + } catch (MalformedURLException e) { + throw new RuntimeException(e); + } + + issue.category = cia.getCategory(); + if (!cia.getSubCategory().isEmpty()) { + issue.tags.add(cia.getSubCategory().trim()); + } + + String[] titleAndDesc = gen.generateReport(cia); + + issue.title = titleAndDesc[0]; + issue.desc = titleAndDesc[1]; + + return issue; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/project/entities/LintProject.java b/cd-linter-code/src/main/java/cdlinter/project/entities/LintProject.java new file mode 100644 index 0000000..89829cc --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/project/entities/LintProject.java @@ -0,0 +1,257 @@ +package cdlinter.project.entities; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.HashMap; +import java.util.Map; + +import cdlinter.utils.HTTPConnector; + +public class LintProject { + + private String accessToken = ""; + + private String name = ""; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + private String remotePath = ""; + + public String getRemotePath() { + return remotePath; + } + + public void setRemotePath(String remotePath) { + this.remotePath = remotePath; + } + + private String localPath = ""; + + public String getLocalPath() { + return localPath; + } + + public void setLocalPath(String localPath) { + this.localPath = localPath; + } + + private String language; + + public void setLanguage(String language) { + this.language = language; + } + + public String getLanguage() { + return language; + } + + public String getFullPath(String path) { + if (isLocal()) + return getFullLocalPath(path); + else + return getFullRemotePath(path, false); + } + + public String getFullRemotePath(String path, Boolean blob) { + if (blob) { + return remotePath + "/blob/master/" + path; + } else { + return remotePath + "/raw/master/" + path; + } + } + + public String getFullLocalPath(String path) { + return localPath + "/" + path; + } + + public void setAccessToken(String accessToken) { + this.accessToken = accessToken; + } + + public Boolean isLocal() { + return !localPath.equals(""); + } + + public String getFileContent(String path) { + if (isLocal()) + return getLocalFile(path); + else + return getRemoteFile(path); + } + + public String getLocalFile(String filePath) { + Path path = Paths.get(getFullPath(filePath)); + byte[] encoded; + + try { + encoded = Files.readAllBytes(path); + } catch (IOException e) { + return ""; + } + + return new String(encoded, StandardCharsets.UTF_8); + } + + public String getRemoteFile(String path) { + String mimeType = "text/plain"; + String url = getFullPath(path); + Map requests_header = new HashMap<>(); + requests_header.put("Content-Type", mimeType + "; charset=utf-8"); + requests_header.put("Private-Token", accessToken); + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + int responseCode = Integer.parseInt(responseResults[0]); + + if (responseCode == HTTPConnector.STATUS_OK) { + return responseResults[1]; + } else { + return ""; + } + } + + public String getRemoteFileOnly(String path) { + String mimeType = "text/plain"; + String url = "https://gitlab.com/" + repository + "/raw/master"+ path; + System.out.println(url); + Map requests_header = new HashMap<>(); + requests_header.put("Content-Type", mimeType + "; charset=utf-8"); + requests_header.put("Private-Token", accessToken); + String[] responseResults = HTTPConnector.connectAndGetResponse(url, requests_header); + int responseCode = Integer.parseInt(responseResults[0]); + + if (responseCode == HTTPConnector.STATUS_OK) { + return responseResults[1]; + } else { + return ""; + } + } + + public String getBuildToolName() { + HashMap knownBuildTools = new HashMap<>(); + knownBuildTools.put("Maven", "pom.xml"); + knownBuildTools.put("Gradle", "build.gradle"); + + for (String name : knownBuildTools.keySet()) { + String fileName = knownBuildTools.get(name); + String content = getFileContent(fileName); + + if (!content.equals("")) { + return name; + } + } + + return "unknown"; + } + + public int getNumCommitsInLastThreeMonths() { + return numCommitsInLastThreeMonths; + } + + public void setNumCommitsInLastThreeMonths(int numCommitsInLastThreeMonths) { + this.numCommitsInLastThreeMonths = numCommitsInLastThreeMonths; + } + + public int getNumIssuesOpenedInLastThreeMonths() { + return numIssuesOpenedInLastThreeMonths; + } + + public void setNumIssuesOpenedInLastThreeMonths(int numIssuesOpenedInLastThreeMonths) { + this.numIssuesOpenedInLastThreeMonths = numIssuesOpenedInLastThreeMonths; + } + + public String getOwner() { + return owner; + } + + public void setOwner(String owner) { + this.owner = owner; + } + + public String getRepository() { + return repository; + } + + public void setRepository(String repository) { + this.repository = repository; + } + + + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((accessToken == null) ? 0 : accessToken.hashCode()); + result = prime * result + ((language == null) ? 0 : language.hashCode()); + result = prime * result + ((localPath == null) ? 0 : localPath.hashCode()); + result = prime * result + ((name == null) ? 0 : name.hashCode()); + result = prime * result + numCommitsInLastThreeMonths; + result = prime * result + numIssuesOpenedInLastThreeMonths; + result = prime * result + ((owner == null) ? 0 : owner.hashCode()); + result = prime * result + ((remotePath == null) ? 0 : remotePath.hashCode()); + result = prime * result + ((repository == null) ? 0 : repository.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + LintProject other = (LintProject) obj; + if (accessToken == null) { + if (other.accessToken != null) + return false; + } else if (!accessToken.equals(other.accessToken)) + return false; + if (language == null) { + if (other.language != null) + return false; + } else if (!language.equals(other.language)) + return false; + if (localPath == null) { + if (other.localPath != null) + return false; + } else if (!localPath.equals(other.localPath)) + return false; + if (name == null) { + if (other.name != null) + return false; + } else if (!name.equals(other.name)) + return false; + if (numCommitsInLastThreeMonths != other.numCommitsInLastThreeMonths) + return false; + if (numIssuesOpenedInLastThreeMonths != other.numIssuesOpenedInLastThreeMonths) + return false; + if (owner == null) { + if (other.owner != null) + return false; + } else if (!owner.equals(other.owner)) + return false; + if (remotePath == null) { + if (other.remotePath != null) + return false; + } else if (!remotePath.equals(other.remotePath)) + return false; + if (repository == null) { + if (other.repository != null) + return false; + } else if (!repository.equals(other.repository)) + return false; + return true; + } + + private int numCommitsInLastThreeMonths, numIssuesOpenedInLastThreeMonths; + private String owner, repository; +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/project/linters/ProjectLinter.java b/cd-linter-code/src/main/java/cdlinter/project/linters/ProjectLinter.java new file mode 100644 index 0000000..c12a1f8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/project/linters/ProjectLinter.java @@ -0,0 +1,39 @@ +package cdlinter.project.linters; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.gitlabyaml.detectors.GitLabYAMLAllowFailureDetector; +import cdlinter.detectors.gitlabyaml.detectors.GitLabYAMLManualDetector; +import cdlinter.detectors.gitlabyaml.detectors.GitLabYAMLRetryDetector; +import cdlinter.detectors.maven.versioning.MavenVersionAntiPatternDetector; +import cdlinter.detectors.python.versioning.PythonVersionAntiPatternDetector; +import cdlinter.project.entities.LintProject; + +import java.util.ArrayList; +import java.util.List; + +public class ProjectLinter { + + public static List getCIAntiPatterns(LintProject lintProject) throws Exception { + List antiPatterns = new ArrayList<>(); + + String language = lintProject.getLanguage(); + String buildTool = lintProject.getBuildToolName(); + + if (buildTool.equals("Maven")) { + antiPatterns.addAll(new MavenVersionAntiPatternDetector(lintProject).lint()); + } + else if (language.equals("Python")) { + antiPatterns.addAll(new PythonVersionAntiPatternDetector(lintProject).lint()); + } + + //antiPatterns.addAll(new GitLabYAMLDuplicateLibraries(lintProject).lint()); + + antiPatterns.addAll(new GitLabYAMLAllowFailureDetector(lintProject).lint()); + antiPatterns.addAll(new GitLabYAMLRetryDetector(lintProject).lint()); + //antiPatterns.addAll(new GitLabYAMLVulnerabilityDetector(lintProject).lint()); + antiPatterns.addAll(new GitLabYAMLManualDetector(lintProject).lint()); + //antiPatterns.addAll(new GitLabYAMLOnlyExceptDetector(lintProject).lint()); + + return antiPatterns; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/project/parsers/ProjectParser.java b/cd-linter-code/src/main/java/cdlinter/project/parsers/ProjectParser.java new file mode 100644 index 0000000..e4c2554 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/project/parsers/ProjectParser.java @@ -0,0 +1,99 @@ +package cdlinter.project.parsers; + +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import cdlinter.project.entities.LintProject; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; + +public class ProjectParser { + + + private String gitLabToken; + + public ProjectParser(String gitLabToken) { + this.gitLabToken = gitLabToken; + + } + + /** + * Get the projects from the CSV sheet. + * + * @param path + * The path to the CSV sheet. + * @return A list of projects. + */ + public List getProjectsFromCSVSheet(String path) { + CSVParser parser = null; + + try { + FileReader reader = new FileReader(new File(path)); + parser = CSVParser.parse(reader, CSVFormat.DEFAULT.withHeader()); + } catch (IOException e1) { + // TODO Auto-generated catch block + e1.printStackTrace(); + } + + + List projects = new ArrayList<>(); + + try { + List records = parser.getRecords(); + + for(CSVRecord record: records) { + LintProject project = getProject(record); + projects.add(project); + } + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + + return projects; + } + + /** + * Get a project. + * + * @param fields + * The fields of the CSV sheet from which the `Project` instance is + * constructed. + * @return The project. + */ + private LintProject getProject(CSVRecord csvRecord) { + + + String domain = "https://gitlab.com/"; + String repoNameSpace = csvRecord.get("project"); + String name = repoNameSpace.replace("/", "__"); + String remotePath = domain + repoNameSpace; + String language = csvRecord.get("language"); + String token = getGitLabToken(); + String owner = csvRecord.get("owner"); + String repository = csvRecord.get("project"); + String numCommitsInLastThreeMonths = "10000"; + String numIssuesOpenedInLastThreeMonths = "10000"; + + LintProject lintProject = new LintProject(); + lintProject.setRemotePath(remotePath); + lintProject.setName(name); + lintProject.setLanguage(language); + lintProject.setAccessToken(token); + lintProject.setOwner(owner); + lintProject.setRepository(repository); + lintProject.setNumCommitsInLastThreeMonths(Integer.parseInt(numCommitsInLastThreeMonths)); + lintProject.setNumIssuesOpenedInLastThreeMonths(Integer.parseInt(numIssuesOpenedInLastThreeMonths)); + + return lintProject; + } + + private String getGitLabToken() { + return gitLabToken; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/project/writers/ProjectDownloader.java b/cd-linter-code/src/main/java/cdlinter/project/writers/ProjectDownloader.java new file mode 100644 index 0000000..2c7bf5b --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/project/writers/ProjectDownloader.java @@ -0,0 +1,88 @@ +package cdlinter.project.writers; + +import cdlinter.detectors.maven.pom.POM; +import cdlinter.detectors.maven.pom.POMParser; +import cdlinter.project.entities.LintProject; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.PrintWriter; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; + +public class ProjectDownloader { + + private String projectsPath; + + public ProjectDownloader(String projectsPath) { + this.projectsPath = projectsPath; + } + + private Boolean createFolder(String path) { + if (!new File(path).isDirectory()) { + new File(path).mkdirs(); + return true; + } + return false; + } + + private void createFile(String path, String content) { + + if (!content.equals("")) { + createFolder(new File(path).getParent()); + + PrintWriter writer = null; + try { + writer = new PrintWriter(path); + } catch (FileNotFoundException e) { + } + + if (writer != null) { + writer.println(content); + writer.close(); + } + } + } + + private void downloadProjectPoms(LintProject project, Path path, Path cachePath) { + String pomPath = Paths.get(path.toString(), "pom.xml").toString(); + String pomContent = project.getFileContent(pomPath); + + String CachePomPath = Paths.get(cachePath.toString(), "pom.xml").toString(); + createFile(CachePomPath, pomContent); + + POMParser pomParser = new POMParser(); + + POM pom = new POM(); + try { + pom = pomParser.parse(pomContent); + } + catch (Exception e) {} + + ArrayList modules = pom.getModules(); + for (String module : modules) { + Path modulePath = Paths.get(path.toString(), module); + Path cacheModulePath = Paths.get(cachePath.toString(), module); + downloadProjectPoms(project, modulePath, cacheModulePath); + } + } + + public void downloadProjectFiles(LintProject project) { + String projectName = project.getName(); + String projectPath = projectsPath+"/"+projectName; + + // only download if folder does not exist + if (createFolder(projectPath)) { + String requirementsTXT = project.getFileContent("requirements.txt"); + createFile(projectPath+"/"+"requirements.txt", requirementsTXT); + + String gitlabYAML = project.getFileContent(".gitlab-ci.yml"); + createFile(projectPath+"/"+".gitlab-ci.yml", gitlabYAML); + + downloadProjectPoms(project, Paths.get(""), Paths.get(projectPath)); + } + + project.setLocalPath(projectPath); + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/stats/StatsCalculator.java b/cd-linter-code/src/main/java/cdlinter/stats/StatsCalculator.java new file mode 100644 index 0000000..18545cf --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/stats/StatsCalculator.java @@ -0,0 +1,57 @@ +package cdlinter.stats; + +import cdlinter.antipattern.entities.CIAntiPattern; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; + +public class StatsCalculator { + + private Set cias; + + public StatsCalculator(Set cias) { + this.cias = cias; + } + + public int getNumberOfViolations() { + return cias.size(); + } + + public Map getNumberOfViolationsPerCategory() { + return cias.stream() + .collect(Collectors.groupingBy(CIAntiPattern::getCategory, Collectors.counting())); + } + + public int getNumberOfProjects() { + return cias.stream().collect(Collectors.groupingBy(CIAntiPattern::getProject)).size(); + } + + public Map getNumberOfProjectsPerCategory() { + Map>> catProjectGroupBy = cias.stream() + .collect(Collectors.groupingBy(CIAntiPattern::getCategory, Collectors.groupingBy(CIAntiPattern::getProject))); + + Map result = new HashMap<>(); + for (String category : catProjectGroupBy.keySet()) { + result.put(category, catProjectGroupBy.get(category).size()); + } + return result; + } + + public int getNumberOfOwners() { + return cias.stream().collect(Collectors.groupingBy(CIAntiPattern::getOwner)).size(); + } + + public Map getNumberOfOwnersPerCategory() { + Map>> catOwnerGroupBy = cias.stream() + .collect(Collectors.groupingBy(CIAntiPattern::getCategory, Collectors.groupingBy(CIAntiPattern::getOwner))); + + Map result = new HashMap<>(); + for (String category : catOwnerGroupBy.keySet()) { + result.put(category, catOwnerGroupBy.get(category).size()); + } + return result; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/templates/ParameterGeneration.java b/cd-linter-code/src/main/java/cdlinter/templates/ParameterGeneration.java new file mode 100644 index 0000000..9b964e1 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/templates/ParameterGeneration.java @@ -0,0 +1,124 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.templates; + +import java.util.HashMap; +import java.util.Map; + +import cdlinter.antipattern.entities.CIAntiPattern; + +public class ParameterGeneration { + + public enum Variables { + JOB_NAME, STAGE_NAME, SHORT_FILE_NAME, LINK_TO_FILE, LINE_NUMBER, RETRIES_NUMBER, LINE_TEXT, MESSAGE, DEP_NAME + }; + + public Map get(CIAntiPattern cia) { + String category = cia.getCategory(); + + Map parameters = new HashMap<>(); + + if (category.equalsIgnoreCase(TemplateGeneration.ALLOW_FAILURE)) { + parameters = setBasicParameters(cia); + } else if (category.equalsIgnoreCase(TemplateGeneration.JOB_RETRY)) { + parameters = setParametersForJobRetry(cia); + } else if (category.equalsIgnoreCase(TemplateGeneration.JOB_MANUAL)) { + parameters = setBasicParameters(cia); + } else if (category.equalsIgnoreCase(TemplateGeneration.VERSIONING)) { + parameters = setParametersForVersioning(cia); + } else if (category.equalsIgnoreCase(TemplateGeneration.VULNERABILITY)) { + parameters = setParametersForVulnerability(cia); + } + + return parameters; + } + + public static Map setBasicParameters(CIAntiPattern antipattern) { + + Map parameters = new HashMap<>(); + + String jobName = antipattern.getEntity(); + String stageName = antipattern.getStage(); + String fileName = antipattern.getCfgFileName(); + String remoteCfgLink = antipattern.getRemoteCfgLink(); + String lineNumber = antipattern.getLineNumber(); + + parameters.put(Variables.JOB_NAME, jobName); + parameters.put(Variables.STAGE_NAME, stageName); + parameters.put(Variables.SHORT_FILE_NAME, fileName); + parameters.put(Variables.LINK_TO_FILE, remoteCfgLink); + parameters.put(Variables.LINE_NUMBER, lineNumber); + + return parameters; + } + + public static Map setParametersForJobRetry(CIAntiPattern antipattern) { + + Map parameters = new HashMap<>(); + + String jobName = antipattern.getEntity(); + String stageName = antipattern.getStage(); + String fileName = antipattern.getCfgFileName(); + String remoteCfgLink = antipattern.getRemoteCfgLink(); + String lineNumber = antipattern.getLineNumber(); + String retryNum = antipattern.getMessage(); + + parameters.put(Variables.JOB_NAME, jobName); + parameters.put(Variables.STAGE_NAME, stageName); + parameters.put(Variables.SHORT_FILE_NAME, fileName); + parameters.put(Variables.LINK_TO_FILE, remoteCfgLink); + parameters.put(Variables.LINE_NUMBER, lineNumber); + parameters.put(Variables.RETRIES_NUMBER, retryNum); + + return parameters; + } + + public static Map setParametersForVulnerability(CIAntiPattern antipattern) { + + Map parameters = new HashMap<>(); + + String fileName = antipattern.getCfgFileName(); + String remoteCfgLink = antipattern.getRemoteCfgLink(); + String lineNumber = antipattern.getLineNumber(); + String lineText = antipattern.getMessage(); + + parameters.put(Variables.SHORT_FILE_NAME, fileName); + parameters.put(Variables.LINK_TO_FILE, remoteCfgLink); + parameters.put(Variables.LINE_NUMBER, lineNumber); + parameters.put(Variables.LINE_TEXT, lineText); + + return parameters; + } + + public static Map setParametersForVersioning(CIAntiPattern antipattern) { + + Map parameters = new HashMap<>(); + + String fileName = antipattern.getCfgFileName(); + String remoteCfgLink = antipattern.getRemoteCfgLink(); + String lineNumber = antipattern.getLineNumber(); + String dependency = antipattern.getEntity(); + String message = antipattern.getMessage(); + + parameters.put(Variables.SHORT_FILE_NAME, fileName); + parameters.put(Variables.LINK_TO_FILE, remoteCfgLink); + parameters.put(Variables.LINE_NUMBER, lineNumber); + parameters.put(Variables.DEP_NAME, dependency); + parameters.put(Variables.MESSAGE, message); + + return parameters; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/templates/TemplateGeneration.java b/cd-linter-code/src/main/java/cdlinter/templates/TemplateGeneration.java new file mode 100644 index 0000000..059e9e2 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/templates/TemplateGeneration.java @@ -0,0 +1,87 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.templates; + +import java.io.File; +import java.util.HashMap; +import java.util.Map; + +import org.stringtemplate.v4.ST; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.templates.ParameterGeneration.Variables; +import cdlinter.utils.ResourceReader; + +public class TemplateGeneration { + + public static final String ALLOW_FAILURE = "Job-Allow-Failure"; + public static final String JOB_RETRY = "Job-Retry"; + public static final String JOB_CREATION_POLICY = "Job-Creation-Policy"; + public static final String JOB_MANUAL = "Manual-Job"; + public static final String VERSIONING = "Versioning"; + public static final String VULNERABILITY = "Vulnerability"; + + private final ParameterGeneration params = new ParameterGeneration(); + private final Map templates = new HashMap<>(); + + public TemplateGeneration() { + addTemplate(ALLOW_FAILURE, "issue-templates/allow_failures.md"); + addTemplate(JOB_RETRY, "issue-templates/job_retry.md"); + addTemplate(JOB_MANUAL, "issue-templates/manual_job.md"); + addTemplate(JOB_CREATION_POLICY, "issue-templates/job_creation.md"); + addTemplate(VERSIONING, "issue-templates/missing_version.md"); + addTemplate(VULNERABILITY, "issue-templates/insecure-credentials.md"); + } + + private void addTemplate(String category, String fileTemplate) { + File f = ResourceReader.getFileFromResources(fileTemplate); + String template = ResourceReader.readContents(f); + templates.put(category, template); + } + + public String[] generateReport(CIAntiPattern cia) { + ST template = new ST(getTemplate(cia)); + Map parameters = params.get(cia); + + for (Variables param : parameters.keySet()) { + String value = parameters.get(param); + template.add(param.toString(), value); + } + + String renderedTemplate = template.render(); + String[] titleDesc = splitTitle(cia.getCategory(), renderedTemplate); + return titleDesc; + } + + private String getTemplate(CIAntiPattern cia) { + if (!templates.containsKey(cia.getCategory())) { + throw new RuntimeException("unknown category: " + cia.getCategory()); + } + return templates.get(cia.getCategory()); + } + + private static String[] splitTitle(String category, String s) { + if (s.startsWith("\n")) { + throw new RuntimeException(String.format("Template '%s' cannot start with a new line!", category)); + } + + int titleEnd = s.indexOf('\n'); + int separatorEnd = s.indexOf('\n', titleEnd + 1); + String title = s.substring(0, titleEnd); + String desc = s.substring(separatorEnd + 1); + return new String[] { title.trim(), desc.trim() }; + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/utils/DefinitionPointer.java b/cd-linter-code/src/main/java/cdlinter/utils/DefinitionPointer.java new file mode 100644 index 0000000..5defc47 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/DefinitionPointer.java @@ -0,0 +1,58 @@ +package cdlinter.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; + +import java.util.*; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + + +/** + * Extract pointers where jobs are pointing to other job definitions (Merge key). + */ +public class DefinitionPointer { + + private GitLabYAML gitLabYAML; + + public DefinitionPointer(GitLabYAML gitLabYAML) { + this.gitLabYAML = gitLabYAML; + } + + public Map> getPointers() { + Map> pointers = new HashMap<>(); + + String content = gitLabYAML.getRaw(); + + Pattern pattern1 = Pattern.compile("^([^\\s#].*):"); + Pattern pattern2 = Pattern.compile("\\s+<<: \\*(.*)"); + Pattern pattern3 = Pattern.compile(".*: ?&(.*)"); + Map defName2JobName = new HashMap<>(); + + String currentJob = null; + for (String line : content.split("\n")) { + Matcher matcher1 = pattern1.matcher(line); + Matcher matcher2 = pattern2.matcher(line); + if (matcher1.find()) + { + currentJob = matcher1.group(1); + + Matcher matcher3 = pattern3.matcher(line); + if (matcher3.find()) { + String def = matcher3.group(1); + defName2JobName.put(def, currentJob); + } + } + else if (matcher2.find()) { + String jobDefinition = matcher2.group(1); + + if (!pointers.containsKey(currentJob)) { + List defs = new ArrayList<>(); + pointers.put(currentJob, defs); + } + String defJob = defName2JobName.get(jobDefinition); + pointers.get(currentJob).add(defJob); + } + } + return pointers; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/HTTPConnector.java b/cd-linter-code/src/main/java/cdlinter/utils/HTTPConnector.java new file mode 100644 index 0000000..0cab28d --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/HTTPConnector.java @@ -0,0 +1,114 @@ +package cdlinter.utils; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.net.HttpURLConnection; +import java.net.URL; +import java.util.Map; + +public class HTTPConnector { + + public static final int STATUS_OK = 200; + + /** + * Open a HTTP connection with the given URL and header. + * @param url + * @param header + * @return A HTTP connection. + * @throws IOException + */ + public static HttpURLConnection connectTo(String url, Map header) throws IOException{ + URL u_rl = new URL(url); + HttpURLConnection con = (HttpURLConnection) u_rl.openConnection(); + con.setRequestMethod("GET"); + con.setRequestProperty("Content-Type", "application/json"); + + for(String key: header.keySet()){ + con.setRequestProperty(key, header.get(key)); + } + return con; + } + + /** + * Get the payload from an open HTTP connection. + * @param con An HTTP connection. + * @return The response. + * @throws IOException + */ + public static StringBuffer extractResponse(HttpURLConnection con) throws IOException{ + BufferedReader in = new BufferedReader( + new InputStreamReader(con.getInputStream())); + String inputLine; + StringBuffer content = new StringBuffer(); + while ((inputLine = in.readLine()) != null) { + content.append(inputLine + System.getProperty("line.separator")); + } + in.close(); + + con.disconnect(); + + return content; + } + + + /** + * Fetch resource referred to by URL. + * @param url URL pointing to resource. + * @param header Header fields to use in the request. + * @return The response code (1) and the payload (2) + */ + public static String[] connectAndGetResponse(String url,Map header){ + String[] results = new String[2]; + + HttpURLConnection url_conn = null; + String response = null; + int responseCode = -1; + try { + url_conn = HTTPConnector.connectTo(url,header); + responseCode = url_conn.getResponseCode(); + response = new String(HTTPConnector.extractResponse(url_conn)); + + } catch (IOException e) { + // e.printStackTrace(); + } + url_conn.disconnect(); + + results[0] = ""+responseCode; + results[1] = response; + + return results; + } + + public static String[] connectAndGetResponseHeader(String url,Map header, String responseHeaderKey){ + String[] results = new String[2]; + + HttpURLConnection url_conn = null; + String responseHeader = null; + int responseCode = -1; + try { + url_conn = HTTPConnector.connectTo(url,header); + responseCode = url_conn.getResponseCode(); + responseHeader = url_conn.getHeaderField(responseHeaderKey); + +/* Map> map = url_conn.getHeaderFields(); + for (Map.Entry> entry : map.entrySet()) { + System.out.println("Key : " + entry.getKey() + + " ,Value : " + entry.getValue()); + } +*/ + //get header by 'key' + // String server = url_conn.getHeaderField("Server"); + + } catch (IOException e) { + // e.printStackTrace(); + } + url_conn.disconnect(); + + results[0] = ""+responseCode; + results[1] = responseHeader; + + return results; + } + +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/LineNumberExtractor.java b/cd-linter-code/src/main/java/cdlinter/utils/LineNumberExtractor.java new file mode 100644 index 0000000..09e2ad8 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/LineNumberExtractor.java @@ -0,0 +1,32 @@ +package cdlinter.utils; + +public class LineNumberExtractor { + + private static final String COMMENT_KEYWORD = "#"; + private String[] lines; + + public LineNumberExtractor(String fileContent) { + this.lines = fileContent.split("\\r?\\n", -1); + } + + public String getLineNumber(String search) { + int counter = 1; + + for (String line : lines) { + + if(line.contains("run " + search)) { + counter++; + continue; + } + + line = line.replaceAll("\"", ""); + if (line.contains(search) && !line.contains("_" +search+ "_") && !line.trim().startsWith(COMMENT_KEYWORD)) { + return Integer.toString(counter); + } + + counter++; + } + + return "-1"; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/LineNumberPathConstructor.java b/cd-linter-code/src/main/java/cdlinter/utils/LineNumberPathConstructor.java new file mode 100644 index 0000000..1e8bd2f --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/LineNumberPathConstructor.java @@ -0,0 +1,8 @@ +package cdlinter.utils; + +public class LineNumberPathConstructor { + + public static String getPath(String path, String lineNumber) { + return path + "#L" + lineNumber; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesReader.java b/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesReader.java new file mode 100644 index 0000000..dcb2b4d --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesReader.java @@ -0,0 +1,39 @@ +package cdlinter.utils; + +import static org.apache.commons.codec.Charsets.UTF_8; + +import java.io.File; +import java.io.IOException; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import org.apache.commons.io.FileUtils; + +public class ProcessedEntitiesReader { + + /** + * Get entities that have been processed already. + * + * @param processedEntitiesPath + * Path to the file containing the names of the processed entities. + * @return A set of entity names. + */ + public static Set getProcessedEntities(String processedEntitiesPath) { + + Set res = new HashSet<>(); + try { + List lines = FileUtils.readLines(new File(processedEntitiesPath), UTF_8); + for (String line : lines) { + line = line.trim(); + if (!line.isEmpty()) { + res.add(line); + } + } + } catch (IOException e1) { + throw new RuntimeException(e1); + } + + return res; + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesWriter.java b/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesWriter.java new file mode 100644 index 0000000..d0fc506 --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/ProcessedEntitiesWriter.java @@ -0,0 +1,44 @@ +package cdlinter.utils; + +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; + +public class ProcessedEntitiesWriter { + + private FileOutputStream fos; + + public ProcessedEntitiesWriter(String processedEntitiesPath) { + this.fos = getFileOutputStream(processedEntitiesPath); + } + + private FileOutputStream getFileOutputStream(String processedEntitiesPath) { + try { + fos = new FileOutputStream(processedEntitiesPath, true); + } + catch ( + FileNotFoundException e) { + System.out.println("Path to processed entities not found: "+ processedEntitiesPath); + return null; + } + + return fos; + } + + public void write(String entityName) { + try { + fos.write(entityName.getBytes()); + fos.write("\n".getBytes()); + } catch (IOException e) { + e.printStackTrace(); + } + } + + public void close() { + try { + fos.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/cd-linter-code/src/main/java/cdlinter/utils/ResourceReader.java b/cd-linter-code/src/main/java/cdlinter/utils/ResourceReader.java new file mode 100644 index 0000000..c5c424c --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/ResourceReader.java @@ -0,0 +1,48 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package cdlinter.utils; + +import static java.lang.String.format; + +import java.io.File; +import java.io.IOException; +import java.net.URL; +import java.nio.charset.Charset; + +import cdlinter.templates.TemplateGeneration; +import org.apache.commons.io.FileUtils; + +public class ResourceReader { + + public static File getFileFromResources(String fileName) { + + ClassLoader classLoader = TemplateGeneration.class.getClassLoader(); + + URL resource = classLoader.getResource(fileName); + if (resource == null) { + throw new IllegalArgumentException(format("file '%s' not found!", fileName)); + } + return new File(resource.getFile()); + } + + public static String readContents(File template) { + try { + return FileUtils.readFileToString(template, Charset.defaultCharset()); + } catch (IOException e) { + throw new RuntimeException(e); + } + } +} \ No newline at end of file diff --git a/cd-linter-code/src/main/java/cdlinter/utils/TCIDateFormatter.java b/cd-linter-code/src/main/java/cdlinter/utils/TCIDateFormatter.java new file mode 100644 index 0000000..959e14f --- /dev/null +++ b/cd-linter-code/src/main/java/cdlinter/utils/TCIDateFormatter.java @@ -0,0 +1,104 @@ +package cdlinter.utils; + +import java.math.BigDecimal; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; +import java.util.Locale; +import java.util.TimeZone; + +public class TCIDateFormatter { + + public static Date convertToDate(String date_str) throws ParseException{ + + /* + * SimpleDateFormat simpleDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); + Date date1 = simpleDF.parse("2017-02-14T11:27:38+0200"); + Calendar cal = Calendar.getInstance(); + cal.setTime(date1); + int month = cal.get(Calendar.YEAR); + System.out.println(month); + System.exit(0); + */ + + + SimpleDateFormat simpleDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"); + Date date = simpleDF.parse(date_str); + return date; + } + + public static Date cvtToGmt( Date date ) + { + TimeZone tz = TimeZone.getDefault(); + Date ret = new Date( date.getTime() - tz.getRawOffset() ); + // if we are now in DST, back off by the delta. Note that we are checking the GMT date, this is the KEY. + if ( tz.inDaylightTime( ret )) + { + Date dstDate = new Date( ret.getTime() - tz.getDSTSavings() ); + // check to make sure we have not crossed back into standard time + // this happens when we are on the cusp of DST (7pm the day before the change for PDT) + if ( tz.inDaylightTime( dstDate )) + { + ret = dstDate; + } + } + return ret; + } + + public static Date stringToDate(String date_str, String pattern) throws ParseException { + SimpleDateFormat simpleDF = new SimpleDateFormat(pattern, Locale.US); // + Date date = simpleDF.parse(date_str); + return date; + } + + public static Date gitlabStringToDate(String date_str) throws ParseException { + String pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX"; + return stringToDate(date_str, pattern); + } + + //"" +/* public static Date gitlabIssueStringToDate(String date_str) throws ParseException { + SimpleDateFormat simpleDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US); //'+'HH:mm + Date date = simpleDF.parse(date_str); + return date; + }*/ + + public static long timeBetweenDates(Date date1, Date date2) { + long diff = date2.getTime() - date1.getTime(); + return diff; + } + + + public static void main(String [] args) throws ParseException{ + + BigDecimal m1 = new BigDecimal("5000"); + System.out.println(m1); + + Long num = new Long(5000); + Long num2 = new Long(46); + double n = (double) num/ (double) num2; + System.out.println(n); + + int n_int = Integer.parseInt(""+num); + + System.out.println(n_int); + + SimpleDateFormat simpleDF = new SimpleDateFormat("MMM dd, yyyy hh:mm:ss a");//"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"); + // simpleDF.setTimeZone(TimeZone.getTimeZone("GMT")); + Date date1 = simpleDF.parse("Jan 1, 2018 1:22:12 AM"); // "2019-01-16T08:21:33.079Z");//2017-03-29T03:48:59Z");//2017-02-14T11:27:38+0200"); + Calendar cal1 = Calendar.getInstance(); + cal1.setTime(date1); + int month = cal1.get(Calendar.YEAR); + int i = cal1.get(Calendar.WEEK_OF_YEAR); + System.out.println(i); + Date d = new Date(date1.getTime()); + System.out.println(d.toString()); + System.out.println(date1.toString()); + + Date date2 = simpleDF.parse("Dec 6, 2018 1:22:12 PM"); + + System.out.println(date1.compareTo(date2)); + + } +} diff --git a/cd-linter-code/src/main/resources/issue-templates/allow_failures.md b/cd-linter-code/src/main/resources/issue-templates/allow_failures.md new file mode 100644 index 0000000..b253b04 --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/allow_failures.md @@ -0,0 +1,23 @@ +GitLab config: Failures in job '' cannot fail the build +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> Every executed job should be able to fail the build. +If not, developers can miss or ignore the underlying issue, which adds technical debt and might result in problems later. + +**Problem**: We analyzed your project and found that the file [](#L) (line ) violates this principle. Failures of job `` (in stage ``), cannot fail the build: + +``` +: + ... + allow_failure: true + ... +``` + +**Suggested Fix:** To follow the principle, you should set ```allow_failure: false```. + +**Disclaimer:** +This issue has been automatically reported by [CD-Linter](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/issue-templates/insecure-credentials.md b/cd-linter-code/src/main/resources/issue-templates/insecure-credentials.md new file mode 100644 index 0000000..b7ea09e --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/insecure-credentials.md @@ -0,0 +1,20 @@ +GitLab config: Hard-coded credentials in '' +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> Credentials should not be hard-coded in the source code or in configuration files. +They are accessible by the public, which can be exploited to gain access to the project's resources (e.g., remote repository, deployment servers). + +**Problem**: We analyzed your project and found that the file [](#L) (line ) contains the following credentials: + +``` + +``` + +**Suggested Fix:** Remove the credentials from [](#L). Either configure them as variables in your GitLab environment or store them in a location that is not accessible by everybody. + +**Disclaimer:** +This issue has been automatically reported by [CD-Linter](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/issue-templates/job_creation.md b/cd-linter-code/src/main/resources/issue-templates/job_creation.md new file mode 100644 index 0000000..df40337 --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/job_creation.md @@ -0,0 +1,18 @@ +GitLab config: Job '' is not created when certain new commits are pushed +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> Every committed change has to be built through the entire CI/CD pipeline (meaning that every defined job should be executed). +If not, defects, that can only be reported during a certain job, might be discovered later in the development process (becoming harder to fix) or even discovered by users in production. + +TODO: This template does not seem to be complete! + +**Problem**: We analyzed your project and found that the file [``](/#L) (line ) violates this principle. Job `` is set to be created in stage `` if developers commit changes + +**Suggested Fix:** TODO: You can either add entries in .gitignore, skip the build in the commit message, or modify the config file (suggest a way to keep the exclusion but including all the other commits). + +**Disclaimer:** +This issue has been automatically reported by [xxx](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/issue-templates/job_retry.md b/cd-linter-code/src/main/resources/issue-templates/job_retry.md new file mode 100644 index 0000000..d49e521 --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/job_retry.md @@ -0,0 +1,22 @@ +GitLab config: Job '' is retried in case of failures +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> The build process has to be deterministic. Flaky behavior, e.g., tests that sometimes fail, should be avoided at all cost, because this causes maintenance issues. However, addressing this issue through retries after failures might not only hide the underlying problem, but makes issues also harder to debug when they only occur sometimes. + +**Problem**: We analyzed your project and found that the file [](#L) (line ) violates this principle. The job `` (in stage ``) is set to be retried in case of failures: + +``` +: + ... + retry: + ... +``` + +**Suggested Fix:** Remove ```retry: ``` from the job definition or consider adding the option ```when``` to specify failures cases (e.g., ```runner_system_failure```) in which the job can be retried without hiding flaky tests. + +**Disclaimer:** +This issue has been automatically reported by [xxx](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/issue-templates/manual_job.md b/cd-linter-code/src/main/resources/issue-templates/manual_job.md new file mode 100644 index 0000000..12f79d1 --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/manual_job.md @@ -0,0 +1,23 @@ +GitLab config: Job '' is manually triggered +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> The build process has to be fully automated. +Manual steps might introduce errors and delay the delivery of code changes to the clients. + +**Problem**: We analyzed your project and found that the job `` in your [GitLab config](#L) (line ) violates this principle, because it is set to be executed manually. + +``` +: + ... + when:manual + ... +``` + +**Suggested Fix:** Remove ```when:manual``` from the job definition to execute the job on every build. + +**Disclaimer:** +This issue has been automatically reported by [xxx](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/issue-templates/missing_version.md b/cd-linter-code/src/main/resources/issue-templates/missing_version.md new file mode 100644 index 0000000..215268a --- /dev/null +++ b/cd-linter-code/src/main/resources/issue-templates/missing_version.md @@ -0,0 +1,18 @@ +GitLab config: '' does not specify the exact version of all dependencies +--- +To fully benefit from the advantages of CI/CD, developers need to follow certain principles. Many of these principles have been introduced in the landmark book [Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation](https://www.oreilly.com/library/view/continuous-delivery-reliable/9780321670250/) and are nowadays widely accepted. One of these principles is: + +> A build configuration should always specify exact versions of external libraries to make a build reproduceable. +A lack of exact versions can cause problems when new versions of a dependency become available in the future that might introduce incompatible changes. + +**Problem**: We analyzed your project and found that the following dependency in [](#L) (line ) violates this principle, because it does not define an exact version (). + +* [](#L) + +**Suggested Fix:** Specify the exact version. + +**Disclaimer:** +This issue has been automatically reported by [xxx](xxx), a tool developed at the [xxx](xxx) that detects CI/CD violations in the GitLab CI/CD pipeline configuration. +We are currently evaluating the effectiveness of our tool and we are monitoring this issue. + +*Please up/downvote this issue to indicate whether you agree/disagree with the report.* \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/projects/ModioAB__base-image/.gitlab-ci.yml b/cd-linter-code/src/main/resources/projects/ModioAB__base-image/.gitlab-ci.yml new file mode 100644 index 0000000..5e125b3 --- /dev/null +++ b/cd-linter-code/src/main/resources/projects/ModioAB__base-image/.gitlab-ci.yml @@ -0,0 +1,228 @@ +--- +image: registry.gitlab.com/modioab/base-image/fedora-31/container:master +stages: + - first + - second + - build + - publish + - deploy + +variables: + # Podman defaults to OCI images, since 2019-02-15+ onwards, gitlab registry + # fails to work properly with the default `oci` images. + # TODO: Test & bug-report this + BUILDAH_FORMAT: docker + +before_script: + - make -f build.mk login + - 'docker info ||:' + - 'podman info ||:' + + +container:29: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '29' + script: + - make -C container build test publish + + +container:f31: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '31' + script: + - make -C container build test publish + + +build-image-29: + stage: build + tags: + - x86_64 + script: + - make -C build-fedora-29 build-publish + + +build-image:f31: + stage: build + tags: + - x86_64 + script: + - make -C build-fedora-31 build-publish + + +python3-image:29: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '29' + script: + - make -C python3-image build-publish + + +python3:f31: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '31' + script: + - make -C python3-image build-publish + +jstest:f31: + stage: second + tags: + - x86_64 + script: + - make -C jstest build-publish + + +debian9-firmware: + stage: build + tags: + - x86_64 + script: + - make -C debian9-firmware build-publish + + +debian10-firmware: + stage: build + tags: + - x86_64 + script: + - make -C debian10-firmware build-publish + +nodejs-image:29: + stage: second + variables: + FEDORA_ROOT_RELEASE: '29' + tags: + - x86_64 + script: + - make -C nodejs-image build-publish + + +nodejs:f31: + stage: second + variables: + FEDORA_ROOT_RELEASE: '31' + tags: + - x86_64 + script: + - make -C nodejs-image build-publish + + +nginx:29: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '29' + script: + - make -C nginx build-publish + + +nginx:f31: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '31' + script: + - make -C nginx build-publish + + +mongodb: + stage: build + tags: + - x86_64 + script: + - make -C mongodb build-publish + + +meteor-image-29: + stage: second + tags: + - x86_64 + script: + - make -C meteor-fedora-29 build-publish + + +meteor:f31: + stage: second + tags: + - x86_64 + variables: + FEDORA_ROOT_RELEASE: '31' + script: + - make -C meteor-image build-publish + + +c-image-29: + variables: + FEDORA_ROOT_RELEASE: '29' + stage: second + tags: + - x86_64 + script: + - make -C c-image build-publish + + +c-image:f31: + variables: + FEDORA_ROOT_RELEASE: '31' + stage: second + tags: + - x86_64 + script: + - make -C c-image build-publish + + +go-image:29: + stage: second + variables: + FEDORA_ROOT_RELEASE: '29' + tags: + - x86_64 + script: + - make -C go-image build-publish + + +go-image:f31: + stage: second + variables: + FEDORA_ROOT_RELEASE: '31' + tags: + - x86_64 + script: + - make -C go-image build-publish + + +rust-cross: + stage: build + tags: + - x86_64 + script: + - make -C rust-cross build-publish + + +trigger_build: + before_script: + - 'true' + stage: deploy + only: + - master + dependencies: [] + script: + - curl -X POST -F token=$API_KEY -F ref=master https://gitlab.com/api/v3/projects/1282148/trigger/builds + - curl -X POST -F token=$SUBMIT_KEY -F ref=master https://gitlab.com/api/v3/projects/1282147/trigger/builds + - curl -X POST -F token=$CONTAINER_KEY -F ref=master https://gitlab.com/api/v3/projects/1528552/trigger/builds + - curl -X POST -F token=$HOUSEKEEPER_KEY -F ref=master https://gitlab.com/api/v4/projects/5299264/trigger/pipeline + - curl -X POST -F token=$SSHCA_KEY -F ref=master https://gitlab.com/api/v4/projects/7519281/trigger/pipeline + - curl -X POST -F token=$JOURNAL_GELF_KEY -F ref=master https://gitlab.com/api/v4/projects/9359556/trigger/pipeline + diff --git a/cd-linter-code/src/main/resources/projects/assembl__assembl/.gitlab-ci.yml b/cd-linter-code/src/main/resources/projects/assembl__assembl/.gitlab-ci.yml new file mode 100644 index 0000000..116c88f --- /dev/null +++ b/cd-linter-code/src/main/resources/projects/assembl__assembl/.gitlab-ci.yml @@ -0,0 +1,71 @@ +image: docker:19.03.1 + +services: + - name: docker:19.03.1 + alias: docker + +variables: + DOCKER_TLS_CERTDIR: "/certs" + assembl_docker_tag: $CI_COMMIT_REF_SLUG + +stages: + - build + - test + - deploy-crashtest + - push + +before_script: + - docker info + - apk add make git + - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY + - rm -rf /tmp/apoti || true + - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/assembl/apoti.git /tmp/apoti + +.make_command: &make_command > + set -x && make -C /tmp/apoti/containers APOTI_DOCKER_TAG=${assembl_docker_tag} APOTI_DOCKER_MISC_IMAGE_PATH_BASE=registry.gitlab.com/assembl/assembl/ci-misc ASSEMBL_GIT_REF=${CI_COMMIT_REF_NAME} assembl-build assembl-async-build + +# build, then test, then push + +build: + stage: build + script: + - *make_command + +test-front-a: + stage: test + script: + - docker run -d --rm --name test-${CI_JOB_ID}-a registry.gitlab.com/assembl/assembl/assembl:${assembl_docker_tag} + - docker exec -t test-${CI_JOB_ID}-a /bin/bash -c "source /venv/bin/activate; cd /app/assembl/static2; yarn jest --coverage --maxWorkers 2" + - docker kill test-${CI_JOB_ID}-a +test-front-b: + stage: test + when: manual + script: + - docker run -d --rm --name test-${CI_JOB_ID}-b registry.gitlab.com/assembl/assembl/assembl:${assembl_docker_tag} + - docker exec -t test-${CI_JOB_ID}-b /bin/bash -c "source /venv/bin/activate; cd /app/assembl/static2; yarn run eslint" + - docker kill test-${CI_JOB_ID}-b + +test-front-c: + stage: test + script: + - docker run -d --rm --name test-${CI_JOB_ID}-c registry.gitlab.com/assembl/assembl/assembl:${assembl_docker_tag} + - docker exec -t test-${CI_JOB_ID}-c /bin/bash -c "source /venv/bin/activate; cd /app/assembl/static2; yarn run stylelint" + - docker kill test-${CI_JOB_ID}-c + +test-front-d: + stage: test + script: + - docker run -d --rm --name test-${CI_JOB_ID}-d registry.gitlab.com/assembl/assembl/assembl:${assembl_docker_tag} + - docker exec -t test-${CI_JOB_ID}-d /bin/bash -c "source /venv/bin/activate; cd /app/assembl/static2; yarn run flow --quiet" + - docker kill test-${CI_JOB_ID}-d + +deploy-crashtest: + stage: deploy-crashtest + script: + - echo "Well hello ~" + +push-to-registry: + stage: push + script: + - make -C /tmp/apoti/containers APOTI_DOCKER_TAG=${assembl_docker_tag} APOTI_DOCKER_MISC_IMAGE_PATH_BASE=registry.gitlab.com/assembl/assembl/ci-misc ASSEMBL_GIT_REF=${CI_COMMIT_REF_NAME} assembl-push assembl-async-push + diff --git a/cd-linter-code/src/main/resources/projects/assembl__assembl/requirements.txt b/cd-linter-code/src/main/resources/projects/assembl__assembl/requirements.txt new file mode 100644 index 0000000..306b44d --- /dev/null +++ b/cd-linter-code/src/main/resources/projects/assembl__assembl/requirements.txt @@ -0,0 +1 @@ +blablacar diff --git a/cd-linter-code/src/main/resources/projects/redmic-project__client__web/.gitlab-ci.yml b/cd-linter-code/src/main/resources/projects/redmic-project__client__web/.gitlab-ci.yml new file mode 100644 index 0000000..a6a9279 --- /dev/null +++ b/cd-linter-code/src/main/resources/projects/redmic-project__client__web/.gitlab-ci.yml @@ -0,0 +1,147 @@ +include: + - project: 'redmic-project/gitlab-ci-templates' + ref: master + file: '/license-listing.yml' + - project: 'redmic-project/gitlab-ci-templates' + ref: master + file: '/packaging.yml' + - project: 'redmic-project/gitlab-ci-templates' + ref: master + file: '/deployment.yml' + +stages: + - pre-build + - test-code + - build + - license-list + - package + - test-package + - deploy + - test-deploy + +variables: + STACK: client + WEB_BUILD_IMAGE_NAME: registry.gitlab.com/redmic-project/docker/web-build + WEB_BUILD_IMAGE_TAG: latest + +.web-build: + image: ${WEB_BUILD_IMAGE_NAME}:${WEB_BUILD_IMAGE_TAG} + cache: + paths: + - node_modules/ + - public/javascript/redmic-widgets/node_modules/ + - public/javascript/templates/node_modules/ + - public/stylesheets/node_modules/ + policy: pull + +.prepare-dependencies: + extends: .web-build + variables: + GIT_SUBMODULE_STRATEGY: normal + before_script: + - type yarn grunt java + - yarn install || yarn install + +prepare-unbuilt-version: + stage: pre-build + extends: .prepare-dependencies + script: + - grunt preBuild + only: + - branches + except: + - master + - schedules + cache: + policy: pull-push + artifacts: + name: ${CI_JOB_NAME}_${CI_COMMIT_REF_NAME} + expire_in: 1 week + paths: + - node_modules/ + - public/javascript/proj4js/dist/proj4.js + - public/javascript/redmic-widgets/src/app/ + - public/javascript/templates/dist/ + - public/stylesheets/style.styl + - public/stylesheets/src/ + - public/stylesheets/submodules/ + +run-unit-tests: + stage: test-code + extends: .web-build + script: + - grunt test | tee test.out + - coverage=$(grep '^All files.*' test.out | cut -d '|' -f 2 | tr -d ' ') + - echo "Coverage - ${coverage}%" + - rm test.out + only: + - branches + except: + - master + - schedules + +run-modules-functional-tests: + stage: test-code + extends: .web-build + script: + - npm start & + - grunt test-functional-local --functionalSuites=tests/functional/modules/**/!\(*Script\).js --headless + only: + - branches + except: + - master + - schedules + +prepare-built-version: + stage: build + extends: .prepare-dependencies + script: + - grunt + only: + - branches + except: + - schedules + dependencies: [] + artifacts: + name: ${CI_JOB_NAME}_${CI_COMMIT_REF_NAME} + expire_in: 1 month + paths: + - dist*.tar.gz + +.deploy: + script: + - > + deploy.sh IMAGE_NAME=${IMAGE_NAME} IMAGE_TAG=${IMAGE_TAG} COMPOSE_FILE=${COMPOSE_FILE} + PUBLIC_HOSTNAME=${PUBLIC_HOSTNAME} OAUTH_URL=${OAUTH_URL} OAUTH_CLIENT_SECRET=${OAUTH_CLIENT_SECRET} + API_URL=${API_URL} PRODUCTION=${PRODUCTION} + environment: + url: https://${PUBLIC_HOSTNAME} + +.deploy-development: + variables: + PRODUCTION: 0 + +.deploy-production: + variables: + PRODUCTION: 1 + +run-functional-tests: + stage: test-deploy + extends: .prepare-dependencies + script: + - > + grunt test-functional-local --serverUrl="https://${DEV_PUBLIC_HOSTNAME}" --user="${REDMIC_TEST_USER}" + --pass="${REDMIC_TEST_PASS}" --role=administrator --suitesGroups="${SUITES_GROUPS}" --headless + only: + - schedules + cache: + paths: + - node_modules/ + dependencies: [] + artifacts: + name: ${CI_JOB_NAME}_${CI_COMMIT_REF_NAME} + expire_in: 1 month + when: always + paths: + - 'test_reports/test-functional-local*' + diff --git a/cd-linter-code/src/main/resources/projects/swe-nrb__sbp-begreppslista/.gitlab-ci.yml b/cd-linter-code/src/main/resources/projects/swe-nrb__sbp-begreppslista/.gitlab-ci.yml new file mode 100644 index 0000000..98ad11f --- /dev/null +++ b/cd-linter-code/src/main/resources/projects/swe-nrb__sbp-begreppslista/.gitlab-ci.yml @@ -0,0 +1,41 @@ +stages: + - pre-build + - build + - deploy +download_deps_npm: + stage: pre-build + tags: + - npm + script: + - npm install + artifacts: + paths: + - node_modules/ + +run_infopack: + stage: build + dependencies: + - download_deps_npm + tags: + - npm + script: + - npm start + artifacts: + name: output_files + paths: + - output_files/ + +pages: + stage: deploy + dependencies: + - download_deps_npm + tags: + - npm + script: + - npm start + artifacts: + paths: + - public + only: + - tags + diff --git a/cd-linter-code/src/main/resources/sampleDataset.csv b/cd-linter-code/src/main/resources/sampleDataset.csv new file mode 100644 index 0000000..39c10fe --- /dev/null +++ b/cd-linter-code/src/main/resources/sampleDataset.csv @@ -0,0 +1,5 @@ +project,owner,language,hasYaml,hasRequirements,hasPoms,stages,hasBuildStage,hasTestStage,hasDeployStage,hasCustomDeployStage +ModioAB/base-image,ModioAB,Python,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,TRUE +swe-nrb/sbp-begreppslista,swe-nrb,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +redmic-project/client/web,redmic-project,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +assembl/assembl,assembl,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE \ No newline at end of file diff --git a/cd-linter-code/src/main/resources/security-keywords.txt b/cd-linter-code/src/main/resources/security-keywords.txt new file mode 100644 index 0000000..ab7c029 --- /dev/null +++ b/cd-linter-code/src/main/resources/security-keywords.txt @@ -0,0 +1,25 @@ +creds? + +tokens? + +\w*secret\w*? + +\w*login\w* + +\w*secure\w* + +o?auth0? + +\w*key\w* + +\w*password\w* + +pwd? + +pass(wd|phrase)? + +\w*registry\w* + +ssh_connect + +encryption \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/antipattern/readers/CIAntiPatternCSVReaderTest.java b/cd-linter-code/src/test/java/cdlinter/antipattern/readers/CIAntiPatternCSVReaderTest.java new file mode 100644 index 0000000..bd34414 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/antipattern/readers/CIAntiPatternCSVReaderTest.java @@ -0,0 +1,78 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.antipattern.readers; + +import static org.junit.Assert.*; + +import java.util.HashSet; +import java.util.Set; + +import cdlinter.antipattern.entities.CIAntiPattern; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class CIAntiPatternCSVReaderTest { + + private CIAntiPatternCSVReader reader; + + @Before + public void setUp() throws Exception { + String input = "src/test/resources/occurrences.csv"; + reader = new CIAntiPatternCSVReader(input); + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testRead() { + Set antipatterns = reader.read(); + + assertEquals(10, antipatterns.size()); + Set expectedAntipatterns = generateAntipatterns(); + assertEquals(expectedAntipatterns,antipatterns); + } + + private Set generateAntipatterns(){ + + Set antipatterns = new HashSet<>(); + + for(int i = 0; i < 10; i++) { + String id = "anti-" + i; + String remoteRepoLink = "https://gitlab.com/psono/psono-server"; + String localCfgLink = "psono/psono-server"; + String remoteCfgLink = "https://gitlab.com/psono/psono-server/.gitlab-ci.yml"; + String project = "psono/psono-server"; + String stage = "test"; + String category = "versioning"; + String subCategory = "missing"; + String entity = "bla"; + String message = "look at this smell"; + String context = ""; + String cfgFileName = ".gitlab-ci.yml"; + String lineNumber = "34"; + CIAntiPattern antiPattern = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, + project, stage, category, subCategory, entity, message, context, lineNumber, + cfgFileName); + antipatterns.add(antiPattern); + } + + return antipatterns; + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriterTest.java b/cd-linter-code/src/test/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriterTest.java new file mode 100644 index 0000000..f2ed919 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/antipattern/writers/CIAntiPatternCSVWriterTest.java @@ -0,0 +1,130 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.antipattern.writers; + +import static org.junit.Assert.assertEquals; + +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import cdlinter.antipattern.entities.CIAntiPattern; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class CIAntiPatternCSVWriterTest { + + private CIAntiPatternCSVWriter ciWriter; + private String output; + private CSVParser parser; + private List generatedAntipatterns; + + @Before + public void setUp() throws Exception { + output = "src/test/resources/occurrences.csv"; + ciWriter = new CIAntiPatternCSVWriter(output); + generatedAntipatterns = generateAntipatterns(); + ciWriter.write(generatedAntipatterns); + ciWriter.close(); + FileReader reader = new FileReader(new File(output)); + parser = CSVParser.parse(reader, CSVFormat.DEFAULT.withHeader()); + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testSize() throws IOException { + List headerNames = parser.getHeaderNames(); + List records = parser.getRecords(); + assertEquals(10, records.size()); + } + + @Test + public void testHeader() throws IOException { + List headerNames = parser.getHeaderNames(); + List records = parser.getRecords(); + CSVRecord csvRecord = records.get(0); + List expectedHeader = Arrays.asList(CIAntiPatternCSVWriter.headerFields); + assertEquals(expectedHeader, headerNames); + } + + @Test + public void testWrittenAntipatterns() throws IOException { + List records = parser.getRecords(); + List antipatterns = new ArrayList<>(); + for(CSVRecord csvRecord : records) { + + String id = csvRecord.get("ID"); + String remoteRepoLink = csvRecord.get("Repository Link"); + String remoteCfgLink = csvRecord.get("Remote Configuration File Link"); + String localCfgLink = csvRecord.get("Local Configuration File Link"); + String project = csvRecord.get("Project"); + String stage = csvRecord.get("Stage"); + String category = csvRecord.get("Category"); + String subCategory = csvRecord.get("Sub-Category"); + String entity = csvRecord.get("Entity"); + String message = csvRecord.get("Message"); + String context = ""; + String lineNumber = csvRecord.get("Line-Number"); + String cfgFileName = csvRecord.get("Configuration File Name"); + + CIAntiPattern ca = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, project, stage, category, + subCategory, entity, message, context, lineNumber, cfgFileName); + antipatterns.add(ca); + + //System.out.println(ca); + } + + assertEquals(generatedAntipatterns, antipatterns); + } + + private List generateAntipatterns(){ + + List antipatterns = new ArrayList<>(); + + for(int i = 0; i < 10; i++) { + String id = "anti-" + i; + String remoteRepoLink = "https://gitlab.com/psono/psono-server"; + String localCfgLink = "psono/psono-server"; + String remoteCfgLink = "https://gitlab.com/psono/psono-server/.gitlab-ci.yml"; + String project = "psono/psono-server"; + String stage = "test"; + String category = "versioning"; + String subCategory = "missing"; + String entity = "bla"; + String message = "look at this smell"; + String context = ""; + String cfgFileName = ".gitlab-ci.yml"; + String lineNumber = "34"; + CIAntiPattern antiPattern = new CIAntiPattern(id, remoteRepoLink, remoteCfgLink, localCfgLink, + project, stage, category, subCategory, entity, message, context, lineNumber, + cfgFileName); + antipatterns.add(antiPattern); + } + + return antipatterns; + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/datamining/gitlab/GitLabMinerTest.java b/cd-linter-code/src/test/java/cdlinter/datamining/gitlab/GitLabMinerTest.java new file mode 100644 index 0000000..8276140 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/datamining/gitlab/GitLabMinerTest.java @@ -0,0 +1,196 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.datamining.gitlab; + +import static org.junit.Assert.*; + +import java.io.FileReader; +import java.io.FileWriter; +import java.util.List; +import java.util.Set; + +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; +import org.junit.After; +import org.junit.Before; +import org.junit.Ignore; +import org.junit.Test; + +import cdlinter.datamining.gitlab.entities.Commit; +import cdlinter.datamining.gitlab.entities.Contributor; +import cdlinter.datamining.gitlab.entities.Issue; + +public class GitLabMinerTest { + + private GitLabMiner gm; + + @Before + public void setUp() throws Exception { + String pvtToken = "null"; + gm = new GitLabMiner(pvtToken); + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testMineForkedProjects() throws Exception { + String input = "src/test/resources/platform/projects.csv"; + FileReader reader = new FileReader(input); + String output = "src/test/resources/platform/projectsWithFork.csv"; + FileWriter writer = new FileWriter(output); + gm.mineForkedProjects(reader, writer); + } + + @Ignore + @Test + public void testUpdateIssueStats() throws Exception { + + String input = "src/test/resources/platform/issues_200204-105339.csv"; + FileReader reader = new FileReader(input); + String output = "src/test/resources/platform/issues_update.csv"; + FileWriter writer = new FileWriter(output); + gm.updateIssueStats(reader, writer); + + CSVParser parser = CSVParser.parse(new FileReader(output), CSVFormat.DEFAULT.withHeader()); + List records = parser.getRecords(); + int size = records.size(); + assertEquals(10,size); + + CSVRecord csvRecord = records.get(0); + String linkToIssue = csvRecord.get("linkToOpenedIssue"); + String expectedLink = "https://gitlab.com/mauriciobaeza/empresa-libre/issues/368"; + assertEquals(expectedLink, linkToIssue); + } + + @Ignore + @Test + public void testUpdateFixingCommitStats() throws Exception { + + String input = "src/test/resources/platform/issues_200205-180807.csv"; + FileReader reader = new FileReader(input); + String output = "src/test/resources/platform/issues_updateFix.csv"; + FileWriter writer = new FileWriter(output); + gm.updateFixingCommitStats(reader, writer); + + CSVParser parser = CSVParser.parse(new FileReader(output), CSVFormat.DEFAULT.withHeader()); + List records = parser.getRecords(); + int size = records.size(); + assertEquals(10,size); + + CSVRecord csvRecord = records.get(0); + String linkToIssue = csvRecord.get("linkToOpenedIssue"); + String expectedLink = "https://gitlab.com/mauriciobaeza/empresa-libre/issues/368"; + assertEquals(expectedLink, linkToIssue); + } + + @Ignore + @Test + public void testGetCommits() { + String projectId = "deltares%2Frtc-tools"; + String updatedAfter = "2019-08-16T06:47:23.067Z"; + List commits = gm.getCommits(projectId, updatedAfter); + + assertEquals(76, commits.size()); + } + + @Test + public void testGetCommit() { + String projectId = "agrumery%2FaGrUM"; + String sha = "52a4c77a6b89a755ed6f51307cd881edd01d911f"; + + Commit commit = gm.getCommit(projectId, sha); + + assertNotNull(commit); + + String authored_date = commit.getAuthored_date(); + assertEquals("2019-12-09T13:52:24.000+00:00", authored_date); + + sha = "bla"; + commit = gm.getCommit(projectId, sha); + + assertNull(commit); + } + + @Ignore + @Test + public void testGetContributorsFromCommits() { + String projectId = "deltares%2Frtc-tools"; + String updatedAfter = "2019-08-16T06:47:23.067Z"; + List commits = gm.getCommits(projectId, updatedAfter); + + Set contributorsFromCommits = gm.getContributorsFromCommits(commits); + + System.out.println("----"); + for(Contributor c: contributorsFromCommits) { + System.out.println(c.getEmail()); + } + + assertEquals(4, contributorsFromCommits.size()); + } + + @Test + public void testGetContributors() { + String projectId = "deltares%2Frtc-tools"; + + List contributors = gm.getContributors(projectId); + + System.out.println("----"); + for(Contributor c: contributors) { + System.out.println(c.getEmail()); + } + + assertEquals(12, contributors.size()); + } + + @Ignore + @Test + public void testCheckForkedFrom() { + String projectId = "jimmynash%2Fprairiebowmen"; + String checkForkedFrom = gm.checkForkedFrom(projectId); + assertEquals("TRUE", checkForkedFrom); + + projectId = "xxx%2Fgame"; + checkForkedFrom = gm.checkForkedFrom(projectId); + assertEquals("FALSE", checkForkedFrom); + } + + + + @Test + public void testIssueById() throws Exception { + + String projectId = "deltares%2Frtc-tools"; + String issueId = "1117"; + + Issue issue = gm.getIssueById(projectId, issueId); + + System.out.println(issue.getCreated_at()); + + assertEquals(issueId, issue.getIid()); + assertEquals("closed", issue.getState()); + assertEquals(0, issue.getDownvotes()); + + + String fakeIssueId = "null"; + Issue notExtIssue = gm.getIssueById(projectId, fakeIssueId ); + + assertEquals(null, notExtIssue); + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetectorTest.java new file mode 100644 index 0000000..f7d3531 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLAllowFailureDetectorTest.java @@ -0,0 +1,94 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.Test; + +import java.util.List; +import java.util.Map; + +import static org.junit.Assert.*; + +public class GitLabYAMLAllowFailureDetectorTest { + + private static LintProject project; + + @BeforeClass + public static void setBeforeClass() throws Exception { + project = new LintProject(); + project.setRepository("gitlab-org/omnibus-gitlab"); + project.setLocalPath("src/test/resources/gitlabyaml/retryallowfailure"); + + + } + + @Ignore + @Test + public void test() { + GitLabYAMLAllowFailureDetector det = new GitLabYAMLAllowFailureDetector(project); + GitLabYAML gitLabYAML = det.getGitLabYAML(project); + Map jobs = gitLabYAML.getJobs(); + + + System.out.println("here"); + for(String name: jobs.keySet()) { + System.out.println(name); + } + + } + + @Ignore + @Test + public void lint() throws Exception { + List antiPatterns = new GitLabYAMLAllowFailureDetector(project).lint(); + + System.out.println("Size: " + antiPatterns.size()); + + for(CIAntiPattern ap: antiPatterns) { + System.out.println(ap.getId()); + } + + Boolean oracle = antiPatterns.size() == 1 + && antiPatterns.get(0).getProject().equals(project.getName()) + && antiPatterns.get(0).getEntity().equals("test") + && antiPatterns.get(0).getCategory().equals("Job-Allow-Failure") + ; + + assertEquals(oracle, true); + } + + @Ignore + @Test + public void lint2() throws Exception { + List antiPatterns = new GitLabYAMLRetryDetector(project).lint(); + + System.out.println("Size: " + antiPatterns.size()); + + for(CIAntiPattern ap: antiPatterns) { + System.out.println(ap.getId()); + } + + Boolean oracle = antiPatterns.size() == 1 + && antiPatterns.get(0).getProject().equals(project.getName()) + && antiPatterns.get(0).getEntity().equals("test") + && antiPatterns.get(0).getCategory().equals("Job-Allow-Failure") + ; + + assertEquals(oracle, true); + } + + + + @Ignore + @Test + public void checkLineNumber() throws Exception { + List antiPatterns = new GitLabYAMLAllowFailureDetector(project).lint(); + String lineNumber = antiPatterns.get(0).getLineNumber(); + + assertEquals("20", lineNumber); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibrariesTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibrariesTest.java new file mode 100644 index 0000000..78634b4 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLDuplicateLibrariesTest.java @@ -0,0 +1,56 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.detectors.gitlabyaml.detectors; + +import static org.junit.Assert.*; + +import java.util.List; + +import cdlinter.antipattern.entities.CIAntiPattern; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import cdlinter.project.entities.LintProject; + +public class GitLabYAMLDuplicateLibrariesTest { + + private static LintProject project; + + @Before + public void setUp() throws Exception { + project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/duplicate"); + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testLint() throws Exception { + List antiPatterns = new GitLabYAMLDuplicateLibraries(project).lint(); + + assertEquals(3, antiPatterns.size()); + + String firstMessage = "mvn install:install-file -Dfile=blabla -DgroupId=hello"; + assertEquals(firstMessage, antiPatterns.get(0).getMessage()); + + String thirdMessage = "mvn deploy:deploy-file -Dfile=blabla -DgroupId=hello"; + assertEquals(thirdMessage, antiPatterns.get(2).getMessage()); + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetectorTest.java new file mode 100644 index 0000000..21988e7 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLManualDetectorTest.java @@ -0,0 +1,28 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class GitLabYAMLManualDetectorTest { + + private static LintProject project; + private static List antiPatterns; + + @BeforeClass + public static void setBeforeClass() throws Exception { + project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/manual"); + antiPatterns = new GitLabYAMLManualDetector(project).lint(); + } + + @Test + public void numberOfAntiPatterns() { + assertEquals(2, antiPatterns.size()); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLMergeKeyTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLMergeKeyTest.java new file mode 100644 index 0000000..05d3812 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLMergeKeyTest.java @@ -0,0 +1,37 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import cdlinter.project.linters.ProjectLinter; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; + +public class GitLabYAMLMergeKeyTest { + + @Test + public void lint() throws Exception { + LintProject project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/merge_key"); + project.setLanguage("blu"); + List antiPatterns = ProjectLinter.getCIAntiPatterns(project); + Boolean oracle = antiPatterns.size() == 4 + && antiPatterns.get(0).getEntity().equals("test:postgres") + && antiPatterns.get(0).getCategory().equals("Job-Allow-Failure") + && antiPatterns.get(0).getLineNumber().equals("4") + && antiPatterns.get(1).getEntity().equals("test:sqlite") + && antiPatterns.get(1).getCategory().equals("Job-Allow-Failure") + && antiPatterns.get(1).getLineNumber().equals("32") + && antiPatterns.get(2).getEntity().equals("test:postgres") + && antiPatterns.get(2).getCategory().equals("Job-Retry") + && antiPatterns.get(2).getLineNumber().equals("1") + && antiPatterns.get(3).getEntity().equals("test:postgres") + && antiPatterns.get(3).getCategory().equals("Manual-Job") + && antiPatterns.get(3).getLineNumber().equals("4") + ; + + assertEquals(true, oracle); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetectorTest.java new file mode 100644 index 0000000..187e8d5 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLOnlyExceptDetectorTest.java @@ -0,0 +1,28 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class GitLabYAMLOnlyExceptDetectorTest { + + private static LintProject project; + private static List antiPatterns; + + @BeforeClass + public static void setBeforeClass() throws Exception { + project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/onlyexcept"); + antiPatterns = new GitLabYAMLOnlyExceptDetector(project).lint(); + } + + @Test + public void numberOfAntiPatterns() { + assertEquals(9, antiPatterns.size()); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetectorTest.java new file mode 100644 index 0000000..3eff60c --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLRetryDetectorTest.java @@ -0,0 +1,38 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class GitLabYAMLRetryDetectorTest { + + private static LintProject project; + + @BeforeClass + public static void setBeforeClass() { + project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/retryallowfailure"); + } + + @Ignore + @Test + public void lint() throws Exception { + List antiPatterns = new GitLabYAMLRetryDetector(project).lint(); + Boolean oracle = antiPatterns.size() == 2 + && antiPatterns.get(0).getProject().equals(project.getName()) + && antiPatterns.get(0).getEntity().equals("clean-compile") + && antiPatterns.get(0).getCategory().equals("Job-Retry") + && antiPatterns.get(1).getProject().equals(project.getName()) + && antiPatterns.get(1).getEntity().equals("verify") + && antiPatterns.get(1).getCategory().equals("Job-Retry") + ; + + assertEquals(oracle, true); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetectorTest.java new file mode 100644 index 0000000..ed5ede4 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/detectors/GitLabYAMLVulnerabilityDetectorTest.java @@ -0,0 +1,39 @@ +package cdlinter.detectors.gitlabyaml.detectors; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class GitLabYAMLVulnerabilityDetectorTest { + + private static LintProject project; + private static List antiPatterns; + + @BeforeClass + public static void setBeforeClass() throws Exception { + project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/vulnerability"); + antiPatterns = new GitLabYAMLVulnerabilityDetector(project).lint(); + } + + + @Test + public void numberOfAntiPatterns() { + assertEquals(6, antiPatterns.size()); + } + +// // public void +// @Test +// public void testTokens() { +// System.out.println("----"); +// for(CIAntiPattern ci : antiPatterns) { +// System.out.println(ci.getId()); +// } +// } + +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParserTest.java new file mode 100644 index 0000000..5c50690 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/gitlabyaml/parsers/GitLabYAMLParserTest.java @@ -0,0 +1,130 @@ +package cdlinter.detectors.gitlabyaml.parsers; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.entities.Job; +import cdlinter.detectors.gitlabyaml.entities.RetryWhen; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import static org.junit.Assert.*; + +public class GitLabYAMLParserTest { + + private static GitLabYAML yaml; + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + String pomPath = "src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci2.yml"; + byte[] encoded = Files.readAllBytes(Paths.get(pomPath)); + String content = new String(encoded, StandardCharsets.UTF_8); + GitLabYAMLParser parser = new GitLabYAMLParser(); + yaml = parser.parse(content); + } + + @Test + public void testIncludeStatements() { + ArrayList include = yaml.getInclude(); + + ArrayList expected = new ArrayList<>(); + expected.add("/templates/.gitlab-ci-template.yml"); + expected.add("hello"); + expected.add("halo"); + + assertEquals(3, include.size()); + assertEquals(expected, include); + } + + + @Test + public void cleanCompileSet() { + Map jobs = yaml.getJobs(); + Job job = jobs.get("clean-compile"); + + Boolean oracle = job.getStage().equals("build") + && job.getBefore_script().equals(List.of("mvn clean")) + && job.getScript().equals(List.of("git checkout master", "mvn compile")) + && !job.getAllow_failure() + && job.getRetry().getMax() == 1 + && job.getRetry().getWhen().equals(RetryWhen.always); + + assertEquals(oracle, true); + } + + + @Test + public void extractStagesTest() { + List stages = yaml.getStages(); + + List oracle = new ArrayList<>(); + oracle.add("build"); + oracle.add("test"); + + assertEquals(oracle, stages); + } + + + + @Test + public void testSet() { + Map jobs = yaml.getJobs(); + Job job = jobs.get("test"); + + Boolean oracle = job.getStage().equals("test") + && job.getBefore_script().equals(List.of()) + && job.getScript().equals(List.of("mvn test")) + && job.getAllow_failure() + && job.getRetry().getMax() == 0 + && job.getRetry().getWhen().equals(RetryWhen.always); + + assertEquals(oracle, true); + } + + @Test + public void verifySet() { + Map jobs = yaml.getJobs(); + Job job = jobs.get("verify"); + + Boolean oracle = job.getStage().equals("test") + && job.getBefore_script().equals(List.of()) + && job.getScript().equals(List.of("mvn verify")) + && !job.getAllow_failure() + && job.getRetry().getMax() == 2 + && job.getRetry().getWhen().equals(RetryWhen.stuck_or_timeout_failure); + + assertEquals(oracle, true); + } + + @Test + public void emptyParse() { + GitLabYAMLParser parser = new GitLabYAMLParser(); + GitLabYAML yml = parser.parse(""); + + assert yml.getJobs().size() == 0; + } + + @Test + public void testOnly() throws Exception{ + String pomPath = "src/test/resources/gitlabyaml/only/.gitlab-ci.yml"; + byte[] encoded = Files.readAllBytes(Paths.get(pomPath)); + String content = new String(encoded, StandardCharsets.UTF_8); + GitLabYAMLParser parser = new GitLabYAMLParser(); + GitLabYAML onlyYaml = parser.parse(content); + } + + @Test + public void testExcept() throws Exception{ + String pomPath = "src/test/resources/gitlabyaml/except/.gitlab-ci.yml"; + byte[] encoded = Files.readAllBytes(Paths.get(pomPath)); + String content = new String(encoded, StandardCharsets.UTF_8); + GitLabYAMLParser parser = new GitLabYAMLParser(); + GitLabYAML exceptYaml = parser.parse(content); + } + +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/pom/POMParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/pom/POMParserTest.java new file mode 100644 index 0000000..4605a05 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/pom/POMParserTest.java @@ -0,0 +1,74 @@ +package cdlinter.detectors.maven.pom; + +import cdlinter.detectors.maven.versioning.entities.Dependency; +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.HashMap; + +import static org.junit.Assert.*; + +public class POMParserTest { + + private static POM pom; + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + String pomPath = "src/test/resources/maven/versioning/example1/pom.xml"; + byte[] encoded = Files.readAllBytes(Paths.get(pomPath)); + String content = new String(encoded, StandardCharsets.UTF_8); + POMParser pomParser = new POMParser(); + pom = pomParser.parse(content); + } + + @Test + public void modulesSet() { + ArrayList modulesActual = pom.getModules(); + + ArrayList modulesExpected = new ArrayList<>(); + modulesExpected.add("core"); + modulesExpected.add("metrics"); + + assertEquals(modulesExpected, modulesActual); + } + + @Test + public void propertiesSet() { + + HashMap propertiesActual = pom.getProperties(); + + HashMap propertiesExpected = new HashMap<>(); + propertiesExpected.put("maven.compiler.source", "1.8"); + propertiesExpected.put("junit.version", "4.4"); + + assertEquals(propertiesExpected, propertiesActual); + } + + @Test + public void dependenciesSet() { + ArrayList actualDependencies = pom.getDependencies(); + + String name1 = "com.google.code.gson/gson"; + VersionSpecifier versionSpecifier1 = new VersionSpecifier(); + versionSpecifier1.setRaw("2.8.2"); + versionSpecifier1.setMatch("2.8.2"); + + String name2 = "junit/junit"; + VersionSpecifier versionSpecifier2 = new VersionSpecifier(); + versionSpecifier2.setRaw("4.4"); + versionSpecifier2.setMatch("4.4"); + + ArrayList expectedDependencies = new ArrayList<>(); + Dependency dep1 = new Dependency(name1, versionSpecifier1); + expectedDependencies.add(dep1); + Dependency dep2 = new Dependency(name2, versionSpecifier2); + expectedDependencies.add(dep2); + + assertEquals(expectedDependencies, actualDependencies); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetectorTest.java new file mode 100644 index 0000000..303e8bb --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVersionAntiPatternDetectorTest.java @@ -0,0 +1,46 @@ +package cdlinter.detectors.maven.versioning; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Test; +import java.util.List; + +import static org.junit.Assert.*; + +public class MavenVersionAntiPatternDetectorTest { + + private static List antiPatternList; + + @BeforeClass + public static void setBeforeClass() throws Exception { + String path = "src/test/resources/maven/versioning/example2"; + LintProject project = new LintProject(); + project.setLocalPath(path); + antiPatternList = new MavenVersionAntiPatternDetector(project).lint(); + } + + @Test + public void firstAntiPatternSet() { + CIAntiPattern actualAntiPattern = antiPatternList.get(0); + assertEquals("kuku/bla", actualAntiPattern.getEntity()); + } + + @Test + public void secondAntiPatternSet() { + CIAntiPattern actualAntiPattern = antiPatternList.get(1); + assertEquals("banana/banana", actualAntiPattern.getEntity()); + } + + @Test + public void thirdAntiPatternSet() { + CIAntiPattern actualAntiPattern = antiPatternList.get(2); + assertEquals("buh/buh", actualAntiPattern.getEntity()); + } + + @Test + public void correctNumberOfAntiPatterns() { + assertEquals(3, antiPatternList.size()); + } + +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVerssionAntiPatternDetectorTest2.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVerssionAntiPatternDetectorTest2.java new file mode 100644 index 0000000..d45df85 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/MavenVerssionAntiPatternDetectorTest2.java @@ -0,0 +1,27 @@ +package cdlinter.detectors.maven.versioning; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.project.entities.LintProject; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; + +public class MavenVerssionAntiPatternDetectorTest2 { + private static List antiPatternList; + + @BeforeClass + public static void setBeforeClass() throws Exception { + String path = "src/test/resources/maven/versioning/example3"; + LintProject project = new LintProject(); + project.setLocalPath(path); + antiPatternList = new MavenVersionAntiPatternDetector(project).lint(); + } + + @Test + public void correctNumberOfAntiPatterns() { + assertEquals(0, antiPatternList.size()); + } +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzerTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzerTest.java new file mode 100644 index 0000000..7dd8cee --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/analyzers/VersionSpecifierAnalyzerTest.java @@ -0,0 +1,137 @@ +package cdlinter.detectors.maven.versioning.analyzers; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; + +public class VersionSpecifierAnalyzerTest { + + + @Test + public void hasNoVersionSpecifier() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw(""); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoVersionSpecifier(), true); + } + + @Test + public void hasVersionSpecifier() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw("1.0.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoVersionSpecifier(), false); + } + + @Test + public void hasOnlyMajorReleaseInMatch() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), true); + } + + @Test + public void hasOnlyMajorReleaseInUpperInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setUpperBoundInclusive("1"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), true); + } + + @Test + public void hasAlsoMinorRelease() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), false); + } + + @Test + public void hasStarInMinorReleaseInMatch() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.*"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), true); + } + + @Test + public void hasStarInMinorReleaseInUpperInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setUpperBoundInclusive("1.*"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), true); + } + + @Test + public void hasNoStarInMinorRelease() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), false); + } + + @Test + public void hasNoUpperBoundaryLowerExclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundExclusive("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), true); + } + + @Test + public void hasNoUpperBoundaryLowerInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), true); + } + + @Test + public void hasLowerAndUpperBoundaryInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + versionSpecifier.setUpperBoundInclusive("2.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), false); + } + + @Test + public void hasLowerAndUpperBoundaryExclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + versionSpecifier.setUpperBoundExclusive("2.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), false); + } + + @Test + public void analyze() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.*"); + versionSpecifier.setUpperBoundExclusive("2"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + + List antiPatterns = analyzer.analyze(); + + assert antiPatterns.get(0).getSubCategory().equals("only-major-number") + && antiPatterns.get(1).getSubCategory().equals("any-minor-number"); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/DependencyTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/DependencyTest.java new file mode 100644 index 0000000..0413d2f --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/DependencyTest.java @@ -0,0 +1,20 @@ +package cdlinter.detectors.maven.versioning.entities; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class DependencyTest { + + @Test + public void equals() { + String name = "Package1"; + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0.0"); + Dependency dependency1 = new Dependency(name, versionSpecifier); + Dependency dependency2 = new Dependency(name, versionSpecifier); + + assertEquals(dependency1, dependency2); + + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifierTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifierTest.java new file mode 100644 index 0000000..2708bd5 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/entities/VersionSpecifierTest.java @@ -0,0 +1,18 @@ +package cdlinter.detectors.maven.versioning.entities; + +import org.junit.Test; +import static org.junit.Assert.*; + +public class VersionSpecifierTest { + + @Test + public void equalsMatch(){ + VersionSpecifier versionSpecifier1 = new VersionSpecifier(); + versionSpecifier1.setMatch("1.0.0"); + + VersionSpecifier versionSpecifier2 = new VersionSpecifier(); + versionSpecifier2.setMatch("1.0.0"); + + assertEquals(versionSpecifier1, versionSpecifier2); + } +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParserTest.java new file mode 100644 index 0000000..b958f98 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/maven/versioning/parsers/VersionSpecifierParserTest.java @@ -0,0 +1,82 @@ +package cdlinter.detectors.maven.versioning.parsers; + +import cdlinter.detectors.maven.versioning.entities.VersionSpecifier; + +import org.junit.Test; + +import static org.junit.Assert.*; + +public class VersionSpecifierParserTest { + + @Test + public void softMatch() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("1.0"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("1.0"); + expectedSpecifier.setMatch("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void hardMatch() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("[1.0]"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("[1.0]"); + expectedSpecifier.setMatch("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void upperBoundInclusive() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("(,1.0]"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("(,1.0]"); + expectedSpecifier.setUpperBoundInclusive("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void upperBoundExclusive() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("(,1.0)"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("(,1.0)"); + expectedSpecifier.setUpperBoundExclusive("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void lowerBoundInclusive() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("[1.0,)"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("[1.0,)"); + expectedSpecifier.setLowerBoundInclusive("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void lowerBoundExclusive() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("(1.0,)"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("(1.0,)"); + expectedSpecifier.setLowerBoundExclusive("1.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void lowerBoundExclusiveAndUpperBoundInclusive() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse("(1.0,2.0]"); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw("(1.0,2.0]"); + expectedSpecifier.setLowerBoundExclusive("1.0"); + expectedSpecifier.setUpperBoundInclusive("2.0"); + assertEquals(expectedSpecifier, actualSpecifier); + } + + @Test + public void empty() { + VersionSpecifier actualSpecifier = new VersionSpecifierParser().parse(""); + VersionSpecifier expectedSpecifier = new VersionSpecifier(); + expectedSpecifier.setRaw(""); + assertEquals(expectedSpecifier, actualSpecifier); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/PythonVersionAntiPatternDetectorTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/PythonVersionAntiPatternDetectorTest.java new file mode 100644 index 0000000..9f1dbdf --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/PythonVersionAntiPatternDetectorTest.java @@ -0,0 +1,98 @@ +package cdlinter.detectors.python.versioning; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.Detector; +import cdlinter.project.entities.LintProject; + +import org.junit.Before; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class PythonVersionAntiPatternDetectorTest { + + private static List antiPatternList; + + @Before + public void setUp() throws Exception { + LintProject lintProject = new LintProject(); + lintProject.setLocalPath("src/test/resources/python/detectors"); + Detector detector = new PythonVersionAntiPatternDetector(lintProject); + antiPatternList = detector.lint(); + } + + @Test + public void checkDotCase() throws Exception { + LintProject lintProject = new LintProject(); + lintProject.setLocalPath("src/test/resources/python/detectors2"); + Detector detector = new PythonVersionAntiPatternDetector(lintProject); + antiPatternList = detector.lint(); + + assertEquals(0, antiPatternList.size()); + } + + @Test + public void checkUpperCase() throws Exception { + LintProject lintProject = new LintProject(); + lintProject.setLocalPath("src/test/resources/python/detectors3"); + Detector detector = new PythonVersionAntiPatternDetector(lintProject); + antiPatternList = detector.lint(); + for(CIAntiPattern ap : antiPatternList) + System.out.println(ap.getId()); + System.out.println("stop"); + assertEquals(16, antiPatternList.size()); + } + + @Test + public void checkSkipLine() throws Exception { + LintProject lintProject = new LintProject(); + lintProject.setLocalPath("src/test/resources/python/detectors4"); + Detector detector = new PythonVersionAntiPatternDetector(lintProject); + antiPatternList = detector.lint(); + System.out.println("stop"); + for(CIAntiPattern ap : antiPatternList) + System.out.println(ap.getId()); + System.out.println("stop"); + assertEquals(0, antiPatternList.size()); + } + + + @Test + public void numberOfAntipatterns() { + assertEquals(4, antiPatternList.size()); + } + + @Test + public void firstAntipattern() { + assertEquals("lxml", antiPatternList.get(0).getEntity()); + } + + @Test + public void secondAntipattern() { + assertEquals("csv", antiPatternList.get(1).getEntity()); + } + + @Test + public void thirdAntipattern() { + assertEquals("tensorflow", antiPatternList.get(2).getEntity()); + } + + @Test + public void fourthAntipattern() { + assertEquals("six", antiPatternList.get(3).getEntity()); + } + + @Test + public void checkYamlSmells() throws Exception { + LintProject lintProject = new LintProject(); + lintProject.setLocalPath("src/test/resources/gitlabyaml/versioning"); + Detector detector = new PythonVersionAntiPatternDetector(lintProject); + antiPatternList = detector.lint(); + assertEquals(3, antiPatternList.size()); + } + + + +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzerTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzerTest.java new file mode 100644 index 0000000..142e797 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/analyzers/VersionSpecifierAnalyzerTest.java @@ -0,0 +1,137 @@ +package cdlinter.detectors.python.versioning.analyzers; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.*; + +public class VersionSpecifierAnalyzerTest { + + + @Test + public void hasNoVersionSpecifier() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw(""); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoVersionSpecifier(), true); + } + + @Test + public void hasVersionSpecifier() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw("1.0.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoVersionSpecifier(), false); + } + + @Test + public void hasOnlyMajorReleaseInMatch() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), true); + } + + @Test + public void hasOnlyMajorReleaseInUpperInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setUpperBoundInclusive("1"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), true); + } + + @Test + public void hasAlsoMinorRelease() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasOnlyMajorRelease(), false); + } + + @Test + public void hasStarInMinorReleaseInMatch() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.*"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), true); + } + + @Test + public void hasStarInMinorReleaseInUpperInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setUpperBoundInclusive("1.*"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), true); + } + + @Test + public void hasNoStarInMinorRelease() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasStarInMinorRelease(), false); + } + + @Test + public void hasNoUpperBoundaryLowerExclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundExclusive("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), true); + } + + @Test + public void hasNoUpperBoundaryLowerInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), true); + } + + @Test + public void hasLowerAndUpperBoundaryInclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + versionSpecifier.setUpperBoundInclusive("2.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), false); + } + + @Test + public void hasLowerAndUpperBoundaryExclusive() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.0"); + versionSpecifier.setUpperBoundExclusive("2.0"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + assertEquals(analyzer.hasNoUpperBoundary(), false); + } + + @Test + public void analyze() { + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setLowerBoundInclusive("1.*"); + versionSpecifier.setUpperBoundExclusive("2"); + + VersionSpecifierAnalyzer analyzer = new VersionSpecifierAnalyzer(versionSpecifier); + + List antiPatterns = analyzer.analyze(); + + assert antiPatterns.get(0).getSubCategory().equals("only-major-number") + && antiPatterns.get(1).getSubCategory().equals("any-minor-number"); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/DependencyTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/DependencyTest.java new file mode 100644 index 0000000..358b590 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/DependencyTest.java @@ -0,0 +1,20 @@ +package cdlinter.detectors.python.versioning.entities; + +import org.junit.Test; + +import static org.junit.Assert.*; + +public class DependencyTest { + + @Test + public void equals() { + String name = "Package1"; + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setMatch("1.0.0"); + Dependency dependency1 = new Dependency(name, versionSpecifier); + Dependency dependency2 = new Dependency(name, versionSpecifier); + + assertEquals(dependency1, dependency2); + + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/VersionSpecifierTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/VersionSpecifierTest.java new file mode 100644 index 0000000..de7abcf --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/entities/VersionSpecifierTest.java @@ -0,0 +1,19 @@ +package cdlinter.detectors.python.versioning.entities; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class VersionSpecifierTest { + + @Test + public void equalsMatch(){ + VersionSpecifier versionSpecifier1 = new VersionSpecifier(); + versionSpecifier1.setMatch("1.0.0"); + + VersionSpecifier versionSpecifier2 = new VersionSpecifier(); + versionSpecifier2.setMatch("1.0.0"); + + assertEquals(versionSpecifier1, versionSpecifier2); + } +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/DependencyParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/DependencyParserTest.java new file mode 100644 index 0000000..63ac6c6 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/DependencyParserTest.java @@ -0,0 +1,67 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.python.versioning.entities.Dependency; +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; + +import org.junit.Test; + +import static org.junit.Assert.*; + +public class DependencyParserTest { + + + @Test + public void getPartsMatch() { + String dependencyString = "package-name==1.0.0"; + String[] actual = new DependencyParser().getParts(dependencyString); + String[] expected = {"package-name", "==1.0.0"}; + + assertArrayEquals(expected, actual); + } + + @Test + public void getPartsEmpty() { + String dependencyString = "package-name"; + String[] actual = new DependencyParser().getParts(dependencyString); + String[] expected = {"package-name", ""}; + + assertArrayEquals(expected, actual); + } + + @Test + public void getPartsUpperBoundExclusive() { + String dependencyString = "package-name<1.0.0"; + String[] actual = new DependencyParser().getParts(dependencyString); + String[] expected = {"package-name", "<1.0.0"}; + + assertArrayEquals(expected, actual); + } + + @Test + public void parseMatch() { + String dependencyString = "package-name==1.0.0"; + Dependency actualDependency = new DependencyParser().parse(dependencyString); + + String name = "package-name"; + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw("==1.0.0"); + versionSpecifier.setMatch("1.0.0"); + Dependency expectedDependency = new Dependency(name, versionSpecifier); + + assertEquals(expectedDependency, actualDependency); + } + + @Test + public void parseEmpty() { + String dependencyString = "package-name"; + Dependency actualDependency = new DependencyParser().parse(dependencyString); + + String name = "package-name"; + VersionSpecifier versionSpecifier = new VersionSpecifier(); + versionSpecifier.setRaw(""); + Dependency expectedDependency = new Dependency(name, versionSpecifier); + + assertEquals(expectedDependency, actualDependency); + } + +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParserTest.java new file mode 100644 index 0000000..8d8e81d --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/GitLabYAMLDependencyParserTest.java @@ -0,0 +1,58 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.detectors.python.versioning.parsers; + +import static org.junit.Assert.*; + +import java.util.List; + +import cdlinter.detectors.python.versioning.entities.Dependency; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import cdlinter.project.entities.LintProject; + +public class GitLabYAMLDependencyParserTest { + + private LintProject project; + + @Before + public void setUp() throws Exception { + project = new LintProject(); + //project.setRepository("gitlab-org/omnibus-gitlab"); + project.setLocalPath("src/test/resources/gitlabyaml/versioning"); + } + + @Test + public void testPipInstall() { + GitLabYAMLDependencyParser parser = new GitLabYAMLDependencyParser(); + String fileContent = project.getFileContent(".gitlab-ci.yml"); + List parse = parser.parse(fileContent); + assertEquals(3, parse.size()); + + for(Dependency d: parse) { + assertEquals("awscli", d.getName()); + } + } + + + @After + public void tearDown() throws Exception { + } + + +} diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParserTest.java new file mode 100644 index 0000000..8c2d8fa --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/RequirementsTXTParserTest.java @@ -0,0 +1,64 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.python.versioning.entities.Dependency; +import cdlinter.detectors.python.versioning.entities.RequirementsTXT; +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; +import org.junit.Test; + +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.ArrayList; + +import static org.junit.Assert.*; + +public class RequirementsTXTParserTest { + + @Test + public void parseFromPath() throws FileNotFoundException { + String requirementsTXTPath = "src/test/resources/python/parsers/requirementstxt/requirements.txt"; + RequirementsTXT requirementsTXT = new RequirementsTXTParser().parseFromPath(requirementsTXTPath); + ArrayList actualDependencies = requirementsTXT.getDependencies(); + + String name1 = "Package1"; + String name2 = "Package2"; + + VersionSpecifier versionSpecifier1 = new VersionSpecifier(); + versionSpecifier1.setRaw(""); + VersionSpecifier versionSpecifier2 = new VersionSpecifier(); + versionSpecifier2.setRaw("==1.0.0"); + versionSpecifier2.setMatch("1.0.0"); + + Dependency dependency1 = new Dependency(name1, versionSpecifier1); + Dependency dependency2 = new Dependency(name2, versionSpecifier2); + ArrayList expectedDependencies = new ArrayList<>(); + expectedDependencies.add(dependency1); + expectedDependencies.add(dependency2); + + assertEquals(expectedDependencies, actualDependencies); + } + + @Test + public void parse() throws IOException { + String requirementsTXTContent = "Package1\nPackage2==1.0.0\n"; + RequirementsTXT requirementsTXT = new RequirementsTXTParser().parse(requirementsTXTContent); + + ArrayList actualDependencies = requirementsTXT.getDependencies(); + + String name1 = "Package1"; + String name2 = "Package2"; + + VersionSpecifier versionSpecifier1 = new VersionSpecifier(); + versionSpecifier1.setRaw(""); + VersionSpecifier versionSpecifier2 = new VersionSpecifier(); + versionSpecifier2.setRaw("==1.0.0"); + versionSpecifier2.setMatch("1.0.0"); + + Dependency dependency1 = new Dependency(name1, versionSpecifier1); + Dependency dependency2 = new Dependency(name2, versionSpecifier2); + ArrayList expectedDependencies = new ArrayList<>(); + expectedDependencies.add(dependency1); + expectedDependencies.add(dependency2); + + assertEquals(expectedDependencies, actualDependencies); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParserTest.java b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParserTest.java new file mode 100644 index 0000000..be884e4 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/detectors/python/versioning/parsers/VersionSpecifierParserTest.java @@ -0,0 +1,100 @@ +package cdlinter.detectors.python.versioning.parsers; + +import cdlinter.detectors.python.versioning.entities.VersionSpecifier; +import org.junit.Test; +import static org.junit.Assert.*; + +public class VersionSpecifierParserTest { + + @Test + public void parseSingleMatchClause() { + String versionSpecifierString = "==1.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw("==1.0.0"); + expectedVersionSpecifier.setMatch("1.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseSingleUpperBoundInclusiveClause(){ + String versionSpecifierString = "<=1.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw("<=1.0.0"); + expectedVersionSpecifier.setUpperBoundInclusive("1.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseSingleLowerBoundInclusiveClause(){ + String versionSpecifierString = ">=1.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw(">=1.0.0"); + expectedVersionSpecifier.setLowerBoundInclusive("1.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseSingleLowerBoundExclusiveClause(){ + String versionSpecifierString = ">1.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw(">1.0.0"); + expectedVersionSpecifier.setLowerBoundExclusive("1.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseTwoExclusives(){ + String versionSpecifierString = "!=1.0.0,!=2.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw("!=1.0.0,!=2.0.0"); + expectedVersionSpecifier.addExclusive("1.0.0"); + expectedVersionSpecifier.addExclusive("2.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseLowerBoundExclusiveClauseAndUpperBoundExclusive(){ + String versionSpecifierString = ">1.0.0,<2.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw(">1.0.0,<2.0.0"); + expectedVersionSpecifier.setLowerBoundExclusive("1.0.0"); + expectedVersionSpecifier.setUpperBoundExclusive("2.0.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseEmpty(){ + String versionSpecifierString = ""; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw(""); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + + @Test + public void parseLowerBoundInclusiveClauseAndUpperBoundInclusiveAndExclusiveAndCompatible(){ + String versionSpecifierString = ">=1.0.0,!=1.5.0,~=1.7.0,<=2.0.0"; + VersionSpecifier actualVersionSpecifier = new VersionSpecifierParser().parse(versionSpecifierString); + VersionSpecifier expectedVersionSpecifier = new VersionSpecifier(); + expectedVersionSpecifier.setRaw(">=1.0.0,!=1.5.0,~=1.7.0,<=2.0.0"); + expectedVersionSpecifier.setLowerBoundInclusive("1.0.0"); + expectedVersionSpecifier.setUpperBoundInclusive("2.0.0"); + expectedVersionSpecifier.addExclusive("1.5.0"); + + assertEquals(expectedVersionSpecifier, actualVersionSpecifier); + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/project/parsers/ProjectParserTest.java b/cd-linter-code/src/test/java/cdlinter/project/parsers/ProjectParserTest.java new file mode 100644 index 0000000..5d9d269 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/project/parsers/ProjectParserTest.java @@ -0,0 +1,72 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.project.parsers; + +import static org.junit.Assert.*; + +import java.util.List; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import cdlinter.project.entities.LintProject; + +public class ProjectParserTest { + + private ProjectParser projectParser; + private String token; + + @Before + public void setUp() throws Exception { + token = "fakeToken"; + projectParser = new ProjectParser(token); + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testGetProjectsFromCSVSheet() { + String path = "src/main/resources/sampleDataset.csv"; + List projects = projectParser.getProjectsFromCSVSheet(path); + + assertEquals(4, projects.size()); + + LintProject actualProject = projects.get(3); + + String remotePath = "https://gitlab.com/assembl/assembl"; + String name = "assembl__assembl"; + String language = "JavaScript"; + String owner = "assembl"; + String repository = "assembl/assembl"; + String numCommitsInLastThreeMonths = "10000"; + String numIssuesOpenedInLastThreeMonths = "10000"; + LintProject exptectedProject = new LintProject(); + exptectedProject.setRemotePath(remotePath); + exptectedProject.setName(name); + exptectedProject.setLanguage(language); + exptectedProject.setAccessToken(token); + exptectedProject.setOwner(owner); + exptectedProject.setRepository(repository); + exptectedProject.setNumCommitsInLastThreeMonths(Integer.parseInt(numCommitsInLastThreeMonths)); + exptectedProject.setNumIssuesOpenedInLastThreeMonths(Integer.parseInt(numIssuesOpenedInLastThreeMonths)); + + assertEquals(exptectedProject, actualProject); + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/stats/StatsCalculatorTest.java b/cd-linter-code/src/test/java/cdlinter/stats/StatsCalculatorTest.java new file mode 100644 index 0000000..8c398df --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/stats/StatsCalculatorTest.java @@ -0,0 +1,67 @@ +package cdlinter.stats; + +import cdlinter.antipattern.entities.CIAntiPattern; +import cdlinter.antipattern.readers.CIAntiPatternCSVReader; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + +import static org.junit.Assert.*; + +public class StatsCalculatorTest { + + private static StatsCalculator statsCalculator; + + @BeforeClass + public static void setUp() throws IOException { + CIAntiPatternCSVReader ciAntiPatternCSVReader = new CIAntiPatternCSVReader("src/test/resources/stats/test.csv"); + Set ciAntiPatternSet = ciAntiPatternCSVReader.read(); + statsCalculator = new StatsCalculator(ciAntiPatternSet); + } + + @Test + public void getNumberOfViolations() { + assertEquals(11, statsCalculator.getNumberOfViolations()); + } + + @Test + public void getNumberOfViolationsPerCategory() { + Map expected = new HashMap<>(); + expected.put("Job-Allow-Failure", Integer.toUnsignedLong(3)); + expected.put("Vulnerability", Integer.toUnsignedLong(7)); + expected.put("Manual-Job", Integer.toUnsignedLong(1)); + assertEquals(expected, statsCalculator.getNumberOfViolationsPerCategory()); + } + + @Test + public void getNumberOfProjects() { + assertEquals(7, statsCalculator.getNumberOfProjects()); + } + + @Test + public void getNumberOfProjectsPerCategory() { + Map expected = new HashMap<>(); + expected.put("Job-Allow-Failure", 2); + expected.put("Vulnerability", 4); + expected.put("Manual-Job", 1); + assertEquals(expected, statsCalculator.getNumberOfProjectsPerCategory()); + } + + @Test + public void getNumberOfOwners() { + assertEquals(6, statsCalculator.getNumberOfOwners()); + } + + @Test + public void getNumberOfOwnersPerCategory() { + Map expected = new HashMap<>(); + expected.put("Job-Allow-Failure", 2); + expected.put("Vulnerability", 3); + expected.put("Manual-Job", 1); + assertEquals(expected, statsCalculator.getNumberOfOwnersPerCategory()); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/templates/TemplateGenerationTest.java b/cd-linter-code/src/test/java/cdlinter/templates/TemplateGenerationTest.java new file mode 100644 index 0000000..96e79d7 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/templates/TemplateGenerationTest.java @@ -0,0 +1,65 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.templates; + +import cdlinter.antipattern.entities.CIAntiPattern; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class TemplateGenerationTest { + + private TemplateGeneration templateGeneration; + private CIAntiPattern cia; + + @Before + public void setUp() throws Exception { + templateGeneration = new TemplateGeneration(); + String id = "id1"; + String remoteRepoLink = "https://blabla.com"; + String remoteCfgLink = "https://blabla.com/config.yml"; + String localCfgLink = "target/config.yml"; + String project = "contino"; + String stage = "test"; + String category = TemplateGeneration.VULNERABILITY; + String subCategory = "a"; + String entity = "dep_name"; + String message = "blabla"; + String context = "bla bla"; + String lineNumber = "12"; + String cfgFileName = "config.yml"; + + cia = new CIAntiPattern(id , remoteRepoLink, remoteCfgLink, localCfgLink, project, stage, category, subCategory, entity, message, context, lineNumber, cfgFileName); + + + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testGeneration() { + + String[] report = templateGeneration.generateReport(cia); + + String title = report[0]; + String desc = report[1]; + + System.out.println(desc); + } + +} diff --git a/cd-linter-code/src/test/java/cdlinter/utils/DefinitionPointerTest.java b/cd-linter-code/src/test/java/cdlinter/utils/DefinitionPointerTest.java new file mode 100644 index 0000000..1cc4f68 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/utils/DefinitionPointerTest.java @@ -0,0 +1,27 @@ +package cdlinter.utils; + +import cdlinter.detectors.gitlabyaml.entities.GitLabYAML; +import cdlinter.detectors.gitlabyaml.parsers.GitLabYAMLParser; +import cdlinter.project.entities.LintProject; +import org.junit.Test; + +import java.util.List; +import java.util.Map; + +public class DefinitionPointerTest { + + @Test + public void getPointers() { + LintProject project = new LintProject(); + project.setLocalPath("src/test/resources/gitlabyaml/merge_key"); + String content = project.getFileContent(".gitlab-ci.yml"); + GitLabYAMLParser gitLabYAMLParser = new GitLabYAMLParser(); + GitLabYAML gitLabYAML = gitLabYAMLParser.parse(content); + + DefinitionPointer pointer = new DefinitionPointer(gitLabYAML); + Map> pointers = pointer.getPointers(); + + assert pointers.get("test:postgres").equals(List.of(".job_template", ".job_template2")) && + pointers.get("test:mysql").equals(List.of(".job_template")); + } +} \ No newline at end of file diff --git a/cd-linter-code/src/test/java/cdlinter/utils/TCIDateFormatterTest.java b/cd-linter-code/src/test/java/cdlinter/utils/TCIDateFormatterTest.java new file mode 100644 index 0000000..45d6eb5 --- /dev/null +++ b/cd-linter-code/src/test/java/cdlinter/utils/TCIDateFormatterTest.java @@ -0,0 +1,67 @@ +/** + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package cdlinter.utils; + +import static org.junit.Assert.*; + +import java.text.ParseException; +import java.util.Calendar; +import java.util.Date; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class TCIDateFormatterTest { + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testGitlabStringToDate() throws ParseException { + // 2019-08-16T14:05:02.000-05:00 + String date_str = "2019-12-09T13:52:24.000+00:00"; + String pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX"; + Date date = TCIDateFormatter.stringToDate(date_str, pattern); + System.out.println(date); + Calendar cal1 = Calendar.getInstance(); + cal1.setTime(date); + int month = cal1.get(Calendar.MONTH); + int day = cal1.get(Calendar.DAY_OF_MONTH); + int year = cal1.get(Calendar.YEAR); + + assertEquals(Calendar.DECEMBER, month); + assertEquals(9, day); + assertEquals(2019, year); + } + + @Test + public void testTimeBetweenDates() throws ParseException { + Date date1 = TCIDateFormatter.gitlabStringToDate("2019-12-06T13:52:24.000+00:00"); + Date date2 = TCIDateFormatter.gitlabStringToDate("2019-12-09T13:52:24.000+00:00"); + long timeBetweenDates = TCIDateFormatter.timeBetweenDates(date1, date2); + + int days = (int) (timeBetweenDates / (1000*60*60*24)); + assertEquals(3, days); + + } + +} diff --git a/cd-linter-code/src/test/resources/antipattern/parsers/antipatterns.csv b/cd-linter-code/src/test/resources/antipattern/parsers/antipatterns.csv new file mode 100644 index 0000000..8851751 --- /dev/null +++ b/cd-linter-code/src/test/resources/antipattern/parsers/antipatterns.csv @@ -0,0 +1,3 @@ +ID Repository Link Remote Configuration File Link Local Configuration File Link Project Category Sub-Category Stage Entity Message Line-Number Configuration File Name Owner Repository Name +owner1__project1|Job-Creation-Policy|except-custom|start https://gitlab.com/owner1/project1 https://gitlab.com/owner1/project1/raw/master/.gitlab-ci.yml target/projects/owner1/project1/.gitlab-ci.yml owner1__project1 Job-Creation-Policy except-custom manual start No creation of job `start` for branches/tags: [master] at stage `manual` 10 .gitlab-ci.yml +owner2__project2|Vulnerability|trigger|token=0973rwu459usdf803c https://gitlab.com/owner2/project2 https://gitlab.com/owner2/project2/raw/master/.gitlab-ci.yml target/projects/owner2/project2/.gitlab-ci.yml owner2__project2 Vulnerability deploy trigger Vulnerability found: token=0973rwu459usdf803c in job `trigger` at stage `deploy` 20 .gitlab-ci.yml \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/gitlabyaml/duplicate/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/duplicate/.gitlab-ci.yml new file mode 100644 index 0000000..63fbddc --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/duplicate/.gitlab-ci.yml @@ -0,0 +1,59 @@ +image: registry.gitlab.com/zaaksysteem/zaaksysteem-builder:latest + +stages: + - build + - test + - deploy + - Release + +variables: + CONTAINER_PREFIX: registry.gitlab.com/${CI_PROJECT_PATH} + DOCKER_HUB_CONTAINER_PREFIX: ${CI_PROJECT_PATH} + DOCKER_DRIVER: overlay2 + ECR_CONTAINER_REGISTRY_API: 368693275776.dkr.ecr.eu-central-1.amazonaws.com/zs-api + ECR_CONTAINER_REGISTRY_API2CSV: 368693275776.dkr.ecr.eu-central-1.amazonaws.com/zs-api2csv + ECR_CONTAINER_REGISTRY_FRONTEND: 368693275776.dkr.ecr.eu-central-1.amazonaws.com/zs-frontend + +before_script: + - "docker login -u \"${BUILD_USERNAME}\" -p \"${BUILD_PASSWORD}\" registry.gitlab.com" + - "docker login -u \"${DOCKER_HUB_USERNAME}\" -p \"${DOCKER_HUB_PASSWORD}\"" + +deploy: + script: + # Backend + - > + mvn deploy:deploy-file + + +deploy: + stage: deploy + before_script: + - mvn install:install-file -Dfile=blabla -DgroupId=hello + script: + # Backend + - docker pull ${CONTAINER_PREFIX}-api:${CI_COMMIT_REF_SLUG} + - docker tag ${CONTAINER_PREFIX}-api:${CI_COMMIT_REF_SLUG} ${CONTAINER_PREFIX}-api:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + - docker push ${CONTAINER_PREFIX}-api:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + # Frontend + - docker pull ${CONTAINER_PREFIX}-frontend:${CI_COMMIT_REF_SLUG} + - docker tag ${CONTAINER_PREFIX}-frontend:${CI_COMMIT_REF_SLUG} ${CONTAINER_PREFIX}-frontend:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + - mvn install:install-file -Dfile=blabla -DgroupId=hello + - docker push ${CONTAINER_PREFIX}-frontend:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + # app-api2csv + - docker pull ${CONTAINER_PREFIX}-app-api2csv:${CI_COMMIT_REF_SLUG} + - docker tag ${CONTAINER_PREFIX}-app-api2csv:${CI_COMMIT_REF_SLUG} ${CONTAINER_PREFIX}-app-api2csv:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + - docker push ${CONTAINER_PREFIX}-app-api2csv:${CI_COMMIT_REF_SLUG}-ci-${CI_PIPELINE_IID} + after_script: + - mvn deploy:deploy-file -Dfile=blabla -DgroupId=hello + environment: + name: ${CI_COMMIT_REF_SLUG} + url: https://${CI_COMMIT_REF_SLUG}.zaaksysteem.nl + only: + - mvn install:install-file -Dfile=blabla -DgroupId=hello + - master@zaaksysteem/zaaksysteem + - trial@zaaksysteem/zaaksysteem + - development@zaaksysteem/zaaksysteem + - preprod@zaaksysteem/zaaksysteem + - production@zaaksysteem/zaaksysteem + + diff --git a/cd-linter-code/src/test/resources/gitlabyaml/except/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/except/.gitlab-ci.yml new file mode 100644 index 0000000..97047dd --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/except/.gitlab-ci.yml @@ -0,0 +1,35 @@ +image: maven:latest + +clean-compile: + stage: build + before_script: + - mvn clean + script: + - mvn compile + +test: + script: mvn test + except: + - api + - external + +verify: + stage: test + script: mvn verify + except: + refs: + - schedules + - merge_requests + +deploy: + stage: deploy + script: push production + except: + kubernetes: active + changes: + - Dockerfile + - docker/scripts/* + - dockerfiles/**/* + variables: + - $RELEASE == "staging" + - $CI_COMMIT_MESSAGE =~ /skip-end-to-end-tests/ diff --git a/cd-linter-code/src/test/resources/gitlabyaml/manual/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/manual/.gitlab-ci.yml new file mode 100644 index 0000000..1f2ba40 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/manual/.gitlab-ci.yml @@ -0,0 +1,56 @@ +image: maven:latest + +build: + stage: build + before_script: + - mvn clean + script: + - mvn compile + +test: + stage: test + script: + - test + when: manual + +deploy-to-production: + stage: deploy + script: + - push production + when: manual + +foo: + stage: publish + script: + - push production + when: manual + +hole: + stage: triage + script: + - push production + when: manual + +code-review: + stage: hole + script: + - push production + when: manual + +review_app: + stage: deploy + script: make deploy-app + environment: + name: review + on_stop: shut_env + +shut_env: + stage: random + variables: + GIT_STRATEGY: none + script: make delete-app + when: manual + environment: + name: review + action: stop + diff --git a/cd-linter-code/src/test/resources/gitlabyaml/merge_key/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/merge_key/.gitlab-ci.yml new file mode 100644 index 0000000..5184087 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/merge_key/.gitlab-ci.yml @@ -0,0 +1,34 @@ +.job_template: &job_definition + retry: 1 + +.job_template2: &job_definition2 + allow_failure: true + when: manual + +.postgres_services: + services: &postgres_definition + - postgres + - ruby + +.mysql_services: + services: &mysql_definition + - mysql + - ruby + +test:postgres: + <<: *job_definition + <<: *job_definition2 + script: + - blabla + services: *postgres_definition + +test:mysql: + <<: *job_definition + script: + - blabla + services: *mysql_definition + retry: 0 + +test:sqlite: + script: hello + allow_failure: true diff --git a/cd-linter-code/src/test/resources/gitlabyaml/only/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/only/.gitlab-ci.yml new file mode 100644 index 0000000..46b1ff4 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/only/.gitlab-ci.yml @@ -0,0 +1,35 @@ +image: maven:latest + +clean-compile: + stage: build + before_script: + - mvn clean + script: + - mvn compile + +test: + script: mvn test + only: + - api + - external + +verify: + stage: test + script: mvn verify + only: + refs: + - schedules + - merge_requests + +deploy: + stage: deploy + script: push production + only: + kubernetes: active + changes: + - Dockerfile + - docker/scripts/* + - dockerfiles/**/* + variables: + - $RELEASE == "staging" + - $CI_COMMIT_MESSAGE =~ /skip-end-to-end-tests/ diff --git a/cd-linter-code/src/test/resources/gitlabyaml/onlyexcept/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/onlyexcept/.gitlab-ci.yml new file mode 100644 index 0000000..e0cd3d5 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/onlyexcept/.gitlab-ci.yml @@ -0,0 +1,49 @@ +image: maven:latest + +clean-compile: + stage: build + before_script: + - mvn clean + script: + - mvn compile + +test1: + stage: test + script: make test1 + only: + - schedules + +test2: + stage: test + script: make test2 + only: + - /^issue-.*$/ + - /^test-.*$/ + - branches + +test3: + stage: test + script: make test3 + except: + - branches + - tags + +test4: + stage: test + script: make test4 + except: + - /^experimental-.*$/ + +test5: + stage: test + script: make test5 + except: + changes: + - requirements.txt + +test6: + stage: test + script: make test6 + only: + changes: + - "*.java" diff --git a/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci.yml new file mode 100644 index 0000000..3cc0187 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci.yml @@ -0,0 +1,167 @@ +stages: + - prepare-assets + - trigger-package + - trigger-docker + - trigger-ha-validate + - trigger-qa + - check + - prepare + - tests + - post-test + - gitlab_com:package + - gitlab_com:upload_deploy + - package-and-image + - scan-dependencies + - staging_upload + - package-and-image-release + - validate + - metrics + - slow_jobs + - raspbian-release + - aws-marketplace-release + - notification_fail + +variables: + BUILDER_IMAGE_REGISTRY: "dev.gitlab.org:5005/cookbooks/gitlab-omnibus-builder" + PUBLIC_BUILDER_IMAGE_REGISTRY: "registry.gitlab.com/gitlab-org/gitlab-omnibus-builder" + BUILDER_IMAGE_REVISION: "0.0.59" + # The registry to pull the assets image from + ASSET_REGISTRY: "${CI_REGISTRY}" + ASSET_SYNC_EXISTING_REMOTE_FILES: "keep" + ASSET_SYNC_GZIP_COMPRESSION: "true" + ASSET_PATH: "assets-${CI_COMMIT_REF_SLUG}" + COMPILE_ASSETS: "false" + RUBY_IMAGE: "ruby:2.5" + BUNDLE_PATH__SYSTEM: "false" + # Format of the auto-deploy tag for auto-deploy builds. + # https://gitlab.com/gitlab-org/release/docs/blob/master/general/deploy/auto-deploy.md#auto-deploy-tagging + AUTO_DEPLOY_TAG_REGEX: '^\d+\.\d+\.\d+\+[^ ]{7,}\.[^ ]{7,}$' + # Default environment for auto-deploy + AUTO_DEPLOY_ENVIRONMENT: 'pre' + MAX_PACKAGE_SIZE_MB: "850" + +### For services that need a docker daemon +.docker_job: &docker_job + image: "${BUILDER_IMAGE_REGISTRY}/ruby_docker:${BUILDER_IMAGE_REVISION}" + variables: + DOCKER_DRIVER: overlay2 + DOCKER_HOST: tcp://docker:2375 + services: + - docker:19.03.0-dind + tags: + - docker + +### Measure memory usage +.measure_memory_script_artifacts: &measure_memory_script_artifacts + extends: .docker_job + variables: + OUTPUT_DIR: "tmp/measure_omnibus_memory" + script: + - mkdir -p ${OUTPUT_DIR} + - bundle exec rake docker:measure_memory DEBUG_OUTPUT_DIR=${OUTPUT_DIR} >> "${OUTPUT_DIR}/memory_on_boot_metrics.txt" + allow_failure: true + artifacts: + paths: + - ${OUTPUT_DIR} + +before_script: + - export CE_ONLY=(Raspberry) + - export EE_ONLY=(SLES HA-Validate) + - for job in "${CE_ONLY[@]}"; do + if [[ "${CI_JOB_NAME}" =~ ${job} ]]; then + if ./support/is_gitlab_ee.sh; then + echo "EE build found. ${CI_JOB_NAME} is run only on CE builds"; + exit 0 ; + fi; + fi; + done + - for job in "${EE_ONLY[@]}"; do + if [[ "${CI_JOB_NAME}" =~ ${job} ]]; then + if ! ./support/is_gitlab_ee.sh; then + echo "CE build found. ${CI_JOB_NAME} is run only on EE builds"; + exit 0 ; + fi; + fi; + done + - echo $NIGHTLY + - mkdir -p ~/.ssh + - mkdir -p ~/.aws + - mkdir -p cache + - if [ -n "$DEV_GITLAB_SSH_KEY" ]; then + echo "$DEV_GITLAB_SSH_KEY" > ~/.ssh/id_rsa; + cp support/known_hosts ~/.ssh/known_hosts; + chmod -R 0600 ~/.ssh/; + fi + - bundle install -j $(nproc) --binstubs --path gems --without rubocop + # If ALTERNATIVE_SOURCES are used, the public mirror for omnibus will be used. + # This will alter Gemfile.lock file. As part of the build pipeline, we are + # checking whether the state of the repository is unchanged during the build + # process, by comparing it with the last commit (So that no unexpected monsters + # show up). So, an altered Gemfile.lock file will fail on this + # check. Hence we do a git commit as part of the pipeline if + # ALTERNATIVE_SOURCES is used. + - if [ -n "$ALTERNATIVE_SOURCES" ]; then + git config --global user.email "packages@gitlab.com" + && git config --global user.name "GitLab Inc."; + git add Gemfile.lock || true ; + git commit -m "Updating Gemfile.lock" || true; + fi + - if [ -n "$NIGHTLY" ]; then export STAGING_REPO=nightly-builds; fi + +fetch-assets: + extends: .docker_job + stage: prepare-assets + script: + - export VERSION=${GITLAB_REF_SLUG-$(bundle exec rake build:version)} + - support/fetch_assets "${VERSION}" + artifacts: + paths: + - ${ASSET_PATH} + only: + refs: + - schedules@gitlab-org/omnibus-gitlab + - branches@gitlab/omnibus-gitlab + - tags@gitlab/omnibus-gitlab + - triggers + - pipelines + except: + variables: + - $COMPILE_ASSETS == "true" + - $DEPS_PIPELINE + # Format of the auto-deploy tag + - $CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+\+[^ ]{7,}\.[^ ]{7,}$/ + +include: + - '/gitlab-ci-config/gitlab-com.yml' + - '/gitlab-ci-config/dev-gitlab-org.yml' + +.notify: + before_script: + - apk update && apk add git curl bash + image: "alpine" + stage: notification_fail + +notify:slack-fail: + extends: + - .notify + script: + - ./support/notify_slack.sh "#g_distribution" "Build on \`$CI_COMMIT_REF_NAME\` failed! See " + when: on_failure + only: + - master@gitlab-org/omnibus-gitlab + - /.*-stable(-ee)?$/@gitlab-org/omnibus-gitlab + except: + - triggers@gitlab-org/omnibus-gitlab + dependencies: [] + +notify:slack-fail:scheduled-master: + extends: + - .notify + script: + - ./support/notify_slack.sh "#qa-master" "☠️ Scheduled omnibus-build against master failed! ☠️ See $CI_PIPELINE_URL (triggered from $TOP_UPSTREAM_SOURCE_JOB)" + only: + refs: + - pipelines@gitlab-org/build/omnibus-gitlab-mirror + variables: + - $TOP_UPSTREAM_SOURCE_JOB && $TOP_UPSTREAM_SOURCE_REF == 'master' + when: on_failure \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci2.yml b/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci2.yml new file mode 100644 index 0000000..f1567a3 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/retryallowfailure/.gitlab-ci2.yml @@ -0,0 +1,34 @@ +# +# * test: CODE_QUALITY_DISABLED +# + +image: maven:latest + +stages: + - build + - test + +clean-compile: + stage: build + before_script: + - mvn clean + script: + - git checkout master + - mvn compile + retry: 1 + +"test": + script: mvn test + allow_failure: true + +verify: + stage: test + script: mvn verify + retry: + max: 2 + when: stuck_or_timeout_failure + +include: + - local: /templates/.gitlab-ci-template.yml + - hello + - 'halo' \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/gitlabyaml/versioning/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/versioning/.gitlab-ci.yml new file mode 100644 index 0000000..5ead562 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/versioning/.gitlab-ci.yml @@ -0,0 +1,70 @@ +stages: + - test + - build + - deploy + +# Cache node_modules to avoid reinstalling them on next runs. +cache: + key: ${CI_BUILD_REF_NAME} + paths: + - node_modules/ + +test: + image: mhart/alpine-node:8.4 + stage: test + script: + - npm install + - npm test -- --coverage + - npm run prettier:check + only: + - /^(feat\/|bugfix\/|hotfix\/|develop|release|master).*$/ + coverage: /All files\s*\|\s*([\d\.]+)/ + +build: + image: mhart/alpine-node:8.4 + stage: build + script: + - npm install + - npm run build + # Create artifact of build/ to be available in the next deploy job. + artifacts: + paths: + - build/ + only: + - /^(develop|release|master).*$/ + +deploy: + stage: deploy + image: ekino/docker-buildbox:latest-dind-aws + script: + - pip install awscli + - aws s3 sync ./build s3://dev.nice-app.ml/ + environment: + name: development + url: https://dev.nice-app.ml + only: + - develop + +deploy-release: + stage: deploy + image: ekino/docker-buildbox:latest-dind-aws + script: + - pip install awscli + - aws s3 sync ./build s3://release.nice-app.ml/ + environment: + name: release + url: https://release.nice-app.ml + only: + - release + +deploy-master: + stage: deploy + image: ekino/docker-buildbox:latest-dind-aws + script: + - pip3 install awscli + - aws s3 sync ./build s3://nice-app.ml/ + environment: + name: production + url: https://nice-app.ml + only: + - master \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/gitlabyaml/vulnerability/.gitlab-ci.yml b/cd-linter-code/src/test/resources/gitlabyaml/vulnerability/.gitlab-ci.yml new file mode 100644 index 0000000..3c9f971 --- /dev/null +++ b/cd-linter-code/src/test/resources/gitlabyaml/vulnerability/.gitlab-ci.yml @@ -0,0 +1,23 @@ +image: maven:latest + +variables: + MYSQL_ROOT_PASSWORD: secret + ACCOUNT_PWD: pwd + +build: + stage: build + before_script: + - mvn clean + script: + - export DOCKER_PASSWORD=thisisnothidden1 + - git checkout master + - login --host-password=thisisnothidden2 --username=myusername + - export DB_PASSWD_1=thisisnothidden3 + - netlify deploy --auth="$NETLIFY_AUTH_TOKEN" + - test token=$COVERITY_TOKEN + - mysql -u root --password=$MYSQL_ROOT_PASSWORD + - login --pwd="$ACCOUNT_PWD" + - publish --key-file=key + - deploy --password=pw.json + - stage --password=ksowb.idjoea.333.sdflsd + - make test release IMAGE=registry.gitlab.com/leanlabsio/kanban TAG=${CI_BUILD_REF:0:12} REGISTRY_USERNAME=gitlab-ci-token REGISTRY_PASSWORD=$CI_BUILD_TOKEN \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/maven/versioning/example1/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example1/pom.xml new file mode 100644 index 0000000..fef07ff --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example1/pom.xml @@ -0,0 +1,41 @@ + + 4.0.0 + + cdlinter + GitLabLinter + 0.0.1-SNAPSHOT + jar + + GitLabLinter + http://maven.apache.org + + + 1.8 + 4.4 + + + + + com.google.code.gson + + gson + + 2.8.2 + + + + junit + junit + ${junit.version} + test + + + + + core + metrics + + + diff --git a/cd-linter-code/src/test/resources/maven/versioning/example2/module1/module1a/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example2/module1/module1a/pom.xml new file mode 100644 index 0000000..a2595db --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example2/module1/module1a/pom.xml @@ -0,0 +1,34 @@ + + 4.0.0 + + module1.module1a + 1.0.0 + + + 1.8 + 4.4 + + + + example + module1 + 1.0.0 + + + + + foo + foo + 1.0.0 + + + + buh + buh + + + + + \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/maven/versioning/example2/module1/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example2/module1/pom.xml new file mode 100644 index 0000000..a399072 --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example2/module1/pom.xml @@ -0,0 +1,31 @@ + + 4.0.0 + + module1 + 1.0.0 + + + 1.8 + 4.4 + + + + example + root + 1.0.0 + + + + + junit + junit + + + + + module1a + + + \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/maven/versioning/example2/module2/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example2/module2/pom.xml new file mode 100644 index 0000000..8da1940 --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example2/module2/pom.xml @@ -0,0 +1,31 @@ + + 4.0.0 + + module2 + 1.0.0 + + + 1.8 + 4.4 + + + + external2 + root + 1.0.0 + + + + + junit + junit + + + banana + banana + + + + \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/maven/versioning/example2/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example2/pom.xml new file mode 100644 index 0000000..15de36d --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example2/pom.xml @@ -0,0 +1,49 @@ + + 4.0.0 + + example + root + 1.0.0 + + + 1.8 + 4.4 + + + + external + parent + 1.0.0 + + + + + + junit + junit + ${junit.version} + test + + + banana + banana + 1.0.0 + + + + + + + kuku + bla + + + + + module1 + module2 + + + \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/maven/versioning/example3/pom.xml b/cd-linter-code/src/test/resources/maven/versioning/example3/pom.xml new file mode 100644 index 0000000..42b623d --- /dev/null +++ b/cd-linter-code/src/test/resources/maven/versioning/example3/pom.xml @@ -0,0 +1,43 @@ + + 4.0.0 + + cdlinter + GitLabLinter + 0.0.1-SNAPSHOT + jar + + GitLabLinter + http://maven.apache.org + + + 1.8 + 4.4 + + + + + org.springframework.boot + spring-boot-dependencies + 2.1.7.RELEASE + pom + provided + + + com.google.code.gson + + gson + + 2.8.2 + + + + junit + junit + ${junit.version} + test + + + + diff --git a/cd-linter-code/src/test/resources/occurrences.csv b/cd-linter-code/src/test/resources/occurrences.csv new file mode 100644 index 0000000..c0f8394 --- /dev/null +++ b/cd-linter-code/src/test/resources/occurrences.csv @@ -0,0 +1,11 @@ +ID,Repository Link,Remote Configuration File Link,Local Configuration File Link,Project,Category,Sub-Category,Stage,Entity,Message,Line-Number,Configuration File Name,Owner,Repository Name +anti-0,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-1,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-2,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-3,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-4,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-5,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-6,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-7,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-8,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server +anti-9,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/.gitlab-ci.yml,psono/psono-server,psono/psono-server,versioning,missing,test,bla,look at this smell,34,.gitlab-ci.yml,psono,psono/psono-server diff --git a/cd-linter-code/src/test/resources/platform/issues_200204-105339.csv b/cd-linter-code/src/test/resources/platform/issues_200204-105339.csv new file mode 100644 index 0000000..95ed091 --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/issues_200204-105339.csv @@ -0,0 +1,16 @@ +id,category,reviewTag*,title,desc,linkToRepository,linkToOpenedIssue,lastChecked,state,isAssigned,numUpvotes,numDownvotes,numComments,label*,monitoringTag*,monitoringComment +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,https://gitlab.com/mauriciobaeza/empresa-libre/issues/368,190902-192718,deleted,FALSE,0,0,0,NULL,reaction:negative,NULL +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,https://gitlab.com/mauriciobaeza/empresa-libre/issues/368,190902-192718,deleted,FALSE,0,0,0,NULL,decision:ignored,NULL +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/issues/1117,190902-192943,closed,FALSE,0,0,0,NULL,reaction:negative,NULL +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/issues/1117,190902-192943,closed,FALSE,0,0,0,NULL,decision:ignored,NULL +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,GitLab config: Job 's3-branch-deployment' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/flatiron-dc/learning-git2,https://gitlab.com/flatiron-dc/learning-git2/issues/1,190902-193021,opened,FALSE,0,0,0,NULL,NULL,NULL +svsamipillai__gitlab-hw__Vulnerability__--api-key-e2fbb215-565e-4274-8f2b-73f7670afa9f,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/svsamipillai/gitlab-hw,https://gitlab.com/svsamipillai/gitlab-hw/issues/1,190902-192757,opened,FALSE,0,0,0,NULL,NULL,NULL +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/issues/265,190902-192834,closed,FALSE,0,0,0,NULL,reaction:negative,NULL +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/issues/265,190902-192834,closed,FALSE,0,0,0,NULL,decision:ignored,NULL +harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,GitLab config: Job 'push' is manually triggered,DROPPED FOR NOW,https://gitlab.com/harbottle/puppet-mattermost,https://gitlab.com/harbottle/puppet-mattermost/issues/47,190902-193109,opened,FALSE,0,0,0,NULL,NULL,NULL +agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,GitLab config: Job 'windows_agrum_2017' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/issues/37,190902-192916,opened,TRUE,0,0,0,NULL,decision:pending,NULL +sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,GitLab config: Job 'dev' is manually triggered,DROPPED FOR NOW,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/issues/4,190902-193110,opened,FALSE,0,0,0,NULL,NULL,NULL +georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/georgedorn/wonambi,https://gitlab.com/georgedorn/wonambi/issues/75,190902-193029,opened,FALSE,0,0,0,NULL,NULL,NULL +bachtungvantung__gitlab-ce__Job-Retry__update-tests-metadata,Job-Retry,always,GitLab config: Job 'update-tests-metadata' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/bachtungvantung/gitlab-ce,NULL,NULL,NULL,FALSE,0,0,0,NULL,NULL,NULL +derSchabi__tttrsss__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/derSchabi/tttrsss,NULL,NULL,NULL,FALSE,0,0,0,NULL,NULL,NULL +xonotic__xonstat__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/xonotic/xonstat,https://gitlab.com/xonotic/xonstat/issues/181,190902-193111,opened,FALSE,0,0,0,NULL,NULL,NULL \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/platform/issues_200205-180807.csv b/cd-linter-code/src/test/resources/platform/issues_200205-180807.csv new file mode 100644 index 0000000..27bee09 --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/issues_200205-180807.csv @@ -0,0 +1,65 @@ +id,category,reviewTag*,title,desc,linkToRepository,linkToOpenedIssue,fixed (y/n/m),fixingCommit,cd-linter-bug,comment-labels,fix-labels,"notes (e.g., how they fix it,)",reaction,lastChecked,state,isAssigned,numUpvotes,numDownvotes,numComments,label*,monitoringTag*,monitoringComment,contributors,contributorsSinceIssue,commitsSinceIssue +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,https://gitlab.com/mauriciobaeza/empresa-libre/issues/368,,,,,,,,200205-180809,deleted,FALSE,0,0,0,NULL,reaction:negative,NULL,-1,-1,-1 +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/issues/1117,n,,pip-install,,,pip install codecov,,200205-180809,closed,FALSE,0,0,0,NULL,reaction:negative,NULL,12,4,76 +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,GitLab config: Job 's3-branch-deployment' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/flatiron-dc/learning-git2,https://gitlab.com/flatiron-dc/learning-git2/issues/1,,,,,,,,200205-180811,opened,FALSE,0,0,0,NULL,NULL,NULL,8,0,0 +svsamipillai__gitlab-hw__Vulnerability__--api-key-e2fbb215-565e-4274-8f2b-73f7670afa9f,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/svsamipillai/gitlab-hw,https://gitlab.com/svsamipillai/gitlab-hw/issues/1,,,,,,,,200205-180813,opened,FALSE,0,0,0,NULL,NULL,NULL,17,0,0 +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/issues/265,n,,deploy-phase,,,,,200205-180813,closed,FALSE,0,0,0,NULL,reaction:negative,NULL,5,2,22 +harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,GitLab config: Job 'push' is manually triggered,DROPPED FOR NOW,https://gitlab.com/harbottle/puppet-mattermost,https://gitlab.com/harbottle/puppet-mattermost/issues/47,n,,deploy-phase,,,"in a previous commit, they voluntarely introduced the smell (https://gitlab.com/harbottle/puppet-mattermost/commit/d536063dc84e277da7798dca963bdbf8afcb7d88)",,200205-180816,closed,FALSE,0,0,0,NULL,NULL,NULL,11,3,17 +agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,GitLab config: Job 'windows_agrum_2017' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/issues/37,y,52a4c77a6b89a755ed6f51307cd881edd01d911f,,,temporary-smell,He fixed as we said. But he introduced again the smell as temporal patch (https://gitlab.com/agrumery/aGrUM/commit/2beda8596de07539eb0c31c637216ad7acdb4cf8),,200205-180818,closed,TRUE,0,0,1,NULL,decision:pending,NULL,24,7,187 +sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,GitLab config: Job 'dev' is manually triggered,DROPPED FOR NOW,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/issues/4,,,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,NULL,5,0,0 +georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/georgedorn/wonambi,https://gitlab.com/georgedorn/wonambi/issues/75,,,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,NULL,3,0,0 +fluidattacks__asserts__Job-Retry__test,Job-Retry,always,GitLab config: Job 'test' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/fluidattacks/asserts,https://gitlab.com/fluidattacks/asserts/issues/700,y,0b9adaa3110348b9d1cdcbae05f0de7ee785573b,,"use-in-paper, remove-all",,"use-in-paper, they even removed all the other smells looking at our project repo",,200205-180831,closed,TRUE,2,0,3,NULL,use-in-paper,Ultra-positive reaction to the issue...,19,7,492 +vuedoc__parser__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,GitLab config: Failures in job 'security scan' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/vuedoc/parser,https://gitlab.com/vuedoc/parser/issues/54,,,,,,,,200205-180824,closed,TRUE,1,0,2,NULL,decision:accept,NULL,6,0,0 +postmarketOS__build-postmarketos-org__Manual-Job__test-phpcs,Manual-Job,NULL,GitLab config: Job 'test:phpcs' is manually triggered,DROPPED FOR NOW,https://gitlab.com/postmarketOS/build.postmarketos.org,https://gitlab.com/postmarketOS/build.postmarketos.org/issues/28,y,a56921a0d0bd1b1f3fec0913c416686bb1fb6722,,,job-removed,they agreed with the problem and the issue is not there. They were started from scratch but the problem was not introduced. So they learned from mistakes.I won't compute fix rate.,,200205-180841,closed,FALSE,0,0,3,NULL,long-lived-branch,The current master is not the active development branch.,3,3,315 +coala__package_manager__Versioning__requirementstxt__hg-https---bitbucket-org-jayvdb-sarge-win-reg-lookup-egg-sarge__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/coala/package_manager,https://gitlab.com/coala/package_manager/issues/275,,,,,,,,200205-180826,opened,FALSE,0,1,1,NULL,decision:reject,NULL,32,0,0 +jonocarroll__mathpix__Job-Allow-Failure__r-oldrel,Job-Allow-Failure,NULL,GitLab config: Failures in job 'r-oldrel' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/jonocarroll/mathpix,https://gitlab.com/jonocarroll/mathpix/issues/7,,,,,,,,200205-180827,opened,FALSE,0,0,0,NULL,NULL,NULL,1,0,0 +kb__block__Vulnerability__-SECRET_KEY--sk_test-,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/kb/block,https://gitlab.com/kb/block/issues/1,,,,,,,,200205-180828,closed,FALSE,0,1,2,NULL,reaction:negative,NULL,6,1,6 +Orange-OpenSource__gitlab-buildpkg-tools__Manual-Job__build_ubuntu_artful,Manual-Job,NULL,GitLab config: Job 'build_ubuntu_artful' is manually triggered,DROPPED FOR NOW,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools/issues/14,n,,,,,,,200205-180845,closed,FALSE,1,0,0,NULL,NULL,NULL,7,7,99 +pushrocks__smartcli__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,GitLab config: Failures in job 'pages' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/pushrocks/smartcli,https://gitlab.com/pushrocks/smartcli/issues/3,,,,,,,,200205-180830,closed,FALSE,0,0,0,NULL,decision:ignored,NULL,8,0,0 +neachdainn__nng-rs__Job-Allow-Failure__nightly,Job-Allow-Failure,NULL,GitLab config: Failures in job 'nightly' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/neachdainn/nng-rs,https://gitlab.com/neachdainn/nng-rs/issues/38,n,,,"nightly-build, no-trust, flaky-tool",,,reject,200205-180847,closed,FALSE,0,2,5,NULL,decision:reject,Maintainer has offered an interview...,5,3,35 +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/platform/issues_update.csv b/cd-linter-code/src/test/resources/platform/issues_update.csv new file mode 100644 index 0000000..2cebfd8 --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/issues_update.csv @@ -0,0 +1,11 @@ +id,category,reviewTag*,title,desc,linkToRepository,linkToOpenedIssue,lastChecked,state,isAssigned,numUpvotes,numDownvotes,numComments,label*,monitoringTag*,monitoringComment,contributors,contributorsSinceIssue,commitsSinceIssue +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,https://gitlab.com/mauriciobaeza/empresa-libre/issues/368,200209-230626,deleted,FALSE,0,0,0,NULL,reaction:negative,NULL,-1,-1,-1 +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/issues/1117,200209-230626,closed,false,0,0,0,NULL,reaction:negative,NULL,12,10,584 +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,GitLab config: Job 's3-branch-deployment' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/flatiron-dc/learning-git2,https://gitlab.com/flatiron-dc/learning-git2/issues/1,200209-230630,opened,false,0,0,0,NULL,NULL,NULL,8,0,0 +svsamipillai__gitlab-hw__Vulnerability__--api-key-e2fbb215-565e-4274-8f2b-73f7670afa9f,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/svsamipillai/gitlab-hw,https://gitlab.com/svsamipillai/gitlab-hw/issues/1,200209-230631,opened,false,0,0,0,NULL,NULL,NULL,17,0,0 +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/issues/265,200209-230632,closed,false,0,0,0,NULL,reaction:negative,NULL,5,2,22 +harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,GitLab config: Job 'push' is manually triggered,DROPPED FOR NOW,https://gitlab.com/harbottle/puppet-mattermost,https://gitlab.com/harbottle/puppet-mattermost/issues/47,200209-230635,closed,false,0,0,0,NULL,NULL,NULL,11,4,29 +agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,GitLab config: Job 'windows_agrum_2017' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/issues/37,200209-230636,closed,true,0,0,1,NULL,decision:pending,NULL,24,8,287 +sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,GitLab config: Job 'dev' is manually triggered,DROPPED FOR NOW,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/issues/4,200209-230639,opened,false,0,0,0,NULL,NULL,NULL,5,0,0 +georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/georgedorn/wonambi,https://gitlab.com/georgedorn/wonambi/issues/75,200209-230640,opened,false,0,0,0,NULL,NULL,NULL,3,0,0 +xonotic__xonstat__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/xonotic/xonstat,https://gitlab.com/xonotic/xonstat/issues/181,200209-230641,opened,false,0,0,0,NULL,NULL,NULL,12,2,15 diff --git a/cd-linter-code/src/test/resources/platform/issues_updateFix.csv b/cd-linter-code/src/test/resources/platform/issues_updateFix.csv new file mode 100644 index 0000000..e993796 --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/issues_updateFix.csv @@ -0,0 +1,90 @@ +id,category,reviewTag*,title,desc,linkToRepository,linkToOpenedIssue,fixed (y/n/m),fixingCommit,cd-linter-bug,comment-labels,fix-labels,"notes (e.g., how they fix it,)",reaction,lastChecked,state,isAssigned,numUpvotes,numDownvotes,numComments,label*,monitoringTag*,monitoringComment,contributors,contributorsSinceIssue,commitsSinceIssue,fixingCommit-message,resolution-time +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,https://gitlab.com/mauriciobaeza/empresa-libre/issues/368,,,,,,,,200205-180809,deleted,FALSE,0,0,0,NULL,reaction:negative,NULL,-1,-1,-1,, +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/issues/1117,n,,pip-install,,,pip install codecov,,200205-180809,closed,FALSE,0,0,0,NULL,reaction:negative,NULL,12,4,76,, +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,GitLab config: Job 's3-branch-deployment' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/flatiron-dc/learning-git2,https://gitlab.com/flatiron-dc/learning-git2/issues/1,,,,,,,,200205-180811,opened,FALSE,0,0,0,NULL,NULL,NULL,8,0,0,, +svsamipillai__gitlab-hw__Vulnerability__--api-key-e2fbb215-565e-4274-8f2b-73f7670afa9f,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/svsamipillai/gitlab-hw,https://gitlab.com/svsamipillai/gitlab-hw/issues/1,,,,,,,,200205-180813,opened,FALSE,0,0,0,NULL,NULL,NULL,17,0,0,, +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,GitLab config: Job 'build' is manually triggered,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/issues/265,n,,deploy-phase,,,,,200205-180813,closed,FALSE,0,0,0,NULL,reaction:negative,NULL,5,2,22,, +harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,GitLab config: Job 'push' is manually triggered,DROPPED FOR NOW,https://gitlab.com/harbottle/puppet-mattermost,https://gitlab.com/harbottle/puppet-mattermost/issues/47,n,,deploy-phase,,,"in a previous commit, they voluntarely introduced the smell (https://gitlab.com/harbottle/puppet-mattermost/commit/d536063dc84e277da7798dca963bdbf8afcb7d88)",,200205-180816,closed,FALSE,0,0,0,NULL,NULL,NULL,11,3,17,, +agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,GitLab config: Job 'windows_agrum_2017' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/issues/37,y,52a4c77a6b89a755ed6f51307cd881edd01d911f,,,temporary-smell,He fixed as we said. But he introduced again the smell as temporal patch (https://gitlab.com/agrumery/aGrUM/commit/2beda8596de07539eb0c31c637216ad7acdb4cf8),,200205-180818,closed,TRUE,0,0,1,NULL,decision:pending,NULL,24,7,187,"[ci] removing ""retry"" from tests",9993338524 +sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,GitLab config: Job 'dev' is manually triggered,DROPPED FOR NOW,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/issues/4,,,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,NULL,5,0,0,, +georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,GitLab config: '.gitlab-ci.yml' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/georgedorn/wonambi,https://gitlab.com/georgedorn/wonambi/issues/75,,,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,NULL,3,0,0,, +fluidattacks__asserts__Job-Retry__test,Job-Retry,always,GitLab config: Job 'test' is retried in case of failures,DROPPED FOR NOW,https://gitlab.com/fluidattacks/asserts,https://gitlab.com/fluidattacks/asserts/issues/700,y,0b9adaa3110348b9d1cdcbae05f0de7ee785573b,,"use-in-paper, remove-all",,"use-in-paper, they even removed all the other smells looking at our project repo",,200205-180831,closed,TRUE,2,0,3,NULL,use-in-paper,Ultra-positive reaction to the issue...,19,7,492,"feat(job): #700 gitlab config + +- Lint our gitlab-ci to comply with the CD-Linter tool developed + at the xxx +- no allow_failures (already done) +- no credentials (already done) +- no generic job retries (done in this commiti) +- no manual jobs (already done) +- no missing versions in requirements (already done) +- Pass artifacts as context instead via API which sometimes fail +- Remove an unused job that was commented in the gitlab ci +- Shift left a check that can be done pre-MR instead of + breaking the build at MR time +- Only one deploy stage is needed as they do not depend on each other +- Removes one unneded script ""delete branches"" as it + only close MRs that are left over night which is a nuisance +- Remove an script that checks if the branch has been rebased + which is an stopper of devops for repositories with high concurrency + where rebasing online is a must + +Closes #700 +",40597408 +vuedoc__parser__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,GitLab config: Failures in job 'security scan' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/vuedoc/parser,https://gitlab.com/vuedoc/parser/issues/54,,,,,,,,200205-180824,closed,TRUE,1,0,2,NULL,decision:accept,NULL,6,0,0,, +postmarketOS__build-postmarketos-org__Manual-Job__test-phpcs,Manual-Job,NULL,GitLab config: Job 'test:phpcs' is manually triggered,DROPPED FOR NOW,https://gitlab.com/postmarketOS/build.postmarketos.org,https://gitlab.com/postmarketOS/build.postmarketos.org/issues/28,y,a56921a0d0bd1b1f3fec0913c416686bb1fb6722,,,job-removed,they agreed with the problem and the issue is not there. They were started from scratch but the problem was not introduced. So they learned from mistakes.I won't compute fix rate.,,200205-180841,closed,FALSE,0,0,3,NULL,long-lived-branch,The current master is not the active development branch.,3,3,315,"gitlab-ci: run flake8 + +Running the pytest testsuite gets stuck in gitlab ci, so I've not +enabled it in this commit. See #31. +",4412981296 +coala__package_manager__Versioning__requirementstxt__hg-https---bitbucket-org-jayvdb-sarge-win-reg-lookup-egg-sarge__missing,Versioning,missing,GitLab config: 'requirements.txt' does not specify the exact version of all dependencies,DROPPED FOR NOW,https://gitlab.com/coala/package_manager,https://gitlab.com/coala/package_manager/issues/275,,,,,,,,200205-180826,opened,FALSE,0,1,1,NULL,decision:reject,NULL,32,0,0,, +jonocarroll__mathpix__Job-Allow-Failure__r-oldrel,Job-Allow-Failure,NULL,GitLab config: Failures in job 'r-oldrel' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/jonocarroll/mathpix,https://gitlab.com/jonocarroll/mathpix/issues/7,,,,,,,,200205-180827,opened,FALSE,0,0,0,NULL,NULL,NULL,1,0,0,, +kb__block__Vulnerability__-SECRET_KEY--sk_test-,Vulnerability,NULL,GitLab config: Hard-coded credentials in '.gitlab-ci.yml',DROPPED FOR NOW,https://gitlab.com/kb/block,https://gitlab.com/kb/block/issues/1,,,,,,,,200205-180828,closed,FALSE,0,1,2,NULL,reaction:negative,NULL,6,1,6,, +Orange-OpenSource__gitlab-buildpkg-tools__Manual-Job__build_ubuntu_artful,Manual-Job,NULL,GitLab config: Job 'build_ubuntu_artful' is manually triggered,DROPPED FOR NOW,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools/issues/14,n,,,,,,,200205-180845,closed,FALSE,1,0,0,NULL,NULL,NULL,7,7,99,, +pushrocks__smartcli__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,GitLab config: Failures in job 'pages' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/pushrocks/smartcli,https://gitlab.com/pushrocks/smartcli/issues/3,,,,,,,,200205-180830,closed,FALSE,0,0,0,NULL,decision:ignored,NULL,8,0,0,, +neachdainn__nng-rs__Job-Allow-Failure__nightly,Job-Allow-Failure,NULL,GitLab config: Failures in job 'nightly' cannot fail the build,DROPPED FOR NOW,https://gitlab.com/neachdainn/nng-rs,https://gitlab.com/neachdainn/nng-rs/issues/38,n,,,"nightly-build, no-trust, flaky-tool",,,reject,200205-180847,closed,FALSE,0,2,5,NULL,decision:reject,Maintainer has offered an interview...,5,3,35,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, +"",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/cd-linter-code/src/test/resources/platform/parsers/antipatterns.csv b/cd-linter-code/src/test/resources/platform/parsers/antipatterns.csv new file mode 100644 index 0000000..dec538c --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/parsers/antipatterns.csv @@ -0,0 +1,4 @@ +ID Repository Link Remote Configuration File Link Local Configuration File Link Project Category Sub-Category Stage Entity Message Line-Number Configuration File Name +owner1__project1|Job-Creation-Policy|except-custom|start https://gitlab.com/owner1/project1 https://gitlab.com/owner1/project1/raw/master/.gitlab-ci.yml target/projects/owner1/project1/.gitlab-ci.yml owner1__project1 Job-Creation-Policy except-custom manual start No creation of job `start` for branches/tags: [master] at stage `manual` 10 .gitlab-ci.yml +owner2__project2|Vulnerability|trigger|token=0973rwu459usdf803c https://gitlab.com/owner2/project2 https://gitlab.com/owner2/project2/raw/master/.gitlab-ci.yml target/projects/owner2/project2/.gitlab-ci.yml owner2__project2 Vulnerability deploy trigger Vulnerability found: token=0973rwu459usdf803c in job `trigger` at stage `deploy` 20 .gitlab-ci.yml +ID Repository Link Remote Configuration File Link Local Configuration File Link Project Category Sub-Category Stage Entity Message Line-Number Configuration File Name diff --git a/cd-linter-code/src/test/resources/platform/projects.csv b/cd-linter-code/src/test/resources/platform/projects.csv new file mode 100644 index 0000000..8cac260 --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/projects.csv @@ -0,0 +1,6 @@ +id,projectName,creationDate,lastUpdate,stars,forks,languages +143,leberwurscht/teardownwalls,null,null,null,null,null +450,technomancy/leiningen,null,null,null,null,null +526,jonan/heroes-of-wesnoth,null,null,null,null,null +527,jonan/k,null,null,null,null,null +1025,hcs/hcs_utils,null,null,null,null,null \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/platform/projectsWithFork.csv b/cd-linter-code/src/test/resources/platform/projectsWithFork.csv new file mode 100644 index 0000000..a61eefd --- /dev/null +++ b/cd-linter-code/src/test/resources/platform/projectsWithFork.csv @@ -0,0 +1,6 @@ +id,projectName,creationDate,lastUpdate,stars,forks,languages,isForked +143,leberwurscht/teardownwalls,null,null,null,null,null,NA +450,technomancy/leiningen,null,null,null,null,null,NA +526,jonan/heroes-of-wesnoth,null,null,null,null,null,NA +527,jonan/k,null,null,null,null,null,NA +1025,hcs/hcs_utils,null,null,null,null,null,NA diff --git a/cd-linter-code/src/test/resources/python/detectors/.gitlab-ci.yml b/cd-linter-code/src/test/resources/python/detectors/.gitlab-ci.yml new file mode 100644 index 0000000..8eb9376 --- /dev/null +++ b/cd-linter-code/src/test/resources/python/detectors/.gitlab-ci.yml @@ -0,0 +1,25 @@ +image: maven:latest + +stages: + - build + - test + +install1: + stage: build + before_script: + - mvn clean + script: + - pip install lxml csv + - pip install -r requirements.txt + - pip install sql==1.0.0 + - pip install tensorflow>=1.0 + +install2: + stage: build + script: + - pip install --no-deps . + - pip install https://github.com/kivy/buildozer/archive/master.zip six --upgrade + - python3 -m pip install .. -t . -v --no-cache-dir + - pip install master.gz + - pip install this/is/a/test/path + - pip install ".[docs,test]" diff --git a/cd-linter-code/src/test/resources/python/detectors/requirements.txt b/cd-linter-code/src/test/resources/python/detectors/requirements.txt new file mode 100644 index 0000000..a8e7b5b --- /dev/null +++ b/cd-linter-code/src/test/resources/python/detectors/requirements.txt @@ -0,0 +1 @@ +pycodestyle \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/python/detectors2/requirements.txt b/cd-linter-code/src/test/resources/python/detectors2/requirements.txt new file mode 100644 index 0000000..945c9b4 --- /dev/null +++ b/cd-linter-code/src/test/resources/python/detectors2/requirements.txt @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/python/detectors3/requirements.txt b/cd-linter-code/src/test/resources/python/detectors3/requirements.txt new file mode 100644 index 0000000..31468b7 --- /dev/null +++ b/cd-linter-code/src/test/resources/python/detectors3/requirements.txt @@ -0,0 +1,16 @@ +M2Crypto>=0.25 +pyOpenSSL +Flask +SQLAlchemy >= 1.1.0b1 +apns +oauthlib +passlib +biplist +flask-restful +pytest-flask +flask-redis +fakeredis +rq +mock +psycopg2 +six >= 1.7 \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/python/detectors4/requirements.txt b/cd-linter-code/src/test/resources/python/detectors4/requirements.txt new file mode 100644 index 0000000..b3b883e --- /dev/null +++ b/cd-linter-code/src/test/resources/python/detectors4/requirements.txt @@ -0,0 +1,20 @@ +# Requirements for the Heroku install via pip. +dash ==0.39.0 +dash-table ==3.6.0 +dash-core-components ==0.44.0 +dash-html-components ==0.14.0 +dash-renderer ==0.20.0 +xlrd ==1.2.0 +cython ==0.28.5 +fastcache ==1.0.2 +flask ==1.0.2 +flask-compress ==1.4.0 +gunicorn ==19.9.0 +jupyter_core ==4.4.0 +matplotlib ==2.2.3 +nbformat ==4.4.0 +numpy ==1.15.0 +plotly ==3.1.1 +scipy ==1.1.0 +sympy ==1.2 +pandas ==0.24.1 \ No newline at end of file diff --git a/cd-linter-code/src/test/resources/python/parsers/requirementstxt/requirements.txt b/cd-linter-code/src/test/resources/python/parsers/requirementstxt/requirements.txt new file mode 100644 index 0000000..53563e3 --- /dev/null +++ b/cd-linter-code/src/test/resources/python/parsers/requirementstxt/requirements.txt @@ -0,0 +1,5 @@ +# This is a comment + +Package1 + Package2==1.0.0 + diff --git a/cd-linter-code/src/test/resources/stats/test.csv b/cd-linter-code/src/test/resources/stats/test.csv new file mode 100644 index 0000000..8d195cb --- /dev/null +++ b/cd-linter-code/src/test/resources/stats/test.csv @@ -0,0 +1,12 @@ +ID,Repository Link,Remote Configuration File Link,Local Configuration File Link,Project,Category,Sub-Category,Stage,Entity,Message,Line-Number,Configuration File Name,Owner,Repository Name +cmc_system__cmc__Job-Allow-Failure__deploy,https://gitlab.com/cmc_system/cmc,https://gitlab.com/cmc_system/cmc/blob/master/.gitlab-ci.yml,target/projects/cmc_system__cmc/.gitlab-ci.yml,cmc_system__cmc,Job-Allow-Failure,,deploy,deploy,Allows failure of job `deploy` at stage `deploy`,99,.gitlab-ci.yml,cmc_system,cmc_system/cmc +PPL2018csui__Kelas-A__Kel-5__Vulnerability__--token-731120e2-5bab-4af3-84dc-787ed80b6980,https://gitlab.com/PPL2018csui/Kelas-A/Kel-5,https://gitlab.com/PPL2018csui/Kelas-A/Kel-5/blob/master/.gitlab-ci.yml,target/projects/PPL2018csui__Kelas-A__Kel-5/.gitlab-ci.yml,PPL2018csui__Kelas-A__Kel-5,Vulnerability,,test,test,--token=731120e2-5bab-4af3-84dc-787ed80b6980,24,.gitlab-ci.yml,PPL2018csui,PPL2018csui/Kelas-A/Kel-5 +sbarthelemy__conan-public-recipes__Manual-Job__package-toolchain-ubuntu-16-04,https://gitlab.com/sbarthelemy/conan-public-recipes,https://gitlab.com/sbarthelemy/conan-public-recipes/blob/master/.gitlab-ci.yml,target/projects/sbarthelemy__conan-public-recipes/.gitlab-ci.yml,sbarthelemy__conan-public-recipes,Manual-Job,,build,package-toolchain:ubuntu-16.04,Manual job `package-toolchain:ubuntu-16.04` at stage `build`,187,.gitlab-ci.yml,sbarthelemy,sbarthelemy/conan-public-recipes +mergetb__engine__Vulnerability__-registry--quay-io-,https://gitlab.com/mergetb/engine,https://gitlab.com/mergetb/engine/blob/master/.gitlab-ci.yml,target/projects/mergetb__engine/.gitlab-ci.yml,mergetb__engine,Vulnerability,,deploy,deploy:containers, registry='quay.io',37,.gitlab-ci.yml,mergetb,mergetb/engine +PPL2017csui__PPLB5__Vulnerability__--api-key-60ef4cff-4fe8-4299-88ff-51e395d617e8,https://gitlab.com/PPL2017csui/PPLB5,https://gitlab.com/PPL2017csui/PPLB5/blob/master/.gitlab-ci.yml,target/projects/PPL2017csui__PPLB5/.gitlab-ci.yml,PPL2017csui__PPLB5,Vulnerability,,deploy,production,--api-key=60ef4cff-4fe8-4299-88ff-51e395d617e8,48,.gitlab-ci.yml,PPL2017csui,PPL2017csui/PPLB5 +PPL2017csui__PPLB5__Vulnerability__--api-key-60ef4cff-4fe8-4299-88ff-51e395d617e8,https://gitlab.com/PPL2017csui/PPLB5,https://gitlab.com/PPL2017csui/PPLB5/blob/master/.gitlab-ci.yml,target/projects/PPL2017csui__PPLB5/.gitlab-ci.yml,PPL2017csui__PPLB5,Vulnerability,,deploy,staging,--api-key=60ef4cff-4fe8-4299-88ff-51e395d617e8,48,.gitlab-ci.yml,PPL2017csui,PPL2017csui/PPLB5 +PPL2018csui__Kelas-A__Kel-1__Vulnerability__--api-key-0fef0dbf-10b4-431c-8111-68f6fa026bef,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1/blob/master/.gitlab-ci.yml,target/projects/PPL2018csui__Kelas-A__Kel-1/.gitlab-ci.yml,PPL2018csui__Kelas-A__Kel-1,Vulnerability,,deploy,deploy_coba_coba,--api-key=0fef0dbf-10b4-431c-8111-68f6fa026bef,47,.gitlab-ci.yml,PPL2018csui,PPL2018csui/Kelas-A/Kel-1 +PPL2018csui__Kelas-A__Kel-1__Vulnerability__--api-key-0fef0dbf-10b4-431c-8111-68f6fa026bef,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1/blob/master/.gitlab-ci.yml,target/projects/PPL2018csui__Kelas-A__Kel-1/.gitlab-ci.yml,PPL2018csui__Kelas-A__Kel-1,Vulnerability,,deploy,deploy_production,--api-key=0fef0dbf-10b4-431c-8111-68f6fa026bef,47,.gitlab-ci.yml,PPL2018csui,PPL2018csui/Kelas-A/Kel-1 +PPL2018csui__Kelas-A__Kel-1__Vulnerability__--api-key-0fef0dbf-10b4-431c-8111-68f6fa026bef,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1,https://gitlab.com/PPL2018csui/Kelas-A/Kel-1/blob/master/.gitlab-ci.yml,target/projects/PPL2018csui__Kelas-A__Kel-1/.gitlab-ci.yml,PPL2018csui__Kelas-A__Kel-1,Vulnerability,,deploy,deploy_sit_uat,--api-key=0fef0dbf-10b4-431c-8111-68f6fa026bef,47,.gitlab-ci.yml,PPL2018csui,PPL2018csui/Kelas-A/Kel-1 +masakura__issues__Job-Allow-Failure__chrome-branches,https://gitlab.com/masakura/issues,https://gitlab.com/masakura/issues/blob/master/.gitlab-ci.yml,target/projects/masakura__issues/.gitlab-ci.yml,masakura__issues,Job-Allow-Failure,,test,chrome:branches,Allows failure of job `chrome:branches` at stage `test`,151,.gitlab-ci.yml,masakura,masakura/issues +masakura__issues__Job-Allow-Failure__firefox-branches,https://gitlab.com/masakura/issues,https://gitlab.com/masakura/issues/blob/master/.gitlab-ci.yml,target/projects/masakura__issues/.gitlab-ci.yml,masakura__issues,Job-Allow-Failure,,test,firefox:branches,Allows failure of job `firefox:branches` at stage `test`,156,.gitlab-ci.yml,masakura,masakura/issues diff --git a/datasets.zip b/datasets.zip deleted file mode 100644 index 475f5322ed7a956910e904aeb0614fc7fc07f3bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 852346 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
    $_cWi!eI;U5 z)5mX*izgK;Y<5R1$s<7!mMj?U%Zd)40uVMJRfe&5+tV5&<54QQ{)XKFjw%fqrmRik z(C91Xykyxa_|>8m{Dk$GfGycWiwF&S0W(Czv}{N>^vY4{If*L5?1Y|`Zzz@tx{6^D z68Pi+@|g-rvE^W&-;M-#sOVZY7H&cnrA2bJILF|orDl9O$z|*bYuJFiIT;UOI#ps4}yH0w7yGWn0vbwR= z`WJ04BQj8&-?W~@Q~LPuiQoq>6i~%u+o=hQvJ33&ZpV&Z=S76JFq4vQbGhw$<_$z| ze3t};xuQeotN?zNL8#Tna4nV%s49_j-4^R~SNk32T`}2wH3{M}ik&U)?I<2cp$2?q zLze|citCi!Q#K_G#33snYP_wqb%rppp*SIzR$f-xvJC} zqg}B8E4{#5H?Z(aVE=5Ad}P}{@c7$fwW8nxbMg?nkdb!$XA|~?aDZtl19oux^PCuSrky>5`~73#k}Y zrcgnM=5$MN+@%L>%BbG6aqY$`bgVRn+(QL+c*1P6K-={S4Y*<2)p<3gW*bu=LLsKy zc0=d*N1{-n$YeslavfW+@wS?WW8rN#=L`^aV>1W9Qn&{NuwW9UWlwW{f{|)e#Y0Rf zGE2;&Pq2U!@kKy*COh!%o?YPGsVuJ-DQjYhbtGVK!p$zQoClsnKjUT%NTrLY(X_3* z?)%@DFYt~Kae zs===+c(8=$O9twT@9U)wl%`BgUekNkZC<_I+2KF=gT$c?f$FI1j zu>9Dao8;E(HWgUD9aGnbHfDq%S+C+!;%R5c;`QCMd#t;mqqe)*(}OkeJli8Qc&yf1 zB6w44UeJQ?Kp2im?xMi@RJT|20Kpizei-^Qw!W2Pd{v1gRi>gU%0DubV)N^s=8B0l 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�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

    iI2ig((pj~18+-# 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

    ScJ8gp!PY{`ZaQi>{L5hE5Z7>Fge z82(mtu1(!2OrWpHmhYY7wrDV48hd{7BEsgEKO3>09G@Jshuf=f|9iN*xVre~>o;=n zI?tqi5og!|7t9Y#Bg5l`f#B`^jOGGiTuBorZ<(&|ZDwW3mnN*W87ASwTTUBz&qs>S zS;|d>c&QFfyNj0YUlUwFFUzR0eRzDkVmop`%mkAY6;|*pC3a#*pioEhd%r7PU@0KZ zQzE*3V-fNL!@51^)w2GB`{=uj>pR$l?BpIZ{_W%f4}E3>&dk6*a5{S^*s1aY8`YK? zp}h-C6GO^4nc~;w3EPjG@7w=8niq{wb+Y-k&j0!S@4G)8M%YpVi)5J3wR|NH-oOR`WuI71+`xOyVcgf8oWEmV zuvo@?6|1gJ8EK&zOP@a@##n0{|z=&QOq8s1^Yzhn%z8H+|$Qv z`t{rQoBPX~M_1%Q_Am3ybf&cd{cM`LmK}^Lf}6o(9WxH#`n>*fu0Da6-KBl7C)<>m z4wzt@lM%xcYToD-N>dKcDf zD`{TQjIZRvIz8)7uL|Ley$-Ew+kt_Mm?0s&D^O)T_YrbV{2UjXfH?{BZp z$Lb|*SqI~u!!445=I>VT2$8P!L%96VYk@^0v1uzT3&eEcj^wvwj7aRZKj7_W`u&=2 z4A2qNJ9nsP|KG_s8ZC`( z8V)L%BP1zo)+bqtDK?8hh@6i6I@0}Ncyke*Qkx+%z$xhm-mc#lVYIM)Ne`QTxtd+v zez#?KF_)*JWNKSV_TxtLzEvavGeWJ~e8D_Ars_AdW; zeuVHm?AAy-9Nz8mLe>~a2`y>W+8V68%7_X>9%G{4-KM(f4%mw(Y03m9qi4rtp!ym* zg;*j0o)t6L0q;mR^gXm&TN&YhY`W%oqEr6W;gD|`{s`inE1RF4u_e}S_kbc5SKx4h zjwnzxSu$MYJ-cgE4{|Q6>k4GiDBYVz@s~TWI{GWTBjj*vSiKta2>c(0)p6Esx*fV_ z(BR*(MQP;>>EBP`H~^Cu9j9pwfL}zqXoNuJX#|uEb0yTF<(2(HVkoq(d6=_^Obn z^Od)e2EPJ?src4NP|`icdokC`6wPHkl1cOe8!&G^lRaKgRx&pjO-&*Uh;+@E%%P-M2H`GCV7ObtdcC-wn7Zv+q*rrC_%TTMgQ-s*(N|N=;5EHV`1$ViQGjGuvXEUk4r}ikKTPLs=#2So4gGXx@8K=~Co| zKZ9cn8d+C%2DbMMG!+>*p0FE+r(8um0!PZ$r)a9og##r6>u1aJM7t6-UFuX6`|%do zUmKopu;nIAtxF1aea{FE{nz@{@%7&fzG9bl4ueCbk%y5l9txdejjm#IQN$8YItEJc zVXMkr??UR5PcZb^bUiS48UC(&6(hj20?Uwfxg#C63fa&A4!R&fv$(Zk7LXS%1h}U4NweZ$?Tw80%m>L{S(@P9e zqnRvKqZ>;{w%evkq`T^uD&;VmE$lwfSlH6wm6+wg^xZ^Oz`E_zr5Fyd-zqnX;O8LS zcW>@=tp5gUIAs@bqp2`gWJL6J7gLQ8B8_EFf|nSU7zn8myzyK6J#2dqu~;FpdPm!1{rmbVPwSh&%6~i$V~9gT=TQh z0Q(;EBF;qF9&xOXs!}rM|C=&+@f~tr@DdM%z+_!WJkN!7G!R2&ixI7H0J2(P11$uX z19djzg+WZAUlwY}$x!*(UFT;QF(^+VvzvN%B?!;-zQL0Gl-!!8to&jfuFL_LWOp zda&XJfjh%w4z~G3wx13Lx(_Z0t{Nejvu835rYGqrA?yF9Xe-It1!x2bzONe{h&vwu z_33Bme#oFHuzbg&sRX9}gN*ewhJ|kF)O8FTF#~k!Kk$3HS%S4@VvG-wo)Ge^tcV(( z(bO~*dwBSP88o#fBkFINd86-*q5hu@_8*LmmewK`AvPe|(BWy89tW|BP)gb(-jrA# zXV@2ky;83XUln~nn!PLhRJ6_X3bq!nz;o0vO&3tzP{Y6~c!AyYz^MZ*z%F8r$X}d{ zsR5vr4x4_?n^=IkV=VRuYg4UG$PULFY~Xh4WP%GR4;kQ_hCsK|3lnGH`CWqx=vv8= zU;Towx~sA#<|@?RizaO^9zFJ)buUh(Emth(b5Jg2?`G^WJv&(^V(t+9SY1~CJdw@Vf7K-) zmJ37(v9hK$xPpT86mRqG3t!Y4jJHM2EwvgO4q|>?OB^F0`+Es{b}2J)q)kfPFd*c| z>l!@#g0J*EZX#iM-PNP9T)vL2Ip3EQv56lk1G^ zUlLHV@t5F=-b;8I1^WaG^^-Pr2LIhpAI?sX=jQzR`I(F^BJKjOFEYhAJy=Pb03)Ob-w`|NZ!p8G&8cc~KnMi~u17w?=~x zBWNy+(arPFLfRGL7I^SVrE+fG?sfjiY(*;($O;?5fqTmkHvxFNRNv@s-8}P#_Xc*X zmBQ-ec?~|PV~}ag3!lT7GG?pPSW?EFx8-v$t~5Sn3!XOIkZ$CeOq@NpOIayBVblNn z`aiN6zFczuatwi)oE7$^6*aTP{A@wNrUi3!L_cJmj0R)hf7hdl1-RoarpN5NGXWwE z^J>N#%J(3NFJbKM2OHk)V2r*#PVr#0-1HGuK5f0DhLhmPBN-QTR zj^O`7@&@6d-N`zbE||pCf^c*uMEy%Tct@CRpkZ2fuH$y{Cq8wL^6vVP{H(( z1p=@1)Zng!qAj&Hh%bSigW?&yJMeLPY5?$W6VE^xRN2ph#h3#*B81-K=bI<-T;IDM zUF>-B>2h*@b2U9aen-Zfpp5gE=BqPW`$kxU@k+r`&Zu4S6m{qUOZMNkbS7xb5m6X3 zaT5XdNkZq1>N7=HpD?nCGW_~-^63?iZp>W9Oaq+U{R!Qs^ zjlP|j!Oa%!8ll%V9M2P~E07sjlLEdd7Oy@!4Au=TbjAGDU}oo(7fYVN3of;ow`7+X zps>MQ2d^8nm1*RvB;C;WL=N+Ss*mqaCLbBsT?;HSBKnDh7YT&tR6T;g#l*6`3_|an zjK+gVFvb$QR8zLnt8H=8KG*v=|8G|}kT;lKH^^LYGT=3gIN|L*bRnCTyIdJEj6z_{ zu}{F{!{m(FvLM@`cT{W>9axCG?SO}!+p~!d;Pd-+^8HAi&#`UC_05kj|6CLNOuj`J z@Wd)PPn-pAq}3da0ABIh$T;UL)5gv!M1~=+@x4vQe&19)2I)po`q*Lf1oYa*Ce0dN zNZogB{A)@ETIh0_!um*_z<6F*t=y6sC;{y?z(fP(v0(q1-izl7VWmMlb~H~}Q8iHv zo7%Rj=Fh@4DCtN+Ez0NMyz8SSm>(&(?CR6?E!iUm;IWD*5m-@UnT>Ug5X+!7VLR(N z+46#0sTsMDb;X;4ea6%T*9jiy+cLcOVVxih;(&!+=C0_wBL=ziU?aMNVO-rgXl~08 z=4`H?sgh|{7cJRb;sX=g&HiL``#;P`L@=l!rPLjR4V>Ud+s-E^lL`BAbNTh#(+%mz z!Ffp_CK^kPT=SU466~iG#D{6gm=RXY^!@ueTS`$YUeXnqrZ5gW`nz%^zZ4^F3^Vjl zi;ZagXYW8oA#6$6KI>mRkyL1t9`Od89EQds zJkD5PqW`MzQCkX2jD!uJMWfe#;WOK7RFZMwy78BD~M#zo`sMqXB>ez|(JEB5Qi z4to+KZxF~(V3EmIaQHnDVKmPztCM6_bq};B1?98I6k!#YtT6>esNfnSA!Hy26v1FS zA)B|iDrOHb-5hK-O-592p9FCcK^iuOU1|yTj366|_gvs5)_l1Z^EuPbIHw5e3Zf>V zL%bA&7Te4G586@1;_S}+wU}z=RYfd_5 zurDq|USy&K0mx(5X?mc%>2!-1GJ=U>UFaI4rMAKn{C?yl z%bBPCtl>R*1E_4dxe?c_G+YoY5L?*OC!AAgR%a+GuB&o30_>3M9t6 zGcuwRcpjpR3cq-JX?29*YGX9}Ds=NqKR;cN5%tZdK2=uDjZAoJw@#b4ZU2|flxpv? zHM4HVZN`49M`GVJL9r6|*}nmAWq8hQwv;wg z&G84Y3^jPo4&Gyr70@e*qv`8hE`|z_Vy6C<7W#GbW&>lEWrf&ro=UGKZBk37ca3J z6sXiLm!`YGS2QLoH2Xm}Gae^pdjzhbu-OudNbna#RGj#n6-rN&a!RwtabVCj%y^y>_W7q=Jd5~DK|{aK-zF2RIBRliFQ zT{JB(;lWLg+2r^bUbg)<$1F%Pkl$uc#%qk=Rn-i8B?~jlWSSKi!xaf}Oz*dDF^vvH zVnV?j!NH-5je|STh-WOU>nq*qIq3+Y&##}(C06w@T0C;rD%D9uv8WXBp%!-dGlBA_ zkcFNtDrQ8dy)Ee}zHn)E9f6qn@E&`|D$H`Ht4x4VvgHKT`kNEe$F|t^{1j*L-?#?y`^FEJ%WkvH$Q$$XX)><{A1muonx>wnRf=(r>+Mp zSGTw99vs;_85s^m5?CGB3WX+*q9c&pHGgDb19|^Ap76VU5KQ zdp`=oY_ND@iT~J27A>~aBwN}q#lhJjDSKgD$&}>91?E6ChF#rG>E!)6dBF)N12Gtw zb2cdN&M!$v3IJutrr8O$r@-(q`vS`88b@T8;T@~)Z?OwVNL7dutxutZQakth+j)?f z9UEs2hR#(wVL$$B1h}fe-em-5E$nRSLPq+h{bOVPeql3G3&e{AxvPmllH zD2E#S$L7SOwPN+>?(yM2R}R&fPH(Tj{IOX-{qJFSE)ehtB^*4VI}$Hr0X|8*_vQaY zKkG|bKQt=N{@4S+9487A>d$F!FjDhExKjETU;nMM(wEb|<-22-JwYP`8b=8w_utqX z=8j^DoxlF%BZxMD=x*vBx&4nXvF-b#>7G^RnMS`e?cL?$|Mr@&duKZCJ`P!9CNISu z_eY)r&l@}laHzsvI!jOSe{a(zN^7k?p0Gy^x@#DdEyGiHVYtr05!a?=vMR}#;0Zw8 z)DqMvIMf!L2`o^RE*sHN{ie!M!>eV1G?%hWNi_O3eU&8Lat{r zB8K|ZU&OP6m}WPHOQPWTk`ep8Bl|CD#N(lJQQ)Z)J3XctoZaMojF}snC|@Qmv(+ z3!SMN5w-T{h-NT%$H4#cs{u#Oi>9eCfs}oMb@&K-5QN^<>2yK{hVN0szr7#veA4A( z?7p8+%-4VYYo`>^BoQR-|DV5iMnxHcu-*A3G5V4-eW_5{xO%Ruzq%<|ZSmr*#TCDc@A`yHSACaZ&Qd zw4W!ZY#Vm_>ToZ<_OKV5D?-HnPwXct)e$zL6E%yMWS2s|ODwm$0yZrT2w9|Rcu z+Dgm5rkA=Vo3XE?wm%!59Pt8?^~-jyO+vXtHyts;5*V?t3`=M*N6oa8lL^B!Y*{#K z_XQL0+ar%{TgA4}4ZQoEO12OnpBewH3VU^0LPst8P+#+mzJJ5P_L=0b{dT==#g>hrJO$E*^%at*?E z$li92gOd^_o+qwfz}@9N*^&-re;;^q&u|CWB36NuJ3~Y+(oupdP8C=lvbL>awu)@s zP+OO$CuP-qoSYxirCc{#{HyK7-ld46iv5bmf@1mu$_P3q5@ZiQ53Rdc{e0?rLph}44LS7DuLYu2)gY$|2A{Dp zE_i+;YVgFogl`KbNo+~?IiQv2+Lp4;*j(q_QW-5PTIdxhDR{uBs)Q-AmuGj?+mans zVuYD1vBWY&9KgpT(M8J!MsWI{ZgcVR9ej;SThfob4U3E1X1tBC)3D+C^!%9N%fcfC z@`4p=D*tRGb-=!=5IqJ0`e7#}R*blh!Bq&lgmv8{SU2$qR_^1? z^ofj!!Kwyb<)iW_hJA=>qLT@$bb&}F)VhOfOI}_QAY{R+Yf+RchM%Z|AT7y;8gNEA zfJ5?40L(R0Eebp_j)kks-sGnK5s*lW2zw>i!pvdq-NPrcq4oHCKJyvOH7x8>3h996 zF_S26(8i8i+QUVWor^+CC`+D#B@Au?_RZCA0EQ^IT^AaQBqH7&G=fhU%PuovhxuDA z(Dt*9lctQ^J3Brekj7%AXx*5)fcI6OP{o&IbXCX$nHLRs8Q`qP*a+0R2QtvW()oRF z=3)ukgk2Q%wO*-0b62~Bw9w6Xr&W3|ChfPDd~ z)n;)fbFRe6M~4qb_Nf7&uyvzi_aDpPzDf!r1f*OmOR{B!g;h#KhAXtIyB)9uF+hrt zFdJS-#V5#OtSO{(*fu2tsc&2-j4{=o?#<%9D18CrC4hw%Tt0Mynh={jr5&(rguEjE*vMp&Yf~F)gHLXrOOtl*g1o| zdg+@qDt72Dbj@-Z=P~I=hmz0^NZ~8kg+hI1WjnJNeFdMhCwXrpQ$L%g5NlW6ONP;} ztIl4iFljLh+`u}4{|ngF&a@fGz9z5JbEN|V5bQqsl84Xbx6Ds*kdU-F!cNGD3Wp_G0>gfEfE%{EPfJ z@Y*Z+Ec2RmKS=*0paHw(Mq~|Gqg>^u>{8b^Fd{otKh1+>27=86BD^6)5)S?Adt6^7 zeNIMm89(2HuZ#HH(jJUuQ55hL|C~vb6|a> zCwn$Oj0(OM&5%XY_1LttI+JPx$QAv*J)|`D3B6$KE zifn2ArDxxa#2&w&Kwe*6T+?YSL^1nhFdE#kLaZEYKVvI__&pe>VX)d8ESlhM5AAV1 z`<~STPdXTO1!$==KY9}R{@MfkWwg^AqYuZ152N_iKziL0I1Gm%3{S8NPlWvxgcX>l zAzYmVEo4Ln{=q`c*ClPyMm59#i2Kjeps=|p1U#ed4jL$dhlEq9_?OGCtQ6L|Uf`ss z1g#Z|7L!G^CyV(K4p^RT!sBChaE?Mzq+B!|1W77tif3;wgNEi>6pD;52*X#nhZ#lv zaCh-PY*N`{Dg@1Rar=(~0axJpgSGCAG-y6FX83|nKCnAjiAOFLFp&Ia8h(E>(S&TK z^qL5K=d>{mdwh^H2ShhZ`Y;OVSwRgJ`dQ)UEVbpIm1n!|>QT?sv`(0*Pe}jy^`OH+)q`({4lfPg)IjiDMXk_7>Z0pLbi@-^ z02Ud&vck9~c6gCL=to}S&pAlMRL1PV@O*Mc|N7Y&(UM)J_uLUrQ+~wjrT`z2@|Cc< z6hla#Y`LD*K{eM&cc90Xb_gmqvWXI z8A6p*C)GyjzTonBL*}x}NhwV}oIX z-~dU1S?ji>eTM14JD72I0O$-cAxn7#hV|UIJ57!@B(nYFoqfQ$5?~Hn_S7gPF+_e*GOSEZGnP8^B`hrfY>Zsp*?O-{y);Daad$qKPpuzA64 zK8rNwZ+86>2A20uFRL7(mL}{Qtn)%l|8oahXdse@J0N(?*9G|Ru$!~AE>o=w@B8_C z9F}sbFhjW%*f)8$;A)AO%o|4NGyGc?1=#w3ixTlRd8s=OhK%U}_!AADqp6A)2onkh z*H5xT@(*TAwb6~urWrR5Xt5jGZaA{DcdrYC`2+z{x3Mk~bX(LQ3rcv{isFfn>(Zde z-gU1B9nTJ!;6}oNVE8{)GJ*dth$Fq8H*|XFUdPjLOjuTLoyMiHzHtuskZKvhXHY!- zWUjS?2bRoezP{%ot1&eD#(Nv)!h6JsRmgPU9_Aov>jr~|JQ6k8P&_MXus{IwcNjL8 zE+x3f8hXDy-=xChIbU4!(~3JnzSWfvHO(5j`Y)rxE`@;@&B8@%F$1WTocd1tr! z=~{f{s>YBE<{@=#f3@@U?X#Y;9<~XO0PG2IH1e$yYI=2X?KR!ko7*23*X;7)icW7y zH}dWtwc|r(P4v=h{I`X?ll{9*DPS=?dn;WNnKAuP*yd0Pc&77q0qT@}z4%6Z!0QgS zAEST+H^gOm;$^9iKYn=6Ix~kl$BJyoAp!Cy%mVzLkUjX44^*ct=fRf91h+T}YJ!eSla zhU;(jTw%fBTxxUjfjKXl)b;8Me>$gAnFxBX6U#0@A%d^;xh)?$@9E_={*S;xx!3g~ zAOPa}+VFZA@T(R)s$m;$sxHSw-}q@FmW7-PUaWX)+5PoB*`b8Dn~5pHX(?F93?4tX zWK8mVrHC4qX5#e2M}{4)n{ozLFQ)GnGx03qrqeT&E(^UGlok4Nvlf@ zH#wsF3ye=-Lrt+%1Cwo}w(Lj$w)PpmZ)^`|HR2I?m!P=m;L-mf#MP1~F|QV2C?h0u z9AVwpmPW2zhLpEI6Y(O!#1L%m!^Q)$Gw|_8Q(nqcGgz_-=?A_jN>&u}M~ui}RWL8U zf(ym&|M~mozvLB;=ix7Z7WJmX^&B*YORPhxztC9-fi+UDerYIUa_}gy17uA5ze3z) zuROzp0acl%;5S-XAj*i*E$9ofp@o%oaf3LSSa}h<)AODZGTGGS!C+&X%MCmidxZNd z1bK}Y@;B}=?^a#2PXD^nGccWcYUmakz9AScNHZSz* z?;j3_Ys(34U2Q-pgME=53pIIW|7mX34cR3I)dTAY*8A*AMjB6Ba>;H%f6+?;UM(Uh ze;_Ze2=M1Kai?v4$IB?;44*EH3O72!TF)JR2m+ANuyGYbOLdkv;4}A>fQ{hLM-dXR zcDcrEZ#;@C?r}T|Ex~ub%0M&^A6!QAFz}nJ&^Z`026vQV7*&Q%E6A7{Dml^VRufjX zjgrr#8@-;){^AL5CMXToHefEM0}mqu$@_HU9@Gn;g2~ykX{)qqO9b~OTXJ}#$2fQU z-Llkx`0F$}*^|u+BFF2n{B)rAGzF4C+M{}^Jc<1Ya zhd)obVG9g9Q{^yURFC=6^THCcFI?}oFJJH2RA9rw&DdXx4A>Ije9%U`C!|S5hnmOt>CG202&%B8O++K3LXpF<%5W4#P}zpi@dkO z=2W-U%{}bQHyr4KC|)073&%BREfi^yes(!ec;l9qLN#Rfs*rYAyMIQ(*IrhN%F;cF zH&1_4+pKl{Tbf!EHwxWSiG-KZu*5{9`xu}?1oo`R_)=gaUKjOo0ZrF}xNlNSHrE_7 zSYBqtx+w1@k9dCie!`x3M23NPRzS&HVM-Y@*L-#^=9w| zM|3YmuXWTKC1!P;FliC_2P66g8PP+`(}Fif(yY--S#UPT6!50*4qO$6n|Ao#*_l;> z7Lv3KB(Xx+z=05)1qi;i;w~qu`$)EwaKm3?pEQ}W{!?d`Z^*w+AALnStvRM2gF(_5 ztM9tzie#XAFUSWeRG};RAlVZp^R^|~lKgAV3-P?jIKqt?EE$HEk_yCZ9y9zEvI0|% zT5TeUhds8zHrC>wTQZ`DzMk9rZ?l_+Z&UVN7x1cOJiEY#3ZRT4L9z z%1O;E5gjTz?t)RfoDir7(Wn&@cs!rAly7l!9K$zV>f+ldIs}%qJ>q%`=Z=2U_zIs0 zW7i&ij)@h_H6rJ<{8`szME6$}58AaZEkr`&CK99@d#_t;xOk06J77VX*~z5NSl7Q5 z(Xy9fuva@Xki5J)0KTS)1i*n1Rn0?vS!1#V3+=5(Rc zmOb+1;`Xl|l5uoNKoBZx5}hlIb20n$`D#|6 z^q38ax9+MC1S~N8CzFrN#&JOt=`uwy+&eH1?y^Hj3wkY-1|P2FU{to41vNv&3ArX) zPC&gl+NAmU`4F=I%aVcQ{XoAWo;qg^lxvo%W>#X@q@#ve(w`bTIaUmQpepW0<9OR4 z&+e5aWW-XgS@&bxJKYWavsUwrCwx9{*+bKk%_ykj7gtK=N4aPP++0&uR3jpi1K#14 zBqM&<-UK6gE{$NOz%Sg7e&v3=yvMnKEvyoKRH52o_Gdvm`^b`ARzSk8Z4mPylO^0$ zi^u&iHG(vNT;5@M+s+D%4lC&C@#)!w+G_HF_2~l>@`4q%I4j#$U}v%KkJC(R=i+n} zU$d@g&`Dft(CFaVvxo2W22-`9LzTJ1qd!Y_uLE$*qVQB0AEB9Dvc^PQVR5Xr zRHzgS(_gvFUtk|pWUgMFV}8{kt>g1&+%|D2u1}aKxEXpL`>CQxQ+5T8#nt0IaU<{L zhGqRFf{Saz9v+_ldo4Pw8axNzvb^&)94JccIum1jvx7x>J)7cS_UtV-j~C{iD|S<& z&xZ++TVimJW9$U3664aedlcPnfDkg6-lY|S%DlKLAm*EKD?VaN#NsG%t(0LHfQhTo z_0ld9yG%L|GPHL)a)|V+_6E}A;S6VnaFdp+hTlNDGXB9b6Ez~8SOx+*nEMS5m{vG0{dQ1L&Q zJ>c_~u~7dH{^>%9lE)loYvFx^)eP2cNk-IQZ->hxBVnr(A(q1`KjtgWVyI_48* z^`e1?J&Zj|eLdDp*O%kZEt(b15QBqd9OSDVtQs2WIVbyEUrXfr^8WJ;yXTc9?xTmv zIi6dUr`M4o71^J+p6#)>mDx zkd6}6eu-C=?c-BRjnMZLNyO1ZZ*V`MKb1A8(iaK*fr=bcurrop{+}#~8+jJiV*Cw6 zKdZUTX_+cAP`vevSS4VSN`)u-MPIFuH4z1Un2~`Ql7i*2Ws5$Y>Q8E!#fr022{Img zHo?HtLbbeXL;-u+7+%*Py|}GJOm@i!+YG#ZPq9cq1VZi@yXE3qgFA$e_wTk5F(DJh08 z9J*qC%;0{=b{O1g>Q(R)u;bc7r@vFhb}-#B#e!<1o99=Ghx#0<%_Tnl931+b6)@@Ej>Rz|L$ za|c*Dc$khG;D?A-*qK&E%OY;GA<9K#MA++U{We#;Y4+Z@ZA?M23DmnYimk9PD>!ZB z=x>Ca>WleY6qpD~5f#p1ZoB3H9V56~TffTe6}1ze21L!nPz! zY)}>saNL6vV*5yI+d-$FQ`7=V64H%=wF?+ZU{G*wWeyrf zS~+!;?_l)Y*6uVSugUl-|Hr#;G)5qjQth&(<^``e*?9X_q~Eg8CK4*%_6ON;y(8>Oi&6@jV>btofi`c70;BfSbuy^IZXmmt1eH7T1h+{ayP9k81<4-u zk0^%NXzXXZs}DRMGl*uZJG_mdcw5ZwzhBKJ=K2Dk^ymWrCcM(bAVo#CS9eo6yQ*|y z;o*{BG|)cW0!>DOMlSBwrD-~-bX${-;R_Xs6>Dp*1nVke!~<$x)%6#+$3D{AOM=ou zWSkvY5KG$dt$Ph(nv6N2D`O>!wG^!2jfyku;6`1I`h;{0|ES^hrH&$YH9b2&JDyD+ zCLd;>C&$E5z1z#kss)3Z$J$bhz$e5}JP{;ylky^UU5TWkx~WM|3X|_>b{{kM|ENH~ zjXgb{MI8?XgboP*ctS>`;OK#{?x;qv9@}@e2~2EQL8(LF>*_%`4V`nGhutHOSTerE z?B5LZK3@kcFl}>?oH@hRS>gy2{d>x*r~wC1vHk;gTHTZv3Owc~@jR_tkl-VtgQxSk zD^b95&$X*}rdBrwHh`A6@6P4#|XC@i#ev$tt(hu)UIS5XQU?v zonKk_4cX)jlLI>8QualJ11q>QhK!7yw|`C9<`da|3QA?DwMn^LGFxeQF<6jBdXj%n z^0>)eQ~O3lob*G#B~j6OL1}u0(HjIE8$k$yR z?9m9TT5ho;?Hj!vke8;3K*U?n^pUMa0(%?Wn++rMsg(S=L=BIoAxI3->2wf5^Jasc zgP_YXHcslg2#$W`m)q%VUm>_!m$A)kpG2G~iQxkFS=M)`|6XT%`*F6_3KmZ%n&`G~ zCRkXy7l2OqB%Sj3N* zV1jHZeoGF^F#qBumL)iA?V-hB&OO>z;OVunf=5>b9auTQ_wOQc?a1%2&a3Jn-$TB* z;OZzcJZah7CGAzwGuaZoJ<|*$}q?B?4?J!3ppvG2&} znt-U}zyF2z{~!DXtb}~+{{P^_@82+St*lB68zQKd^pry=&fU*_tMv!y-Dw8i4{Xl& zuC$1uD#ixx)VAduQ39Q$hrdH!UhKVFB5ZE7!u)f?zG5I`LfJCf$bZbSCHx6^haP;SHI$({M)8R(d!Naz;*1B@-Qxez0}-* zjQGAr)`3UUH>7{tZA;5}ya3~B&9POIu@;-BRkxozdsh0D3 zdwMcq&Dr_+=?5~5y;s|#sLkUv_bR42M7W0LoLi0TO@Ia_LMCfAR=XPNU46BebM zR+8Xn?@hjxN>_%%4>p%7DMbeMBH2>Id@GrYg#M@`QyP`h`CEbO-NLUB9S_$?_{HH)MclHIh_C+fUKet!D z|L~FBV;%A7Y$q;w zDT>MXvOjhjJDm({`a!=h~q;gz;%ZUS1vS<~Df)>p3@)X_Ic-*l+2cJz;cNZt(g@H~Mv{?8`a6 z%3OkoDCAnTO+I0DW0X5^OQ@+*vd8wdtQ6Pq3{yNd#fOTRwgV}o0a>N7$mHW0d&DZ< znrsN(Z5JI{PbH9U%A@tE)BrV4t@8}l5 z7Aq^-_Z;Y3kBlxNpN-Z_KSL;&C3*-(@v1>;Hx9^Jy_{aZcfmJTP&@6A^eyYFE_hWH zeK63H*DnoGu(wtw+6Y$4jEjQiLSzNSe(6m`dY-R}c$QZMUoqE`;HmF7O$M^J1s&Pk zfC|pG$!i1U-!c{VAN>eT$jqw_J8TOc4tyVh^xe zu`y}6=_YoM70@LbBcAv~rseA7Ba5wY6_BJSc%~#jWeK(&MNGW7DL5<(PM6X)yrBJI zXMY9x?x>d>&1O|Ax;ud7iuc+EIh= zC)eV!r+cUKs|vKN66`_OS6Eij4gIxFt8Lcsui#%82MO--lDb{|7(@Vc#(j5GH_3_kE<3!cRo1#3tq36+LA36&eN}m_l|0JzT8ctA1XR4o z;sHe0131H29Q)#uu=oW?Lk@Sy{!h5#0AWC$zi9mI8Qbg9tSguKjw|bgEkxdeI(fb@tH}$29#oCL777uej->9ZuSQ@?Tb|$JZNNOt@BkS`SRoeMvyT&ckt`A7D(SWP z-bEowzHDmPzpyhfaIdr##ZsV4wxtFqjJQyz?P~iGgw=}U$>w+m4IY<^zjsxDsXA0C zXq_XtksZnwIzUdGbN`CpN#5Ijgg?Ml(Zu}7$W#}it|b$oUt_tJE}c|b*~MloT12o< zB~3t%N%Ha+--N_8z4<)*bn(yK6Z_GWRb%^PT(Y5iCtZ%gZ7|;HmhTwYCh*|gQ!()O+GZL3P#-=E)tLQY+6Kjze9(q`9L?cVPfUr53d)&UiS zW98SsGa$)w61N4X`&zrP20~;BhM8gJzP%6lcm5G9*nMVv@6_aH#{YXGn^rn6;04Cd zV1r8(xKRpr{W;#Wll=L-e{LMalf=^Sek?y~mF=N4u7x_&zZ`3qRkA{lnGdM;^AZ^s z=Xe^wfXAnaYxdK&H&TiA;anMHXc#gG5!S5(yUD1dEP^g;Dz{ceVD|n)K2@Y|k{qOC6h~QCmcuGDnA|vN8`JXpFzLrWe&8kM?E*({7 zv49!1kp_fCKfROdkMx2mm^jD8Uio`twaM7qw-kRb8pA|R=s%dw8BFunM{npSiMSU> zWR!R^02q;p3j}5PhDcY{{GDajn4e+zji>WFIe!OsA6l?uS5LG1J1Z^t>{*4(EGdS2 z5Ovxj%W^Hpj4# z6Im~q7R-g7#*U%d>(=NT={_uC7@b)?T*;K)APM`Wz%rC+58`^CCKdtR=T^BM4y}=5$?P~<0>rLx`bH+_& zRn;YkN|OpijM!9B?KLJ&fG9?orqH^qolz}&5WLq*!Gcpu`(sU0&;%)R+C+UC&2}sK za6R)=`VTrcrJ)#qM3Z;U^n7-9N1WI{uvLn=;t!0TOE7-sw$gr(`9=b4*wvIJr?4Ay z246G-S3Qe*v;bE$D==}P@3&VVW4!bJ1P5&Mc@li@U^v3d5lY}*^IHqDHBf3kI@82_)IU$_J(T>+W(d*Oxk(U<)!k5`;_m$vPt4Q-81X9)u6eV$|QA>BrLhijD6^v zwimfs&^$)e^2z;rpR8wUTpI8hwisk8y!Hf|&G77qmtekViDBB6P#DP0B?g8bHNMQd zVj9f3{k9ylRBPZ%uy; zS%`BdAVZ6%k^PNVym+6oS{IJ>JavQ#cvymoS4eg-=@UTWDwURCW%N~KiNI7);-sEv z57w7BdUJG2F~yT5t=;H0;*fnH$@xPjhVwml<#(nB(*tHP1}fpvWSNk}Nx~RRH=Op` zCGJpn!rimmKTA-sGdQ+mk({Lat&l5G;m)b@gxd;vcO77bE_t05OqCMZk>#4FrXdrV zcbvU7>*H6iFfs=Ib&69?4_2sa@*YvK4r~^9q4cB6w2ELSYrE(z8CyI#7$iKa*RL(} zE|STRUJx>O&%oyqpW!7^hMz2q{V3bTSG2>IuSHQZ4Mt1M+niQS;_x-W&eUY9?N4}+ zrmlJf3o#+)aB_!q%NKJ-L!R+(A)*YCx8W9kMK!~1+C;%H9 zp>TO?Gf-2=51z-4@kQQl$4nA3Qs0)HqXV|5|s&VG($jU zxbnU^QU8R6G>2DJV<5Ju!Be)UciRoYCk#25!K;eCzvN&D^jG9-jP^Z(+Ik|_vo>e- zf|&%~2~|4kZLRrA@O!e=>im&EKP#+6fp}>xEM0n+^A89$kqZn@zDFDOPJ-|~SW4@T zOu7aH{dplQ<2DRY4Zg{VN+WG)1IW8s^TI3##-*Ovd5zB}$fdi@X%`I$)j%M~dyF;EyPk&vR1hoJh+GFF7T@>K;H^BVmP` zl%B0&G0HQS%tHpT{{(GwFrcx3g1!?v|9DA80l7pZR-dsjYIsm6R1frgmds}@U$A=q zULj;KsLT0{3oCxMUC5++aGeyUdckbFyuPEwk9@%DCKI_Q6yiOL@uVK6^17`M=U~7< z8(O?iM+Kt^<^)9*9_kVl5L;K{r?8k}U%1qWNR zJU15V=)9B}O{^pan;9e+LYZJsKI!cjJ8Ce|8KH$r>Zm#ziNT7EI4r#lUm2bm3Gh3? zRl_8Sysb(y%7XzeyLG4GV@dCoa2bQ6$g>^*SpevUv6fiD3)Sz#oxx+=yZ$?6(xS~{ zBKe|3L_8a*n1};x^h6`o4)1C#=j|v$;?HGMk!|@4mczp~&YzwKc#W(IF^`25HColo zvLs)Fhx%E8vZ=|_R&NXYGppG(7?|K+o_+Xu_mPYO|A-yOC+KLn65_4`sB!PWVR+AL zgh9Kz`x0G#BcsIomI_?j4AwZtO$35tlR@MOTRR?jAHei3O?~(e9d;zd{vuD?{evf2 zZ7>9ra+%4sa0 zb)E3J3wH9B*k(_Yzh+Hq>D}o9vB`Cd85LGlY??f^qXuIsFC?PaF?s_(l9H1xsc&sQ z?2tMK7lfv!yk|qn(MBG+B}niO&}Um9>4hWb8bzUbL<@1R5f&Tq4)AlZ6<34nEA^Wb zdV70w_UY_8x?0;)0SvF*US3{DHo+9JNRf|s?Cx*vZvN8Mmk+bs=+*%-?=j*szK7>2 z>j~+HtG5~&{EL!zrk7!)c<x?Ha+! zRJyysVe(}rTbR7BYuSng9X|A>(N1&pGIEXpN4uy6c1-VtKQNU%DEfgb`5$9zcY2ZE zOpd{}mCK)Yec*{r=8*qLFApHDTNkIVPG9x$6$fnB%L0z75d9q>UQ1?hImLK_9Z!B`8Y_Hr}S89ZM_XJ_j+Hwus>(=%tkXgX|@q3f5p!SxYZ$ zi3?IFUt-o{FAl&H&GdZ8L#H>)p&m?y0hnT@Fs7szu=f==eEv?hk~Ix@oh@-q{;xS* zRtKV@%WEtv!!J#oWJfq+SCQI<3z}J~TdqD_(h~Dr?77Y3rU0jI07_{^ip)*>K%}6_ z@YC>f-qOpD7hi9V-(Q`5xg#5K7!{=`yJ!Jsk3Aeg_)esxt}XoXrt#NkO;4Vwt#@tT ziTVnC8jESVEh0~Qges-8vJkMH(WNvtDFMya7LW1z25+bAUdjhn3PyP&EZgoN2&f)S z!7W6NW+m3Nk&>gd_!yVcR$P5+bm zr`gvp^K*lg8nAoV9zjb(AZV9V8K-ymoE2mv2u{dgrouFJWM0E0?cq9r?Hu-7Q(>a6 z5|&QAhc-n1X*?lsO4(ti9tDexp|#Q{jgde7#U1g7e|BimvsQFG2RlpMe73VM>-~w7{|{@Y7+b^Liz_M#*&-=~NSJ_KlW;^#*Sz#@s#2 zM3b;2hqh7bxy;YuRjEuM13YGGP*JCReb1BRpf%%{Dnhb(p;W9n`^8eR>?#)?*p(R?C zXg=eqH<^g{3MzcD$y*=b>tl^O#;=TcMK;o4n@T0c(MW68a&RWBDDdz>ASfxVSuGn8 zSyz_~Qa?5Rfr}bm^PS0J39p7H4rn)uu~K!rF*L%sWU8`E)JUh6E6HrkC8xyOC%MU z8H^%qwfLJYvsyH~qqB;aFz36An;CJUFs*Wrr@M)g_jLlx3X@#xG~>K*_$-fFLto#< z=r$^!nA0KZe>kwv4@MbS?#hg5=)>8Czc$=m!poXx%7eXMnke9R!PXd=zw66!2xR>h{-m$GjxqF*3-$fAqdQbz^vtoq)&a$a#v>OVcDE0Kv3 zX+)5;rzC@XNAm2hts#TEk$8Y?KV03sBZI^_0DyWpUurMDUH<7{Wy4mv6BZ&c=m^ zuEsvmY*s0eBh(SSwIQ#6Z^7yheh808#|8SrZM9_Ss0 zwbgr26i70<_i)!@!IKUT_V*s@n*_fyc$Cpz`OLeE(!}=6a={S3WiVHKW1=Z2KwiSm z3Gdks>Ttcqc+!os(}bY~ZA!O0*E$f2k}EwYNTq>7dZLf8xT zSZGL)vk??~e3S;?59RT{;nMVt*M2=QGCj96fX zxutEPKbdv1`g_}M^v5?Ep5n~Z8sBgD^Luog_EK@&VR=-`mOr^yuhC(JDOtcAj28A_ zAj!ZBekA;pS2VG~zQ*9ScC79Mvd}qx46+dh9JMwQmMzs_Sk!Cu)bu8b>Ds(QuXmhP zGt+Q&=0FAMyR(~*}&Ou?!zwt(rN$ZPcaIN=* zytp|ytMP6XUkPMtCB49tpB9fh%5L_6dwNH~an6NmHQAPXo`!>yTZ4y+=n+jTv;S8DT_EL50*2$9NLPn(^pWwKny2`n%yN zRlooHjp85>7Lxmg|2+82I?}14!v`{cc-D;A@f48`Rc4e)9hI)Q&8b}{_pR~z-7|4G zlA8vLqGO8(^ou-{nAb}zj5wFE1if;@%La>@?cwcKlXo^F)1^sM?dk`5aNu4Rz$#;p zlcIqWoHiWvKBmMxY6yJ{m**GPRO8+exzbsO4^B}2Qh0+fmG`a6SS9Q=&613`kN$h- z50(@cir-V4rd!}88Dv4sJTN~FM64{mBRC?%wYL?0#>K0Hl|}Ban+P z{GO{e2gmjeD^m?w34OJ6>Yi- zb{68ULR8|FF5oS9@k$gn2R>7*JeMt*$b)$+MWSE>Ss%c2Zj|7#3Om}Fr~@MeX4)}% zuEWc0U-~K1wAZ*xsrf;P?29F{WkIM)$SCy=v(>!k8KCxOD;6S|R~+6}O2#%%1af?K zLeb0Uee|BV3(s03rW;UNs*7M+CQP@~(#*|&6L2io>e8*(O5pUX$XA^ ztw6{)Of`4g)*KmLHp0-PiK^4p;p^jLOFd9TE_y`JT7JXg}3uorf3+n^W(##*JRSc*IpE*VEVw~+iO8VH7$k4@M@$>^vSlG zf0H}3Bg&V{49meAOZ3fC;;vterrmL;@3*k-(Tqb(HAG`~yzg@b1~~Xg>|T>;^Rt`S z4j<+jC{grFB)CB#RoF3-Zu9nminfvt7PyxLc$V*OZZBul{!84yK}9VsUqw1eDArnQ zT61~2jCxq*vC;okH=?jE)dZb_f=LC2ONn@YWN7ycTky3g5;{Bi@BHHMs3z{(a|~r< z-D#sKS{{sy*Fg*b@EctwV*~R8t8?o1j$=Z&x|Iq&pGgOAozXCDebbewiw)PwCYzm1 zJNUn$6rp3NsVjKTiFab!l`5#x8T=Z2+KGj@L!azC-BqhSK{nvYmu7KJ6-#&mmPCK; z?KST5U6_7KWaBlkVhdg-1^rs{nW!910Op-vl%hhmLeh75F(&!ReEA!>MCG0*^1BF0 z#NUCTUuhe2+iPeoT+*zj_-XJsz)}D&acuh?b^4#4O5HnjwZHN(ei{b*?w%8RD9gSR z8CPFtdz57FL{R7bz>WIk7lNHpwnnC!Scx>lRO^vafo!*U2GExk!-DkO zDDX$YG4Z*cZbQh z5|yYW{lrx)+1=fYID!8LTN*^aeqc&cyu&*iI{3!Xoxn7qmTWrsn*3bxszp{Ci`HhZ z!Vzhc+<*akc#6a|2z;Q(M)u3I;a%z4k8-0hXC17o?bN8i30roGA#l@$5<2dp zj6GC5ANjzrJvhRZ3s9zMih$O%#~lObChEhgWZLd+y`D1$KD{NG5Ves8soqNg3$u$B z&_rDOFXz{*ry`rFb$fe_zEh&X>i&%Mr_lxNWzoe6nKTE{N5s57C^_QRQ{)xsiCwXX z!9`fero)SD!%fcgz7$_OhOYJuwLg8*m*bPZJbm({|9o2ia^QddXyE5x9%!4a5nR`} zWTqDryveE9H_2jwKty1YU9^&(4OyQPp=UlStYVcK@CO>!VHQSz>03cjU`>OCD==sCa6YpM4fH)L5&4Zwh5lSxB4?sJC_APLxuOMI;JH(j zrwbi5c#gB(A;7NMy63A@;3@XjEr$e{S&2w7tm;k=PflrN;m~VSeTPSa;S#dl;YA)d zEM(Cv^!B}bTCEoyY(W{XZ)AFO0!vOIdEAzeco=wFw^zgNiwQKK9u?njPVA(oWKI5a zPhGatf$i(H|Hk03k=EIsA&p(T1_t$Qcxg{swInau0zrF9RwC5MszHuKduFuNX^2xmhtzkis2;3e9|Q+YtH7)J~& z8^;7^S+(G7B&@-65VC37rL0eO-t5-$am4Q1>!xRL_jv%UEG2S7^JvN%uXFGaBAyDY z$$qvA`EP3vHviPPfBx^VbP=tb3f%dJ9&hCKk9vmf zv`2@BuW6q!Z*$TRrXR!J*x-Fw3KLSZO-i4=Bv%zn^tI59pU#vmix$#=vy6HSi@ovx z2J?tq+2*4jzllRU`4;ZaEJ_0dx~j4}TRSq5cz^$0C)zne%>IoH%4Polm7&@Gq{z2O zu%z>@X7mn0ca*K6*+~5Z@JwYa%aP)R1XN%RM9!jSO+)&Q{x9N8 zsP~|G?pa4i2rr?vfkm@v@{Dqqyg1-%PVI(vFAyoTrz>gsx+O!q->3`Z!>FiK8F3$j zVZr;LYRH*1vKzonv<&So`#Hc)Qk>86Ad+e&$av+wMSW)Cf!D7N4-e^W-XU-5Rh?mt z+or)2!fIJp63jFQ!U5|hhW#^QwH7gw?@b#$%LPXR7;FTVq-dfU3%(r%x8Kc}g$-0*JHH-Oxbkdj@mxP0C@7w&# zz8*Lj*=zc+PAW~@g+B`qYID8BAg;!gc357KG_9qW15Z76q!y2Q1zG~?aDA{)j_cBW z_Hmbd4$h0MlUZ;_54qmCIxh06jTER6s5zuRB0u}ei0p)?gV}`ik_P_)dxxFA; zO`)?seGrA9J-SJRn-bVXx{NHCB(bf}uKXPtFla{1!H!~RP{3NnkMnyTBaq@e<8p~A zY3vkm_6Qb~w%LYFX{vb|lTkvhRLSbhYq%K}UtnbB8t&-sNs*&4an`k=wk>JOe_+9bz0TZ3`}%Qh9J(um6@90xU`TW$3TSiKc%;qLA& z2nWa7DGW8GbA(?d+il*F&=0IMm;3_Ho*2bcQAF4r%BRS*^@TIKlhvLHP9p?d3h&JZ z{9HNZ1`W>lSv)YL4Rd!$`itM3+dK`~R5HtB78|guT=)kpwL#`-OI;#jWFaa+&sp4k zVwgNP%EDiVih2FRVoSMFL6|{^&4!hpo2D1!v{E_Sm(yy;$aS;cGpVQrH+dxxya->m z9y4Et2LCd!4IFqMP{QgKn{XEf`n{p-L0vug$Q#z4z-jQA%cIvvNAx0R?G2_C^@8W4 zr+=JH_ESYzaDazCk6%n+CdLJFHcNvzlHBI^xa1zv%XjC$?bs223KmPVWYVOZHm8NH z;+YCVpD0YpBXlU+=7jX0y?vcs$Ll-={rjRT$RX1z9;FJ+-j{h-U_`@PQUzr?U6A4G zm$?_aQ3hna0@D{PU%L5d>yQ!KZ6oq~43`F3-Rex!%bUxXjF-Uxlx)E`I3lG&2-Wrm zzc85!L-gqLU)^GdHq&qJ?e!vQVFZRG{qpa(yQ}|3Hrwy(0t_oohBn`DLaexGVRuvD z0MJCq22aDL!Y~-wDrLFUtj<|1V%o?$6>Wr;+u;$}YV%Kb7YGYg&68#zwN6Sz=G(|U zb4)gMoeNRp!B22C=d8)WuWdmu-KRt5)d<$e*D&)f;LFf0bkgb!qoD<-j^O(Ak_-}z zODCR%)C+hE^6(YCzIy*Pf(4LTst+A~lkoD96VA1VEQBw`LruT&?;o#zM0Z0WCkpMh z{O6NtCa%wpsTL)hTjtJ&Sjn^0+fONSZ5VE$5(HlZok{yV+>K;EP29>T#s6MP2@hcF zu8?=QBIAc&Y2#hxuV1x12WKvkV1A}w=v^+7#M1k0H~2k>PRA!F>Z{5qn8|6$5z(5A zLh@coxq61~V#f4ZCqmcbCn8X%#CB_OlizkUIo( z!q9vDBJ()yXv$O(wMb!^%Q7WS>dO{k1lpKXE*2ueh~T}z@nB@qH~9o~W?0C|J}Uu! zP+ij-tP<}_@FIi>#tq_M%@YQ{vEA2;b>K>g;^5k#cI0VGG5rp+GF?cLE z^<_b(BJZ6smI_0vYp^#lt3sB%_o?a4)m?P??cdw8>o?KO*UNveuV!RtZ%;oS6kZ*} z)1{)e)RwYlZdrCniNxCjSY54yhe34bq==Eba?9HD zeEAqHO|e{i^N~zG{)y}G%mMb~#xdC0gF)yB^Q;@NsXDmSt9Mn_>VYF!RfG`XjVKKejF zU~iA8W?3fK1I(U{FaR2w$HxWuG7P-?hYmia(Gte!&$z}`|0uu0L=q{}qqks0<1~tT zUM3qU-LwX28PV!_W5HmlmW7OA`<}>NtUk4F_AEfuIFFEx3k_*oG3T;kdpS9~_ah40 zai6W&x0XWcB>zS~jNGlnNxZ}1HCK4vOe;L!r8hkN_rIi<1)$Df^K;OS@RD1!M`4i< z0^c)Hm==qYx5vl-yrBm6^Ulq}iP(RF54D!es7Qg|deTNQcsJptmUZ1|ivJM%Pr$mk z<`|J~L`F@c8&O9K4kpVe_07v)FJf&U6wcoSjatWVT(JaH2JFiYe@iBk8VdxJPIPvqJdjWu@QQK$~7eDFvbOmZvtd%8`P zH2e_BnpGvRl(`oKF}Gnz2)qP5gns)E?a4YWoXbkKTSK=~WX5Y)Sqa^$&a&ctf5zha zh1JNxB&6_fgJ(hGhbYFWRHwwYhkW_VbJ^bI{8rW-y}TANnF!#;Je!)i!!w@_b$ffW zHPVfgwKw8U-5M~CV-{o5bC+Nx<;md@c`Ei~s+IKu_exliv=ZxzV{{o5X)h0XiY0nm zl|;&BO=k@#L)3)G9uIcnw9(&U819x=aY@szW^l{ntp=Y4sT3LO?wOvua!xGf=%pdw zKQ~xN@Q`zQZQ1(9>ww+qyHM}xe+(wCzz$6C(wp&A#1>F52U|U*TUTWJ>X}%~&NY~` z>VdJCRk4)x-M|g_hi!=LeJK82vg4$!oA%| z{K8}+@?BAvuy64ileMIQy$sApB&+F@&ZmvP$v~fq?9qx~RiT8=VPnKJX8K;Vm_9n= zOeHya)atL7EpUrH9EtMd!{ft<8@dt?6!b!S$#fp|_3z}Fj-kdPa;~fdU$QyYT#B?m zmtCC z`X-e4_L*Mt6})QVuEKeQm!_WAOsKir%;uwsVG$DM7;)}D>U#u+B)fmbZ!iAIEbP4X z>6gfx^eS@as2eBMbqS#2lKdW{ka;b#L6b0DL<8Aug(385C!b=3ime5h>LsFNvA$9^ zK~fXYO$e5+v_*v)`grG13C&o>6zzXbj&OU4&&}#O{3fe!BE>8Pqhd*hOY-5uPc3qU z;F|Mw10ImAkE$fumU+MDk{QM3xxq3*TtMyIl84O~C2N{)9-Fe{E!p()u9L!q0#H5= zuo*A9zp+ML1lOi&8G}iF*wO1~n)_sjOCG_oxdho23|m(G{f}rb$P(dU@vh z;x^2NgJ5?>`X7IOj<1rAwxFcI_qNQ~a2>jL425kyT}YIDyS<2-9-tg^VTS59{~#vV zqd8Ntuo?X}ZLaF{&yoysZ!36LYPT#))4bGySSl+~i{jv3E^AQW8ThSWP(-ZEq!Mjj zk?jsa#s27w>lX9gTFWUNtudo;Dh@UUN-t=9tYJhNBH)-{m^wJ?AEq$c-^3 zJnt$<*s*1_%7Ti$ef4^n`U5V(Aos<%>`Ghkvlav1#~^YiIX;6~_T~;j8(Ta8XBu@A znMi+!dGd6_W|cND$x}fwSD`HmS&@w}WX|-MF;Zm+_>CD`-2g75=>v0>S({Ef%k6i( zpiRZV1ZrnfED-1`G+@=MrChzfd!pIvgBFy%;e zSSk^?zwhT=?4mfrS8l<*@RhCFSF8dHI^u0fp6lj|?Oln6mv3kcx=|^3FoPrv#cylh zvS(=9o7Aq*(DVCCbE}M|7fNbpAGA%^i zRSdomDA6h!lGS=?FueqemEh$;VzUgvqZV+#npyn*=!iUS4pC)@Z^mM9{rjQGAP7z+ zM?1*onIc^fZA8LA-EIkk&I?8L>g^#F_2T&GpF^0DrEy0UuEDc{YI{D2Ix#WUk@oWe z{7k<8jQGtTK@cSQxBmzdDEH;O`}~y*3#=l!h>)XCfii*z^mTC|Yuxe3qgGEK5{y_S zNQtJIDhGqaB`9gK-TI7Ce)@|ElOjF<7$g*_O&gYCg)`ZR!zVaA(wx_#rjl_?&y3}o zY^3CdSz;xhG2uIcdZ#5Xau$8P_(q%{h*pEwNFb-FWxlXA+=J+4aO_Q4fJWP|QWxHG z3`z@3hP+3in>V?Hr?;Lb%A{o4Aq0{RE-`!zLNgJ)B4c4X){w()8LuW94XGk zyw7Xt+XBv6KS_zTy0pEwbx`igKc@W2ERCT(jRQA|Sizpzj3dMq?Da2JtXY>`o#d|$ zPc0Jp!AQPza64L|W0$=Q47lC<9P26^4_Tv|G4?ey{l=PmKJ=Vn0Rcx0TiU`ShzwYr z6%!@dGz3$p)uKH}sl%7+h`S7!R5F$^Qa-ZQrOOf&_?D?pxCnbJuK7>H?2UyMuPtNK zNwkPyFB*L_ok zl5C{DnDvifYJS3&SmSPU#;KL&8a<)W&1Nt-H(65%jyBU`@au#IsgeOp0FoY?=D*ct1E% zpb;1n!z?%=v0zCFPa|w_^^cP--a4b^NKT6-ka#p_Ux*VuIX$%Z_lx6Ou4D&>XWdfK z0Iv)RVXR z4D1dAlU&j3PJx^BiE-rG8O6Rw2{*Ib`PBt%kE&u(k}~21v^AScH4Qe;n;GIXIlJ@8{rr%`D zRcjB%-ACdY0&%U zy`h%ry}$6z!$8tu!Kx$|49PE|3O(k?;^9x4JdrDI6WrMDPd^G+8&S0v{bjXy5f+d{aG~0S0ELW6!Wzc+W~Bo5KEVQ_yiB zV>%Z)KRU)Yfp7Jgj3UoKh}4{wxVYsh{EwFQNHIb(!w9SUqgZz2Q72ClTT^FEOYgC! ze<5WWftHVwT*8>dwFMWTOJ!GeHuH_fp& z3aK~HO~7ncaGhHo<&I8f=;5EPJ`6p4u!sWVaA&t4!Gq#1(IseHOeT7MZ12cK!CHOv z3J>{V(PJ=E=Nu+VFMo--moNlnP!cOZz)+t~LBDM+m#RGnH-y?x@D#}?@^|C^pC}92 z=L)#bo>WTU{yB7YJnPc*{Nq>hNahKU^?1bD!NTc6yR=`CCrjh{O6m?){;?7 zGf;P_XiYQO?Dm>GY1|)W z1I&`f7Jk5v39e%M3`~lzs|R+gZnJ}wWsF{YpZ8}<^Wy^S+DTi;2|T=-d1Dj%!Op|L z&HRWAGJk?eaF=S`D%R3enFg%K9=v|j5LPv?Fs;GhW`^lY6)V9D5^fPCG8LKRwGG%l z=@t-&e^%U!v@~_|lan{E=*JHiH!zztan~=E7QQdk&adb>SK?v6!EY?_(|hosZZg#qtK!wy zl6{u70-JuThbKr-BN9_`%eb&KOG8W6A?%z2KRkv_VbUI$?gQSbwjoX&BdUxRNra|a zVqFv09y%+KZlr1M+dz_$Wy$Vg*;_bWW%=ic69rVDmFz*%v3T+w0+488rT&BE;8-E3 zYgi0OV4`2a< zaDaF988ALD3cjPH@xg$}(o3E_BH2m#Ss-D43iZQNS8~$MQ-X%rF%or?9$K4smiS4jA~ZKZ8D+ucKn%}|OEB?LUgoT?@{0Ix&n4R|7fG zpCW+pwvJUga(XNj=cTP&UMS+){AM8jaihSNEqJ%#ik(VB_wXwvS$zY00jGB&xns$l z#BVzY13W$cz}Fwa!l3VEbYXck$tZiAar3*)W*qC&2u%5O%)oEHX2=i6*RSa%=S_6o zXH1RA@tTZ1LTsg8~sh@qoz^j};=p(xYAwRNA94>2y(W%5+yJBVEua4@mUA$g!AJuv#9!IXXmy z%hcurz+BsI3Ob@S@XMtDb%hjy8N4`q{6;qNkeUT}{oO)!^nt~(SV#CMNG}V@ePK#3 z!J=!r$kt5Sm^P;H^$h_J6^{kM7)d$Skd|F6jE=Zt$=x&&r$P{t=UJS$9Y<{y!u0bp z$qluPgbmhT!pL(>;V_LRn+~4-cVSAnSGlI3DKU}@>R^<48#L}5hTmXUo|28sJ2Nkn=}%h1b6UcU z;DtY0$(ofZIGR$$kuF(fPq|lX;>6yo=f7Y-;9{X2av&qra1$XdE|NHRWM~c1c0Kgq z0;af~Fret}49ph9HXPdmR9@ME^McA<)1GyGj;!nRlgL4Ml1&HCn4@SrHUs~q>uVn8 zm^C{`gaWc@3r5ounAm@e<{JH6vO9Le$VBGpnMfn_(Ghrz22@hiuW>Sp{p&Yut_1&S zY`GBvyYS>VLP}?NO>I<)1y3-bp~v$7+yiKU@$VzGEKH+yFfp77dJh*Q%p?R^FCoaQ(c3%FA-%*u22ml=2pD^3@kdNQmv>T@1s)MQx!*hffJV)G&I?-ewb7de6!nEsV+U_; zOxVeI!)XfEERRa=P+~yh|BXTKfJcMD9N8eHFc}3QIGN9;-V3Rtb_M_FwAf0)pWTav zFANPPHrpH_suR<;C6D1>iHHM}HqY>Pg$1c)$ta#TRH9A?T{^aed1DCly$~(MpVt<5 zr-gQrlaV#%h}GZwG7s0aM*2r)e|SzdzPvMt^(3TruKxzLP` zpC)Ntqs%iK`T-2U?C9;=6Pl?e8CaM{sc+%o5>3d1g)+H&Pd)LO4O*BwEs?-ttB3c= zyad~tFDs#0L0Q>gxDtK$HG;vBNn?Ohr8MT3vl?0K5b-s_Vzg1{4+2&*1v{3`1tt+i z2*(a)&nWc%=HU7)6z?8PEHHB@ww%!tTq@;2QMcPeO*X7(e0WXKWL0^{+T1{;E`=~}?XS}?K^ z1(TJ_HF8Qz7=^?3sK7iL!kJ{N&Hs=PyqJW~OJ?X&D0op!)nt@;=cKHY2Mo0zSrm!m zQ!-rp-`9nN$#d`?OQszb>Qa-5%sW_Ffu#+4t~@?Gd_xE>f(GQ<|$2>c!9y!)X!z1JL3NbE%j|0AoSL@4lh1cP0=L&%Q^zBblYZ#5E|+=u{f z*O+pEaPB^TNFN}oCiy5SdDfpV zZxQCBb4W#G6neg)xI2hhXATcfXw?n0NfQ8nK!Crgix2;~*AB~ih5NjLXBZc>uoR#j z*%k+L%pz(%Cd=0uHNt|Pwtehv(&ULBD`1mcB&N=7RWhC}Th7QZYP~wzko1O|~2Vm?CNOO8>8lOL@NlhmDS( zA`6Z&UIvxZzQ1OdmtSYpsewql%CBA;`iwtt1k%=bCW|Grgs!U$Y=Ld@A5l*~p3?}h zqDvOzxhp-2-ob8A3WoKl*4~`7`hsqo_Mn0twq_L5Xt898OoYK@0JyO}Acd!i`8`8= zl0oDf(m;KhaBvC_QY=VD9j>vKxCC962|cLX?Jl9GJUioDE{cT5^M5Cjwo2vSscmS$ zi++0eA8PUquNAQ?Dz4#ej<3~we^LWLv)zj|{mE>_a(@QqG$>~AlqIjhj(F7Fv$A!# z@idWo5?zcemK3Jex0`Q*_6r`B`{`GagQZHfD49KIV^)zmsW)yq24J)&{hvDv`HgFoFjY#;kr7xvFxp5Nxhe_7$H3EyX|u0!TOhaD zLAx4(dEp&vGDvr`WIQc@Wffak;)Y|&I-VXoG>VDXvq)9cwOkEQmHh;xh!l*4^Wd`9 zm@EBEpI}#+r@Ry^g#e@dC$jnE>)*6FU$TU&H?OIUnq?BiWFrkD1G>xk|FDqdQnp`s zdjaF#e80E@Cl^$oYw~^nprscKoMYIgL@VgbG!4V7VM(@I0*YFGpwsJ0Sg!K>fe0nKYo}62;I`h%n_T0X^g7djan*N=K8dB(e&+t8k87P`~tp zz<}8?u~*MmP5cfo5|jYV5I_bj42mbWTw(6#ruA7|uH&a7Ysxy!VYfG%KtNN@n*o1w z4m%FoGLJh2rAb@hu$E`aRcJrDj_|WufQlfGT7sPmQSi(%f?*6_w+hkra7H7ZqK=Y{l4f~)qr^>Pfjq=ro&3&xh+v7V?*dS-(?;ed^3FCBiseKUz1D=JrJ30ns=wSJRRCD z>>baR-Txh5A(17hAE|8Oz2!=>zV$wTDP@)9vBmobog)`u>5x%IKCtz(02sTHunlew z){3&W9$2VO^inmXn1;XK_nq18_V)S$EmDKWH%|YJ@?WFUJl-{6_rfI6`am1SnV~U@ zyM=_EVq5+j*MFBewqtfZAQRr-nP06@dvY_>9DEf#7^6+6WKwCz$*uFbO@OMSk$8}d zU0(_%plB7s^VgqF{V=LKtKE3j7N>ZxwR|?Z=!Wj(6qlgaFuIw%w{HAJ%TV3 zg~q(s{@4RyGa3Zl%u4d8CG1$7CW39koFQa0Xf$6D(1Q9Faj3f-Me) zKchlcvSw){vDOQtz$gtE?eUCb8GKQ8{8H!{yyKFx6y|YKpygz95ivy&D=anb*s>fB z@(A|z+*W@x{5!V#n7|yfBl{;iF11*JwxbtVI-i)*RNqC*IO*kKIf+#QCNgbAnjwBV zUU+_IFvR97ED30N4-|zI;~Mz|EkoPb>V0IpL;EbsuHI95UabUcr9+gMYtz_ZloNUb zyQU^Jg$84XT983oVK&M_=PCH^T+o~D7Isan^|9B!K>;CKtxGz)yE!?2cXW7i@n(Kr ziW+S(*Yq+(G$|K<#|#565Ce((jg3V~EXz@moJ0;Xp%(?9_=B0uTn=+19v)y(vsYvz z40ZY$YnJc~W5zHJDcfk()MO&`wKVlowk_3INCL*8tL0@0CbifW-}r{M8P7_9HdEDH zW9@4%@T^biBx-^c_{(44eY`ol`*?9iHo}k%IKg8Y`9Ie3|Jj2ZH^lsE$yFi}P`>k{ zSL9KrpwidnQ9&~W?;N8OcolG({e{(X)`$cq_}#nrWOM0_SEpIMkSc{GeF!>CvCbua zPvxFVTM6U@UD8VAob(s|>m$ush43E#{PPbT!Y(nMO&ya-leZPB)1!zdkz-S&%~6yc zlPy^|v6F7Q*0dNZW<|1OWRUDVV!!EwV?GXf3zm`Jg5g-1*$#(eu>N#kDdO_NyQo8+ z^hdp(2UFb1TFOA#nmobdTQioBFzE zuVtbnOEnlLX%E9eHWL4I{|V+U2C)!#7Y20^aD?2-YG(%hqMzrs^sB!JuLGfOU-Hkr zmqv>Mrj~44fv{4Euw+v9C;SjyNoQ$250g8j962;IU3bzdDzB3J_I+jSPD%g@?#3T?H9LVNPo- zu(Se<6ggmv+0qMS=t`K3gdm$9-Z9ZC|a6lk9c+ma>&dOV(8fc;tn< z;*eaRZDePu=cXxPZO*L%+3Fq)FT*OGi$zOQmKzr7gjsOgK^(AEu%cuQ?6?!A9wa(! za;xCM+{s29{Gn^;%|G*}Rsvz;FhQVdUh2>6uvhE>9&_+0Z4Xeer^)in7s5|EDkavA zYfBwv<7Y}>Mf&*70@iNJOgv)-Asi>4fAE-0E`5>Fn~c?3qtOK$A?)MuKn9Vg@wVBO z&M*aivn7Qxt?^nOfGNmyj|a}e`-i5cP($hV0!;2o8w02BVr zTbdz`A#5+;rOPrUgFG~t@c#1b+vnNWcX#ye<1Ct;-Q9w(ISRdPpEw6iRN%jwDcTgE zS*H^JhdJXFXleQb)PHnE+*N=k;%Ld`Y}qjkv%Nm0u_%xdhS^mFZZ){D+<|}emLYlk zDCDm}6XK@2VLVFUk zTuegKMT-at!}U&Vq%DBfDO*GxrMl;PMm!699hM``F&C|-8GK0vpBb3enmD0%ynv;V z7Sov437Lw5&8El0zIu^i?{ZnqlDtHHm(w4)v>}%*X~2P&lJSDYpeSq%LpzjAO$PCk z(3Ac6O!C(->syv8fv&mG2^vxz)rE~iM)!&}vewrPU;UXBL z7d+tqPzxXHUM+3xkBtprdjy#lqPpjtBHuKklho1KN{ZB$(#=F=N(+4DI(dg4B*w!y zo?7Vy0VOPygp>Kl;SgO7-9Gw38qKdNxfEm+`a{>v5?DYi$!X3J635bd3^H;y^Sikp z;sIO=P5box{xSr)s6`EA4l0%izNBB@U)!^zEvauNe5;52cMOL|HYy6L!a18ZBW2UY zJ8CiRmnEyJMn{Qz55e1Jie>yAD{6U9X9jK$SyC*l?xe-LOhFlw(Q8qg^~}VIr>SVa zS<}y{l;k{q#8G=Cd*L&1Xh|D0b=f~MG8LxtE5%j+iZWL!a;+qYE z0Hl5it{wQ=V0~S3@PCrr0yPYkOJl3QKU&Eg(Ja}?(LZ)sCd#B_BJ^H}snKa(q;DvT z)0PZZ{x`NjyP~4*hqYYY$KVw5j4N=D(*ejbN_lKqTS0Y4*3}z(JX0^Un+iL(bWFU= zU_*I08jj#+@2}>UXE*aZ2EN~`gCnxtEyyrpDNLf6x}T)K3>gVC3y(6`a&Ed#2>jZ*6wSZL28q z=wRY-f9-9xE=C+z^1KP6Hmwc0ph1Z|DR17gr+M5gNKHe(1 z?#M>$y;Ps1>#?{oVk$AhCF}jl!GE>m)MJ%p6#hTQI*_@;^dWE^hGhQeyysphj?cGv zderj_fZwijnJ2^Q*9a8)%fWqa`;KK5&*_>3soo^&Da9~j9g27Xr2-N$z`Yx?y)!l)Z;=-8%M5O)y_ z=B0#YqT@V+7sTp9q%~{sTtv`Tf@NWIA#k^dz=Y(FUHMxe*1ZM4jLzU6=O9}^C5`DxFfsWqE5+QBIE}jKOJg;Q|Mv)du7!5mNHNs#GZ6Uti?)+0UH1Af*0WNiS2jP3 zpwQoF6>-VIm2bGxc%&6sXj&)qUve{K*iffAm=m<>=6Ex%Vsp|EP|%$7RjYF>32s=) z@@RRic@#7F=kUa8`msjNa_f55&@QWCCRjDci8dy^=|Puq|h-|p&Kxt zR%8_U!uDi5Ddfp9y#qs6v>jHpAD^C(UhEIkRkdxE(T_JX;y&8^L$6s4J~r>F1WROd zdUJJiHM{!u{o}>ejBGXS)RE7JY8kQ`N3~S&4nz%pSc{=wRlshQ(yQC+voBGGbibC- z^H-gHbyR#@z>8-TcABCO+l|7|ZGXj9oi3zh?uar|He`_aFRP1^VZqZEE>;$X0_Xe@ znMwnW$h!x)ImZDLDGAP`mG~xOu1i)SK@nC{%zk{CS)cL!Kq-RB0$Y8^CBlmM{D~a4 zOGKxXNxC`7p9n*eEzZtAp4qJqOS0@0`64R6B_Lylw07tpQLS0Dl)f%#%Q+AIKgY#70=7AZVnLaTiU+9k7U8 z8Xy7b^M^+}k1}}0F`w8aClhxSmYeoYu3N>6`9G)h67)VIHf}`TxE`R97}jt|ivS18 zXd?*$fHZ~94LqhqV5Lc&aSYFpiP-lBGgejXn#D-+o;nQJs~Xf4C{cN@=dC>p#u`KN zd{0je(bipN3r3HtgUZxN&TBFVcWi_wyY`2YuT3cu@%EISeZ0Xa1uO4t4jY-Y1?MDz zjV2pSF?(!|o+%hXq!)VAWOQt?=x7X{&_Ro)l)d%^`v1Wm9#~^hrBxAOUb;KGLeq!z zjUhRKDp?4{DVX6+4D*Tf0#Cv?V0jE6q8?IB^Ck1avsiwuX6fMKBDpcyuxOcn{xCeq|F&&lz*7rkg3EI>7^_Z&{jyx)Pg^SiE~!q zx9}&FcBw!rAj2J7@qo}ZA-40>V4r!p5_M;ej*ec_&r;0)XUtL>GL;9TSYkM-=%}r_ zOdb7HFZ28U>jwGZX%Bot|Gk{qqc|t_$3cZ9%FC!(aIpY)7ZjZ>R_`$yw_CmA31!Yj zHJmZvJNm{`uw#godzLaju&R`FKm!tyGMHzKv_P)O)iC@zY_j?Ie-}JKRL8S&0k1$F zy?uK`+ve!jW{#hbr>!B*W!E3?(X@t1zPS!QlY@T|JTjJRt|J@#>P5c#KbMVB(eV)l zQ(x;D?47BxvHzjL|LcM`0@Lw8=QPn80bdq^E1R-Dws@Z?TyjgO;GAd2e4$#zld*+8 zh^uW`6};V^f~C^Hm!_g#oE)9Jiaww=vuROnb3%q@zZtredA(%!;8EJLi{WaADf0G- z3bxbo`}bEAd8t>jb{ifDp0DEDokU@(FWe~b9x6nFZCM7}(jW`7V;kNgOd;!REmf;* z(j~D{|F|)DSKu_r>Okm(&MI)bZl$Qfg7OJj?tS;El{A%iFwJmjFrnNYYs z;E8IHM94xqk$OLZOx6#wGnJ&E$J&v0dKCN3yGbTuAEoTm5WSbh;EH9ujtT_rEQf^G z#+E1T<=-*u+eLeMc+Za&VZxw}7@n$uTNN~NhG`y-v;7}>asBba*o@Vw*n4Yj#G03} zT`VmE!XTm@s4K9wkr-*K)t?`Sm9TJRX<$3JyPbVKA`^+HxouOXkB(ox1vmA+LM@n( zi7YtfBQ9l~!psCEdwlfIVU&wiuVRlQUQ6VM9Qp(pxv2u{wh=7C)q`1z=!j;zJto7I_oRIkGeXM0pv8)Oovy?WzGn7sE$+ThC$mXk&ou8!AD&!Hw!8O= zHMvOi$tAt%t_3m)&bqqI$)>?u=bz0!9{qDMJ3Kw6r^g3x4xGO||IZ!SwD^L1v}$#V z6<9Hz*ARCd;I$(phJH8z1;QSX!$iVYO;|~`<=$`m+7$eQyoWV+$wx5ayltBZ(?FEP zC)n!qY#r$osebZ`&fd?W%XdHCM?ZK>&t~sW$yDNrPiG22OP(uh0pnG$^#Mj-tmJ+D z_VD=Vkly8de$6dW#db?L6GFY3!|Yzr^V@fr9c+W*WE6)aBwQ+UsU*UdVnUg_@;4o9 z=?8v6&3mF%@bjX7XXmcyBQ(PSQ%<@A1ZOMWzM_iXvpOZ)Qg5e%CmdWT33`5Wb^7Yfd|{DN2dTGhbdE6U|1lyfc}Hh>ka=6O znv<#AKYzSUO16Ssk1n~=yo+?fOWxuTeZw!yNS+MGR2Ah-LSxKwt{7rHB@#UD=$Phg zC4Xiu>AQG;|5|qZVLq09r-Ex<&XpcS^CPm|W#Dg{_A~nGG%MpHw_O4c=}{LE`pWdu{YZ@`Y$b~ z?g#0Ac-;{f3FS+yPvJei;GfT~|4-Z7wY9A)@5AT+ukoD9hyZ=zFoc)V1%*v$yY@cG zCEJRv#I{_?PU3v}XGXFe2S`^X*6-STK|G@h$JWctXy(3CiPW4aE7H{o9cwKT!!SB7 zzKJ5eXC^4VYvDn?Q|Be@?HJX?P1Br!#cNj1zG019CgyxLky6FNMtoZ z%VQOas;7tVCC-~Qrr?5QX6ZqzE-Nw+TGz0zwpw4bgK5g@0vxe&me-lA^sL+et->dn zQ^mSe4dR|CaKfg>lDd}aUPdXKq)a?<7FDB<#J2N3-UpkonA7po{bMf2bj02$q+)!cfSRlD&f@sxMa5_3>fiA&y1Cs$w z#QipoUYv>S1}tJR&l|IcBKH#6mpccLLb(LjaG{Efn2#_x#6~E$k+Dl5GALoZ%|#g` z61mN!i-8x#~%xIdu%dXc&5^apSW5aP(v3N<=y3X@nk15+M+f*HaGrmC)%jJ$5? zvtY33mx_@+Tp~IXhAHPV6Y{ac)7;ZLhU*qgiTUyIh>9ZSnB7VAw3=ydis1ckIQYDnzkhlwr)DrMk9 zXSm#Fnc7@t*r;9{wFB+kwl5=m=N^pkX1vixcuv@!R;!+3-&ewzX$) z{rQH|v8u#enA%I+xwA|p9DySY9%m}S)wT_teYv_ssHs@43k&B%>zKThIajf8whUk` zEo`zbEmM|7vVcb|GO$_iR#7&m4A_Ij_JRnYm0j5k4pCZqi zpfFTO_MDMetvA3KjQb^YxMqrVtbD7S48@MmcG+Y+L`rlaY05Vew;VDMIu>w9EM2QL z4@!IP8>CGP_hjUMQpWu{LT!3XFk#^+(z@-*t>SOz(b<=v2Oga(->*zUtjVJ=1P#We z;WxH2*SS15Qx~2$_~MvdYibn+!uLC{nGHAF7`DF`n>e-4K;|=&(A4DHa&&%vOczlGdw2yibB8E3 z(7Oksz93IWdOy7!eWIU_Ka6%zQUi^9wsqqrU~D1YHbvC) zko4D%>o*MVjIYy%K0QsQq`$=5`O|Pgl?s-?AcrNbl6r;=VGYctWOO{*1iW_<$y@FG zYH+j7G6VBF!a`IL1vz@nDEmE4-m7jDTO6OCoYULK=O44Njit>HJEm25aC#JMPSw@* zZ4sLUqa4O(m|?9IdLIPUjxbBIPV`z7Bf9LE!4Z_YlX|BO)T&`DOwkbPXwI=*suTN~ zE19f?{)OcWc)W(SWk&GZw|qEnOL5Gz1m^-Rb84?L9-~XRr*eW7}F(4^y(cbe-8(=%(F)d4c7$73FxDb(e!ZZ@-K!4qGI^=RkL>x>tS2mfrSI+)x(rxY#Z;Zm$;3fT}Kwh z$+w?FEXnJ4j_?#+kBoL8r1sKvow}1*1_s9z@dQQitOSKL!0p-TT#`rNX$WE znX-Iza!RK>QoNe59P8*_>pd`ZLs`gBt~J&NM_@6LPGFXwKi)$W7X|VcV)788>*YL% za8K%`2&<@Zn!DT_gI8I=G6TNIN^W@8!j$ z?G}kft+8Z+aXplz)wwS>NPC@*Ms$2JnHos6Z|%0;D!kA=nFbWi820RG`u!zfmKK+MwZgD%A>ow`L>|-!DbwkiRo_Iy@^diKpHCj29=={p zp2-W9N1z!~6_P4GIzFe-LI?I#C}>SVPIhXyb#=uu5rD0LBjEUqc9-z#(5u+jI*;nV z>bN~+qqg*Dwh>I`VwUUt^ZAEUvTNWN63j$i;O@eTWdJ5b0pJpE8f*3}JVV5PX>K~lU0~-9k0cvxZkr3^JZv<#kCESL3r%NY(> zD;Su2CmRqJaHtCW9N77bPoK}}uNv%f94QFuRblpqz%=!`MC+QoZ0_iCm#nDdf+?DE zCAl^<2%XG#b)3jrRRwRZnJSRIr%LI6YO%fN@C+5Nd`H1uy+mZlRZ@$XWBHIHc!Cn4Y}p|r7@8VZFCMef z{OFSiOc6)U8uGfe+h0RyP5GEnJr`g?BcKqNX)4yFRk&9U+k`u*k`4)>G+2rlWsqd2 zbp?WZQMhEf1E&)O=56n%*KO7$)WBMbl%uy>DhMVK3;op9^~N8U{+z@z&*1NzHANN6_3sKM|Rf-&!!HTAO9Uc-TrlQ z@|k|E3n8o9XVOW$2!dc|=Rqk>sM*fCD{px8cq?K?pA08~#hRR=!z${0HmRc;G3SVF z2Pz|L(d4QaIEcB%Pva`u_*6doheE-n}u(iFYc*+4*spPimVm2!lb!n!e75@6<> zDl(9{C*Nl<B)H^eAQKZLW!MuOt)9vPsWQ0(SO}ZuUUPJa6o; zOW4@zj21kEMU%9bhq5&f97kR@87pp-n9l`R*)d+}AjO2CJ&h}&=Mul1lDZVd`DdEe zIdmJb5+*`H_H@n%1BTD*!_xA4B|%-td7qw!LBtH#QrqS*dfK6*g0}BOO4x)0-4s#4 z;uxN$Z;u%lC3shzDX2R$D>Z2H4SA{mhqJ$z>Gt-IAgVmL86rB`%7XX!SO(vyL?Qz) zeloJ(%5CsInB3B9xuN&05Od6Q=tYhh*aKUqY|u=@xsG{d?=*R0v1;Is&dxrMMtCAo zfoou>O@<18Cc;dVM{5B)6_0j#IeTIc-w`%H47P?s#h*TXqW5wo_!BpDP5UZ$8+l;a zYaZ1~R1J;=M90)rf%SpNjQ?ohzkzmUyDyn2FopM?>y%ziAHTz>Xvk3d7Fon$*urI6 zV>Legg%g8xm#$dWEU9&-sQop>K`{d7@(`v3Qt)OG*uJ;Vf5EI-R%9r3w$|=hZ1F$t zWvmC_b1aJBvBAD4&@+VPQ51-Kpk&@NJN06+*U6tO7_T1p-dq`16^stphY(VBf3~>g zM_s}`lq9snxaKp(S2C;37H4&iONHU{De0XE6$g)vv;x;tn3##Qsf+V-dLybE!x=z& znPZ(m9??9@r7BYbpUEBH{P|OlB+D4Z^jYL(F9Mw3L1q}*0wX1+g=0tnLCMkuat}(X zknwv%hBEhZfV3`H5sM|G8QLf_R*GQt;pmL?3U}N_e1mgL7^l}vS6}KdFfWzt6dri^ zior=2Mp`ojyWeAq!>XZy*&QENuSe<|) zz~@*{X0M#*dn2-ZJFhXPi{?$h)?CBN-5-4q)Q-7Ea>Xkd2uas9CI%ZqqP}jJ^lI-w z4KGs>h*bsSTCr6X;P$K}2AO-6&j5$rut>qIs|uEfOPoF$OjAMj<-VsSd+0okOvFAi zPnTTr=f+*uD3%&TVT$=4F}Nwc#3O=H$sFEQ9b=C7`IIx9R3 zlr(2si5VFz$c0i8VJg`=Bc0wm0iQKhRyDLkItf|_q?J1_AmgICXNnqU9O1_qu@YCS zZ5+aPg>k$^z<O4X_*~LCLEq!v`JgQ>VZEuiOXpgym%oljH}TvT9pn`d24$<>yd(!Ia|hIlZ!( zvMtE*K;wb44XZ#=rEH8?WCezAW4Y>%Tao7t0ajr%C^lrjsq<6;rzToPECZVaVYt85 ze8u!LkKoxeP4=~JkESSCEXN8)Pn^QU3*JGG%hqMr~}lS0{ALnGsk3UR-Ce_F&cnEGZhN6uQ#fZCMOF#1;c8 z6zR9D)cq~r)zPwXOqEjJ66UMWD)@bW+ED;>gTC-w#Jo-2QubACDPRUO0JXT=I1y2~0O)#go)=REoO&~+Dy9e}x37r;fB|-@k zm5$4T&87@I0NCmGb-s&lh`foKy!V03Cs8^9!;#V30$mn#RoF8J?;^s~ z0Ms}FYYy)3Cw#`*mEb~}Y}|wQ`G;eR>sqsHg(y@=e8_D2Mkq21!XZiD;_X`6!(|mU zjw3Kwkz+&@^@a>2KD0;0l0G4D@C1wZ(X2#RZnseV6F0f`@FwIXpVV1}6Y5!TH6m}R z$bWvrwf^c0C*VMFW#FM>!8Dk>Ea-5mb~=y2w93KcEF|Xh6f{(vZ+Q@AwIV}>E2>4I zDhF;@O`U%VPGu5LH9ECeBGLt@+rQjV<_cU`{l8`|%$R`G%lhFZ#pd$gY>) znR6$vMJV`xEUxwF!#OP#i&(G)t1a5{LdZ1>24wYZE4Qb*lYB z%IkxCi>YBE;$FoC1Ny@c8LS(Cq4D_x;V97L2 zZ<^^6p6QyARxkjLbLno)noJfSPDkb}Rg(VtK&97#!z4sQJ%XiDEhXmROHq=c$a%Ay zt0G#`79}(Rg9uDO9%Z7$7O3kWL;rXM;SHA^Sh=PwEQ4sR2}&IehDPHVN7gW`i9lLg zvJ;U>CKt7O=t0U;7fw}k$hV85?O5WGG27wWwXtAQV)8JAh;)z9dL9EPm z)D7eEYtF#vPzF+d7?=0)EhUnv$8BI0K19d;vZruAK7mb)@oa75kh4-&!sde; z=^qi*yz!cNC6*FAcX%u2qiZ>w5-~@t6&->ZyvaqDGCebie|Xexj}mrmyxF`4c@_~K za#ee|7H%f{urn>^)f&v>S#7qkVW;D%+xr2Ru&A>vI6I*%D=`Nyj>t~vVZfLa!j2c& zX1*r{SQ)X9WT10BTFyiTwy?^@l70RR`}wsfEJWA7#^ZQdB$!A;zsj1|>IkcOT9G@~ zwm{BUSbT~lZ>#TN6@nS6FIz@>^16xhUzyigjO7~ij;)IbNorwxZDsCXe-5SnD7HqP<~1y&vA`Vcs0svf!jo3zcwlt6-W7Ax_o`k! zLud$26tE&Shsdz*&oCdBbW-1nh-tg{=22GT_4x!I0QHYs^6e?M_+!8esz?gBhg zGJJ(5NRNyeb@>wi#C;_k-&|eY29x-aPVc9rzxsCo7^2O_hFWy+A!dz!3wyzJCp`4G zko&~`t#>0l{O;@EYYos={6GCN_?M~_eB${3{LknHV`BzwqGMNn^G`bc!BqyPUoKRj zz>!z<2K=*B96fP7<0kvc_oINe6> zm{9}WHj8tzleycPF)Kudyh}-1B^&|akPp4qDX}WIFFRq8EK@`~MF%>R8`4W0xx34l z>m^;6=6>)c!*jPn=SQ~d%OWK!{;L+sB$n!7p9fQ8UIW$K*JE{kP2;-EL}Wr>t;jtt zvV?Jf@wyNVT8UvR-ol(f6QlH4gZo~~Og3$=U2lizazDI^vzQ3rH?b0xpqD0h?+KPE zaO#N_`UD8BvZfRav0A|?jdq+O}=$ z?$Z43Z(s^zzKVKJ$MdK^Vb!`vWl>2#H!$@9% zjC)&_QuJ>zv6=KDFNjV&;8V{cr`L61xFA?&M5I$3%;6f`+u#Owi^llpG??7o4i*j9 z!u$wkIL9P<`t9oea&|Yqzki(0o;z%yUhOfbFasFuBv{x4O=_N%DW3k!OASUFIpa$u?PLCFH$wNrYj^q+_b-l6?*4bMrl@SO~Exoc!&1VH)fL6 z+ih(kN6T6%jG6WlGL5iy*rm4^CN=_l^rihRy3=k$h=eiWK~U9*O<~*j6k~t>WYbXA zIgb}$pe)UxJ3b*pnIi=teAB4n&{hA5>^`}>l0V={){3{-#I(IcIOTnfJKojFrx7ig z#j}vCCpAF1V>NEZlB}k&C=hF5&6E=GBCOOStSb?w9n1ie{C!HgYxkZm6t6dejx#AV zu@@dMV7FJsuz{7hlkGOkw-_J}4zwwfzA-h0VVcu#bzU|wFA6dgd*yX6GH#N2bG9iJ zM*TX8^QM57e<5?U*d?xJHb4Pu?!Mf|JT{bwEJ%OtLpB9S&_H%t=Ue`YAa~EKIR8MG zBP`7x1B#aM$0 z!g2%UsXNK;Zmc?|B+Gm$3fT9492A1M|Yb1(7|KJHTTFM)VAwBG?mG z7$$%XbtrU)7LYO1OX!EkIj1HXvF7+Qz&Z(Vwa8uz_ZR?ECHPbnf5&_knCNONbSW3h zYJvIr+pP?35h=$QSD7{@6AacPve&}b7~hOfRQExQLGHanvi6ucO7ES z0_I~dp;9G5v?A@L7fs>U3t7`gxki}Aa>5irf%_!?TEjnQU${ab8os4dLs>gz*^0bS zIlp(XNj1NDfMuQq_+LjB-^$&h4w7Y|fcsk_S|FHu+VIr2QunX@TP!bz$T3@VWHB2V z{>%W>%W0nn`*gDqcC2P1B<;2D$efm#|D%OQXSGW47@qVp=hw5qx2j+}J0E>Mp^t4z zGeQ-ZN4ux?z_UbR3$9c{MSfCkDpMOrda2LOxwF4udqZ$9SnGaofPFZ;bMPGI&Dj}^ zSd?-kfG3^EFZCv=SW+$ph5tx@<(}#$SdnZ~Q6l*4Rgq$TL_Cp&24lhw(F!7^p;br+psyseB{z#tlZnE<7&Le?CFj9hYE7)%eH<(}E7H12&Q9rl^Aq0s1vr%7OR|$Y z4ueIWh%BsCMU}w-7hM5^EX=S?ENscHokx`yTQH?zi4kC|!o*dWwgB$rzMNc3m~YIH zM3!xN_KCs_fF}%7-(I`lBFjZJQwW(-FGdDdyc^7W8h4ifv4vBr4Ra_)!f;esp}Q$? zi04t_{TA;#;r*V$v!C7b1$~@c%7g&*txnE=;^-fO%M_R%H0)w%lcPu=HTN{Y}HBL^1XKYa~ z-u1dPUy4fCf`&>OKxOoyI-&1FK=*{LE54+dR0F;NrjhqTziM;vcLi+HxKpQfNbIHW z4K7lKMUC|9w80a=_R_tYm9u>E7rnbY8xi~YkG|W>Z}|Vd)#$-uc_~66>lCJTFY?N{ zXH7i^KNin7GzHUq`SHvaQUyxNYOcw!!J%WtvjbHy3kl91R&{}`uuJ$FO34qAYmc{* z>(Tk=b6SUWQPqLH;g*WnI6zkKlZAD!M#uCnc#@|fF&FNbXz128pHDuFkULPP3ijTe z%y~WETPF}g0R#L9O@}yPC+}P{VDir8CKMILUoe__f$xL??`D~^q*k)ceF(0x^egzu z!(d$6ybpXuyLMhI1hwX(*vjnq18vVvdeB%hP`(QZA_3C?w|G{oT2qXmYP18%p4{i| zWtvF35{%#n-v>Pg6A`A>0^Ix{H#h;riX2NQ!A;Z*d})P9_K4pMmtu95jh)DmQJ2rN5lz5ps{(_}HOB}kF=BFa>GAA;ARwTq z^;FhdHah!6zZU|1%$IU^gKGgUa$aLJ55tzK%<2v4W$yF)>r}8((qGjP9^OJf>`0cp zNHStI|uaE4lAWWqYv8e;uwnYnkXEWtWAaYLMt8ETSV$74Cm~0e^gZU+GY`R8NnjMN_kD{bp} zJwK(_<1Z7lnC$?ujKafEX?t9PHLnVeAqg-9;$Y31z@{&DT|4!V2W7#{M2gEqz84}R4m{%0* z;Icc|IB&3GZK(3_weMsd)2Ttr6~tUQ`x(cZ>yIO#Vbxy({z!j_n9IOCwU;{gC-?a9Fq`lKHcexBRC30U0;(7L zz)ZupZdgIJP1kE7_f4&r&C@4c6XyVXZAf7(pt$`!%Vk`nYcx%d#eeJKCqvpkSP1b{h!-YR zOoPWzk-a9~04xkvT=W#_{q1DjVNsA?>{ALEtES1NENJ(^7C*oW2ClBMiPW9See1d5 zTd68cxrl?ZA@{m)Vp%Znv#zlmtZn9TD#8oRaMaT#NrW`@a7Yr{ULtTv-^4pA zCXob^iGrHC(tsCn`!z5*ve)`{|5I$i6W4TX5A~6%sugu$5>C_Cq}?`CmK9-;(Vv>QPQYFfU?roq0P7e+ z^r9s;V?{i>GzMT;8-ZObW`h_G>{t8$+7Un`Qd|_N%wme*4~51=jsj1DGO=yrczqL( zoX@Y4H$U-|nVO;9U%K7pj~^eXMv^Qrt1a?BNXU;jkX3#Icwvq^S%G}UCjWUYvpMOd z?gS3-unfrp)g}+UMFpaqI6jhBWgtTlh z5qBtZJUgl5lr5Q>>80UJof$NWfz8@@}!n5kxFTH#`{ulD&aU^>7ac`^c9!Wixi8Ax0Q z=M>quVW)x>aSa2iG}S~yq1!vVWKDjW(eKmg<=NHq)nqy*R^;xSz#a!yvQ#pLfn9^c zUYd^t#czV&S_4F3bSn{@GiZY?hb~R0b;0q`mTa*$uB!!858>NjAeQ zy&2Pni?~&I1?FMDDZsy@8a6x}Go8Ts5a@qg&9PdutSfZ9VAOz-c!B3M1~~v7Uo>#X z7XFxEa}QfI9tAwI0Q)0ao&?DW*^~LM`oq3Tr+D`5*|!kytU_O##J7+}B8n~EZYyzr zSf&Le4W5v_c=rbK7%f$@0uwLc`nku(^p0Wkv?$ZUBS20o^ z45j4h_tofwklypOU`u{B0*6GO2PXZ!6FCA(e37;05AzEI;Gd$mH4u>DXYY&<%v+`Q z7ioXFzFy4IVDa(kX9|0D@MLV7o5>^T<-T`^2=B43WVED36UCZY%z?t#!aJpR>K4bfT$BTTz!=A@@1I8g`_;UcVWTdXCys^P{ENRXym|Bp-ty!5P zj+P<*)iPrWqcjR54$F@1_h8}rfiD;)XpZC*X;3gnC8$indMoyQ4?BYQOY8K}99dm= zB=0>~w@a^G+~ry*j!$rc73J@UymVEyV9TLBhb0g86YNx4Bt_6S$jQsL?)z6B^Cic6 z2rw#x(xM|8PZDJ zfnyH*g(~F;3ef%?i#y!?4bM?`$4bR&m{PExGo3zS8r(NtkzVfV!q}2!5go5HTIwdQ zqppnE$lj3?SHzlHY8)X01O9J?DEgYM^mN4r;*K&P2>q zEw=O$0gVGpx+D7h}J7Fgjj+Af3+3x=BS^P*_7?9Rw$x zm}{SovRY_(1>ogw&QHK^!!xcunRDc4x@;b%NEL|*kNDYpH&+{2I6As#a7WOiG(uNY zjuZxkGDVFDMPjNs73qb}FZBi?Jy@OdFFem-O)q(Y%p{z=PJ$ z8zr%4Z&!ern(^b~PxOLSRmQOpfpjw8@pf;{KCYQcV&xL7-I%t;&^WXDbY`pavEq>)KrlQWh@| z!V66T@ETjG2M2-BIu^*fyX2Hd@XpOZ3Ivw!W8F1AfxTAF@j#eXvN%Fa?v9&)>_i7# z)kC0Qm|G{Z0K+*27UM>XI)TBY!-~ge0{lpID2WbP`v$dMWZSH(UpJ zkZZ17&u|xYj?@?PIc9NV1ST_no&fixHY99)1FwV+FbH&HBH8#b^SCO>zRW8-kMYqd zg|Qh_nB0uy;UMscyFETV-?Uyj82J{vP*beZ3J^*Pwq=4%-UO>SuzyUL$}Uu0Aivc8 zul7WysIo%=VWg=ey`bRBw0MZ-_mL(;kr@Yd-+aoI20tUm(r>x30i`kqsi zwE3wyU2A?*Bh8w*bhia!Jo-m8PKgYN;fu_GPU}}9#wwWy8Y{XCI($-#*rJDG))v`m z-Em<#Zsv-oj3Og*a9i0DwOQaVREJ{Ehs=zr$YsH%m24O?eD2Ib%>M@W3kimB zmDl7&OSfgYE2g>@*ODf@n9X%QGw>f38S2QD$}l_DrEmN;x-MX-$p+ju(q4N9JVdl? zVr2E{lBG#2^6wFz98zgbFHcE#;Rv3>GOT+7yZ!O@EGxabfo!IgG>+lNy+r|AK z=DoR@N=NCsN<$h$k7Q5eZW5GS&AGA6!RQ~IpMR#8_vDrE{fGc7J=ca2;eF0vC@PF2 zXv&r{Hw0{*#Qm$AGvT$A;PPiQLUyL0M6fMnwIf5NbF|u2RZI;<9{Ae5H3#D$Da>#m zG;sU=Wx>HnH(n&=$STHJHk%{q85yV?(*%ACYXY7@5hG~&zlv-U+XP&`J^lczN?x18 z0X%uaV?#V1L66H+laoPHx9@eK*gCtsF#9$--R-q+==_3Zumlc$*`ShvEuGs@F$7tg z#6wJbk2U7E0*cs;A`FDA7??XbLACcyizPT>Sgk}O z`0kkZ5!52cWlOKqX&sB%;9G;KOUre^al&c6mdMF Nsuz%<#Wb*u!CW6Tn1{s3A zrI;m!Rrqknp{4Qe8+xbV?NvtosCm%w?(G*u{dg;k@jI(($3!29B9d91bJ~3>XcwQ)l3E7# zNV+?jHYcHb8lMGDvBhi&)0v)}rQi5kKVzB)>7@S}C{tO(Y!dHeNIF``OvE^R6tgkdS0mC%d>%vnpYbUeI4UCj@109YVfA0B$?U>LrgDf<-)A z3XB_t$wQj-3g_S=EFdy6>{akRGpX)aczsEBQs)k1ZWwLox|);r^P%1Kz_%QyIg7u@ zB$e==pwkFGWWm?Zw_~!e@<5?wn)8tV+EB1xW)b+pv(g6pdX4Kr36ok2PA5vP<1u1w z1{QmqSjBHg^MP~xr&(VB3Z{H+3-ZWL>Nt?|tll!Ez*nM(Y^!)+GNpH7-;I;O!c)Wo z{hayf==4LtD^q|FRON_tN)L1BKDusb2seg#5FFhjlsGPAO9NJD5~n}H7C~Bp$L)j? z|2O(L`b_^Pm6Ad9jCoorxW4_H?35n);$Y0d3ol_`WD)uS^zX_2v?b*uuhp){fcLE7 zH?Ti^5!!Mt1*Y0gl2-A0=lO@NJ!TuQ5t5wA&!4E$I>^h@AkN58?wfBl7Zd?+D+DfB znetXE^-GII$lgz%KGA0c=%~Kbg(){(eITvEZ7{)`kjEd-KhdkNSND&152O?LeA!{u zt-zzy0UeYLn+z&%efGlFe;`E^;O4#kHhd#kfpH6Z&%V^`S=MAH^I&1AH5x^2k_Jl> z#S>GEZWSIgwGh!V1pk*Qrs-sQcJ`4BMa~HX-=|l>!{m;l8HiDG>r|6g>_KB!!xpop zhmLaZ)DZM0nZM;|e7?zMSx9~KN9jvSsx<3le zbYskGOjfNkrmQ{Ki@kGJ(^@Bpr>&wOLJG~6WT2D#e)}JI<}j@|_^+B~LI)pDKHE5? z2o-~eP@t<$hRqy<3M|B2q9dMaR*cTiM=;64f=z9)>`SG`(RacWW&G*~j zC-@+8t>60>Fd=Z+ED?+$qme=!i4CUUAvVKM=LhEY;{GGePr=}7v(SQ*mpAY1QzAZ4 z2)hGT(I66gRd1FIjM*ewlbz1_p5RVBq9 zM?%n@b#x7XJ2FoW{+(C1e6n}X?%Q~o!rmxh5HfmkJNvJ!5m)G0;jQjeWcr`GN4GJK z9xXDe6*5UMm$^F`=u%sUdbdX%i=!M9B4M&4dKJb^=1S%>1L!yd+YYVIvZYiZrnML3 zQXMV9CHg>fw&ej%%i#3rm~>*l)ED^9uoVg(70FKPzNHDxDq6POFNXgSp1mX}c1{u5Rd?QBJ$(zN75a+rF73p# zKEp-15K15$awL}YaeNYtJ_X<>YcSHVLO3IDHS{2YpZ^kZzNU{b;S&S)Z(|XkNT>2( zMq;95m_KWh{>_ztpuNi}MZ8#J=5>iJgLG2geL)pbI#&rEsv;38mPtn(Q|=-pM17(5 z#0Z}>N@S-aI>iH@*~5JHglPpiY2{x0f7jFJRIo%|Je_~0JDU)EJa zjFe1s3A!)^{iB;)RNCy&a)A*YIpW%RqG0jI*#@aZhyVtAglR-fbH$= z^K6O`cqzjg9#LG>+btPL-B%rO+hxY|QNkknEOUADcsqk_X*R~?k_@yy0E`mS&i#*&gIrsac5*@L8KC_Z-YQk4>s=r*V#H!YofD0{b&+IfF1y37$X#u4ll@IwZRm9w*hM zC}AwDvSke%Gw6s>iMrhUv;G*Kd#0$eqwbP&SS5fLLh zy|aaAc^S@5;NLC6;3_RAQWP4`ArO2s;U*LPClAM95Wj5TJb+4Nz@Q_cA_QHu!Ei)u zM){i9EDjrNAi3G-;E248qVG3)UNZq&begy*$HICVUaN7~;-g^0O<6G+4x_|FtBJ zIm~u+wBMJ-!Lya2`pCJZmS}6(W)Y0o7fLe0ar@TU^x$a>w%|p!kTom71fv;)p3V4D5~9#g@B|8XTrFZJp2vH1p$8xNiyXxS(km}26c&^5XGWp^e{h(JQS9=(^& zt|=DZBrimc9o|1&WO73%8Q4_Q?~hkc z->~G#O5K;<&I*F*)iP7L%`m3$NE!A!g)Fv}Bm;?Gy284Qxn9zB8EE7!MuavidfRyK zkWgQ)%}=m5VMnBhy}=&E8~DOal&OH0Dt1*QdBJUkCg8SdeKLB_U~+upFP zv$XR+EOl2-AjW{Q%$tX9_Y;DHTp4J1jO|aq!;Rg-LHJA<& z0+SAfet9q}DPmm;1(u1(lT_-8>_o07JueP@F9rll?>_p?Wg3SfW7+6*M8QXd)#%!k zO_HI;=lCKQ%an<%L6GXqzP!0D;To5vG5BA%aL<=oW@3Ky`9l|x8j()o1#*SRZdq!; zQ#tyf5iEZ+G8M_-n==^0;7&6WTZs`e;Em?KFJhT9Swv|=yAMZrO4408MwQkkp^&dN zE%-V>j2E(#9a_du4?ktjiZufhl+%mHd$4v?^#r5uULsAQB0II~$X?s0Mv-j~DHjE- z4Xw--Co-=w4gJ&cC%VuxgKC3W`I_`{w@3IF6I)(Vx!l*p?yU?swQ5G20|o)zZR>fnUz8oCEl8stHT5rohL zhF`)sBmq27v|&TSqL-_)<%4!WB2EbbDrg4_QDKhZtEM(~(k z?bG)a`gXW+nav%Bn#MF*PIhwN#AT_&I)Rslt1W$)UVOiKei~2yx_Tl*jVo#~+*YmA z935f|Ss@OCFrdXdh3nG7FheewFR7uM#WbTJ%4ESwr*IFjKCVc27dY$77BGrJz(0UT)?xzGQlE~}vGf#ndn zLRDm6>PQCsqDvFlC@LG+c%x&NyS?CRuEM%VbPGzu>7!Wko1Q%IbpzK`_r=}A;M79D z?}1EZfrt3|QAzqAgnNP~F>QluI7JQG#CO){D#HyXGg)nQN zAG(~M1Z_H8D{{565+z|?g-S4mNH!+n0(vpxgM0Yv0u6Iuxey@_Ldr!Fm_$ol3o!A! z1=TlNSGpZmgVo$}_SNy{)AQNASj%N^7}*@RVKa}UucVIX^m6stc&p24wA!C}(YnW0s>|r~Z z^XRX5wv;)hlqfbAL0D_F;Wdm1orV%o1^X7x`6^MH_AbFLj#N&e4-=_IidphP=>Zfj z@vK@Kpech+zbxcB<8i{tKy?t!_w5R%+v#}x7vhpmE10Y|=+ux-=7_OXXCjs>*iSCY zN?PhQNqVV!I!NE&Tw^D1HiPMg`R`W9}p(!K;R{b88kVXA!xo?|l?*#c>$koLUvL|1P&8_<2qO}!<&Gaa%j?Hy&00b2e8Cd8}ddg=Y3v)zZ}S{$;$w- z6xx(#;|9(^KwjuwDS`_vq*;JtMCirzbCJblPwoPW9;HjRM&2?(ub6J`g{f#DJF)Zk z=Sr+No-QOchqaEH6x<>bjJ(jeee)*?p1&NO9G_GBk?bUHJ@JMkg#reTmStAM8`hHPP!nwIarBaKz6?Sv#DK05a4k5cHluVz-q3lG1q=8NJusrZ{Ffhu z{obCBfM?)76&1y*`HZwz&YSSJx~NxRDVUHH?7?+OT9KFOfvd+trUj-%aj9b#kv$>7 zoMN9Ols|ixR~zrgIl+>#N|x!AvbCPEc&^D#cIe#W4IC@upZ>$`7M#bpyRt&tXq&xj zf80tlRwIO;)0N*~%@~aH7*j`BtYA+W(MJv+$Sb*9x2c4$On)I>LjI~3nH72&;0#ACOH|j@I&skx>bv0G+!akl+=&;@dIjkXg5)`zs2E&#vo4|9* z@1(Boz*vhJhW;|RQe{H+6l8))3WalJ0XU;solyJBlBJoCzRx3pe=bXS#&y+`0FhSc zoW@avAvXk=NqDr-q`UMrR5haXVePp^kV0O!u#T3RyimNWiUvW*cy&~WV!>#X1*KqM zYYv3&;r}%l5xFS@gDtApIaz0)gr+KnPz#$EGJPXa*p_$AbF!Jo`Z`5_9<4` z!Q74-GSK+Iw!X*-L8QimIU!D~RK}LFT1woh4Ue#?rN??A(y2TkiVz$pmL*cxAj?B3 zWx$IbQRs!*qkNASizb&fp4JGRlm6QAwCkHJq`^U0@G2-vPK?0WBQ4lA=b0(-11DE; z%cf$bj&Ny%;e)^dZx0{eS6#&G1!ap6HUjh6_cSEu35@LxeC3NwCKoVj$V-i5=KKra z3!(4P>6+oL^V0G1m^{CC?f#{|(nXA-z^;>nkde!?(2LQMn$zZ_76h+6?j;vF;)`Km zqcYX4q?7n$yMcktiqwMPU;rm-uzaNzyT?eDEM1?T(rd+aD)_kiUW6=!A!Fqp-!|rP zCz6vu_|Xs?q5ifpeeErAUH}P>U>13(0#R&9&rHzqDwtq0|a@%iXuDl4!hvarqrFag#PE<;x5 ze1?v>VhYAI9k+;jCP`G2Ug5js&NFW4u?r*={-jDCd!GGbEmY9knO){hri{ZQE40fnqYMKZv21Y2W;4scK+0?D4-u~vg+23w-0v8ksFJ_k1Amh_rGK=c^a=ZZXU zf{4ewkP%I6;>)B>fPn!6&iP&w=V6YOg}=aPPi$H{lA4njGWXpS`7L0)9E17Ea*gR# zwip4UKb_8}Xtk(VBo#Fu;KqV-g<*UveG~KYV3-1-9AUO>C{u8UGuWN-8SbPOg@<%% zcWZRbf?O0LM?YZqd2rS;kh%T=KC^t@hokF+Zl(Im=dZE>rN*69~aYq>UtICFfkR(uC3H2c|ws^Mjj?C zcRg^!kYWb5IDL|#G&pWIHP(reoyx}_?z_F3o&*!<_O=~jgKk}i*Nv3P_J(ciOi-}= zF_A_GSP?%^cqiwTA1-z|Ip7&FE#1pt|r_zRHD#)iN_Y{%pN#&G7p#M#qCXG z5!DJ=*c$IUoN}?0SX3ys^v3eifi3tX8ziC~D4kyuqNZw?>}h~d_bkwyd7!6mz};l# z2VK>?3~~n6mZd}^JDoS-DX&9b9EF%TWHV6A2BpbB;kNsajz1iqj7G~(*XPC6J(!^hF(dUaz`ds#bV?~rDYRkCPGg-(ZSJpcCfb`91SVqeHdt;sLrGgVB%n!hlXv9A(Bep z=3R$fy5K3xFe^|=or;E`U79jHM?^H-S89KDfdUg0CYS?W@hF({j`44x@xU}jpimwQ zO&6Hyj5*+BC-lA9M+Q&)LSbfwK-@n1d^MhYxw^f+eI_q;&i9OUdoVHtGV#GKkYTKe zbVA2evpf!Eji6sKeU?d*eFgVq+7uDlDF`gIa`na{dl2k&$>TM=6HMWX@_5EF7<6PO z^fA+zf)RXnJfbj^O1!}fiD2Zd)F&u&BcJ3cO)~hB&8z~e#0VVEl_Hj~iZwxl1tW;g zgg^}?TasSkLZ`ZU;t34ItH+bs#rS!A_hmf$HvTcbBUa(z+&4+B1pWSeaX-6zI2+9# z73aueSR}Jc&Z=~ViK??ZF|TINat3zk?2AZJSjT6UHjUUG9G}WQI?IB~5{6Op??AGA zTYaHmZ}1h%YExMS0_VtC$jg!^3EkifO8Dq=pbSWLprO~cBCKuW-1mad=ZZHeY_AA@ zBvpm}8RmRstRZ_^Zl!Nea%c{VXH|fqnw*`{Z!knxd|bz1bL?q6 z!X8>+E-5^MUl;&IVx;D%DB=BEh4(|iZ6A-Uz#>9Uq3+r}=A&dBr{J_aJcF2iN82 zlaC*RP>YzGO!MG9-LgcO3~f5aGUmt3k`Z-MR}Q>fWXPgc=SzBXDWkw*c^jz4MA?01 z*vNe{AdFtd6Bacz+=}vq>;#URbVuA)gT$MyE#V4}c=9bgK9=z5?Ssjx>czgR2bN+* z;5NvJ?mh+)?+$);LJwn-DJ|=UYl>h?fn4E`mTS_94Hnj+GPyS#S-?A#n&mamD4H=?gSrxkKDVcH2CNU|2LAuy!zVhOnmoV2#14BFqh9Y9 zJB+}Oq4=Y-L+~@XtKH_#H4DY@|LD!d#Wk^?-OEaoQp2_gZvl4MHHL7hk}S?yNl@kX zS})m3=rNrZY{`R3FulAZR^$pqT7wByP+`DyW3Z}{AcN6Xm&9t^aRbn1Iw~=de5GLr z_<|h2IIFHR%wBwo( zd?x#1=iz?BuRWUj} z{X|*0MAnV=(qnSniK@!@7rCaZ`}-@>U%K)dG5EtgG!8*KSvryH7P;oe3_XHQz(oDY zFU-|XydrzLf8Zs2k^Iy4Uhx>oahipqSVVt{C>WK^1MD@7>~`@B$?B==D8UG{7*^2+m4dd)&=2qag`Y*B!Cha@V5!Szrc8Nw?Gg>(r&t5gJt05+GI zkYuQK_n|Lk!;%^)_0B(;6jTvQ6{J;FlA+3d|9?;zO%BYdtSL{X*}R~#V5RvnlQN%y znijVMVGjUj8CH*Hc`5I(46BoPANsex%sRvhZ}L!{zny+N&l*uAuu+tGT`XrU6Xk9rdRy;k-XXi0d{_YA|MCn_AjxI!vq~D0hcm(<$-@ z!)}t*v0NC2w>;;D0oT{zi=w0KB zH!&u@LH7}?wJq|1*vc+VY*SZIQq`P8pQp#P1iK7#ej^5c6i3t_Y0xBEz4wy7hVJ>4GntEJKj^0KcOTDciXe{S(1 z2A0^;DAGBxpS|eA)h4LcG>X?cI5|2Fus|SS#EK7my$>(Ho|!6d_7wW`1U|o(2=7G= zIO(q%_5_24KzfaP^$;v!xZA+U$B9w)z^7!W@v3r)b-)T)*jnS9H7r2p+7&$KA>vT95r!SAzl4^7uEtkP(B;z>%#8DibRKtiZ{(yGW+mOIQhd)U)(MKL66 zoZnvL5ir6e6zB`jx`_Sk9V)(>9DlgF7*iRiRUDG;+Ie(Lk-?l!g?{AKG?gVW0&9;P z3Jkq^Ob0@aYaUDezKG++#L#K$Uzvb^YOg#V{1cCrK=|@0c=M{T9dyF3%JPrDZdOMk z&Kh&5DBLDfMj;uS8H~LbEqs<3n6E-dQ9r{p&*sR@!DG^@eD`vlGNv*?r}j5# zuicl|wx71dzrE~gSo>Z*!US!{F<)6+%3L!VT<4fy7cYV4KCMAPB&H{Ml zIc!(ClyS!G)ojf+@P76hI7i<^*%Tq&o)YuHoorx*bfH@(pWLpLmYD0+bI=EQCOh-h?U*M+BI_@ z8{<-mh84IzpMck#1($!3J(=HOpk6c0LOQ;CyeHk251s_WVs7Il;mHCbrJ%s^&7}MR zW2<+#Tca00N#PQ+8#UR}`M_cxQ-L(fs+c0-vFq`ZUerl~y!B>o7^>gICeK=p zdwIc&9u@33L0yRq?i9Xs+pAZPVAjJ!!Ud%5#d*ZFJ++iahCbpQH`I3X`k6Tgb^8w6 z_*vVJ`NdfM&F3}NmFgtSP&QKBq?9T_7aoOCkRgQaItu_Blt zsSehqz~T#5BPXrccMrwvnD|DC`CL?Ki#7BSaWKiA#>0e1E}`b)iC)U;+KlF2rxxV!NAezh7P7l3wlzBq>F7RPstxRL@uD zOkpQ-f0!c4S%7D}kImEse$AQ4|Igc-t+$OUUBl<^jr=E|;VILh=cHpNZp)qY?h`#A z36U^KfB{HJ)Ybo0;3&uL4j|=A?`;zWc?l#jQ~_112C9 zdja$gr+lWHy`UOle_SVZEn<3R)A>U8Pk21XBdj)A7uouh>*l>- zF*glTzk>N$bBwRScyGYg^P*4wHhhL$J6dM^}X4=#cU{YD|E9fP;*DGDueC zc%lV5xxjp72Qc_EaYQ4gHD9W{w)Be6YQ2wP5>TW<+MTusMSt|x%AKhUJ2<^CHdMJo zu?$ciFfhMLg&rS8=j_(ux!Zb@^UA~-Gc_$5BSi@_0Oo~_N-|ctw=-TT9iP$^CxgcF zG?7;1GZmDlmZF#bk5{-?W=$KM1%vK%*XBRur2ClbDZpAJY(wEeJ~6OC;nwRSK!@+n z)agFpY>}4O%W*u>GF%EW6klQedfjtU8MP87QwNe)G#8<%LA8vzE*r8{=eQ+V)ZBoL zzsN-yBSl|Zc2CM^Q4&_v)ou_O=J4=shN%k-1RE7oTlO9Lm4;_(DS(4gt)R211+L!6 ztkPDwYtFMMQI(v=+FSj7X(hq54qdtq=HleizDEW*@C#NOM>gQ&pXx%|4Q$!b4TeT0>nd6~?r0FrHZ9lN;saB3DnSJG;Q%s3ntP@jsfS z$3>j4NiT4Ic2lIKSoj0wHF77>Le;5xX^)%CT|oPK6u11m8)^PtUWdsSEG zn)HyCgIxT0<$gNMG%Ct9jCER+OJt+r>&mWylPYJs z?}F!C(Qlj+d*#jErP-otlDfh0EY;3PgUqKhj)2@)0_G))c0(*{4XYg}*)Yc>MMcK4 zv!;dzn*#F|6k)Er)1FS~u2y|fLCYsdZ-vZ)GmL#eph51oFf6%lIC6$GbiACH@}tnz zmQQu4VUE|dQY$>70Ha;xq?dX*i1mng!QvQfp%Kq5Ez|%NszQ$-&Tk`1pA@<$f;oU2 z2Yu0fZ+?8O75Z;TF#D{#KlgpHxy?DPV{92;v4->lpDm36%tmsQ6EJu4yHus9GEMF8 zIiA#Y64!B637B7zol?;@m@Fu}Q-`6#GFe^42|qh`B!v7?vm{~k`;erwlemt8yq1hU zDG=h-&X3D7N(>Lo*+AdIYW<9n;C}s>gRQ%6vlD^M&95wW=1N4;vdKGLh|wxIQ`xa*i(26G$&bHdgg%6w&tA z9O+6)d+k1hO983^X#Y&eP_4QhuvX~0t;R4Pu23oN&Q=Wb2!P_REhAcARik+3ir4q1sVn!kYim}OX~h0FB+)~I)8)tYt@Hi^ghBh zVyy8_dy7U?4z`M{s9Xn&73i|s&V*xym#;li5~DUu?`nPDkfFRA*cZOSYz1Ezw_?Hn zzMa6j?xByE`07Q=_mNKkowun+#F@fO1v6`71{P;8u%?l$1o;T&HerZF7|g0dzebe; z8}(L2%uZ~5g_kQc7a6Ne4XOh48%#Ic3;g`YP0D2UL|I(4o@c#;d}JnjIlyWeOEe5EYIo9<$ds;OhwLHpj{J(Rc2`4813W*Xi8B8Mig~!_2&WB zbw*p@=Bq&GFT?XCm~5;{Bl1k@c-Lo<*lZXLBO5JA+M@f&=wOUq*c8s*IL~h}S*&)v z!Fwf)l3#2(InZu(MkW&SHN>-fus{NT)O#em(_65vZ`NoT(rzWO6JVZ;CxTLsL~_r2 ziIOVGn=;+;L4pNx|M+P0(lM_ICDe7qH%JC8g%S5>?_dy=*$}eZLx+rX( z&xuXx0jX;y8+r>C;5n!tc+*zmY(7|Tmb)m!)WcEM}f~psUkR zZ7@5=;Pr+KMR?>Hh#{^V443Xx?sj_xcx#%3YEA5=E751)yaXoYp%rM?InW067%)%q zgIKQ*s?|1@SBo%oXlIbBUSECrHUfE2wDwR-QRrwy`X&nFvGLfWtwbh%dRC6M{b#20 zqYsA^H1UV~8`2fsXE;!dLs20k8K@+rE4~_S@Jaw#kAfSj6*{2(C(x^DHW&ukgS8<* zKPm+2iq1!gVayAmGoh);VU>S^B_Ob#AVY;aq^PW~^SVm{5R@7jF)$Hs6JUBdGJL{U za|(H7ctXLV;Kn-Fw1Ss1AieIuFld{g{?^$<*?i3t;*~e?1Pc_p`lvj&DorWYWFjLE z4vi|BgH(ysQnDC~;OPY3d-#0GGf+cRp74On1dlmenezyEf?r&t6E?oPV3w;Y=mQ|z zI^RZi$Od)Z4$0A9tV4LT%G((Xu3LdjfgPB~^0`_6_&~YNi#jHF?QUte2%VQ!7kO=w zu5^ymm^0SKI@0Y1p^6eCXFPA|GlryRXgjJd@lbc%ZAe??v2t9Zs&f{6DljJyr+1$& zKi#(usfKLV5s*hn0ql6^H=ky`kE@~QJWm7|>EG{WWLn`E;mCwCisq$=j!0X0jk4pl zT|uGwDU3sXgliKk%hQGBvzv;Y$?OcnobV}2C=SF2zR=d;C75-|Ey?f!^7ria(dm|X zyhL6vj+W#Q-rfp5&C3qal$td?lA{k=2BUzXvk|pV5BntcjzR3PlRrYHICL!m&&zPX zc9*)2Yi*C73Xc9-fXGQFbT=fh(cEK-X zlz46BF`X@_;V}|++k$U!^c{X3wI!dM+rpVg zN)KSJI#q{s^X2Q^)x9WpX%wbes7)l+R2Vgn>kXGVZ$u=>P~#J0#N`ui+#i4;fX9$@ zp_Dz;cwXVoWS|dBgIsY`6iDtBBwUBM=iAGD9zwpDTb4vaBVEfVZO9;THjnjjc}z{E zO3STFu;@teVG$aZgnayKr`ZbTXHa7gOgix(9%RmLL8XBgR*X<>*`rg$Oymt{P6-{Z z>=Efu@`&IQOL*7GL1t1N(;2L`IVkff*^;}%vZ4vvMT5x-0}c(@5;?{#)_90T+h3FQ ztrZNX3NDbsWRd187_*@Jwb!okZ3`horh^D`4$#h#F_?WkJAU()OzXUy9A5+Ioi zcW6wnTT%P-08{YTE04^$u(;HCq=jMI$M8}(BfZQkP*beeg44K`Pqo~Twn)y5;YFA` zhVr&hQ4{wt&g*i;mNf+pC4W2QekCZgNN;^wgTWrnZnxDKUFJ5$ZKx`kiLleRLZ4Lh zd7UBCdq!=L{e5?r$n)P-c%*gEER~c=o7|DKMdwr9PhZg3wTBvs3A7mFsX_lhrje}(JU4E>kOJC*+6t`OTjEd&KZS?zVIW?yN4L~ zgI!D0>xZ+OgR8%<$RKjxv&x<*P6ld8o_r20hqnAsdWU9=I7aY<2kmk6i03g)jgU)G z1QDos1v=P_n0{ODBW$P&P{))MueI}+%;_l}`j&#~o{DlWkMf0k-sw4}EXpv_U)Yf7 zL~~>I(#|AQ&7PiN2FBDrnq;$jGhH-$L4&b@t|b0Y29piasI1$7Oj~q3qFcis!~dXD zVs*GtjicH$+p~eJM7g-c{&&WIvmpi-5)KnDaG?8W-r6K!s&fl>$i0TZzW|F9tdFu zPt9_w)5rvEmeznJn25VQFZ$_|?p_72d>MKWT1MkO1==g$=fS-2@)t%p^;b&s*S^Ww zO#SJ5R8$TT$gh0KIhwT24xJY%(`xpe4q1~;=ZV=>_@4jNd1b`7M<3=a%Y<3hDivhA z&ab0&2MT9GQzrBsOa_dMGB+D=8>=Hd-ve0mqlVWsMRHY~reM&&#{3f#OxMnJr)0*P zTd?%c!7`myNbRm0GKl|UhWZ)sG3A$NoaKy00=gm@1@0@5;JILBLD|xXQ)Eyjy~wkJ zo3tKzK!q+uES5;ASC9Ok=n3tFS>Sqaj!#Zo-kJ4kT)yx%U_Xm>w^W&?%>_i_9^6TE)=z1Yy#SB z0%P-WqeFaK=krWJi%S{L@%Tm_eR%tp9=$(2owwWf^OUo^N+TrmLw<|Wsiyh)*qt#yQ6u%<-br@qQ3q#gA6!=oc=_4-7SuIw7a zG*V_1VvWAdBWZ@$dNkr)uRro;e{kqqW`aU(F!`E7V)8c=aL;>gLA9l$$Ae#leY-DM zj5LOYpy4&bp6na8HVAvVJ8T&*N*gacB6&oKjc_?<1}E(HH>gk}u6s8haU%mNnJD7}?(7mMp13)v5OVZY=KOzrAyx*4n%P zu`o$3%)UD3YPH(^#znm0Bd2N#^PCA_6t?1>*0T)OWq2Z4C6@GDtSerUiO6U5nE*y+ zd2BLewjjNH&=sg-5X6qd@_L+mrn3v&gTtk`2XlR= zx2y=&h2|W|tL`plEfv{R>Yct*$@r<338xpjHfbshh+-?B+I%g(BXV4_U5HDRh{RUKON~P0vunx#ND%C ztDPY%bs^Fgv$)M3ymMQ(;QyFie%(LnlZn-DYVenf=M8prfR16*m<<4fKzzSl2yLo) zjv2FC3Aw*5li8n+8=EcIeG&v$>oUhgNIjaXpVJwPxSX4Fbo|R<7KcT*AkT#EO4&+< zcEzK2EYj+cud5l_9=+Ik!X5C=tm=Lzv{qWk#7-anuvN;k<{#Qod$idkakq)I74AFE zKlPdUg-thdgIN{#-6z}B$}5&6s4PJtH+%UKCXEK|v31<+d2Ax8 zU=bj*fA0Lf=%~|ww_ocGh6V|lF|cqk4^pLyK%)$^ux?lSKJ{;c!#sWmPgodY3-0b5 z;z`M*;R>vwviSDt^6D$AK7PHsB9j{D^()paQ*d`wE6zz@awc_V>zprCO*NNgvj#P( zmyic8|G#@jPsmb0cYI5~@qEcEOc&`JM95P=-j1^$UyoPSYfB9iEcG7HmU*-jPz+{1P1KoA zl)PsKx#VFDbnKF|l$9{vnB`Zvm_1wvvqnZKy54Pg96YLw%ivzCinlII)6cuTSPn*E z^u%Zl8dViM8PW;7^KI98k}Grtq3ED7ltenPbFs&66>RDF)Sg0 z5M-;u^%2J!mexw+VdX)0eUR~{$*55z04i9g|YPo(jO@q;HLkw zl*E3*hmjK#5|n94)2b@_!!6QFoz=ks4jwCunqV>PcX>m$_g=E7yGNg_xM0>}BMila zSD+=L$7;j?M`gVSD;YlI=z*4pU?^4_T7u?evu{cX3KZ$(9vV8d2+jLMRP+yA>3NR) zkykCL%2-JrBgagc!(+%rnB;sjxo0;o_${P0rZGjYyWP=D%lakCXbR@2EH^5JDVwv{E{BbLA-hAnB%Ee!wf(tv5w+_OdaN|R(Bm7tH@WixD zS=ajt(zZB{3fy0r*0>X*&2ugmv|!QK+1#jH#Bm_ z=W~3?nlE-sY&SIfcWu<0H_~UeVnWeIcHNfk zP-Z-;HE%N&qQ$2om3tzl2A-1VC-0WsHWsl<$M%|#9) zODk2-SVZVz3hKBNQ4q6=mDWgq;j{btN<5-`5#J-n&I|D8XOAzU`$c`c^bHqvRptDy z&MVR76L{(S_WWv~7Ig8pgr{Bw|LH!FMZiZrsEY@_K!GH zeqUGn_;vO;`#mqe;6?RX3zq-JZ@8~9`RmIgqpjNY z8}39bQB4gVM9lTe17wd~S1tuw7{Bp}jZBFzJ~clg#TUQn@2lT4I3DiBZvtkf1jSG{ z_u?MI{8<4#II-bI$hZ0%=U*+7gR*&fxI3yhFTu}vRhQ`b{&N4_9bY8!lib$>!Z=NI zh_5A=bXu73Dow?%w9j{nRp~$Un<#<{%T`(I&JDG#@jQWtHPoKWB8fs{e&m5kVbLC? z&c@4kv>;5*)Y0+bJNkHk(t2v}8JJiiR+?;mz;_lx&d<8t<3J4)iO{Xcxw$RS41b=p zq62Z&9VQ?bDUxaLigK>*cL%xTdBS4l3ACw0wLt<>`iT3$$Y@6f8Tr$d4sG&;Z0_*g zAG9jMeLU(f%I2He8RrqYA?Vg-cced&w_$gfZ!Cw&!w=@}BNtMOC^hsSr9lP0J^K=T zy1XJ|g)5(lDq3o7`sHeNM}{K#0@KYev!{+IQkV&d>-|Nn;z^w|Efmc_=gxyAe8)uk zAHGzt5T_R~#bq>CEVewmw)h|ChtKa5fBYYYe#I(DC_2hUDG%Bc8PdyN<7R%HTVHDq zHee1joV|R3o!?%*a-P}#`MJ`Z<-&Zs>p+~3Yd4m-la`p`yCH4Ku^+uZ7uAEZetHG3 zSnxg+V4_*Kys?VF)wwIL!6I)!Z-V|*7PZXgUFHsIOgfKwnX6`=apV_z=~IqAA$1++ zCwPz(apXb@?ZmRLP)iw*H@n& z507pS4^PRns+}5)1phXd`NcnUfq9KhgI=0=Dln;XKgxMxGEte`o_a_Btl?ndOe-BVgB#7i^E*b9RWZNNcFycX&N;#s665zo$!VJy0#mUMODt}mw-2-blou;+ z&P9mFZgj=s7*EIsiMw7E*V0r}y``6GJ4w&fks zFoXOa&@NIDu|!?6id`tsd$gsJZMoc{$})(;fV*aaA+L=%-5GL^VG zDKCUBSgbVdFUWA=Iv}?i1{!$~;Wo=IjeA$WKcSeXea2^Cfnw2pDw{E|sCY&(V8wc} zx8>LJ+?-Btc4A(IwUiCq2ZamE`qm44*rx}uLMfSx(Ci1zrWG+P19N33K*nI6R3t*AG5orV-!$1}|-{0gk;)J;*H+{2u@!r;22!^1<{ z?{03tgF=fw>x0}`mAYZ6rfCBpF+8AuP~8#y6r$;-4R>! z?3muDD_Iw~6vIk@5}dmoY@`+gV=DSTc6oqFE~2lJ(@W0FTUf;kv`G`wKH6mLc?D)iAP zEs;DZTbOo$s~kx|k>~qaE%^otfkW5EUWdHY^sceHD1~bII8f%iI9#BC#^Vd7D{5fs z~nbbNX7pmr%TfD?jaqE8-wAV<4M%r3eUcxdcs)TmGZPHfg^Z_dc>16IC zKC+HjN!wqf`{jD8=QcT6p7X*`6;+Ha$VBww#PwQ8%u;0St}Gp{j>&NOug3((uduF9 zAmOdToBTDnSDi(lxT#INppiYYt;-naiB9OVe;h4fiV;##+xd9Q!Zt|BEP6IP?B%Pi z`*QvE@A(6-z(xio*=9zhA}mf%PLE9RgVVF%TCK^m zD#!KzrKTGk9UL76?@kWUF~O*u2g^6_ zcE77QAsF*$jQ8{G%XkW=-ttK(hJ<71SqhU z{ZLd5g>{DM{&aO(( z3y(erbws?ONT^G0Altp+zWSwIf>$;7vlu#qT2O|+SzV<8 zH-dChuV_G-##++5FCQ--zL2)$gLA=3B(1n)p<%hI=nVJq4rT>2>A|^HRSIwV;IF*0 zndJ_y@!$pD{j)!FskC}2-Ue-liDllT#46bPA)Ebmpvv^!RL zM}v*vPdsb#+Zd*G>DjC^x<33S`xj)C&BRP zW^;<(1!BQ%N>={&-=Bz;x=&SKR2cq4`I_rUm?8k>x^8`bZNn~{Ih}ycJxS{^tEY(YMa&$`DUz3xJR^aO9-J#7c?r~6~KT!+g zpV$D=PC~B40?ZCCFwAIC!%EXbIf3L16vjyDlEz@S z$)L-Ihe>UQDravlJUWdTePSz^Q|+~Dux(_?6PdCkGDV?!&IfpneU-;h7*L;BGU7Pz zWa0KF9#F*HLGDRgSC)eYlR$;q!+j^u>WxVV>8An+M+iPui32FQ$`;#|6x~f zRH@Ixv*TO($jl0fQfq{JuE5Bwg9LL;lSbOewL*30}Q?CijZAeTm#@ zHyS1%JV&mjkYKa(m~6@2Z7F47%|h4SRu^o~yce9Il1!f0I`7wDI#vZsFK9uPsbF?5 zNGI}eti`-&Cb0~hCQ4O~4%rLRN`0pIRIQkfS*TfIS*D&~i4A(a!;on;xoE4M@K+6} z81LVm9@04$!Qy8LoW+M+X|1Y7eU(ITPvgA7HtrrfnU zs9GXh^hcQ5znMD*Q#8l8tg&hb&_DlqKo9IKG}o@Z1!#~I#WINnNRU!mI;t&rA1eIm zH>}|P16cVIJRhAqT3@2dXWtRy@d|pk1zN!zfX7|iU*iO>7hn`@ zIC55JT2&$oOs9JHHRQqla5t3<8kHft7$Ef}#|3Nv!ENM=RI7p?L}m)-s5e0WSvE|X zv_>tYLc)~*$-_puW44_KSe*?j4D|Brtb~Cz2z>fd4%!flVbXE1levxQ~$lJeIOq@z7>n_zmD1^RX6i zsdNA{-*5N^n4QXhedaFUPf5lKHp#ot2_}o)ug|TYz}htI4xTK9Cv5PfaTK}l@g@qa zw)b!7ofvo>B6JSuRpi?rPVa{yi;*tqnvBahdgBO)?-Nd|5Yumsd znaP~_tG2LHE{Yh|_@9tnyVW)<9x%X^2A1@*C*d~#rgfB=26z0Pg3dj&mkrx|zi#`Q z5|e+Aqo^%=E?_fOd>4k#-k#Dn;y)NX*T*X7GoG?8aZX$aVz0at#HBo~VHxF%h0;~a zsv5iraQlF4*R@o}uO$w6{viKP2+Rn=DVU>p_}3ME26>N!#61kB?HnpbBtTe<~^OuSnrqTVlApvs5K31RIaUB(uur7 zS2Z-JcysvXn8E~%X@pu=FcCbhD)jdu<0qUcJR)f3I~tk*`L}G+1)KiLio4vG4ufz& zi*y|ai&{oDD(K(gULk&2iV9NJtB&}b`oDFjPi=j4ZPPL59wkKfa>s^*bqD?G3rq_0JDzMk^I{9rMy zVKV6WMXbPYAE#O>`bA-g1%b;K$s|sGYMFKSxH$Xr_3tlNkJOZLBWu!^9XC}pUx0F& za(x8LBy{)A&4cA-J5c*tXSK_|yK9BXMeK{a1MSzD>9!PcO%sKQad|8v2k4Ae+70Os03ey7qsClFtbkrbyonLeW+%A}E3t=!zFl~>CZJ_#Ag@+}#4UF45 z(A*jfWO=ePc4h=Dx?JL+U10QbIPB>w$h`tv!~HD|z?HG4UZ9ZnU!cq806jVW`elP? zz-_gzJZ2cjQI4R_$s-0tw!vd>m@XMom+${cJf{#bJ2d)<^Yw;vjQuE=g0Dy?aGr=S zRTv6}!y#{Q8STo>o6DsrRm7G?;XVdT%6PIwwuH`ZMq7y3-!*zv#<(4_4eY7a#W4JH zj`=|`B@xnY3=-$Zc%Ijns@l+NvDuv0n+@p%fA!m}h_B(+ zUi>Dvdx}8`FaRKUPG$N2@cki~h{z?z`MR_k>1_(IXfhhUJ;m*zhzugf1$WkzxX+nX z>oTSGdzp9(1zynsSco-c(-4>GvDPUPzM z&lAmA)jjtIVCfaX zBQsgh@}A%n0Xkxp1`lBJSAWbfojL9?V{7n94S(xx4?}}de_GSdvn41>G6?@;T_3yc zvx2FYTO0$sHMl2~3 zi55y7lZnua=WK$x?P4_r#%;V`p9eBn4?*$IRhz0EcVW7?u%X7cU(c54S|%cDz<#e3 z>C5i>wHq!}6|{$MR6`RZuB)Kvc!{R9K|t)h*;L)C(JG4ljNi)Y7|I7j=i`{s?~5xR+7uA4R-~NLO~g zZCDe{0!DrfVg#m^0 za{)GhA(INn)1)b6lm{_eC0l40mc__NXj~h3r3z-I||NdDbV@%gmhA>whE8ND%V(W7CrG8a{t*PLGCSu%#% z<}BcD7b;ODbKn6j`mQ{39zXPo0@~cySw#)WV|-^r=_K%D5%4<#I7d-wuLM&a3`$^hOXVV&I!p>Nr~iS zOSJWKCB>RdM9!flPt3rYqSeI1xRbbR=3vZV)^=u)IWMeng(X`;A1b~r&`BeAgMGwA zZst+h%q$&G!#_Na*#(9bk*#Vk_8NTO#q&4q-cB8hfG2cicUjuPYvdU(A3EaRHFo;fc+2V4Y=$%CjYLG8Dss+Rb4#|Hw9 zoIwW-h20(c2rIQ(&urj1Dk@!_yCyZl&c59Q8ajo>;QbSruRi_a|! z$(D3i(6j3YSj_73^5Ge-qp#jJ>iO(eJa6bufM?g|qJr5t+iyE>KI7gCD87+Zr1ywy zFTN|C$H42c~)^`jyUyIF42P z$>#r|H)tY;&>}Jloz)Q}#ALBZL$0 zlEOvodiURYpwGe*MMHZ*T%sCy5@6!-P@}ov3 zMZf!*vEuyn^pIXF9r1e>Wu%k1E4(EbJSC?XjDp8It*X}wU*<4*%@L>FWC7c@rS9R{ z*XsT#@!W>5&}o6|v?}uBGG4qC#qE5$bjLCin2v7&mKFfP3{NO@?(kP@k@NTq(<_$a zfo-c{V$_+aknN43UQ4z=<>8dF{VjMt(qmhi)!tX@+4p!b0sqSvDOK+M3*sjc6e_g0 z5NE&Zc@0~gFW~yHFmIzT!{HHu4i(o?Wr8?-{$1aMsabx`jEHs}BxN0frDW-)k>xW$ ziXsE+gKcO4J>NBlbV}1qgH5Tgu4F3P?Xur@lxY1ZIcWK%Kd*UX&w;Sc3&`qGKK{35& zQWWIHIxokWHv0Vb)9ha8$kJT3@#nsNM>Y0PF!q(C#k!+iz~otEQnOQEnw3h)8LMrS zwy7}m7l#Hi&JHzRR60Ko!-ZB742hU7YnbUJvZjN*!-G)4z}Ib9{R?BzbJE#5E%{ss z>o2^+zgXW33dzP+%`{(9HWLyVSFi+1BZ6^rU5;CV)Rx$pT}0t!&V z4-enb3u{?gUXtw^Zvvxj{5!Vc!9#6*a-V&H4<-7u#XERz5MoIQ&HFe91!ejitRL= zvf*+$A%1^hR&}3VK69;WnH=F+I9qX}3O>Y%^>vOU=P6%4Qow+90E{Eu%$Kk{C_Oi< zFaS5_>qaW`=JfcG*w6Y!SG8YLt#mm6=hflKdc7ymwP30cfSrhH7s!8kpQ1G4KlRgJ z`;k@lx=(8^EGBjJURV)thp^QDOR)~h>#uAxi^?Y4J)!=E(0 zR#9zkRg?waJMugfJ0D9~tUHnM;5*x>mB~ba8G$X9=VP=dTLyQ}IL(SOA`^iZC3f_< z62_)nLK2?&6}nybS;X5qXR4T#u_&WqOCirnm}knm0%b^8RiLf*K8JgC3`9}CxuIbq z-qT>%s3H^`*=bo-C{w1GB5V*kZ*GimCTn1w#2_ngu!wKc8ntBlscH{A=l5OA{v6je zB{>q83?JK>1n{Q^4La_AjN)JTvi*F~_yST^md$+CB~IAKE8RkzqjStYP7dB#_6^b#wT>L71ACF>^4bctZM2kWmLsV1#POp zktn09>@=KT4QE`Wb;xyPs4O_kMM!#qa{_&kKheyYDBVcxS_5jL~6}S@XKTCcKv(+4i1RlcWbBs5MFs1CyS#V$a znpD*~v1ehw1^$oPR2M1#UGPr;A895MW65BD%XgSmz}sLYQoHfh?%%OuOTJ!H)P#;# zJS1(|XLLSq?Pv6L%IA-;E@eMIaK|L9%diGCV?*RWkiO`MvQqHZ7>mY)Hq=tSZHe6U zo^3S6vR%M*s0EXBAr!`m!GhKb$c0)gxKB=%9xzucOlh?*ypK%A4Q>yc`5DIMFD*NV z>EWG~jTW_3C33gLJ&a=<#rB&BE#c8F?*h!tY}1mK;-Ng2oOfrwsI)fpEJiEo>jDXm zjt`IC5i9oDFaDPkThnXV6})H`gRQ*B&2MYwSyDPTC5es5Y8pzx*{=q*eh9g@E6VM4&4W{fe43VwI( zm53dQwhbt~3w8UMv?X_aCug-5DMb>Rn6w3Fe=`FMKkCPEMxnR0B{B+KhwW2bu_jlV z!a$8RG^7`}$6AjK)364=&@^XPrU_)({EX+t9Wx-#B5}#L;M_A%#h4xN2}zI@m_$7n zpH}b#UQBDXovJGo)_d)QjtOGL)IHB&0_W8{Tq5#qF>Pr=@rN*_BftItB0>!b}!3c zpLgy;q^)s2E`D7X>=nV4$OWv>h1t{A5PCa-1y_Xd;_i}imy~yi8s!l>!QVUKa22WWffhleLA)YXhq1HK;W5i8Z#aFBemRwisy&wup zU!!yrz&nc_ z3sHfcNG28Taa0R#^HP8n!AVze-$krJ8L&JthH9Q1CuK<{GH1=HWBCF-yDSa;4pxpq zx6>`LBRg`;@|tSsVF88`*`j;ehHp&5+`_JCj6@t=fE}_@TPK9R*7+SQBK4H0ST%H2 zT0e3dTLF_-)CBf;1gD4LL(WeVdP#~QNJ2}Rs;W|)OhheJz039p-b7W2NdD4`XU@`#9eSfXKyE^+4 zRLo@7nPAUNp0NeLv?-LQz#iw4aLZaCfnbCuIDN@ggT>ubo`dT6gt-msVt#luKYC9l z;+;a1B#%`YQ9NmBFC7ga%+L8<itU*x= zVqWH|K~sqI^)EA_938z1{3pyZNv;%a1JwiD3rH_@RQ*8T)=18hA|vjGXLAfJ2(^e| zDcGuX!!6Nm)`*-bLorEqZF&x(NsZ^0&=h;zyq~~&kmrLEkid8eabGBsD@mpj*F*0b zvw?DXfZUU+qS2B(6TO;S31*ch*xdkQ7eswV|g` zYkLHL$xMN*ACpO~mtg{PT!r2%yrNt#Vf@IpzYk)+@UO)&1{i|shT2u7Vr5n8sr2QT z>*Lp+skUS_fThv#rnE_$;#eBeRroNb!(1uok2n(rvDfa2Zc4*x#(7yN6%#CZB+9dy zkV8=!sw-BOm<-|F(IFY-zDk)^p^%^{K_500)2y?+r39E(xK6#T-_*&;+qbyfUKKSN zB_08_jp5L(8zGJZ>!jRC+&7pqRcleuP^*;$jHy1bC6u?3p(vb^UQuScVVD>9aSNNxu#y9W>pJj6Hq z!pxOsT~Nye(a}B+29-2~T}es#cI7aIMRvn@2&z6?so8q9(J9sfwL(Yjs>Zc2 zqi1=UvP&MZhIAs|xvfX+HkwQUV+hZ&GY);C$NsORU_V)iXP<8_DW25vQelX-k)kX) zOp;jP+ti9lnX=m0c#=N$zH8Z7<&`@LIWQhS3!Tybbv)>oBft1q>)Y~0!PcYFh9yrW z&;p_TFlR}kd1A+I3+Ot`ER7mzR&y{JnLI#kPCaT7^4DIu)aVhpKu$6Q|KQzMtKM%a2?uFqd>uuVJEAtRjQhebM|0(SSXNZ+i#K zrx+%ixT3n{=Zl4jRKVLrzND-Ck5l!|{AI=$K*ISUOKceHG@iVD+GGGX|Y z-Dn}>Cw$k9KJBPhsw#6d?E1u`K5o6D0L>G5l7mzvDQU}|i+_&Emh8r-Ttop*ZvrfK znuC4?nq^_50bc%$tJB=;U(^{PuYAqEzNIDi+{?F=5eBoDtTm0%&&H5m=G#Tyn?_>5 zyf(yMy2itny+54Y`Ktk;1SH&>}E83Sy3jkhp>>P5Mu`In7ooY))cWgRF0KnUYq3 zX7R63Y_}kfyq01^uP(2<9S_nT=!J$>``10FI)nRQqUCd=;lfnN$|`KhJY zLn4e4u{7S@idD0E-N(4FG%pyi^*?V~O|x^-T{x;2@6!c%b=zJSGXfH|BhRlWf3 z-fy2{n+o}De@nA7-s~UPa18s@oXa2toj=?EHxvq9Y7j+xf7~nRZY4wJnZ38U?;)6F z8&t}@H$65%`&jngawLW<_dbFKe?^S$u5z*9yE`imn6Q>{48b@4SQ{3lrHVtrb17Ix z?^XPTSLB)4aeW&a7z)t-=SWH9-M~cYoRyj_VW81aTipVX<`@lYuq$=RW6AV`9-Ykk zlY)U&QuHWdM~6lgL2cu>hAPL$a9cEo$4Bqz9gmU8=2O8EG-*4r$C8|gI5N0F7sHwd zi`4af4t!DGH0(|piAv5<{|t>6mJU59EnUH?g$ zG&z2ALJbV;59=UVlV0S03c;V4S&2lgVn&6kf(T63sn9)VNc4{=?{De3NUp)UnQSn3 zHLm9_J>YdN(&`STGBB_G(Y~vE!8I3&q*APv>1a_687q8(lG!Q}3Kw(u`+12Q#M;ce z%m;?F)i104N3WgR!Tc;0D0$8C8?e%AM2wgu6S2?unDGjo*ua{?Jf(F(p@(Au0Rq?hl3woT`XX6 zLw{U8o;da&@y?|(e8+ihqBJ-@{BRiD_v+1n?z#okVSW)|2+t!p4bDXsT-^VK=L#IO zCF`6$pr66yUWB<@gwyaP=-v|uxmpLJT)rJq-KU=c@~%z4bB;S5!AFe20L#WyyI>c5 z1BQ)OB{jzkf^F2DA!ECL;34|8|1=hYM8pl%!Yd67z$^ zS3hd8WVwxM8EV~C(@Twm{Tg#H(2uMrxW2&Icp~;tcWZgHhGDzmdYfBU?g`*Db|HEhT6e6$^e;Z%A8qPb%NS079?=qt#e8 zvkuGAy{FOwEtmq$-qy#%ipVUohf*$Bk>&~tbXV`hrYmNtHdw_*5!)2T|b_ey| zCKfPsk&E(xW0Wg-sor^Ref2xaF)`80-{kI((Dl08&v*AXLw|FI`DuzZCf#{JuT*Fc zUt43CC(4jsqhWULsPT*veIh&ZD?eqvbxX2j24~DYT&CINB@TJ)UHJXDu7wS&rOs9o#PAd>yzpr|;ji&E2W3 zkyfh>`V$r`LM0JTO9Fd}K>8}52{x|toZ;9n+Y~vypbupKkHF2bFa6&_s|}Y6wO-Tl za^e>-3T>$AFH;6R#rg;=fx&ILEql&NV1a_2TyvVjANB=zl7ZS3N~)y+TUP0J@7^7P z3X7}9Pjcs|T7mYwc^U^{CvZ&W#_}cRcHy@$gKy{)YLsodUF4Y}+tu#+8ZyGOD$2!T zL9hP02+ryXV{3)=fFG*db%=GW#d_UrXvvXf52i`di~OipL(SrxH_=KxMIxhk^FhVe zRlw^gg@t3g-u*$8utFwUY&LmASuCijV9g*Cse9Lo7wtbP`3ek*;O+av52P15&KUz% z5=GlMPB4iLH48wOp^1?Jt790>qtFfP0=i+|Jg`D&=$Y2X_)I1>%(|y!tIorFsN^yO zi!T@nwFg%3Wt~?Vnm%;Y7e4G2x{BG9>`&7E^iXT!Myf(o{LR~Uv@^5IoUg&wu2=x8 zQMw?Lj}V6=D$CFG`1SJZ0qAz5rDpP)H@jR6C9BfLKLZ0x^@q3goK;oM9~nlUTZvCd zT6aixc773D4@7{tPr<^-|CsDaAhBP~WRlvTt(L4r^SEAa(@556H zu|v22`OCmgVX_$!_X77@Uc)o!ph|^~1M3j-JHMvJY^r;Nx2a#33|6V%1dF+%g$!)q z|6acV9>{(X_d3mRkU$-=lks#Q{3OvXw84rV1ioWoZpBYD6mJV4eBi`Gyu z(Bbd#UM%K9tGzxT3tFI8eX`GYs=`HWBAe>?cYyA@3*r&gj+nVxvz!)ngn1x{Exkg+ z_j(=&co{~?i6SO6dyoscRWA2@6ysIYr0CtPYSiEy~pf5BQM09(fiqwZZhW$c`z;YzaXupyx4AfjCS>ZH;Fhg_e8w4`eVFtT6Np7BOR>*FCHFPp6>g&Hg|A z6q*l5^z34O1M>}Oi|#w7MRSlUkx~Si&nl)#C-I#j@8NmPA8H=sXh?ZnBfE)xahf$` ztbLgl@YUOu+3}nAhcxC<&UDMDfFWx}vy!xR&PQrbp$*QMoFKLW&#r%V)q3B5Eu@%z zdb}c?zuRzz9p{FX2$iRxlhM?Wq2O_x zz2&PTnE~UK!F+}6h`YLQZDW`4Zu5P+_Q6!~lb4k{=GXF0Nlec}?G+iy?v6S*cV#C> zr$=w7S}g*b)P+o>zFoW#qROcKN!p*TbB?I$Ou&D2CFtK6tip72bVMfN*Mi`l&(s}Y zsbPUjm`%P^fI^$VHF+lViIJ@hx&UBitbo_;!9BX?i%MY5qwVV5@w+6K#WLC*8=ff6 zz0~I7>haEmk&UlzQc^ zmJ7x;*i$A0O%C&7lV0SW@@W9$Ik$c|Hm}M)03)WmEG;{rVP;m5F-`3(#}opv0s*WRU(!zx$c5ZotIwClv)ONHjynl{&_KwWJm?pL~aFfYlkM zMfd>!=>6FR8A`r`FBEE7Q2TQ-@ND@%vLgV0K!CseeCPd}PB3Nxj3adF8sD|E%gh(9 z<^uDMN-VMr%=CFjYjJs_z!1(Sy5OR9Ms ziz+a67^{Mz7zUSa*SaBpX4OYn!!-TKqU`$}>B}CG z-LjS{RuU#mDw8-QW7(}qYfNRV=vpTS@EY2Zcb*)v;5y?CHORGt$pw0e#|@T9;33(8 z5wZAz9;F($mC(=%Vga){9yTA7txvhDCwFXp0TVhc*cvDH;0GoIup;M?Vq=|Z6C_AX zOgDux@j3t@QqphLxz9`6(3VzBAXyvIH$21M0oPLS2Aymd*gG~qIzFXV(Z^`vw)`5S z{Hv41cI!-u+kV@va<`q2PK0PnG`^s^mT9x(bXj1`W~x+XNGJ251B0g2YkG5e|47TGh2YT)WH|7YSS>-Z7={1Usb8Q+)M24=P}PLS(`M2M+_x#t8jN|5 zZ8W;6rKos3FJKJ?1%FZXA)T>=V8V?;WeOfE8@9;9U+G^d4fkn2i-a!)Ocm zFZsY@(1CDYcCWy-&e6FaodGzKRO19-s{{qy(auT;Co!w{u zQxi~NSt3CI1b+CnbX!l;%XVJSzmbl0>kG3h-(#`-=39!S*nWj;MDcgBn>oA{@4O%V z<_oa@_Ex-eup>QHQqaxZXkHLI@K_#ToMw4MfAYK{&1cws9J-X)=ExHzH!6mk`N3y* zywWTqy9{?IU=gzdyoaKuHA{mT!`3q$Y2QA+7oqqO6?gt!W&#UQBHE5cpKwH;UE%Ie zlogh!!P6H8tToVzZShVE7c=C0p~gIyzo_z}LFwh;$=i#!un;z>^|c>xHFk7~hT>;c zS>m!f^p=-QCcMfx_=CcP(>y_JJj9J8Tb3W{(@=D>{>g^|J=IvjWXVE>Rs8TFsb;}y zwIUt$PdZdQpW6QuW55(lZUx>}R>?F-xXnXeVe1G@diJ3YH{tW)12|OL{7t3(G;b-* zghOeLIPyD_W*V`QO&b7X{boX~#WfXqp>%nOSSE});Tab>Lgh7ixm%haOqhkIFKV!3 zlaq)vW3Lwi_B>ecDdu};qKlF@wS{Dt>Db1=)QQSxG~p>P1!;$VGSW|`?Z^r@)k*TP z4>p^mO_e$glqv$7lZ6nMmgV#O{sOIvwsK~`v!oA9$kJxF1W8?R9ikhzbIIY~@zi#e z!2FyiJUQHz@4A(ulX<}lmgSs=#smTjb;y9~oJA8R8v6~c=@*7TDPO>$h1b?moo{fQ zFjb1M@wI7k^5I>el^{Fh1BHTv6(-n`_NCB2?(MKE5le+t7zIgrdh%TA0XM2SYj#-v zroX=imolqMRle)&ulorZ5*?rDYx06N`Ss1@+5y^f z&m_9csFwn5lJ;8)oN7MpJMruY_Oj%5zTjt`PA%d2L;drj^c{I6$g|1rZ}pDKeK+VW zafyb)I_SVF&8}c4xoWYR(JWIihn55f?(4>gyp}X%B_1|4Be#2iO~5D_fuZqGKdIY` z_oSzI87-$_f;O69wqr|&F1;mtx7idiUu}~%?a&7%Uqw7u65bv**4lsp}U!Dpg)EoqimhP%zv$;!A{V8kTHC20Zcr)|T6yW9NDXy8`V$wVCokC~QAj z(lf{yyLvms9C98ew#JT{8vLg<=?U&}`OBrsDlAytY-q%nBIMJxU@8~WTttct*zPqW zm4=C)*Q_=0;HAM{+2x;-o_!F~I#%9ju}F>PF{Z3(St0iATh#Q_0hbKRMKF5DESUE2@LU-7qwaQCNq9-%#E}R*)O~xo;`4h!2xE z0oOFEC)F$yV7zN=ld(hcO%%4{LaoDwUeR+dHz=bcI2u>I z9CXlhI0t|7EkqUb@L)0jEydto4tYj*tV-G2i2ABobid>pkK5ix;zWdr@3X>2iL&4& zwH*vDY-eB65gq$ibCG3;O>!0?k}Z9DnDDUDq68hc%W{rZELn0SB8maTpf~w~g&_^Y z*CvfqRB)1|h9Z<$8@|FE5WX(C#0GJOY%g+16@0dInPHX2eiBtw*idSNr(11Z*9E0we?awpaf9wNM~nKBh_1=n{c z!4pgd*fe^g6KLj}o6D-Z^=*~A9#!boTN3cmSVHc~HdYbR+ zxf7uRH|B!tDi^V=X)Z#oEV4d%&U2jWvdS`BpNr{_>&n1H zp`psL)i9_mG!J)pj=y(_{aw-wo?C$~dYNDqP*3!oIb9a{CHy;Xp|`p`a;Kl&2^wcY zm3)%chl%O4+RrN)bMBklE>+DpeOERL^GvL}A=zcRM=3zrYgn}<$94_*BYYw~$u%j6 z#af{4WN2REfg=2lp5$I|P%{1fde{XMg9Us^8isQd5G$=omO-dM)5&>sZ**T6t3YY{ z@1Sm@r8uSswl{}x#AtfNn&mkjtRc9z2{y@eeAnHr=L)e9vVxy{1S8j0AAZHTsN~po zL+hAs%I1P&Kja8Yix-HV!N`{4yrZO|Eb9nM-TKgGPx5L##ug%C8A}s*ZnSCqLUxFL z1uJ=7;IXGo7^m%k42eEB`;(bu`@3=EgSm@6xx!3U5llq7Ginp&x>n~qyx%;AJ(kZ? zRbeY-c$RCyi5+>|@{SZ--9NEfY268QKlE+{er*I|T{<7%T<=Qz;{@&9o13YbryML; zu|Vkhc%Ufk*tM!FR$ySkKFRWmXEcljA~z@9Yu(|#3|Lt?zcAXlnu7wW3mRGH6%2Qk zlAh}EGExwbGx{W=D61!lT9Jn0o*5gNjD_in7BvP-+mXi|b#lH>&S9w@Ac%2<&JeKd8Z3KaySQcO-5Zp=7)tQ53*o?qZv$hiSmyWCiBYK3m|$>{h~*JBG_8Sah|X)bcags6lW zjXr<+Oxq2Xg|PjJ<&5+k--q&5s3nsl$_kZbinK##dk5ZBx&jSK(*%4{dq~}poEJ0V z>Rhmi$d-(nyo$+y;4$528%(2B}94J{dpd}>$X3zn$^3~ob$tbSxp(it~5ulVS8Vy zeuIZDD{c5R=cRR450?iH`I}6Jh+|v8?0}z`W?)~IRYvdB7*W=A{m3Iw>|sedmUp8k z1s-@sFR*SH^x~r`n|2Tl-KUC5HQDb$o2N>XRlcoudd~H|?Of^d^9L}}suD)B%qPAd8l=is7|2xvt)0pCa2If8v{d#7URzJhFdH}($hQ@%2wv~C=F}9n$wkmc;Dg? zt!7Fp8p9IEDnw#tMImy88g5xmHCqd%VMjtpf*fPxY=-@7cZfbSpoW*U*o;Oe@9{)? z(H<#nsU97wIOvfX9;PAyPb4te)Q|zy-ANsaM3~bi83ps3hGHLpu|;$k1GEu%l1Z7XRB|5wR?9m|*t#`1tsA)EtfkjX&6ES1D zbQk#^3N|$dSUL}0xQwu8PENK&=LjTQ^UNsBaGUciDk<10^GvalJYzV+CT(nTo(O68 zf%G4oeZG22_E~t~|)IM4D&x4t)1ZSIp4wQ)2TCJBX<1!TN2+zM;rt@?vIM*kq_+R>P zeG!8Gt3>%E(*MYo<2;qH_v#9MI4jD8W7jc58j|n($*PF+%FwH`;OzQ7xbDFsT858# znMf?567*Zs%d8uFfb)tlVLUtjczjBmT_gB18)wz*)_M(Oz;}LbFmUKk-fD=5Sl1VV;5VTCl zB{wCum@rKXJJPegAp~G@Yqm+j=doIcK3qJEMx-O}S4R7?J-;!do_d-Y#SgNT(T#9;=^D?4HQaUrD7_~bOzpM zL~}!S2;@=C=T7&UtBP+J1#j_|g%~f(B6Gp-FkJ#8P{{nHqkp>RHltJ`LU(2YSbkOi zyOG|6XJ1Hqw?~CEqIiTDP*W!K49`KQ*y#pCZ@vO;Q@3CK`Ch}#{{7--#dRI5ERI6^ zyT%rH=QmI4m352qLRJV&;YM^z6_@bjesyoZmW4^HQ*au%~P-Nm=DH zj#I0ldMMJfjIW<6UCd|;bBK9>q^G(^>qU~Xl`w|FB!Ih7*bb5#VMxay4>v_T`TNyQ zIIqtM4ReXDnsb*>X;tBYC1$}P+5PZ2tJvCrNgUCyT%KG6SnnOQ4FtAKXMbrR*A%+x z^EMFY4$-ug7n=9)J_Oc3g2k#+LH70FCP%A_gOX*C^FkOiZXg<5XFgZA1OY?I>XQ5^mXKG9Hos!R`hN={s<}B)P z;lrmeQMn4U>S&SeJcw^qCftmdNbp$2OvZR}JkQjMY$-m^HC39`WfilU4s!uR%nIN# z<~?}W_QL<0udx_zgD-J5>t_0Ng}x+ZA!u{hAZpT)eD1j5kybN$_IUCA`tE*uarHDB zO>f2*q+z(%jJNVyjO-trp<^9P+M`cTso?G*N^Ld6vnqqX8aJJW>e%l9jPm3bG+!!4 zryoDsI+C-DrGh-;_`Df}zL8PQ^@n%#AHkM3?P!PWU7)_0E~gQ=Jv55CKuS;Zfq~T` zX5jhZbfhsRKjRSyj#{*@;RW8fnUxgtCngsnr)`-I=(7Or8hC93uJ0FIsF{XYwxl8W z!dN0zOO|7TLdS3pFn(b(VG@d`z}%xz6viOwijJ zd#2$T0_lm)MvGd*z8nQuT1RWavnZ_el9K`1HQTexGPhBnqo~gzs zcTB2@kYUDzo?s_Zm~J8*vkX?0ZLa*5-}!xVex*!#xyHOQmff(t_=0=QfnO5Cl$R@( zMYLe3Xh3?92$(WDOls0|op+vy3wdm4G5>xYum~*6#$q$1VUU~3F>3=u0N|U@FGBN4 zq12poBrk^oRlXGRC{#J^a}$Tu*SmD?LrvY0XR*6?WFZt0Mq2jkpJ!U=f0juxI{k1= zn*e`1a?E>YHTb2NHJ20o?0$qcR;jANS(d6)^nn?(LW3se5>*P!?;+pOuxrk5kBqGu zGt^+5B|rd{7z}SvV>zB4J-fSk~m;{#H5D86SYFCLRT_q9=h!$jFar`zC-d7 z4VKm@3@pC3ddnXH^8ogt<{Ug=B_0Db>1%KJ9nI6}t*@YLb65`k9hhIS5;47;Je-~c zT@2z{&K2o+&T70%=D=h&EF<^N;Q;#vk82o+3IqI~!Fk;hT_dmsmlguU=GcJ-sWZhQ zbCzXb*FRwaI40f=F7Z<3n#CEXLM|2JtQ8UL43^~V$Ax;8ilBi~RlQBfWl_zCRwlo8DZXKi*GBL-j6% z7-Y+12KW8^+;-RX&teZ@yVZPUPLD?vV?wv%@4=^&4<7=};YHf?QD5)?~pi@u}4)Eo-*>AC@(=X(EM9VGyNiKA%=u@l5r{5(w zdOSL365AjRuko7lDOeR2NO$!4^N5~Rkx-8uUP456Sw4^F4E#9ol7jn*%^}B+_$n9{ zO>KGZ$Km6moY1UXog9xoq1_HQ3VIUb0#)l9zyCbmY#EC#WBbz101$YglBe@2N*}TNc@f$IF z#EQp%Nkee2i&|%Vt}6NjqHolapOB739=ZH~4{ix3ybz(FD~6%U(hxgzUw5*|1B(G= znyMc|Be4|5Dvh=d=*1k@dcwSWXthc*Wd3h98md9ZlmbMvoP1^y6G7K4VeC~R~WuX5+QPGn1}*&wiax3Y*gMl={?KMkO9lvoZx?Cg_Y^p@ul|_U*UNq z)G`S-DB%HWI`}-OgB(y@p&{Cx{oRL8Co~gtZ2oI-e?-9d0na1*w30QLm;WJ<5!Ph~ zGmch&By5B0Ez>#kh%=c~ObkN(9mx^CZ}Na=U$*xsH^sE^k_Xg2ea~$+{H#=_C}L3? zJR)fcZs$HX->-vH+GaU7K~GB}wpq5@t})9ho~SZXG0kjHXC=xc$a&D^u5K?Nmzh`# z{pUHXFhlCBSZK;3te@m5qLY%2YHbvkTg5mzc*Pm^il)N>*%>&tPI_^Vm{Zl?qo*E$ zO(qxXKq%ULB0a&`{l-@c+8t}RKmo_F!RNU8o{{$+v%TB1P@;5kO20h(Gi}3Q1PLDa zDaOnM!_?TDVbLVG#x5_q0BbzPJdV!?pIX=C= zEaRBd`+S1+k zk9n9e_*>d{<(|&0Pv4NeoIy1&!G@xUrk74D_&Duy^srG`!}SsTSTk54@Lx&nN4GZ% zPJ2`b4Z4G&cXo8kiVL-p7}7;7)!`L;>NHMXk{a>gdgKMoRB5v@B^Jt9lCvgwxcq8i z%al!RT<{VWNu@!hVulkMraj;7_kW*U2KVC|`tR-av?-P+Ey;b-h;jvHz2NjlsRH-6 z>xVJvh>r0o+r5Y z?Dxy43T;SW#GaSi@rxO5KMqZh?O84s)|MN( zZaN}#QK^RNyR~Ox#RWW38KVVeqiYSu!j|Eyct@WYZ4YT)o#VF>+kkvtWthRmO50Jk!|vMo9*>Aw2~MYxYPCwxto^(EyAomgPiT)8 zw+v^^bk5}h8%#qK_x55 zcIXlKZW8um23sxci?DJ!0=b8!>83``FYo^M>~?fVvFVG!4B#&;`waWS2mOpcR~sec zglnDz*W-tA@N{{0yPfaOQJP*btRTb)z08$8h<}IMp{T56dVJO3`qtOEEsX7`Uh7?h1&q+BIivJ4x4m|G+ff-KqfW2`{b1ie74gI{is-&&^CPre7Bb3juX!6JkKqhvceRmSQu;bkcQzlvq}X@#Egzd zCv?KmB>e%(Ac2?C)4k^ZnVdeVbNc1%{Oo3YfB!&Qitk&hqcqRTPwy!9Oav48zjLfB z?x-GU0t<$aObMgcvIKKO#4zWBandx;+_Jrv)>b%{duTDMN*;lmXgiJsH!U2TO$j>} zad3f!5&ORKkF1QrH`=L-dJNH;WYnB5w^hW0?{Ln+efbSbE-O5iuowjonn%J~A#L`_ z@XHSIYX)EZ$PGtJESO+fNgX_33pg|UBG=^HUEw9GZ20Hd!+ZIA4)~fMd=}VKO1{Kx z=f!(DINl2qqVr3uH_8na%S^X%?x^pWf59Az(1cz@j5thPxM&&8Idw z$265ui0B57UvEI&_AFmj(S#JI*E!4%*w45OIUQ?N;p&U04=RK09X5SAy%JHxB~b9m zyz*Cmy|kX*MdCdcu5&D<)aOCC~4ZzPHArgC@gYi<@e z3>n-tZO+!jrf-o~{=|K5N2-GP15OHUJ_WEz*+_CjeGN-;Z#?j&tXZ`q%TbNLl*h2i z@mop^hsiHnxjy|%U=pcdDGHint$sgrJn_vKwt5fKuBij4Mo{gfr@NkMMk>n%w!JcS zK3B4~g^eY)S~kI~l4#|2mpGetC9FYgkZc5 zaeOi$J0D#ZVhKBT8W`Kdx;YTAO>RHYj5lpCPx{`n`!9Asb7J5^1~Uq7Pb`=g28=07 z@vwADQ`%mGZ3%SH{wwX9Yk2PW*9pxQrp88CSue`9I;)d}jYVaAl)<0-iduj(rx1*@ zOPmFLs%;~{p7V=xs=f2-PRyVFqVV6czJs0B4)>l`zu*5#b&05RmFc^$t4)(Y(b7HM z?Hr~xD`8b8)r{tqAVY#{Se*&R&h9n7ntF0_ixBdRiY#Fl%sjxpx``6KqP#Kz)(#e35~mFf4H*YHnSA+~8k0=znG=DL$3n-`d)N$Q zfZOk)GT@IfT3`?RkcMJVVD{RDZVSP7W&&GH$a#fXv!o?B=B`|Bl%^Ns$q%Koh~UWE z5?g@IhHVCRFhknU`(QTrC33-@jQE<(Kj@?wTU^_WU9+b_fXXUNptj{_VcnQPJ=q7z zksXB@(oR_=OB2`#qG1IV~jLOiBgr5~)VjgL^&hf|%kIHJ@TQze9J7{2GN=UE z#hf)FXR7H1xa8RIIOQ-Eu`ae(E@aQe&Mw;!tqmu7m@q8Cl~FJgC1yYdeeP=j;s*$B zPG9q?nJ~jZSqDSmX)44kF6S2hQ)30HwxCbU6tMKM{)t$=t5L(zj7B`z2um@W1IKB& zJ!mAm7q}nb@gxWLM9%02JWtY%Jm#d$CT}y#uu!`J8hBDFOGQbZa~rTDW(mTtU;78q$4{!8Q@yLdq-?VI<}x(VP&0+nrt~f2~TB}1>mFT zno*37EN#hx*dTJzmgU!dws+Plwh(1to7a@>>pIkJ%L*Q63vV$Gh}I+|r_z)W=|=7$ zwVcDBAsB>`n2EGkPYmluwf#s&9frXD z2hwvr(#OGVHV7G8>6Fth6pIMmU<{+Wn}eOL$j)WX^(uodluK2ZXT3yyS_s0QVxl(9 z!(gRZLAInOY3$FVat+cASV(!HBsS-uTB(w}An$L;@IwDLf}ePpOwXdF?dw7jI$7KF zo*>+!bM0L7>s}=<6z^S?WshoeeEg9B<2Ps`6A=}eVi?Mu>Ayb;gsy{Qnx@5$*pPDJ^3yc+IDLbxQ?B2Sjwza@L6}tt|Bc>c$9NHu{c{CuepW0BvT#X_%~OiNC$yS8B0bAv zcSCHOm7)u*J!(GtT7q}VHdLh#h^wu!%aR>?oFd9nNr5g=1iyyC!!%*Cj?(;R35%#? zIm0Baoojsc@w3ioNttKww~?b~Ezx|xBg;&f)up5>#ti9)zs!u?I}KK#c^NcGw!LB!ko@X4@Q6MB@Y(!P7`mrn2&V`QXlNdtEu!IKx(^bLuRIhTf zB*#`eSP0sD_Qt8_$`mVUvK>N3kO*rX+U+zq}N5!NWOi{vqu@ZkB%5lmVo;BJk`_#@&(KJYyyW z(-oJ-%d7lQX<>51?-tB(dftZ7 &KLrn3!2ZGi;&pJrZ6g6PyxJ?nHD(z?7jqh_ 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%0D;g|ozaoe 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%0Alw@XKKWX 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

    5MDP{lu>GoRt&NN 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 z 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 )@96=^_K?9V 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%0ACD@KTOcf#rf~eKWh} zjYPl-*o0aS;pK-3S4>klJlSoVB}52T)K!r!?xL~FOlB{y^M6YEV!}G`fJFrJ zLpwOEGA749&i=l*t1@j_2IV&+dDrBwcK4J>uLY>L8Kvtn)U(UuCFiLL zX1+)xm^1p5h2kxQ7GJtY|M7@X|cIJ{ND4NMMR2`iet;O1_5 zC@obkUE5x0xv3ZLRl;h|C~K3-sG<`SxiuiQb9>jTWv+*n6MA_i470;7-A@3QlxC-u zj;DTeVgtz&zlT7TiDWSi?z`lJyCpFIcZ=08_5DI>_;e%b>xzzHcDSgcH_*XM5YAbn z*kCch4163EPQTjs)Y{r_qKrflM&Z`iDd2S5Wqh_Y(4$6U;A2eoEf^kmaY0fFb@_U_ z=saJ^LgmIJXD@M?F$G!-)eYX?)0%!I$k(n#4cj0#&edK8^CbWE%a4Th*Y9B_T=+Mk zY`=LeOs2Mn;SpQ;n7wsNt~a$go8&0(h{}zBX_{14DN=)RQB*KJ@hIxK1yV6}#a{J= zl=!%J6?lIVT#3yNix{;ancA&877R_OxuNk%NJMHoh!2FngM7q8SrL=Su_jJb%k>Xw zM7%!C*%fb+b%?zKn51Ui4@c;hfW)+SoPt~iU<5`qzn$kb=$xJ)7Pj4Vb-~NA z$SNy!AfmZ#EN_s6-hx@TC%z*j=Dg~$lsCM_uDP&OttV4Mvk)J(G|w+qVnM1aHccfkJlfUQ3AaHq7z$`h>@Rmn~rv^kU5$mpnN~9fxJTa~8Mr z&WVaayyl8p0F=n=zGBOM!PCo-<2K2}i$VGx6?eCiy$dZHd{TXhXmQsh`#FW8jUG zk$6VW{$j)2z*J5h%URBI zh)~D=Zw%UqO$6Y36^wb+j0;j;GKW*Z#5p)TEjXaIY>h94Fc5V=Jtt@w-rxmt1+i-_(?UCvm_4maz}^q zB-2zXiSCgI4R2;^5$mg`G^CPBcf20TX*(ffsQ0tNauM=yX8{WRR0(HFJ3$NIZt;*jVWs)#&&K z6Hz>E2`ip9+f!rf9jF`er?jrPsw$zTYJ$vFB~1zpdtUC0panN?j&y{1*$$N5;t{R| zz=UI#UGrBTVoSH6GorBnxU2Q4_e) zudX-rfW0nj!)s6GFcA~m(=H9W1X@bzp{;l8~)GJ)u@x{<{@DTgmJXJSaX||tJ|Q;}GLjh=^@^5J9Lb3UUXmYk;%ph?gF+~HPXC5^YJ6#A zR2?&an!B^*hR(}8;y-lCkHov77oL91*3r=1oD8Z2$<{tztI08+1**!!smZJ>hrX{OE_<&LKTrD84A%mA z-j?qxr#>0=Gl#sGF*65jS5>?i!#6&GR4}ibcV`k2M&^4)<*KyXzftejgB1nt2Cr5v zWrYI%X6a5{Kbs+1&@MH;IDWX_O|P!W2nDQlbpT9@0mI5!tFXb8&q!;#uj=cjp#(;H zQ^==3DSGqR!ud(;W#g2OE*L7uv+$WDuP(vA0cg^BVx?-wR2jTJHR|bhxesE5NiCd`XpVRUDubbyu{p$&aRXvCd!m zKyGwVTD+{_Gob%{;EgyHFCNUl6vvIw6MiyAM6v1j&>IK%s9v|JsN#e`KMI~!PXaP1 zFK=?j_OVRz8Jo{`4Xbqyk6-v*T$7KXYe2U?a5(Zz@EEblfTmqGsfs|SV5zg*DZ#!2 zJj21BGsU4#?@bEil;bWdJ(dr(R*!5824Ett>UR~6FarWu!^5s2+0CSAnWn^Q^ItEC z3SoXa;r~l-BOPmQ_df2lbr+y~f(sEv=CvQ_@%Dv@5TXdbgE^S-;k~k;;sz>+0gc~; z{CyTmK)o~)y&`n^`!AN3zbn~KFqwj+?^81?I-?bFe`u8W+4fRfJIVCHf zCX6mL!SAoxAJ90>#y_-#=^SAF%F(Rg?yL(Bk4|z&Ej0$9Uqdc&+ z17Gl^34w_IY}qc_UlUi-#%2y95GQ4dB1i(~;7oge7Q;7inq)wS%QuBvpd|fEpQ*a2 z>UyISTfS=pW7v}BDhVUjHy5wHPq(6(>Y-j%{_)v2EV!Z(ronR7#k0wyOEk2>sD?POrM6yaj(Xd&`kX6x< znv1H`ANi3)Vw+K(6DEpOc|TPI`*QeG+hPjSuGG-wQdw9cPpSQ6t6bQjtkFEUiPM^r z7f)#j7eBs|ZxZAGEb&L& z%J<&y{dE==+w1#kK*c>m$F0((wJ8}=KK$nZDvf%0D8G>0y#RA{^<8pAN4D#N?O`J6 zA)aSfnbD8`&6&~9>Le*XOn^;e-+0I)B<-`vAtkL_4n^Z#dVowTo5Yv56dzdbU7OGe za{_6!^enku@Bx`20K~3|DwrC5wxdu#F3J`VnMvgIj6F$+G40LrB_fV*yI%VPYL9PWx8pMkF!Jda@f!znix3Yk$#ZxyP&H z;AT!ZFBp4oE;0H;cXg#r(I0v-KbJ5Ejk>-;!U@$Hq}5h-;jExhHR07Rz*D9!`?d_8>J3oWxd|7 zlPz|ks-Dr&T&RQU^g+cc`TnQ@&`RjhnRC?H5@5T$7{0UG9PWNn4OWNLXoCKo0WFM1 zaQg6~JVcj3E1 zXIOq2guB!beJ#@+fWffa{{?!+?r6{>9>s6Yt+=iyp4wO2{B?PH$InglC}(&`>9*=j2gw09Fo%uq&C7V#6sD(1uIfK+yb&+aQI7{=PT?X zNAYp^vkLaf#OX1W5}kIVRK8&s-4L%JO%sXKHfsPMg6V4Z^X z2}wnb-o!K#Q1qmZPZvTc>JF$5T-_s*jIlQW*JG5Mc{5c1m-(Qemskp;}*k?+5|ZN~pOaqsf^7?X=n7pfVqq?}9Je+@Og|j>C!05jQ?IqQ zZcYky7<7l?1n6M^Dff?wCz!c zidgshK%oaXjFrhlBVs8pC1mz3eH?_Akfq2ucxZ%g*~8~KEXvwWQmlQu?XJY4*Oq^69%xrk0C1+dK5coPCbOw+*O-J+=m z39D{+?$=EPua(-s<=kZm3vfzJ)pLF+q{L*_X}=*izhc?gQSlhEtUDG5>F&HSF)5p4 zwn(4onZo4sPj45QeaO#cr=I%jCLk`n^_?G_n4r8$rv4qTV6GBW;5a}_M-U+M)7zuPtYHY+>Lqd$A`3GRD_@J{FABmUBL}_cA%_( zHd^*`*K?|v9j8+z{N$PC@Dc9XA1k6jNDe2shopE7-XWL^i8J90WScrqoKhvy_)TQy zdX+i13~Baj?L$;W20+sy2A{ zrc2JI%RajDLhb2UZote(-sLThf#tIC6!^1%QvhtUjy@Xl@guY4+Jyj!znLs4_F^jR z1N^0u-;9p!JlK2oT$vFG53JA&fG_~(yLcjAMD{lz$U7=|kPcQBU zy)Facbj;zzbN1PC2MyCHKWP9RxBJ9dzu>$a7#`I$n^02NsWqDE&Sxd&8R&YtS=rc& zPw&1`f0?XG74vBGjYv8$K;Uk2tYTzw>*}8RiDy5nhjy%Tb>py{5~2;2({)C1{^r_f&yOsbb z7-5bAnUA-2?-GoU&8>RJ5+F5Vc9|((TuxQ_)jdKxuBxedj=rp|xsUU%`2a`869x@Y zJG|0N1n1tRntP++<>W(xccTSpJ*$0v?tqOiyvF=rEZE%0Tge0((Kikp^#9=C3q)^k`DZd0oZNv@B zQ3kKoUFT8xO*5e+yTb4M^xA+Wn|q9L?6)63$T2Tev;|5GalM>4Ag;pCvp`etOWg9c%VGwm=iYk3yIO6yn2dBh zKcP)K-eB~nyCDtJpv0x%kWR=a>H_M=-{DxeQI$B1<5%81=DY|X(Jn-DblQ0tuTa_2 z^#X4CkQQ^{zc>A#>8eFoYQ(XkVd~eaDPg+tRwRa#adDyhV&H^1J`km!AUDB-c&Phf zqD1G0+Y;R0&)Ib;Uw5$-rzhK8N!eR2V)c&6s7GQ$;d67e$}g%^q6)-d+h9Ag5y1s% ze<;w}n$-7Tv$$rZkCb-@h02w6S18b&w0~!c#x^^2ko@C4dJSD{?^~q^g%^bd^RGV= z9)t6uJ_jqZD@7M1t6T8*8K{~5WWE!BhVQ_%%t{xt1P{~sWM_^I-maU#2ejfDFW@#H zNMF!F-_mk|6-{VVhQ?MQ62malC9s#GQHIX?I6xg}7@>5jU$=LmtZf9!M;35q$aJka zu~v>Q05&rE9nNvGCnr3ll0IOD$)u{4kW7{T9YV}z7i>y{pUFhD9B?Ak;7t%nDX54f z0P;9k;@XlWjp|zFxRjxKX9$CxuD7`z0F+F)x<VLX4bT#(w ze;EzG&c?^uo`~P`^4OfqOmr^S-Oha7 z<9`W-N1$j3j1qzAGaYN*=6=>Xd40?E%X_qpJ3;mZnxm4+`aMJA)gMnKyBv&=hM)i2 z82yJ@rt+c3IwQodvgc75TdR?@Sto`8L-NjN3FLQ^x+;6qAIyy?+%EKYu}vS7{Sl$t zGv}CrGO16@1$9~FR)nX06&tD(CUw1F$ zeC~hITFn*x-hFlBXm}qTF*EBw<9JSyAU<2am^F=XJApx-wDmYZ|F$#I%lGw%l58}x zxuRa>zMXohp||tvS^z!v9jWt<>bAi*3$n-Pi1t@MU(x6n{g(+A5^Sc1j}{ms=Jsdu z9%2)Z|JITu0Zdi{>8sqATN}(2@YFmGHqrDl6?i9XsYR&y#1r4g%GZ0Zk|FcFn;{sn zo4+v7L&3KI%^!0Fp5q<2y`P=nJ^{2uEgS`xI87arNF)ViWOELUVed404*XeQIj-_9 zuh_&mqMQo`Nr3zUWuZ_Vf1XfWoTts@dD0}cB=DTpo$UE^BcxT}g^s~YqD+VQx*r_m zYehBkGqoTQ_|tB%mSlg%5=BEZWBoGp#t*|$o&XkxgF}o2n!a>bnfUnA6M(20>}pmA zpvcQOv{_qlT(&UA)4}@QnV(sB*1^*b`A~|w`4rSjeiBBuZr4J$%{|)rid6?3)fPZF zhB1y6poAq&OlgquJ_ z(z)%YAt&8qn%@KF_2I=uwx0&!`9yU{21+*~`1RuaZ>+Q>fo|^ASfU*f|xo&)G~3FphtADA;%g?i?J# zuagh#p@7!s>qTF-e;nq8s{cBP&Gnt#8!9YZ5sS9T-YGtSSccH1@S0*_!J#%Nx*_w= zvSKWaDJZe1>k_{>UlwMqcX08_GPSJJ7Oy&=*Jiz8z;NqVUV-sJ6Wvi=wJIrGTg`bO z?uM=)aT}+S5Pv|Zku??_^Zvdj0;FsZR(`6s02VskO2nEfi*fIzXErhyBO$>|; z4wnGcp3n13j7hL&30}L=rHncoE(UnILG;Oz44C!sX&n2`lLzNKPt4YQ1ij4SnAwY2 zO$4eJQ2mujpO~u(jWwR&Faw;UZeTV-=1$6x!$94o+w;nBoE>HmvI{=kme2|wLP1gm zGd;BBtir#x%T-6=z;JkMT(i+>xZL0<#Na61pvw-8M1G8NVsZAD4it4Zuf`rcuU7r3 zVBkKbj!I0cT8r*)CF=q;2faV)VyfrdMeXR$rVPi~@)T@Eo=;se>4`#+3*e<;2v5os zGEtoo-ds+MA$@!0;5D$xrHj8z9Rj(8Zvr(TNoG>mpm8@?#+Z`u6|U+^Q%)GmG7c-p z9Vf1Sch-br09pM=lbeaG(S`6>k z=7&|K<9a?VGhUuT(UJKSI5T;8Tw$VWw~CU`bms{2k)nv~Q8Lmub~(r{p)T*O3bI2W zP5344AIyL1sA&%2NIuJ^_E(+~R;(r})=BQlP>!+!EH0XWCgPzTNlwx|8VfYV2YZ7< zxDU?TzxeG5k&GZU1SCZO`>nh$yD4>Bcn=Ij4afwF}>m) z04Ov`tcV02sH$*Okpwp{u-1T#1Al)q6BJ7Aj#3r)V|_qgKcUO;wJ&JrlUuE;P7+SE z)!yB^RQ@uSC@a!$8D}}l2Vl}I#f-nfx)eC7z*Q#;vMpd4SKXVT>lLBvEz;yz`~c7a zSy!~`tC)+RzFGNr@z5!Y6jIjN34guh^zjn7iQsN8`%SVn=Um!NZJY&wXkvQBV|m5n za4j4fss;>7Qrx%-8#LK3PXq{R(iZx!NlKo?0*>HVI(rt63Mop8n+-X-QI|X31W!16 z_6Xfj`43xQ7^a6bjPx-1d|pL*=jp|OjV#ZGi=hgSSM230PdE%%YGk`j>l0cMc{PIGh{uFtgA{gNoD|TIzyP zhPN7;*Y*(j+P~+1IJ<~7U9Q$YDS zKa~D>xU-(oz_5B)T^EB+KW9}$uk5OS(tpBtrjVD8 z^-nAK-weF07=)9*vs9EM&c?eErXL=Dh&={2T+~!lC-~GvBGoCuo&Oqb!8z%4E+&Mw zK{eV!!26)l48t=Jge>vARAtaM9r#CV$V!CYb+qz;H)r5ol0^$0oy1 zijU8m{>i5vB(=p6&(hg%ctixVp|@OckxqJ+h&!~yeWui{=s zl4=CJ(~ABq&YNh72;kx7O4ZJG`*m~F8IpKxr65LEM3~?*p1EWety1Y z8fiakFI6WP=|zv*1evhAj>??^6G#Ra+6=lhVz6LCP+S`j`^2CeeO` zL{3`EW?+qZ$lNl_z>>BeJ13H;Ht$aJx+bLUzl_%%{$Y9<%a zC_dk2L)gHUFt|w%MZ&A^jLv}65D<$34;@bKX3A{vyd0AoqD}3ffQw{b_n2U?rgAEheIWi5X(*v1-E#cXro9SA?00Yn z-e<-=5|-KS#{5ugdqhHj-2zYFw??h}Jk#2t{yEu@@9NMvOUB0XBy0d(gv@|C`TEO? zX-*9S1$FJAPg63QXg~!mzW8y&iL-C@_ihZ7UkVz0o@;k*SMuNGL8ywmoCfo^zyyy0HaY+iZF zvBZ`*FDi#hII3FUf`P%b&?J{!3T?RRBq}BsHdD3Vhw4*lF$|cJifyabKDXwZ6&G3*me7yc(XUg;eGBG)V}W3s&3;`-}yhbh(0L zA9YlQEYAYzR0Ta~wv!NQZoD8tDDz8ch|8gi*jPvW>0)hVo zjP4RAakK2$DqV{OAs&)^I*(*tJn5K6@o3RuSq`FhCjQ<_v)ji$obPl8v&x^WW+qFS z%~b;-uEgm->d)$l)4L$(0aO$5%uwpoMr&+AD$~%4*irDo{Q~KlYUiM3Cklv8UC!mDcUXtFsS^% zV;<=v1X9@&nmkwJDCpD0gfj-w#bV!grL@SKpPekhcs9p0p{n-oQh^R2xT0rQ61c5AO$a1PhqY9 z+KKCXf@r1#)+}|@a>PRbsgg_-vElrsct_wLsG7cXX)Zj?u>7q82WyflStzXF8w=>R zCh^FRpjqsF-j+rA;f?szRJFsA(H6gVts~28sYNcO*d}3}hC{*>IwvHGz+$FWIS+%X z7diNLhUKo(m?k~Jw<>`?^7AN$K~%cF(5RpArrdrm;to+!=?XAWsL)|Q#0}WWEk+t- zIs|}{xL}PTz8fLBAyEWmHbY{R{K+D+)SBI1bB$(Py)K2QCU0LrzW>6l0?KiH>DY)GbBrPD{$Ps4esc*@u5g+~MPwav zm$@-zZO(rI$MtKL=wTKQ%vgUTIlc6LXl^=rPRyVQA(U|-&fN-~tU`DeAt59xN(ne< zt!D2Vm^AnLpG-mor!z6Tn7X1-*_Gnz!D~_5E*qFI!WuKg<98^t#7Kcr`Nuit(jaHh zZdeM1XgsKe7fRtAIW+47##TIBWb)DBPa&hBYVBeL%X5+<7~Z+O4mJgl=*i~B7E-u9 znePYhz!~~R^i6{V)Y*e#oQ?PC@}~U>qCkxOr`M#bf|o?@hI7JEcKlFOrij_4?l~wy zHf9b^FU0`)33CzR({*8J3OqEW>`y1%G%9Gp;fd?`($%Zn<};1&U$^-nUBPRTR~{DE9IVgWtZA{{Z0KZZ z)iNZ?HA2r({n#oyeyl|AwVKzxmP22snjD{UPpyX+=IaHM>tqO)$Vjk;+RkXr`n>1} zY1OpN`oF`!v@uc3%fO8Sax>NyKXLkdzbUG-_iiOjPhCP9Fit- zXpo9swpxDFuC3t^AkQg7J{&^YT-{;oSJOi+VfPaVqI+E*s-tdBg8?Dg#4$(mmB`zML>Q1oPDA?Czvf#0CGBhUYo-t zGa$*YYpOoOqLHg#;~h+ygO`@x{<1Tol2Z*_J*f)E<$>z@FHPC=5oa~{bBpUkC{i7E zUqz)mIJRHv0vg_XQ5V-7+eyyi`%BBE`(&mkWMq*K4fwOG!t7nThpO{#!)t;Mhx7oN zfPLMl1HE7S$Du)o0PYtMZgU^vg**KyKxO&W# z&@ijfDMbY}Rx7#ASlQ*99FJ)8$j)qgTDCV7>jTcz#EzZpmcyoOQWHDPR!&C3TSNl7 zdGytpjeS>~^nKBn`Jv0p8F+$gg~y-h$zt7rx1@g)K_%`z3BPDDhP zWJLNzm$K4BO$-!-yT-6VBJf$5WvvooVV{T;Fc@iZ)t_^7N3W%6JFA+pU83g*9X|%0 zDj+PYxJR{05?$s|?jL@?H2L~0Sc*;v48JMiDbtw6E|7_s{CN9pXQLB{VTrn1Cd||v#^DPu6Qy7iCsn6Lur6Fxl2?t%cJ|}du2Gnt$&ARFO zM`uR%_2_t;S`Q94n`}20OSKKZ>{u%~{9~dmh%7e{ch+=3iSuQaCK)@#c*I8>IpPEx z-~NJ!`hd|@U3wSwFJ1FJ`WeT++u{1B7gJ5fakYYTklO&)_nfFGIm@F`R;X{ z&b;msT_~C+3wEIP%0L-dLZm|y>lUtn>9 zK}b(2>MA{&1Ski-45|IBMNKxXsd?O^()NM&mbQ4wAV{gzNonMSS&8{t6ql|U7iVpT zDLZYbfLH_^-UaTMrZk&?*SfK^8&(@Cxv_v^#0vzD!6^lq5Tdx3ygWab-T8g}Ov4Ii zGg}Tt`1t|93U_|VRx$1gO^s&;+#>Ny!=EGx&pe*Jrus%+{1(`O=pBl>`>TaxSQ$BscjjK6T^ELu_^%Nwt~2 zDO3Q~M{&Sux~k+Mu!2NAao&H)w4)Nkf)smxJxQllnN%0l2Ewj}^GI~Ne=(H}MkX2; zALVGny?g?@9|pBS0E!%xHK_5&fV={@#Y+yYQv>sjH@C3Lqj}>e`As%ExFGdhn$^<^ zIe)gRPt{a*-%&q3KL;=*$~E})x^!o<%W1{zay%E>1M&^(&vsY0M#R%A&>5%Qv&?jh z&p`AmP}CqDhqM@6Ak2xkpYM-=WCTC@b`L?)j{H6r;@+NBI4xA^_0zj`sA8qL16^AGwv)PdXn?ACeb^-%@@81Ef(I#K$ReUx+ zik7jjSy=#yd)>GW-?8z|*SJG)GN{J;L3G&ul39_F>#)s9uhH^B1Ea>sq;M{9P;~X0 z7MP7^`>O|i8B;n9r^DG53mP~gvAe|qB`U^=bLk6VcqPWC*nY*QSibGZ^83~VET-0D z41)+y6jscyO$d~vx*<-!)LM6UCWv9-GDIZ=V$q5k>zqsCm>5dkWR*(PlTFLddAC_M zZpq-ry|gj*JRaSp4U(ny#NLj!k{9l$)8j=}zC%s{VL6+BnYvB~r<3aM%X6NFK>P2{ zO`+a!X_@e9CccBgc_#eaAB9og_SvOv8~Q(5r6{x@DtemhAe6h|a>0i+Ew()@x1~{9 ze@e+{F2#v%`oi3AQ;=TYu2GB7&^GXa15Rt1FJ5)gl(&mvkwF6^do;w+7@L?jOxKrm z%$n-D*9~J|Hhtj=R-LpltfdqT7k(`w?l=JiOA2S_B*fAD3!q(W3cwbnOV~`mdSqym zSz@`MdsL+TKB{z}T{_&`$be=M-|gWqnc)z1L%)z^Ef!Y|#{|6cMxKb4CGoN7ONIh9 z(d;#u;^uECT{JIXvqDS}_t6itB|*-0^v9zo5L?2`v@X*=rb6_WE@M~Hn)(Y+l~Xd# z&6-5!SVLDXwID2?4Kx9vb3x`=_P3-55Dyi668#XH@jgqa=f{kGs!1x|lUeJU5-e)Y z1c8}MFk-WHnWNhl$3Sx9i~yCIJ14#VAk6cwDiTak6_cdatDXmB)z(>hR%z|i)JQ>U zN-QwVfZ%&LQO|Te(J^1c%TU3v#GXJh@ZujbDN*sc!JeNr#HQ3@1<&4@#6%l2RpK}M z2Wq@lE4v^?mXCnC-7$zhkywUg=^YBRPd5C*ag z$AAYI>nl`t;_5~x_-Rj*kNbTXtlo>}nn0x-nVj>q#}3o5ke!9S=+7~zM7%+`a%c7M zI*qv+8s&&Vxr73Vc=>F{rV%pb;;!=Y()22?Tq@Hb5m9!*k*vpH*=5&4-N>d4q4&2n z)PQ2_8}>5g7J2d8vj?c`0iuI=#CagKc#l05Q4$~h1gIo?IQ+`@kexlL-`8qGGhn=>D0{ocf2N4Du35L8k_WE?!fR(dxk%Q9Sr_%u3w>! z`_0p0H6lMy2U^(Soe=uY90#RqiBZDx;|79MrqgUNxRt4j*YM_`LqNEy`HrDR6yy?0 ziX`SYT1hihVmY&Pe{G?I^K*OUYXOJB7Ung^4m%NWJetVis%hFuk*V2BeddD*(vX6* zCNVxDj8T~mrNe3~|J&Fe%t*=DXLgWP%hkfQ@l~;wWI6<~$}CkL+{U;UY@BM1Aa(u8 z>j@2y#`HU|2M+03T^3X?h?dH|MrV3d0DNQX92LK_0PjrsOXs%l+iJ|YRR}Nh{AhHN z{>%hRpdYPjfKUI|&NJT!G{Ph!)F$j3N!(Ft=4=l-qD-GT%8)BEKo&afSR*JD>bP)d zXu%Jgz5>MUDbj_ulbT=nE*spN`|eha0xGBOA-94K-V)->1(Y-p42a}abP;#}&k-P8 zi8sM3-FrquT^jW;E2A2tr-dttUV~Eoz&;y9L8R}yqa4wHuT!K)U-A0bCW5ufrS#`$ zG2SvBvLphFH^YBH8)d6jFw+ zl3I92g}AY^dgsw4bD>gQ9RV9w7yI(_P)j-^fCBsSf_OoXlCUuh0s3{uhx)UR zZdp_>alMx8!gY7Dh$bXN<@nrdfWk2RB3|qy_fLYL=|G%=1oqiVoHL1jwiA>V!DBK4dKwCi=rI~u2mcmo#lv8q36j6h;e{>6qz#+ z9YyBD0*b-tA6rHw0y zx^5jG==7ouGv48WNQmRe=f8Wb2fR1kHWhI`$UlK31gl7hHGVv;^R)qe zuiYi=6&;B`|2i%U$z+2&(&dRM!RhN%TtVm5%*H+Zb%1B61PpH5}f>ZGV4p+g%6#jM!BZU%$d?(3t zr-;R(m9Wbn*(1gm2R0Y-3ITyGx?ECjDoSQ*VY=LtJ|^-q{9-}Mh$aeAgEm&qu?z*q3-6CzRus_vra0&_%pzP&VFqU`_(d=E}d9MorQLH;~a}Y z1&b{f(kM?d8%+Hv!XiUdhY{c*Z_!-_E@0^x6s0g$ks-k_pZ~TSy0}Ic?XW@_Gd^bD z{_4i?^FfXNZ}*j(8vN7%J$3t^-G}+7*Wq#hbq!Jfz59+1On|jAGO)I$|6l7A7x=Gr z`acsu8uMRUAo~w3{Hvk=zqN<(`&XM688UWzY)GM3;IH`ZRk`&ZEva~5vw`njgKEsgQB6Wt?g+qAdt{qG*7nrX z*^@-?u$@68dHfTGccn+E0R@l^JqVK)fxqJ)6AT6;e(Rds_EQVd|4=AZ8qXux7?ar= zONJ{`zOx>(n|%pS>exRDo#Jy)nn0@C@q-h6FY)tq-0bbZbfmt3Bx^>@Lv6gpYqJPU z1!vNCBh#wjINr{RhRB{2$WE_48|SGwDQQ80X@7L5b9Ur_R_QXO{D@-Wt(|p|gbWdM zF!QFZvXm@;xgtaHDV|h+hf!ojcRYD~n+Y9gYxw>P`z)Ff)M^{W)7BZNd~U3lfoCh94Y6LqnjgeJVTHBdY=J&v^oV+Wh3^IHaMs zy4qyfossJyhvj7v!)#|G3>5keMiRu{XhYKXO|(`{l}YSEfkhRI0t(FcEGlzN30uoa zvIyzK4==(B&G;kdbsI_!^}cve^H(k|&a7IJy-}&^wpAV8?OX7^QQ~$X%8gs_bY<{n zHP!8dI^RPg^Mb7Rpldxyn?X)Z$+!KZmf{YOH`r5s?hP}r2tG4>qy{hL^Qib$a{iJl zkXYj|s-BwS>7SIGJ<~}SUUH82z`zNUyP%v=h{rUS-w4KNF6T5hiR+#*nV~aW+$cL{ zab@TK9G(ktwj5t7GAx+=M&a~1<*6@sq_^;(k25AyN_ryBnA{ZtAxR$&b4JHkRL^?d z+8HRo(}{(sdb^WNE$F5N6Q<@LmdVAVzd3Q*C*|`gfa~9Y%gzj!qI?{pV26`{*QAU4 z6s?+-@Dmd)4T?X$EG92`G6p7N4j>?`Z4?a)b$N1gt7E>4iyI@q$UANtRMKp)1K<}Zlw1ilaa;~&tA=>yKz z9ykC_Pj&APf3{CKG@&;GvULdLp3q+4zs5w|(09KS6bR@W(Z6irzl@1Q`hPVA-~WR{ z`2SdyzaHSP`TNgSh4KH@6u`6mW2ydc2Il|eT!0vb!mWhGgBvRmL1lL^k&(en0-bSz z3{hA}rR5!fAt1{4-?h7k0t2&@yR(LN6XtgplahuKln?y%%hqA}s|NZABIVW8Gt`sP z)DqHD$B`D2P$3ofTkom~!|4`(Fw`+Lu*tA8Gs!VCG(JvA(~Z+l%TY&^Gceg#i_1>c zoBo|kNT_#9v$X<%asID<=D!J5A5Bt9?_l4R<%-*kWAA#PIrEY8* z?9-Xw>2U{{$MntWA#Rx{TvJDp-v;hQke^m=D={J$t_KR)v?9a&kMwg#-~Z;w_wS4MkAM*XRrEMIVIu9lqD)r zW#}b&hQzsHH?8IId^y5JNs0k~QD&^<;c{#5q2@7XL5CQ{l9TmyAc}c(z(*?gJ$~F%+cfr z#eZSglVAs+e&JQ{XRW=9%eQJHp_)(ceQb5daO0aBp1sJ!|0F4AV}1~q$jCrD$`?Q% zA?05@z#M+%6N7%^3kXQT?4oXSO#$*FR4w1Wu22virHPA&3) zgp{7cr|BVr=TNe*bkp_w!@li8v#3h7ci?dYmZY7Gyh`38&h~>L>BS=E0Hb3LQgwO2%=z@L-Cn!M$NY_xx1-XA}_Gyw&A z^p|RXyNW%eV8&xF?e!+cei&~xq-Co8pvrp>rm#z1PmtKHN%*q@ zIgr(qm5ZxgD9|d00cUr)L10r`Pw+TZJ2eB*De9iG)Wq$isKi{2c0kimEi23uBh!AF zD{)8TgRxE5?25Wx*fiF6Q-_7&lK`F#D-dz+D4*Kxzf}k))I13CO_eaq)FL$#qOJF9 ztjpKsE?Fm~a7~q?G9zrr(IYr}H6s@(i*y>=RfDxftzQkyMd0omVIW-Rone(=EC*z2 zwup-S0tg_d-|!(a4AtR5yJprI9Xt9nFXsxYE+%F%Ejddo7%$lJD{_=q+&fH<#h4VD z>zYO_2n8gl(m@?FKhh+6QB5214>cE%M#qoN99-_Uj!8(mthkR{h*NKEj#(76p*)$@ z;089TYI?F7(5hn2AD(0krDSukps#b{5Vl5zrNf%}9rnrbb649%IIfk}jXOn6;v`2E?1k;&$}_&uU-9SS|uc?~cVgOT3_P4%08fci}#bk7iS zH(i2vFZ2*QQWkdEn!cn>z-_JQMJj*6DSd}HtuqlCB@P}w3VoV1rOWwf%mJ&@HeX#K z%DH&6@ow!w=?3cOJ3lwIgR^wfr4o-el@l5Occ$?<*IJ3FLn;d;LtMw2O3rXeo81Hp zhkOKDQ2}JXFQ&}-9E8YIy^Vv#bWXz%?PjNqV=MMO+vhW~QYf>l2=eu>KN0e+P4~(n zK5%Tvf$ItARsXGe~(W7yVv+nA=>};$p71o z{$~gBAH66e1H(9w1wrl{qBt|V$18^@d*>?y6vGZs3?ZQa61w^bBteXj(f}M9WCr1X z4%k>hh0Pfm$_N$@N>WHbmPj;*&E7iPQ;H5l(M!=oNJ=n*mOz)7$`}~Ji54+Z$k0g- zlZ_9HnWXI`K{`#YA_U_&LyH2lCU=oRgTQg+H!!i{szgAt{w>Nw7fpfq&r#kPLMy>K z!28Mq|NA`t_b3nhzk6SM!0yB1pQ!GC2DSel)eY;cxo)(j_*~ghRvl25@6V+>QOj=D zD=j_sm?MWphYE6AQ0I9@_BrD{S&+4r|0*+ceujk z`{Cj7_V9M}^=f>uBsQn+R64&bL$<=>$CUm)L9$zFX~UOZM5a`p{#E~Z9Ls0x_xbv) zr*|*I$y(C&*qbB$d(8QeFGKoMb=gActRqdj>UGPal1inuMrS@|ExQWVDA~%1n!1_6 zl`UO)on!qYc8dN>-Djv&s<@b#M02@3OFE+`Ue(m}g#Mv{W=haIq2s)2fOIA~Ipo#o zsPoUd67><&1)OV(G1F3kE@jRDeTe?W zkzJv^s?q62H0dn0y;4woBoc-MFXNJ-XY0(lIb|v1w9sDCN@qV+qTsSXZ{cjR6;)%A zgy!@WbTP60kuak?(XQy?A=XQmY-6%x{3pKs%rYZ21z|Bmc_-It;Rb7t&O88@yCQd? zVo~a6y|!KScZV7qDOka!yX)cKm5QXNpAQ==b{0*EC47jRes&!#Qi~+igOI&d2hv}p ztUsUDHu%UBbJ;PcGMb0D+)IXZgvFc7tDG$~kuwmS?BBNf3+X3BaCqO}_gPTDa}tu9 zsZFeCrv8{5&)+F_gtK1aXUI!wuof3k+m=lIJ_s@)KAzwcS?b(AXhT{Gu|AfEhmO#l z7A7(yR4KUAR!&eQuavD%~rns+!A*Q(q>JuZIsvft82r1SKIuQCXAudDvePo9)_JktnZMhi?ZDQ>pl^ ziDTbS3X5l150h7Yoi^d8oJHhJnNBQaPKmQ=EOh2ViDlS6y%AuVSe9hX726Xfs-0*R zH8dx|H3q%KB^J_00ukJJl|G1ATfUub!+yRzGlFf^(~7$tV7OKGV(+2n#NsRKWVVxC zu)k%4k;z&~JWV@e5kgR%>{kWx7s+u=-th>fEzCJJqC(TMD5C9wYS0wz9qm*TFshg& zQetEs`(6!UzV?la?*CF9k%=jYhs~IHcaw&Y!eIPuY*hC9F}>lWN$Lb4&+|#kIL#oD zYlHOTxX<|kwRKhCsIvM8WLU^@Wrd5{_foFy%=x~^d)2ep_ef1j_)^z9Yv}a-3`tpHZH#kyJyr>QphOq?vIIUk~uVT z5~0TKLMPWY*_pysMl)!WEQq34+ilI%-{@u(^Qkx)vFJ&RvXDvEPJIm1m*p#lRuRR; z6BPsw_Vk0o3yD)upmwj!c*(krJ>V;q=JBs1iR+s5-J zEn)jhEL{UEvEGG~k1S04%}vjm%f@Z$3#_uUgvuvFP4rC_$*Z{c0Y^jR@42~_bZ0+U zxED%TltwtArnD2w7Vg4TgO+d20 z*7X}ruZ`F`%GRb|jX{G^=gN{+rHiM*5n+!gcj1G+``eTyd23S%36ao@TgdYHCO;e- z;l-zSh3DFoDs;h(u461)vW*N$BiYfYFI3VUa9U%p_r0kqns@K5%v)u@e3(p1HK(-^ z9%MS3fbw%fV17=!L_om&Bx|<47nz2r%|t^JTrI3_BcAiWXeDE{{ZyJ%p>0=pBxqab zlB~p(7IED*ackE9_&6>3_sv&v`|GonWaED5YmywD4V?8_LwZH5t2~#ic4l-^UBLns zseT~RTw9UIRPA(X3{A|N|NeGal090*M1lJBH;2|> z2DJTS+4i(hf*%aT4k6GHTik4mxvs`nD;Wv=eT3^=XXhsuCp1So+sk@lGGjigEun-p2=t=Rf@o9K&tfrzP$Q&oDi$3N~be&wl>-5WZRQ} zK`-=SJK`8)&JKpl=*?wHX6Z?$UPF+zQ0UJN!KHSwv2D2lHf_F%WSfC47NqLX>6Cx zdYZ;1%~Y>zR}L;8sBBqgSUjhh-fuOpqf4g;o)I0}G`KOcj#E>16}PPh3m3xWf{~vB-Q>tQPh^M+JLaA*rE9Z{cqQcWaW*r76jpQaBn*mOTe_ zElonJ=2|UAk7vkPfelM{jh9JG&~Y_`tadbJh(JUbmwA&xuF=bQWPmk}rJp#_oF90K zHLc(hPl7iD*?o?!scj!tHKpkxTCy&M2-}%-iA<+$R~O_d;AL%DrE34vag9nvQwU3+ zxL4xrOq`#LUZa(nnhDo%B%U5QXOFh8&(Bs?`{#e|T$?qdJG9w^hjcxs;Wzl@bCt29 z%W0FML2Q*@4re7CIWRPbb6p%Kamk97w4mW<^1N+KDp+TcxF;`l|ICHJorEOr4Xve$ zj`)u(OYt#qA48TcVxl&Z-mucdtDtEzBMldFudGt{s^}tuF>r@c_!d6pGi*LnRXCWv zHLuM{>aCNAC4AfyP5VUIq|5q^0ynPJFJLFqLZ$^Q0W>oI24_1QUZ9<|SzmBy%*zf7k0uwV95l?Dy~)S1@WlZhd#~5u{m<4$ZSH~`1zrY zvPb&0MK;3H4p)Tla|ZsNbu6=av=q-d6{krz@|TcO;#J}95VZd9nN;;A?q(k!b|0* ztFr+w=VV)(!mT&3AVbE%<@F6sxvVQO5}_HI$z?T}yhkKY+&L#@!hn+wAvk6 zqB0`HLTaxyu*AM%46Z{SA&I-p0=u+|bH?1o-GX!x?bdS=(UK)gM0Xy=9HF=CV=7lU(+bVH}aAcuF31bnVbqiV2%_&7Xc55>zLfLSm zoz!tRRqEP8)h|d0nyNssAapY?gK(Ovr6EZ@nXESgen}y#Bkz&D#2isc`i4`#s-A0W zYL32qMlXX!mdBgZ2~A~0#4_jJt2T zWiZO&iupUUqxS-yEad3_-k)5C$L z6*|qfeVtfnD!>J0l7zHIXG=1^&W}?YD0#3lHvoYm;@kiq)OPj$#TBI}zJ9piG*3n^ z0vOa%Lk0PuTL>T8H~hsDZ)I@l>1OCiNHi!qr)6WznEk60$TG+Z2dkZIO((`PAXC$v zoztaFJ9ZXnO6&(*$K)-^=(b8rO&aG8V27L$8{1(3=sv_#b*uIisi+f@1_^RZ;WT1T z^P)<_YvreIyM#;}ay6B$RXYNiZw>zWn0%b%$IHLJ-h71AMjcELE+rsb z@Mt1}6OtY|!$w^_gw>vgl;JEH383LX!u>8K9QmHnG8nLv7+BcblM~v{3pK&|yESY5 z6&YqeDkG)I;&!frs#VL?vEt-Gyu4Q^;b_#ow*VB|(FYHG-4~UQ8w8Q)vr?(4tSUS> zJV5yv)_ROm{e3}tZcdJ>U~zId-4$0EGOxK5WEeD2nxdeGk&ruH?hoA1?&&yYzErv< zolL8_m{~as`b^}$n8XLif=)I0VGLUsUiW6xfrVnj+hG7^>djWddOXb3$vQ{Gp>IV( z7KjV3HY2-sdgirM_{uHWj8jRA7=DQ<|0( z<8e1MCH3HR29q2TR93(D&)&Rh1<&2liTampzepA-U+5YCa}~Jo|2g`S%Z|aFP8S@7 zZq!l?+lOUN8&kuY=>p<58^*)G-IGrvf5!+ip_EI>0dKk7LfU@Ey~;?lK`X3Y$Km=S zSZ=&9C1M0Lo&1JaJdR;)yB4u?u2y7Ua79N3cr_WAk0MyrQqVrB6I**c*go}+!p6!0 z3UaDpdjYMt*}7{ahm;Ey5v%|9o?N~(g<+WjKy8JiJ8BMu156sBQ=G0k`UwuZwRt$7 zvdZ4LxaUI-*z|Frps!+b?A7k&u|X zY$6i?1sUTt$*rj-el{Jvp1F%DUSA9qd5ebeBThZasFJl(k*Gj;nqT&0SBu&?;WFfo z*IWDS9z)(0U4kgpc-Sc|4Zs-?3iEDV0K?__BM}-Cjmbhj_!7W6)J|S?D=$>H#ycVj)&vKpO0K@nNzcayc8fu)lTx$baO` z^<;93x?7Fx49Qt?YoTDo|m1b!DuC%iwTzo zuQJFF0IfSi>qDWn)BIqz--(TE7hHhQgb*t+;L)}baAs*~aiI--TR@#W3U@3H#mNR= z0XAL`J*Wl1(h)Cd*2B%vzAcKFXGf0>E#F46tLCd(cDR#N45fd9+NesXWldmx|!y5f{nA2(>M6@c5?b+rqO$e z(j9mn?SKiqm6g1;ayNx^(1!{xWz0n=TDc%0k)j}Cip&YE5%8vjftvRb!Gu!IXnLV6 zXKVAh4?a_Mtz9LTcZ^n_I}Vv;2Ejo=2Cfk-KlaxaJO#@#&|qM7v@!{oEkz_cq ztP5Z!-h*}LMS_cotTQQ@aKNh66t%t&2eP|b(Sj8IKee=GeTHD1 z)M^3mg;%~t0%wq?f(`>^xBJq3r8Uv_t&mZ;TWi2^4XlOvH4n{zk$!3*| zc%~hYAb+C`Ie@7d9;Zk($6^D={>1x!Fzv@EIyf?efd1rVvEE#l9X~sDVHUDyQlcL4 z7Pp8o?RnP-110Mx*_^SHcVySC%=Tvvyh%7-)zd@<_~}5Ib5N_JzyKwXB<*LomR#{7 z<^n5(-0#M7^;sqj`pdQW zQ=IJh)U7LK*#^-^?ta~N!I+}odtJDEF@OM%k&j7dXNq;&LRz)u2*cGDoWKY>MUYhV zw~CRIBpj1WYWAhHa0A>~%tPL`)CN(7piMb7rXq3J0Z|y#q2^12_FaBTkxht;)oe1Ph1~-%yiAzX#}2ywipF zAcHKOD{mpqYEPNS4#S55n&-rOQ`cOYB(8l>akbOx;~~~~Mrz_>ps0f_E|^X{Y;6)@LWDXEa)8*PnE$Zl-c~XlX}*J;lSF z9)$#GK~$!80QHHj?Ff9%BI|5|1T5+qbgEW9InWnjPoDNXk0NSGG?}XjJgtTVlk;ex zknjepTNV+`D(bF9KxOs1rQBqqA7-Q<1munDW~x3tJ4awZ*P_TCRvDtAyCAcPqzO;Q z-MF({>PlsbnG#d;d%x1xqEKW={vJnU?_nlPnod9X3~#q*mN$S?YZjTV_vGBV{vHM; z;w?~_QDsZPm|mlEJ)kU5#LDObPB8$0rAJ63Ft2K-Ccah`=Nxz8I(2dJYF&sa7s`?C zvL*#N#%+*R<5n|73pZRMA=~`}+|e1x0^6ry%C#0sY<5>fsvIg|4+~XQ2rEzlQR=qv9Dy z*tZcH_9!M2-NYykFc^8QwAtD%{kDxhV|%rI+@N5{J(hD2)7VNW4qvT7eCbFc(5gZ$ zCx>xpKS)*;O8lT{cr(nxGKX|w8a@2w%Q-;w7|9&JswF8~$#{a*#@Jz#QU(A@{)kJO z3vBaGCO62HelnIU-Z7_}omnQP8Xb{))dJI{8ZeZNQh)_%W91zToB!{E&I0;UK+@e* zWJZOo+(xN|Qa*tlfjN`+_x&yBr>!YEMZ#E#RTbk)1f(-LPpy7?ie-NJ;oS>FTNQ~X zq>Yt5h0Zawq(bob7}4QLJDO4Mj>BuvO_gorD$~zz_Q;1_iQu}5)3qkgOIiSxtJ(vA zzgRkw%ihW_dPe5|Wb(1nWV@{1h2qoD!7W)(0JwPm)?=nDnCBd*d{KsvB90LtC{`hG zww?|}FcbEHn!m16mmTot{(zrGC^d`Z^3)-{fS5`w;|08{HAj;Y1AXDuvbhF$Cw;xl@1UVS_`O2+MhIEL2mZu zH%pb0!6K%=*Cag=Fa&wSwGUzu&YPPx~>j#Cz zX=n9Fbxwbffw}7GfCS&0osgfC#wG$i1%K?4xB5<`-(o`ThD=-i6#-*lt0jfaM zfsrA>OfIC43K-b?wK9A8!OT-43ud@UWd;O>V$RD_Zgl;Fct)z*-g8)6m4l^gAf|f| zAAEzubGscisI}3rrx*qhjTZzL|WzZ)sGM2iZn_p-b+gY z^FZ1(SmR8h5*1Iwbof6EbO1FAgLNtZdggbJ;NQL>9(kFWTJA0hxMMSeXw?+qrkV`1 z$NfKk`UNF!xc|q8ce_r;T?#=yHM9=dn`+C8s0IZ-6Z3?27JO`kpA+N+hR&GH-$tI1M{I{v}Mc&wC9-|RfE_mb2eEv~oc zU<@KP!R`FONgkymI{zX5iqJEdx4L}r_;dPKs7R%G67x?ghFFh-|` z6FW`M8Po{f933@6hXFMgF&VXA9-Me>7Rq8hU;c9=-g~l&cdG$75U=)WtO!xmSrYHE z_N2HTy-&aTEr&8DvCe30pDI%#pCWrb>zq(oBX)m)(tqx3gAC(x_&a2+tC&7j&tm#S zx(ELrR+y=@G*00OtPA~9@Nw|2uX1&kq-W=eJbRm-Nu`okuM&0o>f+U#{Po4f`Pu7> zEIF5F-1gz&?_**xs#WFSvwhR=tXc%_fR2xlRYdrfEKBm>lwUxu){PU~#ZFXB2;VeC zxOT&Ka2$NEwet(Mq!U#Ir7aoeF&c8D3)@^f^1Sw&3~)y#cjHz!@s{FJ zr#bhZIxKbu{P!`VqX02ecg?fh#3!Jbz5vjb4fIeC$#}PAIR{Mmf22fEu3YXf96a0r zk_L~K`b_tr)?K&>(jK9eDN9u)IwE{~XWSG}B;~uSATU}AbPE*Yl||7BR)nI?UcGrs zl42T4qD1=4U({0BcM3S3tM6ZLZYP&tpZ(C`8}?-I!!F7cnK~Kk4^Qf_Zv;FP5%}3a zP*-Z3in>LotbQjTe%AtXl z%|N|z$ibg+>p^e}Y>0!<=c7v`uYdkN6jywPbzI~k*+gc@-oZoJknA1JVMHseLi0hI z0Dg1-x*eQB@9LK2_!>58Dl5V5sQ_T+w;{tQx&zEp^R7(z4<-U>BaXi1L0p;4adPs@ z$D6+%Lytx%t83E$58`ot+&2V*J_rj$cS`P97ryzVM`Oz&=g{mg#$vUF2Y-MdUMbX` zx26#e(43tQ#wP$7`eZ*g>FbLFlkfk{dtgP z$-m!oEu=oB{Y}z^xiAlP=)9Mw$5P9;E|At)K^o2pCaEnq< z8XHxHTU~y5M&FOi`UB>}$8T#NH+@X!@r(k{8%dfUX`gkl>1CohWK)prEu`eu5M+v& z7l>-g42tT`bhZXTceu*lc64*47`iGS!-IST<>jWd|0tRsXd)}Z&!7Go2ot(Yi zRXtZlan%)tMj}IYcBFf<&m;OC%7LyLu4~Y7TXM7G^>z?89KCRIn%$@!P~WdYrH>BC zm=&7vm~5cd<_`R-6V8sQd5OSHY9^MAj+c8c7sx^4J%OA&WTM;?GcK1+iJjcjh9 zYo_p+aS*zKU2yR+jB!Zgb>*=g+^?s)Osobx%WCvQZ%wc{?R`|F z1TBmLc=g255EY6#l^iX;L%Y;pS zEXvOk9p2Ds8{S3F5x3B|-gvC^aa_!@MDeLmq(7OkXL!Gl{#JEj_;z@COagpt-v5|V zrj^_V8e-r9-_7tIA^l|2WZE9NJbo{vgJFf1PNc4DZgl_16-cL|QVOkp9`5Ct7f;36 zP~0qGORruAYHs`@j;8&JB&WE7W+pLrBj1_O6kV56qLB_aIXPwkp46}$&hKt+ZB>)i zE*5G(BlzJ!Y-Wm977gMn&Ep^oCg}Qmfq$nb;?IXwQzGYn$4fFQ?!Y=_YR^)=dV}N; z&Hn7@3jaqeBHP!e5v6PCDHt>GMQ;Zcxqkhwa$>W^BzK{?@C-s}2jEla_>VfJ?RjEK z@sf~jAQIc^nO6EXfi4$jFz=>&FZw#}L|Bok-F^zG2Jo z=6GO2sKxHKQX6VlX`-I*R%APa02o(?6;pk-uUXx1xvSNZscc&(QJw${AQzN{(qnOO zjwjZbtwO@XbsyIV$?8hYkZaIc*>bRK`wD3$66A>4Rl&25f9~|AM@P8c!DLzR8E1LU= z{M5A68Mc8SND(B5$vYP{#ilfL29bu==l)eNNY7ymb)>|utXwiAMxIgrzLdyhSU>*-!D(^NIB ztWza!al+eAajkeBym?;sk?zhkbk+F;%z1x;sM4X5LHI8++54t0$$=^%&a2g}cizOO z596UBCPrrGWxX|a&;{vuvv6Yh`T{BDV!T!S{_xkH;|@`<^V4yj50xQF&?J4!`#-Mc z+D*%uB(%J}o&Og-h`+Q&Xa}+xGAS4mqa9a-_z~zCQhEUJNg6ZP7&J^#%A2;~#-64% z9{YRD3f#&Okcu%>`BMfiDRVh{npt*1JQ zNcYk7rD5(!eB@+~SmV=MlNF84;qivM9%J_0bd|*Qa~u_Y%briUlW|aVF`4|jdB>f3 zpLx8bWZ*aVz+Dj;t$3-HV)*vOBIz`zMI$v?pEyurOi1@U5B11HE@slUTOf3JASq&u zY1jl<_56;B;UkAvu25#_CIrzqw%T6=^&ZTK`ZmtHIZ=e;EC&~uHhG}iC-F=NzsqI<%_m2iu{=T1H+t!~lxn@Pw|s=#rEI#WjQ6*aMZr!> zTNM$ozZI4(7+tY))~-~S7~YL}Oc4hisGE_urTbRMer1zPwW~rWvSCR8`HI_Ij!;BI z4G5TBXG()btmuN>O4c!s0z5o$(Xm|Wxe?Bk9md6>r3}4KTOA7Ok2Jx0 zcsT!-Y>>LmR?#f{kUu_sEl%FVD^vf1?Y_f3v-Sssoxe6sTDe=?rIVKbaT+wkW`=w_wv(vC&ilq;MW zJL@8DpehqzOdixTa;{1-vt2W^75LpUJ)Te*x6RmMLq2%IXYfh6DSc^b!`*?n5!aXx zKwtjp<1gbb1!}<=eOkXcK?7Ox$0AdE1J9!ui6MiJPRewhARwXv>PG4fyoB?e313!f zLUp$?B9d?nif$-L_XNMl*Hp&a+iKi_*;2D!wV^6?-(B@u4yh!?!^l?T@4yGdpg&RC! zU5W&oZo6l#0WT|{hsO3R8pmBP4a_H3|9B#vYO!~OuVnh;W<2bQ_7|DK;&1gG$fU2n zieGhzts*jehZcD`Iq-BDcT?RUi2xGU6+1vhf^R>Fw~#G^4i2taGMTdl3xFQv0Rs)> z!RwAGt!XtbIfqw4>U66DYNwtU6xpj_=z%%Q!FjGfHsOwbpW^TUk_;g(;(GyU9NH2k#dm1+n(_FSg$UTcSuAwD4Kr;kvto*3Z;_w?EVhVuT+`4 zyuLg=IeVFjeU~X`nD>?BS1JYl9)*Re?Vi!4-j?LWNaRXg)1QaD*dfCm_AhBR&m7iS zS;R?P4w)02&BW(F$HBo}8W!$E;!|5D~AKUvp|+mP4fnn4a+p~1DZ zw;m_6Q@NcX^n^WqCv0g4Kn?i-dk7eYFE8%4wvLanRy}z%jQO!Mwn0aUenhBjzetp? zw$g7xHF?s;$R}GF%!IQN<-ucfJ6eR)itM0F>KY6MfC3&zPJot!;F&;>l}w=hQ)86{ zbhR93tK6p3@k}FP_$ajAmdApsZ(08a6hyXP_c!FR#hBxu zr$GPhECu~?1}?V=*_XQArLA!1$T-#MRQO2YI#>0uP1`(o+);&2Vno>ImfFCui16zQ zK$)#UzbX!6o@aaTh!rDJgpYF${iRMX^3z>{_GyhCl=rR@tUZT8 zLb47u7c=1+i+C4O7WE-c$AL;^yafo9j1sM`6l3BXj|sgy+k4F4(qE)HQ@oMN{J_kp zB|L9(A%i@m&j>IzV0k0Q7x1qCZ(7NZDRhNSXMnHDn@xE4Mi=!rJlHN&t3-k~l9}xt z#MNhuAT3L-!Um(q5q8$s+uOg9v2WY?D!{Dw>(i&OUUg+_m6kZt9fCo-2COz>*onjR z7r;7WSM0gjV8328Wmk}g`Qj~Se#%UnhSm#!cn{v}zx{}0SFduKeCZV4OQN9y-T(l{z{`bvIL@AidmR6|Q=@xT}4H8xLA_pG73qGxFmc zdK2nLq|(56oy}D$&{KiU7QlI4#)*Ft+ZC|(V6qG!_R@06+UW%nIGHW#d$M}%NVCN! zBu+o0NLZ)t`~$f~{Wn_srMl_s$C@@lT&?ahIi-si6KhkM_ zhc0OIixpeY>Hk6NG8lS}nZsHZndyM^0GS-7m*uqFXg>8RiZv;_s)O=SC7m%yyEY_R z$ax?34n5D0?|)p0t3E}}2S=qca03Cc>Ld^h z$e6;nq<z7QvSgPJ#EU???N z-b56oUia4@K1GDpNYJQiR;qdHU~iL9EgM#-`=stv)8+Ym)VKy+HYGSDw_4b*KH7_( zKHNC8?DTz0myI;LnmrPLi52)>UdmMgH^R2RBKfOSZ=E7KZ4@7bb4CifxFImacjzfLR);yl* z+N|I-elOv7;zoloWu}8oR{RIzV z2{zH+p~w|6I@L}UtobFpfH3>a`WKU-d&@Bk(soIP&}f?Hx(P+_2Fifr3dE17jaXCO z9LHJFJ3YG=Hz<;Z5BdK4`-SPDQzV&HN3;FF^S`+7NExSgNcUOBxf`D>} za<(JONV_KUrX%RWU|zyw-7(w#r)N8lgwD60Hz8u1@U>|YW(iPu!-nuN@VIU{cc&NJ z{CrA}XtuvK`N570vAhpMjn`i0hr3E9s$Z{j_glBjuD4ypNml3{>a^!^gt$~6i}FZk zQyPPX^bA)dbnn%pwAV42sk$r+1TH$)qV>l9N{e-r>)>;-iCn%polHJl-iAa-#${(m zQq3kdgQWqxFB2n;w-2K2Ryp^r@)BQ<2t2Di%R|706?@jP#jC<<5BHxU?lfcaQqlt{sTa4qkoYF2a}ouTS(0 z-`!5$^^?DD_xoL3$`kA`Q7oiyNIwJ?P%#LjDlS~Int0@zb`e|!ka#DPo1wwcw|77P z9m9ZdRC^qhmwNJ%6(?bVfM(!)&mkftqaxQev(lq;kt|2>d8mupmq=o5|0||hG!U5gH&}x%KZpR!$o0_-hy5tV6tg5mywwVGO zVL`f&VC$w*B-}ZE`1!-11mW;b&5O0a=S}SmW!k|LM#5vicV+pvSzeo_1NjU$mS8anBZ2ff7vDL>?gE@gVjXLQkky2U|qt8(B;*M3JWBj{y-x_;0jyfsQ#;SrRG^hs9Zg9Xh0^o2~rx1Mm{igMdSE0Jvq|h^P>75J0fqvEEM?MPG_cOB)K5 z4=9lER4OvbnIM=#MJ9JqT>OwsgH#c%Kdtsq3+gG2T%~Q(p@-v;HHctfjEGrvnMHK; z-}3gK{fn1N`=rJINAC8VSq zo=xeAf4=^C`r!qDp{ussvuaN}!|fy1N%S#WIW?6O*3d)Nh*~k9pI_{|{dySI%fDFt zKs?$XHssrpT1eAX>Dp6jSQ zg_+gsVGfLT5x^$Wm$WuBS(cK4e`VV@Iv56tXV6W$A|Y{!0?JJx)Pkf&PEWusq6Qu(sWrZ8DO^g?d}wKa5Qn(M1TcdamR!jEm$)`{7}2KbR@}6R(Ko18RwxWP*~fQ zO5E!vCUOTH469D(JRsS>35&(Jrkrua0)r$cZ*Ayd?LgJHBf`6etBH`h;RnJ3sgOGKg#M{^^p7>?{A>~S11rCX$C?WQZI;&+Er zmze~FEEtRjH3`^Hx}xk}K)fT-og$*z*>W}Dfgs(~q%q0L6qwVj!_>{u+_*eoZuO0< zGZWDgrn2abUFy!!b$(6NdzgRWJYzgW=!YxKm1@Q1yRWErnCVv1TqSS&)mCfPqpH@7 zb<)WS zr`MU!aHW!ifqYUYaaWBXq;z5mhft#^`30&)6S4#V(HVTP9sbDe!B}<2I2;8VjtkaM z{8?qC+0V|e%XG|#@g{(4M5<^qNCN);%Tx&H7@z5n{@h^pe$Xw(F)f)N_o|12^4 zk=ZvxZdJVZVWaUS|WfX8^QZBB!OFoVi-(j#tvpB^r4qw8;)apkc9 z)n3W2M-{BXLUt9Dy1u-7-7PVwNJ8zZ4hM|c;9zmClhpw8uE9adQ7n>9y=RoeH3Gtw z`!FC<*^RQ@MELHTpczT6#X@Yq-ahDh}6VN#fwGOftcTDKN^T7st9WHG! z(;AI}(1k^yO%qBZvu=dT?k$q8gxZ0;luH_b(RkACpxSVD@Sv9hJpZ)hQb!Ni@W)(om~ms6=-)o)3TC>pi&_i3BK6Dj&I-3lK>qBvqh@uURA={Yijj^COfJ!_| z#9WqitM#}=^o_(So%P2JQYSf*h9257#$y(*?}x?0$@*dY_eg1&5(CKccPB}ZwRBD6 zB)-Ype7Qts)VW6QuUcCL&m!($%H~dKmoN`48byP^SBE6k2>oG#wzF=^1eU&)CW9){ zlvT`g<6<5V_G%|2_Fd<47~Wv{be3BG~5}XKDo5@v^t0*Qj5a znMy^V=}f6+j@uzus!XTdY|yyIAwB7d=#SOP1wAq_cC7*xF(qV8kD$paG99}5cgo_3 zS6^>`gwn+^!SURhdsXKKYrE(x;VD_5jl-7J@%?XeS-a^l9}pf~R|txzSh{!Up)^lL zgiqLzif71{GkLp^UgQrS?dd_X-_@lFqsODO_4&zpb1|8aZR$D%ot_=92Q0@k^fDK+ zzp#NAUo5PAmWKCpwZ@R3fN-<*04Q!8gLK8WSLj|#4$3ap3lI$wxhWmgR|`zhYMZ4? zAsW@v0s!66hE(;C3AZZk9v$U>$i4m`Z*(~)A?CPVJ8FuCMuL8Hp=g9pPv4$!GrfzU zHsi4KqVS*r5pYbo5zI}7nPC6%(Ef2-L>1(Cw(02`q>#a_YONk~O=9F#c25Ijwi5#U zvzA5sW2_%Qa29x3wI>z|LAvN@cxLo$$X#nf*_n;oaf}3+mokH#@a0bkR4pG>o&i(h z{@in=C4>)Y`EAI9>)pV&)%2b_`>ZLL+4*p=-WHLKW)R@HlMAGc?Z^Y8dt8Oh$1@2? zsi2QA=LBX3Jue+jDDasvZohdNjL?1SQk`+mWH7Zm_ZakjOakTm$DcRv5vQ~+4Y+Yk zJ*N+_9bm4=j;(>F|D=)E2u-ng=Rbd~H1p|8d_AnDi_D={a^JTYjMu5-EECVmoD-WR9*jt9dF=?8;4eBZ9C$mOViB ze23pz0v;TW+U1K$7NcJ388Sr-lk;05jM*L#XmmSPdU1SI*8nxGxsyv@SBHEQ5_J;Q z0aZjHt%Hqdb8ef3WF;rr>YxYU_uc9O7))8|8G0sHn&Y=zo-U*)p9d`V)Bm<=46X3A zPiPLcMh2gCWuh)Qooe`MXXmGriITY7U}hsCEhU!-^m?WVAuD;$6#rxb20f!P3Z(Fq zu%3)jc2~DwSMb=a&9S+M#BOR#Ny4D<1py#$rJa4AH*~Upb)}Y{uYXM@?|*%`gex`D zoiJF_HSkV&mq^5zfDd;K<4h`YJEk*6kkzLrFH=YZ27kR|wdyx_O52A$hL=Gp2>uFu zkNxl$N%N>S&Gn)J7LDVZ_Xt0@nE-;UG!b3gNQokh7t=2ejHwkIofsxpLvYiG%4$hBD#O!P#Evw5dH{BnPgsBWroj`sWQwNrGAx^4J% zyA<1V<7NtMTUO;MLz#DM9(&fD`S8&~wxeWvFU_()#HEj72{>E;<7=qNBozajkg>Zr z{guv;{>LC-r3*!Zc|hl{`5qn|k~2$gx^om$_H6PX=}s?`7&OIusja#B`?J4yS|EFk zv7PUp3`lDF6laR4SZWmV znrl#*V(EZW5U{5(R6Sl?xz2Ugb_{uK$J%WGuadsL5M4d1!S=u`XridQCs|>SV|k=B zZ+_i;6fLdvQZ1Cq9vNkOpQlFcMrLyKlLo-?rj|2x9f94Cd!Q?#5p+UavyMF1uC11{ z5~19#Rfni=GnI6OuSTD+kva~VX~;PL@QyJcR-q_<+sp-K&)2j+w$J`0Ez<&hjA~&L zS$?hTY^F);$XapQ7YG8Oi$yW8(@U(Lp6gBW+ zmlIX~DZmq?+TBF|LBjUYphjflK@t$T_URh#(K;HS^A&-%&A>wuvm|#V_<{Nb60W)( zmmW?wPS)VJ@{!wHfd*iSeB90N|1ES|iiNn7&i9D;=h~WONU~+kEMj`MrgvLSy-Imc zy4TYBn8uLi#jBH(;-1A!FL*33N zD*+N24f$cY4FfWyHv?l&nWNiFjqnfuMbml!tPrG3SL;@e(&sLuZn4HE@DEMCUg(v| zbXSc|^exgLlBo_&N=+H0+j~a&5(l3>&>qw2>-T?se1H2DrPqgNFN@2UhtjYq9W<{> zxa}5Z}d?SfthW^P$s5#Qj z7*+)nUv4({4B2m0br>NZ!WhMx7~^uLh1qN!8)}<^B#%~n(^p5s?<#Xovr!6~7BZdU zo0uFDyiy=qRvQ5`)Z;(Nfkj{-V&-T05JOuP#BoEo)RKJ>7f=jpZl~HQN~yTPwQmN# zY#=na|I@PrUL+7Lqv_Whdk(0{N<^y{M^`ToVxN;K3TEdQuTS5;CEN7f&G&DjbKEjA zF!BpspPwBUe{fmNn6`a=H8|qN-|y|KaeAn)2I6=gXuJN+`lElg^ku0Zzu~4I{x?32C>P`s&_6KjfD2l<2soY7H0S4`DJbz{6KA6%-l1(T2sFJl#tD3%ouD!vAz;Xu}8H?=>qPKUgICC3@gG7{B^ zVccCyOCIPWS)01A^!*4V6_rnK574m4TDDyF^%XY~boN*DC`U2)(?zqf-U607kW#Nd zGb8MAg1gr22J6qSzLFh3pfx`z@IqeioBg}?i>EDL2d9r&e`#Kk36iCiP3IwdX+$M9 zeWv|utyPVQ{Ex9$Fx{~b*Z!pOtox$pp z>dyU%9Quc=pD1+?9QbxY0uboCqb$YUnhMmJCY{?vz_&sR+;;};?k~>7`A#??FFT!q zGmaa9FpKO861LSjZs%uyX1kTEfND5(aw-tzB*Saf<38jzDAiQ3+>c!3x>1Pjh=w@@ z;B2q@|A5acHyu6c{?RhGh#A}6H7?0^!2=m`qM>Zonx*EL3%`Ql=fp$tq#01-V_kxWmrvRrz^pN>5 zDP@(AK~7_>1Q&AHRl$>j3g`x{Qq zeD}rl4^Kefa!~e!jnY6o1hEDA=nay?iLSYubF95%m?hnsuA4@sZL`w0Gb?S|wr!i0 zwr$(CZC2XG$*;eCy4UJ`*6Mw(YyX%(Bj$`4F(P8V&pYlrg_=|oyn{Q#4Iusq+yN?F zoJQizWRPW|H{eR6ziBUeqqpzvIp#o!L`CU^tHlQA^?HqMqT&=IRf;eEO)F#NHF1X} z+mbs1g%uoH!5)EaXVS-jjX_kcxky^cEu^l}j|kqFW)-t>MFOffQU5HvG6i&*SN)+D ziyO1#?xcGX`}*SonIadnyf-+}Y+3?qA_)Mb)C3#WR_iA^Z34G7$QL$LnkGUHJ78u! z5?+8uI8MDjg*J}Jf#IN}e(%E9h702YdqLs(DFS}17<~|}^wbcy^5ue}i`%1NSzRUAaZE*C%6pPuOZzk-k2=@}snDw%W_CZaG1+_uBj^nOP1^sVdYbcL>0 zM7Hm0N29!(gh z;r=jjeRryKdDz8H)bf$>v_uIRG&f3tIk67Tva7!x3C;kr|%ll;IIX- zzpYd`BiEVSu8}7m91^VZL0}5OmsV0Zn3H=th1A{7mYj2tqU+LU;}crxHU3dBe%YkI zkM4eg4>8#*)PCXYO4vA;#<@#7AfvBTITJrok<$8IGq$`u5M}9DMF<+yq=C!)_a(Ez zHKp7`UMvgLkU-j&p%{qV#f*n#gv`sY`yE9Z)9|>>DY0})K?PwGhIYyC4*5);v9GsI zi^U&>nJsOSF2+xclCl;P9cUy(`Z6-oLDNx@H=cHEwBvB_KplLJ`l5>yMtVj)h?s;B z(`ITYZxdN7*NlAor4fYn2cC06WPS@gQ{f%hO|xkrOJP4HAf9;|3t$Eo6wND!pPdv!czY-%$taF;-5VlPPKC$mrT_(nZbT zR=^mLRvzs3WfxQOGUaxr&}Kx&mUs6J317oSU)TofMLUxQ0xdLl3@L4;@ibtr zF@VY0xVi>##M+w2Sg z=L2IiQ0PAfztuC*_U0>zZF?pwx6e48R9X`GOU8nG!l#XIxpVBUoI$%)iBtiq%W=e5I1skwX8%ba#(aJo|cizNyB; z>qU!V202!L(UlD>B}HV)i?)Lf#@$3w%VQkDK}0EiG^^G{cHFGAN*wQ`K{4n4AhB%* zBjp5xA}L*oxVxurwpni$bmjWA;sKf!AU({e_U8(y)%Ul-l>D`igbE4lXf}=>OWY1^ z-3z#iZUOM|AJAeR!iWPF2><|NA;5otgZ_6K*Iz8m{~bL27i*e<`rm@N{w2!n|0->| z?({F(bfCMnc)*E(7cejsk;S|sBhj6qgM`KQ#6jNs-g`rQ$`2yohHyq&PF}P_JIW|#Cr1{ulwFN7vDwb6e+)7&?}EUc#m)JW0k1$sYLm5=YG7# zI#)UJ3;~G>swe@A+~;^*Yyf@GEp9jP#R=o#qmp-fnD=}5PB0W#ObJf2nm&@8Q@GZ%#PdSjM#o_}E_4ZgO5a*!wsH9cSVCDMA-=$kPoZo(PwOe@<$EL=#REQ`sss7NPz%^g*vxh(unCh)sedMBb_CA0yVL+@c34ip0@1< zPaJ&La2JEzAtoLzZoVC*^d5;GxiO9=(`@0;(2q$cE-z-lc8K@E1bHZ`61kq28O`aL z=&ZXr<{F}VsRrAZ#;Ma9O2t}f7-*A8QhvHyB3bSvU1L_{#)#S$M)FR%>1IqY32z57 zI?rv&58MaII>Kv+$M?OgcU`=5tM*Jz<*g8E*k3fWqfADr#mRTI_Tb&|yO|TMx6@tX z4l1mFEQXCq?lRiDt4nFM4cd$u`1h?+^CZ(x}1JsX2aiy>skqz^iZKFeUg%Q->MvuBFs2t7voll$2qR zZhv@@v7SVkezyaYZ5=jwguY$bZ1vJW;<9~-;3z2dDf6=6w7EG0q+-1JgS|6O-limj z>3*}}L2}bOzipc@%aZ!SWVSQfyF2-=J@Y(xHl0x9YUz~Q|E#n1O}1qGea=|9+`5(* zE@W7)qVY#$OJrN>sf@(vXnXAm3HE7Zt}vMsV<{&(s-~P&f&$A0yzK#^ka!l|%jUvt ziW&7z56!5dYR?~ON@J_M;<>cmTu~%8$?T2gSxWKV)r7K3%SLm*bhbP;5o!8kuJ>l$ zA%x&C=E!m>?4KEnfrrY|?D7$nwc@4hBG-5dX^iaqp$&r*wqu7CR9{f6Kj|CQA(@Yh z*pzqaXjC==>x9pKy^|}eTbLhhvnS{9juHjE&tPm@E0`F+w1S!b*Gj_{W?p$w@czz z0HsX3Mj(N<<9Pb;s9_z}uv)fZk-4@iJfs{OA!HhUA<@_C1sE;iFM;@99>WPl;vwL8 zX{Pruo74#EfRwJpcL|Ai0XxIIYWF(IBTBl1gqvSKd2b{s zcnY|+0@y9T&R@T(b$WGBpaFc-2=Rk{*PbG&Nu3YGuRH-`-16ZTA+G4oq1F{rHZsH^ z!~tmx+{6yyC!O*jS`FV;90HMV3|))Cj$?s!;W;GjJ3>kh-+X)}VcmwIy^KC3O0cj? z1mHlrp^hU}l`Vd5>EFaf{;zIHkH#b zT^afZ#<1G2y@OfwWYx3t-ne|Z8kU5MDRvrTTn`n+>1t0EcXT^7RAQkc96SdNYUkRw zaA_yFJ+;z54<+8ssRQ>XOYEMeB`PWi7iGn-PU-9Kx4Asa;9NbkVEv~ZNE$7`WAWaz|u70F)Wjbsvu4&xxHund8ND8Xpw|;ezKH8mZ?q;rO z=OxN#o10f9e6jGQ=qFmlk3NPvJp z975PdTWJ~l@=IO^7cR<*C25TRl|sr_NzSRkwbn6d&%hx z)Z*EPgH4fmdN+VYop=mWj z)UZ~%k(38hkwqfoRyz!%*q5eM1IUq;S|dU~IB0{o)63;3SoDdxGw(-7Z# zaU}Ymi&g+_7&xU8aZOCu_%9(h4WjdqGIs3Z+A(Qv3X^)f8+R43yc?U28R-T$maA_W zKwT%XUeXWq|hQ9E*mg3oeUV|H44P+HoK$~@<&(Iydk)LuBLal9VaoDDkR8VQ_* z`xb^A9(th{MQ@iBjFB)xB0%RRR>DuT0kAKk87Cu4kRF~S`9|ceL)6MLk4)x(hNQ7p zoMFX+V&$eLa(GaDgr1>ye&-2&oi5sVNqdz5e>wE1W;AI8j8|*ACFIwRh{0+b!L=iy>)VC|22di5VVrC~ulxG=KnF0i0}K1(_lLLJrF(-``cj z#mNEb9l9x>p+L;(jeJ;D3$%I9QC2)3x0EAg*fG+CG-rH}rHY3zq)|HYqrz64kl_wF z0YB025mF>oruu25)}y|q1l*8IIzT=IFws6i?o!(`@;yvLWcX=bc%>6J=Z~$%3v>{Q|g%$xFjzKAnRP^8%z$noW ze+8kUT`|O9VmX+&>Ts?2Y1js?1flHND4lftykq{2=be})7;i=X7MDB zXD}{(97(4n8utsA00L9_#@doYkk;q~ENS0U6-5xObScsI#Sujh^cc+PNvq(|-e_81 z`%1T8)vbi5=!gcNgD9^O`R{TuSqWd77fFn{N3iI?Nhh{jG!5y3zWdZZE@d6BjxSg9 z5u6}R43T2aH?=}bSfxBu?AI(l7x>BtiB{uM1ytZdg{&?mu(I8roudsA0nW8~zrd1# zxgVSsyB%%CCUVvLsbo_gV{dRb(i#dYwmg0Gf)gze6QV$lFgeNhpyc|9zDwe|Wr0H3 z$cMfFz2ACWx$ef}ZP!3tE60WWCt_1e^rH&(YU9XJZ3~I7pY?Rst~D)0HLiM98;q` zf*ql()eBtoYv#LVL0-O7P z^c1pZU#d>|otpKF?@Y(>AURUcr=tc$Q2u%^#t;B@9@`1u;FO_hKL*LN(L?peAyv+3aElCF3Y~_8&iwxYbkZ3>MPRP zBvdZgHh7*(H;EC=Vk!)KeJPn79_XppRsEF1qMq)Um*!8wOpvU5OdjvYcN>xKY5Is6 z=In=?<=NlKg-Q$5tn8u3!N?Wb0l;~M6$ofiasr)3Fxk#?LV+;jiFv+ zB3CMk|JvH}YmXxkjkB8rD2um&2SSL}&V4Kn?`*>9mm)?l%%V5uy7ZJeF>L=ljzqxN zZ3|nCNMfsYwei^@CesnW?|xGL@1BW=+f{f2j<{({abt}r0gKov`Olf=2)ej*Pq0sf z!9O89)f`iNGTQ7rGh_BqZs>CAs3q)t7-*7(&Nloy$`Qj&DY(B`3?A)~G}bRObZ`4t z{DK_*yb`f*xzc3sE5^f9nY%PKb*|0@4;t9ToyDezUvZLsqUKIxCT8(_u-FbC{5t*B z2Qv^8ST+6KKz|p;ZmqHaxlWf1G_i5Y911EEA(0vDZ@5EXhb=3ip*#et=hn9>9NQny zos?EKYl`NG-Z?yo7boFRe~LwkJYzD{6f&D_5X=Lv>YBRr9RBpP5@`@hY(d%>ZdQq4 zhS68fWa3KEwIUWWjd}7+_0-Z1NJDFwKQSgIx>^>%z*q`X%3hk;_(OlJymnJ!d5k4x z%i@4TGqSNgYjr%8)#KyziT6vE>-qz^=cch9TgjWC*FdwP7T}Jcr{DZxrcaTr!M_zF z*~Ns&gd(}rd@bFUp5w|D>Ke=B(!A3dwOZ%nejX3j?dyKInj>37$Sm(kku|9vbdJt* z@LYtDgBpN4#>Ti|(JS(C9z1LU`P@F$Ha^r*reSccx%#tL4I(e6t328Bu~8xq@DKd7 z>)hcQ5o(y6i(j4t)o)u!+z|*aGD$w#A@!n=V&sB-S5Y$Bd5+<|n@q-m0%k+rgu3{P zO!(oF6qgGGovl9=1U1<_iw5Z#7pnHiDbep$hcN!ochnd)0fMx;lAaK>Pbkj5GEhhf z2N({R&uH<Rr`_iydIS)VsIGTXzEcM$zZ z8oAB~7@t|$5KHh3ad~d8FJa1~J9hnK^W3{>InB)cHgWjwSrspSo3`Pd!h+<{{zu9W zd#s~jpy=<_;{(qrJyOA1jAL#6foZ9Yn5CF%)bzFE+BA0K!X)E@y>nE_B_C&kJl?OL z!K0uIm41^Ej)HAXnji6l0;r!XCXl>io-u%_r}=g|fZWMuYW!XuM+se*SgIOd+eAl zR2)VMozn+LEs!L+o}Stv9G$3ECy*SavVu25n~@yp89XB+p|TL*TS%roAQuYrtOvZv z-|pd=G~70qxJD;j7lAWs%g{R^2~Q1-dlulW&LadA`azBfXXxCU7mqfWxMEx+?KeSa zVvi^vC5AP^xdz>ngzoA*B9pyy2^^Yji+{XSL+cn#d)}*964=R=EIP~ohg^d^0vQ^A zMkD@2e%fSqd} z(pi@;Va=%-4P+ufq|E*M?Zn`@QyusYql8oWe(fP$`5M*;mu`$8xul#SDW}o9t*>jF zn6p{9fLeE&hH@SrIzMM-ID^PA)j=YdeXT_=^Uxg7rzNf0wj7LVYXq&KJFQ%gB6cCJ zHF=ImBQ-(9K@BVLvG05xjSXKe>ku ziVVvVz<7X`Q}`-`a;${LPFAHSfs@{1kXX@`d&RLR@RH&vr8}Te(Qwzc;Z%KWzqH^h z6o&tz<0>Gjo}cGP$t=d_WNCpzd7yRKhkv*u*- z<%9;OY66V$PJ~52$4HI1P{njCjRfxbgP_C$z|80Kk<-nkPBO!wZ}}e7c{hTMl3Z{x z5Yuy^w@CVz-=JAYap!FJ=tBL8T2TvgPuZAL&ZW3Xxqx)_dByb!#+2kxXqXwY$~T35 zM6^OdV&+C)X}$Prh4>I!gp!GoS|VYPZGzK$V)z){5HbZ#k1IZ{ckcQon#JAl2XOjv zdzTlg)6Ka<%G_vr<^68c*j$9YL}q1x@f*=xDQ?;l(KeUsEscg%lv5Eu7SQGc3A#(f zgMF(u?Q#tPNa#!%qLxmYO8`eW`P5^Aix9A?*5uk>qQzP&x5e31Ctj*i^U3A^$1 zwfi1O8_tqC9%WV!?IFRDvU7E}%gTP_VrvJr>eMk^=A-SEqc${LNGiixw>k%u#V-5V z;GCLU#Bz0XO>XzK=Idwu*d9Z#ECbZ57_wB-t>7xs!*c^`N0`!Pssmm*ZtW+ajF2Bn z1Qzz#!cUmM1rfjZLeq9lDUEt}uoGM@0u$Rd?z06&LH+% zclQbZ_@u6thzRYO^!uo)Nkyl)3P6{-@Csc63>lsmDS!w@Ctwx~IKE&f}QB zQUob64YJgD1&1KNJA;s7K@6?o61nJiFWrLJxO^)|wuDG!8Abxt?Qk{(mZY7R7Utlw zHL5!KZJcTNlUsBxgie(Mf1GKOlVF1*uCg^TU~3Z~ZXs*Hl6lM_3|G{IZ?!PFWq;Uq z7F7Sp$90QsXxl2LYYj~;?kbV?1oBM}Z`YT43M$J*3il0JsSS}3(VLWT>7TO95QAN#M)$;o*$^dMI>ofpPaDF=jB}DK5bxOBIdJl?=a)Y|!f=zgdSj@* zk3-$Xhm99e%$)Su^{z@50_T7L6gnVXaA+$FU&>DJtoF|4s_OY^8h#wjOw7&zH8+NQ ziDeTG6SJ#zeG3A2Mvd2Kxab-lHTLrIIGG~Xzy)`K8JU=A$|FP6#~UTTdC>&T3^ZII z6m&<<2Tf|M^!i)P`j!6J6qUNaV znM~hThR}F=pV=(AE0d8%t~*zjb2DP`iMfP$U@FNPe5lIcTOVmE&D>RAJ{y3N#CHFn z5M>d<|)n2^HVMcZQqB<{G^!kE% zGs_Gq^!h!XL0#eTN6x-nB&EHl08N&piZNRcq-#g#I;GtE4?5r`kn`Z2Es;(OA-EdT zD7DVj36Rjk{6>h)^9LZ>n{e^PL~>h6+sTO{Pps;+RM^@jfE=!fD*g``}=^wK?qtSi64n{C5 z{L9lnr<*gZCz!6f7BpxU)4{wNx~;*AtI=obA9sf?GN(4RQz~B7*0E)a#g39455Jx^ z>W)?Q?pQU0bnGkM7oiaUjF%H)6T7mjH8!<01ThEq(NTWA_EFb9kw2CIxp;BAa1GaL zy^G_-zOoawPfMM@XEl)}&chGSSB9WwInTV=8x;KZIH%;KIa|R>Ut3iF!K7G}Ue1#Y zXnE3w?(>}>ASM}sdjpj-=;ANq#T{e%D?_+6nPJi@xrj`JkKe^5@ifqL9Vl38mRnG+ zMT|F;F}YRX=Hk}4F^@S7cPjBk3_H5liFApj%xoi+^qB3pLeO+Q;{&1gi*sd-i=gI% z=3G1Yx|hxu{QV87^OeOV~Ed@4&i8^tLLXU_?a}nACruo2l2Q9#uUzs z9&@b}UUTVZ;*kN}1L@m}!(#K8VH~%MUs)vNZnmbpLr#dhQY~Q?9(oV|*l9A=S*+0h zDhimUkD&juu;(`gmZaREY+P@4MraxblR$ytM74bvfU7g%kh|Y}%N_-XlwVxn<)Kx8 zj+JEUwpeJ!OmybwRCF>R5;VEySU$B8Uiip&!@c=^UI-NIIuwjt!(l#r+cm1_H0)N< zC?0jAY|!DgHIKU22aER1{H<-(Dqm7{e@!9(lLWYWMnR8SQCzmCy>R>>zgrUQFS;2S zQE#iB+gTEQhE+g`0@h5yX|;UY(WWFyjGR^%ZZJ@7cFc>&{BrnFJlsKyp7kiq`UCW7 z%DqKaal0@;8`L{&K$JH5RTCg+A-`${BPfgilGD9KN&Re53z{KGe;DB!1*8aUr=16- z?GKW2+6&T}jH6r`tBbsy$jVyk8PG1d(GBLKT@r$p*{xLF>#3d@cUjzar-qzqJ3B&{ z#AYrO*wDQ}(hZutj*d(s;`}#aN(gj1ty@K@*zsXWQIERahal zrG=53!`at=w4YQJKbg2=0|3N%{<}bv_+K{O&{O}rZ1aEWyZOH@;@we5{!7G*`yhuV zgm#LBu8OXfUX+HBTAWg>{$@;yc8GRdoH(F}j?tn_TzsU;_}4LmL!90Fss5vg_ixFu z!G8;N|B@X4r|{k0?)$)PtgMWz9jP5`>>bUlP5x7zp8CIn-T#stQ$+l8KFs<*?aDyU z-thn3FSVYDy^+yh-}H}`UmLf-)8j@>wfHj@7j3`CnME0AaZ^)s7`OUrob|BvWxI8s zvQIQrApvA{;vOhp%*&Q3>or#&R&!?|Y-4n)f!9p3q z$tQojPs81AXd(g^pE6$8yvUm8O<`=e>+8udaZDf1dnIfKGqHgsE(W-5^g`<81Ph%= z+HT$4Bd%vuwp5#-c;?8vn4yQ5vTjBS@f$|{UlVv;VUx`PDTV6K0+kqFV_Y%AkQ+my z#7k)&Tf8kSw%xJ0$7Y`-C~5n#k=*Lj>op@Pb9efB&>Qp>*0`v6R+Ul{-SU_}pk!`9 zWQ4E+8+utMzA!+z>Y#bR<?$g^>&A)pkN;T zyym9elO#g-Mmz~3DEGmMO-a+J;ke)FqoA(&{gUdA0`& zgqF4d!+rtn9o*;-@1RSq3k8Tcu2et(?LSS}wek6QwZPJW6-d`zyt7W#rnDgHk(ndj zO&XZ+M;{zpAvKCmvqBp}jMD~CZop45o3JBYm3ggB9@@awt@xImyTq_!M4@FGH~AL8 z+NIbC0O@k=Uh|se&(}N%He1;#)6goHFFJB)@yHkh=d;wL%EODGS`QK%SWCUrS&HoQ^aSOf5=QX6@@^bHR@!tOT*E+F(pG5CbVTSTv_G^>dD z_R&MLkh^z$E?(yXxpp)<*U#RW(_>MC zzaitIG&%G!MG|-7!BGL0C^haP-(HMbAF&@~%>Ors=yANL+ zFMC$UpE4RjOn58U+e(YoNqNry@;!ZC=;dA9%?7|dV&9<}Xwr(VjUDzxpVGxr(>pgy1V4M6s8kGAQZ#en9?6D#Xa@bN-I9i z3cRo-F)>{lsTho(c4mMY(xD(WhFEk2{JCOu&T9<};t1Aq7%s;ZzGlHtF=ovI{n`Np z8Mu7*@;sgse)T^wctn3yNb?6UFNij`6T_)B>Cw=DA(Z$kP`I>+$^Sf08pUsGH!#E` zEAH~wk(=~wCM+#cIH%ea?HZFv zF>3~I^lnU30dB7%Q7plXXt{qj)%G%YRMVu&XIqsiO#fj((`_3qBTK~)MIFoJ4`e(=nx zQ)o}fms9_^9ycMY_lR~9(&jYX;X$Et$bk9%?iiz|%2yVSxVFO-qZB04@VOLwStHaP3*U}T`-PVNPwi)w6tD&(w*T7q-d*GzXwB zx;bjk2GbUI!-mhW4nXQdA}m*RTieTh7(niM<{5dBv9*5w;P*;H5otHag z*qQwYS{f9Ei`^a!6-;0VI*vF39&2$u+C9;_S#k9h%S@m#pd=Q#-8cqXn4@A`ttFai z&>G}{X5 z@tobeeRoL&40C)VRj3gqrJps7sZUO6yhZV)=x0BSYY7Wrx+t7RsRR?lzw_h0=r3Eg z*gdG&<(8i+x)|@@)C?#1YM{_05ajFZ@R*w{3h-L)(#jyOJQqpMFQ@b>Nc5bhk$Q!> zTv$;HSCT`yLHM{_u^aEVn}-Mc8Dv$5-|9s?ugvYFp##Ijwj#RW3>$o>yoc~(R@?6j44$qADNIsrrm4cm2D zAOZq&%z9_BCw$KK6lUb`%q9*H{kB9-*)e*^%HSPAz`+KJhvk~3MvKz~6I z%Q_tkx_o^<&gxNw6!!-Kki*C8P@9USF3eF1sw(zV0|W4HwQqEW_@?70BSV0G3x3`L zy5WcX{^%YfH-HIG&s2h>@144%;V~tMCa@0E!%I!@8-?odIwv^=(CgsMei-A53s$NXA012J`#TH?J*JRp$7Es2%Xbd735w;f|;RF=gwaBR)FGlI|6_C5d1a zxpno$zAlYd1{Jv0IPlP~gw_=!jU{6qt!e)N{F+v8j1OK=+d($U0k}ho#?4CZmoPtL zFrg5&OQ64KHlAAKE^db_wb9ggyoLE))U1iQIH@`UGjC_bq#UKkgJ68i%0bp34SFUl7%=ttgSppm>?aI2WnW(pdWS)X7*H3 z#3;68N-SCEM&8icTa6wGsR!EtSC#1{L+qVgF@B+cF{nHHey*$tM0f@tyP($ZeEXvc z=o}PPSm3G}`Yi4e=?d7?B|l0T0z?tNJOyn{3Cqi%Cf(gF1mmNb!Lzqp$K)h6D;8)e z`$m}WtannpBdQpw?_z0uZeTjI2+Hpd`=y&C;ftRTIoKL}La=Ru1I-jg!i7s}dg17z zIlDTwa(S<|Z+)?ygl@6Ot24;~M;vX1j1q%LA-gGxPcTDci8-I3y755^ed6$8M|uT2 zyt-~iq9dh)x(s21w>vX0Q`SUL{-P_3dL(#FOr`T~THL1m5;Jzk~8`%-b-d(DGMJuh+A?v0!tP19=CR*91+JH2weR zSY85-Uel9Vad3MFOE9i{V;4xrXB}JBrH%sdyq~=Ucsf5HBF+xsb0ae~zhf*IXfz^r zmP^Fl-@Xlfl*uO{XhGvUHjUxzfOy^_8N1f%t=a5Qe35tUm=6OU^ZO7dB;JL)`V;h! z6R<-RJ8|>yyBh9bZwJoNG6YD%3vH^+JeM@OpYM$^b zgV$Q@yC5pNR~7m&$yvS1-T_GfB_mi#(9bG)3O9>)Jc4|8B!^$m)5}GuM?d9ORSMdI zB1a)Uy*@75w{?6z-;0m+7)3+1Kfws0Z^3+~WpU+z&htx_w%C$oU@W^-TDBq=YH;;Yzivo)o+iYONwOAJ_Qy|EY9b$(TIShAI4XQ(C>F;Iu@ z&b{E$f$`VHUl$Z>@O6MWS!#@?BLYo6vZ8B|N?BXpp$A6giDyDrQ?K(J5zV)6uH!kWH0zcVpk- zsqNqLN~K;-v{t=$S|?PX3GFIrVwlhLM}3zDemp{5hIfEd^3{}pA36Pshi6}L_V$fqU&VJcPunnfZ103O&DT(SCmiB6O zbsJ2uRwFJ}4VEqnPzp2+COWz}$YJwdwMKOVz-`Lg2%LgKfI{Ypv5Tco7716>Q-H@U zu#L(nj`$9O%Zc#T_O?v0pFI&^c7oG6loweb*aI@Xo@yw*v+TSth>SW;btJH1OMW!+ z;XkNa#rvsO{XM*N@ez;z3`B5RAB-AD9Ny`3q*amvkM`=~78|6Hq8L7`aH%+N*)wW8 zrS$^EvfPZBNsxeT1yA4H3pLQQz(}JizO?3vOy~D+B-%FkDbJDYrpJ>L=#Do;fZJe0 z*O&R!n+3~IKF4FS60+P3p6Jw`(=CB#5tQzj1#7=(B8;BGO?v@`msK^>mkq z^YKZGN}@rtM08sU_%lXz!r+MTh8=z+dL^w9bzDBE->6;z7UoNx?4;K|ekNfBOBfli zb#+JsQCGeO$j3#Lk1t%4c99BjRErXpQW4~HtEJPk{rCkHUYz02f-y$2#we>;#bDDr z4G4};>PL8%sS?n~XOk^_SBl^9}nHB=TE#4;Lu z8;rK#7-rq#NYCkKFaliBuvE>v=2l%}k*v1%9NaQ(lCbDWuQqiQ0PISq(;CcoG|6{> zV~|dFmp*!*N3;DiB5QvZOtZBI{9L~GHz8F{XMNQ~Mgi^b@lk$7)hv)RRzY?m4vxls zJopdcAr2BUVoNAs?Y8X2*1JHUXND9o$K&6pK+`cfRs^D_h(CW*HHZn&vW>;9()oiA zJ}OyBtL&A%pO6TLx5*e&_7}lodIZp{Rjq5N+Ca?dGpkRTL=3vZ>yv7g->2XRa7YD6 zjPvWK0J&b29Kj5=X{M14N-m7e8pJuPg^g>bYP!6>VFrLfW93(Q zn6F>&z`3wk4$1N%6b_2#nbVk)drY-hGzdbP5&| zWB!jhkJ=;{{$Ne!yc2XRbR}^I$)Jb-dOS0Cao#!?r(h7!hM5~CS3_b^T_#~~ID80B zRBbxbVJj%FyxGng=X7Orkjbx1cX;P=`7?~*i^$AZnCVqhC^hybUR8X>x}Z_;j~UlH zz)BzHZ;*yqbcmwPCuKzao*?BR)E#g4W6lJ=S#T)LhJl2q(-zd4tT6Xgw>K&!DyOvb zj|5v<3ObtN+q; zPu`vX(S>}U3E(wgYqx_NrUf2WUz*HI5bLw}^DsVlj?{Ft6%uklWyhHkNygJI3#Qw0 z=Wxf|biLb)l`Icb#z>qUr1X48diIN=Yx&*Q1Y#T1GG8I3>#FT5`@n0`qsAZ_+OlYI%NQq&x^k=tZ8XD^Sau`xyCma&O?-;T`JkxJ&0?-ACEDfp zLY(s$e{RX^5Q{m4c!#qk1d@zqW%tOxKsQ+?SDyZLl`>Zh`E{O|n9yhjXf$hEl@Ah4 zS6SqDu+fH$v}l+J!OC_h*SYMRr9eJ;xUR}vLw=pBNa8mctndsqo-*i>;8WjFG|5mz z2W4`{^pe&+kPTMdYdl15iL0jNFKyu7lU0;2IrvcOF~yaGLgHC@fzS+O^^+YQc%M{t z|B^o2P?E);-%L_d^|wuSg4z1iil;@0sCk`hZ>+}8!;q4ON+-NaQBb3fmgUHrK<{sh7{f)#0bwY(`d>kF?qLM|2rpQ95~H8NKLYQITBZ%Pj{ zOkVoj8-=R#S}fz^=9n`IQd7aLEN82{WNo%zO*cx#OD3N$- z6eWt1O5FBx-kGV{OnmcQARemS9W2x_E)+ckZ1w| zet1;XVQ~CtL4`hO6f|AkSn;XpMF}eM5wXQ_F)Es$)Y4L7VpL*Eun@s%fP@X`=!)>C z_6ib+e&&dkd-YygToUpQf)NT40*Lbwy{CTW7>elVLI|f&5=aq82u}l#J!V83Y8B{rLIAaNf;xJ^x1ywmZU}b}II2$l%ortqG z*XraDWu8c)waraV3XY@mL{efQh0_PA=ANlkQw?m}+8(~V@#-;uK@oVPN9;RcU&Dfo z!&W<=od!Qh@LgvI6@{~-5p_hJ$IeZbv@JWd)0Sj^R*WOnpD)# z`k|@q6hvPPXKY#LMOt- zTTvip*8r+KSi?OJN+RK zrD7d9U9?WMaHzfWDN`mQ%re=&>Ucv-{W&zsl^xs)F55wZk>xn~l_7+wTo6zwA{>F^k4|*U#gMC! zwWF7IFYKw~SvI?kLay)8j5!sSp5Sb`&6IAwA|ROaMwQ>j;Fcb?&uf`7d9e=LP+@_O z0h&Ry6m)8gV#h1jbyn1zvBK9eV*dKMN~XMIvDV_h2RMpVapi<}OmCnM3%m}| zb)dPd5wU3Vpp9Z>QRDLN!U994qE!>K*AOPk#jk%Z6FAB(5=kLG+Y zS`kenl(AzBs~=_3Y~n(3h$X99{IRY2rjm@NF!%H zj62iOg(0KJ@LYkT_<|0|?a=47X;x}Mk+r5>Pyxg&;V2Ov2WJoN6V9hpd~z)| zlV|COCGJeS;;EaS%eHX3vVb(HFRvsSGkFF_=)R+MO3PWynx59CfA8a4Lfyqu8_x^< zXMC6NRqA*_navo&suogB>NiZ~-#3wzYt>sQ^~|lMmd1z5?=p@tbptP3niS)tjtVY zEbZ-_4V=u3od4tL>|*5NO#h!QBL4vukY4`@70G#|06$$`Z4RLYT* z1j>;Q`k0&s(O0Vj~?t$im2HSh|`b*st0kB>k%)8N)Nrb~uUU*+vn!#`!&ip$J>q_Sp#+gUn z(kLHQqO!jNY8t&h$BUNzp|gUo22p@VI_0@$QFEdhhR3bgkD{A`W6$c0ifMZz8pTtu z?x$$*#48cQE@=1AxdNSWzX~BRAGk<_Wp!e_4us)j8%h)uo? z>cju}U%{{@G!>MqudmKZS-Y2=Y}73es=<8I+^yI`ftoq+JMqUds(~>WTuWKzZYk1R zPL~J6+TXa0U0&(ta?3?YJbZRjD52>YEHa_`hDyyhrMgotPj~!2b(U^-Rfw`yJ+&D* z*U4uU@EtYq9nZ&!<6ZyuET5wl&LR34WBSZw)1ABMo~Z+>unCczlyaTFcmXsQOCT;U zAiD6vHQ-*pH2-{Y1V(53#wrbD_`a2u6FK>U7F1Za>@C;ln@|29ia$Vlo4NDD82uss z_f-2oqe}GuBGvwH0_?xdw;w|O2KXW5^#K8tyO_wxphf{Mj7~sUXcp3G`THNRu=``L z?OqXJU|i*1MCE8?HJ)RyROy~)h@bm{!u|n5(D~#P^=(B>oNQ!d^`vTCgqT*b+;QQi zhKv$r6LNG?pcPV0<4>;tq-3S1A{eS^Ygwr%DOuFMa1+1Oa7*ehtktmx^a z7MknWS=pJGSzDVJ)3vivA(%Cvr=`^qKg+2O0TT9o#r|5}O>I?tDvi}WeA~o~I@2ab zJ?o7c2^#Q&pXwU43*Krb@gsMy9@A(d3&phS+{=0f3oapx)BJV(IAebD-mRq<4GaY< z6lyC3>(fc3jtA!*OU{7*V6TWIhnu+n@pb+Sr~f~Vfl&YVoc~X9|G#uX|KT$6zf6H9 zeb?MJ*;`KEwJv;ye7o`t$EF`BC;l7^y7|yjoL#4C6GA0W1_HswsTK5mUBfw0tJRY# z@>_3RYl7J*BEk&hgsq>_DPR{oN8%8tkL#p3D>J^^t4n=+^#5({zm2RMHvVp`p{VP}a)6PRrhiaEkN{rsZF)*pEIYesLqk*R)4g*~#^v)dID>EDQo4`)q07-2$BMfB*UQ{crEm zZveS`L-jDUILlnTa=3L2_Uq6!O+kkYXJai?12x0+yhb}!ftM5krPcIe?-xu$94A=Yi#?%MH_fD6I0F_>!CZ z`~Bk~^}T-=dHI%N2rs*NtjpJ_ztHs|Q`s@`p1ef&NZ4`SeT?VxA=`h*B4+dEIa!{r zn|;ba{Of*3ATyTtmp{vB-^+fW9)3{hs|-CVZEKN3J&P~KMQC(g-I6t|Avd~=yo#Wp zxQ;dy*s7d(kHRnn{(uwA$v+Br{QOTZ&M<*${;&x4YGW`NX_@>}WBF6aaqt}95t6?>_scS&q6 zDJ0NY1Db0fJ0m*zGx~3XFoH!^ay`Yribk_d@+`@o4oh5pt6Q8ShTc`BqzN%{i5D$e zwpY!)zk$30TM8!+w|OsxCU1j%4_XpN*Hr!uLS0Uu5yYb&Fgg6=XfaCg1awy%(^;wj zx~ib~fi&c=zFUWQnMDdI6P1cpf=qWQX0n?JDZ_xH6jiB7sz(gK;>AVy%Vtg?-60pV z+J`haO~PRYfccm*9Y`eZsPTtmqN+R{(YwRh?7n81O)H!${fIw6$(R^zajljUah?N8 z!0bRmZm@JQ%1uGn`lSV&m3`EN=HOF-t&el$kJNK*i<8q|)5~VX`8iH1JGQ{l-~SpM z#27pNhBWF2bH22$H`Q7^?{2%z!<-ahTL=G+7} zqY$H$!D1YXe);N%k;L7g570}^T8;=ajwcLY!vHi58@pqLI1%_v#!WwbIJ_nPf+owNa0hW!XnNZS3ym@P4; z!;GQ^YXIUg1T4xiE*M!{MNQm$JW1(vSDvhcz*2!e8ps|AOn?Y@t7<25_COT2v&{xl za@mah*)R(M3{F}JmGntG`92kVwGsFpxwIwuxmMT(;?~ZvHd)0Rr-@#r%R*E^mqB@W z8s-&+!-4P{`w(AJ3)rq~UHgsj?KEV2czV7rz+{Az##kY;l0lk&>4>pYd8|w07h_vA zNM)CVM*nS;4^Zw~cVArQwJavDk+940EBmO`fQ>zVx%htm29MkEJ7^lStSPpk+2m#x z!l2wgnseu3%CAW>q}#+xZ+PQ!R`>U8E)j378yS3-hsmCBuG5voTd>EX5kdtAy#NGE zfFbu3c+z0z1fniV>gQwhH9rfAV^ZeS)VD!?cENU2ZmH#~=#ya4xJs*hEcGnwja6=|1g9z2=-O!3{oNfbcfUQ=1iKr{l{OHS~GRO-1NQ5lN}SR^#aRt=xJ^|9aF39 zGz%=U-k}@g<+(2wW2qown;p0z4IOpBUlD6?)Lv(0{5#U-xw#eAGNEZTnK1Dt461O; z_(QIs1%7{mcz$%tss0C}dwdhtk8z(wMr@hvLUE!!tx9ByemD~vgI5}55>fY+26Lz= zKeG~I5XQ8457*aov`aL@d~{FFz|ThakHOda+6qX`K3e9kWkH!Hq|E|C2uQ3KK$}R_ z7;D$j7(|f4>(F2NTFVh*nL4n)c0tPuGWyyj${bKgoA#9vp#{cYT zt0kjZ)L_w*$mPHilzihQnT5ve4FvokxfCV~*0Ix(_A@A?zUDd58^F^+Y%?D?Y%`yq zVzz01Voq|Hcw*(AbraL}$5mds=2&P;KZ9GRHMtZaCuHW_o1jBnwS%gIZ`WQYG2b0~ zhJFfZAi$V9Kx8kuPl*92Z`c-BCjw10r!-WH$g(&FiAx13Zxg9waFOo%-+N~4+)lqA z(B8-MhUjJ-l!J?|uJh~Cv5K!D`N_&~-88?6c%h2ig-=ixf>Tzxe&5*uMYhsQ?) z4sP>?e365F@F{kYo1(q*Nv^0)RCyZ-XFM(a`i|Z)@Y6s$A4lezOLSK*Wp?3YLQ$U4 z$cb}%pVWap&fhyTs{}F2a{Z#x7s{OF9CU@4-SMN04R^aKf(B`UY%ILCoR#eCTZHvQ z1HA{r3w=IdiGpTL!m7wp@gy1w;D(Gx)F#k}3{M+RWc@;O^{C@v+e)jiNnJP zc*T0$*nTHCc+{0lT1;40Ot>-ZDz~O&uAjO z$~*Z3YqQ>tXHDinlgV&%e3(gRpP4Qmdm2)r(X-y|^SJ{!1WkeCihv^JH)pktbs1k2 zlKp$7IZ@C)2dO`g**qZyOj@`WgoD zSIw=EH!!n6y!%uZ#VS1j-(jgjv90wA{6Y+edTn6FF#SNz&?F&V1za{~(X3sw3 zta0nFhu$>AHEt=B0f!{GI)eyA6C>AxRTX=S938;rbVp2i^ntUQte)HSSEbQzRPtqp$!)wc_w`7Q(p1G`x%FP!HEx}6kEb<}k8ywIhHNO}lL zB%Ae2lmL7D^dHE&kaE1cA1eX{g$_$xlEn?n-n(62<`x{_70y8Vj^={ok~$zTV4D@d zJ~(E*6Y)qLoCn0M>(r#pEtW#W!1~8uJtWSvks6EWZh{hKG~)?#%qNFH4W@a#8St6Y zLJ%!Nu26)a%x=PDScomvaXfC1`>6!}dlracnodCEzoW*%b34BZ@+xOmRRx3hm+K7{ z92gH`)xpVs=S%5Hpog9d~pM(?1s1vqdm0qZN*XpDQtu8%7YRuUBHI3nZl0?=X~0l36g3z8WetMFKLYkssF=f%+ zZ%3)QmO91pz$J$|6LdY;4mIeMjXdcCB2nO9WL-h2Shqx10%NzHZ&nOFM?EH7v!;f+ za3nR(>NqbBYe3#;Re>RHUT)ksaY6EoxnKEo2CZgP*l)GJJ!FUN%5Y=k^(jLN8zv1m z^Uby*a>yI=4`2+$9ZkcJ70 zJX(`HjWh-g0iMsdtf@wO#L>581_r_FPXv|({}scN09A?8Mr{fl+L3y1MbfVBCGp#J z`5_jT44=7ALH|t5?#142l>nRGZY8B@*WGL2MpNy8DiC2g z>4-)kX}4aKRuvD4S3}N|Td{ z2O7eP#-HBdgh|isQ2gB1TE2oPMSnQ=3es(RtaI6xz!MTKiFvK1qsvDs`}pVBaSktG z^w`n)U6^d9zCTmZO|CH}dSSe$wM)#o;-b75rdL0yVOwyaC37t1C8>i&1yLzJFLNpW zYz&GAXdM@!Tt+1BR`9zWqX0GLE&Q`A(|Sf4RZQpylAC%zuj9f6-|W0-P?~nYW)`a{ z5NPf?T_anE2@Pj+N`E~NG9WlWtoP=$A*QPHcDly#ma=`Q6c|1>=0_HERsG%dGML%T zJ}R2%X93{C3*dFyFW74^Z74GE2;`?G*^RH}+TOEHb}koE+`{T6AhSm5tB($D3F4nk z2!a^9(l?Fe8WnJ&>P#Xq7+*O48Vae_st^)%5SZhE8DvhuxlW*td)<}hUWeQTV^9W& za@!?9(xX=mg6eWv!>uHe`9tXbG#rrktZ@LJKLh+Zva8UPdZ4QMs}lzL?S$aGx~7<# zBsWAd_W?s3>%D7>s3J*wx}-hcfRB?sko=qr9;E_DNYKT4wqcq-aTF3kcsY$i4{|+Y zzaqL0Lsp0_b9;WBn_fzSOmjeF zQ%Xgi_?)zXO_MFVFRopL>DTEqA4|Kk(QRbpXB$EYD5Y((O(F`kFef>Ywa+P8qkHO~IQ zi95c;j-q#E%~k+YnVSXevK!6?Z%O1vvD z`{eMmM)5W+Mf6<|kb%+S@?9oCY&Fww@S`IM1Q-zd3M?*bx3(~1H=6V|q?5-7M&~u^ z!`J>{)`_8F#LT%iq^$MOm(U^aFbDH%u`dKuS$ME`I_o%4uzD& zG#4_S7--2!6asF^Gp@wMPXOt+CA&k_(>i{?LueZ)$dYE*&Fl9vD1FuuqqEf1D-6=I z_mJlvpcD-eH$odhaScC9xvjSdF2cBL=(pG`Z~(EZSbUR{=?lXPZIikRSF za@AR_%;hR@vaEL*mRq-g;qW+>naRA*K3t}|XgoEAd7)LB6Xk!O%c>N_zc~d=@~;!%iv;G_YtVB)X5H`O3$kc9Biu$w?Z`dkqD?DV5>BtsSs2T?_Q*ZLGBal;M1V^9y$ z$Nl!Sz^eBniFK71xWsmHd~|6h=Yjif#Yi{7q=W?6Pqu`dQ0G+a^Mr3h@yLGh`oUH1 zJ{{&iVbt2#WQOv&)<83mUQa-jl+@Q$z|OQf*SNR2Vpr6JsLFd@LaTHW+PDmBe zX_mp1$k45qG1Y=~suGHDbh7-?|m|wZbMfC>5ni?jg%UCO;53W@m@ntm-%P_DjBKD#7p_ z=0!bR;GmPPr7Ho46R^rlL+#7*dmGX$gmM6&S8FUCpnAJc@s=mRQ-dHLh+rF10-*zG zbpXynVn{59pw&Q_eUJm)0}?os{fIbP(PSD(r?R}}1EGwzOGbDpFrVf4VAD*7B{)G; z2jgrDm`KL#pE~cD9Gle}+r0!GUO<(K*l|uotv-YUA{?D%9syQiSrRnz zfG#k#WxZAI73IqQ;KcT;;e^DB9E;ZjY$r+W!j29EkR7aX{kAkM-<$!lw>&HlJhDvH zpB2~M!zdQHqXBGg?7;E>ma0pi&Qn z*BqV?RpvT~|3M{8_>f<806Q+U#%%-?GAG`J_W0btRyu!T3q_Gn7f-p%y#5#vp)}2x zPiTSn!yBu+1RT4=8TPG-TpV@V3lFz#wjs{;4a&%1_jlQRcZ!T8zR=$G`OErlq$OLnR) z0Lz^8P1v`&P%0-fpD;zyR$r+KgO8G6!QyX2nA*re1tw2p!={$1dz3=_Xxvn`#hY_) zZ`*IhJ{ynENwlxO1b^H>Z-&z3+q$+wHud6F28cZUp3(w?NBBzX>XrQkeU>)aiU^=m z_?c=W@~$cV2?U|Wlp8rX2a8cncZ`EW#G!@bXo8>ni4$sN@~bblb8}j}q)ht6?ok)q zlt@GGGEPWzrKf5IL=JV~w6VRzd0Yf~>{f&~_z~y5^p<51^94wkDlb$7GeG(L1x14BsSg8BJmev?!HQvm zF$)_cMtMcmz64(p4{+R_OhDdZH?o@?xoL0)tV;%mBMPDRo;o?b=+=c|`f>fKULsU8 zDx#-Dm8M3>%ZE4h-`y>P`Prsp8>@PKi1Bu*_pVK`h%)fez9n>ogZHj*W&klFF~-^? z0YqoYP@^6I@Q2myPM&gPT;?fVOsuys=Rs1kNC}uR1}dd}XWX-%a#{47!-6|HfkRc~ z<}&bRxyW{58e0HTK;^fbP3-5QWPc66R1EM3(Ln(;C&qB2CYQt};kyixDLtR>M;ZgK zJKYKB)ocj(P}Ie7tFVU^XzUX8@ z4A=wd|K;7H()BvBPliBi-hn`hi$au;=&+Kz&NNMyh0 zDm2CqrKJo-Wf?y(64G|G$`5b?Por&cny6sh`icd=D!QPpl}s^rd@egJMsA~6tA<5;k(m8Eo(ry9VSF!nz&9nJhms^F3>B7}LD=8hwmAOlGXlsTlAzhsp zINKf3_`c>!CX2RzV_M~fKzd_sI?}ewvwIY-fG-)zase|m$q$@Q#0L_UBQ&6vbT-R&jPQpHMD_W>HtlqkDB`_?}zr9 zF+)SX;ysERaS-&HQtD=>gC>RDNT;AO1P^nPV26C`+INPBQYpD%*08424X~ICi4l>;lbw9WZ9@Ukm74Ot_ zypVUFRYBC4<+x6_SyCplrEtY*sU+f~Cz<-{G!_hb2)jfRD9^z58fw79o|~SZq&7K$ zFh$j<@Y{(6X+b`;8{Ku5IM#rgI^V{5gV8s^Gv;d zjMXF?+q*>0^`#lnyUH;O1xc-&qFI4$5b||=!h}*_V|gX&khyJYevvfedYJDX0v?%! z#9!94upxXtPth6cp88H5Vqc+K3M#m{*?zUz0E3St?6-?IuINuh<3A8*YC8dOsT^4& z#h?7}_l=|8HT1w`%v7*dVAJ;cl>R-EK58Y8{7Ai3V9z-!b^E{?Iw59g6~bQyvJ=R) z7G8gJo9$zonLZ!r-^Q=QZ}_ORZwymPfcl_7AkJ1ZvO|#2y-<;(qe@{fOc7V~`ye;- zE(TlFzNykmJjNgOankLaVmfYKEez#}hG;>wvpodB0PYjIw$$AR76eai52r{@LFdO} za1;NOxL+ll+-6LCjh`smZ3rsh(&Q?MgftF2i@r6>8+pR@lj)!nrS{5rz#ZNs)p0l! zqV)7$-Ro`#g6h_O4UbQcA~GhXCC{71f55X^?nt*`{I22P-6w%zVlnmT{ zIwakkQ_~=-wc@0@bl!w*xF=D<5Ve98-qc+-E}+KN-G0PVv-uEoqPi05q6^~VM%0DT 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�DRfkTH0;;hm?uiZFN`R8i=E-C!W8=)5sFVS}e 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 diff --git a/datasets/analyzedprojects.csv b/datasets/analyzedprojects.csv new file mode 100644 index 0000000..98b7ab5 --- /dev/null +++ b/datasets/analyzedprojects.csv @@ -0,0 +1,26985 @@ +project,owner,language,hasYaml,hasRequirements,hasPoms,stages,hasBuildStage,hasTestStage,hasDeployStage,hasCustomDeployStage +ModioAB/base-image,ModioAB,Python,true,false,false,4,true,false,true,true +swe-nrb/sbp-begreppslista,swe-nrb,JavaScript,true,false,false,3,true,false,true,false +redmic-project/client/web,redmic-project,JavaScript,true,false,false,5,true,true,false,false +assembl/assembl,assembl,JavaScript,true,false,false,5,true,true,false,false +geometalab/osmybiz,geometalab,JavaScript,true,false,false,4,true,true,true,false +foci-open-source/Foci.OrbitalBus,foci-open-source,C#,true,false,false,6,true,true,true,true +cloudigrade/frontigrade,cloudigrade,JavaScript,true,false,false,5,true,true,true,true +cmc_system/cmc,cmc_system,JavaScript,true,false,false,4,true,true,true,false +PPL2018csui/Kelas-A/Kel-5,PPL2018csui,JavaScript,true,false,false,3,true,true,true,false +sbarthelemy/conan-public-recipes,sbarthelemy,Python,true,false,false,6,true,true,false,false +pleio/pleio,pleio,PHP,true,false,false,3,true,true,true,false +Radiophonix/Radiophonix,Radiophonix,PHP,true,false,false,4,true,true,true,true +mergetb/engine,mergetb,Go,true,false,false,4,true,true,true,false +arturlwwwmods/ArtUrlWWW_MegaMod,arturlwwwmods,Python,true,false,false,1,true,false,false,false +akeinhell/redfoxbot,akeinhell,PHP,true,false,false,3,true,true,true,false +trustable/distros/minimal-distro,trustable,Python,true,false,false,4,true,true,true,false +PPL2017csui/PPLB5,PPL2017csui,JavaScript,true,false,false,3,true,true,true,false +corunahacks/2018/aloha/aloha-front,corunahacks,JavaScript,true,false,false,4,true,true,true,true +PPL2018csui/Kelas-A/Kel-1,PPL2018csui,JavaScript,true,false,false,4,true,true,true,false +masakura/issues,masakura,C#,true,false,false,3,true,true,true,false +jankubierecki/UEKPartnership,jankubierecki,Python,true,true,false,3,true,true,false,false +kimlab/kmbio,kimlab,Python,true,false,false,4,true,true,true,false +kimlab/pagnn,kimlab,Python,true,false,false,5,true,true,true,false +monetha/ico-rating-web,monetha,JavaScript,true,false,false,2,false,false,false,false +hendisantika/siap-diskanlut,hendisantika,JavaScript,true,false,true,2,true,false,true,false +mergetb/site,mergetb,Python,true,false,false,1,true,false,false,false +hotfury/Multitask,hotfury,C#,true,false,false,3,true,false,true,false +openrail/uk/common-nodejs,openrail,JavaScript,true,false,false,3,true,true,true,false +tottokotkd/hinapedia,tottokotkd,JavaScript,true,false,false,4,true,true,true,false +sat-mtl/telepresence/scenic-core,sat-mtl,JavaScript,true,false,false,4,true,true,true,false +harbottle/epypel,harbottle,Ruby,true,false,false,4,true,true,true,false +tabi/tabi-backend,tabi,Go,true,false,false,3,true,true,true,false +francois.travais/1tipi2bicycles,francois.travais,Python,true,false,false,5,true,true,true,false +mrvik/jdrive,mrvik,JavaScript,true,false,false,2,true,true,false,false +Valtech-Amsterdam/MvcHoneyPot,Valtech-Amsterdam,JavaScript,true,false,false,2,true,false,true,false +gl-support/gitlab-support-bot,gl-support,Ruby,true,false,false,3,true,true,true,false +offcourse/ui-components,offcourse,JavaScript,true,false,false,2,true,false,true,false +tedtramonte/TalentedDiscord,tedtramonte,Python,true,false,false,2,true,false,true,false +mergetb/xir,mergetb,Go,true,false,false,1,true,false,false,false +the-spartans/Dashboard,the-spartans,JavaScript,true,false,false,3,true,true,true,false +brd.com/brd.js,brd.com,JavaScript,true,false,false,5,true,true,true,true +TemplateMonster/PlasmaPlatform/Frontend/Plasma-Vendors,TemplateMonster,JavaScript,false,false,false,0,false,false,false,false +htagen/sadarada,htagen,JavaScript,true,false,false,2,true,false,true,false +courcelm/clmsvault,courcelm,JavaScript,true,false,false,1,true,false,false,false +project-meerkat/concierge,project-meerkat,Python,true,true,false,3,true,true,true,false +Sk1f3r/eoxer-web,Sk1f3r,JavaScript,true,false,false,4,true,true,false,false +enterit/rtpomodoro,enterit,JavaScript,true,false,false,2,true,false,true,false +fsfe/fsfe-cd,fsfe,Python,true,false,false,4,true,true,true,false +angular-material-home/apps/amh-elearn,angular-material-home,JavaScript,true,false,false,2,true,false,true,false +cleanunicorn/eth-tipper,cleanunicorn,Go,true,false,false,3,true,true,true,false +uspcodelab/projects/iris/api,uspcodelab,Python,true,true,false,3,true,false,true,true +angular-material-dashboard/apps/my-dashboard,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false +brianwald/gitlab-training-library,brianwald,JavaScript,true,false,false,5,true,true,true,false +angular-material-home/apps/amh-home,angular-material-home,JavaScript,true,false,false,2,true,false,true,false +javi31170/cicd-pipeline-train-schedule-dockerdeploy,javi31170,JavaScript,true,false,false,3,true,false,true,false +leberwurscht/teardownwalls,leberwurscht,JavaScript,false,false,false,0,false,false,false,false +technomancy/leiningen,technomancy,Clojure,false,false,false,0,false,false,false,false +jonan/bugscontrol,jonan,Java,false,false,false,0,false,false,false,false +ameer1234567890/onlinenandroid,ameer1234567890,Shell,false,false,false,0,false,false,false,false +sigmavirus24/github3-py,sigmavirus24,Python,false,true,false,0,false,false,false,false +ingoha/et-vm,ingoha,Shell,false,false,false,0,false,false,false,false +fammed-mcmaster/dfm-plone-hosting-buildout,fammed-mcmaster,Python,false,false,false,0,false,false,false,false +monty/mads,monty,C,false,false,false,0,false,false,false,false +tigefa/owncloud,tigefa,PHP,false,false,false,0,false,false,false,false +tigefa/jekyll,tigefa,Ruby,false,false,false,0,false,false,false,false +mardy/speculo,mardy,C,true,false,false,3,true,true,true,false +coderaiser/cloudcmd,coderaiser,JavaScript,false,false,false,0,false,false,false,false +berenm/dwarf-fortress,berenm,C++,false,false,false,0,false,false,false,false +mardy/mappero,mardy,C++,true,false,false,2,true,true,false,false +fascx/lib_fx,fascx,C,false,false,false,0,false,false,false,false +gitlab-org/gitlab-pygments-rb,gitlab-org,C,false,false,false,0,false,false,false,false +chamba/theblueplanet,chamba,,false,false,false,0,false,false,false,false +gilgil/test,gilgil,,false,false,false,0,false,false,false,false +zlu/foo,zlu,,false,false,false,0,false,false,false,false +wvm/wp-cli,wvm,PHP,false,false,false,0,false,false,false,false +farly/marketbtc2,farly,JavaScript,false,false,false,0,false,false,false,false +mystudy/boost_log,mystudy,C++,false,false,false,0,false,false,false,false +gitlab-org/gollum-lib,gitlab-org,Ruby,true,false,false,1,false,true,false,false +gitlab-org/linguist,gitlab-org,Ruby,false,false,false,0,false,false,false,false +chris.harris/vtk,chris.harris,C++,false,false,false,0,false,false,false,false +gitlab-org/omniauth-ldap,gitlab-org,Ruby,true,false,false,1,false,true,false,false +magraine/crayons-mots,magraine,PHP,false,false,false,0,false,false,false,false +magraine/saisie-fichiers,magraine,PHP,false,false,false,0,false,false,false,false +magraine/jplayer,magraine,JavaScript,false,false,false,0,false,false,false,false +magraine/vortaro,magraine,PHP,false,false,false,0,false,false,false,false +42dev/apache-error-pages,42dev,PHP,false,false,false,0,false,false,false,false +anubia/anubia-openerp-addons,anubia,Python,false,false,false,0,false,false,false,false +mhwalker/RutgersAODReader,mhwalker,C++,false,false,false,0,false,false,false,false +catedra_c/explicaciones,catedra_c,TeX,false,false,false,0,false,false,false,false +CiaranG/barrel,CiaranG,Lua,false,false,false,0,false,false,false,false +chaica/debian-package-builder,chaica,,false,false,false,0,false,false,false,false +arel/docker-codebox,arel,,false,false,false,0,false,false,false,false +CiaranG/health,CiaranG,Lua,false,false,false,0,false,false,false,false +standard/high-availability,standard,,false,false,false,0,false,false,false,false +sigmavirus24/uritemplate-py,sigmavirus24,Python,false,false,false,0,false,false,false,false +hatreds-tools/task-timer,hatreds-tools,C++,false,false,false,0,false,false,false,false +pecd/sedf-theme,pecd,CSS,false,false,false,0,false,false,false,false +bibliotecha/bibliotecha,bibliotecha,JavaScript,false,false,false,0,false,false,false,false +iankelling/visible-mark,iankelling,EmacsLisp,false,false,false,0,false,false,false,false +fedora-ruby/isitfedoraruby,fedora-ruby,Ruby,false,false,false,0,false,false,false,false +koter84/emma,koter84,Python,false,false,false,0,false,false,false,false +phansch/100-projects,phansch,Ruby,false,false,false,0,false,false,false,false +thadeu/skeleton,thadeu,Ruby,false,false,false,0,false,false,false,false +meagan/daysincelasttechincident,meagan,HTML,false,false,false,0,false,false,false,false +raspberrypi-projects/rpi-airpiano,raspberrypi-projects,PHP,false,false,false,0,false,false,false,false +meagan/java_server,meagan,Java,false,false,false,0,false,false,false,false +meagan/design-patterns-in-ruby,meagan,Ruby,false,false,false,0,false,false,false,false +glyph/pip2014,glyph,Shell,false,false,false,0,false,false,false,false +sixohsix/simplecoremidi,sixohsix,C,false,false,false,0,false,false,false,false +bodil/baconts,bodil,TypeScript,false,false,false,0,false,false,false,false +mechanicalgirl/django-logging-middleware,mechanicalgirl,Python,false,false,false,0,false,false,false,false +bodil/bodol,bodil,Clojure,false,false,false,0,false,false,false,false +wuest/.skeleton,wuest,Vimscript,false,false,false,0,false,false,false,false +multoo/router,multoo,PHP,true,false,false,1,false,true,false,false +standard/gitlab-drbd,standard,Ruby,false,false,false,0,false,false,false,false +poulet_a/rubyhelper,poulet_a,Ruby,false,false,false,0,false,false,false,false +agilob/qfakturat,agilob,C++,true,false,false,2,true,true,false,false +MarkEWaite/git-client-plugin,MarkEWaite,Java,false,false,true,0,false,false,false,false +wuest/console-glitter,wuest,Ruby,false,false,false,0,false,false,false,false +Su-Shee/perlsnippets,Su-Shee,Perl,false,false,false,0,false,false,false,false +acheng/unix_notes,acheng,HTML,false,false,false,0,false,false,false,false +adin/git-ignore,adin,,false,false,false,0,false,false,false,false +pycqa/mccabe-console-script,pycqa,Python,false,false,false,0,false,false,false,false +balajisi/emacs,balajisi,EmacsLisp,false,false,false,0,false,false,false,false +benjamin.l.johnson/rpios,benjamin.l.johnson,Makefile,false,false,false,0,false,false,false,false +mistydemeo/gentle-raetikon,mistydemeo,,false,false,false,0,false,false,false,false +aspark/mybus,aspark,C#,false,false,false,0,false,false,false,false +fdroid/androidpinning,fdroid,Java,false,false,false,0,false,false,false,false +paulsutherland/webrtc,paulsutherland,JavaScript,false,false,false,0,false,false,false,false +hkcdc/newhope,hkcdc,C#,false,false,false,0,false,false,false,false +matlab/dqrobotics_extra,matlab,Matlab,false,false,false,0,false,false,false,false +alejandrosantana/wip-odoo-modules,alejandrosantana,,false,false,false,0,false,false,false,false +ragdollphysics/zonebuilder,ragdollphysics,C++,false,false,false,0,false,false,false,false +abompard/dokuwiki-fields,abompard,PHP,false,false,false,0,false,false,false,false +abompard/dokuwiki-odt,abompard,PHP,false,false,false,0,false,false,false,false +abompard/audio-tools,abompard,Python,false,false,false,0,false,false,false,false +mustafa/sass-and-susy-setup,mustafa,CSS,false,false,false,0,false,false,false,false +mawalker/schmear,mawalker,Java,false,false,false,0,false,false,false,false +Ricardolupiano/participabr,Ricardolupiano,Java,false,false,false,0,false,false,false,false +Moreira/participabr,Moreira,Java,false,false,false,0,false,false,false,false +LaraBeatriz/participabr,LaraBeatriz,Java,false,false,false,0,false,false,false,false +noosferogov/participa2-theme,noosferogov,CSS,false,false,false,0,false,false,false,false +quanpt/geoportal-server,quanpt,Java,false,false,false,0,false,false,false,false +nomic/nomic,nomic,JavaScript,false,false,false,0,false,false,false,false +Smibu/elmanager,Smibu,C#,false,false,false,0,false,false,false,false +bart.bania/rrdtool,bart.bania,CSS,false,false,false,0,false,false,false,false +softwarepublico/labsei,softwarepublico,TeX,false,false,false,0,false,false,false,false +nell/dota2py,nell,Python,false,true,false,0,false,false,false,false +softwarepublico/colabdocumentation,softwarepublico,TeX,false,false,false,0,false,false,false,false +hello-world/angularjs-firstday,hello-world,JavaScript,false,false,false,0,false,false,false,false +erqee/python-mail-sender,erqee,Python,false,false,false,0,false,false,false,false +erqee/mysql-routine-live-grab-bank-indonesia-rate-exchange,erqee,PLSQL,false,false,false,0,false,false,false,false +coraline/new2ruby,coraline,,false,false,false,0,false,false,false,false +raulhc/tecnologia-revolucionaria,raulhc,JavaScript,false,false,false,0,false,false,false,false +popcorn-time-tv/ffmpeg,popcorn-time-tv,C,false,false,false,0,false,false,false,false +softwarepublico/trac-colab-plugin,softwarepublico,Shell,false,false,false,0,false,false,false,false +mytux/ftpbackup,mytux,Shell,false,false,false,0,false,false,false,false +andreascian/oh-my-zsh,andreascian,Vimscript,false,false,false,0,false,false,false,false +toyokazu/internet-visualizer,toyokazu,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/gitlab-test,gitlab-org,Ruby,false,false,false,0,false,false,false,false +xonotic/xonotic-nexcompat.pk3dir,xonotic,ShaderLab,false,false,false,0,false,false,false,false +xonotic/gmqcc,xonotic,C++,false,false,false,0,false,false,false,false +emacs-stuff/python-import-add,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +popcorn-time-tv/popcorn-time-art,popcorn-time-tv,,false,false,false,0,false,false,false,false +popcorn-time-tv/popcorn-time-website,popcorn-time-tv,HTML,false,false,false,0,false,false,false,false +popcorn-time-tv/popcorn-time-streamer,popcorn-time-tv,JavaScript,false,false,false,0,false,false,false,false +skennedy/project_scrum_method,skennedy,Python,false,false,false,0,false,false,false,false +dexots/surgery-training-curriculum-system,dexots,C++,false,false,false,0,false,false,false,false +gilgil/_clear,gilgil,Batchfile,false,false,false,0,false,false,false,false +agilob/id-hash,agilob,Java,false,false,false,0,false,false,false,false +adin/guia-documentos-tecnicos,adin,TeX,true,false,false,1,false,true,false,false +meonkeys/pandoc-dot-svg-hack,meonkeys,Python,false,false,false,0,false,false,false,false +rizon/acid,rizon,Python,true,false,false,1,false,true,false,false +aleph-omega/flybase,aleph-omega,,false,false,false,0,false,false,false,false +svaksh/ira,svaksh,JupyterNotebook,false,false,false,0,false,false,false,false +avalanchy/testing-gitlab,avalanchy,Python,false,false,false,0,false,false,false,false +practicas/charlaangularjs,practicas,,false,false,false,0,false,false,false,false +oswaldl2/game1,oswaldl2,,false,false,false,0,false,false,false,false +gzw/lucene,gzw,CSS,false,false,false,0,false,false,false,false +bobey/laboard,bobey,JavaScript,false,false,false,0,false,false,false,false +kapiltomar/ionicapp,kapiltomar,JavaScript,false,false,false,0,false,false,false,false +JobV/demo-project,JobV,,false,false,false,0,false,false,false,false +no9/udt4,no9,C++,false,false,false,0,false,false,false,false +pranavmane/pogo-flip,pranavmane,C++,false,false,false,0,false,false,false,false +xivo.solutions/play-authentication,xivo.solutions,Scala,false,false,false,0,false,false,false,false +qwasli/richtexttoolbar-vaadin-addon,qwasli,Java,false,false,true,0,false,false,false,false +cakephp-2-x-plugins/tagcloud,cakephp-2-x-plugins,PHP,false,false,false,0,false,false,false,false +yuriy.kulikov.87/alarmclock,yuriy.kulikov.87,Java,false,false,false,0,false,false,false,false +rf24mesh/rf24mesh-arduino,rf24mesh,C++,false,false,false,0,false,false,false,false +emacs-stuff/fasd-shell,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +sn0b/fp1-epo-autoupdate,sn0b,Java,false,false,false,0,false,false,false,false +loopvid/scripts,loopvid,JavaScript,false,false,false,0,false,false,false,false +emacs-stuff/html2jade,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +syminal/syminal.bloorg,syminal,HTML,false,false,false,0,false,false,false,false +testprogramacion/testproyecto,testprogramacion,Java,false,false,false,0,false,false,false,false +gkardava/reeraser,gkardava,C#,false,false,false,0,false,false,false,false +vhuayta/js-vhuayta,vhuayta,JavaScript,false,false,false,0,false,false,false,false +free-electrons-labs/dka-game,free-electrons-labs,CoffeeScript,false,false,false,0,false,false,false,false +banana-code/participation-frontend,banana-code,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/html-pipeline-gitlab,gitlab-org,Ruby,false,false,false,0,false,false,false,false +g-gundam/g-gundam,g-gundam,Racket,false,false,false,0,false,false,false,false +jeacaveo/planning_70,jeacaveo,Python,false,false,false,0,false,false,false,false +erynofwales/gyro,erynofwales,Objective-C,false,false,false,0,false,false,false,false +denemo/denemo,denemo,C,false,false,false,0,false,false,false,false +mads/Mads.jl,mads,Julia,true,false,false,1,false,true,false,false +ramma/obs-profile-script,ramma,Python,false,false,false,0,false,false,false,false +yuanbohan/trigger-webhook,yuanbohan,Clojure,false,false,false,0,false,false,false,false +serpro/learngitbranching,serpro,JavaScript,false,false,false,0,false,false,false,false +serpro/kanban,serpro,JavaScript,false,false,false,0,false,false,false,false +duckinator/ruby-mvp-browser,duckinator,Ruby,false,false,false,0,false,false,false,false +eazel7/origami-main,eazel7,JavaScript,false,false,false,0,false,false,false,false +clanehin/clanepilot,clanehin,,false,false,false,0,false,false,false,false +BeS/presentations,BeS,TeX,false,false,false,0,false,false,false,false +meonkeys/meteor-boilerplate-coffeescript,meonkeys,HTML,false,false,false,0,false,false,false,false +sgdf/public-files,sgdf,,false,false,false,0,false,false,false,false +OK2NMZ/thesis-fso,OK2NMZ,C,false,false,false,0,false,false,false,false +vala-development/vala-idea-plugin,vala-development,Java,false,false,false,0,false,false,false,false +eazel7/origami-openshift-deploy,eazel7,JavaScript,false,false,false,0,false,false,false,false +kanban/wsserver,kanban,Erlang,false,false,false,0,false,false,false,false +little-oni/weissschwartzonline,little-oni,Java,false,false,false,0,false,false,false,false +qwasli/component-help,qwasli,Java,false,false,true,0,false,false,false,false +multoo/datatable,multoo,PHP,true,false,false,1,false,true,false,false +multoo/twig,multoo,PHP,true,false,false,1,false,true,false,false +Emeraude/magic-models,Emeraude,JavaScript,false,false,false,0,false,false,false,false +vindarel/gulp-rapyd,vindarel,JavaScript,false,false,false,0,false,false,false,false +hadinug/xamzofw,hadinug,PHP,false,false,false,0,false,false,false,false +rjoy/cmqi-website,rjoy,,false,false,false,0,false,false,false,false +anarcat/mr-bill-anarchy,anarcat,Python,false,false,false,0,false,false,false,false +ermacmk/site-imagem,ermacmk,JavaScript,false,false,false,0,false,false,false,false +tchaik/gedit-my-plugins,tchaik,Python,false,false,false,0,false,false,false,false +microbelog/manifest,microbelog,,false,false,false,0,false,false,false,false +aosplus/device_moto_shamu,aosplus,C++,false,false,false,0,false,false,false,false +emacs-stuff/discover-packages,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +askhl/gpaw-old-test-gitlab,askhl,Python,false,false,false,0,false,false,false,false +without-trust/tubsassign,without-trust,Java,false,false,false,0,false,false,false,false +without-trust/assignment,without-trust,Java,false,false,false,0,false,false,false,false +Kreozot/adentro,Kreozot,JavaScript,false,false,false,0,false,false,false,false +romain/stack-processor,romain,PHP,false,false,false,0,false,false,false,false +smc/fonts/suruma,smc,Makefile,false,false,false,0,false,false,false,false +fgsl/fgslwebapp,fgsl,JavaScript,false,false,false,0,false,false,false,false +smc/chathans,smc,Makefile,false,false,false,0,false,false,false,false +mattia/ansible,mattia,Shell,false,false,false,0,false,false,false,false +jamesthomas/baserock-flashing-tools,jamesthomas,Shell,false,false,false,0,false,false,false,false +mitkin/loop_wrapper,mitkin,Python,false,false,false,0,false,false,false,false +aosplus/platform_vendor_moto,aosplus,Makefile,false,false,false,0,false,false,false,false +wicky-info/blackpearl-code,wicky-info,,false,false,false,0,false,false,false,false +xivoxc/webpanelsamples,xivoxc,JavaScript,false,false,false,0,false,false,false,false +yamadapc/image-blur,yamadapc,Haskell,false,false,false,0,false,false,false,false +ehemsley/rubykov,ehemsley,Ruby,false,false,false,0,false,false,false,false +meonkeys/meteor-elo-rating-simulator,meonkeys,JavaScript,false,false,false,0,false,false,false,false +maaaks/ongra,maaaks,CSS,false,false,false,0,false,false,false,false +mcepl/gg_scraper,mcepl,Python,false,false,false,0,false,false,false,false +ataiemajid_63/datalist,ataiemajid_63,JavaScript,false,false,false,0,false,false,false,false +k2wl/g2_kernel,k2wl,,false,false,false,0,false,false,false,false +tfabre/vintage,tfabre,HTML,false,false,false,0,false,false,false,false +matutine/brochures,matutine,TeX,false,false,false,0,false,false,false,false +keeds/cljsinit,keeds,JavaScript,false,false,false,0,false,false,false,false +perrinjerome/palo_olap,perrinjerome,C++,false,false,false,0,false,false,false,false +apmsoft/fancy-up-php,apmsoft,JavaScript,false,false,false,0,false,false,false,false +johannh/file-replication,johannh,Java,false,false,false,0,false,false,false,false +webgradus/kms,webgradus,Ruby,false,false,false,0,false,false,false,false +fgirardey/sucss,fgirardey,CSS,false,false,false,0,false,false,false,false +smc/fonts-preview-site,smc,HTML,false,false,false,0,false,false,false,false +ehsanabbasi/login,ehsanabbasi,PHP,false,false,false,0,false,false,false,false +yargo/plog,yargo,Perl,false,false,false,0,false,false,false,false +svaksha/yaksha,svaksha,Shell,false,false,false,0,false,false,false,false +gangareddy.ts/machine_lesrning_by_andrew_ng,gangareddy.ts,Matlab,false,false,false,0,false,false,false,false +soukron/tmux,soukron,Shell,false,false,false,0,false,false,false,false +startbbs/startbbs,startbbs,PHP,false,false,false,0,false,false,false,false +svaksha/scientia,svaksha,,false,false,false,0,false,false,false,false +asm/dotfiles,asm,EmacsLisp,false,false,false,0,false,false,false,false +sorin_postelnicu/the-hierarchy,sorin_postelnicu,,false,false,false,0,false,false,false,false +spenibus/cors-everywhere-firefox-addon,spenibus,JavaScript,false,false,false,0,false,false,false,false +mahdaen/domlist,mahdaen,JavaScript,false,false,false,0,false,false,false,false +standard/gitlab-backup,standard,Ruby,false,false,false,0,false,false,false,false +Manizuca/fenneclocales,Manizuca,HTML,false,false,false,0,false,false,false,false +duckinator/browsebug,duckinator,Ruby,false,false,false,0,false,false,false,false +dbu/varnish-workshop,dbu,PHP,false,false,false,0,false,false,false,false +mcepl/manuscript,mcepl,TeX,false,false,false,0,false,false,false,false +ccliu52/my-Awesome-project,ccliu52,,true,false,false,1,true,false,false,false +dokku-alt/dokku-alt,dokku-alt,Shell,false,false,false,0,false,false,false,false +abompard/rhizom,abompard,JavaScript,false,false,false,0,false,false,false,false +gclone/gflags,gclone,C++,false,false,false,0,false,false,false,false +gclone/googletest,gclone,C++,false,false,false,0,false,false,false,false +gclone/google-glog,gclone,C++,false,false,false,0,false,false,false,false +anubia/factura-e,anubia,,false,false,false,0,false,false,false,false +soodeh/workloads,soodeh,JupyterNotebook,false,false,false,0,false,false,false,false +hellvesper/yii2-gallery-widget,hellvesper,PHP,false,false,false,0,false,false,false,false +Dry-Jins/clojure-scheme,Dry-Jins,Clojure,false,false,false,0,false,false,false,false +padawanphysicist/tw5-mathdown,padawanphysicist,JavaScript,false,false,false,0,false,false,false,false +Hounge/Codeigniter-Starter-Panel,Hounge,HTML,false,false,false,0,false,false,false,false +chrisamanse/php-mvc,chrisamanse,PHP,false,false,false,0,false,false,false,false +yaosma-dev-team/yaosma,yaosma-dev-team,Java,false,false,false,0,false,false,false,false +mojo42/angfsm,mojo42,C,false,false,false,0,false,false,false,false +Potter/GifCam,Potter,Java,false,false,false,0,false,false,false,false +mcepl/jbrout_II,mcepl,Python,false,false,false,0,false,false,false,false +alireza7991/android_native_framework,alireza7991,C,false,false,false,0,false,false,false,false +louisbl/dokuwiki-hipchat,louisbl,PHP,false,false,false,0,false,false,false,false +egh/org-pdcite,egh,EmacsLisp,false,false,false,0,false,false,false,false +mrenek/biome,mrenek,PHP,false,false,false,0,false,false,false,false +physikerwelt/MathMLQueryGenerator,physikerwelt,Java,false,false,true,0,false,false,false,false +GreatShift/PSExtended,GreatShift,C++,false,false,false,0,false,false,false,false +mirkowaechter/hierarchicalsegmentation,mirkowaechter,C++,false,false,false,0,false,false,false,false +ember-dev/kodi,ember-dev,C++,false,false,false,0,false,false,false,false +bible_sword/CzeKMS,bible_sword,HTML,false,false,false,0,false,false,false,false +nguyenbathanh/Bootstrap-Admin-Template,nguyenbathanh,HTML,false,false,false,0,false,false,false,false +mcepl/bayeux,mcepl,Python,false,false,false,0,false,false,false,false +MathieuMD/ansible-role-common,MathieuMD,Shell,false,false,false,0,false,false,false,false +vindarel/abelujo-website,vindarel,Python,true,true,false,1,false,false,true,false +_akoch/brimir,_akoch,Ruby,false,false,false,0,false,false,false,false +ruthtillman/mycoderef,ruthtillman,HTML,false,false,false,0,false,false,false,false +ruthtillman/yourls-linklist,ruthtillman,PHP,false,false,false,0,false,false,false,false +arlininger/CS6402-code,arlininger,Python,false,false,false,0,false,false,false,false +joice/harbour-callrecorder,joice,C++,false,false,false,0,false,false,false,false +hampel-soft/hse/dokuwiki-gitlabapi,hampel-soft,PHP,false,false,false,0,false,false,false,false +shared-puppet-modules-group/nagios,shared-puppet-modules-group,Perl,false,false,false,0,false,false,false,false +raabf/zotero-open-with,raabf,JavaScript,false,false,false,0,false,false,false,false +aneks.vi/test,aneks.vi,,false,false,false,0,false,false,false,false +szs/CppSs,szs,C++,false,false,false,0,false,false,false,false +jm-dev/jm-sql-desktop,jm-dev,Java,false,false,false,0,false,false,false,false +iceboy/ImageGrumbler,iceboy,C#,false,false,false,0,false,false,false,false +9kopb/9kopb.github.io,9kopb,CSS,false,false,false,0,false,false,false,false +npverni/war,npverni,Ruby,false,false,false,0,false,false,false,false +mytux/ansible-ftpbackup,mytux,Shell,false,false,false,0,false,false,false,false +git3135/checkstyle,git3135,Java,false,false,true,0,false,false,false,false +mdimjasevic/artifact-eval,mdimjasevic,Shell,false,false,false,0,false,false,false,false +shared-puppet-modules-group/apache,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +jlcc170/dered.scss,jlcc170,CSS,false,false,false,0,false,false,false,false +shared-puppet-modules-group/ekeyd,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/loginrecords,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/lsb,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/passenger,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/perl,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/puppet,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/monkeysphere,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/reprepro,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +tylerhartley/nvd3-test-app,tylerhartley,JavaScript,false,false,false,0,false,false,false,false +Potter/GifCam-backend,Potter,JavaScript,false,false,false,0,false,false,false,false +engen/public,engen,Java,false,false,false,0,false,false,false,false +hydratoolkit/code,hydratoolkit,C,false,false,false,0,false,false,false,false +slav123/alternate-datepicker,slav123,JavaScript,false,false,false,0,false,false,false,false +f2l-flap-2-lock/f2l-flap-2-lock,f2l-flap-2-lock,Java,false,false,false,0,false,false,false,false +wgcv/MyDemoLevelProject,wgcv,,false,false,false,0,false,false,false,false +mtellezgalindo/SlideMenuControllerSwift,mtellezgalindo,Swift,false,false,false,0,false,false,false,false +winiceo/ZrcListView,winiceo,Java,false,false,false,0,false,false,false,false +kristians/SNMPv3,kristians,,false,false,false,0,false,false,false,false +finnoleary/fileception,finnoleary,Assembly,false,false,false,0,false,false,false,false +elpensadorluis/game-of-life,elpensadorluis,JavaScript,false,false,false,0,false,false,false,false +ad-si-2015-1/projeto1,ad-si-2015-1,Java,false,false,false,0,false,false,false,false +ljcampos/Portfolio-of-Works,ljcampos,PHP,false,false,false,0,false,false,false,false +pedronalbert/mostacho-server,pedronalbert,JavaScript,false,false,false,0,false,false,false,false +coala-analyzer/coala,coala-analyzer,Python,false,false,false,0,false,false,false,false +FacturaScripts-Plugins/articulos_plus,FacturaScripts-Plugins,PHP,false,false,false,0,false,false,false,false +hkngoc/battle-cat-guide,hkngoc,,false,false,false,0,false,false,false,false +LarsFreeSoftware/HIIT-timer,LarsFreeSoftware,Java,false,false,false,0,false,false,false,false +mozarcik/mvn-repo,mozarcik,,false,false,false,0,false,false,false,false +rolla/xpncms,rolla,PHP,true,false,false,2,true,false,true,false +diaspora/mattls-diaspora,diaspora,Ruby,false,false,false,0,false,false,false,false +foocorp/librefm,foocorp,Smarty,false,false,false,0,false,false,false,false +gnu-social/mainline,gnu-social,PHP,false,false,false,0,false,false,false,false +iucode-tool/releases,iucode-tool,,false,false,false,0,false,false,false,false +StinkyTwitch/AutoMilling,StinkyTwitch,Lua,false,false,false,0,false,false,false,false +embeddable-common-lisp/ecl-doc,embeddable-common-lisp,EmacsLisp,false,false,false,0,false,false,false,false +libremesh/lime-packages,libremesh,Lua,false,false,false,0,false,false,false,false +RetroShare/Lua4RS,RetroShare,C++,false,false,false,0,false,false,false,false +wesnoth-lt/wesnoth-lt,wesnoth-lt,,false,false,false,0,false,false,false,false +biotransistor/pyglue,biotransistor,Python,false,false,false,0,false,false,false,false +biotransistor/hweb,biotransistor,HTML,false,false,false,0,false,false,false,false +biotransistor/annot,biotransistor,Python,false,false,false,0,false,false,false,false +biotransistor/mycircos,biotransistor,Python,false,false,false,0,false,false,false,false +biotransistor/mydrugbank,biotransistor,Python,false,false,false,0,false,false,false,false +biotransistor/pygenometrack,biotransistor,Python,false,false,false,0,false,false,false,false +genhydro/genhydro,genhydro,Python,false,false,false,0,false,false,false,false +podwrite/podwrite,podwrite,Shell,false,false,false,0,false,false,false,false +pwn2dict/pwn2dict,pwn2dict,Python,false,false,false,0,false,false,false,false +learn-java-the-hard-way/learn-java-the-hard-way,learn-java-the-hard-way,TeX,false,false,false,0,false,false,false,false +learn-x-the-hard-way/gilxa1226s-learn-x-the-hard-way,learn-x-the-hard-way,JavaScript,false,false,false,0,false,false,false,false +minetest-xpmod/xp,minetest-xpmod,Lua,false,false,false,0,false,false,false,false +cnst/mdoc.su,cnst,,false,false,false,0,false,false,false,false +divers/pdoo,divers,PHP,false,false,false,0,false,false,false,false +facil/sqil-2014,facil,Smarty,false,false,false,0,false,false,false,false +gnutls/cerbero,gnutls,Python,false,false,false,0,false,false,false,false +sbires/sbires,sbires,HTML,false,false,false,0,false,false,false,false +am335x/linux-am33x,am335x,,false,false,false,0,false,false,false,false +radio-fisher/bao21cm,radio-fisher,Python,false,false,false,0,false,false,false,false +random-quintessence/random-quintessence,random-quintessence,Python,false,false,false,0,false,false,false,false +flatmander/flatmander,flatmander,Python,false,false,false,0,false,false,false,false +fgtools/cmake-test,fgtools,C,false,false,false,0,false,false,false,false +fgtools/crossfeed,fgtools,C++,false,false,false,0,false,false,false,false +qrpc/qrpc,qrpc,C++,false,false,false,0,false,false,false,false +ideasman42/whirlstrom,ideasman42,Python,false,false,false,0,false,false,false,false +evol/evol-local,evol,Shell,false,false,false,0,false,false,false,false +evol/evol-media,evol,,false,false,false,0,false,false,false,false +evol/hercules,evol,C,true,false,false,5,false,true,false,false +gobusto/rbembed,gobusto,C,false,false,false,0,false,false,false,false +windigo-configs/bash,windigo-configs,Shell,false,false,false,0,false,false,false,false +TomConrad/crawl-playable-imps,TomConrad,C++,false,false,false,0,false,false,false,false +millette/ng-boilerplate,millette,JavaScript,false,false,false,0,false,false,false,false +tikz-goodies/tikz-goodies,tikz-goodies,TeX,false,false,false,0,false,false,false,false +unix-training/unix-training,unix-training,Shell,false,false,false,0,false,false,false,false +savapage/savapage-client,savapage,Java,false,false,true,0,false,false,false,false +savapage/savapage-cups-notifier,savapage,C++,false,false,false,0,false,false,false,false +savapage/savapage-core,savapage,Java,false,false,true,0,false,false,false,false +savapage/savapage-server,savapage,Java,false,false,true,0,false,false,false,false +r1d1/bbb,r1d1,C++,false,false,false,0,false,false,false,false +odoo_sav/sav,odoo_sav,Python,false,false,false,0,false,false,false,false +odoo-prawn-report/opr-module,odoo-prawn-report,Python,false,false,false,0,false,false,false,false +hsohe74/knulf-net,hsohe74,C#,false,false,false,0,false,false,false,false +mcepl/gedit_behave,mcepl,Python,false,false,false,0,false,false,false,false +ideasman42/batch-compo,ideasman42,Python,false,false,false,0,false,false,false,false +onak/onak,onak,C,false,false,false,0,false,false,false,false +mseide-msegui/mselang,mseide-msegui,Pascal,false,false,false,0,false,false,false,false +qtsmbstatus/qtsmbstatus,qtsmbstatus,C++,false,false,false,0,false,false,false,false +fbostanci/ezanvakti-eski,fbostanci,Shell,false,false,false,0,false,false,false,false +warsaw/flufl.lock,warsaw,Python,true,false,false,1,false,true,false,false +guile-syntax-parse/guile-syntax-parse,guile-syntax-parse,Scheme,false,false,false,0,false,false,false,false +python-on-guile/python-on-guile,python-on-guile,Python,false,false,false,0,false,false,false,false +gnome/gtk,gnome,C,false,false,false,0,false,false,false,false +PIC32MX/TFT.X,PIC32MX,C,false,false,false,0,false,false,false,false +PIC32MX/tft-board-pcb,PIC32MX,Batchfile,false,false,false,0,false,false,false,false +irssi-remote-notifier/client,irssi-remote-notifier,C++,false,false,false,0,false,false,false,false +irssi-remote-notifier/server,irssi-remote-notifier,C++,false,false,false,0,false,false,false,false +sgeerish/odoo-pycharm-templates,sgeerish,,false,false,false,0,false,false,false,false +dalton/tutorials,dalton,Python,false,false,false,0,false,false,false,false +alfons83/PrestaShop,alfons83,PHP,false,false,false,0,false,false,false,false +alfons83/repogit,alfons83,HTML,false,false,false,0,false,false,false,false +Louson/MusicGen,Louson,C,false,false,false,0,false,false,false,false +Chintanvpatel/gitzf2,Chintanvpatel,PHP,false,false,false,0,false,false,false,false +efxa/rest-api-wrap-utility,efxa,C#,false,false,false,0,false,false,false,false +elboulangero/looper,elboulangero,Makefile,false,false,false,0,false,false,false,false +alezost-emacs/alect-themes,alezost-emacs,EmacsLisp,false,false,false,0,false,false,false,false +alezost-config/emacs,alezost-config,EmacsLisp,false,false,false,0,false,false,false,false +efxa/control-motor-speed-through-light-sensor,efxa,C++,false,false,false,0,false,false,false,false +efxa/led-animations-with-input-interrupt-button,efxa,C++,false,false,false,0,false,false,false,false +efxa/security-access-control-multi-factor-authentication,efxa,C++,false,false,false,0,false,false,false,false +t2advstats/t2advstats,t2advstats,C#,false,false,false,0,false,false,false,false +brandmateriel/brandmateriel,brandmateriel,Python,false,true,false,0,false,false,false,false +ada-for-automation/ada-for-automation,ada-for-automation,Ada,false,false,false,0,false,false,false,false +hnc/install_projects,hnc,Python,false,false,false,0,false,false,false,false +hnc/thoth,hnc,CMake,false,false,false,0,false,false,false,false +hnc/make_life_simpler,hnc,Python,false,false,false,0,false,false,false,false +hnc/new-website,hnc,PHP,false,false,false,0,false,false,false,false +awat1972/blueocen,awat1972,HTML,false,false,false,0,false,false,false,false +bkchem/bkchem,bkchem,Python,false,false,false,0,false,false,false,false +notwebmail/notwebmail,notwebmail,JavaScript,false,false,false,0,false,false,false,false +eris/eris-wsgi,eris,C++,false,false,false,0,false,false,false,false +mba811/avplayer,mba811,C++,false,false,false,0,false,false,false,false +mba811/ShadowDNS,mba811,Python,false,false,false,0,false,false,false,false +mba811/ShadowVPN,mba811,C,false,false,false,0,false,false,false,false +mba811/ZeroTierOne,mba811,C++,false,false,false,0,false,false,false,false +jas/cosmos-dpkg,jas,Shell,false,false,false,0,false,false,false,false +atomopawn/basket,atomopawn,C++,false,false,false,0,false,false,false,false +rcabralc/monokai-airline.vim,rcabralc,Vimscript,false,false,false,0,false,false,false,false +password-gorilla-2-keepassx/password-gorilla-2-keepassx,password-gorilla-2-keepassx,Python,false,false,false,0,false,false,false,false +MachadoDJ/ybyra,MachadoDJ,Python,false,false,false,0,false,false,false,false +dfu-util/dfu-util,dfu-util,C,false,false,false,0,false,false,false,false +libreems-suite/megatunix,libreems-suite,C,false,false,false,0,false,false,false,false +semplon/GeniXCMS,semplon,JavaScript,false,false,false,0,false,false,false,false +kolab-roundcube-plugins/tasklist,kolab-roundcube-plugins,PHP,false,false,false,0,false,false,false,false +kolab-roundcube-plugins/ude-login,kolab-roundcube-plugins,PHP,false,false,false,0,false,false,false,false +sortix/gcc,sortix,,false,false,false,0,false,false,false,false +nvtegra-gst/gstomx,nvtegra-gst,C,false,false,false,0,false,false,false,false +nvtegra-gst/gstnvxvimagesink,nvtegra-gst,M4,false,false,false,0,false,false,false,false +nejc-trdin/clus-vis,nejc-trdin,Java,false,false,false,0,false,false,false,false +Flow/flow-s-ebuilds,Flow,Shell,false,false,false,0,false,false,false,false +lierolibre/lierolibre-data,lierolibre,,false,false,false,0,false,false,false,false +agilob/QtSql,agilob,C++,false,false,false,0,false,false,false,false +sztest/sztest,sztest,Lua,false,false,false,0,false,false,false,false +hued/hued,hued,Ruby,false,false,false,0,false,false,false,false +plemp-node/plemp-node,plemp-node,JavaScript,false,false,false,0,false,false,false,false +stoptime/stoptime,stoptime,Ruby,false,false,false,0,false,false,false,false +greyvin/progreyvin,greyvin,HTML,false,false,false,0,false,false,false,false +jjgp35/tarea,jjgp35,HTML,false,false,false,0,false,false,false,false +soza1989/Soza,soza1989,CSS,false,false,false,0,false,false,false,false +hersson13/herssonprueba,hersson13,HTML,false,false,false,0,false,false,false,false +karlareyes/prueba,karlareyes,HTML,false,false,false,0,false,false,false,false +oskar15dv/pageweb,oskar15dv,HTML,false,false,false,0,false,false,false,false +faui2k9_lernmaterialien/faui2k9_mathc3,faui2k9_lernmaterialien,TeX,false,false,false,0,false,false,false,false +oskar15dv/test,oskar15dv,,false,false,false,0,false,false,false,false +character-recognition/character-recognition,character-recognition,C,false,false,false,0,false,false,false,false +mahara-contrib/export-pdf,mahara-contrib,PHP,false,false,false,0,false,false,false,false +mahara-lang/ja,mahara-lang,PHP,false,false,false,0,false,false,false,false +Jennybenitez/jennyprueba,Jennybenitez,HTML,false,false,false,0,false,false,false,false +MyCent/proy_mayra,MyCent,HTML,false,false,false,0,false,false,false,false +ArashPartow/bitmap,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/bloom,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/filter,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/exprtk,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/galois,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/hash,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/nanocalc,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/proxy,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/registry,ArashPartow,Pascal,false,false,false,0,false,false,false,false +ArashPartow/schifra,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/strtk,ArashPartow,C++,false,false,false,0,false,false,false,false +ArashPartow/wykobi,ArashPartow,C++,false,false,false,0,false,false,false,false +ekollof/Sysalerter-frontend,ekollof,PHP,false,false,false,0,false,false,false,false +kaliko/python-seth,kaliko,Python,false,false,false,0,false,false,false,false +young-utf/devartist,young-utf,JavaScript,false,false,false,0,false,false,false,false +berrange/perl-net-dbus,berrange,Perl,false,false,false,0,false,false,false,false +mac_doggie/DRouter,mac_doggie,PHP,false,false,false,0,false,false,false,false +zfec/go-zfec-cmdline,zfec,Go,false,false,false,0,false,false,false,false +collective/collective.contact.duplicated,collective,Python,false,false,false,0,false,false,false,false +WzukW/stog_foundation,WzukW,CSS,false,false,false,0,false,false,false,false +eds-to-idevice/eds-to-idevice,eds-to-idevice,C,false,false,false,0,false,false,false,false +alezost-config/systemd-user-units,alezost-config,,false,false,false,0,false,false,false,false +SaberMod/android-kernel-lge-hammerhead,SaberMod,,false,false,false,0,false,false,false,false +ppkbb3cker/ppkbb3cker2,ppkbb3cker,PHP,false,false,false,0,false,false,false,false +xbtbb3cker/xbtbb3cker,xbtbb3cker,PHP,false,false,false,0,false,false,false,false +o9000/google-code-to-gitlab,o9000,Python,false,true,false,0,false,false,false,false +Portree-Kid/c-geo-opensource,Portree-Kid,Java,false,false,false,0,false,false,false,false +fusion-team/fusion-engine,fusion-team,C,false,false,false,0,false,false,false,false +suttungdigital/nox-engine,suttungdigital,C++,true,false,false,1,false,true,false,false +fg-radi/osm2city-data,fg-radi,Python,false,false,false,0,false,false,false,false +brenard/sflphone-ctl,brenard,Python,false,false,false,0,false,false,false,false +mywinetools/mywinetools,mywinetools,Python,false,false,false,0,false,false,false,false +dmorris/zcomp,dmorris,C++,false,false,false,0,false,false,false,false +Incolab-Framework-PHP/Framework_PHP,Incolab-Framework-PHP,PHP,false,false,false,0,false,false,false,false +giadc-production/landing,giadc-production,CSS,false,false,false,0,false,false,false,false +debiants/udd2dc,debiants,Python,false,false,false,0,false,false,false,false +storage-temporary/storage-temporary,storage-temporary,PHP,false,false,false,0,false,false,false,false +alert-ssl-cert-expiration/alert-ssl-cert-expiration,alert-ssl-cert-expiration,Shell,false,false,false,0,false,false,false,false +coverage/coverage,coverage,Python,false,false,false,0,false,false,false,false +domain_expiration_watcher/domain_expiration_watcher,domain_expiration_watcher,PHP,false,false,false,0,false,false,false,false +domgen/domgen,domgen,PHP,false,false,false,0,false,false,false,false +easy-mx-on-dns/easy-mx-on-dns,easy-mx-on-dns,Shell,false,false,false,0,false,false,false,false +ecoaltcongost/ecoaltcongost_theme_mercat,ecoaltcongost,PHP,false,false,false,0,false,false,false,false +mysql-create-user-and-db/mysql-create-user-and-db,mysql-create-user-and-db,Shell,false,false,false,0,false,false,false,false +sim6/dokuwiki-sqlite-plugin,sim6,PHP,false,false,false,0,false,false,false,false +sn2email/sn2email,sn2email,Python,false,false,false,0,false,false,false,false +cpran/plugin_serialise,cpran,Perl,true,false,false,1,false,true,false,false +cinepaint-ng/cinepaint-ng,cinepaint-ng,C,false,false,false,0,false,false,false,false +another_martin/awesome-playing-cards,another_martin,,false,false,false,0,false,false,false,false +noosfero-plugins/pairwise,noosfero-plugins,Ruby,false,false,false,0,false,false,false,false +latexbatchdiff/latexbatchdiff,latexbatchdiff,Shell,false,false,false,0,false,false,false,false +points/pgame,points,Scala,false,false,false,0,false,false,false,false +swissgerman/test,swissgerman,PHP,false,false,false,0,false,false,false,false +irggu-irssi/irggu-irssi,irggu-irssi,C++,false,false,false,0,false,false,false,false +paulormm/agenda-cpp,paulormm,C++,false,false,false,0,false,false,false,false +noosfero-plugins/proposals_discussion,noosfero-plugins,Ruby,false,false,false,0,false,false,false,false +teiwazanklam/probably,teiwazanklam,Lua,false,false,false,0,false,false,false,false +cartecadeauxfrenchfreegener/crtecadeauxcodegrner,cartecadeauxfrenchfreegener,,false,false,false,0,false,false,false,false +TheZxcv/Jos,TheZxcv,C,false,false,false,0,false,false,false,false +midi2hotkey/midi2hotkey,midi2hotkey,Python,false,false,false,0,false,false,false,false +mcepl/evolution,mcepl,C,false,false,false,0,false,false,false,false +cfedde/aghi_ansible,cfedde,JavaScript,false,false,false,0,false,false,false,false +FluffyPira/PyGlow-SystemMonitor,FluffyPira,Python,false,false,false,0,false,false,false,false +alphapapa/plamix,alphapapa,Python,false,false,false,0,false,false,false,false +MOJOoo/mojooo,MOJOoo,Java,false,false,false,0,false,false,false,false +noosferogov/cube-responsive-theme,noosferogov,CSS,false,false,false,0,false,false,false,false +duketrayem/duketrayem-dev,duketrayem,C++,false,false,false,0,false,false,false,false +auralquiz/auralquiz-dev,auralquiz,C++,false,false,false,0,false,false,false,false +ualmtorres/HelloRESTAPIPhalcon,ualmtorres,PHP,false,false,false,0,false,false,false,false +horance/l0-infra,horance,C++,false,false,false,0,false,false,false,false +douglarek/sfti,douglarek,Scala,false,false,false,0,false,false,false,false +abelsiqueira/new-julia-package,abelsiqueira,Shell,false,false,false,0,false,false,false,false +queertypes/wai-request-spec,queertypes,Haskell,false,false,false,0,false,false,false,false +speedovation/AutoUpdater-Qt,speedovation,C++,false,false,false,0,false,false,false,false +ag-prime/fiipractic,ag-prime,PHP,false,false,false,0,false,false,false,false +aspgomes/fort-memory,aspgomes,Fortran,false,false,false,0,false,false,false,false +debry/np,debry,C++,false,false,false,0,false,false,false,false +rpi_devel/rpi_sensors,rpi_devel,C++,false,false,false,0,false,false,false,false +egh/org-cook,egh,EmacsLisp,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-attributes-with-secrets,gitlab-cookbooks,Ruby,false,false,false,0,false,false,false,false +pdftools/pdfjoin,pdftools,Python,false,false,false,0,false,false,false,false +sgeerish/anybox.recipe.odoo,sgeerish,Python,false,false,false,0,false,false,false,false +composite/composite,composite,C++,false,false,false,0,false,false,false,false +tycoon/mythopoet,tycoon,JavaScript,false,false,true,0,false,false,false,false +Autorevision/autorevision,Autorevision,Shell,false,false,false,0,false,false,false,false +yonice.perez/cssgrid,yonice.perez,CSS,false,false,false,0,false,false,false,false +voice-mediator/jvxml-amqp,voice-mediator,Java,false,false,false,0,false,false,false,false +rapgro/jvoicexml,rapgro,Java,false,false,false,0,false,false,false,false +debiants/wnpp-inconsistencies-suggestions,debiants,Perl,false,false,false,0,false,false,false,false +k3ut0i/systemd-units,k3ut0i,,false,false,false,0,false,false,false,false +robertgates55/frameworkium,robertgates55,Java,false,false,true,0,false,false,false,false +luanfujun/ucore_lab,luanfujun,C,false,false,false,0,false,false,false,false +mallet/seldon,mallet,C++,false,false,false,0,false,false,false,false +BlackEdder/britain-transport-cli,BlackEdder,D,false,false,false,0,false,false,false,false +fgerbig/SpacePeng,fgerbig,Java,false,false,false,0,false,false,false,false +comptrans/VisualGraphX,comptrans,JavaScript,false,false,false,0,false,false,false,false +alemedeiros/tm,alemedeiros,Python,false,false,false,0,false,false,false,false +TytoRobotics/TestPlatformFirmware,TytoRobotics,C++,false,false,false,0,false,false,false,false +libregraphicsmag/propcouriersans,libregraphicsmag,,false,false,false,0,false,false,false,false +vesselknife/vesselknife,vesselknife,C++,false,false,false,0,false,false,false,false +dunpmusic/framework,dunpmusic,PHP,false,false,false,0,false,false,false,false +evatechsoft/Fluid-Baseline-Grid,evatechsoft,CSS,false,false,false,0,false,false,false,false +Pilatomic/simple-xbox-360-controller,Pilatomic,C++,false,false,false,0,false,false,false,false +floppy-orchestra/floppy-conductor,floppy-orchestra,C++,false,false,false,0,false,false,false,false +bobsoutputboard/bobine,bobsoutputboard,PHP,false,false,false,0,false,false,false,false +mlprt/nek5000-cases,mlprt,Shell,false,false,false,0,false,false,false,false +chalasr/AngularForum,chalasr,HTML,false,false,false,0,false,false,false,false +programmer/ip-to-user,programmer,PHP,false,false,false,0,false,false,false,false +xjarvis/jarvis,xjarvis,Java,false,false,false,0,false,false,false,false +joaodarcy/perttool,joaodarcy,Java,true,false,false,1,false,true,false,false +badcodes/vb6,badcodes,VisualBasic,false,false,false,0,false,false,false,false +uboot-ac100/create_bootimage,uboot-ac100,Perl,false,false,false,0,false,false,false,false +dorianrudo97/mississippi,dorianrudo97,Java,false,false,false,0,false,false,false,false +BobW/Use-get_iplayer,BobW,Python,false,false,false,0,false,false,false,false +SaberMod/sabermod-build-scripts,SaberMod,Shell,false,false,false,0,false,false,false,false +probablyengine/pewiki,probablyengine,CSS,false,false,false,0,false,false,false,false +cctorrent/cctorrent,cctorrent,Python,false,false,false,0,false,false,false,false +tokiclover/supervision,tokiclover,C,false,false,false,0,false,false,false,false +jeromepin/copy,jeromepin,Python,false,false,false,0,false,false,false,false +levisaturnino/LivroGoogleAndroid,levisaturnino,Java,false,false,false,0,false,false,false,false +tianocore_uefi_duet_builds/tianocore_uefi_duet_installer,tianocore_uefi_duet_builds,C,false,false,false,0,false,false,false,false +fgradi/xplane2fg,fgradi,Python,false,false,false,0,false,false,false,false +iridescence/iridescence,iridescence,C#,false,false,false,0,false,false,false,false +abelsiqueira/pres-julia,abelsiqueira,JupyterNotebook,false,false,false,0,false,false,false,false +poweroftwo/flightgear-osgearth,poweroftwo,C++,false,false,false,0,false,false,false,false +accounts-sso/signon-plugin-oauth2,accounts-sso,C++,true,false,false,3,true,true,true,false +accounts-sso/libsignon-glib,accounts-sso,C,true,false,false,3,true,true,true,false +accounts-sso/gsignond-plugin-oa,accounts-sso,C,true,false,false,3,true,true,true,false +accounts-sso/gsignond-plugin-sasl,accounts-sso,C,true,false,false,3,true,true,true,false +accounts-sso/libgsignon-glib,accounts-sso,C,true,false,false,3,true,true,true,false +alezost-config/guix,alezost-config,Scheme,false,false,false,0,false,false,false,false +namestamp/namestamp,namestamp,Python,false,false,false,0,false,false,false,false +ocaml-misc/onotify,ocaml-misc,OCaml,false,false,false,0,false,false,false,false +jomoespe/dropwizard-sample,jomoespe,Java,false,false,true,0,false,false,false,false +steerapi/nnu,steerapi,C++,false,false,false,0,false,false,false,false +zamuro57/zamuros,zamuro57,Ruby,false,false,false,0,false,false,false,false +kas70/Dicer,kas70,Java,false,false,false,0,false,false,false,false +kas70/SAnd,kas70,Java,false,false,false,0,false,false,false,false +elyin/misitioweb1,elyin,HTML,false,false,false,0,false,false,false,false +oskar15dv/pagina_web,oskar15dv,HTML,false,false,false,0,false,false,false,false +efuentes/ddd-grails,efuentes,Groovy,false,false,false,0,false,false,false,false +cosmobubble/accel,cosmobubble,Python,false,false,false,0,false,false,false,false +cosmobubble/bubble,cosmobubble,C,false,false,false,0,false,false,false,false +cosmobubble/invmat,cosmobubble,C,false,false,false,0,false,false,false,false +cosmobubble/mcmc,cosmobubble,Python,false,false,false,0,false,false,false,false +cosmobubble/pyltb,cosmobubble,Python,false,false,false,0,false,false,false,false +cosmobubble/spectraldistortions,cosmobubble,Python,false,false,false,0,false,false,false,false +cosmobubble/szclusters,cosmobubble,Python,false,false,false,0,false,false,false,false +fanfriche/treinamento-mult,fanfriche,,false,false,false,0,false,false,false,false +Jennybenitez/jenny,Jennybenitez,HTML,false,false,false,0,false,false,false,false +olegtikhonov/ocr,olegtikhonov,Java,false,false,true,0,false,false,false,false +educoins/educoins,educoins,Java,false,false,true,0,false,false,false,false +mcepl/acme-sac,mcepl,Limbo,false,false,false,0,false,false,false,false +elmer166/PIC24FV16KM202_Peripherals,elmer166,,false,false,false,0,false,false,false,false +ledancs/hFigures,ledancs,JavaScript,false,false,false,0,false,false,false,false +dannyannaleggo/tcp-proj,dannyannaleggo,C,false,false,false,0,false,false,false,false +CodeMario/CRUD_CODEIGNITER,CodeMario,PHP,false,false,false,0,false,false,false,false +activearchives/etherdump,activearchives,Python,false,false,false,0,false,false,false,false +death-of-the-authors/1943,death-of-the-authors,PHP,false,false,false,0,false,false,false,false +raml/raml2html,raml,HTML,false,false,false,0,false,false,false,false +cristianprofile/testing-java1.8-features,cristianprofile,Java,false,false,false,0,false,false,false,false +SaberMod/pa-android-frameworks-base,SaberMod,Java,false,false,false,0,false,false,false,false +camara/developers-log,camara,,false,false,false,0,false,false,false,false +userx/PCapLearning,userx,C,false,false,false,0,false,false,false,false +webgovua/Constitution-of-Ukraine,webgovua,,false,false,false,0,false,false,false,false +2gisqtandroid/android-instrument-function-debug,2gisqtandroid,C++,false,false,false,0,false,false,false,false +2gisqtandroid/android-qt-openssl,2gisqtandroid,C,false,false,false,0,false,false,false,false +emilopez/dev01,emilopez,HTML,false,false,false,0,false,false,false,false +sarakha63/headphones,sarakha63,Python,false,false,false,0,false,false,false,false +apueee/timehive,apueee,PHP,false,false,false,0,false,false,false,false +surfsara/sali,surfsara,Python,false,false,false,0,false,false,false,false +lucadelu/geospatialpdf_export,lucadelu,Python,false,false,false,0,false,false,false,false +wjdbr/socialcomputingjava,wjdbr,Java,false,false,false,0,false,false,false,false +easejs/easejs,easejs,JavaScript,false,false,false,0,false,false,false,false +mikegerwitz/git-shortmaps,mikegerwitz,Shell,false,false,false,0,false,false,false,false +mikegerwitz/thoughts,mikegerwitz,Shell,false,false,false,0,false,false,false,false +gmocellin/Tarefa-1-SO2,gmocellin,C,false,false,false,0,false,false,false,false +uhttpmock/uhttpmock,uhttpmock,C,true,false,false,1,true,false,false,false +libffi/libffi,libffi,C,false,false,false,0,false,false,false,false +confget/confget,confget,C,false,false,false,0,false,false,false,false +spiped/spiped,spiped,C,false,false,false,0,false,false,false,false +emacs-stuff/make-menu,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +lazy-book-crowd/lazy-reading-club,lazy-book-crowd,PHP,false,false,false,0,false,false,false,false +ofxklar/irbick,ofxklar,C++,false,false,false,0,false,false,false,false +ofxklar/ofx1013km,ofxklar,C++,false,false,false,0,false,false,false,false +mattia.basaglia/Knotter,mattia.basaglia,C++,false,false,false,0,false,false,false,false +OleksandrM95/Android_oleksandr,OleksandrM95,Java,false,false,false,0,false,false,false,false +MatrixdomQPP/cocos2d-x,MatrixdomQPP,C++,false,false,false,0,false,false,false,false +ShiblyShrof/Assignment,ShiblyShrof,,false,false,false,0,false,false,false,false +programmez-en-d/programmez-en-d,programmez-en-d,CSS,false,false,false,0,false,false,false,false +vitorfranca/fire-emblem,vitorfranca,JavaScript,false,false,false,0,false,false,false,false +onecore/BeastMaker,onecore,Python,false,false,false,0,false,false,false,false +chris-tr/RHCE7-study-lab,chris-tr,,false,false,false,0,false,false,false,false +math4youbyusgroupillinois/lascaux,math4youbyusgroupillinois,Python,false,true,false,0,false,false,false,false +math4youbyusgroupillinois/json-fortran,math4youbyusgroupillinois,Fortran,false,false,false,0,false,false,false,false +omega8cc/boa,omega8cc,Shell,false,false,false,0,false,false,false,false +omega8cc/prose,omega8cc,JavaScript,false,false,false,0,false,false,false,false +miblo/dotfiles,miblo,Python,false,false,false,0,false,false,false,false +indybay/indybay-active,indybay,PHP,true,false,false,1,false,true,false,false +sunny256/git-annex,sunny256,Haskell,false,false,false,0,false,false,false,false +dokuwiki-piwik/dokuwiki-piwik,dokuwiki-piwik,PHP,false,false,false,0,false,false,false,false +sortix/libdeflate,sortix,C,false,false,false,0,false,false,false,false +e_nss/e_nss,e_nss,C,false,false,false,0,false,false,false,false +libav/libav,libav,C,false,false,false,0,false,false,false,false +KennethBuijssen/mdw-project-alpha-victor-kilo,KennethBuijssen,C#,false,false,false,0,false,false,false,false +quark/ptrace-syscall-playground,quark,C++,false,false,false,0,false,false,false,false +points/opai-rs,points,Rust,false,false,false,0,false,false,false,false +sim6/dokuwiki_sqlite,sim6,PHP,false,false,false,0,false,false,false,false +tapioco71/bookmaker,tapioco71,CommonLisp,false,false,false,0,false,false,false,false +CiaranG/realms,CiaranG,Lua,false,false,false,0,false,false,false,false +CiaranG/animals,CiaranG,RPC,false,false,false,0,false,false,false,false +CiaranG/sailing,CiaranG,RPC,false,false,false,0,false,false,false,false +niisi/kumir2,niisi,C++,false,false,false,0,false,false,false,false +niisi/kumir2-testcase,niisi,Roff,false,false,false,0,false,false,false,false +odoo-divers/quotation_proforma,odoo-divers,Python,false,false,false,0,false,false,false,false +barkinit/tt-rss-feedly-theme,barkinit,CSS,false,false,false,0,false,false,false,false +gordonmorehouse/macfanctld,gordonmorehouse,C,false,false,false,0,false,false,false,false +sdonalcreative/brackets-love-hints,sdonalcreative,Lua,false,false,false,0,false,false,false,false +tejpratap36/OneStore,tejpratap36,Java,false,false,false,0,false,false,false,false +models/laravel-frontend-template,models,CSS,false,false,false,0,false,false,false,false +SEIP_PHP_B2/practice,SEIP_PHP_B2,PHP,false,false,false,0,false,false,false,false +eriol/eriol-vim,eriol,Vimscript,false,false,false,0,false,false,false,false +morozik/pam_twauth,morozik,C,false,false,false,0,false,false,false,false +jupf/KI2015,jupf,Prolog,false,false,false,0,false,false,false,false +Kizder/SpacePacman,Kizder,ASP,false,false,false,0,false,false,false,false +1Darco1/VaroPlugin,1Darco1,Java,false,false,true,0,false,false,false,false +carmenbianca/dotfiles,carmenbianca,EmacsLisp,false,false,false,0,false,false,false,false +77/android_device_samsung_hlte-common,77,C++,false,false,false,0,false,false,false,false +miarpsc-exercises/Ex15-1,miarpsc-exercises,,false,false,false,0,false,false,false,false +miarpsc-exercises/Ex15-2,miarpsc-exercises,,false,false,false,0,false,false,false,false +lotro/server,lotro,C#,false,false,false,0,false,false,false,false +baliniers/baliniers,baliniers,Ren'Py,false,false,false,0,false,false,false,false +darkc0de/ForgeTools,darkc0de,C#,false,false,false,0,false,false,false,false +dengjie/Resource,dengjie,,false,false,false,0,false,false,false,false +eddiejones/jreality,eddiejones,Java,false,false,false,0,false,false,false,false +poulet_a/rubybrute,poulet_a,Ruby,false,false,false,0,false,false,false,false +pbeeler/pa-android-packages-apps-settings,pbeeler,Java,false,false,false,0,false,false,false,false +dfountain999/ArchInstaller,dfountain999,Shell,false,false,false,0,false,false,false,false +leijianbin/gitdocs,leijianbin,JavaScript,false,false,false,0,false,false,false,false +msws/msws-client,msws,Shell,false,false,false,0,false,false,false,false +Fenkiou/pinch-to-zoom-firefox-osx,Fenkiou,JavaScript,false,false,false,0,false,false,false,false +trgalho/peer-to-peerChat,trgalho,Java,false,false,false,0,false,false,false,false +Team-OSE-old/device_samsung_hlte,Team-OSE-old,C++,false,false,false,0,false,false,false,false +LiquidSmooth-Devices/android_device_samsung_hlte,LiquidSmooth-Devices,Java,false,false,false,0,false,false,false,false +buckybox/order-manager,buckybox,JavaScript,false,false,false,0,false,false,false,false +oskar15dv/pag_bootstrat,oskar15dv,HTML,false,false,false,0,false,false,false,false +Jennybenitez/jenny_bootstrap,Jennybenitez,HTML,false,false,false,0,false,false,false,false +nanlabs/ioc,nanlabs,JavaScript,false,false,false,0,false,false,false,false +nanlabs/mixin,nanlabs,JavaScript,false,false,false,0,false,false,false,false +nanlabs/rest-lib,nanlabs,JavaScript,false,false,false,0,false,false,false,false +enrogue/enrogues-mirage-f1,enrogue,,false,false,false,0,false,false,false,false +JohanG/johans-mirage-f1,JohanG,,false,false,false,0,false,false,false,false +fgsl/documentacao-do-fgsl,fgsl,,false,false,false,0,false,false,false,false +vikmeup/vikmeup.github.io,vikmeup,Ruby,false,false,false,0,false,false,false,false +almashraee/MyProject,almashraee,HTML,false,false,false,0,false,false,false,false +vinzv/GNUpostical,vinzv,Shell,false,false,false,0,false,false,false,false +vinzv/rss-bridge,vinzv,PHP,false,false,false,0,false,false,false,false +steamdriven80/essie-backend,steamdriven80,Python,false,true,false,0,false,false,false,false +steamdriven80/miniLock,steamdriven80,JavaScript,false,false,false,0,false,false,false,false +casiazul/tusl-introduccion,casiazul,JavaScript,false,false,false,0,false,false,false,false +vanceeasleaf/phononpyLMP,vanceeasleaf,PHP,false,false,false,0,false,false,false,false +vanceeasleaf/phonon-dos,vanceeasleaf,PHP,false,false,false,0,false,false,false,false +Pacodastre/erika,Pacodastre,Python,false,false,false,0,false,false,false,false +openion-erp/emission,openion-erp,HTML,false,false,false,0,false,false,false,false +knownasilya/app-blueprint,knownasilya,JavaScript,false,false,false,0,false,false,false,false +kanban/development-environment,kanban,,false,false,false,0,false,false,false,false +anlijudavid/SQLSCaf,anlijudavid,Java,false,false,false,0,false,false,false,false +dblessing/chef-unbound_dns,dblessing,Ruby,false,false,false,0,false,false,false,false +Julipan/splitflac,Julipan,Python,false,false,false,0,false,false,false,false +dtv3/dtv3,dtv3,Shell,false,false,false,0,false,false,false,false +coaster3000/ORBBE,coaster3000,HTML,false,false,false,0,false,false,false,false +leandronunes/dashboard,leandronunes,Ruby,false,false,false,0,false,false,false,false +biotransistor/pychaos,biotransistor,Python,false,false,false,0,false,false,false,false +mailman/hyperkitty_standalone,mailman,Python,false,false,false,0,false,false,false,false +meskio/nepal_vdc,meskio,Python,false,false,false,0,false,false,false,false +spinet/spinet,spinet,C++,false,false,false,0,false,false,false,false +duse-mt/duse-mt,duse-mt,C++,false,false,false,0,false,false,false,false +standin000/standin000-cl-yacc,standin000,CommonLisp,false,false,false,0,false,false,false,false +Gas-Giant/Gas-Giant-Server,Gas-Giant,Lua,false,false,false,0,false,false,false,false +jannis-jahr/happyaua,jannis-jahr,JavaScript,false,false,false,0,false,false,false,false +aeten/aeten-cli,aeten,Shell,false,false,false,0,false,false,false,false +aeten/aeten-git-tools,aeten,Shell,false,false,false,0,false,false,false,false +aeten/aecore,aeten,Makefile,false,false,false,0,false,false,false,false +aeten/aeten-make,aeten,Makefile,false,false,false,0,false,false,false,false +aeten/aeten-prompt,aeten,Shell,false,false,false,0,false,false,false,false +aeten/net.aeten.core,aeten,Java,false,false,false,0,false,false,false,false +pkg-gnukhata/gnukhata-core-engine,pkg-gnukhata,Python,false,false,false,0,false,false,false,false +DLRdave/SmallAndFast,DLRdave,CMake,false,false,false,0,false,false,false,false +tunixman/ChugTalkMay2015,tunixman,CSS,false,false,false,0,false,false,false,false +biotransistor/zerogravity,biotransistor,Python,false,true,false,0,false,false,false,false +SaVyGaming/savy-website,SaVyGaming,C#,false,false,false,0,false,false,false,false +RaphaelAugustin/ade-mariage,RaphaelAugustin,PHP,false,false,false,0,false,false,false,false +AvtechScientific/ASL,AvtechScientific,C++,false,false,false,0,false,false,false,false +davcri91/pyADB,davcri91,Python,false,true,false,0,false,false,false,false +nagygr/syntxii,nagygr,C++,false,false,false,0,false,false,false,false +UNB-GPPMDS-2014/Proconsulta,UNB-GPPMDS-2014,HTML,false,false,false,0,false,false,false,false +molloc/commonfuse,molloc,Java,false,false,true,0,false,false,false,false +aynixpe/Bodega_Naty,aynixpe,Java,false,false,false,0,false,false,false,false +ImRoxan/Team_Ang,ImRoxan,C,false,false,false,0,false,false,false,false +TheLastCrusader/Keyboard,TheLastCrusader,,false,false,false,0,false,false,false,false +xinyu/QNVMe,xinyu,C++,false,false,false,0,false,false,false,false +bingao/gen1int,bingao,C++,false,false,false,0,false,false,false,false +jaming/panicboard,jaming,JavaScript,true,false,false,2,false,true,true,false +german-atlantis/german-atlantis,german-atlantis,C,false,false,false,0,false,false,false,false +tunixman/HaskellWeb,tunixman,TeX,false,false,false,0,false,false,false,false +meso-star/star-engine,meso-star,CMake,false,false,false,0,false,false,false,false +ivybus/ivy-python,ivybus,Python,false,false,false,0,false,false,false,false +Cwiiis/homescreen-ng,Cwiiis,JavaScript,false,false,false,0,false,false,false,false +anlijudavid/MyFood,anlijudavid,Ruby,false,false,false,0,false,false,false,false +lambda-now/FunctionalWebExamples,lambda-now,Haskell,false,false,false,0,false,false,false,false +maep/demosauce,maep,C++,false,false,false,0,false,false,false,false +notklaatu/ninit,notklaatu,C,false,false,false,0,false,false,false,false +a-z/node-declare,a-z,JavaScript,false,false,false,0,false,false,false,false +giesbert-s-software/autoincreasebuildnr,giesbert-s-software,C++,false,false,false,0,false,false,false,false +dennis-learns-django/personal-site,dennis-learns-django,Python,false,false,false,0,false,false,false,false +sb-dev-team/soapbox-backend-style-guide,sb-dev-team,,false,false,false,0,false,false,false,false +sb-dev-team/soapbox-frontend-style-guide,sb-dev-team,,false,false,false,0,false,false,false,false +sb-dev-team/soapbox-javascript-style-guide,sb-dev-team,,false,false,false,0,false,false,false,false +sofreeus/aghi2beagle,sofreeus,,false,false,false,0,false,false,false,false +sofreeus/aghi2raspi,sofreeus,Shell,false,false,false,0,false,false,false,false +sofreeus/aghi2puppet,sofreeus,Puppet,false,false,false,0,false,false,false,false +haellsigh/electron-leats,haellsigh,JavaScript,false,false,false,0,false,false,false,false +yanzhao/mytest,yanzhao,,false,false,false,0,false,false,false,false +jas/libntlm2,jas,C,false,false,false,0,false,false,false,false +radiognu/gnoll,radiognu,PHP,false,false,false,0,false,false,false,false +radiognu/radiognu-widget-legacy,radiognu,JavaScript,true,false,false,1,false,true,false,false +radiognu/radiognu-updb,radiognu,Python,false,true,false,0,false,false,false,false +radiognu/radiognu-libra,radiognu,Python,false,true,false,0,false,false,false,false +radiognu/radiognu-widget,radiognu,JavaScript,true,false,false,1,false,false,true,false +radiognu/radiognu-api,radiognu,Python,false,true,false,0,false,false,false,false +radiognu/pygnoll,radiognu,Python,false,true,false,0,false,false,false,false +egh/emacs-totd,egh,EmacsLisp,false,false,false,0,false,false,false,false +tarikki/Team04,tarikki,Java,false,false,false,0,false,false,false,false +martinmgb/canarioweb,martinmgb,HTML,false,false,false,0,false,false,false,false +decision-deck/XMCDA,decision-deck,XSLT,false,false,false,0,false,false,false,false +poulet_a/DM35,poulet_a,Ruby,false,false,false,0,false,false,false,false +odoo-dummy-view/demo_dummy,odoo-dummy-view,Python,false,false,false,0,false,false,false,false +SaberMod/slim-android-build,SaberMod,JavaScript,false,false,false,0,false,false,false,false +awal_pertama/Scooter_scoot,awal_pertama,,false,false,false,0,false,false,false,false +bc/bc-player-examples,bc,PHP,false,false,false,0,false,false,false,false +benoitldr/beamerarticle-teacher,benoitldr,TeX,false,false,false,0,false,false,false,false +salvagit/php-lab,salvagit,,false,false,false,0,false,false,false,false +SaberMod/android-vendor-slim,SaberMod,Shell,false,false,false,0,false,false,false,false +fournova-api-test/public-test-repo-01,fournova-api-test,,false,false,false,0,false,false,false,false +wpegg-dev/Free-Software-Development-Info,wpegg-dev,,false,false,false,0,false,false,false,false +organiza-ae/Art,organiza-ae,,false,false,false,0,false,false,false,false +hunger/cleanroom,hunger,Perl,false,false,false,0,false,false,false,false +libyuni/yuni-getting-started,libyuni,C,false,false,false,0,false,false,false,false +oopdp/dpdpdc,oopdp,C,false,false,false,0,false,false,false,false +mailman/mailman-suite-doc,mailman,Python,false,false,false,0,false,false,false,false +juanwolf/juanwolfs-chat,juanwolf,JavaScript,false,false,false,0,false,false,false,false +zoghal/my-old-projects,zoghal,Pascal,false,false,false,0,false,false,false,false +zoghal/redactor-rtl-persian,zoghal,JavaScript,false,false,false,0,false,false,false,false +zoghal/persianParser,zoghal,JavaScript,false,false,false,0,false,false,false,false +zoghal/PersianTools,zoghal,,false,false,false,0,false,false,false,false +zoghal/persian.js,zoghal,JavaScript,false,false,false,0,false,false,false,false +justJanne/CytubeBot,justJanne,JavaScript,false,false,false,0,false,false,false,false +hellyparekh/angular.dart,hellyparekh,Dart,false,false,false,0,false,false,false,false +Skyborg/PlexConnect,Skyborg,Python,false,false,false,0,false,false,false,false +Skyborg/Fritzbox.sh,Skyborg,Shell,false,false,false,0,false,false,false,false +CryptPast/CryptPast,CryptPast,JavaScript,false,false,false,0,false,false,false,false +jfbrown/aegis,jfbrown,Go,false,false,false,0,false,false,false,false +bterrier/IconEditor,bterrier,C++,false,false,false,0,false,false,false,false +spacebotwar/space-bot-war,spacebotwar,JavaScript,false,false,false,0,false,false,false,false +themkos/mkos-public,themkos,C,false,false,false,0,false,false,false,false +burningtree/uson,burningtree,JavaScript,false,false,false,0,false,false,false,false +zulfikar2/CSPortfolio,zulfikar2,Java,false,false,false,0,false,false,false,false +zulfikar2/MerchantRPG2,zulfikar2,,false,false,false,0,false,false,false,false +MikNery/Chess_OO_2015_01,MikNery,Java,false,false,false,0,false,false,false,false +mjrcmrma/custom-prototype,mjrcmrma,HTML,false,false,false,0,false,false,false,false +eita/android-responsa-frontend,eita,Java,false,false,false,0,false,false,false,false +razzildinho/atompy,razzildinho,Python,false,false,false,0,false,false,false,false +Cervajz/cnb_rates,Cervajz,Ruby,false,false,false,0,false,false,false,false +elegant_brit/elegant_brit,elegant_brit,CSS,false,false,false,0,false,false,false,false +mp-nntoan/ServerPilot-API-PHP-Wrapper,mp-nntoan,PHP,false,false,false,0,false,false,false,false +iggdrasil/chimere-example-project,iggdrasil,HTML,false,false,false,0,false,false,false,false +iggdrasil/chimere-saclay-project,iggdrasil,JavaScript,false,false,false,0,false,false,false,false +iggdrasil/geo-django-fla,iggdrasil,Python,false,true,false,0,false,false,false,false +dlsuarez/restricted_calendar,dlsuarez,Python,false,false,false,0,false,false,false,false +jamie_ca/blog.tracefunc.com,jamie_ca,JavaScript,true,false,false,1,false,true,false,false +sayemk-abu/restaurant,sayemk-abu,PHP,false,false,false,0,false,false,false,false +rtsisyk/tarantool,rtsisyk,C,false,false,false,0,false,false,false,false +perkamon/man-pages,perkamon,Makefile,false,false,false,0,false,false,false,false +revadam/northumbria,revadam,TeX,false,false,false,0,false,false,false,false +fgradi/custom_scenery_VHXX,fgradi,C++,false,false,false,0,false,false,false,false +material-latex/material-latex,material-latex,TeX,false,false,false,0,false,false,false,false +material-latex/polignu-material-latex,material-latex,TeX,false,false,false,0,false,false,false,false +DOCSIS/Oscar,DOCSIS,Java,false,false,false,0,false,false,false,false +r-squared/r-squared,r-squared,C++,false,false,false,0,false,false,false,false +prassee/scala-js-websocket,prassee,HTML,false,false,false,0,false,false,false,false +svaksha/aksh,svaksha,,false,false,false,0,false,false,false,false +brunokarpo/Codigos_Estudo,brunokarpo,Java,false,false,false,0,false,false,false,false +8am/relative-local-link-urls,8am,PHP,false,false,false,0,false,false,false,false +EDGYALLCAPSUSERNAME/Bet-Bot,EDGYALLCAPSUSERNAME,Python,false,false,false,0,false,false,false,false +fancycode/iridium-browser,fancycode,,false,false,false,0,false,false,false,false +0X1A/dotfiles,0X1A,Shell,false,false,false,0,false,false,false,false +bee4/beebot/activerecord,bee4,PHP,false,false,false,0,false,false,false,false +stevehoover/emacs_tl-verilog-mode,stevehoover,EmacsLisp,false,false,false,0,false,false,false,false +johnmarksjr/Portfolio,johnmarksjr,JavaScript,false,false,false,0,false,false,false,false +fabioivan-fb/cmanagerweb,fabioivan-fb,Python,false,false,false,0,false,false,false,false +poulet_a/MorningPeak,poulet_a,Ruby,false,false,false,0,false,false,false,false +Tablesaw/Alpaca-Farm,Tablesaw,Ruby,true,false,false,1,false,true,false,false +jwhipple/Autohotkey-Scripts,jwhipple,AutoHotkey,false,false,false,0,false,false,false,false +4144/paranucker,4144,C++,true,false,false,3,true,false,false,false +msws/msws-server,msws,Shell,false,false,false,0,false,false,false,false +s4m-chef-repositories/confluent-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false +rohan16/sys,rohan16,JavaScript,false,false,false,0,false,false,false,false +0X1A/yabs,0X1A,Rust,true,false,false,1,false,true,false,false +Frankity/Axey,Frankity,C#,false,false,false,0,false,false,false,false +karbassi/dygraphs,karbassi,JavaScript,false,false,false,0,false,false,false,false +shanipribadi/capacitive_resistance_meter,shanipribadi,Makefile,false,false,false,0,false,false,false,false +onecore/BeastLauncher,onecore,Python,false,false,false,0,false,false,false,false +mhtkmr54/chat_room,mhtkmr54,JavaScript,false,false,false,0,false,false,false,false +mseuniverse/sak,mseuniverse,Pascal,false,false,false,0,false,false,false,false +buzzdeebuzz/skat09,buzzdeebuzz,Java,false,false,true,0,false,false,false,false +oversio/MyProject,oversio,HTML,false,false,false,0,false,false,false,false +minjing/uapi,minjing,Java,false,false,false,0,false,false,false,false +tntu-scientific/mcc-pfm,tntu-scientific,Java,false,false,false,0,false,false,false,false +john.zimm/dotfiles,john.zimm,Shell,false,false,false,0,false,false,false,false +mailman/postorius_standalone,mailman,Python,false,false,false,0,false,false,false,false +n0mjs710/DMRlink,n0mjs710,Python,false,true,false,0,false,false,false,false +prenaud76/artifactory-user-plugins,prenaud76,Groovy,false,false,false,0,false,false,false,false +prenaud76/tuleap,prenaud76,PHP,false,false,false,0,false,false,false,false +noodles/spi-members,noodles,Python,false,false,false,0,false,false,false,false +mok.sulav/sass-skeleton,mok.sulav,CSS,false,false,false,0,false,false,false,false +simulabio/simulabio,simulabio,Python,false,true,false,0,false,false,false,false +ponyweb-ensemble/PonyWeb,ponyweb-ensemble,Python,false,true,false,0,false,false,false,false +tk1114632/multiServer,tk1114632,C,false,false,false,0,false,false,false,false +pietrom16/microLog,pietrom16,C++,false,false,false,0,false,false,false,false +barrel/wallboard,barrel,JavaScript,false,false,false,0,false,false,false,false +barrel/sweet-board,barrel,PHP,false,false,false,0,false,false,false,false +barrel/old-barrel-dev-best-practices,barrel,,false,false,false,0,false,false,false,false +barrel/wp-json-api,barrel,PHP,false,false,false,0,false,false,false,false +queertypes/cis194,queertypes,Haskell,false,false,false,0,false,false,false,false +yuvallanger/rusty-diceware,yuvallanger,Rust,false,false,false,0,false,false,false,false +nikosgram13/Massively,nikosgram13,Java,false,false,true,0,false,false,false,false +travisbhartwell/vcsh_shell,travisbhartwell,Shell,false,false,false,0,false,false,false,false +travisbhartwell/vcsh_cli-misc,travisbhartwell,Vimscript,false,false,false,0,false,false,false,false +CeleriByte/KriptoByteVPN,CeleriByte,Java,false,false,false,0,false,false,false,false +oleksandromelchuk/rust-osm-reader,oleksandromelchuk,Rust,true,false,false,1,true,false,false,false +bento-openbox/openbox-control-center,bento-openbox,,false,false,false,0,false,false,false,false +terala/bandit,terala,C++,false,false,false,0,false,false,false,false +travisbhartwell/local-apps,travisbhartwell,Shell,false,false,false,0,false,false,false,false +Famill.io/Famill.io,Famill.io,PHP,false,false,false,0,false,false,false,false +vitimiti/video-dl,vitimiti,QML,false,false,false,0,false,false,false,false +Howardhhli/stacker,Howardhhli,C,false,false,false,0,false,false,false,false +Howardhhli/backlinked-priority-queue,Howardhhli,C++,false,false,false,0,false,false,false,false +Howardhhli/foldabilizer,Howardhhli,C++,false,false,false,0,false,false,false,false +tanjastular/probis-plugin,tanjastular,Python,false,false,false,0,false,false,false,false +breadmaker/ctmcorp.cl,breadmaker,HTML,true,false,false,1,false,false,true,false +balasankarc/publish2wp,balasankarc,Python,false,false,false,0,false,false,false,false +asura/data,asura,,true,false,false,1,false,true,false,false +n900-gentoo/overlay,n900-gentoo,Shell,false,false,false,0,false,false,false,false +ntninja/bashrc2,ntninja,,false,false,false,0,false,false,false,false +mcepl/hexo-renderer-restructuredtext,mcepl,JavaScript,false,false,false,0,false,false,false,false +zhouyi/myproject,zhouyi,,false,false,false,0,false,false,false,false +laniam-aertrip/assignment,laniam-aertrip,JavaScript,false,false,false,0,false,false,false,false +notklaatu/barefoot,notklaatu,C++,false,false,false,0,false,false,false,false +lxndrdagreat/sfml-animated-sprite,lxndrdagreat,C++,false,false,false,0,false,false,false,false +jerivas/mezzanine-boilerplate,jerivas,Python,false,false,false,0,false,false,false,false +rifky.ekayama/informatika-unjani,rifky.ekayama,JavaScript,false,false,false,0,false,false,false,false +ilpianista/HostIsDown,ilpianista,Java,true,false,false,2,true,true,false,false +2015g2s3/randNLAg2s3,2015g2s3,JupyterNotebook,false,false,false,0,false,false,false,false +maggit/maggit,maggit,Python,false,false,false,0,false,false,false,false +mkibiger/contao-haste,mkibiger,PHP,false,false,false,0,false,false,false,false +centminmod/centminmod,centminmod,Shell,false,false,false,0,false,false,false,false +alayor/monederobingo-services,alayor,HTML,false,false,true,0,false,false,false,false +scribe-labs/SMTP,scribe-labs,C#,false,false,false,0,false,false,false,false +dennis-hamester/dotfiles,dennis-hamester,Shell,false,false,false,0,false,false,false,false +DiawaraGuile/Estylus,DiawaraGuile,HTML,false,false,false,0,false,false,false,false +FFP/ffp-apdb-client,FFP,Shell,false,false,false,0,false,false,false,false +robottoOvGU/navigation,robottoOvGU,C++,false,false,false,0,false,false,false,false +kippa/DttSP,kippa,C,false,false,false,0,false,false,false,false +patelanuj/grayscale-theme,patelanuj,HTML,false,false,false,0,false,false,false,false +playerjek/check-length,playerjek,Java,false,false,true,0,false,false,false,false +ricardoerira/ProyectoDS,ricardoerira,C#,false,false,false,0,false,false,false,false +mazelium/Casino,mazelium,Python,false,false,false,0,false,false,false,false +en15for/cookbooks,en15for,Ruby,false,false,false,0,false,false,false,false +radiognu/gnoll-tg-legacy,radiognu,Python,false,false,false,0,false,false,false,false +multoo/error-handler,multoo,PHP,true,false,false,1,false,true,false,false +frank.afriat/koml,frank.afriat,Java,false,false,true,0,false,false,false,false +ObstsalatInc/GDV-Projekt_2015,ObstsalatInc,,false,false,false,0,false,false,false,false +robmyers/artworld-ethereum,robmyers,JavaScript,false,false,false,0,false,false,false,false +robmyers/blockchain-aesthetics,robmyers,JavaScript,false,false,false,0,false,false,false,false +robmyers/openarts,robmyers,HTML,false,false,false,0,false,false,false,false +krichtof/libreboard,krichtof,JavaScript,false,false,false,0,false,false,false,false +ckc6cz/RIPS_2015_Google_Project,ckc6cz,PostScript,false,false,false,0,false,false,false,false +0X1A/rpf,0X1A,Rust,true,false,false,1,false,true,false,false +NikosAlexandris/courses,NikosAlexandris,HTML,false,false,false,0,false,false,false,false +ufee1dead/quirky,ufee1dead,Vala,false,false,false,0,false,false,false,false +Pyshicon/CubeCoding,Pyshicon,Java,false,false,false,0,false,false,false,false +rogentos/vasile,rogentos,,false,false,false,0,false,false,false,false +PGrasseels/arduino,PGrasseels,C++,false,false,false,0,false,false,false,false +pixdrift/etcd-rpm-el6,pixdrift,Shell,false,false,false,0,false,false,false,false +6547/MaxTHA,6547,C++,false,false,false,0,false,false,false,false +curso-angularjs/practicas,curso-angularjs,JavaScript,false,false,false,0,false,false,false,false +dalewking/PivotalTrackerGithook,dalewking,Shell,false,false,false,0,false,false,false,false +dalewking/kotterknife,dalewking,Kotlin,false,false,false,0,false,false,false,false +cnsxhza985/java-portscan,cnsxhza985,Java,false,false,false,0,false,false,false,false +emilianh/IAR80,emilianh,,false,false,false,0,false,false,false,false +emilianh/Lockheed-L10-Electra,emilianh,,false,false,false,0,false,false,false,false +luzman/parent-pom,luzman,,false,false,true,0,false,false,false,false +vaal/wsnmon,vaal,Java,false,false,false,0,false,false,false,false +ghahremany/TimeLINE,ghahremany,Smarty,false,false,false,0,false,false,false,false +vberset/Momentum,vberset,C++,false,false,false,0,false,false,false,false +s4m-chef-repositories/storm-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false +timothyw/lisp,timothyw,C,true,false,false,1,false,true,false,false +dsosedov/slackbuilds,dsosedov,Shell,false,false,false,0,false,false,false,false +h2t/doxygen,h2t,C++,false,false,false,0,false,false,false,false +kipari/rrd-temp,kipari,Shell,false,false,false,0,false,false,false,false +manifiestoSL2015/web,manifiestoSL2015,Python,false,true,false,0,false,false,false,false +andreas.andrusch/paipline,andreas.andrusch,Python,false,false,false,0,false,false,false,false +doshitan/dots-emacs,doshitan,EmacsLisp,false,false,false,0,false,false,false,false +Fraser999/Rust-From-CXX,Fraser999,CMake,false,false,false,0,false,false,false,false +Floatt/vpnhelper,Floatt,Shell,false,false,false,0,false,false,false,false +lilian.nieto/macheo_salud,lilian.nieto,Java,false,false,false,0,false,false,false,false +the-gregs/rubHoo,the-gregs,Ruby,false,false,false,0,false,false,false,false +MobileDevTeam/AndroidDevelopmentTutorial,MobileDevTeam,,false,false,false,0,false,false,false,false +aurelien-riv/kahless,aurelien-riv,JavaScript,false,false,false,0,false,false,false,false +marcos-garcia/smartsantanderdataanalysis,marcos-garcia,JavaScript,false,false,false,0,false,false,false,false +ylywyn/jpush-api-go-client,ylywyn,Go,false,false,false,0,false,false,false,false +yuanbohan/fluffy,yuanbohan,,false,false,false,0,false,false,false,false +kingflurkel/popcorntime-smarttv,kingflurkel,JavaScript,false,false,false,0,false,false,false,false +MrFoil/SceneV2,MrFoil,C++,false,false,false,0,false,false,false,false +mikegerwitz/screen,mikegerwitz,C,false,false,false,0,false,false,false,false +ryanwhite/librestripe,ryanwhite,HTML,false,false,false,0,false,false,false,false +sqlobject/sqlobject,sqlobject,Python,false,false,false,0,false,false,false,false +sqlobject/fullhistory,sqlobject,Python,false,false,false,0,false,false,false,false +sqlobject/scripts,sqlobject,Shell,false,false,false,0,false,false,false,false +joykhan/Test,joykhan,PHP,false,false,false,0,false,false,false,false +jsfrocha/QRCode,jsfrocha,JavaScript,false,false,false,0,false,false,false,false +jsfrocha/CodeTalk,jsfrocha,JavaScript,false,false,false,0,false,false,false,false +Igel_Borstel/gnop,Igel_Borstel,C++,false,false,false,0,false,false,false,false +HardenedBSD/hardenedBSD-stable,HardenedBSD,C,false,false,false,0,false,false,false,false +raulhc/sapato36,raulhc,CSS,false,false,false,0,false,false,false,false +parobalth/u-boot_rpi2,parobalth,,false,false,false,0,false,false,false,false +J_Darnley/ffmpeg,J_Darnley,C,false,false,false,0,false,false,false,false +bZx/minecraft-init.d-tmux-spigot-scripts,bZx,Shell,false,false,false,0,false,false,false,false +gdetrez/gfdt,gdetrez,Haskell,false,false,false,0,false,false,false,false +log2akshat/UsefulScripts,log2akshat,Python,false,false,false,0,false,false,false,false +log2akshat/astrobian,log2akshat,,false,false,false,0,false,false,false,false +AsamK/textsecure-cli,AsamK,Java,false,false,false,0,false,false,false,false +kwlug/kwlug,kwlug,,false,false,false,0,false,false,false,false +alusion/paprika,alusion,HTML,false,false,false,0,false,false,false,false +iggdrasil/morrigan,iggdrasil,Java,false,false,false,0,false,false,false,false +thebeastcode/tercerentregable,thebeastcode,HTML,false,false,false,0,false,false,false,false +abre/fishconfig,abre,Shell,false,false,false,0,false,false,false,false +KitaitiMakoto/uri-tag,KitaitiMakoto,Ruby,false,false,false,0,false,false,false,false +infinitybd/QuickQC,infinitybd,CSS,false,false,false,0,false,false,false,false +ryanwhite/librejs-indiegogo,ryanwhite,JavaScript,false,false,false,0,false,false,false,false +petabridge/akka-bootcamp,petabridge,C#,false,false,false,0,false,false,false,false +orca-cfg/general,orca-cfg,Shell,false,false,false,0,false,false,false,false +bromancer/nodejs-gitlab-bot,bromancer,JavaScript,true,false,false,1,false,true,false,false +dewitpj/sipcomment,dewitpj,PHP,false,false,false,0,false,false,false,false +iggdrasil/morrigan-ng,iggdrasil,Python,true,true,false,2,true,true,false,false +nebogeo/geo,nebogeo,C++,false,false,false,0,false,false,false,false +electronoob/2xAD9850-SerialConsoleArduino,electronoob,C++,false,false,false,0,false,false,false,false +andreas.andrusch/database-updater,andreas.andrusch,Python,false,false,false,0,false,false,false,false +frank-feinbube/KOSM,frank-feinbube,C#,false,false,false,0,false,false,false,false +l214/MailSender,l214,PHP,false,false,false,0,false,false,false,false +shared-puppet-modules-group/resolvconf,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +waldonchen/vim-conf,waldonchen,Vimscript,false,false,false,0,false,false,false,false +jurgenhaas/toggl-button-greasemonkey,jurgenhaas,JavaScript,false,false,false,0,false,false,false,false +thesebas/kodi-bandcamp,thesebas,Python,false,false,false,0,false,false,false,false +morpheusbeing/retroshare-tor-documentation,morpheusbeing,HTML,false,false,false,0,false,false,false,false +esr/wumpus,esr,C,false,false,false,0,false,false,false,false +jovankricka/lister,jovankricka,CSS,false,false,true,0,false,false,false,false +malekhosseini/gnuforwin,malekhosseini,Fortran,false,false,false,0,false,false,false,false +svl/fp-mistral,svl,Puppet,false,false,false,0,false,false,false,false +epyme/percentage_widget,epyme,Python,false,false,false,0,false,false,false,false +jiangxihj/cart-imped-controller,jiangxihj,C++,false,false,false,0,false,false,false,false +DarkSV/test,DarkSV,,false,false,false,0,false,false,false,false +ICM-VisLab/JSciC,ICM-VisLab,Java,true,false,true,1,false,true,false,false +hftl/wonder_2.0,hftl,JavaScript,false,false,false,0,false,false,false,false +slice-group/web-henao,slice-group,HTML,false,false,false,0,false,false,false,false +lordappsec/MostGloriousActivity,lordappsec,C++,false,false,false,0,false,false,false,false +jcpst/metalsmith-prev-next-example,jcpst,HTML,false,false,false,0,false,false,false,false +jforge/armhf,jforge,Shell,false,false,false,0,false,false,false,false +jforge/JSON.sh,jforge,Shell,false,false,false,0,false,false,false,false +dexots/BillSharing,dexots,,false,false,false,0,false,false,false,false +naderhadda/TSBlog,naderhadda,PHP,false,false,false,0,false,false,false,false +epyme/web_mask_field,epyme,JavaScript,false,false,false,0,false,false,false,false +rinodung/test,rinodung,PHP,false,false,false,0,false,false,false,false +Emelianov/stm32samples,Emelianov,C,false,false,false,0,false,false,false,false +phpbbukraine/ukrainian-3.1,phpbbukraine,PHP,false,false,false,0,false,false,false,false +moondi/arch-stuff,moondi,,false,false,false,0,false,false,false,false +moondi/sublime-settings,moondi,CoffeeScript,false,false,false,0,false,false,false,false +doshitan/hourglass-fuzzy-parsing,doshitan,Haskell,false,false,false,0,false,false,false,false +iavael/vcsh,iavael,Perl,false,false,false,0,false,false,false,false +AndreaAmico/Ultracold-Atoms-Potentials,AndreaAmico,Python,false,false,false,0,false,false,false,false +synaestheory/synce,synaestheory,JavaScript,false,false,false,0,false,false,false,false +synaestheory/synge,synaestheory,JavaScript,false,false,false,0,false,false,false,false +yy-demo/foo,yy-demo,,false,false,false,0,false,false,false,false +Agent57/PubSub,Agent57,C++,false,false,false,0,false,false,false,false +Agent57/sandbox,Agent57,C#,false,false,false,0,false,false,false,false +Agent57/Thirdparty,Agent57,C++,false,false,false,0,false,false,false,false +cds.py/senavitat-data,cds.py,Python,false,true,false,0,false,false,false,false +Nallamala/AEM,Nallamala,,false,false,false,0,false,false,false,false +macagua/php-gitlab-ci,macagua,PHP,false,false,false,0,false,false,false,false +odarbelaeze/dotfiles,odarbelaeze,Shell,false,false,false,0,false,false,false,false +nightdweller/gagarin,nightdweller,JavaScript,false,false,false,0,false,false,false,false +GPDS/website,GPDS,,false,false,false,0,false,false,false,false +wak/wak-common,wak,Scheme,false,false,false,0,false,false,false,false +wak/wak-riastreams,wak,Scheme,false,false,false,0,false,false,false,false +wak/wak-syn-param,wak,Scheme,false,false,false,0,false,false,false,false +wak/wak-fmt,wak,Scheme,false,false,false,0,false,false,false,false +wak/wak-foof-loop,wak,Scheme,false,false,false,0,false,false,false,false +wak/wak-wt-tree,wak,Scheme,false,false,false,0,false,false,false,false +phinlander/Centos7-cluster-setup,phinlander,Shell,false,false,false,0,false,false,false,false +dangerdespain/actionhero,dangerdespain,JavaScript,false,false,false,0,false,false,false,false +dangerdespain/ah-validator-plugin,dangerdespain,JavaScript,false,false,false,0,false,false,false,false +dangerdespain/TDPAHSessionPlugin,dangerdespain,JavaScript,false,false,false,0,false,false,false,false +dangerdespain/readium,dangerdespain,CSS,false,false,false,0,false,false,false,false +dangerdespain/GhoStrap,dangerdespain,CSS,false,false,false,0,false,false,false,false +dangerdespain/Ghost,dangerdespain,JavaScript,false,false,false,0,false,false,false,false +dangerdespain/doc,dangerdespain,HTML,false,false,false,0,false,false,false,false +dangerdespain/ah-sequelizedocs-plugin,dangerdespain,JavaScript,false,false,false,0,false,false,false,false +dangerdespain/Saga,dangerdespain,CSS,false,false,false,0,false,false,false,false +kidakadeshia/BitHub,kidakadeshia,Java,false,false,true,0,false,false,false,false +kidaa/Core3-CU,kidaa,,false,false,false,0,false,false,false,false +kidaa/SuperpoweredLatency,kidaa,C,false,false,false,0,false,false,false,false +kidaa/threads,kidaa,Lua,false,false,false,0,false,false,false,false +kidaa/vanilla-wow-addons,kidaa,Lua,false,false,false,0,false,false,false,false +esilvert/2D-VA,esilvert,C++,false,false,false,0,false,false,false,false +elimane-gueye/jenkins-clean-theme,elimane-gueye,CSS,false,false,false,0,false,false,false,false +yafeiye/yyf,yafeiye,Python,false,false,false,0,false,false,false,false +FreeRPG/FreeRPG-Torque3D,FreeRPG,,false,false,false,0,false,false,false,false +FreeRPG/FreeRPG,FreeRPG,C#,false,false,false,0,false,false,false,false +XaiMendez/AlcaldiaSS,XaiMendez,HTML,false,false,false,0,false,false,false,false +FreeRPG/Torque3D-ProjectManager,FreeRPG,C++,false,false,false,0,false,false,false,false +FreeRPG/Torque3D-Documentation,FreeRPG,,false,false,false,0,false,false,false,false +ICM-VisLab/JLargeArrays,ICM-VisLab,Java,true,false,true,1,false,true,false,false +generik/consul-watchdog,generik,Python,false,true,false,0,false,false,false,false +jtecca/work-emacs,jtecca,EmacsLisp,false,false,false,0,false,false,false,false +redzrex/repo,redzrex,HTML,false,false,false,0,false,false,false,false +romain.rinie/DS18B20ESP8622,romain.rinie,C++,false,false,false,0,false,false,false,false +silpol/erpnext,silpol,Python,false,false,false,0,false,false,false,false +pumis/sock,pumis,Clojure,false,false,false,0,false,false,false,false +the_pang/plugin_hotsheet,the_pang,JavaScript,false,false,false,0,false,false,false,false +SwePopper/acclution,SwePopper,C++,false,false,false,0,false,false,false,false +Kovtun/SpinBoxes,Kovtun,Objective-C,false,false,false,0,false,false,false,false +balasankarc/rahasya,balasankarc,Python,false,false,false,0,false,false,false,false +alfwatt/cardview,alfwatt,Objective-C,false,false,false,0,false,false,false,false +ICM-VisLab/VisNow,ICM-VisLab,Java,false,false,false,0,false,false,false,false +jeruick/portafolio,jeruick,HTML,false,false,false,0,false,false,false,false +Amatsukan/BFIT_BrainFuck-Interpreter-Terminal,Amatsukan,C,false,false,false,0,false,false,false,false +Amatsukan/Tupper-s-self-referential-formula,Amatsukan,Python,false,false,false,0,false,false,false,false +maikeps/JACCCG,maikeps,Java,false,false,false,0,false,false,false,false +tongyang/okhttp,tongyang,Java,false,false,true,0,false,false,false,false +aaron-baugher/lacuna-scripts,aaron-baugher,Perl,false,false,false,0,false,false,false,false +aaron-baugher/perl-cardgames,aaron-baugher,Perl,false,false,false,0,false,false,false,false +aaron-baugher/misc-perl-scripts,aaron-baugher,Perl,false,false,false,0,false,false,false,false +niedersaechsische-talente-akademie/TurbanGuy,niedersaechsische-talente-akademie,Java,false,false,false,0,false,false,false,false +JJVV27/underscore,JJVV27,JavaScript,false,false,false,0,false,false,false,false +cenit-io/odoo-integrations,cenit-io,Python,false,false,false,0,false,false,false,false +tommyettinger/openjdk-unofficial-builds,tommyettinger,C,false,false,false,0,false,false,false,false +bocianu/TurboSnail,bocianu,C,false,false,false,0,false,false,false,false +mehmetbektas/ChatApplication,mehmetbektas,Java,false,false,false,0,false,false,false,false +nav/ZippyTheUnzipper,nav,PHP,false,false,false,0,false,false,false,false +Ririchiyo/vgstation13,Ririchiyo,DM,false,false,false,0,false,false,false,false +stater/swig,stater,JavaScript,false,false,false,0,false,false,false,false +stater/stater,stater,JavaScript,false,false,false,0,false,false,false,false +somnus50/Graphene,somnus50,Mathematica,false,false,false,0,false,false,false,false +zero808/lisp-koans,zero808,CommonLisp,false,false,false,0,false,false,false,false +dugite-code/auth_rcmail,dugite-code,PHP,false,false,false,0,false,false,false,false +SAFRAN/Linear_Algebra_Tools,SAFRAN,C++,false,false,false,0,false,false,false,false +dalton/IchorIntegralLibrary,dalton,Fortran,false,false,false,0,false,false,false,false +Acidburn0zzz/antlr4,Acidburn0zzz,Java,false,false,true,0,false,false,false,false +Acidburn0zzz/arch-install-scripts,Acidburn0zzz,Shell,false,false,false,0,false,false,false,false +Acidburn0zzz/framanews_ttrss,Acidburn0zzz,PHP,false,false,false,0,false,false,false,false +Acidburn0zzz/mps-youtube,Acidburn0zzz,Python,false,false,false,0,false,false,false,false +Acidburn0zzz/assemble,Acidburn0zzz,HTML,false,false,false,0,false,false,false,false +Acidburn0zzz/Jarvis,Acidburn0zzz,Python,false,false,false,0,false,false,false,false +Acidburn0zzz/manjaroiso,Acidburn0zzz,Shell,false,false,false,0,false,false,false,false +Acidburn0zzz/blackarch,Acidburn0zzz,Shell,false,false,false,0,false,false,false,false +Acidburn0zzz/BootManager,Acidburn0zzz,Java,false,false,false,0,false,false,false,false +kylegordon/mqtt-rfm12b,kylegordon,Python,false,false,false,0,false,false,false,false +mglinski/scripts,mglinski,Shell,false,false,false,0,false,false,false,false +dto/2x0ng,dto,CommonLisp,false,false,false,0,false,false,false,false +dto/4x0ng,dto,CommonLisp,false,false,false,0,false,false,false,false +warsaw/winring,warsaw,EmacsLisp,false,false,false,0,false,false,false,false +hftl/wonder_doc_2.0,hftl,TeX,false,false,false,0,false,false,false,false +N3X15/sm-ext-socket,N3X15,C++,false,false,false,0,false,false,false,false +MaddoScientisto/MaddoScriptsSS13,MaddoScientisto,C,false,false,false,0,false,false,false,false +mo-group/the-way-to-go_ZH_CN,mo-group,Go,false,false,false,0,false,false,false,false +roth1002/awesome-php,roth1002,,false,false,false,0,false,false,false,false +roth1002/beego,roth1002,Go,false,false,false,0,false,false,false,false +roth1002/react-redux-universal-hot-example,roth1002,JavaScript,false,false,false,0,false,false,false,false +vandru/vandru,vandru,,false,false,false,0,false,false,false,false +craigderington/freelancer-1.0.4,craigderington,JavaScript,false,false,false,0,false,false,false,false +archer72/irssi-config,archer72,Perl,false,false,false,0,false,false,false,false +oi2/helping-skills,oi2,HTML,false,false,false,0,false,false,false,false +austin-vern-songer/SystemAdministrationProgramsApplications,austin-vern-songer,,false,false,false,0,false,false,false,false +rbarrera87/blogpost,rbarrera87,Ruby,false,false,false,0,false,false,false,false +Octav/_Sourcly,Octav,JavaScript,false,false,false,0,false,false,false,false +sensemagik/sensemagik-app,sensemagik,HTML,false,false,false,0,false,false,false,false +mkaag/ansible-osx,mkaag,Shell,false,false,false,0,false,false,false,false +colibri-isc/laravel-template,colibri-isc,JavaScript,false,false,false,0,false,false,false,false +rodo/pg_tools,rodo,Python,true,false,false,1,false,true,false,false +mharizanov/RFM2Pi,mharizanov,C++,false,false,false,0,false,false,false,false +samuel.hodgkins/NaRIS,samuel.hodgkins,,false,false,false,0,false,false,false,false +dbordak/telephone-line,dbordak,EmacsLisp,false,false,false,0,false,false,false,false +sotitrox/granada,sotitrox,PHP,false,false,false,0,false,false,false,false +wincent/wincent,wincent,Vimscript,false,false,false,0,false,false,false,false +gbraad/gauth,gbraad,JavaScript,true,false,false,2,true,true,false,false +technomancy/dotfiles,technomancy,EmacsLisp,false,false,false,0,false,false,false,false +technomancy/calandria,technomancy,Lua,false,false,false,0,false,false,false,false +rosarior/doms,rosarior,,false,false,false,0,false,false,false,false +rosarior/rua,rosarior,Python,false,false,false,0,false,false,false,false +Tech_Advancer/SIGN,Tech_Advancer,PHP,false,false,false,0,false,false,false,false +sharan/django-ajax-chat,sharan,Python,false,false,false,0,false,false,false,false +osv/osv,osv,C,false,false,false,0,false,false,false,false +samurailink3/hivemind,samurailink3,Ruby,false,false,false,0,false,false,false,false +Titov/minecraft_config,Titov,,false,false,false,0,false,false,false,false +joaopizani/avr-wavegen,joaopizani,Makefile,false,false,false,0,false,false,false,false +rosarior/django-replication,rosarior,CSS,false,false,false,0,false,false,false,false +wouterbaake/grafana,wouterbaake,JavaScript,false,false,false,0,false,false,false,false +fmartingr/fmartingr.com,fmartingr,Python,false,true,false,0,false,false,false,false +gitlab-pivotal/gitlab-ee-bosh-release,gitlab-pivotal,HTML,true,false,false,1,false,true,false,false +.sexy/tmux,.sexy,,false,false,false,0,false,false,false,false +joaopizani/env.screenrc-ftw,joaopizani,Shell,false,false,false,0,false,false,false,false +DamianPrg/liteforo-v1,DamianPrg,PHP,false,false,false,0,false,false,false,false +joaopizani/piware,joaopizani,TeX,true,false,false,1,false,false,true,false +otharwa/huerken-tools,otharwa,JavaScript,false,false,false,0,false,false,false,false +southerncrossgaming/Burnburnburn,southerncrossgaming,SourcePawn,false,false,false,0,false,false,false,false +Rowedahelicon/status_checker,Rowedahelicon,PHP,false,false,false,0,false,false,false,false +calafou/uzta,calafou,Python,false,true,false,0,false,false,false,false +banjo/Adventure_C_SHARP,banjo,C#,false,false,false,0,false,false,false,false +tsevillano/jquery-teleprompter,tsevillano,HTML,false,false,false,0,false,false,false,false +codingrights/deepgraphics,codingrights,Ruby,false,false,false,0,false,false,false,false +philip-luyckx/VersionConverterForMbs,philip-luyckx,C++,false,false,false,0,false,false,false,false +godfrey.obinchu/Hygieia,godfrey.obinchu,Java,false,false,true,0,false,false,false,false +mietim/eventmanagement,mietim,Java,false,false,false,0,false,false,false,false +ArmarX/ArmarXGui,ArmarX,C++,false,false,false,0,false,false,false,false +ArmarX/RobotAPI,ArmarX,C++,false,false,false,0,false,false,false,false +ArmarX/ArmarXSimulation,ArmarX,C++,false,false,false,0,false,false,false,false +cmfcmf/Zikula-Media-Module,cmfcmf,PHP,false,false,false,0,false,false,false,false +alexbuzzbee/LDOS,alexbuzzbee,Lua,false,false,false,0,false,false,false,false +jose.garcia.domene/conv_to,jose.garcia.domene,Python,false,false,false,0,false,false,false,false +ntninja/project-gorgon-launcher,ntninja,Python,false,false,false,0,false,false,false,false +Montalvo/Arduino_Projects,Montalvo,C,false,false,false,0,false,false,false,false +marcin-kitowicz/TrelloClient,marcin-kitowicz,Java,false,false,false,0,false,false,false,false +sikm31/wimm,sikm31,Java,false,false,true,0,false,false,false,false +almonsin/fmt11,almonsin,C++,true,false,false,1,false,true,false,false +millette/garrocheur,millette,JavaScript,false,false,false,0,false,false,false,false +ToCraft/tocraft_core,ToCraft,Java,false,false,true,0,false,false,false,false +Thooms/url-shortener,Thooms,Haskell,false,false,false,0,false,false,false,false +pranavmane/CS350,pranavmane,Oz,false,false,false,0,false,false,false,false +farsq/m3u8parser,farsq,Rust,false,false,false,0,false,false,false,false +amar.techspawn/demo,amar.techspawn,,false,false,false,0,false,false,false,false +ayufan/golang-cli-helpers,ayufan,Go,false,false,false,0,false,false,false,false +carogomezt/Proyecto-salento,carogomezt,HTML,false,false,false,0,false,false,false,false +aoighost/crange,aoighost,Python,false,false,false,0,false,false,false,false +aoighost/infosecdefaultsdb,aoighost,,false,false,false,0,false,false,false,false +aoighost/UEJoystickPlugin,aoighost,C++,false,false,false,0,false,false,false,false +aoighost/ProjectTox-Qt-GUI,aoighost,C++,false,false,false,0,false,false,false,false +aoighost/lutris,aoighost,Python,false,false,false,0,false,false,false,false +raposo/nuevo,raposo,,false,false,false,0,false,false,false,false +atphp/atsilex,atphp,PHP,false,false,false,0,false,false,false,false +rajkandur/miniwatson-qa-system,rajkandur,Java,false,false,false,0,false,false,false,false +zetok/zetok-overlay,zetok,Shell,false,false,false,0,false,false,false,false +petermarines/ThinkDSP,petermarines,JupyterNotebook,false,false,false,0,false,false,false,false +Khrupalik/Extension-ATutor,Khrupalik,JavaScript,false,false,false,0,false,false,false,false +fche/systemtap,fche,C++,false,false,false,0,false,false,false,false +Chedi/bash_config,Chedi,Python,false,false,false,0,false,false,false,false +Chedi/django-iban-field,Chedi,Python,false,true,false,0,false,false,false,false +Chedi/xmonad,Chedi,Haskell,false,false,false,0,false,false,false,false +ShadowVPN/shadowsocks,ShadowVPN,Python,false,false,false,0,false,false,false,false +robertcsakany/MidiAssistant,robertcsakany,Java,false,false,true,0,false,false,false,false +zhuifeng_543621/fund-demo,zhuifeng_543621,Java,false,false,false,0,false,false,false,false +zetok/gentoo-overlay-tox,zetok,Shell,false,false,false,0,false,false,false,false +Cofi/trinfo,Cofi,Python,false,false,false,0,false,false,false,false +wangjian/ngx_http_snowflake,wangjian,C,false,false,false,0,false,false,false,false +shaon_HEX/Birth_Certificate,shaon_HEX,PHP,false,false,false,0,false,false,false,false +dsmontoya/btcontainer,dsmontoya,Ruby,false,false,false,0,false,false,false,false +JohnMH/Block2D,JohnMH,C++,false,false,false,0,false,false,false,false +stefan-j/422-Web-Dev,stefan-j,JavaScript,false,false,false,0,false,false,false,false +pygotham/pygotham.org,pygotham,Python,false,true,false,0,false,false,false,false +zsudraco/testing-project,zsudraco,,false,false,false,0,false,false,false,false +isfahanlug/android_tutorial_projects,isfahanlug,,false,false,false,0,false,false,false,false +cedric/ip-link,cedric,Python,false,false,false,0,false,false,false,false +mql/mtapi,mql,C#,false,false,false,0,false,false,false,false +JavaPortscanner/portscanner-lib,JavaPortscanner,Java,false,false,true,0,false,false,false,false +JavaPortscanner/portscanner-example,JavaPortscanner,Java,false,false,true,0,false,false,false,false +jbwhips883/112-Bible,jbwhips883,Java,false,false,false,0,false,false,false,false +lembang/scriptz,lembang,Shell,false,false,false,0,false,false,false,false +gmem/notdonemywebsite,gmem,PHP,false,false,false,0,false,false,false,false +pantheon-debian/gala,pantheon-debian,,false,false,false,0,false,false,false,false +meusprojetos/grafos,meusprojetos,Java,false,false,false,0,false,false,false,false +snowdream/awesome-android,snowdream,,false,false,false,0,false,false,false,false +dadreggors/gitexamples,dadreggors,Shell,false,false,false,0,false,false,false,false +PascalSmeets/psek-fitnesse-project-archetype,PascalSmeets,CSS,false,false,true,0,false,false,false,false +yaowenli/project_yao,yaowenli,C,false,false,false,0,false,false,false,false +zahardzhan/well-tuned-emacs,zahardzhan,,false,false,false,0,false,false,false,false +andrew-codes/react-relay-graphql-starter,andrew-codes,JavaScript,false,false,false,0,false,false,false,false +mcepl/pipes-replacements,mcepl,Python,false,false,false,0,false,false,false,false +baconworx/campusfixreloaded,baconworx,HTML,false,false,false,0,false,false,false,false +mahdaen/singclude,mahdaen,JavaScript,true,false,false,1,false,true,false,false +kristianmandrup/graphql-koa,kristianmandrup,JavaScript,false,false,false,0,false,false,false,false +anlijudavid/AppSemilleroProgramacionSW2,anlijudavid,,false,false,false,0,false,false,false,false +sivaprakash/Test2,sivaprakash,HTML,false,false,false,0,false,false,false,false +crazyusb/Fedora-snalis,crazyusb,,false,false,false,0,false,false,false,false +aitako/csvServer,aitako,JavaScript,false,false,false,0,false,false,false,false +skyeventure/verifyEmail,skyeventure,PHP,false,false,false,0,false,false,false,false +leliflen/osuRC,leliflen,C#,false,false,false,0,false,false,false,false +Sant_Ana/TesteArquivo,Sant_Ana,C++,false,false,false,0,false,false,false,false +xivocc/sample_reports,xivocc,,false,false,false,0,false,false,false,false +ehemsley/vapor-fm,ehemsley,JavaScript,false,false,false,0,false,false,false,false +iglad/DbMigrations,iglad,C#,false,false,false,0,false,false,false,false +iiifx-production/lazy-init,iiifx-production,PHP,false,false,false,0,false,false,false,false +Octopoida/Kraken-R,Octopoida,R,false,false,false,0,false,false,false,false +newellshk/assburner,newellshk,C++,false,false,false,0,false,false,false,false +aitor_czr/libpqxx,aitor_czr,C++,false,false,false,0,false,false,false,false +aitor_czr/linux-libre,aitor_czr,,false,false,false,0,false,false,false,false +TomNomNom/distributing-work-with-rabbitmq,TomNomNom,JavaScript,false,false,false,0,false,false,false,false +pwoszczyk/noip,pwoszczyk,PHP,false,false,false,0,false,false,false,false +kristianmandrup/falcor-create-demo,kristianmandrup,JavaScript,false,false,false,0,false,false,false,false +rraadi/tttvtp,rraadi,,false,false,false,0,false,false,false,false +anlijudavid/TrabajoClase,anlijudavid,C#,false,false,false,0,false,false,false,false +devsport/devsportjs,devsport,JavaScript,false,false,false,0,false,false,false,false +stepwo/catalog-page-generator,stepwo,Java,true,false,true,1,false,true,false,false +jirka.hlavacek/mattermost-android-client,jirka.hlavacek,JavaScript,false,false,false,0,false,false,false,false +.sexy/solarized-darcula-color-scheme,.sexy,Vimscript,false,false,false,0,false,false,false,false +articlefr1/articleFR,articlefr1,JavaScript,false,false,false,0,false,false,false,false +ykweyerfolio/portfolio,ykweyerfolio,PHP,false,false,false,0,false,false,false,false +IvonneSequeira/Ivonne,IvonneSequeira,HTML,false,false,false,0,false,false,false,false +mgoral/quicksend,mgoral,Python,true,true,false,1,false,true,false,false +billhibadb/reaver-wps,billhibadb,C,false,false,false,0,false,false,false,false +vim_toolset/vim-toolset-installer,vim_toolset,Shell,false,false,false,0,false,false,false,false +worldmind/fire-story,worldmind,,false,false,false,0,false,false,false,false +wldcordeiro/learning,wldcordeiro,JavaScript,false,false,false,0,false,false,false,false +jiewenli/free-programming-books-zh_CN,jiewenli,,false,false,false,0,false,false,false,false +jiewenli/the-way-to-go_ZH_CN,jiewenli,Go,false,false,false,0,false,false,false,false +mheiges/vagrant-gitllab,mheiges,Shell,false,false,false,0,false,false,false,false +pantheon-debian/wingpanel,pantheon-debian,,false,false,false,0,false,false,false,false +pantheon-debian/wingpanel-indicator-network,pantheon-debian,,false,false,false,0,false,false,false,false +pantheon-debian/scratch-text-editor,pantheon-debian,,false,false,false,0,false,false,false,false +mselmany/bracket-extensions,mselmany,JavaScript,false,false,false,0,false,false,false,false +wamburu/awesome-nodejs,wamburu,,false,false,false,0,false,false,false,false +wamburu/ukarimu,wamburu,,false,false,false,0,false,false,false,false +wamburu/nodejs-starter,wamburu,JavaScript,false,false,false,0,false,false,false,false +munijava/devel_enviroment,munijava,,false,false,false,0,false,false,false,false +pinata/banorte-payworks,pinata,Ruby,false,false,false,0,false,false,false,false +mdklinux/dnf-urpm,mdklinux,Python,false,false,false,0,false,false,false,false +teama/CodeVisualization,teama,Java,false,false,false,0,false,false,false,false +gitlab-org/gitlab-rouge,gitlab-org,Ruby,false,false,false,0,false,false,false,false +ayansome1/findmyadvocate,ayansome1,Java,false,false,false,0,false,false,false,false +CrazyKTV/CrazyKTVWeb,CrazyKTV,ASP,false,false,false,0,false,false,false,false +cvarga/kernel,cvarga,,false,false,false,0,false,false,false,false +juanjuan816/unslider,juanjuan816,HTML,false,false,false,0,false,false,false,false +annabelle/lady-a-photography,annabelle,HTML,false,false,false,0,false,false,false,false +FalconMasters/custom_radio_checkbox,FalconMasters,CSS,false,false,false,0,false,false,false,false +binil1931/cordova-sms-plugin,binil1931,Java,false,false,false,0,false,false,false,false +OvGU-ESS/distribution-check,OvGU-ESS,Python,false,false,false,0,false,false,false,false +savannidgerinel/trans-health,savannidgerinel,HTML,false,false,false,0,false,false,false,false +ericjoel/Nova,ericjoel,PHP,false,false,false,0,false,false,false,false +WhyNotHugo/scrotpush,WhyNotHugo,Python,false,false,false,0,false,false,false,false +snowhitiger/PyVisc,snowhitiger,Python,false,false,false,0,false,false,false,false +anlijudavid/AppSW2,anlijudavid,JavaScript,false,false,false,0,false,false,false,false +guillermoCS/sacsaapp,guillermoCS,Java,false,false,false,0,false,false,false,false +radiognu/PPTLS,radiognu,JavaScript,true,false,false,1,false,false,true,false +swurm/vagrant_csp,swurm,TeX,false,false,false,0,false,false,false,false +cky/cppjam,cky,C++,false,false,false,0,false,false,false,false +yonice.perez/cli,yonice.perez,PHP,false,false,false,0,false,false,false,false +kaushal-pradeep89/drugvedavendor,kaushal-pradeep89,HTML,false,false,true,0,false,false,false,false +m-bender/Prenault_SAK,m-bender,PHP,false,false,false,0,false,false,false,false +ajcarrillo/seguridad-higiene,ajcarrillo,PHP,false,false,false,0,false,false,false,false +nathan0reuter/ImplementacaoGrafo,nathan0reuter,JavaScript,false,false,false,0,false,false,false,false +ichu/hotkeys,ichu,JavaScript,false,false,false,0,false,false,false,false +ootoovak/library-app,ootoovak,JavaScript,false,false,false,0,false,false,false,false +cooperativa-integral-catalana/comunicado-lorea,cooperativa-integral-catalana,Makefile,false,false,false,0,false,false,false,false +edgartenesaca/Kesker-Odoo,edgartenesaca,Python,false,false,false,0,false,false,false,false +ubalab/gaivotafmbr,ubalab,Shell,false,false,false,0,false,false,false,false +blumug/celstash,blumug,Python,false,true,false,0,false,false,false,false +TheGreenyMan/amr_wb,TheGreenyMan,C,false,false,false,0,false,false,false,false +joshbeard/puppet-icinga2,joshbeard,Puppet,false,false,false,0,false,false,false,false +joshbeard/puppet-module-test,joshbeard,Ruby,false,false,false,0,false,false,false,false +joshbeard/vagrant-puppetenv,joshbeard,Puppet,false,false,false,0,false,false,false,false +CodeBC/Hello,CodeBC,,false,false,false,0,false,false,false,false +datalink747/Android-Flight-Listings,datalink747,Java,false,false,false,0,false,false,false,false +LinHaiGU/android-common,LinHaiGU,Java,false,false,true,0,false,false,false,false +snouf/geany_plugin_arduino_ide,snouf,Python,false,false,false,0,false,false,false,false +cenit-io/odoo-shastiinfotech,cenit-io,CSS,false,false,false,0,false,false,false,false +htgoebel/OSD-Neo2,htgoebel,Python,true,true,false,1,false,false,true,false +Dayvie/TurtleBitBunny,Dayvie,Java,false,false,false,0,false,false,false,false +emperorofmars/libmaudio,emperorofmars,C++,false,false,false,0,false,false,false,false +JigyasaCodes/JavaXMLParser,JigyasaCodes,Java,false,false,false,0,false,false,false,false +Sing-Li/Rocket.Chat.Appliance,Sing-Li,,false,false,false,0,false,false,false,false +KdGAppli/Owl,KdGAppli,,false,false,false,0,false,false,false,false +gizur/docker-magento,gizur,Shell,false,false,false,0,false,false,false,false +gizur/odataserver,gizur,JavaScript,false,false,false,0,false,false,false,false +argent/argent-server,argent,Shell,false,false,false,0,false,false,false,false +argent/argent-live,argent,Shell,false,false,false,0,false,false,false,false +argent/argent-molecules,argent,Shell,false,false,false,0,false,false,false,false +argent/argent-main,argent,Shell,false,false,false,0,false,false,false,false +argent/argent-skel,argent,Scheme,false,false,false,0,false,false,false,false +argent/argent-build,argent,Shell,false,false,false,0,false,false,false,false +danielafeitosa/pgcomp,danielafeitosa,TeX,false,false,false,0,false,false,false,false +Itsyuka/Altis-Life,Itsyuka,SQF,false,false,false,0,false,false,false,false +hyperclock/devMaster,hyperclock,Shell,false,false,false,0,false,false,false,false +sonofiron/Parallels,sonofiron,Shell,false,false,false,0,false,false,false,false +sonofiron/PromoteAdmin,sonofiron,Shell,false,false,false,0,false,false,false,false +deubaka/gdg2015-android-m-permissions,deubaka,Java,false,false,false,0,false,false,false,false +deubaka/gdg2015-android-m-auto-backup,deubaka,Java,false,false,false,0,false,false,false,false +deubaka/gdg2015-android-m,deubaka,,false,false,false,0,false,false,false,false +gonzalojpv/gitignore,gonzalojpv,,false,false,false,0,false,false,false,false +gonzalojpv/gnu-emacs-custom,gonzalojpv,,false,false,false,0,false,false,false,false +jonasof/cpanel-dns-updater,jonasof,PHP,false,false,false,0,false,false,false,false +ysh329/Chinese-UFLDL-Tutorial,ysh329,,false,false,false,0,false,false,false,false +jobvacancy-java/jobvacancy-source,jobvacancy-java,Java,false,false,false,0,false,false,false,false +Zanthos/FishSimVisualAid,Zanthos,Java,false,false,false,0,false,false,false,false +TXCobalt/TXCobalt.Core,TXCobalt,C#,true,false,false,1,false,true,false,false +krabello/prestashop,krabello,Python,false,false,false,0,false,false,false,false +yqian1991/bitstarter-leaderboard,yqian1991,JavaScript,false,false,false,0,false,false,false,false +oskar8232003/herencia,oskar8232003,Java,false,false,false,0,false,false,false,false +lionel-claudon/sunshine,lionel-claudon,Java,false,false,false,0,false,false,false,false +vpanicke/mr-data-converter,vpanicke,JavaScript,false,false,false,0,false,false,false,false +TXCobalt/TXCobalt.Game,TXCobalt,C#,false,false,false,0,false,false,false,false +MachadoDJ/s4ml,MachadoDJ,Python,false,false,false,0,false,false,false,false +anlijudavid/API_REST_NodeJS,anlijudavid,JavaScript,false,false,false,0,false,false,false,false +jbydeley/go-semaphore,jbydeley,Go,true,false,false,1,false,true,false,false +raspberry_pi/node_io,raspberry_pi,Shell,false,false,false,0,false,false,false,false +smartbgp/yabgp,smartbgp,Python,false,true,false,0,false,false,false,false +playerjek/contacts,playerjek,Java,false,false,true,0,false,false,false,false +vishal-k3gster/Symbol_Table,vishal-k3gster,C,false,false,false,0,false,false,false,false +opencraft/opencraft,opencraft,Python,false,true,false,0,false,false,false,false +adriagm/ansible,adriagm,Shell,false,false,false,0,false,false,false,false +noosfero/directory,noosfero,HTML,false,false,false,0,false,false,false,false +heraldlabial/team_tasyon_repo,heraldlabial,HTML,false,false,false,0,false,false,false,false +kigerpunk/leo,kigerpunk,,false,false,false,0,false,false,false,false +madbrenner/PyStat,madbrenner,JavaScript,false,false,false,0,false,false,false,false +bozmeg/inovation-textile,bozmeg,JavaScript,false,false,false,0,false,false,false,false +zero808/micro-machines,zero808,C++,false,false,false,0,false,false,false,false +burke-software/hubot-taiga,burke-software,CoffeeScript,false,false,false,0,false,false,false,false +rockzalo/spree-tbk-webpay,rockzalo,Ruby,false,false,false,0,false,false,false,false +stoa/delivery,stoa,Ruby,false,false,false,0,false,false,false,false +aananthcn/meta-aananth,aananthcn,BitBake,false,false,false,0,false,false,false,false +listrophy/n_body,listrophy,Ruby,false,false,false,0,false,false,false,false +hgmin/eclipse_hello,hgmin,,false,false,false,0,false,false,false,false +fablabasturias/GCodeGen,fablabasturias,Processing,false,false,false,0,false,false,false,false +drupalportugal/drupal.pt-code,drupalportugal,JavaScript,false,false,false,0,false,false,false,false +furyn/GenMan,furyn,C++,false,false,false,0,false,false,false,false +jurisdesk/drone,jurisdesk,Go,false,false,false,0,false,false,false,false +weinshec/G4TES,weinshec,C++,false,false,false,0,false,false,false,false +safegees/Safegees_IOS,safegees,Objective-C,false,false,false,0,false,false,false,false +lbartoletti/CADDigitize,lbartoletti,Python,false,false,false,0,false,false,false,false +hack-up-2015/team-me-turner,hack-up-2015,HTML,false,false,false,0,false,false,false,false +Jun321/HomePal,Jun321,,false,false,false,0,false,false,false,false +jensj/spelltinkle,jensj,Python,true,false,false,1,false,true,false,false +rodo/pygcat,rodo,Python,true,false,false,2,false,false,false,false +Ludovic/pyscard,Ludovic,Python,false,false,false,0,false,false,false,false +houchao/simpel,houchao,,false,false,false,0,false,false,false,false +rootcaid/pki-websdk-build,rootcaid,JavaScript,true,false,false,1,false,true,false,false +shenzhenlong1203/EpicEditor,shenzhenlong1203,JavaScript,false,false,false,0,false,false,false,false +shenzhenlong1203/LaneWeChat,shenzhenlong1203,PHP,false,false,false,0,false,false,false,false +shenzhenlong1203/lnmp,shenzhenlong1203,Shell,false,false,false,0,false,false,false,false +nickchaffee/public,nickchaffee,HTML,false,false,false,0,false,false,false,false +ChrisZhao/test,ChrisZhao,,false,false,false,0,false,false,false,false +seikosta/jaxa-compe-apli,seikosta,C#,false,false,false,0,false,false,false,false +Rossignol/Project,Rossignol,,false,false,false,0,false,false,false,false +vbrh-immalle/wiskunde,vbrh-immalle,HTML,false,false,false,0,false,false,false,false +Michel_Gabriel/myawesomeproject,Michel_Gabriel,,false,false,false,0,false,false,false,false +alexsk/atm,alexsk,HTML,false,false,false,0,false,false,false,false +michael-lloyd-lee/dropwizard-guice-example,michael-lloyd-lee,Java,false,false,true,0,false,false,false,false +haleks/vitalize,haleks,CSS,false,false,false,0,false,false,false,false +ahernandez/tutorial-angularjs,ahernandez,JavaScript,false,false,false,0,false,false,false,false +k-chaney/redteam_sd_repo,k-chaney,C++,true,false,false,3,true,true,false,false +rollodeqc/jsfe,rollodeqc,JavaScript,false,false,false,0,false,false,false,false +hallison/git-lighttp,hallison,Ruby,true,false,false,1,false,true,false,false +lionel-claudon/arduino-dolly-photography,lionel-claudon,C++,false,false,false,0,false,false,false,false +kb/checkout,kb,Python,true,false,false,1,false,true,false,false +RedShift/Mandelbrot,RedShift,Python,false,false,false,0,false,false,false,false +tomjrob/ansible-consul,tomjrob,Ruby,false,false,false,0,false,false,false,false +theodorton/dredd-test-rails,theodorton,Ruby,false,false,false,0,false,false,false,false +lilychow/test,lilychow,,false,false,false,0,false,false,false,false +Almarane/hexa1_bac_a_sable,Almarane,HTML,false,false,false,0,false,false,false,false +walidocool1/projetFilms,walidocool1,JavaScript,false,false,false,0,false,false,false,false +groundzerolabs/hightide-app-prototype,groundzerolabs,,false,false,false,0,false,false,false,false +jespinoza/GestionTicket,jespinoza,C#,false,false,false,0,false,false,false,false +echoes91/spears,echoes91,Lua,false,false,false,0,false,false,false,false +seanlane/CS484-Project3,seanlane,C,false,false,false,0,false,false,false,false +iamssurya/partner-app,iamssurya,JavaScript,false,false,false,0,false,false,false,false +BlackEdder/ggplotd,BlackEdder,D,true,false,false,1,false,true,false,false +steko/edin-vignale,steko,PHP,false,false,false,0,false,false,false,false +p1bred/Zarmin,p1bred,C#,false,false,false,0,false,false,false,false +mawalker/simple-android-examples,mawalker,Java,false,false,false,0,false,false,false,false +raptros155/FurStats,raptros155,Python,false,false,false,0,false,false,false,false +raulhc/raulhc-app,raulhc,JavaScript,false,false,false,0,false,false,false,false +idevz/vanilla,idevz,Lua,false,false,false,0,false,false,false,false +Airmail/Airmail_Public,Airmail,,false,false,false,0,false,false,false,false +loginov_is/mr.butler,loginov_is,PHP,false,false,false,0,false,false,false,false +agmartin/linuxdoc-tools,agmartin,C,false,false,false,0,false,false,false,false +NafeesAbbasi/My-Projects-Php,NafeesAbbasi,JavaScript,false,false,false,0,false,false,false,false +reubenajohnston/mcmcBayes,reubenajohnston,Matlab,false,false,false,0,false,false,false,false +korovin/iprover,korovin,OCaml,false,false,false,0,false,false,false,false +adoksnaj/Sim-mayor,adoksnaj,PHP,false,false,false,0,false,false,false,false +sangrey/BayesianKalman,sangrey,Python,false,false,false,0,false,false,false,false +haifeng.zhao/libcsv-,haifeng.zhao,C++,false,false,false,0,false,false,false,false +martin-seidel/epos_hardware_tools,martin-seidel,C++,false,false,false,0,false,false,false,false +bjacquet/learn-haskell,bjacquet,Haskell,false,false,false,0,false,false,false,false +seungwoonlee/workspace.node,seungwoonlee,Java,false,false,false,0,false,false,false,false +IS4Charity/beribuku_com,IS4Charity,HTML,false,false,false,0,false,false,false,false +RyDroid/PlanetWars2dRT-core,RyDroid,C,true,false,false,1,false,false,false,false +n4ru/SmartPanel,n4ru,C#,false,false,false,0,false,false,false,false +metaml/docket,metaml,Makefile,false,false,false,0,false,false,false,false +Superordinate/GCE-Rancher-Server,Superordinate,Shell,false,false,false,0,false,false,false,false +ze.su/my-own-website,ze.su,PHP,false,false,false,0,false,false,false,false +pje/bootstrap-templates,pje,CoffeeScript,false,false,false,0,false,false,false,false +Kochung/Flawless,Kochung,C#,false,false,false,0,false,false,false,false +toalexjin/c11httpd,toalexjin,C++,false,false,false,0,false,false,false,false +hemant.arora/custom-masonry-sections,hemant.arora,PHP,false,false,false,0,false,false,false,false +ArnaudM/CM2C,ArnaudM,Python,false,false,false,0,false,false,false,false +infancyit/loginTemplate,infancyit,HTML,false,false,false,0,false,false,false,false +victorgois/ep2,victorgois,C,false,false,false,0,false,false,false,false +swiftcoder/mad-scien-tile-ogy,swiftcoder,C#,false,false,false,0,false,false,false,false +chromplex/android-runtimepermisson,chromplex,Java,false,false,false,0,false,false,false,false +PrimeLaft/PrimeLaft,PrimeLaft,,false,false,false,0,false,false,false,false +Shekharrajak/meteor-autoform,Shekharrajak,JavaScript,false,false,false,0,false,false,false,false +Shekharrajak/theAsteroidsProject,Shekharrajak,JavaScript,false,false,false,0,false,false,false,false +dvdred/sylogng_plus_composeui,dvdred,,false,false,false,0,false,false,false,false +ijlopez-phd/energyagents,ijlopez-phd,Java,false,false,true,0,false,false,false,false +mariosergiosantos/ShopTCC,mariosergiosantos,HTML,false,false,false,0,false,false,false,false +kylemanna/nanotest,kylemanna,C,true,false,false,1,false,true,false,false +luizmiranda7/easy-router-app,luizmiranda7,JavaScript,true,false,false,1,false,true,false,false +RimGentzCo/TheGentzPack-Main,RimGentzCo,,false,false,false,0,false,false,false,false +pioto/pioto-dotfiles,pioto,Shell,false,false,false,0,false,false,false,false +Spexter/Matheskript_WS_15-16,Spexter,TeX,false,false,false,0,false,false,false,false +kollo/PizzaCostCalculator,kollo,Java,false,false,false,0,false,false,false,false +kollo/MeetingCostClock,kollo,Java,false,false,false,0,false,false,false,false +claudiom/PyNmOD,claudiom,Python,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo5,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo6,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +gitlab-com/oscon2015,gitlab-com,,false,false,false,0,false,false,false,false +vegetablejuiceftw/Snake,vegetablejuiceftw,JavaScript,false,false,false,0,false,false,false,false +thz-marburg/taipan,thz-marburg,Python,false,false,false,0,false,false,false,false +gianluca.rigoletti/mq,gianluca.rigoletti,TeX,false,false,false,0,false,false,false,false +dzdomi/InfoFox-Android,dzdomi,Java,false,false,false,0,false,false,false,false +danzt/inventariodevelop,danzt,PHP,false,false,false,0,false,false,false,false +oguya/ansible-ckan,oguya,Shell,false,false,false,0,false,false,false,false +themetalone/commons,themetalone,Java,false,false,true,0,false,false,false,false +fast_pixelated_detectors/merlin_interface,fast_pixelated_detectors,Python,true,false,false,2,false,true,true,false +olegls2000/mentor,olegls2000,Java,false,false,true,0,false,false,false,false +hectorateci/Plexil-robotics-WebBasedSimulator,hectorateci,JavaScript,false,false,true,0,false,false,false,false +overup/AdwordsScript,overup,JavaScript,false,false,false,0,false,false,false,false +zeroepoch/android_kernel_amazon_sloane,zeroepoch,,false,false,false,0,false,false,false,false +Zalectrial/Battleships,Zalectrial,C#,false,false,false,0,false,false,false,false +ShainaSpiliakos/glib-networking,ShainaSpiliakos,,false,false,false,0,false,false,false,false +E-WCC/scratch,E-WCC,,false,false,false,0,false,false,false,false +David-Hackro/ExamplesAndroid,David-Hackro,PHP,false,false,false,0,false,false,false,false +cesarj/max,cesarj,PHP,false,false,false,0,false,false,false,false +Ukutu/School-Projects,Ukutu,HTML,false,false,false,0,false,false,false,false +intriro/development-bundle,intriro,PHP,false,false,false,0,false,false,false,false +fast_pixelated_detectors/fpd_live_imaging,fast_pixelated_detectors,Python,true,false,false,2,false,true,true,false +mpmaximov/TestLab,mpmaximov,Java,false,false,true,0,false,false,false,false +b2bOptic/lenscatalog,b2bOptic,,false,false,false,0,false,false,false,false +b2bOptic/lensorder,b2bOptic,,false,false,false,0,false,false,false,false +PlateformeC/MonBras,PlateformeC,,false,false,false,0,false,false,false,false +msespaz/nodejs-themoviedb,msespaz,JavaScript,false,false,false,0,false,false,false,false +dinkum/nalls_architecture,dinkum,JavaScript,false,false,false,0,false,false,false,false +aniketpant/musket,aniketpant,Ruby,false,false,false,0,false,false,false,false +whit2333/c12sim,whit2333,C++,false,false,false,0,false,false,false,false +juliancarrivick/band-manager-frontend,juliancarrivick,TypeScript,true,false,false,2,false,true,false,false +JGill/g00gle-script,JGill,Python,false,false,false,0,false,false,false,false +TIssue/TIssue,TIssue,C#,false,false,false,0,false,false,false,false +edbennett/BSMBench,edbennett,C,false,false,false,0,false,false,false,false +gogo40/jsoncpp,gogo40,C++,false,false,false,0,false,false,false,false +knaman/demo-app,knaman,JavaScript,false,false,false,0,false,false,false,false +kjell/goping,kjell,Go,false,false,false,0,false,false,false,false +VoyaTrax/vtCMS2,VoyaTrax,PHP,false,false,false,0,false,false,false,false +Ta/vnlab-gomoku,Ta,Java,false,false,false,0,false,false,false,false +Tony_tian/myjavademotest,Tony_tian,,false,false,false,0,false,false,false,false +GChipSet/chip_set_for_test,GChipSet,Scala,false,false,false,0,false,false,false,false +nghiaht/moodle-lang,nghiaht,PHP,false,false,false,0,false,false,false,false +balasankarc/gemfileparser,balasankarc,Python,false,true,false,0,false,false,false,false +vsnever/XaNSoNS,vsnever,C++,false,false,false,0,false,false,false,false +alexgzhou/Alex_Howto,alexgzhou,,false,false,false,0,false,false,false,false +alexgzhou/oauth,alexgzhou,JavaScript,false,false,false,0,false,false,false,false +konsilo/konsilo,konsilo,Ruby,false,false,false,0,false,false,false,false +sysadmin1138/logstash-auditlog,sysadmin1138,,false,false,false,0,false,false,false,false +ChristopheRappold/FrsSimuEpaxMocadi,ChristopheRappold,C,false,false,false,0,false,false,false,false +SiegfriedEhret/beulogue,SiegfriedEhret,JavaScript,false,false,false,0,false,false,false,false +sourabhd/mmskipgram,sourabhd,Lua,false,false,false,0,false,false,false,false +madamovic-bg/FPlayAndroid,madamovic-bg,Java,false,false,false,0,false,false,false,false +seungwoonlee/chef-repo,seungwoonlee,Shell,false,false,false,0,false,false,false,false +lcp0578/awesome-laravel,lcp0578,,false,false,false,0,false,false,false,false +lcp0578/free-programming-books-zh_CN,lcp0578,,false,false,false,0,false,false,false,false +lcp0578/swoole_framework,lcp0578,PHP,false,false,false,0,false,false,false,false +vuhuuphuong/javacv,vuhuuphuong,Java,false,false,true,0,false,false,false,false +alex_raulino/AFRSafe,alex_raulino,Java,false,false,false,0,false,false,false,false +deneroteam/auto_backup,deneroteam,Python,false,false,false,0,false,false,false,false +zsinx6/Concorrente-Proj2,zsinx6,C++,false,false,false,0,false,false,false,false +BeS/Gs2Diasp,BeS,Python,false,false,false,0,false,false,false,false +nikitared/html-to-react-dart,nikitared,Java,false,false,false,0,false,false,false,false +cpran/www,cpran,HTML,false,false,false,0,false,false,false,false +TrungTin/AngularJS-Learning,TrungTin,,false,false,false,0,false,false,false,false +TrungTin/awesome-nodejs,TrungTin,,false,false,false,0,false,false,false,false +IS4Charity/FeatureDiagram,IS4Charity,,false,false,false,0,false,false,false,false +asiafrank/shadowsocks,asiafrank,Python,false,false,false,0,false,false,false,false +halderm/config,halderm,Perl,false,false,false,0,false,false,false,false +afrastgeek/algorithm-programming-1,afrastgeek,C,false,false,false,0,false,false,false,false +arose/dokuwiki-userprofile-plugin,arose,PHP,true,false,false,1,false,true,false,false +buddha_314/tokenizing-annotator,buddha_314,Java,false,false,true,0,false,false,false,false +rbertoncelj/wildfly-singleton-service,rbertoncelj,Java,true,false,true,1,false,true,false,false +ogre3d/clean-project,ogre3d,C++,true,false,false,1,false,true,false,false +caesar-lab/micropython,caesar-lab,C,false,false,false,0,false,false,false,false +hotoo/gitlab-notifications,hotoo,JavaScript,true,false,false,1,false,true,false,false +egh/zot4rst,egh,Python,false,false,false,0,false,false,false,false +vunhan/LinuxBooks,vunhan,,false,false,false,0,false,false,false,false +liuyahui991/web_model,liuyahui991,C++,false,false,false,0,false,false,false,false +gmagiafas/toshl-csv-import-lite,gmagiafas,JavaScript,false,false,false,0,false,false,false,false +ZuluPro/myblog,ZuluPro,HTML,false,false,false,0,false,false,false,false +ars-snow/ipw,ars-snow,C,false,false,false,0,false,false,false,false +suman0359/leave_system,suman0359,PHP,false,false,false,0,false,false,false,false +hgmin777/SK_GitLab-Practice1,hgmin777,Java,false,false,false,0,false,false,false,false +m3f/RatingView,m3f,JavaScript,false,false,false,0,false,false,false,false +Therzok/teme,Therzok,C++,false,false,false,0,false,false,false,false +drharmon/ScmWhitePapers,drharmon,,false,false,false,0,false,false,false,false +tonghuix/open-advice-zh-hans,tonghuix,TeX,false,false,false,0,false,false,false,false +socioambiental/obsxingu,socioambiental,Python,false,false,false,0,false,false,false,false +StartAppsPe/StartAppsKit,StartAppsPe,Swift,false,false,false,0,false,false,false,false +shashankchakelam/NamoDB,shashankchakelam,Python,true,false,false,4,false,false,false,false +yoavst/mashov-api,yoavst,Kotlin,false,false,false,0,false,false,false,false +vydria_vitalii/se_labs,vydria_vitalii,,false,false,false,0,false,false,false,false +MMarus/IMS-projekt,MMarus,C++,false,false,false,0,false,false,false,false +QIF/approxmc-py,QIF,Python,false,false,false,0,false,false,false,false +milestep/futuree-meteor,milestep,JavaScript,false,false,false,0,false,false,false,false +aaron-baugher/p6-net-ssh,aaron-baugher,Perl6,false,false,false,0,false,false,false,false +goldenc/StatisticsSummaryForAFleetOfHosts,goldenc,Java,false,false,true,0,false,false,false,false +msemple1111/average_check,msemple1111,Python,false,false,false,0,false,false,false,false +jaspreetsingh27/demo-architecture,jaspreetsingh27,CSS,false,false,true,0,false,false,false,false +vbrh-immalle/HelloWpfWorld,vbrh-immalle,C#,false,false,false,0,false,false,false,false +Cdriko/CocoDePaimpol,Cdriko,,false,false,false,0,false,false,false,false +GoatGames/GoatEngine,GoatGames,Java,true,false,false,1,false,true,false,false +balasankarc/gemdeps_service,balasankarc,HTML,false,false,false,0,false,false,false,false +energyharvesting/rdfapp,energyharvesting,JavaScript,false,false,false,0,false,false,false,false +codebreak/GloryShotAndroidApp,codebreak,Java,false,false,false,0,false,false,false,false +mcepl/cardbook,mcepl,JavaScript,false,false,false,0,false,false,false,false +coveros/genymotion,coveros,Shell,false,false,false,0,false,false,false,false +irbisadm/appatbox-template,irbisadm,CSS,false,false,false,0,false,false,false,false +bigger-picture-develop-group/bp-shotgun-help,bigger-picture-develop-group,Python,false,false,false,0,false,false,false,false +pandhu/ddg,pandhu,,false,false,false,0,false,false,false,false +lemval/AquaMail-nl-text,lemval,Go,false,false,false,0,false,false,false,false +mptully/qaworks,mptully,Java,false,false,true,0,false,false,false,false +hgmin/SK_Sample_Project,hgmin,Java,false,false,false,0,false,false,false,false +davimfs7/csSQLdatabase,davimfs7,C#,false,false,false,0,false,false,false,false +Agarney/mantis,Agarney,CSS,false,false,false,0,false,false,false,false +aatos/rust-ping,aatos,Rust,true,false,false,1,false,true,false,false +ivanbeagle/DCL,ivanbeagle,C#,false,false,false,0,false,false,false,false +worr/rcstring,worr,Rust,true,false,false,1,false,true,false,false +foundry-in-a-box/fibweb,foundry-in-a-box,Python,false,true,false,0,false,false,false,false +merfan/SimulationFramework,merfan,Ruby,false,false,false,0,false,false,false,false +ZZ2F2/Vehicle_Routing_Problem_with_Time_Windows,ZZ2F2,C++,false,false,false,0,false,false,false,false +dalponte/agenda-td,dalponte,Ruby,false,false,false,0,false,false,false,false +GavinGJ/shop,GavinGJ,,false,false,false,0,false,false,false,false +jhonedisongomez/django_course,jhonedisongomez,Python,false,false,false,0,false,false,false,false +Mayeen48/phpbatch10,Mayeen48,,false,false,false,0,false,false,false,false +phunehehe/runix,phunehehe,Nix,true,false,false,1,false,true,false,false +wesleyceraso/linlib,wesleyceraso,C++,true,false,false,1,true,false,false,false +gitlab-com/marketo-tools,gitlab-com,Ruby,false,false,false,0,false,false,false,false +sika-forks/chrome-extensions-examples,sika-forks,JavaScript,false,false,false,0,false,false,false,false +pisarivskiy/wp-install,pisarivskiy,JavaScript,false,false,false,0,false,false,false,false +willwo/hadoop-tutorials,willwo,,false,false,false,0,false,false,false,false +camd/2ddatabase,camd,Python,false,false,false,0,false,false,false,false +com-informatimago/ipcode,com-informatimago,CommonLisp,false,false,false,0,false,false,false,false +Holanda/siseect,Holanda,Java,false,false,false,0,false,false,false,false +radiognu/gnoll-tg,radiognu,Python,false,false,false,0,false,false,false,false +Cdriko/openscad-Shelves,Cdriko,OpenSCAD,false,false,false,0,false,false,false,false +Oxidire/UM,Oxidire,HTML,false,false,false,0,false,false,false,false +marcinb64/wifisandbox,marcinb64,Java,false,false,false,0,false,false,false,false +cowlike/haskell-cis-194,cowlike,Haskell,false,false,false,0,false,false,false,false +pendingchaos/WIP15,pendingchaos,C,false,false,false,0,false,false,false,false +project-store/lanyuan,project-store,Java,false,false,false,0,false,false,false,false +romrz/Basic-2D-lighting,romrz,C++,false,false,false,0,false,false,false,false +Dumancic/LV3,Dumancic,Python,false,false,false,0,false,false,false,false +paulswartz/ondemand-elm,paulswartz,HTML,false,false,false,0,false,false,false,false +openpgp-wg/rfc4880bis,openpgp-wg,Makefile,false,false,false,0,false,false,false,false +Edistra/think-slash-crawl,Edistra,JavaScript,false,false,false,0,false,false,false,false +noelboss/nbobase,noelboss,PHP,false,false,false,0,false,false,false,false +noelboss/nboevents,noelboss,PHP,false,false,false,0,false,false,false,false +zourit/zourit-admin,zourit,JavaScript,false,false,false,0,false,false,false,false +chakraos/desktop,chakraos,Shell,false,false,false,0,false,false,false,false +chakraos/gtk,chakraos,Shell,false,false,false,0,false,false,false,false +chakraos/lib32,chakraos,Shell,false,false,false,0,false,false,false,false +raphaelbastide/tom,raphaelbastide,Shell,false,false,false,0,false,false,false,false +worr/cf-lololol,worr,Rust,false,false,false,0,false,false,false,false +jangorecki/big.data.table,jangorecki,R,true,false,false,1,false,true,false,false +jothimani/sales_agents,jothimani,Python,false,false,false,0,false,false,false,false +hylcos/InChat,hylcos,C,true,false,false,1,false,true,false,false +ayufan/random-naive-bayes,ayufan,C++,false,false,false,0,false,false,false,false +ayufan/ssl-cert-installer-wp7,ayufan,C#,false,false,false,0,false,false,false,false +Elinvention/pyhunter,Elinvention,Python,false,false,false,0,false,false,false,false +abhaisasidharan/drupal-setup,abhaisasidharan,Shell,false,false,false,0,false,false,false,false +Loric/android_good_project,Loric,Java,false,false,false,0,false,false,false,false +arifhasnat/android_json_parsing_practice,arifhasnat,Java,false,false,false,0,false,false,false,false +gonzalo123/injector,gonzalo123,PHP,false,false,false,0,false,false,false,false +PermaNull/Cartographer_Server,PermaNull,Python,false,false,false,0,false,false,false,false +wildan-anky/PMPL_Wildan,wildan-anky,Python,true,true,false,1,false,true,false,false +manufacturaind/serreria-extravagante,manufacturaind,,false,false,false,0,false,false,false,false +Hugo4400/Installation_git,Hugo4400,,false,false,false,0,false,false,false,false +jaen/clj-cljs-presentation,jaen,Clojure,false,false,false,0,false,false,false,false +Tomvictor/flowershop,Tomvictor,HTML,false,false,false,0,false,false,false,false +timur87/context-sensitive-manufacturing-processes,timur87,Java,false,false,false,0,false,false,false,false +whitelynx/querytron,whitelynx,Vue,false,false,false,0,false,false,false,false +zhouyi/CHER,zhouyi,,false,false,false,0,false,false,false,false +zhouyi/thurday,zhouyi,,false,false,false,0,false,false,false,false +gitlab-com/content-production,gitlab-com,,false,false,false,0,false,false,false,false +huynhpaul/Vilja_Pix,huynhpaul,,false,false,false,0,false,false,false,false +oskarChv/ZombiesNight,oskarChv,Java,false,false,false,0,false,false,false,false +nibodha/integration-platform,nibodha,Java,false,false,false,0,false,false,false,false +sane-project/ci-envs,sane-project,Makefile,true,false,false,1,true,false,false,false +RadhiFadlillah/codepolitan-news-reader,RadhiFadlillah,Java,false,false,false,0,false,false,false,false +make42/SMA_pokemon,make42,TeX,false,false,false,0,false,false,false,false +Conan_Kudo/portable-fopencookie,Conan_Kudo,C,false,false,false,0,false,false,false,false +axil/phantomjs-debian,axil,JavaScript,true,false,false,1,false,true,false,false +hybotics/curses,hybotics,Go,false,false,false,0,false,false,false,false +baidu2/test,baidu2,,false,false,false,0,false,false,false,false +marc-lereste/pivosteo,marc-lereste,HTML,false,false,false,0,false,false,false,false +jfwiebe/gsheet-reswue-importer,jfwiebe,JavaScript,false,false,false,0,false,false,false,false +Sephyros/Entubador,Sephyros,Ruby,false,false,false,0,false,false,false,false +turimenrat/paa-tester-2,turimenrat,JavaScript,false,false,false,0,false,false,false,false +luancmenezes/radioweb,luancmenezes,Shell,false,false,false,0,false,false,false,false +yujingping/snakove,yujingping,JavaScript,false,false,false,0,false,false,false,false +xivo.solutions/config-mgt,xivo.solutions,Scala,false,false,false,0,false,false,false,false +srinivasulurao/Rikata,srinivasulurao,Java,false,false,false,0,false,false,false,false +adrianord/CSC160FileExplorer,adrianord,C#,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto2-grupo3,ad-si-2015-2,Java,false,false,true,0,false,false,false,false +ad-si-2015-2/projeto2-grupo4,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +stevenhu/pbc,stevenhu,C,false,false,false,0,false,false,false,false +stevenhu/weibo2,stevenhu,Objective-C,false,false,false,0,false,false,false,false +vlxer/AFNContext,vlxer,Objective-C,false,false,false,0,false,false,false,false +faseldi/Projet_flask_musique,faseldi,Python,false,false,false,0,false,false,false,false +tedbundyjr/kodi-repo-v1,tedbundyjr,Python,false,false,false,0,false,false,false,false +vitimiti/Assident,vitimiti,C++,false,false,false,0,false,false,false,false +qb1t/irssi_logger,qb1t,Perl,false,false,false,0,false,false,false,false +qb1t/keybase,qb1t,Go,false,false,false,0,false,false,false,false +miguel-deval/pyLT,miguel-deval,Python,false,false,false,0,false,false,false,false +qb1t/mystuff-1,qb1t,Makefile,false,false,false,0,false,false,false,false +qb1t/ViewRF,qb1t,C++,false,false,false,0,false,false,false,false +enyalius/tools,enyalius,PHP,false,false,false,0,false,false,false,false +guystreeter/trying-python-gdbus,guystreeter,Python,false,false,false,0,false,false,false,false +abogala85/google-api-objectivec-client,abogala85,Objective-C,false,false,false,0,false,false,false,false +abogala85/website,abogala85,CSS,false,false,false,0,false,false,false,false +stoyan/nextspace,stoyan,C,false,false,false,0,false,false,false,false +MillyPeeler/btrees,MillyPeeler,C++,false,false,false,0,false,false,false,false +lignite/holidays,lignite,C,false,false,false,0,false,false,false,false +wikiti-random-stuff/open-weather-api,wikiti-random-stuff,Ruby,false,false,false,0,false,false,false,false +SteeveDroz/tuto-git,SteeveDroz,,false,false,false,0,false,false,false,false +tmanager/tmanager,tmanager,,false,false,false,0,false,false,false,false +EDARAUJO/TestDelivery,EDARAUJO,,false,false,false,0,false,false,false,false +lenninsanchez123/donadores,lenninsanchez123,PHP,false,false,false,0,false,false,false,false +Red_Spark/Red_ClayMaster,Red_Spark,Java,false,false,false,0,false,false,false,false +Kovadon/PokemonMOBA,Kovadon,C#,false,false,false,0,false,false,false,false +Kazade/dc-phoenix,Kazade,C++,false,false,false,0,false,false,false,false +Monito_b/myl-ls,Monito_b,C,false,false,false,0,false,false,false,false +wahyuoi/Quiz3,wahyuoi,Python,true,false,false,1,false,true,false,false +mseide-msegui/msedoc,mseide-msegui,,false,false,false,0,false,false,false,false +fa13/build,fa13,Java,true,false,false,1,true,false,false,false +florian.dwm/my-atom-config,florian.dwm,CoffeeScript,false,false,false,0,false,false,false,false +scalemailted/CSCI1583-Lectures-Fall2015,scalemailted,Java,false,false,false,0,false,false,false,false +crystalraebryant/hrpg-character-widget,crystalraebryant,CSS,false,false,false,0,false,false,false,false +xtao/java-design-patterns,xtao,Java,false,false,true,0,false,false,false,false +lisoviyevheniy/SHOP,lisoviyevheniy,HTML,false,false,false,0,false,false,false,false +NuLL3rr0r/warehouse-manager-dos,NuLL3rr0r,xBase,false,false,false,0,false,false,false,false +betamax/semaphoreci,betamax,Python,false,false,false,0,false,false,false,false +kermit-js/kermit-mongoose,kermit-js,JavaScript,false,false,false,0,false,false,false,false +RandyGit/VocabularyTrainer,RandyGit,C#,false,false,false,0,false,false,false,false +ahmetkizilay/cheat-sheets,ahmetkizilay,,false,false,false,0,false,false,false,false +thor12022/Mjolnir,thor12022,Java,false,false,false,0,false,false,false,false +pendingchaos/LD34,pendingchaos,Python,false,false,false,0,false,false,false,false +Wolvesbane_Academy/Automated_Testing_Using_Selenium_WebDriver-Java,Wolvesbane_Academy,Java,false,false,false,0,false,false,false,false +todd.stark1/aducfunctions,todd.stark1,VisualBasic,false,false,false,0,false,false,false,false +craigbarnes/tally,craigbarnes,C,true,false,false,1,false,true,false,false +wantbycre/SKacademyNodejs,wantbycre,JavaScript,false,false,false,0,false,false,false,false +ngocnh/laravel-highcharts,ngocnh,PHP,false,false,false,0,false,false,false,false +louis-gerardd/PHP,louis-gerardd,PHP,false,false,false,0,false,false,false,false +harunpehlivan/PisiLinux,harunpehlivan,Python,false,false,false,0,false,false,false,false +Su-Shee/open-data-openstreetmap,Su-Shee,Perl,false,false,false,0,false,false,false,false +Su-Shee/open-data-natural-languages,Su-Shee,Python,false,false,false,0,false,false,false,false +vikingmakt/lagertha-bootstrap,vikingmakt,JavaScript,false,false,false,0,false,false,false,false +apps-script-training/pollmaker,apps-script-training,HTML,false,false,false,0,false,false,false,false +sri-sena/sentiment-analyzer-java,sri-sena,Java,false,false,true,0,false,false,false,false +gengelbr/opaPrivate,gengelbr,Python,false,false,false,0,false,false,false,false +Didou/ROR_Todolist,Didou,Ruby,false,false,false,0,false,false,false,false +sharelift/sharelift-ionic,sharelift,JavaScript,false,false,false,0,false,false,false,false +jubianchi/hubot-gitlab-ops,jubianchi,CSS,true,false,false,2,false,false,false,false +deepak0/tripie.android,deepak0,Java,false,false,false,0,false,false,false,false +piratas/gti2py,piratas,Python,false,false,false,0,false,false,false,false +piratas/gitchat,piratas,JavaScript,false,false,false,0,false,false,false,false +xai/jdime,xai,Java,false,false,false,0,false,false,false,false +khin/CodeProject,khin,C++,false,false,false,0,false,false,false,false +hunylee/computer-science,hunylee,,false,false,false,0,false,false,false,false +hunylee/interview,hunylee,Java,false,false,true,0,false,false,false,false +vikingmakt/lagertha,vikingmakt,JavaScript,false,false,false,0,false,false,false,false +BigIdeaMediaGroup/big-idea-slider,BigIdeaMediaGroup,HTML,false,false,false,0,false,false,false,false +mjwhitta/weechat,mjwhitta,Perl,false,false,false,0,false,false,false,false +CaptFrank/Arduino,CaptFrank,C++,false,false,false,0,false,false,false,false +r1d2/RPI,r1d2,Python,false,false,false,0,false,false,false,false +goedson/gnotime,goedson,C,false,false,false,0,false,false,false,false +Ackermann/xlnx-build,Ackermann,JavaScript,false,false,false,0,false,false,false,false +sgimeno/angularjs-gulp-browserify-boilerplate,sgimeno,JavaScript,true,false,false,1,false,true,false,false +DanyNsg/BatizView,DanyNsg,Java,false,false,false,0,false,false,false,false +msdocs/finite-state-Machine-in-Java,msdocs,Java,false,false,false,0,false,false,false,false +AhmadZuhdi/angular2-webpack-starter,AhmadZuhdi,JavaScript,false,false,false,0,false,false,false,false +molotov-studios/mine-sweeper,molotov-studios,Haxe,false,false,false,0,false,false,false,false +lummei/libfasta,lummei,C,true,false,false,1,true,false,false,false +sytses/sytses.gitlab.io,sytses,CSS,true,false,false,2,false,true,true,false +poppinss/adonis-fold,poppinss,JavaScript,false,false,false,0,false,false,false,false +jhamfler/debinitsrv,jhamfler,Shell,false,false,false,0,false,false,false,false +nrw_noa/osmo-bts,nrw_noa,C,false,false,false,0,false,false,false,false +nrw_noa/osmo-pcu,nrw_noa,C++,false,false,false,0,false,false,false,false +sirdorius/boardgameprototyping,sirdorius,C#,false,false,false,0,false,false,false,false +sprawsm/mustra,sprawsm,CSS,false,false,false,0,false,false,false,false +gongmang1/NerdPack-Routines,gongmang1,Lua,false,false,false,0,false,false,false,false +Fantomas/Mech_anime,Fantomas,C++,false,false,false,0,false,false,false,false +coyotebringsfire/generator-bugzy,coyotebringsfire,JavaScript,false,false,false,0,false,false,false,false +glu_haydn/christmas_songs,glu_haydn,,false,false,false,0,false,false,false,false +normcyr/motioneyeos,normcyr,Makefile,false,false,false,0,false,false,false,false +cerebralpower/Variance,cerebralpower,Python,true,false,false,1,false,true,false,false +ahmetkizilay/gc-slackbot,ahmetkizilay,JavaScript,false,false,false,0,false,false,false,false +dhoomakethu/pymodbus,dhoomakethu,Python,false,true,false,0,false,false,false,false +dhoomakethu/kivy-modbus-simu,dhoomakethu,Python,false,false,false,0,false,false,false,false +teiwazanklam/NerdPack,teiwazanklam,Lua,false,false,false,0,false,false,false,false +baldurmen/rename-flac,baldurmen,Python,true,false,false,3,true,true,false,false +pondit_813/laravel,pondit_813,PHP,false,false,false,0,false,false,false,false +kidaa/abipy,kidaa,JupyterNotebook,false,false,false,0,false,false,false,false +kidaa/neural-style,kidaa,Lua,false,false,false,0,false,false,false,false +kidaa/neuralart,kidaa,Lua,false,false,false,0,false,false,false,false +kidaa/nptool,kidaa,C++,false,false,false,0,false,false,false,false +safegees/Safegees_Android,safegees,Java,false,false,false,0,false,false,false,false +milestep/elk,milestep,Python,false,false,false,0,false,false,false,false +unplugstudio/mezzy,unplugstudio,Python,true,false,false,1,false,true,false,false +khin/GDS-SummerPrototype,khin,C#,false,false,false,0,false,false,false,false +aoighost/oclHashcat,aoighost,C,false,false,false,0,false,false,false,false +h2b/LinAlg,h2b,Scala,false,false,false,0,false,false,false,false +HardenedBSD/tools,HardenedBSD,Shell,false,false,false,0,false,false,false,false +HardenedBSD/hardenedBSD,HardenedBSD,,false,false,false,0,false,false,false,false +el-shayeb/OMS-Apache-Camel,el-shayeb,Java,false,false,true,0,false,false,false,false +unity-dnf/dnf,unity-dnf,Shell,false,false,false,0,false,false,false,false +unity-dnf/dnf-plugins-core,unity-dnf,,false,false,false,0,false,false,false,false +LACMTA/gtfs_rail,LACMTA,Python,false,true,false,0,false,false,false,false +vasyl_drapak/max-lister,vasyl_drapak,C++,false,false,false,0,false,false,false,false +nylar/menubar.widget,nylar,Go,false,false,false,0,false,false,false,false +ember-dev/deploy,ember-dev,Shell,false,false,false,0,false,false,false,false +golden-hammer/pocket-sync-web,golden-hammer,JavaScript,false,false,false,0,false,false,false,false +8och/skeleton-angular1_wro4j,8och,JavaScript,false,false,true,0,false,false,false,false +symbiote/core,symbiote,C#,false,false,false,0,false,false,false,false +headcrashing/webdav-jaxrs,headcrashing,Java,false,false,true,0,false,false,false,false +e271/mcat,e271,Python,false,false,false,0,false,false,false,false +kizmeta/hackademic,kizmeta,Ruby,false,false,false,0,false,false,false,false +dto/android,dto,EmacsLisp,false,false,false,0,false,false,false,false +Khazaf/alurapic,Khazaf,JavaScript,false,false,false,0,false,false,false,false +alami/cordova-simplefilemanagement,alami,JavaScript,false,false,false,0,false,false,false,false +silentboatman/devpkgcheck,silentboatman,Shell,false,false,false,0,false,false,false,false +dalum/slakos,dalum,Python,false,false,false,0,false,false,false,false +ValyriaTear/ValyriaTear,ValyriaTear,Lua,false,false,false,0,false,false,false,false +robby75/public,robby75,,false,false,false,0,false,false,false,false +whiteagnus/bggoEET,whiteagnus,,false,false,false,0,false,false,false,false +ankit-bond/CS243,ankit-bond,HTML,false,false,false,0,false,false,false,false +marcuswd/debug,marcuswd,PHP,false,false,false,0,false,false,false,false +jobs-old/calcal,jobs-old,Ruby,false,false,false,0,false,false,false,false +Dezmathek/GP,Dezmathek,,false,false,false,0,false,false,false,false +alexeim763/TvisoRoR,alexeim763,JavaScript,false,false,false,0,false,false,false,false +hhu-freshe-kids/mensa-blacklist,hhu-freshe-kids,,false,false,false,0,false,false,false,false +osasto-kuikka/kge,osasto-kuikka,C++,true,false,false,2,false,true,false,true +naveenlj/alerta,naveenlj,Python,false,true,false,0,false,false,false,false +TheLastOperator/AnimaPuppetStudio,TheLastOperator,C++,false,false,false,0,false,false,false,false +ntninja/cookiesafe-import-export,ntninja,JavaScript,false,false,false,0,false,false,false,false +RSE-Lab-Fasilkom-UI/abstraining2016,RSE-Lab-Fasilkom-UI,,false,false,false,0,false,false,false,false +dto/quadrille,dto,CommonLisp,false,false,false,0,false,false,false,false +ahmetkizilay/hackathon-sunum,ahmetkizilay,,false,false,false,0,false,false,false,false +m.mirsamie/cdv-socket-plugin,m.mirsamie,Objective-C,false,false,false,0,false,false,false,false +VarunSriram/SYSC4927ElevatorProject,VarunSriram,Java,false,false,false,0,false,false,false,false +projectvidyalaya/packages,projectvidyalaya,,false,false,false,0,false,false,false,false +tchqiq/crawler4j,tchqiq,Java,false,false,true,0,false,false,false,false +Conan_Kudo/debbuild-macros,Conan_Kudo,CMake,false,false,false,0,false,false,false,false +karu/buying,karu,PHP,false,false,false,0,false,false,false,false +kristamutyaba/membership_validator,kristamutyaba,Java,false,false,false,0,false,false,false,false +rirel/ljwrap,rirel,Makefile,false,false,false,0,false,false,false,false +stery/2048,stery,C,false,false,false,0,false,false,false,false +nwrush/CONLL2016,nwrush,Python,false,false,false,0,false,false,false,false +o9000/pmenu,o9000,Python,false,false,false,0,false,false,false,false +kilobyte/pkg-mgdiff,kilobyte,C,false,false,false,0,false,false,false,false +pianofish/pianofish,pianofish,Python,false,false,false,0,false,false,false,false +irfaan008/buzuby-android,irfaan008,Java,false,false,false,0,false,false,false,false +JaguarRobotics/2016,JaguarRobotics,Java,false,false,false,0,false,false,false,false +freakynit/webengage-android-sdk-sample-app,freakynit,Java,false,false,false,0,false,false,false,false +grey-shade/zakah-project,grey-shade,PHP,false,false,false,0,false,false,false,false +thelabnyc/ci,thelabnyc,Go,true,false,false,1,false,true,false,false +tvotiger/gannett-project,tvotiger,JavaScript,false,false,false,0,false,false,false,false +vamsihemadri/Team16cs243,vamsihemadri,ShaderLab,false,false,false,0,false,false,false,false +prateek_vij/team12cs243,prateek_vij,Python,false,false,false,0,false,false,false,false +call_me_xyz/HelthNut,call_me_xyz,Java,false,false,false,0,false,false,false,false +timlyo/personalWebsite,timlyo,Python,false,false,false,0,false,false,false,false +chrissloey/ember-tooltips,chrissloey,JavaScript,false,false,false,0,false,false,false,false +apoorv-kumar/grinions-alpha,apoorv-kumar,Python,false,true,false,0,false,false,false,false +radiognu/radiognu-1996,radiognu,JavaScript,false,false,false,0,false,false,false,false +jbwhips883/termux-packages,jbwhips883,Shell,false,false,false,0,false,false,false,false +Yahpay/dpl,Yahpay,Ruby,false,false,false,0,false,false,false,false +Yahpay/vso-agent-tasks,Yahpay,PowerShell,false,false,false,0,false,false,false,false +Yahpay/yahpay-jaaeb,Yahpay,,false,false,false,0,false,false,false,false +LloydAngifer/GameSkelMVC,LloydAngifer,Java,false,false,false,0,false,false,false,false +HardenedBSD/hardenedBSD-ports,HardenedBSD,,false,false,false,0,false,false,false,false +hginzel/perl6intro,hginzel,,false,false,false,0,false,false,false,false +beta_group/cdrom-ejector,beta_group,JavaScript,false,false,false,0,false,false,false,false +ilkericyuz/cheribox,ilkericyuz,Python,false,false,false,0,false,false,false,false +joaosilva2095/dotfiles,joaosilva2095,Vimscript,true,false,false,1,false,true,false,false +ziperRom1/websocket-php,ziperRom1,CSS,false,false,false,0,false,false,false,false +nolddor/chase-md,nolddor,C,false,false,false,0,false,false,false,false +danialbehzadi/telegram-puzzle-bot,danialbehzadi,Python,false,false,false,0,false,false,false,false +andreas-h/vcsh-modules,andreas-h,Shell,false,false,false,0,false,false,false,false +andrewrk/zig,andrewrk,C++,false,false,false,0,false,false,false,false +chintan9/vlc-android,chintan9,C++,false,false,false,0,false,false,false,false +shosca/hn-userstyle,shosca,CSS,false,false,false,0,false,false,false,false +gitlab-com/gitlab-contributors,gitlab-com,Ruby,true,false,false,1,false,true,false,false +lokesh005/Map-with-Latitude-Longitude,lokesh005,HTML,false,false,false,0,false,false,false,false +zeograd/sf2utils,zeograd,Python,false,false,false,0,false,false,false,false +zetok/tox-add-pubkey,zetok,Rust,false,false,false,0,false,false,false,false +jonslow/moco_example,jonslow,,false,false,false,0,false,false,false,false +seanwang/raspberrypi_cookbook,seanwang,Python,false,false,false,0,false,false,false,false +syntouch/example-osb11g-archetype,syntouch,,false,false,false,0,false,false,false,false +elieteyssedou/interstar,elieteyssedou,Ruby,false,false,false,0,false,false,false,false +axelav/ceevee,axelav,JavaScript,false,false,false,0,false,false,false,false +axelav/dotfiles,axelav,Shell,false,false,false,0,false,false,false,false +axelav/motorcycles,axelav,,false,false,false,0,false,false,false,false +cflynn07/array-subtract-functional-compare,cflynn07,JavaScript,false,false,false,0,false,false,false,false +upravitelev/RGA_presentation,upravitelev,HTML,false,false,false,0,false,false,false,false +cflynn07/resume,cflynn07,,false,false,false,0,false,false,false,false +vunhan/OOAD,vunhan,,false,false,false,0,false,false,false,false +gyarab-2013/Smart-Board,gyarab-2013,C++,false,false,false,0,false,false,false,false +GoogleLegacy/Git,GoogleLegacy,C,false,false,false,0,false,false,false,false +besttheory84/hhae,besttheory84,CSS,false,false,false,0,false,false,false,false +bc547-playground/avr-link,bc547-playground,Go,false,false,false,0,false,false,false,false +ricoru21/App20Min2,ricoru21,Java,false,false,false,0,false,false,false,false +besttheory84/joiner,besttheory84,CSS,false,false,false,0,false,false,false,false +besttheory84/easy-jquery-validation,besttheory84,JavaScript,false,false,false,0,false,false,false,false +besttheory84/easy-video-gallery,besttheory84,HTML,false,false,false,0,false,false,false,false +kenichi.shibata/awesome-aws,kenichi.shibata,Python,false,false,false,0,false,false,false,false +gordeev/python-patterns,gordeev,Python,false,false,false,0,false,false,false,false +gordeev/Algorithms,gordeev,Python,false,false,false,0,false,false,false,false +cynede/CppMicroServices,cynede,C++,false,false,false,0,false,false,false,false +cynede/HoTT-Agda,cynede,Agda,false,false,false,0,false,false,false,false +cynede/Salsa,cynede,C#,false,false,false,0,false,false,false,false +idris-hackers/idris-vim,idris-hackers,Vimscript,false,false,false,0,false,false,false,false +elephantLocator/UltraBot,elephantLocator,Python,false,false,false,0,false,false,false,false +jhonatanuriza/pruebatecnica,jhonatanuriza,,false,false,false,0,false,false,false,false +meh/gohufont,meh,,false,false,false,0,false,false,false,false +meh/rust-ffmpeg,meh,Rust,false,false,false,0,false,false,false,false +cflynn07/css-refresher-notes,cflynn07,,false,false,false,0,false,false,false,false +itsmee/icinga,itsmee,Shell,false,false,false,0,false,false,false,false +sameersbn/docker-gitlab,sameersbn,Shell,false,false,false,0,false,false,false,false +yasirmturk/FLTestApp,yasirmturk,Objective-C,false,false,false,0,false,false,false,false +Trump/MS-Assist,Trump,C#,false,false,false,0,false,false,false,false +signal9/cpp-skeleton,signal9,Meson,true,false,false,2,true,true,false,false +nthstudios/ouroboros,nthstudios,GDScript,false,false,false,0,false,false,false,false +mdsnouck/NodeStartApp,mdsnouck,JavaScript,true,false,false,1,false,true,false,false +badconker/pictoid,badconker,PHP,false,false,false,0,false,false,false,false +MSEngineering/TSM/DataMgmt/Summary,MSEngineering,TeX,false,false,false,0,false,false,false,false +tlongren/colors-anchor-theme,tlongren,CSS,false,false,false,0,false,false,false,false +tlongren/HarborJS,tlongren,HTML,false,false,false,0,false,false,false,false +tlongren/money-collector,tlongren,PHP,false,false,false,0,false,false,false,false +tlongren/Simple-Twitter-Widget,tlongren,PHP,false,false,false,0,false,false,false,false +tlongren/www.getshar.es,tlongren,HTML,false,false,false,0,false,false,false,false +qqqwey941008/CSC384,qqqwey941008,Python,false,false,false,0,false,false,false,false +mdsnouck/SMSmessageParty,mdsnouck,JavaScript,true,false,false,1,false,true,false,false +carobotics/FRC2016,carobotics,Java,false,false,false,0,false,false,false,false +pento1house1/audirvana,pento1house1,HTML,false,false,false,0,false,false,false,false +nany-lang/nanyc,nany-lang,C++,true,false,false,3,true,false,false,false +jublonet/codebird-php,jublonet,PHP,false,false,false,0,false,false,false,false +falko.wiese/uacl_cpp,falko.wiese,C++,false,false,false,0,false,false,false,false +Kazade/kos-ports,Kazade,C,false,false,false,0,false,false,false,false +susobaco/iptv_spain,susobaco,,false,false,false,0,false,false,false,false +gnutls/nettle,gnutls,C,true,false,false,1,false,true,false,false +ahmetkizilay/digital-constitutionalism,ahmetkizilay,JavaScript,false,false,false,0,false,false,false,false +dr_d/SpamHunter,dr_d,HTML,false,false,false,0,false,false,false,false +brunomanuelsantos/dotfiles,brunomanuelsantos,Vimscript,false,false,false,0,false,false,false,false +connorshea/connorshea.gitlab.io,connorshea,CSS,true,false,false,3,true,true,true,false +biotransistor/pyddtree,biotransistor,Python,false,false,false,0,false,false,false,false +meribold/TrackHack,meribold,C++,false,false,false,0,false,false,false,false +meribold/nutshell_dynamics,meribold,C++,false,false,false,0,false,false,false,false +ZatsuneNoMokou/live_notifier,ZatsuneNoMokou,JavaScript,false,false,false,0,false,false,false,false +osuna/soltec-test,osuna,,false,false,false,0,false,false,false,false +jorgejunior/script-to-install-prestashop-1.5-and-1.6,jorgejunior,JavaScript,false,false,false,0,false,false,false,false +CharfatoS/InfoDocs,CharfatoS,Java,false,false,false,0,false,false,false,false +waylon531/waylos,waylon531,Rust,true,false,false,1,false,true,false,false +twittner/redis-resp,twittner,Haskell,true,false,false,1,false,true,false,false +wvaldes/Final,wvaldes,,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto3-grupo2,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto3-grupo4,ad-si-2015-2,HTML,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto3-grupo7,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +tgzzl/free-programming-books-zh_CN,tgzzl,,false,false,false,0,false,false,false,false +rymai/rymai.gitlab.io,rymai,CSS,false,false,false,0,false,false,false,false +lmerceron22/MAR,lmerceron22,JavaScript,false,false,false,0,false,false,false,false +meribold/notion-hide-tabs,meribold,Lua,false,false,false,0,false,false,false,false +kermit-js/kermit-redis,kermit-js,JavaScript,false,false,false,0,false,false,false,false +whit2333/geant4,whit2333,C++,false,false,false,0,false,false,false,false +nikolaterziev2/www-projects,nikolaterziev2,,false,false,false,0,false,false,false,false +steveno/balistica,steveno,Vala,false,false,false,0,false,false,false,false +showcase-framework/showcase,showcase-framework,JavaScript,false,false,false,0,false,false,false,false +cjb/gittorrent,cjb,JavaScript,false,false,false,0,false,false,false,false +himito/PyOracle,himito,Python,false,false,false,0,false,false,false,false +laramontava/frameworkLara,laramontava,Java,false,false,false,0,false,false,false,false +D-z/babbling,D-z,Pascal,false,false,false,0,false,false,false,false +landaire/png-crc-fix,landaire,Go,false,false,false,0,false,false,false,false +CS149_SJSU/Notes,CS149_SJSU,,false,false,false,0,false,false,false,false +ilogicahq/jquery-validate-rut,ilogicahq,JavaScript,false,false,false,0,false,false,false,false +CS151_SJSU/Notes,CS151_SJSU,Shell,false,false,false,0,false,false,false,false +bindslabteam/projecteyeframe,bindslabteam,Java,true,false,false,1,false,true,false,false +pycqa/mccabe,pycqa,Python,false,false,false,0,false,false,false,false +twittner/wai-routing,twittner,Haskell,true,false,false,1,false,true,false,false +uschek/somafm,uschek,JavaScript,false,false,false,0,false,false,false,false +shanderson.vieira/gestor-de-custos,shanderson.vieira,JavaScript,false,false,false,0,false,false,false,false +zg/processingjs-docs,zg,HTML,false,false,false,0,false,false,false,false +Chizbro/Ritual,Chizbro,ShaderLab,false,false,false,0,false,false,false,false +amorozov/decimate,amorozov,Rust,false,false,false,0,false,false,false,false +horihiro/electron-template,horihiro,JavaScript,false,false,false,0,false,false,false,false +yogeshc/awesome-datascience,yogeshc,,false,false,false,0,false,false,false,false +yogeshc/DataScienceResources,yogeshc,,false,false,false,0,false,false,false,false +yogeshc/homebridge,yogeshc,JavaScript,false,false,false,0,false,false,false,false +yogeshc/lenscap,yogeshc,Python,false,true,false,0,false,false,false,false +chwiede/dotfiles,chwiede,Vimscript,false,false,false,0,false,false,false,false +BlokNotWebapp/StockFiches,BlokNotWebapp,HTML,false,false,false,0,false,false,false,false +GermanTMW/client-data,GermanTMW,,false,false,false,0,false,false,false,false +timofonic/electronics,timofonic,TeX,false,false,false,0,false,false,false,false +timofonic/garglk,timofonic,C,false,false,false,0,false,false,false,false +timofonic/geeksforgeeks-as-books,timofonic,CSS,false,false,false,0,false,false,false,false +timofonic/leechcraft,timofonic,C++,false,false,false,0,false,false,false,false +timofonic/ms_kb_reader,timofonic,C++,false,false,false,0,false,false,false,false +timofonic/SNES-SuperRoadBlaster,timofonic,Python,false,false,false,0,false,false,false,false +timofonic/supertux_md,timofonic,C,false,false,false,0,false,false,false,false +Rich-Harris/stacking-order,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false +cgonzalez013/dankmemer_for_hack,cgonzalez013,,false,false,false,0,false,false,false,false +golden-hammer/pocket-sync-api,golden-hammer,PHP,false,false,false,0,false,false,false,false +kevin-DL/erb_voting,kevin-DL,JavaScript,false,false,false,0,false,false,false,false +jaen/thesis-code-new,jaen,JavaScript,false,false,false,0,false,false,false,false +v.s.chaitu249/assignment-3,v.s.chaitu249,C,false,false,false,0,false,false,false,false +v.s.chaitu249/reverse,v.s.chaitu249,C,false,false,false,0,false,false,false,false +v.s.chaitu249/add,v.s.chaitu249,C,false,false,false,0,false,false,false,false +everhopingandwaiting/linux-stable,everhopingandwaiting,,false,false,false,0,false,false,false,false +benignbala/perl-moose-cookbook,benignbala,Perl,false,false,false,0,false,false,false,false +vdaniuk/airtablex,vdaniuk,Elixir,false,false,false,0,false,false,false,false +pendingchaos/WIP24,pendingchaos,C,false,false,false,0,false,false,false,false +bgrolleman/puppet,bgrolleman,Puppet,true,false,false,1,false,false,false,false +jangorecki/drat,jangorecki,R,false,false,false,0,false,false,false,false +johnantoni/tota11y,johnantoni,JavaScript,false,false,false,0,false,false,false,false +mayan-edms/cookiecutter-mayan,mayan-edms,Python,true,false,false,1,false,true,false,false +dmitryshishkin/frontend,dmitryshishkin,JavaScript,false,false,false,0,false,false,false,false +chaostheory88/elfdoor,chaostheory88,C,false,false,false,0,false,false,false,false +PowerRangers_321COM/Theta_Web_Client,PowerRangers_321COM,JavaScript,false,false,false,0,false,false,false,false +romanvolkov/VideoToGalleryPlugin,romanvolkov,Java,false,false,false,0,false,false,false,false +isaagar/ruby-fog-dynect,isaagar,Ruby,false,false,false,0,false,false,false,false +phillc73/backblazer,phillc73,R,false,false,false,0,false,false,false,false +jhack860211/GitHub,jhack860211,,false,false,false,0,false,false,false,false +4144/germantmw-server-data,4144,Shell,false,false,false,0,false,false,false,false +c33s-toolkit/robofile,c33s-toolkit,PHP,false,false,false,0,false,false,false,false +JantsoP/Office-Manual-Removal-Script,JantsoP,Batchfile,false,false,false,0,false,false,false,false +fabbio204/projeto-unit-of-work,fabbio204,C#,false,false,false,0,false,false,false,false +phillc73/pinhooker,phillc73,R,false,false,false,0,false,false,false,false +westeroscraft/westerosblocks,westeroscraft,Java,false,false,false,0,false,false,false,false +crussell/amVim,crussell,TypeScript,false,false,false,0,false,false,false,false +NvH/Scrabble,NvH,Java,false,false,true,0,false,false,false,false +StartAppsPe/Jeeves,StartAppsPe,JavaScript,false,false,false,0,false,false,false,false +db260179/openwrt-bpi-r1-luci,db260179,Lua,false,false,false,0,false,false,false,false +db260179/openwrt-bpi-r1-packages,db260179,Makefile,false,false,false,0,false,false,false,false +Aharon.Amram/FormFactory,Aharon.Amram,C#,false,false,false,0,false,false,false,false +srfilipek/ftweet,srfilipek,Python,false,false,false,0,false,false,false,false +NameNotFoundException/PIDEV-Java,NameNotFoundException,Java,false,false,false,0,false,false,false,false +Coderiver/gulp,Coderiver,CSS,false,false,false,0,false,false,false,false +scalemailted/simple-canvas-game,scalemailted,JavaScript,false,false,false,0,false,false,false,false +ducks/twinklefx,ducks,Java,false,false,true,0,false,false,false,false +GruFFix/test,GruFFix,,false,false,false,0,false,false,false,false +hantsaniala/TeamRocket,hantsaniala,,false,false,false,0,false,false,false,false +vjansson/Kimocs,vjansson,C,false,false,false,0,false,false,false,false +groupe6L1/myWebProject,groupe6L1,HTML,false,false,false,0,false,false,false,false +phillc73/sqldf2,phillc73,R,false,false,false,0,false,false,false,false +TeamDentro/Slaboat,TeamDentro,Java,false,false,false,0,false,false,false,false +anvilresearch/feldspar,anvilresearch,JavaScript,false,false,false,0,false,false,false,false +jangorecki/r.pkg.gitlab.ci,jangorecki,R,true,false,false,1,false,true,false,false +sistemas.makermex/programacion-de-cura,sistemas.makermex,,false,false,false,0,false,false,false,false +HelloZeroNet/ZeroBundle,HelloZeroNet,Python,false,false,false,0,false,false,false,false +cloud-reliability/ReliaCloud-NS,cloud-reliability,CSS,false,false,false,0,false,false,false,false +philalithes/dawhome,philalithes,HTML,false,false,false,0,false,false,false,false +jangorecki/dockerfiles,jangorecki,,true,false,false,3,false,true,false,false +juanchaoss/sivizeesproyecto,juanchaoss,PHP,false,false,false,0,false,false,false,false +bsystem/vraptorprodutos,bsystem,Java,false,false,false,0,false,false,false,false +aleja527/democracy,aleja527,VisualBasic,false,false,false,0,false,false,false,false +agilob/qfiction,agilob,C++,true,false,false,1,false,true,false,false +lpeters/UK-Sector-File,lpeters,,false,false,false,0,false,false,false,false +pcwiek/PureToneAudiometer,pcwiek,C#,false,false,false,0,false,false,false,false +sm-t210r/cyanogenmod_build,sm-t210r,JavaScript,false,false,false,0,false,false,false,false +sgtnasty/battle,sgtnasty,C#,false,false,false,0,false,false,false,false +pdeddy78/pesstaplus,pdeddy78,PHP,false,false,false,0,false,false,false,false +markmuir87/node-red-template,markmuir87,C,false,false,false,0,false,false,false,false +imsky/packdown,imsky,JavaScript,false,false,false,0,false,false,false,false +imsky/quickstart,imsky,HTML,false,false,false,0,false,false,false,false +kilogram/paxos,kilogram,Python,false,false,false,0,false,false,false,false +sebdeckers/express-history-api-fallback,sebdeckers,JavaScript,false,false,false,0,false,false,false,false +kashohel/113286,kashohel,CSS,false,false,false,0,false,false,false,false +Manik1927/man,Manik1927,PHP,false,false,false,0,false,false,false,false +sdwalsh/mirango,sdwalsh,JavaScript,false,false,false,0,false,false,false,false +ravikumar/raviCrud,ravikumar,HTML,false,false,false,0,false,false,false,false +hintjens/psychopathcode,hintjens,Smarty,false,false,false,0,false,false,false,false +sorenmat/botbrother,sorenmat,Go,true,false,false,2,true,true,false,false +TaikPaf/AnimalsG,TaikPaf,CSS,false,false,false,0,false,false,false,false +Khaine/Blocklist-Downloader,Khaine,Python,false,false,false,0,false,false,false,false +schae234/Camoco,schae234,Python,false,true,false,0,false,false,false,false +schae234/PonyTools,schae234,Python,false,true,false,0,false,false,false,false +walterebert/wordpress-project,walterebert,PHP,false,false,false,0,false,false,false,false +ylorph/talks,ylorph,,false,false,false,0,false,false,false,false +WebRTCGame/MIDI.js,WebRTCGame,JavaScript,false,false,false,0,false,false,false,false +timrs2998/umd-nlp-question-answering,timrs2998,Perl,true,false,false,1,true,false,false,false +max.ruff/catch.it,max.ruff,JavaScript,false,false,false,0,false,false,false,false +ShadowKyogre/arch-install-scripts,ShadowKyogre,Shell,false,false,false,0,false,false,false,false +ShadowKyogre/squiffy,ShadowKyogre,JavaScript,false,false,false,0,false,false,false,false +ermacmk/template-html5,ermacmk,HTML,false,false,false,0,false,false,false,false +EXTER7/Substratum,EXTER7,Java,false,false,false,0,false,false,false,false +ericoporto/RGBLedDaemon,ericoporto,Python,false,false,false,0,false,false,false,false +biotransistor/myascat,biotransistor,Python,false,false,false,0,false,false,false,false +cyphar/kepler-utils,cyphar,Python,false,true,false,0,false,false,false,false +wayless/wayless,wayless,Rust,true,false,false,2,true,true,false,false +krisatthenet/my-first-project,krisatthenet,JavaScript,false,false,false,0,false,false,false,false +mplesec/izpovedi-web-app,mplesec,CSS,false,false,false,0,false,false,false,false +mygnu/hgill.io-old,mygnu,Vue,false,false,false,0,false,false,false,false +Temetra/GLSLShadows,Temetra,C#,false,false,false,0,false,false,false,false +dejan/sinhro,dejan,Java,false,false,true,0,false,false,false,false +colonel_zentor/vtk-viewer,colonel_zentor,Python,false,false,false,0,false,false,false,false +presscorp/ImageFlow,presscorp,C++,false,false,false,0,false,false,false,false +steko/inclusions,steko,Python,false,false,false,0,false,false,false,false +jaypoulz/galamax,jaypoulz,Python,false,false,false,0,false,false,false,false +dtubber/dukbind,dtubber,C,false,false,false,0,false,false,false,false +trebegin/euler,trebegin,C++,false,false,false,0,false,false,false,false +yes4me/Selenium-Ruby-RSpec,yes4me,Ruby,false,false,false,0,false,false,false,false +xialeizhou/practical-programming-books,xialeizhou,,false,false,false,0,false,false,false,false +chuanxd/owl-ui,chuanxd,CSS,false,false,false,0,false,false,false,false +lambda-now/formailer,lambda-now,Haskell,false,false,false,0,false,false,false,false +dunetna/rmusic,dunetna,Python,false,false,false,0,false,false,false,false +jakecoffman/gorunner,jakecoffman,Go,false,false,false,0,false,false,false,false +steko/test,steko,,false,false,false,0,false,false,false,false +wyago/mantra,wyago,C#,true,false,false,1,false,false,true,false +fakemofo94/olaf-bot-experimental,fakemofo94,JavaScript,false,false,false,0,false,false,false,false +Jurgelenas/visma-internship,Jurgelenas,,false,false,false,0,false,false,false,false +Curtis110/Minitalk,Curtis110,C,false,false,false,0,false,false,false,false +Curtis110/my_philo,Curtis110,C,false,false,false,0,false,false,false,false +genieacs/genieacs-mwc,genieacs,CoffeeScript,false,false,false,0,false,false,false,false +johnnytidwelliii/Unreal.js,johnnytidwelliii,C++,false,false,false,0,false,false,false,false +NeuralNetReinforcmentLearning/RLE,NeuralNetReinforcmentLearning,Java,false,false,false,0,false,false,false,false +soodeh/monitoring-scripts,soodeh,Shell,false,false,false,0,false,false,false,false +rakibhossaincse/assignment,rakibhossaincse,,false,false,false,0,false,false,false,false +MyrtilleIO/learnYouNode--response,MyrtilleIO,JavaScript,false,false,false,0,false,false,false,false +ravikumar/userStory,ravikumar,JavaScript,false,false,false,0,false,false,false,false +kirr/git-backup,kirr,Go,false,false,false,0,false,false,false,false +sipcapture/homer-ui,sipcapture,JavaScript,false,false,false,0,false,false,false,false +sipcapture/homer-api,sipcapture,PHP,false,false,false,0,false,false,false,false +joshchamberlain/Comet,joshchamberlain,PHP,false,false,false,0,false,false,false,false +IS4Charity/aisco-abs,IS4Charity,,false,false,false,0,false,false,false,false +melihovv/pascal2java,melihovv,C++,false,false,false,0,false,false,false,false +mtier/thin-client,mtier,Python,false,false,false,0,false,false,false,false +kollo/TTTracklog,kollo,C,false,false,false,0,false,false,false,false +SiegfriedEhret/boilerplate-name-generator,SiegfriedEhret,HTML,false,false,false,0,false,false,false,false +isagalaev/highlight.js,isagalaev,JavaScript,false,false,false,0,false,false,false,false +dacresni/opendatastl.github.io,dacresni,HTML,false,false,false,0,false,false,false,false +chamilotools/chamilotools,chamilotools,Python,true,true,false,1,false,true,false,false +bentenz5/NCS_DEV,bentenz5,JavaScript,false,false,false,0,false,false,false,false +MartinB/ProjetReseaux2016,MartinB,C,false,false,false,0,false,false,false,false +korken89/manjaro-install-scripts,korken89,Python,false,false,false,0,false,false,false,false +ellacharmed/Sims4Tools,ellacharmed,C#,false,false,false,0,false,false,false,false +jameslopez/rails-gitlab-omniauth,jameslopez,Ruby,false,false,false,0,false,false,false,false +CasperVector/libpvz,CasperVector,Python,false,false,false,0,false,false,false,false +kollo/X11-Basic_examples,kollo,VisualBasic,false,false,false,0,false,false,false,false +GreatShift/CrystalSpace3D,GreatShift,C++,false,false,false,0,false,false,false,false +steve-perkins/hibernate-search-samples,steve-perkins,Java,false,false,true,0,false,false,false,false +nincraft/NincraftElectricBoogaloo3TheLightAmongTheLongForgottenDarkness,nincraft,Batchfile,false,false,true,0,false,false,false,false +pinkhatbeard/SavePyVideo.org,pinkhatbeard,Python,false,true,false,0,false,false,false,false +infertux/zeyple,infertux,Python,false,true,false,0,false,false,false,false +mbernardi/agglomerate,mbernardi,Python,false,false,false,0,false,false,false,false +29decibel/vim-stringify,29decibel,Vimscript,false,false,false,0,false,false,false,false +K3nn3th/exwax,K3nn3th,C,false,false,false,0,false,false,false,false +estsauver/pyFirmata,estsauver,Python,false,true,false,0,false,false,false,false +entrocode/mattermost-integration-gitlab,entrocode,Python,false,true,false,0,false,false,false,false +atom0s/grimarz,atom0s,C,false,false,false,0,false,false,false,false +atom0s/HoneywellWindowsPoC,atom0s,C#,false,false,false,0,false,false,false,false +atom0s/HoneywellWP7PoC,atom0s,C#,false,false,false,0,false,false,false,false +yarbelk/slimbox,yarbelk,Go,false,false,false,0,false,false,false,false +johannesg/PureSwarm,johannesg,,false,false,false,0,false,false,false,false +BobBarker/jefflr,BobBarker,JavaScript,false,false,false,0,false,false,false,false +NorthSailor/SoundTouch,NorthSailor,C++,false,false,false,0,false,false,false,false +tiago.dias/educational-passages,tiago.dias,JavaScript,false,false,false,0,false,false,false,false +thor12022/PigmenAgro,thor12022,Java,false,false,false,0,false,false,false,false +DelSkayn/axle,DelSkayn,Rust,false,false,false,0,false,false,false,false +whizzzkid/instructables-default-all-steps-chrome-extension,whizzzkid,JavaScript,false,false,false,0,false,false,false,false +Laerad/eggdropTCL,Laerad,Tcl,false,false,false,0,false,false,false,false +zdragnar/redux-tcomb-actions,zdragnar,JavaScript,false,false,false,0,false,false,false,false +torsday/notebook,torsday,,false,false,false,0,false,false,false,false +skratchdot/web-midi-api,skratchdot,HTML,false,false,false,0,false,false,false,false +awbeci/awesome-php-zh_CN,awbeci,,false,false,false,0,false,false,false,false +LukBukkit/XWeb,LukBukkit,Java,true,false,true,1,false,true,false,false +zhushuierjirou/SSite,zhushuierjirou,PHP,false,false,false,0,false,false,false,false +uniteach/bfh-milklist-minimal,uniteach,Java,false,false,true,0,false,false,false,false +perobertson/requisition,perobertson,Ruby,true,false,false,3,true,true,true,false +perobertson/dotfiles,perobertson,Vimscript,true,false,false,2,false,true,true,false +cdetar/cfd-common-roles,cdetar,Python,false,false,false,0,false,false,false,false +woozin23/node-inipay,woozin23,JavaScript,false,false,false,0,false,false,false,false +genieacs/genieacs-gui-mwc,genieacs,Ruby,false,false,false,0,false,false,false,false +olibre/Cpp14-OrderBook,olibre,C++,false,false,false,0,false,false,false,false +Miegenic/Leetify,Miegenic,Go,false,false,false,0,false,false,false,false +second-foundation/wisdom,second-foundation,,false,false,false,0,false,false,false,false +iyulab/iyulab.gitlab.io,iyulab,CSS,true,false,false,1,false,false,true,false +m.kruglyakov/GIEM2G,m.kruglyakov,Fortran,false,false,false,0,false,false,false,false +inri/tupel-coding-website,inri,JavaScript,false,false,false,0,false,false,false,false +chenchenalex/ping-ball,chenchenalex,JavaScript,false,false,false,0,false,false,false,false +lporrett/INFOF307_Refactoring,lporrett,Java,false,false,false,0,false,false,false,false +kollo/vdl120,kollo,C,false,false,false,0,false,false,false,false +django-personalsite/django-artnexp,django-personalsite,Python,false,false,false,0,false,false,false,false +VNdotfiles/awesome,VNdotfiles,Lua,false,false,false,0,false,false,false,false +froure/PointCloudGenerator,froure,C++,false,false,false,0,false,false,false,false +RomekRJM/bubbleup,RomekRJM,C++,false,false,false,0,false,false,false,false +phillc73/abettor,phillc73,R,false,false,false,0,false,false,false,false +veggiemonk/awesome-selfhosted,veggiemonk,,false,false,false,0,false,false,false,false +mehdi-m2/AI-Challenge2016,mehdi-m2,C++,false,false,false,0,false,false,false,false +giggio/code-cracker,giggio,C#,false,false,false,0,false,false,false,false +lem-rover/LemRover,lem-rover,C++,false,false,false,0,false,false,false,false +alxm/siter,alxm,Python,false,false,false,0,false,false,false,false +smocktaylor/linux,smocktaylor,C,false,false,false,0,false,false,false,false +softhopper-team/project-manager-with-billing-accounting-crm-pro,softhopper-team,,false,false,false,0,false,false,false,false +peterikaisa/superkamppa,peterikaisa,Java,false,false,false,0,false,false,false,false +Mikko3M/hsl-reittiopas-for-ubuntu-phone-unofficial,Mikko3M,QML,false,false,false,0,false,false,false,false +rgordeev/russia-it-podcast,rgordeev,,false,false,false,0,false,false,false,false +rgordeev/ttlite,rgordeev,Scala,false,false,false,0,false,false,false,false +Solid_Sponge/MultiChannelViewer,Solid_Sponge,C,false,false,false,0,false,false,false,false +KasaiDot/BGIKit,KasaiDot,C#,false,false,false,0,false,false,false,false +steve-perkins/CalibreCleaner,steve-perkins,C#,false,false,false,0,false,false,false,false +steve-perkins/domainjiffy,steve-perkins,HTML,false,false,false,0,false,false,false,false +steve-perkins/downloaddit,steve-perkins,C#,false,false,false,0,false,false,false,false +speeder1/Terraria-Map-Editor,speeder1,C#,false,false,false,0,false,false,false,false +kinsources/Puc_format,kinsources,Perl,false,false,false,0,false,false,false,false +Latex-AkademiskFormidling/LatexOpgave,Latex-AkademiskFormidling,TeX,false,false,false,0,false,false,false,false +NetherManiacsKingdom/Pokemon-MP,NetherManiacsKingdom,,false,false,false,0,false,false,false,false +whostaffing/whostaffing.com,whostaffing,HTML,false,false,false,0,false,false,false,false +timothyw/OOP-project,timothyw,Java,false,false,false,0,false,false,false,false +julesbroeks/zelos,julesbroeks,C++,false,false,false,0,false,false,false,false +pachox/mattermost,pachox,,false,false,false,0,false,false,false,false +adiultra/lynx,adiultra,,false,false,false,0,false,false,false,false +jcrapuchettes/recutils-syntax,jcrapuchettes,,false,false,false,0,false,false,false,false +aergus/hakyll-filestore,aergus,Haskell,false,false,false,0,false,false,false,false +dushan/metaethics_wp_theme,dushan,PHP,false,false,false,0,false,false,false,false +a-katsarov/heatsink-calc,a-katsarov,JavaScript,false,false,false,0,false,false,false,false +piratas/naofo.de,piratas,PHP,false,false,false,0,false,false,false,false +fonsito/git-training,fonsito,JavaScript,false,false,false,0,false,false,false,false +Romanenko/yii2-brains,Romanenko,PHP,false,false,false,0,false,false,false,false +grimmandi/Password-Safe-Reader,grimmandi,C#,false,false,false,0,false,false,false,false +bmcallis/library-skeleton,bmcallis,JavaScript,true,false,false,1,false,true,false,false +rohan77/bitm_project1,rohan77,PHP,false,false,false,0,false,false,false,false +bjornarhagen/Botu,bjornarhagen,CSS,false,false,false,0,false,false,false,false +kanghongjin/IMS-embedding-features,kanghongjin,Java,false,false,false,0,false,false,false,false +SjoenH/bup,SjoenH,Python,false,false,false,0,false,false,false,false +Liaud/lagoon,Liaud,Rust,false,false,false,0,false,false,false,false +wholegrain/nailgun,wholegrain,PHP,false,false,false,0,false,false,false,false +koreader/djvulibre,koreader,C++,false,false,false,0,false,false,false,false +central-force-optimization/simple-central-force-optimization,central-force-optimization,C++,false,false,false,0,false,false,false,false +gulajava.mini/LatihanPaletWarna,gulajava.mini,Java,false,false,false,0,false,false,false,false +wilcorrea/gennesis,wilcorrea,JavaScript,false,false,false,0,false,false,false,false +gennesis.io/apocalipse,gennesis.io,PHP,false,false,false,0,false,false,false,false +v4ld3rr4m4/phpdbdata,v4ld3rr4m4,,false,false,false,0,false,false,false,false +kbknapp/clap-rs,kbknapp,Rust,false,false,false,0,false,false,false,false +TheLastOperator/MultyPackLauncher,TheLastOperator,C++,false,false,false,0,false,false,false,false +nCrazed/XCOM2-Mod-Synchronizer,nCrazed,Python,false,false,false,0,false,false,false,false +nprs/nhr,nprs,Java,false,false,false,0,false,false,false,false +aisafari/AI-Safari,aisafari,C++,false,false,false,0,false,false,false,false +fire/RadiantUI,fire,C++,false,false,false,0,false,false,false,false +fire/SQLite4UE4,fire,C,false,false,false,0,false,false,false,false +vitronic/RPi_gpio,vitronic,Lua,false,false,false,0,false,false,false,false +pitankar/tm4c,pitankar,C,false,false,false,0,false,false,false,false +tormod/udw-firmware,tormod,C,false,false,false,0,false,false,false,false +nusacms/nusacms,nusacms,PHP,false,false,false,0,false,false,false,false +HackerSir/VSDK,HackerSir,PHP,true,false,false,2,false,true,true,false +hbourne/MCMC-scala,hbourne,Scala,false,false,false,0,false,false,false,false +Cerulean/maruko,Cerulean,Objective-C,false,false,false,0,false,false,false,false +wolfetti/swissknife-lib,wolfetti,Java,false,false,true,0,false,false,false,false +jacksarick/lux-miners,jacksarick,JavaScript,false,false,false,0,false,false,false,false +worldmind/medicine-chest-list,worldmind,TeX,false,false,false,0,false,false,false,false +delphinhugi/Dark-Universe,delphinhugi,NSIS,false,false,false,0,false,false,false,false +thor12022/TheToolTooltipTool,thor12022,Java,false,false,false,0,false,false,false,false +BobBarker/hellodoom,BobBarker,,false,false,false,0,false,false,false,false +cparandojo/archaio,cparandojo,,false,false,false,0,false,false,false,false +RussianCow/stag,RussianCow,Python,false,false,false,0,false,false,false,false +RussianCow/world-plays-tetris,RussianCow,Elixir,false,false,false,0,false,false,false,false +lappis/flosscoach,lappis,JavaScript,false,false,false,0,false,false,false,false +cabargas/cabargas.gitlab.io,cabargas,JavaScript,true,false,false,1,false,false,true,false +fdedden/fp-uc,fdedden,Haskell,false,false,false,0,false,false,false,false +TimoSmital/gruppe23,TimoSmital,C,false,false,false,0,false,false,false,false +DZebraman/Parking-Lot-Wars,DZebraman,C++,false,false,false,0,false,false,false,false +Miegenic/wowApi,Miegenic,Go,false,false,false,0,false,false,false,false +xai/dotfiles,xai,Vimscript,false,false,false,0,false,false,false,false +bscipio/pipscript,bscipio,Python,false,false,false,0,false,false,false,false +pendingchaos/WIP26,pendingchaos,C,false,false,false,0,false,false,false,false +jekyll-themes/carte-noire,jekyll-themes,CSS,true,false,false,1,false,false,true,false +timlyo/visualisation,timlyo,JavaScript,false,false,false,0,false,false,false,false +Folio/ScreenShoter,Folio,C#,false,false,false,0,false,false,false,false +hovedprosjekt/backend-mtakst,hovedprosjekt,Java,false,false,false,0,false,false,false,false +arandr/arandr,arandr,Python,false,false,false,0,false,false,false,false +Pacodastre/qrcode,Pacodastre,Erlang,false,false,false,0,false,false,false,false +fbt/watchman,fbt,Shell,false,false,false,0,false,false,false,false +bradclawsie/awsv4-cpp,bradclawsie,C++,false,false,false,0,false,false,false,false +bradclawsie/bloomfilter,bradclawsie,Go,false,false,false,0,false,false,false,false +bradclawsie/uparse,bradclawsie,C,false,false,false,0,false,false,false,false +levj220/oauth2-server,levj220,JavaScript,false,false,false,0,false,false,false,false +superkuh/snoopers-obfuscator,superkuh,Perl,false,false,false,0,false,false,false,false +oliverkulas/bwatch,oliverkulas,Java,false,false,false,0,false,false,false,false +mixedCase/kivy-i18n,mixedCase,Python,false,false,false,0,false,false,false,false +mbarga/stock_sentiment,mbarga,Python,false,false,false,0,false,false,false,false +osmar.gonzalez.ozuna/test,osmar.gonzalez.ozuna,,false,false,false,0,false,false,false,false +zyfrog/ZYToast,zyfrog,Objective-C,false,false,false,0,false,false,false,false +angelobulone/db_connection_maker,angelobulone,Python,false,false,false,0,false,false,false,false +ottonello/gossipDemo,ottonello,Go,true,false,false,1,true,false,false,false +nvtuan/Gomoku,nvtuan,C#,false,false,false,0,false,false,false,false +fancp2007/vlmcsd,fancp2007,C,false,false,false,0,false,false,false,false +pollution-map/fyp,pollution-map,,false,false,false,0,false,false,false,false +anders.linden/BashBurn,anders.linden,Shell,false,false,false,0,false,false,false,false +rdewalt/furlink,rdewalt,PHP,false,false,false,0,false,false,false,false +BeS/backup-rotate,BeS,Python,false,false,false,0,false,false,false,false +dcarp/asynchronous,dcarp,D,false,false,false,0,false,false,false,false +chand3040/suryan_odoo_sose,chand3040,Python,false,true,false,0,false,false,false,false +joaosilva2095/feup-2semester-2016,joaosilva2095,Java,false,false,false,0,false,false,false,false +andrew.cher/bagmanager,andrew.cher,Java,false,false,true,0,false,false,false,false +chriseaton/recaptcha,chriseaton,Go,true,false,false,1,true,false,false,false +chriseaton/malk,chriseaton,Go,false,false,false,0,false,false,false,false +zwlzwl376/jquery.wl,zwlzwl376,JavaScript,false,false,false,0,false,false,false,false +thor12022/CobblePopper,thor12022,Java,false,false,false,0,false,false,false,false +tem_leonov/FluentMailer,tem_leonov,C#,true,false,false,2,false,true,false,true +Chelo/DopadorManual2016UltimaRev,Chelo,C++,false,false,false,0,false,false,false,false +frague59/da2i,frague59,Python,false,false,false,0,false,false,false,false +jptiz/persona-x,jptiz,C++,false,false,false,0,false,false,false,false +gophergala/appstract,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/authy,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/bitodd,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/correct-horse-battery-staple,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/docker-bastion,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/dnsp,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/docket,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/donpenabot,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/FeedBag,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/Fig-Dashboard,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/edrans-smartcity,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/Find-A-Parking,gophergala,CSS,false,false,false,0,false,false,false,false +gophergala/Gift,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/go-algos,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/go-llama,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/go-tasky,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/goFire,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/gogala,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/goIRC,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/golab,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/gollage,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/gomegam,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/goloso,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/gopherling,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/gopher_talkie,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/gorgonzola,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/go_ne,gophergala,HTML,false,false,false,0,false,false,false,false +gophergala/go_report,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/Jin_project,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/ket,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/kurz,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/learn-Go-the-hard-way,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/launcher,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/nedomi,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/opentweet,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/one_day_of_earth,gophergala,CSS,false,false,false,0,false,false,false,false +gophergala/panopticon,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/sbuca,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/robostats,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/shark_sandwich,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/serradacapivara,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/sqldump,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/stk,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/teamOFP,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/tlen,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/what_the_movie,gophergala,Go,false,false,false,0,false,false,false,false +gophergala/wide,gophergala,JavaScript,false,false,false,0,false,false,false,false +gophergala/wisdom,gophergala,Go,false,false,false,0,false,false,false,false +mkobar/AngelHack_GA_2013,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/angular-cellar,mkobar,PHP,false,false,false,0,false,false,false,false +mkobar/AngularES6HealthApp,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/AngularHealthApp,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/angularjs-dropwizard-example,mkobar,JavaScript,false,false,true,0,false,false,false,false +mkobar/backbone-jax-cellar,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/beeswithmachineguns,mkobar,Python,false,true,false,0,false,false,false,false +mkobar/beeswithfrickinlaserbeams,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/bgradio,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/building-a-complete-mobile-app-with-ionic-framework,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/codova-update-plugin,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/ChallengeAccepted,mkobar,PHP,false,false,false,0,false,false,false,false +mkobar/Contract,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/demo-avatars,mkobar,,false,false,false,0,false,false,false,false +mkobar/correct-horse-battery-staple,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/dropwizard,mkobar,Java,false,false,true,0,false,false,false,false +mkobar/docker-bastion,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/dropwizard-todo,mkobar,Java,false,false,true,0,false,false,false,false +mkobar/Fig-Dashboard,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/DWeatherApp,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/dropwizard-swagger,mkobar,JavaScript,false,false,true,0,false,false,false,false +mkobar/dropwizard-blog-sample,mkobar,JavaScript,false,false,true,0,false,false,false,false +mkobar/firebaseStarter,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/Find-A-Parking,mkobar,CSS,false,false,false,0,false,false,false,false +mkobar/flix,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/foursquareVenueSearch,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/front-page,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/GeoAds-iOS-SDK,mkobar,Objective-C,false,false,false,0,false,false,false,false +mkobar/gilt-js-sdk,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/global.hackathon,mkobar,CoffeeScript,false,false,false,0,false,false,false,false +mkobar/goffee,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/gopherling,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/GorgeousGeorge,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/gophers,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/go_report,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/hacker-menu,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/GRESTlet,mkobar,Groovy,false,false,false,0,false,false,false,false +mkobar/grails-angular-cellar,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/iBeacon-nfc,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/InstanceSync,mkobar,Shell,false,false,false,0,false,false,false,false +mkobar/ionic-songhop-learn,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/jable,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/IonicGoogleMap,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/ionic-tutorial-dinnerapp,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/ionic-course,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/kinvey,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/libreboard,mkobar,CSS,false,false,false,0,false,false,false,false +mkobar/lit,mkobar,HTML,false,false,false,0,false,false,false,false +mkobar/layar-service-provider,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/listenlocal,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/marauders-map,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/mixare,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/mhd-berlin-2014,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/mixare-iphone,mkobar,Objective-C,false,false,false,0,false,false,false,false +mkobar/newrelic_java_wikipedia_plugin,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/mongolike,mkobar,PLpgSQL,false,false,false,0,false,false,false,false +mkobar/newsletter,mkobar,PHP,false,false,false,0,false,false,false,false +mkobar/nsalockdown,mkobar,,false,false,false,0,false,false,false,false +mkobar/ofxGstRTP,mkobar,C++,false,false,false,0,false,false,false,false +mkobar/orangejeos,mkobar,,false,false,false,0,false,false,false,false +mkobar/Oregon-Trail,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/osonghop-demo,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/old-songhop,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/pushop,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/popcorn-android,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/rdiovr,mkobar,HTML,false,false,false,0,false,false,false,false +mkobar/shoutout,mkobar,Objective-C,false,false,false,0,false,false,false,false +mkobar/runetcd,mkobar,Go,false,false,false,0,false,false,false,false +mkobar/smartdesign,mkobar,HTML,false,false,false,0,false,false,false,false +mkobar/songhop-final,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/soulmate,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/standards,mkobar,,false,false,false,0,false,false,false,false +mkobar/starwars-api-demo2,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/telize,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/thumbor,mkobar,Python,false,false,false,0,false,false,false,false +mkobar/TimelineJS,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/tribo-2.0,mkobar,PHP,false,false,false,0,false,false,false,false +mkobar/tribo-mobile,mkobar,HTML,false,false,false,0,false,false,false,false +mkobar/tunein,mkobar,Go,false,false,false,0,false,false,false,false +nitikaaggarwal/stuff,nitikaaggarwal,HTML,false,false,false,0,false,false,false,false +sdfgeoff/CaveFly,sdfgeoff,Python,false,false,false,0,false,false,false,false +hiteshp/hibernate_quickstart,hiteshp,Java,false,false,true,0,false,false,false,false +hiteshp/spring_quickstart,hiteshp,Java,false,false,true,0,false,false,false,false +hiteshp/prototype,hiteshp,Java,false,false,false,0,false,false,false,false +GinBaby/argumatronic,GinBaby,Haskell,false,false,false,0,false,false,false,false +revoreva/Surveyor,revoreva,Java,false,false,false,0,false,false,false,false +ayansome1/8_puzzle_game,ayansome1,Java,false,false,false,0,false,false,false,false +auchalet/Yii-Echos-Lbres,auchalet,PHP,false,false,false,0,false,false,false,false +zanfar/boilerplate.flask-angular,zanfar,Python,false,false,false,0,false,false,false,false +InvisibleUn1corn/self-window,InvisibleUn1corn,JavaScript,false,false,false,0,false,false,false,false +CreaTIKZ-groupe4/CreaTIKZ,CreaTIKZ-groupe4,Java,false,false,true,0,false,false,false,false +CUCSDSDK/OpenAutomationNetwork,CUCSDSDK,Java,false,false,false,0,false,false,false,false +andrewcoughtrie/moduleFiles,andrewcoughtrie,,false,false,false,0,false,false,false,false +mmg/heroku-buildpack-mono,mmg,Shell,false,false,false,0,false,false,false,false +mmg/heroku-buildpack-nginx,mmg,Shell,false,false,false,0,false,false,false,false +mmg/heroku-buildpack-nodejs,mmg,Shell,false,false,false,0,false,false,false,false +VeraKolotyuk/hexo_examples,VeraKolotyuk,CSS,true,false,false,1,false,true,false,false +pages/harp,pages,CSS,true,false,false,1,false,true,false,false +Codeman655/burp-msc,Codeman655,Python,false,false,false,0,false,false,false,false +jimdsouza/professional,jimdsouza,TeX,false,false,false,0,false,false,false,false +l214/msender,l214,JavaScript,true,false,false,1,false,true,false,false +chriistiianrojas/Prueba2,chriistiianrojas,,false,false,false,0,false,false,false,false +0xFireball/BurnedHTTP,0xFireball,Haxe,false,false,false,0,false,false,false,false +landaire/nfsync,landaire,Go,false,false,false,0,false,false,false,false +dgriffen/iron_session,dgriffen,Rust,true,false,false,1,false,true,false,false +LoburAlexander/messenger,LoburAlexander,,false,false,false,0,false,false,false,false +yubaokang/GJBaseFrame,yubaokang,Java,false,false,false,0,false,false,false,false +frntn/docker-cloud9,frntn,,true,false,false,2,true,true,false,false +lesens2/Particulier-Coach,lesens2,JavaScript,false,false,false,0,false,false,false,false +cky/emojisweeper,cky,Clojure,true,false,false,1,false,true,false,false +tommymorgan/teammanager,tommymorgan,Java,false,false,false,0,false,false,false,false +themes-templates/hexo,themes-templates,CSS,true,false,false,2,false,true,true,false +tommymorgan/teammanager-ui,tommymorgan,JavaScript,false,false,false,0,false,false,false,false +dipLab/rip,dipLab,D,false,false,false,0,false,false,false,false +Alpha_PTUDWEB2_1/Alpha_1312001_1312197_1312283_WEB2_TH2013,Alpha_PTUDWEB2_1,HTML,false,false,false,0,false,false,false,false +european-data-portal/ckanext-edp,european-data-portal,CSS,false,false,false,0,false,false,false,false +gujjamayuri/final2,gujjamayuri,Java,false,false,false,0,false,false,false,false +iggdrasil/papillon,iggdrasil,Python,false,true,false,0,false,false,false,false +Junqueira/vote-app,Junqueira,HTML,false,false,false,0,false,false,false,false +ajm113/pixelHell,ajm113,C,true,false,false,1,false,true,false,false +saneki/pyinst_tools,saneki,Python,false,false,false,0,false,false,false,false +sudoman/ssd-spacer,sudoman,Makefile,false,false,false,0,false,false,false,false +Loureiro800/html5-scss-boilerplate-mobile-header,Loureiro800,CSS,false,false,false,0,false,false,false,false +perveziqbal/seartipy-style-guidelines,perveziqbal,,false,false,false,0,false,false,false,false +perveziqbal/seartipy-courses,perveziqbal,,false,false,false,0,false,false,false,false +daivq/pyfml1602,daivq,HTML,false,false,false,0,false,false,false,false +en15for/gitlabr,en15for,R,true,false,false,5,true,true,false,false +wisutsak.ad/CodeIgniter,wisutsak.ad,PHP,false,false,false,0,false,false,false,false +activearchives/etherbox,activearchives,HTML,false,false,false,0,false,false,false,false +rajeshponnala/awesome-awesomeness,rajeshponnala,,false,false,false,0,false,false,false,false +rajeshponnala/yesql,rajeshponnala,Clojure,false,false,false,0,false,false,false,false +european-data-portal/licensing-assistant,european-data-portal,HTML,true,false,true,1,false,false,true,false +thomasl/tensorflow-for-poets,thomasl,Shell,false,false,false,0,false,false,false,false +gitlab-org/rgsoc-2016,gitlab-org,,false,false,false,0,false,false,false,false +mdsnouck/Moto360watchface,mdsnouck,,false,false,false,0,false,false,false,false +js-ios/first-app,js-ios,Objective-C,false,false,false,0,false,false,false,false +kubespray/kpm-cli,kubespray,Python,false,false,false,0,false,false,false,false +syxc/android-auto-update,syxc,Java,false,false,false,0,false,false,false,false +quyen9595/My-Profile,quyen9595,HTML,false,false,false,0,false,false,false,false +lehi3u1989/odoo_utils,lehi3u1989,Python,false,false,false,0,false,false,false,false +fishy5745/pydos,fishy5745,Python,false,false,false,0,false,false,false,false +balasankarc/dotfiles,balasankarc,Vimscript,false,false,false,0,false,false,false,false +deepak0/ysync-android,deepak0,Java,false,false,false,0,false,false,false,false +chusm/futuretravel,chusm,,false,false,false,0,false,false,false,false +Diablo2ResurgenceDev/diablo2resurgence,Diablo2ResurgenceDev,,false,false,false,0,false,false,false,false +Lukis92/aquapark,Lukis92,Ruby,false,false,false,0,false,false,false,false +nerdalize/go-zerotier,nerdalize,Go,false,false,false,0,false,false,false,false +ultr/glibc,ultr,C,false,false,false,0,false,false,false,false +ntninja/php-proxy-dean,ntninja,PHP,false,false,false,0,false,false,false,false +JamesMcMahon/Monocle-Engine,JamesMcMahon,C,false,false,false,0,false,false,false,false +BobBarker/hoverbob,BobBarker,,false,false,false,0,false,false,false,false +projet-metamorph6iv/cours_web,projet-metamorph6iv,HTML,false,false,false,0,false,false,false,false +jberkel/contorno,jberkel,Objective-C,false,false,false,0,false,false,false,false +jberkel/digero,jberkel,Java,true,false,false,1,false,true,false,false +eduardoklosowski/django-template,eduardoklosowski,Python,false,true,false,0,false,false,false,false +jayathungek/SysRev,jayathungek,Python,false,false,false,0,false,false,false,false +LapidusInteractive/flagchart-angular2,LapidusInteractive,JavaScript,false,false,false,0,false,false,false,false +rigrassm/plexrequests-python,rigrassm,Python,false,true,false,0,false,false,false,false +obonyojimmy/hospital_python,obonyojimmy,JavaScript,false,false,false,0,false,false,false,false +finnoleary/clp,finnoleary,C,false,false,false,0,false,false,false,false +Mrowa96/fluid-cms,Mrowa96,PHP,false,false,false,0,false,false,false,false +Mrowa96/fluid-elements,Mrowa96,JavaScript,false,false,false,0,false,false,false,false +ccis-irad/nifi-calrissian-processors,ccis-irad,Java,false,false,true,0,false,false,false,false +iarenzana/ft,iarenzana,Go,false,false,false,0,false,false,false,false +iarenzana/postrabbit,iarenzana,Go,false,false,false,0,false,false,false,false +iarenzana/urbano,iarenzana,Go,false,false,false,0,false,false,false,false +iarenzana/urbanobot,iarenzana,Go,true,false,false,1,false,false,false,false +pwoolcoc/cmudict,pwoolcoc,Rust,true,false,false,1,false,true,false,false +salfter/portage,salfter,Shell,false,false,false,0,false,false,false,false +A7mmed/Fractions,A7mmed,C++,false,false,false,0,false,false,false,false +js-ios/totp-hat,js-ios,JavaScript,false,false,false,0,false,false,false,false +colsen/growstuff,colsen,Ruby,false,false,false,0,false,false,false,false +jdg/phpbasictemplate,jdg,CSS,false,false,false,0,false,false,false,false +saran121/active-admin,saran121,Ruby,false,false,false,0,false,false,false,false +jasperdenkers/play-scala-heroku-sample-app,jasperdenkers,Scala,true,false,false,2,false,true,true,false +sbatman/Sbatman.Networking,sbatman,C#,true,false,false,2,true,false,false,true +arnaud.spicht/twinstickshooter,arnaud.spicht,C++,false,false,false,0,false,false,false,false +arnaud.spicht/batterycollector,arnaud.spicht,C++,false,false,false,0,false,false,false,false +altendo/gotestit,altendo,,false,false,false,0,false,false,false,false +speeder1/stardewsprinklermod,speeder1,C#,false,false,false,0,false,false,false,false +rldotai/mdpy,rldotai,HTML,false,false,false,0,false,false,false,false +apitheory/swagger-microservice-example-mock,apitheory,JavaScript,false,false,false,0,false,false,false,false +koreahaos/shapesmith,koreahaos,JavaScript,false,false,false,0,false,false,false,false +facengineer/hdfsscanner,facengineer,C,false,false,false,0,false,false,false,false +vinnief/count-words,vinnief,D,false,false,false,0,false,false,false,false +vinnief/scrape-twitter,vinnief,R,false,false,false,0,false,false,false,false +Ampo/pascal-optimus,Ampo,CSS,false,false,false,0,false,false,false,false +eitelkalk/Recown,eitelkalk,Java,true,false,false,1,false,false,true,false +ladecadence.net/MBCx,ladecadence.net,VHDL,false,false,false,0,false,false,false,false +centminmod-github-mirror/centminmod,centminmod-github-mirror,Shell,false,false,false,0,false,false,false,false +hesham_gamal/assignment1,hesham_gamal,,false,false,false,0,false,false,false,false +leolelego/ObjCKit,leolelego,Objective-C,false,false,false,0,false,false,false,false +AngeloStavrow/gitlab-ci-for-ios-projects,AngeloStavrow,Swift,true,false,false,2,true,false,false,false +huntgenes/fasttrack,huntgenes,JavaScript,false,false,false,0,false,false,false,false +centminmod-github-mirror/centminmodbench,centminmod-github-mirror,Shell,false,false,false,0,false,false,false,false +fzxwolf/ahamojo,fzxwolf,,false,false,false,0,false,false,false,false +themes-templates/hyde,themes-templates,HTML,true,false,false,2,false,true,true,false +luketheuma/GroupApt,luketheuma,,false,false,false,0,false,false,false,false +bitrise/Bitrise-iTunesConnectBetaTest,bitrise,Objective-C,false,false,false,0,false,false,false,false +ArmarX/YarpBridge,ArmarX,RPC,false,false,false,0,false,false,false,false +I2P/i2p.i2p,I2P,Java,false,false,false,0,false,false,false,false +CakePHP-3/RestApi,CakePHP-3,PHP,false,false,false,0,false,false,false,false +padouppadoup/paris-agreement,padouppadoup,JavaScript,true,false,false,1,false,false,true,false +tiago.dias/btc-stats,tiago.dias,JavaScript,true,false,false,1,false,false,true,false +leobenkel/async_data_fetch,leobenkel,Ruby,false,false,false,0,false,false,false,false +Royalspartan/GameOntwikkelOpdrachtSE2,Royalspartan,C#,false,false,false,0,false,false,false,false +HardlyDifficult/Pong,HardlyDifficult,C#,false,false,false,0,false,false,false,false +atilla/redit-commentbody,atilla,Python,false,false,false,0,false,false,false,false +centminmod-github-mirror/centminmod-dev,centminmod-github-mirror,Shell,false,false,false,0,false,false,false,false +adexfe/i18nRM,adexfe,JavaScript,false,false,false,0,false,false,false,false +SCoRe-Group/ELaSTIC,SCoRe-Group,C++,false,false,false,0,false,false,false,false +futkar/pm,futkar,Java,false,false,true,0,false,false,false,false +zuanbinjai/LookAround,zuanbinjai,JavaScript,false,false,false,0,false,false,false,false +bentinata/impress.js,bentinata,JavaScript,false,false,false,0,false,false,false,false +aboettger/morituri,aboettger,Python,false,false,false,0,false,false,false,false +onii/jupvid,onii,Shell,false,false,false,0,false,false,false,false +valinet/thinkpad-leds-control,valinet,C#,false,false,false,0,false,false,false,false +valinet/thinkpad-special-keys-remap,valinet,C#,false,false,false,0,false,false,false,false +landaire/parallel-cloud-chat,landaire,Go,false,false,false,0,false,false,false,false +copyninja/aspell-kn,copyninja,,false,false,false,0,false,false,false,false +naterciom/docker-template,naterciom,Python,false,false,false,0,false,false,false,false +EzCo/direct-math-engine,EzCo,,false,false,false,0,false,false,false,false +rodrigo_leite/UVa,rodrigo_leite,C++,false,false,false,0,false,false,false,false +guyonvarch/config-manager,guyonvarch,Haskell,false,false,false,0,false,false,false,false +acsipak/ProjectXmlFixer,acsipak,Java,false,false,false,0,false,false,false,false +matiasSanabria/sistemas_distribuidos,matiasSanabria,Python,false,false,false,0,false,false,false,false +sreetejavit/demo,sreetejavit,,false,false,false,0,false,false,false,false +shuaiqi/groonga,shuaiqi,C,false,false,false,0,false,false,false,false +35david35/NotS-assignment-4,35david35,C#,false,false,false,0,false,false,false,false +pantacor/pantahub-base,pantacor,Go,true,false,false,2,true,false,true,false +codecats/markdown-dsl,codecats,TeX,false,false,false,0,false,false,false,false +ppigmans/noobs,ppigmans,Makefile,false,false,false,0,false,false,false,false +pendingchaos/TheCatilineConspiracy,pendingchaos,Python,false,false,false,0,false,false,false,false +hbo-ict-se4/key-barricade,hbo-ict-se4,Java,false,false,false,0,false,false,false,false +nino8/api.ninoapp.com.br,nino8,HTML,false,false,false,0,false,false,false,false +ismail-s/cis194-homework,ismail-s,Haskell,true,false,false,1,false,true,false,false +TIME_LAS/Omeka_Plugin_CorrectCitation,TIME_LAS,PHP,false,false,false,0,false,false,false,false +bigit/vokativ,bigit,PHP,false,false,false,0,false,false,false,false +emilopez/testeame,emilopez,Python,false,true,false,0,false,false,false,false +m.san43/javascritp_funcional_learn,m.san43,JavaScript,false,false,false,0,false,false,false,false +popcorn-official/popcorn-desktop-legacy,popcorn-official,JavaScript,false,false,false,0,false,false,false,false +team-pct/butter-desktop,team-pct,JavaScript,false,false,false,0,false,false,false,false +mtlg-framework/mtlg-gameframe,mtlg-framework,JavaScript,false,false,false,0,false,false,false,false +lely_industries/util,lely_industries,C,false,false,false,0,false,false,false,false +JABS/docker-lab-machine,JABS,PHP,false,false,false,0,false,false,false,false +niive12/ludo-gui,niive12,C++,false,false,false,0,false,false,false,false +HackLabCormano/hacklabcormano.it,HackLabCormano,TeX,true,false,false,1,false,true,false,false +Expl0itBypass/AnnihilationKits,Expl0itBypass,Java,false,false,false,0,false,false,false,false +isaagar/ruby-compass-import-once,isaagar,Ruby,false,false,false,0,false,false,false,false +why-not/why-not-car-rental,why-not,PHP,false,false,false,0,false,false,false,false +leobenkel/gui_foldable_content,leobenkel,Ruby,false,false,false,0,false,false,false,false +old-fart/phpvirtualbox,old-fart,PHP,false,false,false,0,false,false,false,false +oopdp/mt4,oopdp,MQL4,false,false,false,0,false,false,false,false +kuzmany/discountcountdown,kuzmany,PHP,false,false,false,0,false,false,false,false +asseel7723/Assignment1,asseel7723,C++,false,false,false,0,false,false,false,false +titus-estate/titus-estate,titus-estate,PHP,false,false,false,0,false,false,false,false +db260179/openwrt-bpi-r1-management,db260179,Shell,false,false,false,0,false,false,false,false +Neil-Huang/gitdemo,Neil-Huang,,false,false,false,0,false,false,false,false +minhtung/shopmayhan,minhtung,,false,false,false,0,false,false,false,false +kendling/android_kernel_meizu_mx4pro,kendling,,false,false,false,0,false,false,false,false +maulikmmodi94/build.ionth,maulikmmodi94,PHP,false,false,false,0,false,false,false,false +Dante-Ajushi/Beautiful-Woman,Dante-Ajushi,Python,false,false,false,0,false,false,false,false +quyen9595/WED-APP-DEVELOPMENT,quyen9595,JavaScript,false,false,false,0,false,false,false,false +btleffler/node-prock,btleffler,JavaScript,false,false,false,0,false,false,false,false +shrestha.aawesh/taximeter,shrestha.aawesh,Java,false,false,false,0,false,false,false,false +dynamic-interaction-control/icub-insitu-ft-analysis-big-datasets,dynamic-interaction-control,Matlab,false,false,false,0,false,false,false,false +RedFred7/cuba-genie,RedFred7,Ruby,false,false,false,0,false,false,false,false +manojskdm/GitProj,manojskdm,,false,false,false,0,false,false,false,false +llb/eos,llb,Python,false,false,false,0,false,false,false,false +pvbarredo/ustgcs,pvbarredo,JavaScript,false,false,false,0,false,false,false,false +Expl0itBypass/CaptureTheWool,Expl0itBypass,Java,false,false,false,0,false,false,false,false +rollbrettler/ELK-stack-test,rollbrettler,Shell,false,false,false,0,false,false,false,false +erick456/sentinela,erick456,Java,false,false,false,0,false,false,false,false +vikserver/vikserver-backend,vikserver,JavaScript,true,false,false,3,true,true,false,false +oskrv/tesis_control,oskrv,Java,false,false,false,0,false,false,false,false +sroy/samix-scripts,sroy,Shell,false,false,false,0,false,false,false,false +poulet_a/owra-stories,poulet_a,,false,false,false,0,false,false,false,false +cuiyuan2012/P2PFileSharing,cuiyuan2012,Java,false,false,true,0,false,false,false,false +DanielKeep/wasm,DanielKeep,Rust,false,false,false,0,false,false,false,false +gennesis.io/basic,gennesis.io,CSS,false,false,false,0,false,false,false,false +twittner/cql,twittner,Haskell,true,false,false,1,false,true,false,false +yazzolin/UndeadSouls,yazzolin,Java,false,false,false,0,false,false,false,false +twittner/tinylog,twittner,Haskell,true,false,false,1,false,true,false,false +autoferrit/gitattributes,autoferrit,,false,false,false,0,false,false,false,false +kalouantonis/flexitime,kalouantonis,Clojure,false,false,false,0,false,false,false,false +melkorm/php-testing,melkorm,PHP,true,false,false,2,false,true,true,false +alabecki/group_3,alabecki,CSS,false,false,false,0,false,false,false,false +ImaProgrammer/Quake_CPP,ImaProgrammer,C++,false,false,false,0,false,false,false,false +jjaquinta/TsaTsaTzuAlexa,jjaquinta,JavaScript,false,false,false,0,false,false,false,false +JonatanHenriquez/cupon,JonatanHenriquez,JavaScript,false,false,false,0,false,false,false,false +nuf/Solus,nuf,Java,false,false,false,0,false,false,false,false +sittipong/sendicon,sittipong,HTML,false,false,false,0,false,false,false,false +tomushu/mstdsaltstates,tomushu,SaltStack,false,false,false,0,false,false,false,false +JWMH/Artificial_Intelligence_1_Projects,JWMH,Java,false,false,false,0,false,false,false,false +judecn/gitsec,judecn,Python,false,false,false,0,false,false,false,false +simplerise/mcparty,simplerise,Ruby,false,false,false,0,false,false,false,false +trananhbkict/edx,trananhbkict,Objective-C,false,false,false,0,false,false,false,false +odoo-divers/ca_clients,odoo-divers,Python,false,false,false,0,false,false,false,false +olinares/code-journey,olinares,HTML,false,false,false,0,false,false,false,false +nirvguy/practicas-plp,nirvguy,Haskell,false,false,false,0,false,false,false,false +evologica/BluetoothEvologica,evologica,Java,false,false,false,0,false,false,false,false +glmaljkovich/wattwriter,glmaljkovich,Java,false,false,false,0,false,false,false,false +seveniruby/StartupApi,seveniruby,Scala,false,false,false,0,false,false,false,false +bulbulhossen/Banglar_kobita_somogro,bulbulhossen,Java,false,false,false,0,false,false,false,false +RandomInEqualities/PostImproved,RandomInEqualities,JavaScript,false,false,false,0,false,false,false,false +jberkel/torrada,jberkel,Objective-C,false,false,false,0,false,false,false,false +godfat/pork,godfat,Ruby,false,false,false,0,false,false,false,false +DevDroid/FlixtorMe,DevDroid,HTML,false,false,false,0,false,false,false,false +yopspanjers/CSA,yopspanjers,C#,false,false,false,0,false,false,false,false +empierre/MyDomoAtHome,empierre,JavaScript,false,false,false,0,false,false,false,false +themes-templates/lektor,themes-templates,HTML,true,false,false,1,false,true,false,false +argent/boot-core,argent,,false,false,false,0,false,false,false,false +thelabnyc/instrumented-soap,thelabnyc,Python,true,true,false,1,false,true,false,false +snouf/tvheadend_tools,snouf,Python,false,false,false,0,false,false,false,false +Lindess/superheroagency,Lindess,HTML,false,false,true,0,false,false,false,false +dennis-hamester/scrawpp,dennis-hamester,C++,false,false,false,0,false,false,false,false +twittner/json-codec,twittner,Rust,true,false,false,2,false,true,true,false +carlos_perez/PowerEmpire,carlos_perez,PowerShell,false,false,false,0,false,false,false,false +chuong.tran/my_p300,chuong.tran,C++,false,false,false,0,false,false,false,false +jberkel/rectoverso,jberkel,Swift,false,false,false,0,false,false,false,false +RKIBioinformaticsPipelines/Assembly,RKIBioinformaticsPipelines,Python,false,false,false,0,false,false,false,false +RKIBioinformaticsPipelines/VariantCalling,RKIBioinformaticsPipelines,Python,false,false,false,0,false,false,false,false +kgnnio/KeyMaker-Android,kgnnio,Java,false,false,false,0,false,false,false,false +jamietanna/latex-starter,jamietanna,TeX,false,false,false,0,false,false,false,false +jwlee95/PyDataLogger,jwlee95,Python,false,false,false,0,false,false,false,false +jacob-dawid/rigcontrol,jacob-dawid,C++,false,false,false,0,false,false,false,false +gaohao95/HPX-Python,gaohao95,C,false,false,false,0,false,false,false,false +sev/htic,sev,Python,false,false,false,0,false,false,false,false +MatiasMinian/2016-dds-utn-g12,MatiasMinian,Java,false,false,true,0,false,false,false,false +brdolenc/SystemApiRest,brdolenc,PHP,false,false,false,0,false,false,false,false +brdolenc/classes,brdolenc,PHP,false,false,false,0,false,false,false,false +yurb/getmusic,yurb,Python,true,false,false,1,false,true,false,false +ayyasamit/ti-proy-final,ayyasamit,Java,false,false,false,0,false,false,false,false +timtoady/pv168-hotel,timtoady,Java,false,false,true,0,false,false,false,false +fheinemann/zoltaen_chat,fheinemann,Python,false,false,false,0,false,false,false,false +korken89/IMUCalibration,korken89,C++,false,false,false,0,false,false,false,false +thelabnyc/django-oscar/django-oscar-cch,thelabnyc,Python,true,true,false,1,false,true,false,false +JKANetwork/cryptoJKA,JKANetwork,C,false,false,false,0,false,false,false,false +SkygridRex/NStrike,SkygridRex,Java,false,false,false,0,false,false,false,false +buckybox/core,buckybox,Ruby,true,false,false,1,false,true,false,false +InstanceOfMichael/xubuntu-post-install,InstanceOfMichael,Shell,false,false,false,0,false,false,false,false +mdklinux/comps-mga,mdklinux,XSLT,false,false,false,0,false,false,false,false +sev/f000,sev,,false,false,false,0,false,false,false,false +tacosuave/audio_ripper,tacosuave,Python,false,false,false,0,false,false,false,false +ammongit/qotd,ammongit,C,false,false,false,0,false,false,false,false +redmser/MserDuck,redmser,C#,false,false,false,0,false,false,false,false +snehaldangroshiya/MongoAdminTool,snehaldangroshiya,JavaScript,false,false,false,0,false,false,false,false +arif.071292/lightshare,arif.071292,CSS,false,false,false,0,false,false,false,false +kaahne/Broker,kaahne,Java,false,false,false,0,false,false,false,false +Muninn/my-opml-file,Muninn,,false,false,false,0,false,false,false,false +su-v/inx-toolsanim,su-v,Python,false,false,false,0,false,false,false,false +ChrisCCF/305CDE_Assignment1,ChrisCCF,JavaScript,false,false,false,0,false,false,false,false +bennyp/kupat-givat-hamivtar,bennyp,JavaScript,true,false,false,1,true,false,false,false +sunilphanimanne/blockpuzzle,sunilphanimanne,Objective-C,false,false,false,0,false,false,false,false +uniteach/bfh-milklist-minimalstyled,uniteach,Java,false,false,true,0,false,false,false,false +Angular/Angular.js,Angular,JavaScript,false,false,false,0,false,false,false,false +jamie_ca/codex,jamie_ca,HTML,true,false,false,1,false,true,false,false +2016ddsutng08/2016ddsutng08,2016ddsutng08,Java,false,false,true,0,false,false,false,false +saintcon/SaintCon2016Badge,saintcon,Lua,true,false,false,5,true,true,true,false +crisopolis/discussion-thread,crisopolis,JavaScript,false,false,false,0,false,false,false,false +ariful742/BookTitle,ariful742,PHP,false,false,false,0,false,false,false,false +yhaddad/Heppi,yhaddad,Python,false,false,false,0,false,false,false,false +baibalab/bulmhex,baibalab,HTML,false,false,false,0,false,false,false,false +vasyl_drapak/cpp-range,vasyl_drapak,C++,false,false,false,0,false,false,false,false +Bacon_Space/My-Themes,Bacon_Space,CSS,false,false,false,0,false,false,false,false +gmorenz/waywire,gmorenz,Rust,false,false,false,0,false,false,false,false +PhantomBot/PhantomBot,PhantomBot,Java,false,false,false,0,false,false,false,false +wikiti-random-stuff/sinatra-template,wikiti-random-stuff,CSS,false,false,false,0,false,false,false,false +RCristian5/UserManagement,RCristian5,CSS,false,false,false,0,false,false,false,false +madsonic/madsonic-repo,madsonic,,false,false,false,0,false,false,false,false +lumeng/JiraLink,lumeng,Mathematica,false,false,false,0,false,false,false,false +umranium/EspConnect,umranium,Java,false,false,false,0,false,false,false,false +d-e/blender-addon-boilerplate,d-e,Python,true,false,false,1,false,true,false,false +knoerregaard/MobilDev,knoerregaard,JavaScript,false,false,false,0,false,false,false,false +corinzio/cordova-plugin-google-signin,corinzio,Java,false,false,false,0,false,false,false,false +sourplum/sourplum,sourplum,Ruby,false,false,false,0,false,false,false,false +sourplum/qml_material_slideshow,sourplum,QML,false,false,false,0,false,false,false,false +mezzodrinker/inter-astra,mezzodrinker,,false,false,false,0,false,false,false,false +Enzer/wsmpBlocks,Enzer,Java,false,false,false,0,false,false,false,false +jake42/openwrt_8021x_gui,jake42,Lua,false,false,false,0,false,false,false,false +wanghuayu007/SlickOne,wanghuayu007,C#,false,false,false,0,false,false,false,false +xenetics/android-flashcards,xenetics,Java,false,false,false,0,false,false,false,false +barrel/barrel-shopify,barrel,Liquid,true,false,false,1,false,false,true,false +treaki/antibadusb,treaki,Shell,false,false,false,0,false,false,false,false +MARBIOS/biocluster-info,MARBIOS,,false,false,false,0,false,false,false,false +NextZeus/poker,NextZeus,JavaScript,false,false,false,0,false,false,false,false +iHge2k/ucb-cs61b,iHge2k,Java,false,false,false,0,false,false,false,false +madsonic/madsonic-booter,madsonic,Java,false,false,true,0,false,false,false,false +selboo/bootstrap-modal,selboo,HTML,false,false,false,0,false,false,false,false +gianluca.rigoletti/plasmon,gianluca.rigoletti,JupyterNotebook,false,false,false,0,false,false,false,false +WereDiggle/tab_complete,WereDiggle,Shell,false,false,false,0,false,false,false,false +pycqa/baron,pycqa,Python,false,true,false,0,false,false,false,false +yousec4openfisca/about,yousec4openfisca,JavaScript,false,false,false,0,false,false,false,false +survivorsteam/restorers-prototype,survivorsteam,CSS,false,false,false,0,false,false,false,false +Boelensman1/SpaceS-DB,Boelensman1,JavaScript,true,false,false,3,false,true,false,false +CMP625/ContikiOS-3.0,CMP625,C,false,false,false,0,false,false,false,false +iHge2k/ucb-cs186,iHge2k,,false,false,false,0,false,false,false,false +Nunuvin/Tic-Tac-Toe-1.1,Nunuvin,Python,false,false,false,0,false,false,false,false +tormod/sdboot,tormod,C,false,false,false,0,false,false,false,false +roman-yagodin/PlaneShift.Translation,roman-yagodin,Shell,false,false,false,0,false,false,false,false +layemut/FieldControlledClickListener,layemut,Java,false,false,false,0,false,false,false,false +loitv1689/hbase0.9.8-hadoop2.5,loitv1689,,false,false,false,0,false,false,false,false +mikegerwitz/online-freedom,mikegerwitz,TeX,false,false,false,0,false,false,false,false +shiplix/shiplix,shiplix,Ruby,true,false,false,2,true,true,false,false +vindarel/languages-that-compile-to-python,vindarel,,false,false,false,0,false,false,false,false +java-tutorials/messenger,java-tutorials,Java,false,false,true,0,false,false,false,false +coding-club-rennes/Puissance-4,coding-club-rennes,C++,false,false,false,0,false,false,false,false +bit-shift/hexnocular,bit-shift,C++,false,false,false,0,false,false,false,false +andre-filho/oo-exercicio-de-programacao-01,andre-filho,C++,false,false,false,0,false,false,false,false +ALMaSS/ALMaSS_inputs,ALMaSS,Makefile,false,false,false,0,false,false,false,false +oukase/TeamTime,oukase,PHP,false,false,false,0,false,false,false,false +Danielkaas94/FirstProject,Danielkaas94,HTML,false,false,false,0,false,false,false,false +sunpy/sunpy,sunpy,Python,false,false,false,0,false,false,false,false +Sparking2/Cube_Warfare,Sparking2,C#,false,false,false,0,false,false,false,false +bsmiranda/asiu,bsmiranda,Python,false,false,false,0,false,false,false,false +socrates-chile/socrates-chile,socrates-chile,JavaScript,true,false,false,1,false,false,true,false +mdimjasevic/dpkg-process,mdimjasevic,Scala,false,false,true,0,false,false,false,false +skaarstein/makingit,skaarstein,Java,false,false,false,0,false,false,false,false +jadelab/jadegit,jadelab,C++,true,false,false,1,true,false,false,false +RDO/rdo-website,RDO,HTML,false,false,false,0,false,false,false,false +ehemsley/dota_go,ehemsley,Lua,false,false,false,0,false,false,false,false +freakanth/discriminative-restricted-boltzmann-machine,freakanth,Python,false,false,false,0,false,false,false,false +leafmind/NNSearcher,leafmind,C,false,false,false,0,false,false,false,false +nsfhr/ansible-roles-generic,nsfhr,,false,false,false,0,false,false,false,false +chusm/test2,chusm,,false,false,false,0,false,false,false,false +nerdfiles/schedgmule,nerdfiles,JavaScript,false,false,false,0,false,false,false,false +pushrocks/smartcli,pushrocks,TypeScript,true,false,false,4,false,true,false,true +HarveyHunt/csgoconfig,HarveyHunt,,false,false,false,0,false,false,false,false +HarveyHunt/howm,HarveyHunt,C,false,false,false,0,false,false,false,false +offdutypirate/pneumatic,offdutypirate,HTML,false,false,false,0,false,false,false,false +tlevine/okfn.github.com,tlevine,HTML,false,false,false,0,false,false,false,false +tlevine/urchin,tlevine,Shell,false,false,false,0,false,false,false,false +chriseaton/malk-storage-file,chriseaton,Go,true,false,false,2,true,true,false,false +chriseaton/malk-storage-sqlite,chriseaton,Go,true,false,false,2,true,true,false,false +lancety/takeAwayManager,lancety,TypeScript,false,false,false,0,false,false,false,false +grizax/whats-the-glory-user-story,grizax,JavaScript,false,false,false,0,false,false,false,false +bernardodsanderson/chrome-packaged-app-tutorial,bernardodsanderson,,false,false,false,0,false,false,false,false +18runt88/Atlas-iOS,18runt88,Objective-C,false,false,false,0,false,false,false,false +18runt88/twofishes,18runt88,Scala,false,false,false,0,false,false,false,false +18runt88/wcag-em-report-tool,18runt88,JavaScript,false,false,false,0,false,false,false,false +18runt88/python-anti-patterns,18runt88,,false,false,false,0,false,false,false,false +18runt88/Reader,18runt88,Objective-C,false,false,false,0,false,false,false,false +ethanfrogers/ethanfrogers.gitlab.io,ethanfrogers,HTML,true,false,false,1,false,true,false,false +anbujayam/LifeSavers,anbujayam,,false,false,false,0,false,false,false,false +whilefalse/Yeast,whilefalse,Shell,false,false,false,0,false,false,false,false +josephgodwinkimani/wamp-custom,josephgodwinkimani,HTML,false,false,false,0,false,false,false,false +corpo/pokermon,corpo,Python,false,false,false,0,false,false,false,false +fabiocosta0305/fabiocosta0305.gitlab.io,fabiocosta0305,HTML,true,false,false,1,false,false,true,false +ArNz8o8/Timed-Ban-Script,ArNz8o8,Tcl,false,false,false,0,false,false,false,false +joseluistineo90/webvision,joseluistineo90,HTML,false,false,false,0,false,false,false,false +blingbang2016/shop,blingbang2016,PHP,false,false,false,0,false,false,false,false +cdietrich/xtext-maven-example,cdietrich,Xtend,true,false,false,1,false,true,false,false +ubuntuforhope/playground,ubuntuforhope,,false,false,false,0,false,false,false,false +argent/argent-ws,argent,Shell,false,false,false,0,false,false,false,false +pendingchaos/shooty-game,pendingchaos,HTML,true,false,false,1,false,false,true,false +hounge.mobile/awesome-honeypots,hounge.mobile,,false,false,false,0,false,false,false,false +lucasucc/trabFinalMatc89,lucasucc,Java,false,false,false,0,false,false,false,false +hungtran7889/tch_repos_odoo,hungtran7889,CSS,false,false,false,0,false,false,false,false +zhouhui666/WordHelper,zhouhui666,Java,false,false,false,0,false,false,false,false +foxnewsnetwork/ember-gitlab-pages,foxnewsnetwork,JavaScript,true,false,false,1,false,true,false,false +ubuntuforhope/ubuntuforhope.org,ubuntuforhope,Python,true,false,false,3,true,false,false,false +hprobotic/reactjs_vndev,hprobotic,JavaScript,false,false,false,0,false,false,false,false +carey.pridgeon/Mopfile,carey.pridgeon,C++,true,false,false,1,false,true,false,false +Robin_Jadoul/Lexesis,Robin_Jadoul,C++,false,false,false,0,false,false,false,false +vicsana1/gdufs-lecture2016,vicsana1,JupyterNotebook,false,false,false,0,false,false,false,false +pendingchaos/Celika,pendingchaos,C,false,false,false,0,false,false,false,false +PragmaticLinux/PragmaticLinux-Env,PragmaticLinux,Shell,false,false,false,0,false,false,false,false +cycleseven/course-picker,cycleseven,JavaScript,false,false,false,0,false,false,false,false +jloboprs/micons,jloboprs,JavaScript,false,false,false,0,false,false,false,false +thugside/awesome-python,thugside,Python,false,false,false,0,false,false,false,false +thugside/mule,thugside,Java,false,false,false,0,false,false,false,false +thugside/strowger,thugside,Python,false,true,false,0,false,false,false,false +Krzyzanowski_Pawel/biosignal_gen,Krzyzanowski_Pawel,,false,false,false,0,false,false,false,false +kmf/awesome-bash,kmf,,false,false,false,0,false,false,false,false +voidspacexyz/saltstack-manager,voidspacexyz,HTML,false,false,false,0,false,false,false,false +vinicinolivera/EP1,vinicinolivera,C++,false,false,false,0,false,false,false,false +chuangwailinjie/chuangwailinjie.github.io,chuangwailinjie,HTML,false,false,false,0,false,false,false,false +DiegoCosta/collections-bench,DiegoCosta,Java,false,false,true,0,false,false,false,false +seblavenant/system,seblavenant,Shell,false,false,false,0,false,false,false,false +werwurm/ichi_reloaded,werwurm,C,true,false,false,1,true,false,false,false +jloboprs/domoto-cli,jloboprs,JavaScript,false,false,false,0,false,false,false,false +ldseinhardt/ds,ldseinhardt,Java,false,false,false,0,false,false,false,false +madresistor/box0-v5-hardware,madresistor,Python,false,false,false,0,false,false,false,false +themes-templates/gitbook,themes-templates,,false,false,false,0,false,false,false,false +joncotton/redux-alerts,joncotton,Swift,false,false,false,0,false,false,false,false +kirix/SensorFusionBox,kirix,C++,false,false,false,0,false,false,false,false +llvm-doe/public,llvm-doe,,false,false,false,0,false,false,false,false +godhatesgames/GodHatesCharades,godhatesgames,JavaScript,false,false,false,0,false,false,false,false +sunng/sunng.gitlab.io,sunng,HTML,true,false,false,1,false,false,true,false +mivid/mivid,mivid,CSS,false,false,false,0,false,false,false,false +Danielkaas94/IonicFirstApp,Danielkaas94,JavaScript,false,false,false,0,false,false,false,false +Scarecr0w/Feeder,Scarecr0w,JavaScript,false,false,false,0,false,false,false,false +radish/PyV4L2Camera,radish,Python,false,false,false,0,false,false,false,false +velartrill/procgen,velartrill,OCaml,false,false,false,0,false,false,false,false +showcheap/android-coba-fragment,showcheap,Java,false,false,false,0,false,false,false,false +nhiennn/packages_translates,nhiennn,PHP,false,false,false,0,false,false,false,false +mateuszjarosz/daves-driveways,mateuszjarosz,PHP,false,false,false,0,false,false,false,false +rogentos/portage-snapshot,rogentos,,false,false,false,0,false,false,false,false +chriseaton/malk-storage,chriseaton,Go,true,false,false,2,true,true,false,false +mohsenoid/market_price,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/doostjoo,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/tehran_traffic_map,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/hacker_rank,mohsenoid,Java,false,false,true,0,false,false,false,false +mohsenoid/app_settings,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/navigation_view,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/timber,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/android_utils,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/brainrush,mohsenoid,C#,false,false,false,0,false,false,false,false +mohsenoid/control_ball,mohsenoid,C#,false,false,false,0,false,false,false,false +mohsenoid/aquaplay,mohsenoid,Java,false,false,false,0,false,false,false,false +mohsenoid/flappybird,mohsenoid,C#,false,false,false,0,false,false,false,false +mohsenoid/makethemfall,mohsenoid,C#,false,false,false,0,false,false,false,false +GovanifY/doxygen-lua,GovanifY,Perl,false,false,false,0,false,false,false,false +Rich-Harris/buble-demo,Rich-Harris,HTML,true,false,false,1,false,true,false,false +thelabnyc/django-exact-target,thelabnyc,Python,true,false,false,1,false,true,false,false +keijo/pis,keijo,Shell,false,false,false,0,false,false,false,false +xiaozefeng/Vundle.vim,xiaozefeng,Vimscript,false,false,false,0,false,false,false,false +shahabuddinp91/Project_2,shahabuddinp91,PHP,false,false,false,0,false,false,false,false +shiphitchcock3/sample-nodejs-mongo-heroku,shiphitchcock3,JavaScript,false,false,false,0,false,false,false,false +iotbzh/connman-json-client,iotbzh,C,false,false,false,0,false,false,false,false +pip-tmp/JIRA-Gitlab-integration,pip-tmp,Java,false,false,true,0,false,false,false,false +despeny7/ktz,despeny7,JavaScript,false,false,false,0,false,false,false,false +michaelowens/elixir-ircd,michaelowens,Elixir,false,false,false,0,false,false,false,false +Equipo9_GestionProyecto/GestionP,Equipo9_GestionProyecto,HTML,false,false,false,0,false,false,false,false +tonycodes/geocomplete,tonycodes,JavaScript,false,false,false,0,false,false,false,false +devashishmamgain/Applozic-Android-SDK,devashishmamgain,Java,false,false,false,0,false,false,false,false +ginsu.tp/webEng,ginsu.tp,Java,false,false,false,0,false,false,false,false +druonysus/saltconf16-demo,druonysus,HTML,false,false,false,0,false,false,false,false +apetitbois/electron-polymer,apetitbois,HTML,true,false,false,1,true,false,false,false +valinet/keyboard-hooker,valinet,C,false,false,false,0,false,false,false,false +ad-si-2016-1/projeto1,ad-si-2016-1,Java,false,false,false,0,false,false,false,false +yachmenov_c/_miner,yachmenov_c,JavaScript,false,false,false,0,false,false,false,false +mdanil/Tu-144,mdanil,Shell,false,false,false,0,false,false,false,false +alexscott97/Project1,alexscott97,,false,false,false,0,false,false,false,false +jxml/JXML,jxml,Java,true,false,false,1,false,true,false,false +relan/elektrichki,relan,Java,true,false,false,1,false,true,false,false +navagiaginasta/aplikasiKreditMotor,navagiaginasta,PHP,false,false,false,0,false,false,false,false +burke-software/passit-typescript-sdk,burke-software,TypeScript,false,false,false,0,false,false,false,false +DocterWho/PPE_PyQt,DocterWho,Python,false,false,false,0,false,false,false,false +ymorin/buildroot,ymorin,Makefile,true,false,false,1,false,true,false,false +sergiopellegrini/ExpandingSearchBar,sergiopellegrini,JavaScript,false,false,false,0,false,false,false,false +BartMassey/sudoku-sat,BartMassey,TeX,false,false,false,0,false,false,false,false +thelu/2014060838-proyecto1,thelu,,false,false,false,0,false,false,false,false +jeaster12/BoilerJucks,jeaster12,JavaScript,false,false,false,0,false,false,false,false +fis_assignment5/V2,fis_assignment5,JavaScript,false,false,false,0,false,false,false,false +skokkk/lmgtfy,skokkk,Lua,false,false,false,0,false,false,false,false +zloster/zloster.gitlab.io,zloster,CSS,true,false,false,1,false,false,true,false +felipedossantos896/Ol-mundo,felipedossantos896,,false,false,false,0,false,false,false,false +jomat/dokuwiki-plugin-forcessllogin,jomat,PHP,false,false,false,0,false,false,false,false +Magnussen/vue-bootstrap,Magnussen,JavaScript,false,false,false,0,false,false,false,false +qhcthanh/follow-me,qhcthanh,Swift,false,false,false,0,false,false,false,false +ayyasamit/rails-bootstrap,ayyasamit,Ruby,false,false,false,0,false,false,false,false +willeponken/latex-code-template,willeponken,TeX,false,false,false,0,false,false,false,false +noirvent/HEG_635.1,noirvent,Java,false,false,false,0,false,false,false,false +simogasp/trackingDataset_TLSCapitole,simogasp,HTML,false,false,false,0,false,false,false,false +IDE_MTOP_PUBLICO/estilos_geoservicios,IDE_MTOP_PUBLICO,Scheme,false,false,false,0,false,false,false,false +nunomota/computer-graphics,nunomota,C,false,false,false,0,false,false,false,false +bruwalfas/wifire,bruwalfas,Shell,false,false,false,0,false,false,false,false +CaseySoftware/contactually-php,CaseySoftware,PHP,false,false,false,0,false,false,false,false +Manuelpuga/Organizados,Manuelpuga,Java,false,false,false,0,false,false,false,false +alexprowars/bitrix,alexprowars,PHP,false,false,false,0,false,false,false,false +xchrome_deps/v8,xchrome_deps,C++,false,false,false,0,false,false,false,false +glpuga/ceseproyectoespecializacion,glpuga,,false,false,false,0,false,false,false,false +aniemsh/aniemsh.gitlab.io,aniemsh,HTML,true,false,false,1,false,true,false,false +rekby-archive/go-bindata,rekby-archive,Go,false,false,false,0,false,false,false,false +yeisonMartinez2015/trabajodisenopaginasweb,yeisonMartinez2015,HTML,false,false,false,0,false,false,false,false +mmk2410/eclipse-ide-java,mmk2410,Shell,false,false,false,0,false,false,false,false +mmk2410/cm-themechooser-font-fira,mmk2410,,false,false,false,0,false,false,false,false +mmk2410/morse-converter-android,mmk2410,Java,false,false,false,0,false,false,false,false +esinayana/BookingNN,esinayana,,false,false,false,0,false,false,false,false +cosmopod/impossible-rusher,cosmopod,C#,false,false,false,0,false,false,false,false +parthpower/aes-fpga,parthpower,VHDL,false,false,false,0,false,false,false,false +pendingchaos/Celery,pendingchaos,C,true,false,false,1,false,false,true,false +Sparking2/Sistema-Experto,Sparking2,C#,false,false,false,0,false,false,false,false +jeffdwelder/Skittle_Sorter,jeffdwelder,C,false,false,false,0,false,false,false,false +Dinozaur/GG2-Bachelor,Dinozaur,C#,false,false,false,0,false,false,false,false +YerkoPalma/YerkoPalma.gitlab.io,YerkoPalma,JavaScript,true,false,false,1,false,false,true,false +ragnarok22/socialProject,ragnarok22,HTML,false,false,false,0,false,false,false,false +faridj/check_ohm_temperatures,faridj,PowerShell,false,false,false,0,false,false,false,false +offdutypirate/Flex,offdutypirate,HTML,false,false,false,0,false,false,false,false +DarkDNA/gentoo-overlay,DarkDNA,Shell,true,false,false,1,false,true,false,false +CaseySoftware/bestbuy-php,CaseySoftware,PHP,false,false,false,0,false,false,false,false +BaseX/BaseX,BaseX,,false,false,false,0,false,false,false,false +xescpereta/kioow.standalone,xescpereta,JavaScript,false,false,false,0,false,false,false,false +xescpereta/kioow.libs,xescpereta,JavaScript,false,false,false,0,false,false,false,false +xescpereta/kioow.core,xescpereta,JavaScript,false,false,false,0,false,false,false,false +xescpereta/kioow.web,xescpereta,JavaScript,false,false,false,0,false,false,false,false +faridj/snmp_cisco_info,faridj,Shell,false,false,false,0,false,false,false,false +biemann/BadooChallenge,biemann,Java,false,false,false,0,false,false,false,false +biemann/GojimoChallenge,biemann,Java,false,false,false,0,false,false,false,false +biemann/SainsburysChallenge,biemann,Java,false,false,false,0,false,false,false,false +vintr/filmr,vintr,JavaScript,false,false,true,0,false,false,false,false +faridj/snmp_general_info,faridj,Shell,false,false,false,0,false,false,false,false +kubespray-ansibl8s/k8s-mysql,kubespray-ansibl8s,,false,false,false,0,false,false,false,false +proyecto-final-domotica/app-central,proyecto-final-domotica,JavaScript,false,false,false,0,false,false,false,false +eliAgirre/java-web-course,eliAgirre,Java,false,false,false,0,false,false,false,false +kaydo/exercises_octave,kaydo,,false,false,false,0,false,false,false,false +pauldibiase/dds_class,pauldibiase,C++,false,false,false,0,false,false,false,false +bconway/go-resteasy,bconway,Ruby,true,false,false,1,false,true,false,false +anspress/anspress,anspress,PHP,true,false,false,1,false,true,false,false +xiahou/SRBApp,xiahou,Objective-C,false,false,false,0,false,false,false,false +git.itgenesys/ActivityLog,git.itgenesys,,false,false,false,0,false,false,false,false +maratkalibek/rf-gitlab,maratkalibek,RobotFramework,true,false,false,1,false,true,false,false +hanhailong/CustomRatingBar,hanhailong,Objective-C,false,false,false,0,false,false,false,false +btkm/correct_fb,btkm,PHP,false,false,false,0,false,false,false,false +particle-swarm/PSO-Cpp,particle-swarm,C++,false,false,false,0,false,false,false,false +phunehehe/foomail,phunehehe,JavaScript,true,false,false,1,false,true,false,false +Nixxis/NMSInstallationScript,Nixxis,Shell,false,false,false,0,false,false,false,false +jrklasen/relMM,jrklasen,R,false,false,false,0,false,false,false,false +Mirros/shadowsocks-org,Mirros,JavaScript,false,false,false,0,false,false,false,false +xuv/git-visualization-for-designers,xuv,HTML,true,false,false,1,false,true,false,false +maegico/GDD2_Proj3,maegico,C++,false,false,false,0,false,false,false,false +minecraft-family/Blocks,minecraft-family,Lua,false,false,false,0,false,false,false,false +minecraft-family/Project,minecraft-family,,false,false,false,0,false,false,false,false +w3bwizart-be/angular2-quickstqrt,w3bwizart-be,,false,false,false,0,false,false,false,false +w3bwizart-be/workshop-Electronics-and-arduino,w3bwizart-be,C++,false,false,false,0,false,false,false,false +raduab/andrei-linux,raduab,Shell,false,false,false,0,false,false,false,false +hwestman/folk,hwestman,JavaScript,false,false,false,0,false,false,false,false +ignacioelola/nlp_experiments,ignacioelola,Python,false,false,false,0,false,false,false,false +hpdeifel/qrsvg,hpdeifel,Haskell,false,false,false,0,false,false,false,false +dvd0101/amaze-chemaze,dvd0101,C,true,false,false,2,true,true,false,false +jevogel/wordgame,jevogel,Python,false,false,false,0,false,false,false,false +vim-IDE/python-mode,vim-IDE,Python,false,false,false,0,false,false,false,false +golden-hammer/pocket-sync-app,golden-hammer,JavaScript,false,false,false,0,false,false,false,false +jcai3/fount-FE,jcai3,JavaScript,false,false,false,0,false,false,false,false +BartMassey/dominotar,BartMassey,Python,false,false,false,0,false,false,false,false +khanhptnk/ark-tweeboparser-python,khanhptnk,Python,false,false,false,0,false,false,false,false +adam.lukaitis/rdpwrap,adam.lukaitis,Pascal,false,false,false,0,false,false,false,false +pkchuyen/awesome-sysadmin-tools,pkchuyen,,false,false,false,0,false,false,false,false +ercom/codebeautifier,ercom,Shell,true,false,false,2,true,true,false,false +chrisledet/chip8.js,chrisledet,JavaScript,false,false,false,0,false,false,false,false +palmerama/photos-2015,palmerama,PHP,false,false,false,0,false,false,false,false +xxephis/mirror-display,xxephis,JavaScript,false,false,false,0,false,false,false,false +Wikstrom/IpC2AsAFoundation,Wikstrom,TeX,false,false,false,0,false,false,false,false +tangz8/321COM,tangz8,,false,false,false,0,false,false,false,false +andresin87/Akinator,andresin87,,false,false,false,0,false,false,false,false +aquarchitect/iTimer,aquarchitect,Swift,false,false,false,0,false,false,false,false +mrloyal1410/hosts,mrloyal1410,,false,false,false,0,false,false,false,false +dannywillems/ocaml-icalendar,dannywillems,OCaml,false,false,false,0,false,false,false,false +Betax/CarritoComprasJsp,Betax,JavaScript,false,false,false,0,false,false,false,false +MoOx/firefox-compact-theme,MoOx,CSS,false,false,false,0,false,false,false,false +zamuro57/FoundationPress,zamuro57,PHP,false,false,false,0,false,false,false,false +zamuro57/storefront,zamuro57,CSS,false,false,false,0,false,false,false,false +ArvenAnna/Recept,ArvenAnna,JavaScript,false,false,true,0,false,false,false,false +melvinthecoolguy/DMG_Arduino_UNO,melvinthecoolguy,C++,false,false,false,0,false,false,false,false +jbydeley/jbydeley.gitlab.io,jbydeley,CSS,false,false,false,0,false,false,false,false +naitso/dokuwiki-docimporter,naitso,PHP,false,false,false,0,false,false,false,false +jayathungek/Misc,jayathungek,Python,false,false,false,0,false,false,false,false +coriumalpha/Lotan,coriumalpha,C++,false,false,false,0,false,false,false,false +LinZap/node-pocket,LinZap,JavaScript,false,false,false,0,false,false,false,false +KCOSSE/AdvancedBashTechniques,KCOSSE,,false,false,false,0,false,false,false,false +trapeznikov-ap/gitlab-translations,trapeznikov-ap,,false,false,false,0,false,false,false,false +steakunderscore/dotfiles,steakunderscore,Shell,false,false,false,0,false,false,false,false +gab/_constructive-siteswap,gab,JavaScript,true,false,false,1,false,false,true,false +dcunhas/four-in-a-row,dcunhas,Python,false,false,false,0,false,false,false,false +FluffyPira/lizzy-custom-patch,FluffyPira,,false,false,false,0,false,false,false,false +Peuc/inua,Peuc,Shell,false,false,false,0,false,false,false,false +Poeticode/Skeleton,Poeticode,CSS,false,false,false,0,false,false,false,false +ak-stm32/stm32f4tach,ak-stm32,C,false,false,false,0,false,false,false,false +RuslanHasko/fr_petr_school,RuslanHasko,HTML,false,false,false,0,false,false,false,false +bibliolytic/pyBCI,bibliolytic,Python,false,false,false,0,false,false,false,false +s.mindorf/Download_Link,s.mindorf,Python,false,true,false,0,false,false,false,false +tjian-darzacq-lab/pySPIRAL-TAP,tjian-darzacq-lab,JupyterNotebook,false,false,false,0,false,false,false,false +robigalia/freestanding-musl-malloc,robigalia,C,false,false,false,0,false,false,false,false +wwitzel3/afteractions,wwitzel3,Python,false,false,false,0,false,false,false,false +vavrusa/luajit-bpf,vavrusa,Lua,false,false,false,0,false,false,false,false +curaduria1env/sisgac1,curaduria1env,PHP,false,false,false,0,false,false,false,false +Rubenvanheck/COMMGEN,Rubenvanheck,Matlab,false,false,false,0,false,false,false,false +htfy96/network_algo,htfy96,C++,true,false,false,1,false,true,false,false +Fonzo/ipsymcondenon,Fonzo,PHP,false,false,false,0,false,false,false,false +andresin87/typr,andresin87,,false,false,false,0,false,false,false,false +manogueira/plugin-moodle,manogueira,PHP,false,false,false,0,false,false,false,false +slarosa/monofiducialibot,slarosa,Python,false,false,false,0,false,false,false,false +jmalexan/markov-bot,jmalexan,Python,false,false,false,0,false,false,false,false +coates/yus-jsonapi,coates,JavaScript,false,false,false,0,false,false,false,false +hapro/nns,hapro,C++,false,false,false,0,false,false,false,false +jforge/brick-mqtt-proxy,jforge,Python,false,false,false,0,false,false,false,false +li-haobin/O2DESNet.Optimizer,li-haobin,C#,false,false,false,0,false,false,false,false +rawko3/iphone-dev,rawko3,C,false,false,false,0,false,false,false,false +pooya/pooya-golchian.github.io,pooya,JavaScript,false,false,false,0,false,false,false,false +rychly/droidsshd,rychly,Java,false,false,false,0,false,false,false,false +rychly/dropbear,rychly,C,false,false,false,0,false,false,false,false +silencesys/colour,silencesys,PHP,false,false,false,0,false,false,false,false +gregwinn/ystock,gregwinn,Ruby,true,false,false,1,false,true,false,false +marcoslisboa/sisdat,marcoslisboa,Java,false,false,false,0,false,false,false,false +ChicK00o/blueprint3d,ChicK00o,JavaScript,false,false,false,0,false,false,false,false +sittipong/sendifont,sittipong,,false,false,false,0,false,false,false,false +pro-rails-apps/voice-management,pro-rails-apps,Ruby,false,false,false,0,false,false,false,false +saqib.saud/Swift-AntiPatterns,saqib.saud,,false,false,false,0,false,false,false,false +fantaz/simple_shock_tube_calculator,fantaz,Python,false,false,false,0,false,false,false,false +Expachugator/POO-SIGB,Expachugator,Java,false,false,false,0,false,false,false,false +subintp1/ripple-rails,subintp1,Ruby,false,false,false,0,false,false,false,false +pendingchaos/WIP29,pendingchaos,C,false,false,false,0,false,false,false,false +valinet/cortana-search-using-default-browser,valinet,C#,false,false,false,0,false,false,false,false +morristech/Android-Platform-Samples,morristech,Java,false,false,false,0,false,false,false,false +benoitldr/cours-maths-blandrieu,benoitldr,TeX,true,false,false,1,false,true,false,false +sebdeckers/push-demo,sebdeckers,CSS,false,false,false,0,false,false,false,false +sims1253/TUHHGameING,sims1253,,false,false,false,0,false,false,false,false +vsichka/ua-en-translit.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +simogasp/imageDataset_Levallois,simogasp,Python,false,false,false,0,false,false,false,false +lispbot/cl-async-irc,lispbot,CommonLisp,false,false,false,0,false,false,false,false +reidcampolong/Matrixes,reidcampolong,Java,false,false,false,0,false,false,false,false +pleasantone/slack-bulkdelete,pleasantone,Python,false,false,false,0,false,false,false,false +Jastreb/ServerForcedDifficulty,Jastreb,C++,false,false,false,0,false,false,false,false +patricknelson/silverstripe-migrations,patricknelson,PHP,false,false,false,0,false,false,false,false +abdessamad.mouhoub/iot-challenge,abdessamad.mouhoub,JavaScript,false,false,false,0,false,false,false,false +tnir/centos-for-ci,tnir,,true,false,false,1,false,true,false,false +thelabnyc/django-oscar/django-oscar-bluelight,thelabnyc,Python,true,false,false,1,false,true,false,false +prantoran/Artificial-Intelligence,prantoran,Python,false,false,false,0,false,false,false,false +adaptsys/damicorepy,adaptsys,Python,false,false,false,0,false,false,false,false +michael.lill/foodcoop,michael.lill,TypeScript,true,false,false,1,false,true,false,false +sgtquezada/hdnotify2,sgtquezada,JavaScript,false,false,false,0,false,false,false,false +s2u/s2u-firewall,s2u,PHP,true,false,false,1,false,false,true,false +build-docker-images/odoo-docker-builder,build-docker-images,Shell,true,false,false,1,false,false,false,false +prasannavijayan/spendit,prasannavijayan,Ruby,false,false,false,0,false,false,false,false +sooon_mitch/SquareOneV2X,sooon_mitch,C++,false,false,false,0,false,false,false,false +cristoballama/odoo_property_managment,cristoballama,Python,false,false,false,0,false,false,false,false +piratas/wiki-piratas,piratas,,false,false,false,0,false,false,false,false +Test_123abc/Masonry,Test_123abc,Objective-C,false,false,false,0,false,false,false,false +Didou/APinkmage,Didou,JavaScript,false,false,false,0,false,false,false,false +exarh-team/skaro-qml,exarh-team,C++,true,false,false,1,false,false,true,false +emacs-stuff/dogelang-mode,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +muokid3/EasyLoyalty,muokid3,Java,false,false,false,0,false,false,false,false +anisg/mon-quotidien,anisg,JavaScript,false,false,false,0,false,false,false,false +smart-city-platform/resource-adaptor,smart-city-platform,Ruby,true,false,false,1,false,true,false,false +sqlobject/sqlobject.gitlab.io,sqlobject,HTML,true,false,false,1,false,false,true,false +rgarcia003/TP_Graphes_Ben_Khaled_Manel_Garcia_Remi,rgarcia003,C++,false,false,false,0,false,false,false,false +cyberChakal/CV,cyberChakal,HTML,false,false,false,0,false,false,false,false +GustavoARod/bank-demo,GustavoARod,Java,true,false,true,1,false,true,false,false +minzhang/gitci_test,minzhang,,true,false,false,3,true,true,false,false +sunsay/pulper,sunsay,JavaScript,false,false,false,0,false,false,false,false +Gluttton/munkres-cpp,Gluttton,C++,false,false,false,0,false,false,false,false +Gluttton/PslRK,Gluttton,C++,true,false,false,12,false,false,false,false +aristotelisch/revpar-jquery,aristotelisch,HTML,false,false,false,0,false,false,false,false +smart-city-platform/resources-catalog,smart-city-platform,Ruby,true,false,false,1,false,true,false,false +reyramos/io,reyramos,JavaScript,false,false,false,0,false,false,false,false +tapir/sfml,tapir,Go,false,false,false,0,false,false,false,false +vindarel/ptdg,vindarel,,false,false,false,0,false,false,false,false +SingularDevices/braille_bricks_3d,SingularDevices,,false,false,false,0,false,false,false,false +webdevan/dev.wamp,webdevan,C++,false,false,false,0,false,false,false,false +duncan-bayne/jmap.el,duncan-bayne,,false,false,false,0,false,false,false,false +duncan-bayne/toy-robot,duncan-bayne,Ruby,true,false,false,1,false,true,false,false +duncan-bayne/zlisp,duncan-bayne,Assembly,false,false,false,0,false,false,false,false +rubbs/dotfiles,rubbs,Vimscript,false,false,false,0,false,false,false,false +RodrigoBustamante/rodrigobustamante,RodrigoBustamante,HTML,false,false,false,0,false,false,false,false +reinimaurer1/coolvib,reinimaurer1,Python,false,true,false,0,false,false,false,false +sgomezd/AppPrototipoAngularJS,sgomezd,HTML,false,false,false,0,false,false,false,false +craigw/bootstrap-server,craigw,,false,false,false,0,false,false,false,false +unq-ing-laannn/qflix,unq-ing-laannn,Ruby,true,false,false,1,false,true,false,false +cczysz/osdc-docs,cczysz,R,false,false,false,0,false,false,false,false +ccmills/makeMKV-Autoripper,ccmills,Python,false,false,false,0,false,false,false,false +thejintoantony/Laravel-AdminLTE-CRUD,thejintoantony,HTML,false,false,false,0,false,false,false,false +wingsum93/android-ssl,wingsum93,Java,false,false,true,0,false,false,false,false +wujiarong/badminton-court-online-booking-system,wujiarong,LiveScript,false,false,false,0,false,false,false,false +bjorn_mq/NumBAT,bjorn_mq,Fortran,false,false,false,0,false,false,false,false +SouWilliams/docker-gitlab,SouWilliams,Shell,true,false,false,1,false,true,false,false +jhamfler/openvpn,jhamfler,,false,false,false,0,false,false,false,false +rldotai/cspy3,rldotai,Python,false,true,false,0,false,false,false,false +thejintoantony/Laravel-SBAdmin2-CRUD,thejintoantony,JavaScript,false,false,false,0,false,false,false,false +nginx-modules/nginx-rtmp-module,nginx-modules,C,false,false,false,0,false,false,false,false +nginx-modules/oauth2_proxy,nginx-modules,Go,false,false,false,0,false,false,false,false +src-run/augustus-exception-library,src-run,PHP,false,false,false,0,false,false,false,false +src-run/src-run-website,src-run,PHP,false,false,false,0,false,false,false,false +liverfan/oxiv,liverfan,CSS,false,false,false,0,false,false,false,false +mmtmohit/test,mmtmohit,,false,false,false,0,false,false,false,false +pallavagarwal07/pallavagarwal07.gitlab.io,pallavagarwal07,HTML,true,false,false,1,false,false,true,false +betseg/sbc,betseg,Shell,false,false,false,0,false,false,false,false +mobilman/docker-liferay-6.2,mobilman,,false,false,false,0,false,false,false,false +jan0sch/zsh-config,jan0sch,Shell,false,false,false,0,false,false,false,false +jan0sch/vim-config,jan0sch,Vimscript,false,false,false,0,false,false,false,false +jan0sch/sylpheed,jan0sch,C,false,false,false,0,false,false,false,false +jan0sch/YouTrackBot,jan0sch,Java,false,false,false,0,false,false,false,false +madoushi/sbt-sass,madoushi,Scala,true,false,false,1,false,true,false,false +nelsonEonltd/django_mongodb_practice,nelsonEonltd,Python,false,false,false,0,false,false,false,false +matthewsot/unpleasant-surprises,matthewsot,JavaScript,false,false,false,0,false,false,false,false +bchevalier/gitutils,bchevalier,Shell,true,false,false,2,false,true,true,false +jamad/temsim_ase,jamad,C++,false,false,false,0,false,false,false,false +redhawk25/Devoir1_Algorithmique,redhawk25,C++,false,false,false,0,false,false,false,false +Unreal4Plugins/VlcMedia,Unreal4Plugins,C++,false,false,false,0,false,false,false,false +ChiliPeps/Rost,ChiliPeps,PHP,false,false,false,0,false,false,false,false +jucato/modern-opengl,jucato,C++,false,false,false,0,false,false,false,false +natejacoby/sga1789,natejacoby,CSS,false,false,false,0,false,false,false,false +JaeSun/study,JaeSun,,false,false,false,0,false,false,false,false +toastengineer/INJECTION,toastengineer,Python,false,true,false,0,false,false,false,false +raveendrabikkina/helloworld,raveendrabikkina,Java,false,false,false,0,false,false,false,false +VirtualSky/CVWeb,VirtualSky,JavaScript,false,false,false,0,false,false,false,false +paolofalomo/wp-flickity,paolofalomo,PHP,false,false,false,0,false,false,false,false +cage1016/gae-flask,cage1016,Python,true,true,false,2,false,true,true,false +lh3/lianti,lh3,C,false,false,false,0,false,false,false,false +paramander/elm-writeup,paramander,Elm,false,false,false,0,false,false,false,false +ECCC_CMDN/vgrid,ECCC_CMDN,Fortran,false,false,false,0,false,false,false,false +pleasantone/intelurls,pleasantone,Python,false,false,false,0,false,false,false,false +mullerivan/cryptoEscrow,mullerivan,Python,false,false,false,0,false,false,false,false +Quezler/Equinox,Quezler,Java,false,false,false,0,false,false,false,false +brandonwsims/alexa-youtube-skill,brandonwsims,JavaScript,false,false,false,0,false,false,false,false +hoiwai930/rss,hoiwai930,Clojure,false,false,false,0,false,false,false,false +michaelardian-dev/soccerStadiumReservation,michaelardian-dev,JavaScript,false,false,false,0,false,false,false,false +spice/usbredir,spice,C,false,false,false,0,false,false,false,false +spice/spice-jhbuild,spice,,false,false,false,0,false,false,false,false +IanHG/cpp_course,IanHG,TeX,false,false,false,0,false,false,false,false +Snizer/PI-DEV-TUNISIAMALL3A6-JAVA,Snizer,Java,false,false,false,0,false,false,false,false +utopiatransformacionsocial/madriddespierto,utopiatransformacionsocial,Java,false,false,false,0,false,false,false,false +hkzlab-retrocomputing/AKAB_Reloaded,hkzlab-retrocomputing,C,false,false,false,0,false,false,false,false +mhelmy.ism/test,mhelmy.ism,,false,false,false,0,false,false,false,false +seanstrom/my-manjaro,seanstrom,Lua,false,false,false,0,false,false,false,false +RunningFromLions/CombatSyatem,RunningFromLions,C#,false,false,false,0,false,false,false,false +eternaleye/fmix,eternaleye,,false,false,false,0,false,false,false,false +jimakker/appkg,jimakker,JavaScript,true,false,false,1,false,true,false,false +balmor/quiz,balmor,JavaScript,false,false,false,0,false,false,false,false +CIAvash/ImgViewerPlus,CIAvash,JavaScript,false,false,false,0,false,false,false,false +CIAvash/Magrent,CIAvash,JavaScript,false,false,false,0,false,false,false,false +CIAvash/Originz,CIAvash,JavaScript,false,false,false,0,false,false,false,false +celebdor/design,celebdor,,false,false,false,0,false,false,false,false +pixlsus/Presentations,pixlsus,HTML,false,false,false,0,false,false,false,false +sociomantic-test/git-hub,sociomantic-test,Python,false,false,false,0,false,false,false,false +Snizer/PI-DEV-TUNISIAMALL3A6-MOBILE,Snizer,Java,false,false,false,0,false,false,false,false +gbenson/i8c,gbenson,Python,false,true,false,0,false,false,false,false +gbenson/libi8x,gbenson,C,false,false,false,0,false,false,false,false +chipbennett/cbnet-different-posts-per-page,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-multi-author-comment-notification,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-manage-plugins-donate-link,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-favicon,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-social-menu,chipbennett,CSS,false,false,false,0,false,false,false,false +chipbennett/cbnet-really-simple-captcha-comments,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-twitter-widget,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/cbnet-robots-meta,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/oenology,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/scripturizer,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/oenology-hooks,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/update-control,chipbennett,PHP,false,false,false,0,false,false,false,false +chipbennett/wp-bitly,chipbennett,PHP,false,false,false,0,false,false,false,false +sam-schneller/git-common-commands-suite,sam-schneller,JavaScript,false,false,false,0,false,false,false,false +thomasphillips3/server,thomasphillips3,JavaScript,false,false,false,0,false,false,false,false +adarshahd/IndianRailInfo,adarshahd,Java,false,false,false,0,false,false,false,false +DigitalMachinist/unity-parallelization-test,DigitalMachinist,C#,false,false,false,0,false,false,false,false +110king.pl/awesome-fem,110king.pl,,false,false,false,0,false,false,false,false +arma3_ww2_projects/WW2_Public/ww2-dev-tools,arma3_ww2_projects,C++,false,false,false,0,false,false,false,false +Tbsc/Techy,Tbsc,Java,false,false,false,0,false,false,false,false +jaml/shash,jaml,Rust,false,false,false,0,false,false,false,false +diascreative/winderful,diascreative,JavaScript,false,false,false,0,false,false,false,false +tomhastjarjanto/eslint-plugin-react-native,tomhastjarjanto,JavaScript,false,false,false,0,false,false,false,false +dcyar/almacensystem,dcyar,PHP,false,false,false,0,false,false,false,false +joren/deploylog,joren,Ruby,false,false,false,0,false,false,false,false +victorhck/git_chuleta_comandos,victorhck,JavaScript,true,false,false,1,false,true,false,false +arthurpham/QuantLib,arthurpham,C++,false,false,false,0,false,false,false,false +Mayo-QIN/grunt,Mayo-QIN,Go,false,false,false,0,false,false,false,false +pip182/ahk_scripts,pip182,AutoHotkey,false,false,false,0,false,false,false,false +mobilinepl/fedoraprovisioning,mobilinepl,Shell,true,false,false,1,false,true,false,false +iot/af820smartlight,iot,JavaScript,false,false,false,0,false,false,false,false +xlan09/2048Lan,xlan09,C++,false,false,false,0,false,false,false,false +aristath/recipes,aristath,PHP,false,false,false,0,false,false,false,false +rejuvyesh/cs231a-project,rejuvyesh,Python,false,false,false,0,false,false,false,false +Zeus_Fox/multifive-core,Zeus_Fox,C++,false,false,false,0,false,false,false,false +jordi.llobet/d3-circular-visualization,jordi.llobet,JavaScript,false,false,false,0,false,false,false,false +BertA_immalle/RPG,BertA_immalle,C#,false,false,false,0,false,false,false,false +xiaoxiaoyang/physpetools,xiaoxiaoyang,Python,false,false,false,0,false,false,false,false +PatrickBic/pedometer,PatrickBic,Java,false,false,false,0,false,false,false,false +Smileyt/vimtouch,Smileyt,HTML,false,false,false,0,false,false,false,false +alfwatt/LiveBundle,alfwatt,Objective-C,false,false,false,0,false,false,false,false +Brethzel/pelamap,Brethzel,JavaScript,false,false,false,0,false,false,false,false +aninternetpresence/docker-demos,aninternetpresence,Shell,false,false,false,0,false,false,false,false +jimador/Online_Adaptive_Multi-Object_Tracking,jimador,C++,false,false,false,0,false,false,false,false +nieper/immutable-maps,nieper,Scheme,false,false,false,0,false,false,false,false +go-labs/PHP-SMS,go-labs,PHP,false,false,false,0,false,false,false,false +Akhondali/hackahealth-train,Akhondali,Java,false,false,false,0,false,false,false,false +kakajika/Labbie,kakajika,TypeScript,false,false,false,0,false,false,false,false +jigal/t3adminer,jigal,PHP,false,false,false,0,false,false,false,false +tlvince/cordova-icon,tlvince,JavaScript,false,false,false,0,false,false,false,false +tlvince/dircolors-solarized,tlvince,,false,false,false,0,false,false,false,false +tlvince/freedombox-privoxy,tlvince,C,false,false,false,0,false,false,false,false +tlvince/uptimerobot,tlvince,JavaScript,false,false,false,0,false,false,false,false +eternalconstruct/analyst,eternalconstruct,Swift,true,false,false,1,true,false,false,false +sycom/sycom.gitlab.io,sycom,HTML,true,false,false,1,false,false,true,false +cubekrowd/cubeperms,cubekrowd,Java,false,false,false,0,false,false,false,false +Oliveiras/GameDesignWikiModel,Oliveiras,,false,false,false,0,false,false,false,false +cybcaoyibo/MetaRegex,cybcaoyibo,C++,false,false,false,0,false,false,false,false +JamesClonk/docker-pptpd,JamesClonk,Shell,false,false,false,0,false,false,false,false +courses-online/materialize,courses-online,HTML,true,false,false,1,false,true,false,false +Pendan/FortranComputation,Pendan,Fortran,false,false,false,0,false,false,false,false +mamunur93/b21_Mamunur_rahaman_126882_day5,mamunur93,PHP,false,false,false,0,false,false,false,false +q-quark/EduKit,q-quark,C++,false,false,false,0,false,false,false,false +atelier/faq-manager,atelier,JavaScript,false,false,false,0,false,false,false,false +skypunch/gea-api,skypunch,JavaScript,false,false,false,0,false,false,false,false +mouad.benjrinija/pfa-front,mouad.benjrinija,HTML,false,false,false,0,false,false,false,false +neoraider/ece,neoraider,C,false,false,false,0,false,false,false,false +s0da17/Luna,s0da17,Perl,false,false,false,0,false,false,false,false +HagaiAS/HelpFull,HagaiAS,JavaScript,false,false,false,0,false,false,false,false +Namjad/phpb20_nasim_126990_day5,Namjad,PHP,false,false,false,0,false,false,false,false +anhnt0212/to-do-list,anhnt0212,JavaScript,false,false,false,0,false,false,false,false +deenanath/IndianRail,deenanath,Java,false,false,false,0,false,false,false,false +md_shovon_khan/seip-25,md_shovon_khan,PHP,false,false,false,0,false,false,false,false +Nekloth/arduino-MYrgbLED,Nekloth,C++,false,false,false,0,false,false,false,false +vg/netsukuku,vg,PHP,false,false,false,0,false,false,false,false +alyda/dotfiles,alyda,Shell,false,false,false,0,false,false,false,false +lighty/framework,lighty,PHP,false,false,false,0,false,false,false,false +Boelensman1/SpaceS-DB-Frontend,Boelensman1,JavaScript,true,false,false,3,true,true,false,false +andre-filho/oo-ep2,andre-filho,Java,false,false,false,0,false,false,false,false +Baloch/dumpukt,Baloch,,false,false,false,0,false,false,false,false +redwan4re/web-apps-php-26,redwan4re,HTML,false,false,false,0,false,false,false,false +paulobrien/android_mcr_honor_4x,paulobrien,Shell,false,false,false,0,false,false,false,false +jogs/jwtgen,jogs,JavaScript,false,false,false,0,false,false,false,false +leith-john/django-story-builder,leith-john,Python,false,false,false,0,false,false,false,false +optimistic_mamun/project1,optimistic_mamun,PHP,false,false,false,0,false,false,false,false +su-v/inkscape-gtk3-theme-small,su-v,CSS,false,false,false,0,false,false,false,false +The-Nemesis-Project/hltetmo_kernel,The-Nemesis-Project,,false,false,false,0,false,false,false,false +uchoa/Topicos,uchoa,C++,false,false,false,0,false,false,false,false +perezoso/ReceteameExpress,perezoso,Java,false,false,false,0,false,false,false,false +Zatherz/minifs,Zatherz,MoonScript,true,false,false,1,false,false,true,false +dsm-iv-tr/gridlr,dsm-iv-tr,JavaScript,false,false,false,0,false,false,false,false +VZout/Vunreal,VZout,,false,false,false,0,false,false,false,false +pendingchaos/WIP31,pendingchaos,C,false,false,false,0,false,false,false,false +Trebgarta/love2d-project,Trebgarta,Lua,false,false,false,0,false,false,false,false +infmagic2047/minetest-lexip16,infmagic2047,Python,true,false,false,1,false,true,false,false +javimosch/arfr,javimosch,JavaScript,false,false,false,0,false,false,false,false +uniti-arc/Arc,uniti-arc,C,false,false,false,0,false,false,false,false +50574E/flanki,50574E,Rust,false,false,false,0,false,false,false,false +orobardet/3DPTools,orobardet,HTML,true,false,false,2,true,false,false,false +catpig/wiab_qt,catpig,Python,false,false,false,0,false,false,false,false +anvilresearch/oidc,anvilresearch,JavaScript,false,false,false,0,false,false,false,false +Rockyspade/greasyfork,Rockyspade,Ruby,false,false,false,0,false,false,false,false +Rockyspade/Violentmonkey,Rockyspade,JavaScript,false,false,false,0,false,false,false,false +Rockyspade/Windows-universal-samples,Rockyspade,JavaScript,false,false,false,0,false,false,false,false +potion/librechan,potion,PHP,false,false,false,0,false,false,false,false +partow/exprtk-extras,partow,C++,false,false,false,0,false,false,false,false +partow/fastgeo,partow,Pascal,false,false,false,0,false,false,false,false +partow/lexertk,partow,C++,false,false,false,0,false,false,false,false +partow/math-parser-benchmark-project,partow,C++,false,false,false,0,false,false,false,false +partow/tcpproxy-variations,partow,C++,false,false,false,0,false,false,false,false +SpaceTrucker/modular-spring-contexts,SpaceTrucker,Java,true,false,true,1,false,true,false,false +wwh447/test,wwh447,,false,false,false,0,false,false,false,false +dominguesle/ComunidadeAcademica,dominguesle,JavaScript,false,false,false,0,false,false,false,false +functio/functio,functio,Ruby,false,false,false,0,false,false,false,false +vinay-joshi/LogisticSolution,vinay-joshi,C#,false,false,false,0,false,false,false,false +Karhal/gerardbotV2,Karhal,JavaScript,false,false,false,0,false,false,false,false +vlc/vlc,vlc,C,false,false,false,0,false,false,false,false +brenddongontijo/SMI-UnB,brenddongontijo,Python,true,true,false,1,false,true,false,false +Moralejov/Sceys,Moralejov,C#,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-pgsql-ha,gitlab-cookbooks,Shell,false,false,false,0,false,false,false,false +pank/org-mode-gitlab-pages,pank,EmacsLisp,true,false,false,1,false,true,false,false +nymphalis/pidgin-doc,nymphalis,,false,false,false,0,false,false,false,false +kayiwa/dnflow,kayiwa,Python,false,true,false,0,false,false,false,false +ghostbar/RTSP-Streaming.js,ghostbar,JavaScript,false,false,false,0,false,false,false,false +victorleonardocorderoespinoza/TiendaMusical,victorleonardocorderoespinoza,C#,false,false,false,0,false,false,false,false +thelabnyc/django-oscar/django-oscar-wfrs,thelabnyc,Python,true,true,false,1,false,true,false,false +kevintcoughlin/podr-cli,kevintcoughlin,,false,false,false,0,false,false,false,false +gauraochaudhari/SmartBlindStick,gauraochaudhari,C,false,false,false,0,false,false,false,false +quadracoatl/quadracoatl,quadracoatl,Java,false,false,false,0,false,false,false,false +mygnu/maporg.net.notused,mygnu,Vue,false,false,false,0,false,false,false,false +bungker/WordpressIonic,bungker,JavaScript,false,false,false,0,false,false,false,false +seanclayton/neato,seanclayton,JavaScript,true,false,false,2,true,true,false,false +Teo-Mirror/Urho3D,Teo-Mirror,C++,false,false,false,0,false,false,false,false +jaypowerlsp/goproxy,jaypowerlsp,Go,false,false,false,0,false,false,false,false +smx.omar/SMX.OMAR,smx.omar,,false,false,false,0,false,false,false,false +Uzman/Artificial_Life_Programming_Assignment_C,Uzman,Java,false,false,false,0,false,false,false,false +gameunits-team/node-gameunits,gameunits-team,JavaScript,false,false,false,0,false,false,false,false +MadScientists/X11Forwarding,MadScientists,,false,false,false,0,false,false,false,false +vlsh/dvk,vlsh,Rust,false,false,false,0,false,false,false,false +esnaueb.app/aueb,esnaueb.app,Java,false,false,false,0,false,false,false,false +ustun/react-hurriyet-workshop,ustun,JavaScript,false,false,false,0,false,false,false,false +tsgkdt/sphinx-plantuml,tsgkdt,Python,true,true,false,1,true,false,false,false +harveydf/tutoriales-backup-dropbox,harveydf,Shell,false,false,false,0,false,false,false,false +smc/meera-inimai,smc,HTML,false,false,false,0,false,false,false,false +mc/foncy-nonce,mc,,false,false,false,0,false,false,false,false +drdaeman/firesync,drdaeman,Python,true,true,false,2,true,false,false,true +orsanawwad/FamiTravl,orsanawwad,Swift,false,false,false,0,false,false,false,false +cdsdevcorner/votable.js,cdsdevcorner,JavaScript,false,false,false,0,false,false,false,false +brianroadifer/mercury_feed,brianroadifer,Java,false,false,false,0,false,false,false,false +antonovga/rosfinextreme,antonovga,Ruby,false,false,false,0,false,false,false,false +TEMadsen/RainnieLabInVivo,TEMadsen,Matlab,false,false,false,0,false,false,false,false +EdgarOrtegaRamirez/pokeapi,EdgarOrtegaRamirez,Ruby,false,false,false,0,false,false,false,false +cloudmesh/fall2016,cloudmesh,TeX,false,false,false,0,false,false,false,false +Mylavarapu/family-tree,Mylavarapu,C++,false,false,false,0,false,false,false,false +baparici/gitlab-runner-cleanup-sockets,baparici,Shell,false,false,false,0,false,false,false,false +Rebaza/ProjecteRobert,Rebaza,,false,false,false,0,false,false,false,false +natuur/evaluacion-individual,natuur,,false,false,false,0,false,false,false,false +zartc/jwt-spring-security-demo,zartc,Java,false,false,true,0,false,false,false,false +burke-software/simple-asymmetric-python,burke-software,Python,true,true,false,1,false,true,false,false +niufang/Bj,niufang,JavaScript,false,false,false,0,false,false,false,false +aquarchitect/Listing,aquarchitect,Swift,false,false,false,0,false,false,false,false +OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false +yubaokang/Houzz_ViewTagAnim,yubaokang,Java,false,false,false,0,false,false,false,false +thebrave/docker-gitlab,thebrave,Shell,false,false,false,0,false,false,false,false +daily-five/daily-five-app,daily-five,CSS,false,false,false,0,false,false,false,false +welcheb/docker_slides2txt,welcheb,Shell,true,false,false,2,true,true,false,false +TSnake41/NetSerializer,TSnake41,C#,false,false,false,0,false,false,false,false +chattersearch/chatter-search-rt,chattersearch,JavaScript,false,false,false,0,false,false,false,false +dromi/dromi,dromi,Go,true,false,false,2,true,true,false,false +dromi/dromi.r,dromi,R,false,false,false,0,false,false,false,false +dromi/romy,dromi,R,false,false,false,0,false,false,false,false +dragonislands/web,dragonislands,HTML,true,false,false,1,false,false,true,false +coala/coala-bear-management,coala,Python,true,true,false,1,false,true,false,false +Ontology/WordpressSyncModule,Ontology,C#,false,false,false,0,false,false,false,false +jangorecki/macrobenchmark,jangorecki,R,true,false,false,2,false,true,true,false +hanchun/testgit,hanchun,Java,false,false,false,0,false,false,false,false +KoleDogCodes/staffmanager,KoleDogCodes,HTML,false,false,false,0,false,false,false,false +TSHSmith/graph.js,TSHSmith,JavaScript,false,false,false,0,false,false,false,false +pedrohjordao/rust-raytracer,pedrohjordao,Rust,false,false,false,0,false,false,false,false +jmabey/docker-sqitch,jmabey,Makefile,true,false,false,1,true,false,false,false +stevendobay/wex,stevendobay,Scala,false,false,false,0,false,false,false,false +pusspounder/MFCRecorder,pusspounder,Batchfile,false,false,false,0,false,false,false,false +daviddwk/TreySimulator3,daviddwk,Lua,false,false,false,0,false,false,false,false +m.abkenar/seq2vid,m.abkenar,Shell,false,false,false,0,false,false,false,false +docker-tor/tor-browser,docker-tor,Shell,true,false,false,1,true,false,false,false +benoitf/simple-project,benoitf,Java,false,false,true,0,false,false,false,false +iikem/extend-c,iikem,C,false,false,false,0,false,false,false,false +SunilKumar/ShareSkills,SunilKumar,HTML,false,false,false,0,false,false,false,false +BartMassey/mc-ham,BartMassey,Java,false,false,false,0,false,false,false,false +joaopizani/lambda1-hdl,joaopizani,Agda,false,false,false,0,false,false,false,false +gitmate/pacman,gitmate,,false,false,false,0,false,false,false,false +radfordneal/pqR,radfordneal,C,false,false,false,0,false,false,false,false +sniffy/omnomnom,sniffy,Shell,false,false,false,0,false,false,false,false +ishpeck/vomd,ishpeck,C,false,false,false,0,false,false,false,false +jensastrup/pyOutlook,jensastrup,Python,true,true,false,1,false,false,false,false +rossumpossum/cloudflare-ddns,rossumpossum,Go,false,false,false,0,false,false,false,false +Liang1Zhang/AndroidStaggeredGrid,Liang1Zhang,Java,false,false,false,0,false,false,false,false +vnsoftdev/sna,vnsoftdev,PHP,false,false,false,0,false,false,false,false +Luckyaman/hello-world,Luckyaman,Java,false,false,false,0,false,false,false,false +dbu/http-client-workshop,dbu,JavaScript,false,false,false,0,false,false,false,false +wldhx/yadisk-direct,wldhx,Python,false,false,false,0,false,false,false,false +skoolkid/rom,skoolkid,Python,false,false,false,0,false,false,false,false +alrazi/wiki_export,alrazi,Python,false,false,false,0,false,false,false,false +sycom/userScripts,sycom,JavaScript,true,false,false,1,false,false,true,false +matheushalves/Encosis2016-Jumpman,matheushalves,Swift,false,false,false,0,false,false,false,false +SOKP/device_samsung_hlte,SOKP,Makefile,false,false,false,0,false,false,false,false +sisprev-team/layouts-gpx,sisprev-team,,false,false,false,0,false,false,false,false +Cascaes/mesus,Cascaes,Java,false,false,true,0,false,false,false,false +NREL-DER-training/PythonDER,NREL-DER-training,Python,false,false,false,0,false,false,false,false +ad-si-2016-1/projeto2-grupo2,ad-si-2016-1,Java,false,false,false,0,false,false,false,false +ad-si-2016-1/projeto2-grupo3,ad-si-2016-1,,false,false,false,0,false,false,false,false +szyslate/escanorealty,szyslate,PHP,false,false,false,0,false,false,false,false +o9000/darken,o9000,CSS,false,false,false,0,false,false,false,false +maramau/PDFtoCSV,maramau,,false,false,false,0,false,false,false,false +mobiusor-codes/bing-wallpaper,mobiusor-codes,,false,false,false,0,false,false,false,false +hasansetiawan/yowez-mockup,hasansetiawan,JavaScript,false,false,false,0,false,false,false,false +devprodest/altium-library,devprodest,Batchfile,false,false,false,0,false,false,false,false +datenknoten/dokuwiki-ics,datenknoten,PHP,false,false,false,0,false,false,false,false +jazzlion/backend-template,jazzlion,JavaScript,false,false,false,0,false,false,false,false +josemariasoladuran/object-recognition-opencv-python,josemariasoladuran,Python,false,false,false,0,false,false,false,false +kaliko/mkdocs-cluster,kaliko,HTML,true,false,false,1,false,true,false,false +adrianord/pyHeadless-drone,adrianord,Python,false,false,false,0,false,false,false,false +jazzlion/frontend-template,jazzlion,JavaScript,false,false,false,0,false,false,false,false +dcnf/dcbase.org,dcnf,HTML,false,false,false,0,false,false,false,false +xinef/brainy-config-frontend,xinef,JavaScript,true,false,false,1,false,true,false,false +edenliang/oauthDemo,edenliang,HTML,false,false,false,0,false,false,false,false +Yuzmeister/Codify,Yuzmeister,,false,false,false,0,false,false,false,false +sedrubal/gitlabcicli,sedrubal,Python,false,true,false,0,false,false,false,false +Xiahl1990/LearningResource,Xiahl1990,,false,false,false,0,false,false,false,false +brightrymer/InfoMath,brightrymer,Java,false,false,false,0,false,false,false,false +Willborgium/rule-of-four,Willborgium,C#,false,false,false,0,false,false,false,false +coala/usability-testing,coala,,false,false,false,0,false,false,false,false +taes-unb/SELVA,taes-unb,TeX,false,false,false,0,false,false,false,false +lechuckcaptain/discount-ascii-warehouse,lechuckcaptain,Java,true,false,false,1,false,true,false,false +chubbssolutions/hnbot,chubbssolutions,Go,true,false,false,1,false,false,false,false +sandipmavani/laravelStartupProject,sandipmavani,PHP,false,false,false,0,false,false,false,false +StoneyJackson/corral,StoneyJackson,,false,false,false,0,false,false,false,false +projeto-bd/carga-pesada-pajeu,projeto-bd,Java,false,false,false,0,false,false,false,false +farmdrop/farmdrop,farmdrop,HTML,false,false,false,0,false,false,false,false +ken3/realverge,ken3,Ruby,false,false,false,0,false,false,false,false +improbible/improbible,improbible,JavaScript,true,false,false,1,false,false,false,false +dbush-pss/PSS.TextTemplating.StaticDataLibrary,dbush-pss,C#,false,false,false,0,false,false,false,false +SocialFlare/Javascript-Uploader,SocialFlare,HTML,false,false,false,0,false,false,false,false +xiao-fang/H5Practice,xiao-fang,HTML,false,false,false,0,false,false,false,false +lstella/python_enact,lstella,JupyterNotebook,false,false,false,0,false,false,false,false +vinnief/LyXandR,vinnief,TeX,false,false,false,0,false,false,false,false +Lions-Open-Source/ScriptCSW,Lions-Open-Source,C#,false,false,false,0,false,false,false,false +dknof/siv,dknof,C++,false,false,false,0,false,false,false,false +KlipKyle/mate-pkgbuilds,KlipKyle,Shell,false,false,false,0,false,false,false,false +osevg/python-flask-gunicorn,osevg,Python,false,true,false,0,false,false,false,false +vsichka/salted-md5.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +js-frameworks/lonely,js-frameworks,JavaScript,false,false,false,0,false,false,false,false +elygre/gitlab-test,elygre,,false,false,false,0,false,false,false,false +bkeys/DMUX-Master-Server,bkeys,HTML,false,false,false,0,false,false,false,false +happylittleelves/TSTO,happylittleelves,Python,false,false,false,0,false,false,false,false +italojdutra/teste,italojdutra,,false,false,false,0,false,false,false,false +proinchile/coipo,proinchile,CoffeeScript,false,false,false,0,false,false,false,false +joline/CursoArduino,joline,HTML,false,false,false,0,false,false,false,false +defhlt/game-of-life,defhlt,Kotlin,false,false,false,0,false,false,false,false +ehubnepal/educationhubnepal,ehubnepal,JavaScript,false,false,false,0,false,false,false,false +krmit/htsit-math-world,krmit,JavaScript,false,false,false,0,false,false,false,false +JosephThomasParker/gs2,JosephThomasParker,Fortran,false,false,false,0,false,false,false,false +xinef/brainy-config-backend-java,xinef,Java,true,false,false,1,false,true,false,false +dockdogs/dockdogs-affiliate-handbook,dockdogs,JavaScript,true,false,false,1,false,true,false,false +italojdutra/Robo_Arduino,italojdutra,,false,false,false,0,false,false,false,false +maurosantos/ureport-android,maurosantos,Java,false,false,false,0,false,false,false,false +jzelner/hotspotr,jzelner,CSS,true,false,false,2,true,false,true,false +dlozeve/dlozeve.gitlab.io,dlozeve,CSS,true,false,false,1,false,true,false,false +sluguer/Ficha1132199,sluguer,C#,false,false,false,0,false,false,false,false +CollectiveTyranny/irrBullet,CollectiveTyranny,RPC,false,false,false,0,false,false,false,false +osevg/s2i-minimal-notebook,osevg,Shell,false,false,false,0,false,false,false,false +zbtnot/lemp-playbook,zbtnot,,false,false,false,0,false,false,false,false +prototypal-adv-mentorship-june-2016/email,prototypal-adv-mentorship-june-2016,JavaScript,false,false,false,0,false,false,false,false +shahriarnowshad/AtomicProjectB20,shahriarnowshad,PHP,false,false,false,0,false,false,false,false +yameen15/CrudB21-create,yameen15,PHP,false,false,false,0,false,false,false,false +kniho/iphostnamebatch,kniho,Batchfile,false,false,false,0,false,false,false,false +kniho/Outlook-PST-to-Thunderbird-MBOX,kniho,Java,false,false,false,0,false,false,false,false +dlozeve/Satrap,dlozeve,C,false,false,false,0,false,false,false,false +VD-EDU/vd-iot-evalkit-sdk,VD-EDU,C,false,false,false,0,false,false,false,false +ananthurv/The-24-game-in-RUBY,ananthurv,Ruby,false,false,false,0,false,false,false,false +ananthurv/finite-automaton,ananthurv,JavaScript,true,false,false,1,false,true,false,false +kermit-js/kermit-bunyan,kermit-js,JavaScript,false,false,false,0,false,false,false,false +sphelps/scobre,sphelps,Scala,false,false,false,0,false,false,false,false +davidvalle/dotfiles,davidvalle,Shell,false,false,false,0,false,false,false,false +davidvalle/davidvalle.me,davidvalle,HTML,false,false,false,0,false,false,false,false +derlarsen/node-bunny-hole,derlarsen,JavaScript,false,false,false,0,false,false,false,false +kermit-js/kermit-bunny-hole,kermit-js,JavaScript,false,false,false,0,false,false,false,false +djadjo/sudokou,djadjo,Java,false,false,false,0,false,false,false,false +joe.wilcoxson/pymodbus,joe.wilcoxson,Python,false,true,false,0,false,false,false,false +yichao/Ours,yichao,Java,false,false,false,0,false,false,false,false +alamgircsejnu/AMS-Project-Laravel,alamgircsejnu,HTML,false,false,false,0,false,false,false,false +ijturton/foss4guk-workshop,ijturton,Scheme,false,false,false,0,false,false,false,false +kniho/test-server-port-from-listfile,kniho,Shell,false,false,false,0,false,false,false,false +bnc9/map-publish,bnc9,JavaScript,true,false,false,1,false,true,false,false +gooswa/MetadataTool,gooswa,Swift,false,false,false,0,false,false,false,false +mauriciobaeza/cfdi-reporte,mauriciobaeza,Python,false,true,false,0,false,false,false,false +LuizMaestri/alocar,LuizMaestri,Java,false,false,true,0,false,false,false,false +dacarnix/ripper,dacarnix,C#,false,false,false,0,false,false,false,false +sharadag/Roslyn,sharadag,C#,false,false,false,0,false,false,false,false +simo/_iron,simo,,false,false,false,0,false,false,false,false +jargnar/climate-portal,jargnar,HTML,false,false,false,0,false,false,false,false +freder/anm-feedback,freder,,false,false,false,0,false,false,false,false +keenanleman/sap1simulator,keenanleman,JavaScript,false,false,false,0,false,false,false,false +egordorichev/un,egordorichev,C++,false,false,false,0,false,false,false,false +skipjaq/hotspotmon,skipjaq,Java,false,false,false,0,false,false,false,false +fhcw_itsecurity/cyber_security_platform_backend,fhcw_itsecurity,C#,false,false,false,0,false,false,false,false +frankiezafe/iterations2016,frankiezafe,C++,false,false,false,0,false,false,false,false +b3rtu/arduino-cloud,b3rtu,C,false,false,false,0,false,false,false,false +seartipy/dotfiles,seartipy,Shell,false,false,false,0,false,false,false,false +roramirez/webrtc-glue,roramirez,JavaScript,false,false,false,0,false,false,false,false +alejorposa/whmcs-payu,alejorposa,PHP,false,false,false,0,false,false,false,false +azanar/converge,azanar,Ruby,false,false,false,0,false,false,false,false +sanjeetsuhag/PurdueIO,sanjeetsuhag,Objective-C,false,false,false,0,false,false,false,false +CollectiveTyranny/pluto,CollectiveTyranny,C++,false,false,false,0,false,false,false,false +nilghe/tdrnow-mobile,nilghe,Objective-C,false,false,false,0,false,false,false,false +broekema/SDP_Controller,broekema,C,false,false,false,0,false,false,false,false +r3lgar/dotfiles.awesome,r3lgar,Lua,false,false,false,0,false,false,false,false +tijmenennik/drisian.wallpapers,tijmenennik,,false,false,false,0,false,false,false,false +caven/finsum,caven,JavaScript,false,false,false,0,false,false,false,false +attila.farago.hu/EV3TreeVisualizer,attila.farago.hu,C#,true,false,false,3,true,true,true,false +lbennett/TanukiBot,lbennett,CoffeeScript,false,false,false,0,false,false,false,false +sofreeus/LFCS-CSG,sofreeus,Shell,false,false,false,0,false,false,false,false +chinodesuuu/nodejs-kotori,chinodesuuu,JavaScript,false,false,false,0,false,false,false,false +barfoo/SimpleIRCBot,barfoo,Python,false,false,false,0,false,false,false,false +TiagoDanin/Indicator-Reactions,TiagoDanin,Python,false,false,false,0,false,false,false,false +xdhanchun/test,xdhanchun,Java,false,false,false,0,false,false,false,false +sharez/git-fast-furious,sharez,HTML,false,false,false,0,false,false,false,false +s9perween/awesome-artificial-intelligence,s9perween,,false,false,false,0,false,false,false,false +pcwiek/FIXNet,pcwiek,C#,false,false,false,0,false,false,false,false +onnoowl/VElixir,onnoowl,Elixir,false,false,false,0,false,false,false,false +skyzohkey/vala-linter,skyzohkey,Vala,false,false,false,0,false,false,false,false +bgeo/RVAU-Web,bgeo,TypeScript,false,false,false,0,false,false,false,false +mehdi-zarrin/angular-bootstrap-persian-datepicker,mehdi-zarrin,JavaScript,false,false,false,0,false,false,false,false +ankit_aggarwal/DrawingFun,ankit_aggarwal,Java,false,false,false,0,false,false,false,false +nodine-lab/rsem-rna-seq-pipeline,nodine-lab,Shell,false,false,false,0,false,false,false,false +swaroopsm/sails-react-poc,swaroopsm,JavaScript,false,false,false,0,false,false,false,false +supinfobsctroyes_mjbd/3web-ticket-manager,supinfobsctroyes_mjbd,JavaScript,false,false,false,0,false,false,false,false +csfalcao/gitlabsite,csfalcao,JavaScript,true,false,false,1,false,false,true,false +dautovri/spark-py-notebooks,dautovri,JupyterNotebook,false,false,false,0,false,false,false,false +rran/village-analytics,rran,HTML,false,false,false,0,false,false,false,false +priyanka200893/Sa,priyanka200893,Java,false,false,false,0,false,false,false,false +miklabo/aamzviewer,miklabo,JavaScript,false,false,false,0,false,false,false,false +eamonnmurray/IntroToCplusplus,eamonnmurray,C++,false,false,false,0,false,false,false,false +heatray/innovation,heatray,CSS,true,false,false,1,false,false,true,false +qiuhuiting/design,qiuhuiting,,false,false,false,0,false,false,false,false +yagop/webpack-es6-react-boilerplate,yagop,JavaScript,false,false,false,0,false,false,false,false +aksr/gitusage,aksr,,false,false,false,0,false,false,false,false +Setaria/Fanursa,Setaria,,false,false,false,0,false,false,false,false +ArtOfCode/contactbook,ArtOfCode,Ruby,false,false,false,0,false,false,false,false +khairulcse76/KhairulIslam,khairulcse76,PHP,false,false,false,0,false,false,false,false +pawdro123456789/cloudsjee_2015_2016_marcin_gradzki,pawdro123456789,Java,false,false,false,0,false,false,false,false +I-NOZex/quiz,I-NOZex,PHP,false,false,false,0,false,false,false,false +arreisGit/rails-exercises-01,arreisGit,Ruby,false,false,false,0,false,false,false,false +munaf/salon-management-system-laravel,munaf,PHP,false,false,false,0,false,false,false,false +snowsquizy/RASP_PI_DHT22,snowsquizy,PHP,false,false,false,0,false,false,false,false +paulobrien/theme_fontreset,paulobrien,Java,false,false,false,0,false,false,false,false +abhinav.prince2012/droid,abhinav.prince2012,Java,false,false,false,0,false,false,false,false +gbraad/dotfiles,gbraad,Python,false,false,false,0,false,false,false,false +ItachiSan/Firefox-Edge,ItachiSan,CSS,false,false,false,0,false,false,false,false +Duduosun/bdd_cucumber_rest_java,Duduosun,Java,false,false,true,0,false,false,false,false +mauriciobaeza/factura-libre-ext,mauriciobaeza,Python,false,false,false,0,false,false,false,false +kaitoedter/chatty,kaitoedter,CSS,false,false,false,0,false,false,false,false +visariss/kendo,visariss,HTML,false,false,false,0,false,false,false,false +brunoflora/csgo,brunoflora,,false,false,false,0,false,false,false,false +crackslatinos/CLSExploits,crackslatinos,HTML,false,false,false,0,false,false,false,false +Mrowa96/fluid-shop,Mrowa96,PHP,false,false,false,0,false,false,false,false +Spartaner25/dory_scripts,Spartaner25,Shell,false,false,false,0,false,false,false,false +openbeelab/embedded-uploading,openbeelab,CoffeeScript,false,false,false,0,false,false,false,false +leesavide/pythonista-docs-full,leesavide,HTML,false,false,false,0,false,false,false,false +bit-shift/evdev-midi,bit-shift,Rust,false,false,false,0,false,false,false,false +Umeaboy/hadk-script,Umeaboy,Shell,false,false,false,0,false,false,false,false +JulioAnizio/HTML-CSS-Responsivo,JulioAnizio,CSS,false,false,false,0,false,false,false,false +micebishop97/golf-manager,micebishop97,JavaScript,false,false,false,0,false,false,false,false +IPMsim/Virtual-IPM,IPMsim,Python,true,true,false,1,false,false,true,false +95point2/common-utils,95point2,Java,false,false,true,0,false,false,false,false +daniel.the.capable.student/my-awesome-project-o,daniel.the.capable.student,C,false,false,false,0,false,false,false,false +grimmdev/node-android,grimmdev,,false,false,false,0,false,false,false,false +Unkn/Untitled-Ebolaze-Reboot,Unkn,C++,false,false,false,0,false,false,false,false +wilane/tensorflow,wilane,C++,false,false,false,0,false,false,false,false +barfoo/GramIRCBot,barfoo,Python,false,false,false,0,false,false,false,false +bgeo/rvau-api,bgeo,Python,false,false,false,0,false,false,false,false +sc15jh/storage-and-visualisation,sc15jh,C++,false,false,false,0,false,false,false,false +brett.timperman/ab-reference,brett.timperman,Shell,true,false,false,2,true,false,true,false +anthonynguyen/srch,anthonynguyen,Rust,false,false,false,0,false,false,false,false +TStepi/ocamlml,TStepi,OCaml,false,false,false,0,false,false,false,false +mattyhead/chess.js,mattyhead,JavaScript,false,false,false,0,false,false,false,false +mattyhead/php-election-scraper,mattyhead,PHP,false,false,false,0,false,false,false,false +Cdriko/eolienne_venturi,Cdriko,OpenSCAD,false,false,false,0,false,false,false,false +4geit/blog,4geit,JavaScript,true,false,false,2,false,true,true,false +samba/webapptitude,samba,Python,true,true,false,4,false,true,true,false +btlike/spider,btlike,Go,false,false,false,0,false,false,false,false +btlike/storage,btlike,Go,false,false,false,0,false,false,false,false +herpsonc/startJade,herpsonc,HTML,false,false,false,0,false,false,false,false +sayat2002/patched-iText,sayat2002,Java,false,false,true,0,false,false,false,false +bughunting/bughunting,bughunting,Ruby,false,false,false,0,false,false,false,false +pateel_hs/SafeTravel,pateel_hs,Java,false,false,false,0,false,false,false,false +Betax/Proyecto,Betax,,false,false,false,0,false,false,false,false +caslab_ucf/Public/ZikaVectorControl,caslab_ucf,Roff,false,false,false,0,false,false,false,false +sangrey/ConfigurationFiles,sangrey,TeX,false,false,false,0,false,false,false,false +snehaldangroshiya/ERP-V.0,snehaldangroshiya,Go,false,false,false,0,false,false,false,false +vendion/dotfiles,vendion,Perl,false,false,false,0,false,false,false,false +oytunistrator/html-minifier,oytunistrator,HTML,false,false,false,0,false,false,false,false +fernandaalencarm/hodor,fernandaalencarm,,false,false,false,0,false,false,false,false +Zinnurain/usinglaravelframework,Zinnurain,PHP,false,false,false,0,false,false,false,false +nkovacs/docker_test,nkovacs,,true,false,false,1,false,true,false,false +ahkscript/awesome-AutoHotkey,ahkscript,,false,false,false,0,false,false,false,false +rshipp/awesome-malware-analysis,rshipp,,false,false,false,0,false,false,false,false +feliperey4/Interfaz_Grafica_HDMI_EDUCIAA,feliperey4,C,false,false,false,0,false,false,false,false +SudarshanRaoP/Hive-UDFs,SudarshanRaoP,Java,false,false,true,0,false,false,false,false +SudarshanRaoP/shell_scripts,SudarshanRaoP,Shell,false,false,false,0,false,false,false,false +inem/pocket-video-downloader,inem,Ruby,false,false,false,0,false,false,false,false +gitlab-examples/lfs,gitlab-examples,,true,false,false,1,false,true,false,false +bentinata/dotfiles,bentinata,Shell,false,false,false,0,false,false,false,false +lukaf/Emacs-Elisp-Programming,lukaf,Makefile,false,false,false,0,false,false,false,false +jianjianxiaole/SimpleRegistryDB,jianjianxiaole,,false,false,false,0,false,false,false,false +barkerja/Hal,barkerja,Ruby,true,false,false,1,false,true,false,false +mahmoudibrahim/mshawer,mahmoudibrahim,Java,false,false,false,0,false,false,false,false +orionwt/demo_vote,orionwt,JavaScript,false,false,false,0,false,false,false,false +yanndegat/journald2graylog,yanndegat,Go,false,false,false,0,false,false,false,false +skokkk/CleverSpeak,skokkk,PHP,false,false,false,0,false,false,false,false +btlike/api,btlike,Go,false,false,false,0,false,false,false,false +tydahlwave/TestingGit2Go,tydahlwave,,false,false,false,0,false,false,false,false +AndrewBit4/PocketMine-lib,AndrewBit4,PHP,false,false,false,0,false,false,false,false +bahmutov/cypress-example-kitchensink,bahmutov,HTML,true,false,false,2,true,true,false,false +mutualewis/M-fundi,mutualewis,Java,false,false,false,0,false,false,false,false +joaoevangelista/fireplace,joaoevangelista,Ruby,true,false,false,3,false,true,false,false +frmdstryr/enaml-kivy,frmdstryr,Python,false,false,false,0,false,false,false,false +btlike/site,btlike,HTML,false,false,false,0,false,false,false,false +jgsuess/uml-1.4.2,jgsuess,Java,false,false,false,0,false,false,false,false +kingsleynuaa/kingsleynuaa.github.io,kingsleynuaa,CSS,false,false,false,0,false,false,false,false +phoenixTW/symantic.analyzer,phoenixTW,JavaScript,false,false,false,0,false,false,false,false +muhammadkholidb/munoz,muhammadkholidb,Java,false,false,true,0,false,false,false,false +postgres/postgres,postgres,C,false,false,false,0,false,false,false,false +lholden/WindowsPowerShell,lholden,PowerShell,false,false,false,0,false,false,false,false +smart-city-platform/sc-deploy,smart-city-platform,,false,false,false,0,false,false,false,false +adrian.io/wsdemo,adrian.io,JavaScript,true,false,true,1,false,true,false,false +wikiti-random-stuff/jquery-paginate,wikiti-random-stuff,HTML,true,false,false,1,false,true,false,false +simonbreiter/node-text-adventure-engine,simonbreiter,JavaScript,true,false,false,1,false,true,false,false +nathanschomer/ECEC355,nathanschomer,VHDL,false,false,false,0,false,false,false,false +e-HAL/site_1o_e-hal,e-HAL,CSS,false,false,false,0,false,false,false,false +b4oshany/epilog,b4oshany,JavaScript,false,false,false,0,false,false,false,false +bienvenu/Site_GT_maths-bio,bienvenu,TeX,false,false,false,0,false,false,false,false +memandip/mustache.js,memandip,JavaScript,false,false,false,0,false,false,false,false +unduthegun/stellaris-emblem-lab,unduthegun,CommonWorkflowLanguage,true,false,false,1,false,true,false,false +BenderRodrigez/NSpeech,BenderRodrigez,C#,false,false,false,0,false,false,false,false +tfSheol/Omegle-Client,tfSheol,Java,true,false,true,1,false,true,false,false +cassianod2/IATec,cassianod2,PHP,false,false,false,0,false,false,false,false +smeny_public/JPC,smeny_public,Java,false,false,true,0,false,false,false,false +smeny_public/RetroBox,smeny_public,Java,false,false,true,0,false,false,false,false +steve-perkins/fitnessjiffy-spark,steve-perkins,Java,false,false,false,0,false,false,false,false +chaifegn/SD_gogogog,chaifegn,Java,false,false,false,0,false,false,false,false +sims1253/Linespots,sims1253,TeX,false,false,false,0,false,false,false,false +ivxpingg/OA,ivxpingg,JavaScript,false,false,false,0,false,false,false,false +Bars93/client_server,Bars93,C,false,false,false,0,false,false,false,false +aquarchitect/aquarchitect.gitlab.io,aquarchitect,CSS,false,false,false,0,false,false,false,false +Reyhan.arani/Project3,Reyhan.arani,,false,false,false,0,false,false,false,false +toastengineer/iontrail,toastengineer,Python,false,false,false,0,false,false,false,false +mmjmasoud/Lab_exam_06,mmjmasoud,PHP,false,false,false,0,false,false,false,false +4geit/domains,4geit,JavaScript,true,false,false,1,false,false,true,false +rasmus/superscript,rasmus,Python,false,false,false,0,false,false,false,false +amiloradovsky/synth,amiloradovsky,C,false,false,false,0,false,false,false,false +starke/domains,starke,JavaScript,true,false,false,1,false,false,true,false +aguai/forth,aguai,Forth,false,false,false,0,false,false,false,false +aguai/punyforth,aguai,Assembly,false,false,false,0,false,false,false,false +victorhck/GNU-Linux_clock,victorhck,CSS,true,false,false,1,false,true,false,false +su-v/inx-modifycolor,su-v,Python,false,false,false,0,false,false,false,false +jokva/fst,jokva,C++,false,false,false,0,false,false,false,false +voj-tech/vtcompose,voj-tech,PHP,true,false,false,1,true,false,false,false +jjonethal/qemu_test,jjonethal,Batchfile,false,false,false,0,false,false,false,false +shinvdu/ShadowVPN,shinvdu,Shell,false,false,false,0,false,false,false,false +gbraad/openstack-client,gbraad,Shell,true,false,false,1,false,true,false,false +artem-sidorenko/vagrant-environments,artem-sidorenko,Ruby,false,false,false,0,false,false,false,false +coala/new-website-prototype,coala,HTML,false,false,false,0,false,false,false,false +andynosaur/project,andynosaur,,false,false,false,0,false,false,false,false +rbax81/DAT,rbax81,Python,false,true,false,0,false,false,false,false +alrazi/ini_xmiconverter,alrazi,Java,false,false,true,0,false,false,false,false +Rich-Harris/talk-to-my-agent,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +barnyp/web-starter-kit,barnyp,HTML,false,false,false,0,false,false,false,false +geockolibre/gl,geockolibre,Java,false,false,true,0,false,false,false,false +Rich-Harris/insomniac,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +xibalba/sotol,xibalba,PHP,false,false,false,0,false,false,false,false +btlike/crawl,btlike,Go,false,false,false,0,false,false,false,false +DeltaGlyph/NaSYtDL,DeltaGlyph,C#,false,false,false,0,false,false,false,false +NolanHartwick/SuperToadSimulation,NolanHartwick,Python,false,false,false,0,false,false,false,false +wustl-pctg-pub/llvm-cilk,wustl-pctg-pub,C++,false,false,false,0,false,false,false,false +wustl-pctg-pub/clang-cilk,wustl-pctg-pub,C++,false,false,false,0,false,false,false,false +maebrahimi/weather-app-example,maebrahimi,Swift,false,false,false,0,false,false,false,false +Efraim/guix,Efraim,Scheme,false,false,false,0,false,false,false,false +psyked/Promethee,psyked,JavaScript,false,false,false,0,false,false,false,false +jayendren/ansible-prometheus,jayendren,Shell,false,false,false,0,false,false,false,false +delian66/monitor4e,delian66,Go,false,false,false,0,false,false,false,false +sokratis12GR/ArmorPlus,sokratis12GR,Java,false,false,false,0,false,false,false,false +mfgames-writing/mfgames-writing-format-js,mfgames-writing,TypeScript,true,false,false,1,false,false,false,true +miguelsolorio/gulp-nunjucks-boilerplate,miguelsolorio,HTML,false,false,false,0,false,false,false,false +teeworlds/teeworlds,teeworlds,C++,false,false,false,0,false,false,false,false +Jenny-Ha/NUEVAS-EVAS,Jenny-Ha,CSS,false,false,false,0,false,false,false,false +osop/raspberryshake-press-releases,osop,,false,false,false,0,false,false,false,false +barfoo/GNUSocialIRCBot,barfoo,Python,false,false,false,0,false,false,false,false +wustl-pctg-pub/cilkplus-rts,wustl-pctg-pub,C++,false,false,false,0,false,false,false,false +allusis/vfsass,allusis,CSS,false,false,false,0,false,false,false,false +pmuontains/Odoo,pmuontains,,false,false,false,0,false,false,false,false +emergencyx/Server,emergencyx,JavaScript,false,false,false,0,false,false,false,false +hsafoundation-spb/HSAIL-Tools,hsafoundation-spb,C++,true,false,false,1,false,true,false,false +gutocarvalho/infraagil.io,gutocarvalho,,false,false,false,0,false,false,false,false +frntn/demo-charles,frntn,,false,false,false,0,false,false,false,false +vydria_vitalii/epam,vydria_vitalii,Java,false,false,false,0,false,false,false,false +mataluism/Unity_NeuroGame,mataluism,C#,false,false,false,0,false,false,false,false +xinef/brainy-web-frontend,xinef,JavaScript,true,false,false,2,true,false,false,false +istredd/ansible,istredd,Shell,false,false,false,0,false,false,false,false +craftsmen/java8-code-kata,craftsmen,Java,false,false,true,0,false,false,false,false +danog/telegram-bot-bash,danog,Shell,false,false,false,0,false,false,false,false +pwrtelegram/pwrtelegram,pwrtelegram,PHP,false,false,false,0,false,false,false,false +schwitzerm/scalajs-leaflet,schwitzerm,Scala,false,false,false,0,false,false,false,false +Baccata/InvestmentClubDDS,Baccata,JavaScript,false,false,false,0,false,false,false,false +richizo/ichizo.me,richizo,JavaScript,true,false,false,2,false,true,true,false +tulustobing/SelfManagement,tulustobing,JavaScript,false,false,true,0,false,false,false,false +Maerius/Install-NRPE-OP5-CentOS7,Maerius,Shell,false,false,false,0,false,false,false,false +voidThread/MOR,voidThread,C++,false,false,false,0,false,false,false,false +sell/vrview,sell,JavaScript,false,false,false,0,false,false,false,false +rbekker87/searchengine-php-es,rbekker87,PHP,false,false,false,0,false,false,false,false +agaric/drupal/taxonomy_redirect,agaric,PHP,false,false,false,0,false,false,false,false +gilmrjc/dots,gilmrjc,Vimscript,false,false,false,0,false,false,false,false +luichan/IntroToDjangoResource,luichan,Python,false,false,false,0,false,false,false,false +rh-kernel-stqe/python-libsan,rh-kernel-stqe,Python,true,false,false,1,false,true,false,false +netesy/CryptoNote,netesy,C,false,false,false,0,false,false,false,false +rjxjr55/qtPlasma,rjxjr55,C,false,false,false,0,false,false,false,false +aleksabobic/imgstat-server,aleksabobic,JavaScript,false,false,false,0,false,false,false,false +Nerdy-Murphy/Nerdy-Murphy.Gitlab.io,Nerdy-Murphy,JavaScript,false,false,false,0,false,false,false,false +davispuh/Lomoco,davispuh,C,false,false,false,0,false,false,false,false +btlike/database,btlike,Go,false,false,false,0,false,false,false,false +gbraad/byo-atomic-fedora,gbraad,Shell,true,false,false,1,false,true,false,false +gbraad/c9ide,gbraad,Shell,true,false,false,2,true,false,false,false +kermit-js/kermit-js.gitlab.io,kermit-js,HTML,true,false,false,1,false,true,false,false +roconnor/ETrackCleanUp,roconnor,JavaScript,false,false,false,0,false,false,false,false +afrihost/BaseCommandBundle,afrihost,PHP,false,false,false,0,false,false,false,false +h2b/SimGraf,h2b,Scala,false,false,false,0,false,false,false,false +4geit/artwork,4geit,,false,false,false,0,false,false,false,false +autoferrit/containers,autoferrit,Shell,false,false,false,0,false,false,false,false +Fitznet/FitzWorld_Template,Fitznet,C#,false,false,false,0,false,false,false,false +Fitznet/FitzLane,Fitznet,C#,false,false,false,0,false,false,false,false +DeusD/ReflFS,DeusD,Makefile,false,false,false,0,false,false,false,false +age-agh/age3,age-agh,Java,false,false,false,0,false,false,false,false +javaee-guardians/resources,javaee-guardians,,false,false,false,0,false,false,false,false +PoroCYon/robcyon-v3,PoroCYon,Haskell,false,false,false,0,false,false,false,false +kimsung2016gnu/Instagram,kimsung2016gnu,Java,false,false,false,0,false,false,false,false +Partanen/KTL_SpriteBatch,Partanen,C++,false,false,false,0,false,false,false,false +jakub.kolacz/projekt1,jakub.kolacz,,false,false,false,0,false,false,false,false +KosiakMD/mkh10,KosiakMD,CSS,false,false,false,0,false,false,false,false +wiresight/freeswitchrs,wiresight,Rust,false,false,false,0,false,false,false,false +gogonza95/Tarea-2-edd,gogonza95,Ruby,false,false,false,0,false,false,false,false +LinZap/redux-testApp,LinZap,JavaScript,false,false,false,0,false,false,false,false +xenetics/services-website,xenetics,Ruby,false,false,false,0,false,false,false,false +pzenger/sfuugle,pzenger,Python,false,false,false,0,false,false,false,false +sfwn/YDKJSTranslate,sfwn,JavaScript,false,false,false,0,false,false,false,false +iamphill/iamphill.com,iamphill,JavaScript,false,false,false,0,false,false,false,false +rafalph/material-design-lite,rafalph,HTML,false,false,false,0,false,false,false,false +thinkking/livepresence,thinkking,Python,false,false,false,0,false,false,false,false +dreilly/ProductsApp,dreilly,JavaScript,false,false,false,0,false,false,false,false +Buzzbyte/Hyphan-Roll,Buzzbyte,Python,false,false,false,0,false,false,false,false +AlexeyRudkovskiy/Shaurma-Project,AlexeyRudkovskiy,,false,false,false,0,false,false,false,false +berrange/pinholemiscellany,berrange,C,false,false,false,0,false,false,false,false +laescalera/twister-jekyll-theme,laescalera,HTML,true,false,false,2,false,true,true,false +lholden/old-racon,lholden,Ruby,false,false,false,0,false,false,false,false +marciohelenowebsite/Loc8r-linux-develop,marciohelenowebsite,JavaScript,false,false,false,0,false,false,false,false +sjedt/testjdbc,sjedt,Java,false,false,false,0,false,false,false,false +grafov/go-playground,grafov,EmacsLisp,false,false,false,0,false,false,false,false +grafov/kiwi,grafov,Go,false,false,false,0,false,false,false,false +grafov/m3u8,grafov,Go,false,false,false,0,false,false,false,false +grafov/plantuml2mysql,grafov,Python,false,false,false,0,false,false,false,false +grafov/shift-shift,grafov,Go,false,false,false,0,false,false,false,false +mgttlinger/dotfiles,mgttlinger,EmacsLisp,false,false,false,0,false,false,false,false +gpul/xea,gpul,Python,false,false,false,0,false,false,false,false +janslow/gitlab-swagger-client,janslow,TypeScript,true,false,false,4,true,true,false,true +sjedt/app,sjedt,Xojo,false,false,false,0,false,false,false,false +yce/RemoteTorrentClient-UWP,yce,C#,false,false,false,0,false,false,false,false +minubae/dictionary_practice_01,minubae,Python,false,false,false,0,false,false,false,false +ngthorg/graphql-demo,ngthorg,JavaScript,true,false,false,1,false,true,false,false +codeandsupply/abstractions-attendee-games-list,codeandsupply,,false,false,false,0,false,false,false,false +twoBirds/twobirds-cli,twoBirds,JavaScript,false,false,false,0,false,false,false,false +ThomasTJ/Tabler,ThomasTJ,JavaScript,false,false,false,0,false,false,false,false +adrian.io/ide,adrian.io,HTML,false,false,false,0,false,false,false,false +jfunez/docker-basics,jfunez,,false,false,false,0,false,false,false,false +ragou42/autocrafter,ragou42,Python,false,false,false,0,false,false,false,false +wh1t3rabbit/NovoAnimus,wh1t3rabbit,C#,false,false,false,0,false,false,false,false +syw2014/query-suggestion,syw2014,C++,false,false,false,0,false,false,false,false +hasura/generator-hasura-web,hasura,JavaScript,false,false,false,0,false,false,false,false +protoneutron/xbtbb3cker,protoneutron,PHP,false,false,false,0,false,false,false,false +NvH/nvh-data-machine,NvH,Java,false,false,true,0,false,false,false,false +muelli/vouchercalc,muelli,Java,false,false,false,0,false,false,false,false +twinter/kriegsspiel,twinter,Python,false,false,false,0,false,false,false,false +proteomics-bioinformatics-lnbio/galaxy_proteomics,proteomics-bioinformatics-lnbio,Python,false,false,false,0,false,false,false,false +carliv/carliv_image_kitchen,carliv,Shell,false,false,false,0,false,false,false,false +tybantarnusa/Stacy,tybantarnusa,Java,false,false,false,0,false,false,false,false +rjain/filecache,rjain,C,false,false,false,0,false,false,false,false +sharzad/preschool,sharzad,ASP,false,false,false,0,false,false,false,false +agaric/drupal/give,agaric,PHP,false,false,false,0,false,false,false,false +LinZap/redux-iqrobot,LinZap,JavaScript,false,false,false,0,false,false,false,false +sluguer/Crud,sluguer,C#,false,false,false,0,false,false,false,false +bogaert/alpine-lftp,bogaert,,true,false,false,1,true,false,false,false +py4on/url-shortener,py4on,Python,false,true,false,0,false,false,false,false +mod2/mod2par,mod2,VisualBasic,false,false,false,0,false,false,false,false +santoshvarma4u/ChefMonster-Copy,santoshvarma4u,HTML,false,false,false,0,false,false,false,false +oytunistrator/RTCMultiConnection,oytunistrator,JavaScript,false,false,false,0,false,false,false,false +acetylene/acetylene-parser,acetylene,Rust,false,false,false,0,false,false,false,false +Tojatta/Value-System,Tojatta,Java,false,false,false,0,false,false,false,false +huyax1990/micros-reg-center,huyax1990,Java,false,false,true,0,false,false,false,false +dehwow/warehouse,dehwow,Java,false,false,false,0,false,false,false,false +pug-stunt/chat-ui,pug-stunt,JavaScript,false,false,false,0,false,false,false,false +dev-notes/emacs-lisp-not-an-issue,dev-notes,,false,false,false,0,false,false,false,false +solstag/abstractology,solstag,Python,false,false,false,0,false,false,false,false +jpahullo/php-project,jpahullo,PHP,true,false,false,1,false,true,false,false +mcallan83/media,mcallan83,Shell,true,false,false,1,true,false,false,false +JayDev94/StayFit,JayDev94,Java,false,false,false,0,false,false,false,false +vladwalross/datasnok,vladwalross,Swift,false,false,false,0,false,false,false,false +4degrees/harmony,4degrees,Python,false,false,false,0,false,false,false,false +4degrees/riffle,4degrees,Python,false,false,false,0,false,false,false,false +4degrees/sawmill,4degrees,Python,false,false,false,0,false,false,false,false +ajclarke/neo-fighting-dojo,ajclarke,C++,true,false,false,2,true,true,false,false +idnine/oF-Arduino-Serial-Test,idnine,C++,false,false,false,0,false,false,false,false +s_ament/qastable,s_ament,Matlab,false,false,false,0,false,false,false,false +devgianlu/aria2app,devgianlu,Java,false,false,false,0,false,false,false,false +Mumba/node-config,Mumba,TypeScript,true,false,false,1,false,true,false,false +Roboe/TravelerNlpBackend,Roboe,Java,false,false,false,0,false,false,false,false +Mumba/node-config-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false +Mumba/node-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false +swimly/plyr,swimly,JavaScript,false,false,false,0,false,false,false,false +ArnaudPec/dotfiles,ArnaudPec,Vimscript,false,false,false,0,false,false,false,false +AnnaDodson/annadodson,AnnaDodson,CSS,true,false,false,1,false,true,false,false +void-hikari/void-fm,void-hikari,PHP,false,false,false,0,false,false,false,false +hunt9310/ekg,hunt9310,Liquid,false,false,false,0,false,false,false,false +victorhck/guia_openSUSE,victorhck,HTML,true,false,false,1,false,true,false,false +msg138/RetroEngine,msg138,Java,false,false,false,0,false,false,false,false +jjrobinson/CodingNotesAndReferences,jjrobinson,,false,false,false,0,false,false,false,false +pama205/AdminStore,pama205,PHP,false,false,false,0,false,false,false,false +emiljoswin/N-back,emiljoswin,Swift,false,false,false,0,false,false,false,false +xe/Carbon-Forum,xe,PHP,false,false,false,0,false,false,false,false +JedS6391/bencode-swift,JedS6391,Swift,false,false,false,0,false,false,false,false +maydinunlu/neptune-unity,maydinunlu,C#,false,false,false,0,false,false,false,false +shivang-pokar/default,shivang-pokar,CSS,false,false,false,0,false,false,false,false +LISTERINE/quickstack,LISTERINE,Python,false,false,false,0,false,false,false,false +snouf/tv_grab_fr_telerama,snouf,Perl,false,false,false,0,false,false,false,false +universe6/selfstudythai,universe6,JavaScript,true,false,false,1,false,true,false,false +harveydf-tutorials/django-celery-realtime,harveydf-tutorials,Python,false,false,false,0,false,false,false,false +wangyanchao/ijkF,wangyanchao,,false,false,false,0,false,false,false,false +roconnor/oas,roconnor,JavaScript,false,false,false,0,false,false,false,false +myeye.click/GlaucomaRepo,myeye.click,HTML,false,false,false,0,false,false,false,false +nkovacs/docker-builder,nkovacs,Shell,true,false,false,1,false,true,false,false +adeo-tech/tessera,adeo-tech,Elixir,false,false,false,0,false,false,false,false +JOSMICH/easy-grid,JOSMICH,CSS,false,false,false,0,false,false,false,false +DyCode/trace,DyCode,HTML,false,false,false,0,false,false,false,false +Alanuski/ProyectoFinanzas,Alanuski,Java,false,false,false,0,false,false,false,false +natejacoby/upwork-marina,natejacoby,,false,false,false,0,false,false,false,false +atelier-bek/selectric,atelier-bek,,false,false,false,0,false,false,false,false +EtienneOz/markdown-CheatSheet,EtienneOz,,false,false,false,0,false,false,false,false +wayanjimmy/wayanjimmy.gitlab.io,wayanjimmy,CSS,true,false,false,1,false,true,false,false +vitalcode/HMRCTest,vitalcode,Scala,false,false,false,0,false,false,false,false +RigaSanchos/Eckel,RigaSanchos,Java,false,false,false,0,false,false,false,false +lightningwolf/lightningwolf-sds,lightningwolf,Python,true,false,false,5,false,true,false,false +ryanlewis/eg-react,ryanlewis,JavaScript,false,false,false,0,false,false,false,false +certik/clang_plugin,certik,C++,false,false,false,0,false,false,false,false +hospinab/Codigos_NetBeans,hospinab,Java,false,false,false,0,false,false,false,false +israelbuitron/MySQLiteApp,israelbuitron,Java,false,false,false,0,false,false,false,false +gggauravgandhi/preeminence-website,gggauravgandhi,HTML,true,false,false,1,false,false,true,false +honma.shun/sample-app,honma.shun,Ruby,true,false,false,1,false,true,false,false +gitlab-examples/manual-actions,gitlab-examples,,true,false,false,1,false,true,false,false +WRepository/control-activity,WRepository,Java,false,false,true,0,false,false,false,false +potray/potray.github.io,potray,HTML,false,false,false,0,false,false,false,false +Littrell/Dot-Files,Littrell,Shell,false,false,false,0,false,false,false,false +phalcony/phalcony,phalcony,PHP,false,false,false,0,false,false,false,false +hqisog/2016721test,hqisog,Python,false,false,false,0,false,false,false,false +avadhoot/bootstrap,avadhoot,,false,false,false,0,false,false,false,false +alvin123rf/project1,alvin123rf,,false,false,false,0,false,false,false,false +thechriswalker/server-side-render-test,thechriswalker,JavaScript,false,false,false,0,false,false,false,false +drisso/presentations,drisso,HTML,false,false,false,0,false,false,false,false +Graphical_Projects/GL_Test,Graphical_Projects,C++,false,false,false,0,false,false,false,false +fjcamillo/aviato-hackzilla,fjcamillo,HTML,false,false,false,0,false,false,false,false +wurssb/NG-Tax,wurssb,Java,true,false,false,1,false,false,false,false +jassouline/linux_scripts,jassouline,Shell,false,false,false,0,false,false,false,false +nllgg/mailscripts,nllgg,Shell,false,false,false,0,false,false,false,false +sjedt/springmvc101,sjedt,Java,false,false,true,0,false,false,false,false +terramias/terramias-app,terramias,JavaScript,false,false,false,0,false,false,false,false +Starza4TW/Picturebook,Starza4TW,Java,false,false,false,0,false,false,false,false +thinkking/thinkking.gitlab.io,thinkking,CSS,true,false,false,1,false,true,false,false +cleto/accli,cleto,Python,true,false,false,1,false,true,false,false +Mirros/shadowsocks-go,Mirros,Go,false,false,false,0,false,false,false,false +Mirros/XX-net,Mirros,Python,false,false,false,0,false,false,false,false +silentx09/multi-player-game,silentx09,JavaScript,false,false,false,0,false,false,false,false +envieidoc/awesome-osx-command-line,envieidoc,,false,false,false,0,false,false,false,false +smimite/avabot2,smimite,Processing,false,false,false,0,false,false,false,false +davidwiggins3/vanilla-examples,davidwiggins3,Java,false,false,false,0,false,false,false,false +ChangjunZhao/helloworld_goweb,ChangjunZhao,Go,true,false,false,1,false,true,false,false +nichodges/sparklist,nichodges,,false,false,false,0,false,false,false,false +Harsukh/my_first_repo,Harsukh,JavaScript,false,false,false,0,false,false,false,false +Etern4l/bitcoinweblibraries,Etern4l,PHP,false,false,false,0,false,false,false,false +sluguer/EjerccioClaseTps132199,sluguer,C#,false,false,false,0,false,false,false,false +nasa-jsc-robotics/r2_moveit_config,nasa-jsc-robotics,CMake,true,false,false,3,true,false,true,false +nasa-jsc-robotics/r2_gazebo,nasa-jsc-robotics,Python,true,false,false,3,true,false,true,false +bafang/cordova_controller,bafang,HTML,false,false,false,0,false,false,false,false +xenetics/dictionary-reminder,xenetics,Ruby,false,false,false,0,false,false,false,false +sworker/myFirstProject,sworker,,false,false,false,0,false,false,false,false +incodenz/bot-detect,incodenz,JavaScript,false,false,false,0,false,false,false,false +saasdm/angular-saasdm,saasdm,JavaScript,true,false,false,1,false,true,false,false +randersonLemos/ransac_project,randersonLemos,C++,false,false,false,0,false,false,false,false +syamkhasan/math-generator-4-toddler,syamkhasan,Shell,false,false,false,0,false,false,false,false +cmarie/magic-mirror,cmarie,JavaScript,false,false,false,0,false,false,false,false +pbarjoueian/SSHCommander,pbarjoueian,Java,false,false,false,0,false,false,false,false +Pilatomic/g-commander,Pilatomic,C++,false,false,false,0,false,false,false,false +shootingcharlie8/AMANDA-AI-Artificial-Intelligence,shootingcharlie8,PHP,false,false,false,0,false,false,false,false +mlnkv/keeweb,mlnkv,JavaScript,false,false,false,0,false,false,false,false +mlnkv/ribbbon,mlnkv,PHP,false,false,false,0,false,false,false,false +jasperdenkers/lunatech-demo-ci-scala-sbt,jasperdenkers,Scala,true,false,false,1,false,true,false,false +jasperdenkers/lunatech-demo-cd-play-scala-heroku,jasperdenkers,Scala,true,false,false,2,false,true,true,false +trentr/_login-system,trentr,CSS,false,false,false,0,false,false,false,false +pvorb/spek-maven-sample,pvorb,Kotlin,false,false,true,0,false,false,false,false +padouppadoup/sparseNMF,padouppadoup,Python,false,false,false,0,false,false,false,false +Mumba/node-microservice-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false +jimt/wikilistorg,jimt,CSS,false,false,false,0,false,false,false,false +merlyescalona/ngsphy,merlyescalona,Python,false,false,false,0,false,false,false,false +wulingying/wulingying.gitlab.io,wulingying,JavaScript,true,false,false,1,false,false,true,false +sharkweek/nastran_pch_reader,sharkweek,Python,false,false,false,0,false,false,false,false +Core4/pas-de-nom,Core4,C#,false,false,false,0,false,false,false,false +mcfrith/cagescan-pipeline,mcfrith,Python,false,false,false,0,false,false,false,false +dungahk/ai-class,dungahk,Python,false,false,false,0,false,false,false,false +sabzi/ionicapps,sabzi,JavaScript,false,false,false,0,false,false,false,false +clearos/app-smtp,clearos,PHP,false,false,false,0,false,false,false,false +iladin/dotfiles,iladin,Shell,true,false,false,1,false,true,false,false +iandesj/strongroom,iandesj,Python,false,true,false,0,false,false,false,false +czubehead/csharp-aes,czubehead,C#,false,false,false,0,false,false,false,false +systent/dj_auth,systent,Python,true,true,false,1,false,true,false,false +cygnus.mobi/lampadas-desafio-em-circuitos,cygnus.mobi,Objective-C,false,false,false,0,false,false,false,false +direitosnarede/direitosnarede.org,direitosnarede,HTML,false,false,false,0,false,false,false,false +cmorell.a2/WebRTCClient,cmorell.a2,Objective-C,false,false,false,0,false,false,false,false +cygnus.mobi/fisica-in-maos,cygnus.mobi,Java,false,false,false,0,false,false,false,false +Gisilbek/rubygit,Gisilbek,Ruby,false,false,false,0,false,false,false,false +toastengineer/pyconsolegraphics,toastengineer,Python,false,false,false,0,false,false,false,false +plutthub/PluttHuB,plutthub,,false,false,false,0,false,false,false,false +FatherAbraham1/hurricane-book-case_SourceCode,FatherAbraham1,C++,false,false,false,0,false,false,false,false +nikhiljha/Gradebook,nikhiljha,Java,true,false,false,1,false,true,false,false +andrewbanchich/highlights-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +andrewbanchich/future-imperfect-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false +andrewbanchich/strata-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false +andrewbanchich/lens-jekyll-theme,andrewbanchich,CSS,true,false,false,1,false,false,true,false +fermata/4chan95,fermata,CSS,false,false,false,0,false,false,false,false +skirmess/zfsbup,skirmess,Perl,false,false,false,0,false,false,false,false +fiveop/ultimate-drill-cards,fiveop,TeX,true,false,false,1,true,false,false,false +whanata/wsd-lab,whanata,Java,false,false,false,0,false,false,false,false +whanata/ord-labs,whanata,PLSQL,false,false,false,0,false,false,false,false +davidwiggins3/visiting-route-planner,davidwiggins3,Java,true,false,false,1,false,true,false,false +cygnus.mobi/quizzfis-jogando-e-aprendendo,cygnus.mobi,Java,false,false,false,0,false,false,false,false +lexxyfox/TCSGE_H5,lexxyfox,LiveScript,true,false,false,1,false,true,false,false +wh1t3rabbit/DLLPluginExample,wh1t3rabbit,C#,false,false,false,0,false,false,false,false +brianstarke/go-beget,brianstarke,Go,true,false,false,1,false,true,false,false +protechig/upleap,protechig,PHP,false,false,false,0,false,false,false,false +ronanc/node-routes-template,ronanc,JavaScript,false,false,false,0,false,false,false,false +nckz/pizza,nckz,,false,false,false,0,false,false,false,false +niedersaechsische-talente-akademie/RaspberryPi,niedersaechsische-talente-akademie,Python,false,false,false,0,false,false,false,false +david_black/Infinity-snakes,david_black,JavaScript,false,false,false,0,false,false,false,false +david_black/Supertig,david_black,JavaScript,true,false,false,1,false,false,true,false +david_black/Zombie-killer,david_black,JavaScript,true,false,false,1,false,false,true,false +pendingchaos/Bots,pendingchaos,Python,false,false,false,0,false,false,false,false +gmarciani/pydes,gmarciani,TeX,false,false,false,0,false,false,false,false +gmarciani/gitignore,gmarciani,,false,false,false,0,false,false,false,false +gmarciani/templatex,gmarciani,TeX,false,false,false,0,false,false,false,false +hyper-expanse/open-source/semantic-release-gitlab-notifier,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +kbumsik/TinyEKF,kbumsik,C,false,false,false,0,false,false,false,false +gitlab-org/end-user-admin,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +vsailakshmi/ruby-rails-sample,vsailakshmi,Ruby,false,false,false,0,false,false,false,false +mrlawrence/scanner4svm,mrlawrence,Java,false,false,false,0,false,false,false,false +Hexeption/JDS,Hexeption,Java,false,false,false,0,false,false,false,false +sluguer/login,sluguer,C#,false,false,false,0,false,false,false,false +0072016/0072016--,0072016,Java,false,false,false,0,false,false,false,false +0072016/0072016-jssdk,0072016,JavaScript,false,false,true,0,false,false,false,false +0072016/0072016-platform-Aztec-devise,0072016,Ruby,false,false,false,0,false,false,false,false +mdfyc/test,mdfyc,,false,false,false,0,false,false,false,false +simogasp/trackingDataset_CapdigitalOutdoor,simogasp,,false,false,false,0,false,false,false,false +Sxtanna/McSquared,Sxtanna,Java,false,false,false,0,false,false,false,false +cgps/mash-potato,cgps,JavaScript,false,false,false,0,false,false,false,false +luisGumucio/sams,luisGumucio,JavaScript,false,false,false,0,false,false,false,false +fabiobreyer/GitCache,fabiobreyer,,false,false,false,0,false,false,false,false +markpundsack/velociraptor,markpundsack,HTML,true,false,false,3,true,true,false,true +osnysantos/Sublime-Text-Preferences,osnysantos,Shell,false,false,false,0,false,false,false,false +scottnesbitt/writing,scottnesbitt,HTML,false,false,false,0,false,false,false,false +scottnesbitt/presentations,scottnesbitt,CSS,false,false,false,0,false,false,false,false +mechaxl/lsystems,mechaxl,Rust,false,false,false,0,false,false,false,false +HarrisYer/MVC5-Bootstrap-TreeView-FileDownload,HarrisYer,C#,false,false,false,0,false,false,false,false +LiuGuiLinAndroid/OKL_Voice,LiuGuiLinAndroid,Java,false,false,false,0,false,false,false,false +tomgidden/roboxing-dokutwitterbootstrap,tomgidden,PHP,false,false,false,0,false,false,false,false +paulobrien/android_device_huawei_frd,paulobrien,Makefile,false,false,false,0,false,false,false,false +tfSheol/Gitlab-Builds-updater,tfSheol,Java,true,false,true,1,false,true,false,false +emergencyx/fms/bfemp,emergencyx,PHP,false,false,false,0,false,false,false,false +gbraad/windows-subsystem-for-linux-fedora,gbraad,Shell,false,false,false,0,false,false,false,false +blue-media/online-payments-php,blue-media,PHP,true,false,false,1,false,true,false,false +hellenRojas/Aplicacion_de_Transportes_TEC,hellenRojas,JavaScript,false,false,false,0,false,false,false,false +sebast331-android/agdq-2016,sebast331-android,Java,false,false,false,0,false,false,false,false +deckar01/xterm-display,deckar01,JavaScript,true,false,false,1,false,true,false,false +bigezhang/selfxyz,bigezhang,JavaScript,false,false,false,0,false,false,false,false +rjain/interview-questions,rjain,C,false,false,false,0,false,false,false,false +rjain/SystemProgramming,rjain,,false,false,false,0,false,false,false,false +tamasd/ab,tamasd,Go,false,false,false,0,false,false,false,false +weview/mozzart,weview,JavaScript,false,false,false,0,false,false,false,false +jenietor/biblioteca_final,jenietor,,false,false,false,0,false,false,false,false +baldvinth/gitlab-ci-csharp,baldvinth,,false,false,false,0,false,false,false,false +rubel85/codeigniter_blog,rubel85,PHP,false,false,false,0,false,false,false,false +looksty9/JTI2,looksty9,Lua,false,false,false,0,false,false,false,false +sixsamuraisoldier/neonCl-underconstruction,sixsamuraisoldier,Python,false,true,false,0,false,false,false,false +Rich-Harris/pathologist-demo,Rich-Harris,HTML,true,false,false,1,false,true,false,false +gbraad/blog,gbraad,Makefile,true,false,false,2,true,false,false,true +Haritiana/server-tools,Haritiana,Python,false,false,false,0,false,false,false,false +aldgagnon/betterWMU,aldgagnon,JavaScript,true,false,false,3,true,true,true,false +shiroisuna/MisProyectos,shiroisuna,,false,false,false,0,false,false,false,false +simplon-co/simplon-wiki,simplon-co,HTML,false,false,false,0,false,false,false,false +simplon-co/training,simplon-co,,false,false,false,0,false,false,false,false +haeqs/haeqs.gitlab.io,haeqs,HTML,true,false,false,1,false,true,false,false +varunkothamachu/seldon-server,varunkothamachu,Java,false,false,false,0,false,false,false,false +waylon531/merkle-rs,waylon531,Rust,true,false,false,3,true,true,true,false +dp-stats/dp-stats,dp-stats,Python,false,false,false,0,false,false,false,false +NoahMarconi/lambdaR,NoahMarconi,,false,false,false,0,false,false,false,false +alyyasser/vscode-CustomSnippets,alyyasser,,false,false,false,0,false,false,false,false +manishkumarmdb/bidi-routing-example,manishkumarmdb,Clojure,false,false,false,0,false,false,false,false +ammar.rajab1/HiL-WSN,ammar.rajab1,Assembly,false,false,false,0,false,false,false,false +hrmohseni/yii2-morrisjs-charts,hrmohseni,PHP,false,false,false,0,false,false,false,false +alyyasser/vscode-PolymerSnippets,alyyasser,TypeScript,false,false,false,0,false,false,false,false +nicktabick/adblock-rules,nicktabick,Shell,false,false,false,0,false,false,false,false +diegonobre/basic-symfony28-interview-test,diegonobre,PHP,false,false,false,0,false,false,false,false +vicidroiddev/pixy,vicidroiddev,C,false,false,false,0,false,false,false,false +AGausmann/samurai,AGausmann,Java,true,false,true,3,true,true,true,false +victorleonardocorderoespinoza/Tardanzas-2-0,victorleonardocorderoespinoza,JavaScript,false,false,false,0,false,false,false,false +danielandrews/OS161,danielandrews,C,false,false,false,0,false,false,false,false +wylhyz/DribbbleApp,wylhyz,Java,false,false,false,0,false,false,false,false +keicoon15/ci_test,keicoon15,,false,false,false,0,false,false,false,false +ibnukipa/pkodev,ibnukipa,HTML,false,false,false,0,false,false,false,false +kollo/TTConsole,kollo,C,false,false,false,0,false,false,false,false +milutinke97/Controlify,milutinke97,PHP,false,false,false,0,false,false,false,false +mishin1/Ftree-cpan,mishin1,Perl,false,false,false,0,false,false,false,false +ObservatorioUdeA/Documentacion,ObservatorioUdeA,Shell,false,false,false,0,false,false,false,false +wikiti-random-stuff/languagetool-ruby,wikiti-random-stuff,Ruby,false,false,false,0,false,false,false,false +my-application.bjoernbartels.earth/ZfcUser,my-application.bjoernbartels.earth,PHP,true,false,false,1,false,true,false,false +cdg/camzmq,cdg,Python,false,false,false,0,false,false,false,false +kaptoxic/aur-packages,kaptoxic,Shell,false,false,false,0,false,false,false,false +Haritiana/odoo_web_login,Haritiana,Python,false,false,false,0,false,false,false,false +UltraSoftDT/UltraCore,UltraSoftDT,PHP,false,false,false,0,false,false,false,false +iluminar/fluent-facebook,iluminar,PHP,false,false,false,0,false,false,false,false +barrel-db/erlang-lru,barrel-db,Erlang,true,false,false,1,false,true,false,false +buckybox/buckybox-api-ruby,buckybox,Ruby,true,false,false,1,false,true,false,false +shaon2016/search_implementation_in_sqlite_DB,shaon2016,Java,false,false,false,0,false,false,false,false +akrisiun/Folder,akrisiun,C#,true,false,false,1,true,false,false,false +vnphp/geocoder-bundle,vnphp,PHP,true,false,false,1,false,true,false,false +dentuzhik/dotfiles,dentuzhik,Shell,false,false,false,0,false,false,false,false +lobaro/lobaro-coap,lobaro,C,false,false,false,0,false,false,false,false +JuanPabloGargiulo/practicaSequelizeNode,JuanPabloGargiulo,JavaScript,false,false,false,0,false,false,false,false +scottjs/vcloudair,scottjs,Python,false,false,false,0,false,false,false,false +cdg/camweb,cdg,Python,false,false,false,0,false,false,false,false +damjes/mellivora,damjes,Prolog,false,false,false,0,false,false,false,false +sgj/platform,sgj,Python,true,true,false,1,false,true,false,false +marcheing/vimrc,marcheing,Vimscript,false,false,false,0,false,false,false,false +sumonsbgc/bitm-finalproejctb20,sumonsbgc,CSS,false,false,false,0,false,false,false,false +bothmena/Steg,bothmena,CSS,false,false,true,0,false,false,false,false +LinZap/redux-saga-routing,LinZap,JavaScript,false,false,false,0,false,false,false,false +cake-build/cake,cake-build,C#,false,false,false,0,false,false,false,false +wurssb/ngtax,wurssb,HTML,true,false,false,1,false,true,false,false +martynbristow/gabbi,martynbristow,Python,true,true,false,2,false,true,false,false +martynbristow/gabbi-examples,martynbristow,Python,false,true,false,0,false,false,false,false +martynbristow/machinelearningbootcamp,martynbristow,JupyterNotebook,false,false,false,0,false,false,false,false +martynbristow/UnicentaPOS,martynbristow,Java,false,false,false,0,false,false,false,false +martynbristow/UnicentaPython,martynbristow,HTML,false,false,false,0,false,false,false,false +Gabor-B/ForroLyrics,Gabor-B,Java,false,false,false,0,false,false,false,false +MaxNovik/NMVC,MaxNovik,JavaScript,false,false,false,0,false,false,false,false +inodaf/money-saver,inodaf,Java,false,false,false,0,false,false,false,false +mukundbhudia/nodechat,mukundbhudia,JavaScript,false,false,false,0,false,false,false,false +Connect4/connect4.lib,Connect4,Java,false,false,false,0,false,false,false,false +MisterCh0c1/fuzzdb,MisterCh0c1,Java,false,false,false,0,false,false,false,false +MisterCh0c1/Two-Tier-Enterprise-App-and-API-Development-with-Angular-and-Sails,MisterCh0c1,HTML,false,false,false,0,false,false,false,false +hyper-expanse/open-source/generator-python-lib,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +orvi2014/fireplace,orvi2014,JavaScript,false,false,false,0,false,false,false,false +retiolum/QRify.safariextension,retiolum,JavaScript,false,false,false,0,false,false,false,false +digidoci/web/digidoki-intro,digidoci,JavaScript,false,false,false,0,false,false,false,false +meixnertobias/funwitheb,meixnertobias,PHP,false,false,false,0,false,false,false,false +HomeAutomationSystem/server,HomeAutomationSystem,HTML,false,false,false,0,false,false,false,false +nacridan/Nacridan,nacridan,PHP,false,false,false,0,false,false,false,false +chupin/haskell-raytracer,chupin,Haskell,false,false,false,0,false,false,false,false +idlemoor/idlemoor.gitlab.io,idlemoor,HTML,true,false,false,2,false,true,true,false +eco-film-festival/ecof-developer-2016,eco-film-festival,JavaScript,false,false,false,0,false,false,false,false +nigori/nigori-cogs,nigori,Python,false,false,false,0,false,false,false,false +LogicStuff/enigma,LogicStuff,C++,false,false,false,0,false,false,false,false +Thunis/mailmaid,Thunis,PHP,false,false,false,0,false,false,false,false +nerdymishka/choco-bear,nerdymishka,PowerShell,false,false,false,0,false,false,false,false +oleg.dev.m/loopback-connector-arangodb,oleg.dev.m,CoffeeScript,false,false,false,0,false,false,false,false +nicolaslino1/PyMvnReleaser,nicolaslino1,Python,false,true,false,0,false,false,false,false +yavascript/battlebate,yavascript,JavaScript,false,false,false,0,false,false,false,false +locomotivecms-enterprise-public/ruby-api-client,locomotivecms-enterprise-public,Ruby,false,false,false,0,false,false,false,false +commonslabgr/reactiongame,commonslabgr,C++,false,false,false,0,false,false,false,false +px.alexandre/SCPT,px.alexandre,Java,false,false,false,0,false,false,false,false +clacke/gists,clacke,Nix,false,false,false,0,false,false,false,false +Mednonogov/ZX0,Mednonogov,C++,false,false,false,0,false,false,false,false +alejandrogervasio/hibernate,alejandrogervasio,Java,false,false,true,0,false,false,false,false +borisjoffe/dotfiles,borisjoffe,Shell,false,false,false,0,false,false,false,false +borisjoffe/gvoice-dnd,borisjoffe,JavaScript,false,false,false,0,false,false,false,false +borisjoffe/scripts,borisjoffe,Shell,false,false,false,0,false,false,false,false +borisjoffe/squats,borisjoffe,JavaScript,false,false,false,0,false,false,false,false +floresf/ucb-spark-bigdata,floresf,,false,false,false,0,false,false,false,false +baldvinth/eve.singlesignon,baldvinth,C#,true,false,false,2,true,false,false,false +github-cloud-corp/django-rest-framework,github-cloud-corp,Python,false,true,false,0,false,false,false,false +JustinAtChina/u3dproject,JustinAtChina,C#,false,false,false,0,false,false,false,false +vectorci/gitsome,vectorci,Python,false,false,false,0,false,false,false,false +module17/tvscraper,module17,PHP,false,false,false,0,false,false,false,false +module17/currentweather,module17,PHP,false,false,false,0,false,false,false,false +mskbadhan/bitm-final-project-by-team-fireBoys-php-25,mskbadhan,JavaScript,false,false,false,0,false,false,false,false +ensalty/Innovation,ensalty,Perl,false,false,false,0,false,false,false,false +utur2016/website,utur2016,CSS,false,false,false,0,false,false,false,false +billyprice1/rivr-search,billyprice1,PHP,false,false,false,0,false,false,false,false +Thaodan/linux-pf,Thaodan,Shell,false,false,false,0,false,false,false,false +17173/generator-java-webapp,17173,JavaScript,false,false,false,0,false,false,false,false +ggkitsas/qemu_stm32,ggkitsas,C,false,false,false,0,false,false,false,false +gepds/poo,gepds,Java,false,false,false,0,false,false,false,false +Adam-/jircd,Adam-,Java,true,false,true,1,false,true,false,false +thienn/interview-questions,thienn,,false,false,false,0,false,false,false,false +EXL/BezierClock,EXL,QML,false,false,false,0,false,false,false,false +appMobile/retos,appMobile,Java,false,false,false,0,false,false,false,false +scrambledrk/gradle-haxe-plugin,scrambledrk,Java,false,false,false,0,false,false,false,false +scrambledrk/dotpoint,scrambledrk,Haxe,false,false,false,0,false,false,false,false +puppet-br/apostila-puppet,puppet-br,HTML,false,false,false,0,false,false,false,false +puppet-br/pcp-controlrepo,puppet-br,Puppet,false,false,false,0,false,false,false,false +puppet-br/puppet-br.org,puppet-br,HTML,false,false,false,0,false,false,false,false +bothmena/matejer,bothmena,HTML,false,false,false,0,false,false,false,false +scrambledrk/huntsman,scrambledrk,Haxe,true,false,false,1,true,false,false,false +bothmena/steg-api,bothmena,PHP,false,false,false,0,false,false,false,false +elsypinzonv/tamizado,elsypinzonv,Java,false,false,false,0,false,false,false,false +davabe/aged,davabe,Ruby,true,false,false,5,true,true,true,true +HakaseShounen/hidden-tear,HakaseShounen,C#,false,false,false,0,false,false,false,false +HakaseShounen/skyjack,HakaseShounen,JavaScript,false,false,false,0,false,false,false,false +frc1094/2016-robot-project,frc1094,LabVIEW,false,false,false,0,false,false,false,false +hunt9310/deeley,hunt9310,PHP,false,false,false,0,false,false,false,false +XRevan86/hptoad,XRevan86,Python,false,true,false,0,false,false,false,false +adriancarayol/django-angular2,adriancarayol,Python,false,false,false,0,false,false,false,false +hootis8/vimrc,hootis8,Shell,false,false,false,0,false,false,false,false +anvu03/stock-seer,anvu03,JavaScript,false,false,false,0,false,false,false,false +facil/etat-du-logiciel-libre-2016-document,facil,TeX,false,false,false,0,false,false,false,false +Hexexpeck/Splat-AIO,Hexexpeck,C#,false,false,false,0,false,false,false,false +certik/petaca,certik,Fortran,false,false,false,0,false,false,false,false +neucode/template-react,neucode,TypeScript,false,false,false,0,false,false,false,false +Sxtanna/Groups,Sxtanna,Java,false,false,false,0,false,false,false,false +chgans/le-gerber-viewer-tmp,chgans,C++,false,false,false,0,false,false,false,false +nd-cse-30321-fa16/comparch-student,nd-cse-30321-fa16,C,false,false,false,0,false,false,false,false +jangorecki/pkg-openCRAN,jangorecki,R,true,false,false,2,false,true,true,false +martin.christen/pyRT,martin.christen,JupyterNotebook,false,false,false,0,false,false,false,false +tmellemseter/incus,tmellemseter,C,false,false,false,0,false,false,false,false +OOFGA-2016-1/EP0,OOFGA-2016-1,Makefile,false,false,false,0,false,false,false,false +vitamindck/Rocket.Chat.Electron,vitamindck,HTML,false,false,false,0,false,false,false,false +kerorore/DeployPlatform,kerorore,Python,false,false,false,0,false,false,false,false +admin-github-cloud/pattern,admin-github-cloud,Python,false,false,false,0,false,false,false,false +github-cloud-corporation/gvr-unity-sdk,github-cloud-corporation,C#,false,false,false,0,false,false,false,false +github-cloud-corporation/pattern,github-cloud-corporation,Python,false,false,false,0,false,false,false,false +github-cloud-corporation/Reddit-Image-Saver,github-cloud-corporation,Ruby,false,false,false,0,false,false,false,false +github-cloud-corporation/ruby-warrior,github-cloud-corporation,Ruby,false,false,false,0,false,false,false,false +github-cloud-corporation/thredded,github-cloud-corporation,Ruby,false,false,false,0,false,false,false,false +github-cloud-corporation/unetbootin,github-cloud-corporation,C++,false,false,false,0,false,false,false,false +github-cloud-corporation/vowpal_wabbit,github-cloud-corporation,C++,false,false,false,0,false,false,false,false +utur2016/content,utur2016,R,false,false,false,0,false,false,false,false +dewetblomerus/linux-laptop,dewetblomerus,Shell,false,false,false,0,false,false,false,false +mopemope/meghanada-emacs,mopemope,EmacsLisp,false,false,false,0,false,false,false,false +mopemope/meghanada-server,mopemope,Java,false,false,false,0,false,false,false,false +PrajjwalDimri/cs-programs,PrajjwalDimri,C#,false,false,false,0,false,false,false,false +sugimoto.miraie/abc,sugimoto.miraie,Ruby,false,false,false,0,false,false,false,false +lcPalacios/disenio2016,lcPalacios,HTML,false,false,false,0,false,false,false,false +vnphp/fragment-bundle,vnphp,PHP,true,false,false,2,false,true,true,false +festovalros/examine_odoo8_accounting,festovalros,Python,false,false,false,0,false,false,false,false +RenovoSolutions/ngrx-store-demo,RenovoSolutions,TypeScript,false,false,false,0,false,false,false,false +LittleStrongMind/dickbott,LittleStrongMind,JavaScript,false,false,false,0,false,false,false,false +antiero/dotStudio,antiero,Python,false,false,false,0,false,false,false,false +sukalde/sukalde.gitlab.io,sukalde,HTML,true,false,false,1,false,true,false,false +unhangout/plenary-server,unhangout,JavaScript,false,false,false,0,false,false,false,false +sdcofer70/enyo-doom,sdcofer70,C++,false,false,false,0,false,false,false,false +ttd/ttd.gitlab.io,ttd,HTML,true,false,false,1,false,false,true,false +bicycle-companion/hardware,bicycle-companion,,false,false,false,0,false,false,false,false +barraponto/barraponto.gitlab.io,barraponto,CSS,true,false,false,1,false,false,true,false +abre/django-superuser,abre,Python,false,false,false,0,false,false,false,false +mallgroup/mpapi-client,mallgroup,PHP,true,false,false,1,false,false,false,false +claroline/claroline-docker,claroline,Shell,false,false,false,0,false,false,false,false +carloquilala/fluxbb,carloquilala,PHP,false,false,false,0,false,false,false,false +Loki/_loki_s-project,Loki,Java,false,false,false,0,false,false,false,false +teknoraver/bottargadata,teknoraver,,false,false,false,0,false,false,false,false +johanlindberg/irvato-crm,johanlindberg,JavaScript,false,false,false,0,false,false,false,false +guiguid/ESPEasy,guiguid,C++,false,false,false,0,false,false,false,false +jeffdn/canteen-impl,jeffdn,Rust,false,false,false,0,false,false,false,false +jeffdn/rust-stuff,jeffdn,Rust,false,false,false,0,false,false,false,false +Ekkehardt/data-sharing-paper,Ekkehardt,TeX,false,false,false,0,false,false,false,false +dusandevic/hypothesis,dusandevic,PHP,false,false,false,0,false,false,false,false +hanigamal/rssowl,hanigamal,Java,false,false,false,0,false,false,false,false +hanigamal/zeus,hanigamal,C,false,false,false,0,false,false,false,false +sommd/multimedia-majorwork,sommd,CSS,true,false,false,1,false,false,true,false +agaric/drupal/agaric-starter,agaric,PHP,false,false,false,0,false,false,false,false +Copper-Coders/Phantom,Copper-Coders,Ruby,false,false,false,0,false,false,false,false +aslanbaris/codeforces,aslanbaris,Python,false,false,false,0,false,false,false,false +Plague_Doctor/plague-nvim,Plague_Doctor,Vimscript,true,false,false,1,false,true,false,false +AlexMcG/LevelViz,AlexMcG,C++,false,false,false,0,false,false,false,false +ibnukipa/laravel-monta,ibnukipa,HTML,false,false,false,0,false,false,false,false +tomlinsonk/flock,tomlinsonk,Python,false,false,false,0,false,false,false,false +tomlinsonk/gravity,tomlinsonk,Java,false,false,false,0,false,false,false,false +tomlinsonk/mandelbrot,tomlinsonk,Java,false,false,false,0,false,false,false,false +lschw/work_grasp-experiment,lschw,C++,false,false,false,0,false,false,false,false +znixian/git-gitlab-codeanywhere,znixian,,false,false,false,0,false,false,false,false +coala/documentation-old,coala,Python,false,false,false,0,false,false,false,false +hanigamal/security-thoughts,hanigamal,,false,false,false,0,false,false,false,false +villagedefrance/OpenCart-Overclocked,villagedefrance,PHP,true,false,false,1,false,true,false,false +AdamSimpson/cuda_mpi_benchmark,AdamSimpson,C++,true,false,false,1,false,true,false,false +f3rdy/scripts,f3rdy,Shell,false,false,false,0,false,false,false,false +oliroddpython/twitterBot,oliroddpython,Python,false,false,false,0,false,false,false,false +bahmutov/batched-semantic-release,bahmutov,,true,false,false,2,false,true,true,false +siasar-project/servers,siasar-project,Shell,false,false,false,0,false,false,false,false +mbergdal/IGR1608,mbergdal,Java,false,false,false,0,false,false,false,false +ruan_kaylo/blog_RubyOnRails,ruan_kaylo,Ruby,false,false,false,0,false,false,false,false +dimitrieh/dotfiles,dimitrieh,Shell,false,false,false,0,false,false,false,false +thelsdj/mutuals-cool,thelsdj,HTML,false,false,false,0,false,false,false,false +e0/koalixcrm,e0,Python,false,true,false,0,false,false,false,false +e0/luigi,e0,Python,false,false,false,0,false,false,false,false +e0/nbviewer,e0,Python,false,true,false,0,false,false,false,false +e0/purl,e0,Python,false,false,false,0,false,false,false,false +e0/X2CRM,e0,PHP,false,false,false,0,false,false,false,false +jorgeUNGS/P3TP1,jorgeUNGS,Java,false,false,false,0,false,false,false,false +sirile/go-image-test,sirile,Go,true,false,false,1,true,false,false,false +yohannes/Mischievous,yohannes,Swift,false,false,false,0,false,false,false,false +zhuoyifei/adscan2,zhuoyifei,JavaScript,false,false,false,0,false,false,false,false +rmetcalf9/ICSchema_SAMPLE_SCHEMA,rmetcalf9,PLSQL,false,false,false,0,false,false,false,false +FliiFe/pronotefetcher,FliiFe,JavaScript,false,false,false,0,false,false,false,false +RenovoSolutions/rl-data-model,RenovoSolutions,TypeScript,false,false,false,0,false,false,false,false +jhammer/Arff-Plotter,jhammer,C++,false,false,false,0,false,false,false,false +mmachado95/reko,mmachado95,HTML,false,false,false,0,false,false,false,false +RenovoSolutions/rl-async-testing,RenovoSolutions,TypeScript,false,false,false,0,false,false,false,false +bruwalfas/tubo,bruwalfas,CSS,false,false,false,0,false,false,false,false +RenovoSolutions/rl-http,RenovoSolutions,TypeScript,false,false,false,0,false,false,false,false +Lima_Guimaraes/projetohospital,Lima_Guimaraes,Java,false,false,false,0,false,false,false,false +distortia/coffeebot,distortia,Elixir,false,false,false,0,false,false,false,false +maplex/cthreads,maplex,C,false,false,false,0,false,false,false,false +d10n/dotfiles,d10n,Shell,false,false,false,0,false,false,false,false +Progra3/2048,Progra3,Java,false,false,false,0,false,false,false,false +lflf/hello-world,lflf,,false,false,false,0,false,false,false,false +sf-byte-days/sms2bot,sf-byte-days,Java,true,false,true,1,false,true,false,false +GeekTree0101/ricecakeJS,GeekTree0101,JavaScript,false,false,false,0,false,false,false,false +mrfathin/UVa,mrfathin,C++,false,false,false,0,false,false,false,false +rahulw.techspawn/wp-email-users,rahulw.techspawn,PHP,false,false,false,0,false,false,false,false +joren/capistrano-deploylog,joren,Ruby,false,false,false,0,false,false,false,false +thangngoc89/dnh-cpp,thangngoc89,JavaScript,true,false,false,2,false,true,true,false +unifi-f4w/oauth2-checker,unifi-f4w,Ruby,true,false,false,1,false,true,false,false +katalysis/open-source/Ed25519,katalysis,Swift,false,false,false,0,false,false,false,false +Codeaurora/platform_prebuilts_gcc_darwin-x86_arm_arm-eabi-4.8,Codeaurora,C,false,false,false,0,false,false,false,false +Zatherz/eggshell,Zatherz,C#,false,false,false,0,false,false,false,false +karlmarx80/palarust,karlmarx80,Rust,true,false,false,1,false,true,false,false +SouUmLucas/PostoDeAbastecimentoJava,SouUmLucas,Java,false,false,false,0,false,false,false,false +biotransistor/ipython2jupyter,biotransistor,Python,false,false,false,0,false,false,false,false +ranggarizky/rest-node,ranggarizky,JavaScript,false,false,false,0,false,false,false,false +jereh16/gradle-example-build,jereh16,XSLT,false,false,false,0,false,false,false,false +amyasnikov/xgame,amyasnikov,JavaScript,false,false,false,0,false,false,false,false +rmetcalf9/bash_ciutils,rmetcalf9,Java,false,false,false,0,false,false,false,false +Codeaurora/platform_vendor_qcom-opensource_wlan_utils_sigma-dut,Codeaurora,C,false,false,false,0,false,false,false,false +JKANetwork/alrofamo,JKANetwork,Java,false,false,false,0,false,false,false,false +wp-puzzle/basic,wp-puzzle,PHP,false,false,false,0,false,false,false,false +yeradis/jbcnconf-app,yeradis,TypeScript,false,false,false,0,false,false,false,false +destructores/reserva-frontend,destructores,JavaScript,false,false,false,0,false,false,false,false +SnareChops/notator.online,SnareChops,TypeScript,true,false,false,1,false,true,false,false +dv2/aac,dv2,Ruby,false,false,false,0,false,false,false,false +Codeaurora/platform_hardware_qcom_camera,Codeaurora,C++,false,false,false,0,false,false,false,false +vladvesa/sublimetext-php-plugins,vladvesa,Python,false,false,false,0,false,false,false,false +sverweij/state-machine-cat,sverweij,JavaScript,true,false,false,1,false,true,false,false +juandc/node-test,juandc,JavaScript,false,false,false,0,false,false,false,false +anthonyjba/GeoblinkTest,anthonyjba,CSS,false,false,false,0,false,false,false,false +Pavel068/videoapi-doc,Pavel068,,false,false,false,0,false,false,false,false +viks01/spring-mvc-angularjs,viks01,Java,false,false,true,0,false,false,false,false +sdmg15/iAm,sdmg15,PHP,false,false,false,0,false,false,false,false +mohsencs/JadeCore548,mohsencs,C++,false,false,false,0,false,false,false,false +gwmngilfen/nextcloud-scanner,gwmngilfen,PHP,false,false,false,0,false,false,false,false +miaomiao618100/myblog,miaomiao618100,JavaScript,false,false,false,0,false,false,false,false +sagha-design-studio/alkanos,sagha-design-studio,PHP,false,false,false,0,false,false,false,false +justyna.biskup/phone_book,justyna.biskup,CSS,false,false,false,0,false,false,false,false +Vrolyx/IVH5B4,Vrolyx,Java,false,false,false,0,false,false,false,false +Conan_Kudo/snapcore-selinux,Conan_Kudo,Makefile,false,false,false,0,false,false,false,false +sunny256/music-production,sunny256,HTML,false,false,false,0,false,false,false,false +simonbreiter/python-universal-turing-machine,simonbreiter,Python,false,false,false,0,false,false,false,false +mikimaine/ecommerce,mikimaine,HTML,false,false,false,0,false,false,false,false +punch-games/game-one,punch-games,JavaScript,false,false,false,0,false,false,false,false +geoff-nagy/no-fly-zone,geoff-nagy,C++,false,false,false,0,false,false,false,false +roconnor/roconnor.gitlab.io,roconnor,CSS,false,false,false,0,false,false,false,false +JHUDevOpsFall2016/creek-woj,JHUDevOpsFall2016,Java,false,false,false,0,false,false,false,false +franzejr/awesome-react-native,franzejr,Ruby,false,false,false,0,false,false,false,false +franzejr/MOAPGPSTracker,franzejr,Java,false,false,false,0,false,false,false,false +vmorenomarin/MetalAppchives,vmorenomarin,Java,false,false,false,0,false,false,false,false +alexphelps/server-error-pages,alexphelps,HTML,false,false,false,0,false,false,false,false +Renouveaux/Araka,Renouveaux,CSS,false,false,false,0,false,false,false,false +chrisfgill/spacepirates,chrisfgill,TypeScript,false,false,false,0,false,false,false,false +drutopia/drutopia_comment,drutopia,,false,false,false,0,false,false,false,false +drutopia/drutopia_blog,drutopia,,false,false,false,0,false,false,false,false +drutopia/drutopia_page,drutopia,,false,false,false,0,false,false,false,false +itgelo/angularjs-basic-route,itgelo,JavaScript,false,false,false,0,false,false,false,false +gbraad/gitlab-client,gbraad,Python,false,true,false,0,false,false,false,false +libereco/fsmk-web-build,libereco,HTML,true,false,false,2,false,true,true,false +uraniumdawn/spring-security-token-auth,uraniumdawn,Java,false,false,true,0,false,false,false,false +akshay.ap95/OnlineJudge,akshay.ap95,Python,false,false,false,0,false,false,false,false +itgelo/angular-local-storage,itgelo,JavaScript,false,false,false,0,false,false,false,false +itgelo/highcharts-ng,itgelo,JavaScript,false,false,false,0,false,false,false,false +itgelo/angucomplete-alt,itgelo,JavaScript,false,false,false,0,false,false,false,false +Dadas/public-tools,Dadas,JavaScript,false,false,false,0,false,false,false,false +rodolfoaragno/labsis-admin-tools,rodolfoaragno,Shell,false,false,false,0,false,false,false,false +Kisem/FileMaid,Kisem,C#,false,false,false,0,false,false,false,false +sunny256/linux,sunny256,,false,false,false,0,false,false,false,false +anlijudavid/AppHackatonIndigo,anlijudavid,TypeScript,false,false,false,0,false,false,false,false +Codeaurora/platform_system_extras,Codeaurora,C,false,false,false,0,false,false,false,false +Amoenus/Amoenus.PclTimer,Amoenus,C#,false,false,false,0,false,false,false,false +walberjefferson/Package-CodePress52,walberjefferson,PHP,false,false,false,0,false,false,false,false +zetok/tox-syncbot,zetok,Rust,false,false,false,0,false,false,false,false +mingzhi_public/quick_start,mingzhi_public,Java,false,false,false,0,false,false,false,false +paramander/on-demand-images,paramander,Haskell,false,false,false,0,false,false,false,false +UdM/pybinit,UdM,Python,true,false,false,2,false,true,true,false +rithvikvibhu/batch-sof,rithvikvibhu,Python,false,false,false,0,false,false,false,false +BafDyce/stracrl,BafDyce,JavaScript,false,false,false,0,false,false,false,false +yeupou/stalag13,yeupou,PHP,false,false,false,0,false,false,false,false +define-private-public/CSharpNetworking,define-private-public,C#,false,false,false,0,false,false,false,false +MinoMino/mindl,MinoMino,Python,false,true,false,0,false,false,false,false +danleyb2/pizaaApp,danleyb2,Java,false,false,false,0,false,false,false,false +mctextbin/mctextbin.gitlab.io-old,mctextbin,CSS,false,false,false,0,false,false,false,false +randomdsu/842,randomdsu,PowerShell,false,false,false,0,false,false,false,false +jimiray/brakeman_trello,jimiray,Ruby,false,false,false,0,false,false,false,false +agusmakmun/flaskblog,agusmakmun,HTML,false,false,false,0,false,false,false,false +lobaro/firefly-go,lobaro,Go,true,false,false,2,true,false,false,false +grp-peidan-jojo-public/chocolatey-scripts,grp-peidan-jojo-public,PowerShell,false,false,false,0,false,false,false,false +melihovv/petri-dish,melihovv,Java,true,false,false,2,true,true,false,false +ja4nm/mvc,ja4nm,PHP,false,false,false,0,false,false,false,false +ThomasAUZINGER/curve-distance,ThomasAUZINGER,Matlab,false,false,false,0,false,false,false,false +murisimov/tornado-example,murisimov,Python,false,false,false,0,false,false,false,false +eightnoteight/rss_channel_bot,eightnoteight,Python,false,true,false,0,false,false,false,false +atomfrede/jhipster-vuejs-sample,atomfrede,Java,false,false,false,0,false,false,false,false +mwa/packet-editor,mwa,Python,false,false,false,0,false,false,false,false +aikchar/freebsd-edgerouterlite-ansible,aikchar,Makefile,false,false,false,0,false,false,false,false +afrijaldz/targetWeb,afrijaldz,JavaScript,false,false,false,0,false,false,false,false +saelozahra/example-pluf-act,saelozahra,JavaScript,false,false,false,0,false,false,false,false +gbraad/blog-content,gbraad,Shell,true,false,false,2,true,false,true,false +webarch/webarch-status,webarch,HTML,true,false,false,1,false,false,true,false +marialaindia76/Mariaypedro13131313,marialaindia76,,false,false,false,0,false,false,false,false +voidspacexyz/python-examples,voidspacexyz,Python,false,false,false,0,false,false,false,false +jkmcderm/Freshmen-Ventures-Voting-App,jkmcderm,Python,false,false,false,0,false,false,false,false +Zatherz/robot,Zatherz,Crystal,true,false,false,1,false,true,false,false +hongping1224/ICSC-HealthProject,hongping1224,C#,false,false,false,0,false,false,false,false +racersyun/StudyTracker,racersyun,Java,false,false,false,0,false,false,false,false +sota-stuff/sota-stuff,sota-stuff,Ruby,false,false,false,0,false,false,false,false +dram/red,dram,HTML,false,false,false,0,false,false,false,false +itgelo/ng-password-strength,itgelo,JavaScript,false,false,false,0,false,false,false,false +icalF/node-dashboard,icalF,JavaScript,true,false,false,1,false,true,false,false +abrahmancse/my_first_project,abrahmancse,PHP,false,false,false,0,false,false,false,false +vnphp/calendar,vnphp,PHP,true,false,false,1,false,true,false,false +sontieu/posrail,sontieu,Ruby,false,false,false,0,false,false,false,false +iikem/linux-makefile,iikem,Makefile,false,false,false,0,false,false,false,false +nbourgeois/2slamPPEInfowareGit,nbourgeois,Java,false,false,false,0,false,false,false,false +tmountjr/larymer,tmountjr,PHP,false,false,false,0,false,false,false,false +TheSinding/SDU,TheSinding,Java,false,false,false,0,false,false,false,false +SilverLlama/MythicalGaming,SilverLlama,SourcePawn,false,false,false,0,false,false,false,false +Devasta/hermes,Devasta,Python,false,false,false,0,false,false,false,false +backs_rsa/ecommerce,backs_rsa,JavaScript,false,false,false,0,false,false,false,false +jonmartinez/ingsoft-git,jonmartinez,JavaScript,false,false,false,0,false,false,false,false +perlstalker/docker-orchestration-examples,perlstalker,Perl,false,false,false,0,false,false,false,false +tugyan/logic_analyzer_freedomkl46,tugyan,C,false,false,false,0,false,false,false,false +nemane82/Nouakch,nemane82,,false,false,false,0,false,false,false,false +efkin/semantic-toe,efkin,Python,false,false,false,0,false,false,false,false +jberkel/OpenSSL-for-iPhone,jberkel,Shell,false,false,false,0,false,false,false,false +fcv/hello-spring-rest-service,fcv,Java,true,false,true,2,true,true,false,false +Blunts/TFA_Takistan_Insurgency,Blunts,SQF,false,false,false,0,false,false,false,false +aj_zozakiewicz/react-native-redux-boilerplate,aj_zozakiewicz,JavaScript,false,false,false,0,false,false,false,false +Zipcore/RoundendStopMusic,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +vandy-aad-3/ImageDownloader,vandy-aad-3,Java,false,false,false,0,false,false,false,false +shezi/GPIOSimulator,shezi,Python,false,false,false,0,false,false,false,false +public-mirror/cjdns,public-mirror,Assembly,false,false,false,0,false,false,false,false +misterhtmlcss/FCC-Basic-JavaScript-Lessons,misterhtmlcss,JavaScript,false,false,false,0,false,false,false,false +rmetcalf9/ICSchema_SAMPLE_UTIL_SCHEMA,rmetcalf9,PLSQL,false,false,false,0,false,false,false,false +prithvisagar.shivaraman/sector-files,prithvisagar.shivaraman,,false,false,false,0,false,false,false,false +lambdait/slack-vk-bot,lambdait,Python,true,true,false,2,true,true,false,false +rubygems/instagram-ripper,rubygems,Ruby,true,false,false,1,false,true,false,false +certik/sea_level,certik,JupyterNotebook,false,false,false,0,false,false,false,false +abhi18av/ToDo.abhi18av.gitlab.io,abhi18av,HTML,true,false,false,2,false,true,true,false +Freamdev/3DShooter,Freamdev,ASP,false,false,false,0,false,false,false,false +flou/vim,flou,Vimscript,false,false,false,0,false,false,false,false +rafaelpires/carencialocal,rafaelpires,Ruby,false,false,false,0,false,false,false,false +juveen/WordPressSeries,juveen,PHP,false,false,false,0,false,false,false,false +opendata-fpuna/fpuna-denguemaps,opendata-fpuna,JavaScript,false,false,true,0,false,false,false,false +gsauthof/musl,gsauthof,C,false,false,false,0,false,false,false,false +dedekindbr/slides_logica,dedekindbr,,false,false,false,0,false,false,false,false +DublinAnime/dublinanime.ie,DublinAnime,CSS,true,false,false,1,false,false,true,false +igrep/stack-docker-sample,igrep,Haskell,false,false,false,0,false,false,false,false +sivsushruth/barrel,sivsushruth,Erlang,true,false,false,1,false,true,false,false +ChristianHeinemann/alien,ChristianHeinemann,C++,false,false,false,0,false,false,false,false +fweber-de/docker-php,fweber-de,Shell,true,false,false,1,true,false,false,false +Jehan_ZeMarmot/mrxvt,Jehan_ZeMarmot,C,false,false,false,0,false,false,false,false +vandy-aad-2/MapFromContactsHaMeR,vandy-aad-2,Java,false,false,false,0,false,false,false,false +the-vision/hawky-one,the-vision,Ruby,false,false,false,0,false,false,false,false +the-vision/botorosa,the-vision,Python,false,true,false,0,false,false,false,false +jmberros/clases,jmberros,,false,false,false,0,false,false,false,false +Zipcore/ZCore-Mysql,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +Zipcore/ZCore-LootSpawner,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +Zipcore/ZCore-Voice,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +Zipcore/NoWeaponFix,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +Mumba/typedef-sourced,Mumba,,false,false,false,0,false,false,false,false +tarunramesh/oorderztestsite1,tarunramesh,JavaScript,false,false,false,0,false,false,false,false +onkar_nene/DemoProject,onkar_nene,,false,false,false,0,false,false,false,false +curiousnoob/FAQ-GIT,curiousnoob,,false,false,false,0,false,false,false,false +mitchellsimoens/ext-jsx,mitchellsimoens,JavaScript,false,false,false,0,false,false,false,false +amardeep434/nkernel,amardeep434,,false,false,false,0,false,false,false,false +Zipcore/Warden-Zombies,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +todd.stark1/ADInactiveObjectCleanup,todd.stark1,VisualBasic,false,false,false,0,false,false,false,false +dblel/adioh,dblel,Ruby,true,false,false,1,false,true,false,false +maurob/Bfs2D,maurob,Cuda,false,false,false,0,false,false,false,false +vggdemo/keypoint_data,vggdemo,,false,false,false,0,false,false,false,false +skortekaas/PHP-SMTP-ContactForm,skortekaas,PHP,false,false,false,0,false,false,false,false +exarh-team/docker-skaro,exarh-team,,false,false,false,0,false,false,false,false +uboats/DCS_PO,uboats,,false,false,false,0,false,false,false,false +ventilooo/inf3135-aut2016-tp1,ventilooo,C,false,false,false,0,false,false,false,false +chambana/opencv-dev,chambana,Python,false,false,false,0,false,false,false,false +smartysmartymcsmartypants/cs320assignment3,smartysmartymcsmartypants,,false,false,false,0,false,false,false,false +craftsmen/spock-example,craftsmen,Groovy,true,false,true,2,true,true,false,false +painless-software/painless-continuous-delivery,painless-software,PHP,true,false,false,4,true,true,true,false +cwhipple/firestorm,cwhipple,C++,false,false,false,0,false,false,false,false +pidila/sp-simulateurs-data,pidila,CSS,false,false,false,0,false,false,false,false +gitpitch/in-60-seconds,gitpitch,CSS,false,false,false,0,false,false,false,false +getmetorajesh/BakeryChallenge,getmetorajesh,Scala,true,false,false,1,false,true,false,false +amardeep434/nlocal_manifest,amardeep434,,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-chef-util,gitlab-cookbooks,Ruby,true,false,false,1,false,true,false,false +ogvilla/blog-ocax,ogvilla,JavaScript,false,false,false,0,false,false,false,false +cf-angular2/angular2-quickstart,cf-angular2,JavaScript,false,false,false,0,false,false,false,false +fommil/emacs-intellij-theme,fommil,EmacsLisp,false,false,false,0,false,false,false,false +igserfurtmcschulserver/pvpplugin,igserfurtmcschulserver,,false,false,false,0,false,false,false,false +wowthemes/wmailchimp,wowthemes,JavaScript,false,false,false,0,false,false,false,false +alexadg/laravel-presentation,alexadg,PHP,false,false,false,0,false,false,false,false +aimbererm/whtweather,aimbererm,JavaScript,false,false,false,0,false,false,false,false +esabula/SN_Bus_Duty_Assistant,esabula,,false,false,false,0,false,false,false,false +wardcomm/code_examples,wardcomm,HTML,false,false,false,0,false,false,false,false +myers.pa/aws-lambda-python,myers.pa,Shell,false,false,false,0,false,false,false,false +akshay.ap95/AlgoApp,akshay.ap95,Java,false,false,false,0,false,false,false,false +adrian.io/lambdas,adrian.io,Java,false,false,true,0,false,false,false,false +myzr/my-imx6-mfgtool,myzr,,false,false,false,0,false,false,false,false +darkalemanbr/gdgettext,darkalemanbr,Python,false,false,false,0,false,false,false,false +adeirpan32/pertemuan1,adeirpan32,Java,false,false,false,0,false,false,false,false +aderahmatnurhidayat/projek1,aderahmatnurhidayat,Java,false,false,false,0,false,false,false,false +aziiz.alfauzi28/latihan1,aziiz.alfauzi28,Java,false,false,false,0,false,false,false,false +andrewbanchich/graphic-design,andrewbanchich,,false,false,false,0,false,false,false,false +aziiz.alfauzi28/pertemuan1,aziiz.alfauzi28,Java,false,false,false,0,false,false,false,false +hugorosario/PlayToKodi,hugorosario,Java,false,false,false,0,false,false,false,false +D-STAR/DV-Mega,D-STAR,,false,false,false,0,false,false,false,false +TaylorAckley/youtrackapi,TaylorAckley,JavaScript,false,false,false,0,false,false,false,false +SlyOtis/PeakQ,SlyOtis,Java,false,false,false,0,false,false,false,false +Mizux/android-101,Mizux,Shell,true,false,false,2,true,true,false,false +amunizp/writer,amunizp,,false,false,false,0,false,false,false,false +gmarciani/gmarciani,gmarciani,CSS,false,false,false,0,false,false,false,false +shirishkz/RubyCave,shirishkz,Ruby,false,false,false,0,false,false,false,false +trupill/lambdaworld-2016,trupill,Haskell,false,false,false,0,false,false,false,false +juanber/LabExpress,juanber,Python,false,true,false,0,false,false,false,false +haque.mdmanzurul/tictactoe-game,haque.mdmanzurul,Java,false,false,false,0,false,false,false,false +lucas.addisi/Clustering-con-AGM,lucas.addisi,Java,false,false,false,0,false,false,false,false +linuq/pres-jll2016-etat-libre-quebec,linuq,HTML,false,false,false,0,false,false,false,false +devap/iskconnews.org,devap,JavaScript,false,false,false,0,false,false,false,false +IS4Charity/aisco-abs-web,IS4Charity,HTML,false,false,false,0,false,false,false,false +derobert/CueISRC,derobert,Perl,true,false,false,2,false,true,true,false +qaclana/www.qaclana.io,qaclana,CSS,true,false,false,1,false,false,true,false +SaiAshirwadInformatia/Labs/Jekyll-Creative,SaiAshirwadInformatia,HTML,true,false,false,3,false,true,true,true +thesecretmaster/atd,thesecretmaster,Ruby,true,false,false,1,false,true,false,false +PassionTeam/Angular,PassionTeam,,false,false,false,0,false,false,false,false +mallumo/mallumo,mallumo,Rust,false,false,false,0,false,false,false,false +HyphanBot/HyphanBot,HyphanBot,Python,true,true,false,1,false,true,false,false +fferreira3d/TheBookIsOnMaterial,fferreira3d,JavaScript,false,false,false,0,false,false,false,false +audahadi/android_device_asus_Z010D,audahadi,Makefile,false,false,false,0,false,false,false,false +kgnnio/KeyMaker-ChromeExtensionBackend,kgnnio,Python,false,true,false,0,false,false,false,false +spbau-2020-inf/lectures,spbau-2020-inf,TeX,false,false,false,0,false,false,false,false +tranchi994/socket.io-demo,tranchi994,JavaScript,false,false,false,0,false,false,false,false +halfdan/extreme-commuting-game,halfdan,Java,false,false,false,0,false,false,false,false +ShamaUgale/testngWeekdayAug,ShamaUgale,HTML,false,false,false,0,false,false,false,false +a.gloshkin/YM,a.gloshkin,,false,false,false,0,false,false,false,false +perlstalker/octopress-deploy,perlstalker,Ruby,true,false,false,2,true,false,false,true +piotrva/STM-JOY,piotrva,C,false,false,false,0,false,false,false,false +ja4nm/cookiebar,ja4nm,HTML,false,false,false,0,false,false,false,false +gutocarvalho/packer-centos-pcp,gutocarvalho,Shell,false,false,false,0,false,false,false,false +vitimiti/System76-Unofficial,vitimiti,,false,false,false,0,false,false,false,false +duelinmarkers/steel-cent,duelinmarkers,Rust,true,false,false,2,false,true,true,false +huangfengyue/c9.xiyouxi.com,huangfengyue,,false,false,false,0,false,false,false,false +kgnnio/KeyMaker-ChromeExtension,kgnnio,CSS,false,false,false,0,false,false,false,false +Processing_processing.py/Clocks,Processing_processing.py,Python,false,false,false,0,false,false,false,false +gibwar/powershell-gitsshcommands,gibwar,PowerShell,false,false,false,0,false,false,false,false +bsi-unime/sgcu,bsi-unime,JavaScript,false,false,true,0,false,false,false,false +wsmeichao/React-webpack,wsmeichao,JavaScript,false,false,false,0,false,false,false,false +hemant.arora/hero-slider,hemant.arora,JavaScript,false,false,false,0,false,false,false,false +silvarni/Tactical_RPG,silvarni,C++,false,false,false,0,false,false,false,false +rypac/dotfiles,rypac,Shell,false,false,false,0,false,false,false,false +morph027/preseed-gitlab-ci-multi-runner,morph027,Shell,false,false,false,0,false,false,false,false +rubdos/pyreflink,rubdos,Python,true,true,false,4,false,true,true,false +korken89/adkalmanfilter,korken89,C++,false,false,false,0,false,false,false,false +codeflash/Atiempo/moduloWeb,codeflash,PHP,false,false,false,0,false,false,false,false +data-structure-learning/Loop-Queue-in-Swift,data-structure-learning,Swift,false,false,false,0,false,false,false,false +mplesha/ng6,mplesha,JavaScript,false,false,false,0,false,false,false,false +sovapetro/sovapetro.gitlab.io,sovapetro,HTML,false,false,false,0,false,false,false,false +HomeAutomationSystem/RPi-Client,HomeAutomationSystem,JavaScript,false,false,false,0,false,false,false,false +rob-livermore/NUnitExcel,rob-livermore,C#,false,false,false,0,false,false,false,false +erkkikeranen/rest-api-with-junit-and-arquillian,erkkikeranen,Java,false,false,true,0,false,false,false,false +Infernion/epubsearcher,Infernion,HTML,false,false,false,0,false,false,false,false +davikj/Tax-Help,davikj,Python,false,false,false,0,false,false,false,false +mbay/bosch,mbay,Python,false,false,false,0,false,false,false,false +michaliskambi/muuu,michaliskambi,Pascal,false,false,false,0,false,false,false,false +av_kurian/hrmsystem,av_kurian,PHP,false,false,false,0,false,false,false,false +Animarathon/animarathon.gitlab.io,Animarathon,HTML,true,false,false,1,false,false,true,false +vandy-aad-2/aad-2-assg-3,vandy-aad-2,Java,false,false,false,0,false,false,false,false +ayufan/docker-networking,ayufan,HTML,true,false,false,1,false,true,false,false +LPDW/td-poo-avancee,LPDW,PHP,false,false,false,0,false,false,false,false +vggdemo/keypoint_matlab_demo,vggdemo,Cuda,false,false,false,0,false,false,false,false +duncan.andrew.g/test_project,duncan.andrew.g,CommonWorkflowLanguage,false,false,false,0,false,false,false,false +Cocosushi6/laby_client,Cocosushi6,Java,false,false,false,0,false,false,false,false +deubeuliou/parameter-framework,deubeuliou,C++,true,false,false,1,true,false,false,false +buildfunthings/typo,buildfunthings,JavaScript,false,false,false,0,false,false,false,false +brendanjerwin/testing-elm-serverless,brendanjerwin,Elm,true,false,false,2,true,true,false,false +eon-s/PrimitiveDashG,eon-s,PHP,false,false,false,0,false,false,false,false +delnektarios/Tutorials-4-fun,delnektarios,Shell,false,false,false,0,false,false,false,false +montreuil-p6/merge-training,montreuil-p6,HTML,false,false,false,0,false,false,false,false +fossht/asic_tools,fossht,Python,true,false,false,2,false,true,false,true +thogg4/tomdoccery,thogg4,Ruby,false,false,false,0,false,false,false,false +jsivori/mrwa_alexandria,jsivori,Ruby,false,false,false,0,false,false,false,false +alinur/Result_Processing_System,alinur,HTML,false,false,false,0,false,false,false,false +eevargas/win-state,eevargas,JavaScript,false,false,false,0,false,false,false,false +williem/plantwhisperer,williem,,false,false,false,0,false,false,false,false +caddy/caddy,caddy,Go,false,false,false,0,false,false,false,false +gohugo/hugo,gohugo,Go,false,false,false,0,false,false,false,false +john_fisherman/pluralshight-library-node-express,john_fisherman,HTML,false,false,false,0,false,false,false,false +Infrared-KHTN/aulluminate,Infrared-KHTN,C,false,false,false,0,false,false,false,false +obonyojimmy/vue-admin,obonyojimmy,Vue,false,false,false,0,false,false,false,false +vandy-aad-2/ImageDownloaderBRD,vandy-aad-2,Java,false,false,false,0,false,false,false,false +jgouly/keyboard-app,jgouly,Rust,false,false,false,0,false,false,false,false +VD-EDU/aws_starter_sdk,VD-EDU,,false,false,false,0,false,false,false,false +vandy-aad-2/PingPongReceiversEx,vandy-aad-2,Java,false,false,false,0,false,false,false,false +nyimbi/voter-registration,nyimbi,C++,false,false,false,0,false,false,false,false +Advocates/the-kings-loss,Advocates,JavaScript,false,false,false,0,false,false,false,false +ralt/virtualpath-obsolete,ralt,CommonLisp,false,false,false,0,false,false,false,false +vjapolitzer/PocketCHIP-Keyboard-Faceplate,vjapolitzer,,false,false,false,0,false,false,false,false +nguyenhd/thanhdamcp,nguyenhd,JavaScript,false,false,false,0,false,false,false,false +vitamin-r/xml-schema-4-scroll-translations-confluence,vitamin-r,,false,false,false,0,false,false,false,false +evol/evol-web,evol,CSS,false,false,false,0,false,false,false,false +phalcony/phalcony-sample-project,phalcony,PHP,false,false,false,0,false,false,false,false +ixilon/nukkit-docker,ixilon,Java,true,false,false,2,true,false,false,false +caironoleto/my-dot-files,caironoleto,Shell,false,false,false,0,false,false,false,false +dekzitfz/GitlabCIExample,dekzitfz,Java,true,false,false,1,false,true,false,false +faysal/Rony_142711_b34_session6,faysal,PHP,false,false,false,0,false,false,false,false +paddatrapper/ansible,paddatrapper,Shell,true,false,false,2,false,true,true,false +aergus/dockerfiles,aergus,,false,false,false,0,false,false,false,false +librespacefoundation/lsf-org,librespacefoundation,,true,false,false,2,true,false,true,false +xiaowei.huang/rationality,xiaowei.huang,Python,false,false,false,0,false,false,false,false +zwiebl.xyz/stellar_theme,zwiebl.xyz,CSS,false,false,false,0,false,false,false,false +kfrz/ticketbuster,kfrz,Ruby,true,false,false,1,false,true,false,false +esr/ieee-pilot,esr,OpenEdgeABL,false,false,false,0,false,false,false,false +gnu4freedoms/trisquel-manual,gnu4freedoms,,false,false,false,0,false,false,false,false +cardoe/xen,cardoe,C,false,false,false,0,false,false,false,false +Maxwell-Alexius/Scrumby-Board,Maxwell-Alexius,PHP,false,false,false,0,false,false,false,false +ZloyTip/webasyst-shop-coupon,ZloyTip,HTML,false,false,false,0,false,false,false,false +martijnvds/zaaksysteemuploadservice,martijnvds,C#,false,false,false,0,false,false,false,false +gitlab-br/gitlab-br.org,gitlab-br,,false,false,false,0,false,false,false,false +rabiislam/bitm-git-projets,rabiislam,PHP,false,false,false,0,false,false,false,false +pelmegov/game,pelmegov,PHP,false,false,false,0,false,false,false,false +erwin-everts/eepd,erwin-everts,PHP,false,false,false,0,false,false,false,false +emn-group/emn-base,emn-group,Python,false,false,false,0,false,false,false,false +jamietanna/jvt.me,jamietanna,CSS,true,false,false,5,true,true,false,true +baze/mosquitto-docker-rpi,baze,Shell,false,false,false,0,false,false,false,false +avdyk/votelibre,avdyk,,false,false,false,0,false,false,false,false +LANL-EM/waffle2017,LANL-EM,GLSL,false,false,false,0,false,false,false,false +stefan-it/array_hash_map,stefan-it,C++,true,false,false,1,false,true,false,false +define-private-public/MonotonePolygonTriangulation,define-private-public,Dart,false,false,false,0,false,false,false,false +billzee/product_gallery,billzee,Ruby,false,false,false,0,false,false,false,false +miniit/miniit.com.br,miniit,JavaScript,false,false,false,0,false,false,false,false +psyked/CMPprojetM1,psyked,Python,false,false,false,0,false,false,false,false +MMarus/fit-pdb16-projekt,MMarus,HTML,false,false,false,0,false,false,false,false +ppdai-ac/uc-platform,ppdai-ac,Java,false,false,true,0,false,false,false,false +skanur/ubench_rust,skanur,Rust,true,false,false,3,true,true,true,false +mario-kart-analyzer/datacollector,mario-kart-analyzer,Python,true,true,false,1,false,true,false,false +puttichai/pymanip,puttichai,Python,false,false,false,0,false,false,false,false +agaric/sites/data,agaric,PHP,false,false,false,0,false,false,false,false +vitimiti/MiLowi-NoOficial,vitimiti,,false,false,false,0,false,false,false,false +moosehawk/nerrd-stack,moosehawk,JavaScript,false,false,false,0,false,false,false,false +sourabhtokkar/generic,sourabhtokkar,PowerBuilder,false,false,false,0,false,false,false,false +mire3212/itunes-search,mire3212,Python,false,false,false,0,false,false,false,false +IS4Charity/aisco-sem-web,IS4Charity,CSS,false,false,false,0,false,false,false,false +twiceyuan/twiceyuan.gitlab.io,twiceyuan,CSS,true,false,false,1,false,true,false,false +emacs-stuff/highlights,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +embuc/actuator-spring-traditional,embuc,Java,false,false,true,0,false,false,false,false +gitlab-cookbooks/gitlab-packagecloud,gitlab-cookbooks,Ruby,false,false,false,0,false,false,false,false +gitlab-cookbooks/pf,gitlab-cookbooks,Ruby,false,false,false,0,false,false,false,false +react-workshop/react-chat,react-workshop,JavaScript,false,false,false,0,false,false,false,false +CodeursEnLiberte/www,CodeursEnLiberte,CSS,false,false,false,0,false,false,false,false +edrochenski/juvo,edrochenski,C#,false,false,false,0,false,false,false,false +rorogarcete/NubankMobileExerciseApp,rorogarcete,Kotlin,false,false,false,0,false,false,false,false +SiegfriedEhret/twitter-cleaner,SiegfriedEhret,Go,false,false,false,0,false,false,false,false +farmee-public/farmee-controller-rpi,farmee-public,Python,false,false,false,0,false,false,false,false +clusterpress/clusterpress-sites-forum,clusterpress,PHP,false,false,false,0,false,false,false,false +nick-lamartina/SoundForgeTools,nick-lamartina,C#,false,false,false,0,false,false,false,false +Endou_Mamoru/files0,Endou_Mamoru,PHP,false,false,false,0,false,false,false,false +TheCreativeCat/cocoSpace,TheCreativeCat,PHP,false,false,false,0,false,false,false,false +rapidclock/my-webdev-test,rapidclock,HTML,false,false,false,0,false,false,false,false +Ramon/MS3D,Ramon,C,false,false,false,0,false,false,false,false +eamon.woortman/unity3d-unit-testing-example,eamon.woortman,C#,true,false,false,1,true,false,false,false +st.stolz/Latex_Vorlage_HAK_Imst_Projektarbeit,st.stolz,TeX,false,false,false,0,false,false,false,false +mshepherd/nombroj,mshepherd,Python,false,true,false,0,false,false,false,false +cappuccino-works/tudo-da-industria-da-multa,cappuccino-works,JupyterNotebook,false,false,false,0,false,false,false,false +DdMad/sia-bot,DdMad,JavaScript,false,false,false,0,false,false,false,false +qornanali/APIandRecycleViewExample,qornanali,Java,false,false,false,0,false,false,false,false +skydavid/RF1-Webshop,skydavid,PHP,true,false,false,1,false,true,false,false +vstakhov/rspamd,vstakhov,C,false,false,false,0,false,false,false,false +ShamaUgale/JavaFCOct2016,ShamaUgale,Java,false,false,false,0,false,false,false,false +efthaqur/LAB_Presentation1_team_string,efthaqur,,false,false,false,0,false,false,false,false +richizo/run_stefano_run,richizo,Ruby,false,false,false,0,false,false,false,false +benoitc/openkvs,benoitc,Erlang,true,false,false,1,false,true,false,false +argent/argentws-build,argent,Mask,false,false,false,0,false,false,false,false +argent/argentws-live,argent,Shell,false,false,false,0,false,false,false,false +argent/argentws-skel,argent,Shell,false,false,false,0,false,false,false,false +dede999/minera-pipe,dede999,Ruby,false,false,false,0,false,false,false,false +thomas_sauer_h_da/ewa2,thomas_sauer_h_da,,false,false,false,0,false,false,false,false +reduardo7/angular-iframe-auto-height,reduardo7,CSS,false,false,false,0,false,false,false,false +braineering/ares,braineering,Java,false,false,false,0,false,false,false,false +Avris/Vocabus,Avris,CoffeeScript,false,false,false,0,false,false,false,false +monaco/rtsb,monaco,Shell,false,false,false,0,false,false,false,false +mathieu-ducrot/portfolio,mathieu-ducrot,PHP,false,false,false,0,false,false,false,false +pump.io/pump.io,pump.io,JavaScript,false,false,false,0,false,false,false,false +argent/argent-theme,argent,CSS,false,false,false,0,false,false,false,false +gitlab-org/gitlab-markup,gitlab-org,Ruby,true,false,false,1,false,true,false,false +clemcasa/awesome_libs,clemcasa,,false,false,false,0,false,false,false,false +hook.polymer/hook-carousel,hook.polymer,HTML,false,false,false,0,false,false,false,false +agfranco19/tsb-tpi-vocabulary,agfranco19,Java,true,false,false,2,true,true,false,false +masarov/clock,masarov,JupyterNotebook,false,false,false,0,false,false,false,false +s4m-gems/maven-cli,s4m-gems,Ruby,true,false,false,2,false,true,true,false +systent/dj_dashboard,systent,JavaScript,false,false,false,0,false,false,false,false +systent/dj_chart,systent,Python,false,true,false,0,false,false,false,false +aredhel-bazaar/la-taverne-du-hasard,aredhel-bazaar,PHP,false,false,false,0,false,false,false,false +Pilot824/CS3346-ArtificialIntelligence1,Pilot824,HTML,false,false,false,0,false,false,false,false +gmarciani/cimple,gmarciani,Makefile,false,false,false,0,false,false,false,false +ryan2002.rs/Space_Invaders,ryan2002.rs,Java,false,false,false,0,false,false,false,false +mitch10e/tenlog,mitch10e,Swift,false,false,false,0,false,false,false,false +spice/spice-space-pages,spice,,true,false,false,1,false,true,false,false +FacturaScripts-Plugins/reportico,FacturaScripts-Plugins,PHP,false,false,false,0,false,false,false,false +foodsharing-dev/foodsharing-android-legacy,foodsharing-dev,JavaScript,true,false,false,1,true,false,false,false +bacen/rtgsBlockChain,bacen,JavaScript,false,false,false,0,false,false,false,false +albertoluna/RetroBoard,albertoluna,JavaScript,false,false,false,0,false,false,false,false +interscity/interscity-platform/docs,interscity,,false,false,false,0,false,false,false,false +Edistra/tactic-arena,Edistra,TypeScript,true,false,false,2,true,false,true,false +berton.victor/Projeto-de-Analise,berton.victor,,false,false,false,0,false,false,false,false +HealthyDiet/HealthyDietPlus,HealthyDiet,,false,false,false,0,false,false,false,false +bagga.atul/myproject,bagga.atul,,true,false,false,2,true,true,false,false +robr3rd/notes,robr3rd,PHP,false,false,false,0,false,false,false,false +kherbz07/phonebook,kherbz07,PHP,false,false,false,0,false,false,false,false +AnnaDodson/Team_E,AnnaDodson,C++,false,false,false,0,false,false,false,false +leriaz/NetHunter-kernel,leriaz,,false,false,false,0,false,false,false,false +ibnukipa/nyewa,ibnukipa,JavaScript,false,false,false,0,false,false,false,false +xmltv-se/channel-logos,xmltv-se,Shell,false,false,false,0,false,false,false,false +sanid/vitrino,sanid,,false,false,false,0,false,false,false,false +collegi/collegi,collegi,,false,false,false,0,false,false,false,false +istiyakaminsanto/Atomic_project_istiyak_142691_b33_session11,istiyakaminsanto,PHP,false,false,false,0,false,false,false,false +ddwwcruz/wyn-lib,ddwwcruz,PHP,false,false,false,0,false,false,false,false +albertoafonsojunior/publications,albertoafonsojunior,R,false,false,false,0,false,false,false,false +ProgrammationWeb/TP1,ProgrammationWeb,JavaScript,false,false,false,0,false,false,false,false +ProgrammationWeb/Presentation,ProgrammationWeb,HTML,false,false,false,0,false,false,false,false +annaxluo/learning-robots,annaxluo,Java,false,false,false,0,false,false,false,false +cprecioso/pipify,cprecioso,TypeScript,true,false,false,1,false,true,false,false +milton.bose/scallops,milton.bose,Scala,true,false,false,1,false,true,false,false +gposcidonio/dotfiles,gposcidonio,Shell,false,false,false,0,false,false,false,false +akouthoo/TLC,akouthoo,Java,false,false,false,0,false,false,false,false +Soulweaver/mikuia-level-calc,Soulweaver,JavaScript,false,false,false,0,false,false,false,false +richizo/batty,richizo,JavaScript,false,false,false,0,false,false,false,false +yturchin/BA-Project-CafeManagement,yturchin,Java,false,false,false,0,false,false,false,false +nickmacias/eexist-web,nickmacias,C,false,false,false,0,false,false,false,false +sourplum/we_should_package_lister,sourplum,C,false,false,false,0,false,false,false,false +XieShangxu/DUI,XieShangxu,JavaScript,false,false,false,0,false,false,false,false +JohnMunsch/scrape,JohnMunsch,JavaScript,false,false,false,0,false,false,false,false +istiyakaminsanto/Istiyak_142691_B33_sssion12,istiyakaminsanto,PHP,false,false,false,0,false,false,false,false +efthaqur/eftequarul_137008_b33_session12,efthaqur,HTML,false,false,false,0,false,false,false,false +jahanjoo/jahanjoo-googlemap,jahanjoo,,false,false,false,0,false,false,false,false +mehstg/sabnzbd-docker,mehstg,,false,false,false,0,false,false,false,false +MD-CWI-NL/afivo-streamer,MD-CWI-NL,Fortran,false,false,false,0,false,false,false,false +MD-CWI-NL/afivo,MD-CWI-NL,Fortran,false,false,false,0,false,false,false,false +BO-ECLI/Rest-Api,BO-ECLI,Java,false,false,false,0,false,false,false,false +siasar-project/data,siasar-project,JavaScript,true,false,false,2,true,false,false,false +JohnBidwell/Tarea1DAA,JohnBidwell,Python,false,false,false,0,false,false,false,false +pisquared/critiq,pisquared,Python,false,true,false,0,false,false,false,false +StjepanM/snake_case,StjepanM,C#,false,false,false,0,false,false,false,false +sycom/TiddlyWiki-Plugins,sycom,JavaScript,true,false,false,1,false,true,false,false +ivanKareZ/dokit_old,ivanKareZ,Java,false,false,true,0,false,false,false,false +saloed96/blogBattle2d,saloed96,,false,false,false,0,false,false,false,false +aaron.altmejd/spacemacs-config,aaron.altmejd,EmacsLisp,false,false,false,0,false,false,false,false +mlncn/customerror,mlncn,PHP,false,false,false,0,false,false,false,false +dpenezic/g2g-transfer,dpenezic,Python,false,false,false,0,false,false,false,false +pusthaka-lis/pusthaka,pusthaka-lis,,false,false,false,0,false,false,false,false +algoriteam/ParadigmasComputacaoParalela,algoriteam,TeX,false,false,false,0,false,false,false,false +edmolten/test_phaser,edmolten,JavaScript,false,false,false,0,false,false,false,false +dariusf/elm-game,dariusf,Elm,false,false,false,0,false,false,false,false +kishor.nimbus/nudgecrm,kishor.nimbus,PHP,false,false,false,0,false,false,false,false +project-thoth/thoth,project-thoth,C++,false,false,false,0,false,false,false,false +adin/research-flow,adin,,false,false,false,0,false,false,false,false +michaeljdeeb/michaeljdeeb.gitlab.io,michaeljdeeb,CSS,true,false,false,1,false,true,false,false +xnite/harmony,xnite,JavaScript,false,false,false,0,false,false,false,false +danang-ekal/haicalpos,danang-ekal,PHP,false,false,false,0,false,false,false,false +jakobwoegerbauer/MQTTAdvancedRouting,jakobwoegerbauer,Python,false,false,false,0,false,false,false,false +mobileapplicationdevelopment/ios-airportdb-final,mobileapplicationdevelopment,Swift,false,false,false,0,false,false,false,false +spisemisu/elm-sha,spisemisu,Elm,false,false,false,0,false,false,false,false +oskopek/TransportEditor,oskopek,Java,true,false,true,3,true,true,true,false +living-map/frontend-builder,living-map,Shell,true,false,false,1,false,true,false,false +dsoromou/Hackerrank_SQL_Challenge,dsoromou,,false,false,false,0,false,false,false,false +ivansmokovic/Placeholderi,ivansmokovic,Java,false,false,false,0,false,false,false,false +morph027/check_mk-raw-edition-docker,morph027,Shell,false,false,false,0,false,false,false,false +devap/dotfiles,devap,Shell,false,false,false,0,false,false,false,false +quincyhuanghk/DemoProject,quincyhuanghk,C#,false,false,false,0,false,false,false,false +droid-tutorials/firebase-auth,droid-tutorials,Java,false,false,false,0,false,false,false,false +karlson2k/libmicrohttpd,karlson2k,C,true,false,false,1,false,true,false,false +MorningStar/Danesh-Gostar,MorningStar,HTML,false,false,false,0,false,false,false,false +partow/OverloadCVu_Archive,partow,,false,false,false,0,false,false,false,false +krintoxi/NoobSecToolkit,krintoxi,,false,false,false,0,false,false,false,false +javierguignard/rest-example,javierguignard,Python,false,false,false,0,false,false,false,false +MorningStar/KilliCent,MorningStar,Java,false,false,false,0,false,false,false,false +r1dScripts/server_health,r1dScripts,Python,false,false,false,0,false,false,false,false +jonathanwalter/dotfiles,jonathanwalter,Vimscript,false,false,false,0,false,false,false,false +ci-seminar/simpleproject-group8,ci-seminar,Shell,false,false,false,0,false,false,false,false +Mrjuanjooc/Jenkin_Netbeans,Mrjuanjooc,Java,false,false,false,0,false,false,false,false +transact/transact-wordpress,transact,PHP,false,false,false,0,false,false,false,false +harsha5500/ElizaSource,harsha5500,Java,false,false,false,0,false,false,false,false +UnseenFaith/Zenon,UnseenFaith,JavaScript,false,false,false,0,false,false,false,false +Lingo93/EventAPI,Lingo93,Java,false,false,false,0,false,false,false,false +rithvikvibhu/homechef-backend,rithvikvibhu,HTML,false,false,false,0,false,false,false,false +jbhcgeek/Practicadearrierismo,jbhcgeek,Shell,false,false,false,0,false,false,false,false +rilis/docker-ci,rilis,Shell,true,false,false,2,true,false,false,true +HaydenSD/kcdsredstone,HaydenSD,,true,false,false,1,false,false,true,false +hugo-mwe/hugo_config_idiosyncrasies,hugo-mwe,HTML,false,false,false,0,false,false,false,false +tobiasgwaaler/intero-atom,tobiasgwaaler,JavaScript,false,false,false,0,false,false,false,false +Ymerej/synchroFacHome,Ymerej,Shell,false,false,false,0,false,false,false,false +amardeep434/nitro_device,amardeep434,C,false,false,false,0,false,false,false,false +fp2cm/cm_device_fairphone_fp2,fp2cm,Shell,false,false,false,0,false,false,false,false +fresheyeball/Shpadoinkle,fresheyeball,PureScript,true,false,false,1,true,false,false,false +ShFil/carlbarks.ml,ShFil,PHP,false,false,false,0,false,false,false,false +terrchen/golang-build,terrchen,Go,false,false,false,0,false,false,false,false +LinZap/bin-word2vec,LinZap,C,false,false,false,0,false,false,false,false +vnphp/fineproxy,vnphp,PHP,true,false,false,2,false,true,true,false +CIAvash/MovieInfo,CIAvash,Elm,true,false,false,1,false,true,false,false +libreLab/bone-suppression-via-regression,libreLab,JupyterNotebook,false,false,false,0,false,false,false,false +richizo/domo-arigatou,richizo,Ruby,false,false,false,0,false,false,false,false +ShamaUgale/Selenium_FCOct16,ShamaUgale,Java,false,false,false,0,false,false,false,false +exadra37-docker/php/php-development,exadra37-docker,Shell,false,false,false,0,false,false,false,false +powersurge360/buyspy-backend,powersurge360,JavaScript,false,false,false,0,false,false,false,false +funkygoby/metronome,funkygoby,Java,false,false,false,0,false,false,false,false +jgouly/mkl27z-rs,jgouly,Rust,false,false,false,0,false,false,false,false +jahanjoo/jahanjoo-angular-search-example,jahanjoo,JavaScript,true,false,false,1,false,true,false,false +flyinprogrammer_mesos_tutorials/mesos_101,flyinprogrammer_mesos_tutorials,,false,false,false,0,false,false,false,false +pwgd/false-start-pwgd,pwgd,PHP,false,false,false,0,false,false,false,false +dimasmamot/PrakPPLHRD,dimasmamot,PHP,false,false,false,0,false,false,false,false +shaujans/dreamcatchers,shaujans,C#,false,false,false,0,false,false,false,false +PTroester/CrazyCar,PTroester,C,false,false,false,0,false,false,false,false +An0/ModulusAppveyor,An0,PowerShell,false,false,false,0,false,false,false,false +thallian/ldap-user-manager,thallian,Python,false,true,false,0,false,false,false,false +adn-latex/adnamc,adn-latex,TeX,true,false,false,1,false,true,false,false +rodrigo.gargravarr/term-config,rodrigo.gargravarr,Shell,false,false,false,0,false,false,false,false +adn-latex/adn-latex,adn-latex,Shell,false,false,false,0,false,false,false,false +victor.trucco/RTC,victor.trucco,Assembly,false,false,false,0,false,false,false,false +phoenixsecure-in/bluetiger,phoenixsecure-in,,false,false,false,0,false,false,false,false +ShamaUgale/Framework_Weekdays_VN_Oct,ShamaUgale,Java,false,false,false,0,false,false,false,false +Malsasa/repositorialldeb-bengkelubuntuorg,Malsasa,,false,false,false,0,false,false,false,false +spisemisu/elm-merkletree,spisemisu,Elm,false,false,false,0,false,false,false,false +oleg.novitskiy/examples,oleg.novitskiy,Java,false,false,false,0,false,false,false,false +Niesch/web-chall,Niesch,Go,false,false,false,0,false,false,false,false +ethanfrogers/jenkins-cha-dev,ethanfrogers,Groovy,false,false,false,0,false,false,false,false +naznin/NazninAkter_151485_B33_Session15,naznin,PHP,false,false,false,0,false,false,false,false +istiyakaminsanto/Istiyak_142691_B33_session15,istiyakaminsanto,HTML,false,false,false,0,false,false,false,false +MarcStan/NArrange,MarcStan,C#,false,false,false,0,false,false,false,false +jrobert/iuto-orauxconso,jrobert,,false,false,false,0,false,false,false,false +manojlovic/faktotum-WP-JadePHP,manojlovic,CSS,false,false,false,0,false,false,false,false +eita/cartilhagcr,eita,HTML,false,false,false,0,false,false,false,false +Arnedo5/ProjecteProva,Arnedo5,HTML,false,false,false,0,false,false,false,false +statictype/zerfall,statictype,Java,false,false,false,0,false,false,false,false +pearson-mobile/seartv-android,pearson-mobile,Java,false,false,false,0,false,false,false,false +renpy/renpy,renpy,Ren'Py,false,false,false,0,false,false,false,false +myitv/myitv-site,myitv,PHP,false,false,false,0,false,false,false,false +uraniumdawn/kafka-spark-cassandra,uraniumdawn,Scala,false,false,false,0,false,false,false,false +gate-16/osiris-public,gate-16,,false,false,false,0,false,false,false,false +craftsmen/reactive-meetup,craftsmen,Java,false,false,false,0,false,false,false,false +M1.CHPS.UPSay/carrot_juice_C,M1.CHPS.UPSay,HTML,false,false,false,0,false,false,false,false +bagage/colorlog,bagage,C++,true,false,false,2,true,true,false,false +dmitriy13/IGBT_Reports,dmitriy13,JavaScript,false,false,false,0,false,false,false,false +akouthoo/SwingMagick,akouthoo,Java,false,false,false,0,false,false,false,false +FliiFe/pronote-api,FliiFe,JavaScript,false,false,false,0,false,false,false,false +nimbusoft/eloquentapps/eloquentstore,nimbusoft,PHP,false,false,false,0,false,false,false,false +Darthoul/DialogSystemWS,Darthoul,C#,false,false,false,0,false,false,false,false +nichodges/unbiased,nichodges,Python,false,false,false,0,false,false,false,false +xgqfrms/React-App,xgqfrms,,false,false,false,0,false,false,false,false +swinkelhofer/scripts,swinkelhofer,Shell,false,false,false,0,false,false,false,false +impleotv/klvplayer,impleotv,JavaScript,false,false,false,0,false,false,false,false +nehemie/rkeos,nehemie,R,true,false,false,1,false,true,false,false +iozm/Solicitudes,iozm,PHP,false,false,false,0,false,false,false,false +Fabit/BatteryTester,Fabit,C++,false,false,false,0,false,false,false,false +abdulrahmanok/try,abdulrahmanok,,false,false,false,0,false,false,false,false +Legiew/osoms,Legiew,TypeScript,true,false,false,1,false,true,false,false +zorritotv99/zorritotv,zorritotv99,,false,false,false,0,false,false,false,false +TheCreativeCat/mmj,TheCreativeCat,HTML,false,false,false,0,false,false,false,false +0p3r4t4/PPPUCPP2nd,0p3r4t4,C++,false,false,false,0,false,false,false,false +deneb-alpha/LO_l10n_workflow,deneb-alpha,,false,false,false,0,false,false,false,false +sonJonROpa/itcast,sonJonROpa,,false,false,false,0,false,false,false,false +rgreen13/laravel-docker,rgreen13,PHP,false,false,false,0,false,false,false,false +stiemannkj1/example-git-project,stiemannkj1,Java,false,false,false,0,false,false,false,false +stiemannkj1/stiemannkj1.gitlab.io,stiemannkj1,CSS,true,false,false,1,false,false,true,false +yunhua.lee/MicroMQ,yunhua.lee,Java,false,false,true,0,false,false,false,false +krzysztof-gzocha/searcher,krzysztof-gzocha,PHP,false,false,false,0,false,false,false,false +gmarciani/amplitude,gmarciani,AMPL,false,false,false,0,false,false,false,false +aburnsni/ekc_bootstrap,aburnsni,HTML,false,false,false,0,false,false,false,false +aburnsni/ekctheme,aburnsni,PHP,false,false,false,0,false,false,false,false +aburnsni/ffs_bootstrap,aburnsni,HTML,false,false,false,0,false,false,false,false +aburnsni/ffcustom,aburnsni,,false,false,false,0,false,false,false,false +gmarciani/opmap,gmarciani,Java,false,false,false,0,false,false,false,false +gmarciani/heurissp,gmarciani,Java,false,false,false,0,false,false,false,false +gmarciani/robomap,gmarciani,Java,false,false,false,0,false,false,false,false +gmarciani/librusp,gmarciani,C,false,false,false,0,false,false,false,false +gmarciani/ipath,gmarciani,Python,false,false,false,0,false,false,false,false +gmarciani/mr-lite,gmarciani,CSS,false,false,false,0,false,false,false,false +gmarciani/gmparser,gmarciani,Java,false,false,false,0,false,false,false,false +gmarciani/assimply,gmarciani,Assembly,false,false,false,0,false,false,false,false +LNM-AlwaysBlue/AlwaysBlue,LNM-AlwaysBlue,Python,false,true,false,0,false,false,false,false +endrit-b/e-learning-project,endrit-b,,false,false,false,0,false,false,false,false +pdrocl/digital-signature-demo,pdrocl,Java,false,false,true,0,false,false,false,false +kiith/slides,kiith,JavaScript,false,false,false,0,false,false,false,false +jeetkanjani7/Sight,jeetkanjani7,C++,false,false,false,0,false,false,false,false +Rich-Harris/reorder-topojson,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +dbechrd/RicoTech,dbechrd,C,false,false,false,0,false,false,false,false +mauron85/react-native-geofence,mauron85,Swift,false,false,false,0,false,false,false,false +amardeep434/nitro_base,amardeep434,,false,false,false,0,false,false,false,false +aquarchitect/iGraphics,aquarchitect,Swift,false,false,false,0,false,false,false,false +boomix/CSGO-Capture-the-flag,boomix,SourcePawn,false,false,false,0,false,false,false,false +akkarin/LinuxSockets,akkarin,C++,false,false,false,0,false,false,false,false +undergroundman/jalalidate,undergroundman,Shell,false,false,false,0,false,false,false,false +worr/rust-kqueue,worr,Rust,false,false,false,0,false,false,false,false +g-dev/Aldeeran,g-dev,Java,false,false,false,0,false,false,false,false +MarcoDiaz1963/BIBLIO,MarcoDiaz1963,PLpgSQL,false,false,false,0,false,false,false,false +gazdik/FTGL3,gazdik,C++,false,false,false,0,false,false,false,false +marsbot/pelican-webassets,marsbot,Python,false,false,false,0,false,false,false,false +public-mirror/awesome-vue,public-mirror,,false,false,false,0,false,false,false,false +yashguru/learning-python,yashguru,Python,false,false,false,0,false,false,false,false +npeham/mqtt-logger,npeham,TypeScript,false,false,false,0,false,false,false,false +Rhaeo/react-typescript-visual-studio-project-template,Rhaeo,,false,false,false,0,false,false,false,false +arsouyes/bookmaker,arsouyes,Makefile,true,false,false,2,true,true,false,false +annaxluo/spect-clustering,annaxluo,Matlab,false,false,false,0,false,false,false,false +acm-utv/latex,acm-utv,TeX,false,false,false,0,false,false,false,false +GreedDev/00Chess,GreedDev,Java,false,false,false,0,false,false,false,false +kerajon/ui-torrent-streamer,kerajon,JavaScript,false,false,false,0,false,false,false,false +johnnyzz/pharonos,johnnyzz,C,false,false,false,0,false,false,false,false +CIP-Development-Pub/XamTest06,CIP-Development-Pub,C#,false,false,false,0,false,false,false,false +LiveOrDevTrying/TwitchKeno,LiveOrDevTrying,,false,false,false,0,false,false,false,false +sdonalcreative/build-general-purpose,sdonalcreative,JavaScript,false,false,false,0,false,false,false,false +Privil/DataManager,Privil,C#,false,false,false,0,false,false,false,false +coderlex/ur-kons-markup,coderlex,CSS,false,false,false,0,false,false,false,false +Privil/VersionChecker,Privil,C#,false,false,false,0,false,false,false,false +istiyakaminsanto/Istiyak_142691_B35_session18,istiyakaminsanto,PHP,false,false,false,0,false,false,false,false +veer66/clj-corenlp-client,veer66,Clojure,false,false,false,0,false,false,false,false +EswarReddy/EZTest,EswarReddy,Apex,false,false,false,0,false,false,false,false +barrel-db/teleport,barrel-db,Erlang,true,false,false,1,false,true,false,false +kameme1208/kameRecipeManager3,kameme1208,Java,false,false,false,0,false,false,false,false +himanshu-dixit/Competitive,himanshu-dixit,C++,false,false,false,0,false,false,false,false +meso-star/solstice,meso-star,C,false,false,false,0,false,false,false,false +hearoy/M1-projetNomade,hearoy,TypeScript,false,false,false,0,false,false,false,false +ant-guillot/ExploringJapanTradeApp_Kaggle,ant-guillot,R,false,false,false,0,false,false,false,false +xivo.solutions/xivo-confd-client,xivo.solutions,Python,false,true,false,0,false,false,false,false +xivo.solutions/xivo-manage-db,xivo.solutions,Python,false,true,false,0,false,false,false,false +engSERGIU/Algoritmi-fundamentali,engSERGIU,C,false,false,false,0,false,false,false,false +engSERGIU/Magazin-online,engSERGIU,Java,false,false,false,0,false,false,false,false +engSERGIU/CriptoTXT,engSERGIU,Assembly,false,false,false,0,false,false,false,false +engSERGIU/FIFOmem,engSERGIU,VHDL,false,false,false,0,false,false,false,false +engSERGIU/MIPS16-processor,engSERGIU,VHDL,false,false,false,0,false,false,false,false +engSERGIU/Sudoku-Solver,engSERGIU,Python,false,false,false,0,false,false,false,false +gitlab-com/githost-runbooks,gitlab-com,,true,false,false,1,false,true,false,false +johnnyzz/pharo-nos-build,johnnyzz,,true,false,false,1,true,false,false,false +really-need-an-api-key/meme-overlay,really-need-an-api-key,Java,false,false,false,0,false,false,false,false +craigbarnes/ltcn,craigbarnes,Lua,true,false,false,1,false,true,false,false +jakpawlik/sublime-config,jakpawlik,,false,false,false,0,false,false,false,false +snehaldangroshiya/erp-service,snehaldangroshiya,Go,false,false,false,0,false,false,false,false +signal9/cpp-env,signal9,Shell,true,false,false,1,true,false,false,false +xivo.solutions/xivo-ctid,xivo.solutions,Python,false,true,false,0,false,false,false,false +unityversity/simbridge,unityversity,C#,false,false,false,0,false,false,false,false +PDSW/2016-2-PARCIAL-2T,PDSW,Java,false,false,false,0,false,false,false,false +ladoss/qualescola,ladoss,Java,false,false,false,0,false,false,false,false +p-tommaso/LCLUtilities,p-tommaso,Java,false,false,true,0,false,false,false,false +thogg4/terraform-ruby,thogg4,Ruby,true,false,false,1,false,true,false,false +7fate/centralized-configuration,7fate,,false,false,true,0,false,false,false,false +kohoutovice/Sirius,kohoutovice,C++,true,false,false,3,true,false,true,true +yannickvg/ionic-docker,yannickvg,,false,false,false,0,false,false,false,false +daitan-learn/docker-basics,daitan-learn,JavaScript,false,false,false,0,false,false,false,false +mdaffin/mdaffin.gitlab.io,mdaffin,HTML,true,false,false,1,false,true,false,false +hft_stuttgart_swp2_ws2016/Server,hft_stuttgart_swp2_ws2016,Java,true,false,true,3,true,true,true,false +M1.CHPS.UPSay/cmake_tutorial,M1.CHPS.UPSay,C++,false,false,false,0,false,false,false,false +granmirupa/PDFTool_Ruggiero,granmirupa,Java,false,false,false,0,false,false,false,false +rubdos/texlive-vub,rubdos,PostScript,true,false,false,1,false,true,false,false +ericrieper/friendster,ericrieper,C#,false,false,false,0,false,false,false,false +orbifx/ocaml-state-machine,orbifx,OCaml,false,false,false,0,false,false,false,false +atrament/programmer-pour-la-recherche,atrament,Makefile,false,false,false,0,false,false,false,false +skuld/ttnn_guide-install,skuld,TeX,false,false,false,0,false,false,false,false +nix.k/NAT-hackathon,nix.k,Java,false,false,false,0,false,false,false,false +Aethor/ModernNeo,Aethor,C,false,false,false,0,false,false,false,false +Gx-Estudio/web2,Gx-Estudio,CSS,false,false,false,0,false,false,false,false +stefansundin/aws-console-fixes,stefansundin,JavaScript,false,false,false,0,false,false,false,false +dkomarek/flashwork,dkomarek,PHP,false,false,false,0,false,false,false,false +dnezic/angular-tutorial,dnezic,HTML,false,false,false,0,false,false,false,false +dkg/gpgme,dkg,C,false,false,false,0,false,false,false,false +craigbarnes/dockerfiles,craigbarnes,Shell,true,false,false,1,true,false,false,false +bennyindra/my-project,bennyindra,Java,false,false,false,0,false,false,false,false +HackerHappyHour/gitlab-LED,HackerHappyHour,JavaScript,false,false,false,0,false,false,false,false +rajvaibhavsingh2310/machineLearning,rajvaibhavsingh2310,Python,false,false,false,0,false,false,false,false +twtch/Jeu2D,twtch,C#,false,false,false,0,false,false,false,false +kabo/serverless-lambda-comments,kabo,JavaScript,false,false,false,0,false,false,false,false +AlphaWong/COMP4422-ASS1,AlphaWong,JavaScript,false,false,false,0,false,false,false,false +librehealth/librehealth.io,librehealth,CSS,true,false,false,1,false,true,false,false +richardbrinkman/codeceptionTest,richardbrinkman,PHP,false,false,false,0,false,false,false,false +chaw/square-limit,chaw,Scheme,false,false,false,0,false,false,false,false +miarpsc-exercises/Ex17-2,miarpsc-exercises,PHP,false,false,false,0,false,false,false,false +miniit/instagram-ripper-awesome,miniit,Ruby,false,false,false,0,false,false,false,false +fless-tutorial/tutorial1,fless-tutorial,HTML,false,false,false,0,false,false,false,false +bemolx/android_kernel_mediatek_mt6795,bemolx,,false,false,false,0,false,false,false,false +infertux/buckynix,infertux,Elixir,false,false,false,0,false,false,false,false +astron-misc/PowerSensor,astron-misc,C++,false,false,false,0,false,false,false,false +spice/spice-common,spice,C,true,false,false,1,false,true,false,false +consumer-driven-contract-helm-deployment/pact-broker,consumer-driven-contract-helm-deployment,Ruby,false,false,false,0,false,false,false,false +Kidoncio/Programacao1-Lista2,Kidoncio,Java,false,false,false,0,false,false,false,false +RobertCochran/shadowvard-engine,RobertCochran,CommonLisp,false,false,false,0,false,false,false,false +pybe/PyBE,pybe,Python,false,false,false,0,false,false,false,false +finding-ray/proto,finding-ray,Python,true,true,false,1,false,false,false,false +Curtis017/Rubrik-Cube,Curtis017,JavaScript,false,false,false,0,false,false,false,false +commonshost/core,commonshost,JavaScript,true,false,false,1,false,true,false,false +Raysail/rlaravel,Raysail,PHP,false,false,false,0,false,false,false,false +adi90x/rancher-gen-rap,adi90x,Go,true,false,false,2,true,false,true,false +wilkinsondarolt/python-studies,wilkinsondarolt,Python,false,false,false,0,false,false,false,false +BluemlJ/GSAT,BluemlJ,HTML,true,false,false,3,true,true,false,false +nathansenn/blacksmetals,nathansenn,JavaScript,false,false,false,0,false,false,false,false +rnger/amath,rnger,C++,false,false,false,0,false,false,false,false +manuperazafa/habbofa2,manuperazafa,CSS,false,false,false,0,false,false,false,false +coppercoder/library-app,coppercoder,JavaScript,false,false,false,0,false,false,false,false +Lalytto/sadora,Lalytto,Java,false,false,false,0,false,false,false,false +olenayeremenko/ruby_koans,olenayeremenko,Ruby,false,false,false,0,false,false,false,false +nvan/sql-hungting-dog,nvan,C#,false,false,false,0,false,false,false,false +qTox/qtox-irc-logs,qTox,Shell,false,false,false,0,false,false,false,false +qTox/blog,qTox,CSS,false,false,false,0,false,false,false,false +qTox/qTox-Website,qTox,HTML,false,false,false,0,false,false,false,false +qTox/qTox_mirror_old,qTox,C++,false,false,false,0,false,false,false,false +losylam/vectorfablabo,losylam,CSS,false,false,false,0,false,false,false,false +svigruppo/git-internals,svigruppo,Java,false,false,false,0,false,false,false,false +garbee/medialibrary,garbee,PHP,false,false,false,0,false,false,false,false +thomasave/Parsodus,thomasave,C++,false,false,false,0,false,false,false,false +maniacmic/vimrc,maniacmic,Vimscript,false,false,false,0,false,false,false,false +DunnLewis/FUI_TOOLS,DunnLewis,Lua,false,false,false,0,false,false,false,false +mobileapplicationdevelopment/ios-hue-final,mobileapplicationdevelopment,Swift,false,false,false,0,false,false,false,false +davidllewellyn/davidllewellyn.gitlab.io,davidllewellyn,HTML,false,false,false,0,false,false,false,false +LostRedSky/utils,LostRedSky,CMake,true,false,false,2,true,true,false,false +letsracebwoi1/sublime-sim,letsracebwoi1,,false,false,false,0,false,false,false,false +gpo04174/HSUtilityCSharp,gpo04174,C#,false,false,false,0,false,false,false,false +shlokgilda/git_basics,shlokgilda,,false,false,false,0,false,false,false,false +chrollo/StackArrayBased,chrollo,C,false,false,false,0,false,false,false,false +hackers4peace/solid-character,hackers4peace,JavaScript,false,false,false,0,false,false,false,false +aelita/docker-docker-compose,aelita,,true,false,false,3,true,true,false,false +jjcarlton/TestProject,jjcarlton,,false,false,false,0,false,false,false,false +dannyrios81/bancoABC,dannyrios81,PHP,false,false,false,0,false,false,false,false +gpo04174/HSUtilityJava,gpo04174,Java,false,false,false,0,false,false,false,false +gpo04174/HSUtilityAndroid,gpo04174,Java,false,false,false,0,false,false,false,false +huynhtran.dangkhoa/Reckless,huynhtran.dangkhoa,CSS,false,false,false,0,false,false,false,false +thoughtvector/grpc-ping-pong,thoughtvector,Python,false,true,false,0,false,false,false,false +fsftn/NatConf,fsftn,Python,false,true,false,0,false,false,false,false +zetok/disk_io,zetok,Rust,true,false,false,1,false,true,false,false +mobileapplicationdevelopment/ios-contactcard-final,mobileapplicationdevelopment,Swift,false,false,false,0,false,false,false,false +pdiasalmeida/osm-street-names,pdiasalmeida,Python,false,false,false,0,false,false,false,false +Geosinus/SDI_Developing_a_WebApp,Geosinus,,false,false,false,0,false,false,false,false +sebdeckers/base-emoji-512,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +voximity/discoid2,voximity,C#,false,false,false,0,false,false,false,false +twcctz500000/haonaturecom,twcctz500000,,false,false,false,0,false,false,false,false +T-Firefly/fireble,T-Firefly,C,false,false,false,0,false,false,false,false +xdays/xdays.gitlab.io,xdays,Python,false,false,false,0,false,false,false,false +FCOO/ifm-maps,FCOO,JavaScript,false,false,false,0,false,false,false,false +ibnuda/Teteks,ibnuda,F#,false,false,false,0,false,false,false,false +redcore/sisyphus,redcore,Python,false,false,false,0,false,false,false,false +JFerra/SDL,JFerra,C++,false,false,false,0,false,false,false,false +ad-si-2016-2/p3-g2,ad-si-2016-2,JavaScript,false,false,false,0,false,false,false,false +kennross/JSF_JAVAC21,kennross,JavaScript,false,false,false,0,false,false,false,false +chaugioi18/Cinema,chaugioi18,JavaScript,false,false,false,0,false,false,false,false +mikulaspoul/fibaro_power_reader,mikulaspoul,Python,false,true,false,0,false,false,false,false +amardeep434/nitro_settings,amardeep434,Java,false,false,false,0,false,false,false,false +amardeep434/nitro_system_sepolicy,amardeep434,C,false,false,false,0,false,false,false,false +SamehMohamed/software,SamehMohamed,,false,false,false,0,false,false,false,false +Mohamed10/SWE-Project,Mohamed10,Java,false,false,false,0,false,false,false,false +tomecki/winietki,tomecki,Python,false,true,false,0,false,false,false,false +pisilinux_idle/playground,pisilinux_idle,Python,false,false,false,0,false,false,false,false +Syncleus/Ferma,Syncleus,Java,false,false,false,0,false,false,false,false +javiergv87/goEuro,javiergv87,Java,false,false,false,0,false,false,false,false +MarkJoe/CRingProject,MarkJoe,TeX,false,false,false,0,false,false,false,false +alinngheorghe/posd1,alinngheorghe,Java,false,false,false,0,false,false,false,false +gmarciani/research,gmarciani,TeX,false,false,false,0,false,false,false,false +hadesrofl/Jimmey,hadesrofl,Java,true,false,true,2,true,true,false,false +evanstoner/kudzu,evanstoner,Java,true,false,true,2,true,true,false,false +thmjpr/Air_Quality,thmjpr,C,false,false,false,0,false,false,false,false +dsasmita/listbisnis-v2,dsasmita,JavaScript,false,false,false,0,false,false,false,false +tekoestudio/tekotipsy,tekoestudio,PHP,false,false,false,0,false,false,false,false +thoelken/astarget,thoelken,PHP,true,false,false,1,false,true,false,false +clusterpress/clusterpress-doc,clusterpress,PHP,false,false,false,0,false,false,false,false +joaopizani/lambda1-transpiler,joaopizani,Agda,false,false,false,0,false,false,false,false +fempar/SISL,fempar,C,false,false,false,0,false,false,false,false +fempar/PENF,fempar,Fortran,false,false,false,0,false,false,false,false +fempar/Lib_VTK_IO,fempar,Fortran,false,false,false,0,false,false,false,false +fempar/fox,fempar,Fortran,false,false,false,0,false,false,false,false +fempar/FLAP,fempar,Fortran,false,false,false,0,false,false,false,false +cihancil/unizone-mobile,cihancil,Objective-C,false,false,false,0,false,false,false,false +techco-public/my-first-project,techco-public,HTML,false,false,false,0,false,false,false,false +PoroCYon/siv,PoroCYon,Haskell,false,false,false,0,false,false,false,false +miniit/whatspp-farm,miniit,Ruby,false,false,false,0,false,false,false,false +SAFRAN/BBFMM2D_Uniform,SAFRAN,C++,false,false,false,0,false,false,false,false +mmosconi/mediawiki,mmosconi,,true,false,false,1,true,false,false,false +EuropeanSpaceAgency/PyHole,EuropeanSpaceAgency,Python,false,false,false,0,false,false,false,false +ubpaxum/sql-drus,ubpaxum,Java,true,false,false,2,true,true,false,false +manufacturaind/d3-imagem,manufacturaind,,false,false,false,0,false,false,false,false +nhanvu/cyber-duck,nhanvu,JavaScript,false,false,false,0,false,false,false,false +ZZ3F2/ProjektIAE,ZZ3F2,Java,false,false,false,0,false,false,false,false +mattl/zoomdl,mattl,Ruby,false,false,false,0,false,false,false,false +interscity/interscity-platform/benchmark,interscity,Ruby,false,false,false,0,false,false,false,false +alimaldev/drupal,alimaldev,PHP,false,false,false,0,false,false,false,false +Sknictik/random-music-alarm,Sknictik,Java,false,false,false,0,false,false,false,false +govind.k/WPCodeStandards,govind.k,,false,false,false,0,false,false,false,false +kylehqcom/goapi,kylehqcom,Go,true,false,false,1,false,true,false,false +redock/critical-kits,redock,HTML,false,false,false,0,false,false,false,false +f.zolfaghari89/themeAgency,f.zolfaghari89,CSS,false,false,false,0,false,false,false,false +danicm85/moo_b-full,danicm85,Java,false,false,false,0,false,false,false,false +vandy-aad-3/MusicPlayer,vandy-aad-3,Java,false,false,false,0,false,false,false,false +patrickcr/pagemplois,patrickcr,JavaScript,false,false,false,0,false,false,false,false +TommyT43825/Geocoding_Thermal_TIFFs,TommyT43825,Python,false,false,false,0,false,false,false,false +vandy-aad-3/PingPongReceiverService,vandy-aad-3,Java,false,false,false,0,false,false,false,false +joffily/SingleServlet,joffily,Java,false,false,false,0,false,false,false,false +thinkbit/styleguide,thinkbit,,false,false,false,0,false,false,false,false +minsuu/osproj3,minsuu,,false,false,false,0,false,false,false,false +OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false +JGH153/unreal3personRunner,JGH153,,false,false,false,0,false,false,false,false +grtensor/grtensor,grtensor,,false,false,false,0,false,false,false,false +DmitryTarasevich/ruby,DmitryTarasevich,Ruby,false,false,false,0,false,false,false,false +hongping1224/TCPServer,hongping1224,Go,false,false,false,0,false,false,false,false +shalukalps/image-loading,shalukalps,Java,false,false,false,0,false,false,false,false +chst8754/OpenDualClassFramework,chst8754,C#,false,false,false,0,false,false,false,false +Sylux/algav,Sylux,C,false,false,false,0,false,false,false,false +nozzleman101/electron-boilerplate,nozzleman101,JavaScript,true,false,false,2,false,true,false,false +palakurthivishal/cv5,palakurthivishal,CSS,false,false,false,0,false,false,false,false +kargathia/PRC_Sluice,kargathia,C++,true,false,false,1,true,false,false,false +roddhjav/roddhjav.gitlab.io,roddhjav,HTML,true,false,false,1,false,true,false,false +dockerhome/bin,dockerhome,Shell,false,false,false,0,false,false,false,false +citygro/docker-and-compose,citygro,Shell,false,false,false,0,false,false,false,false +markuz/FloodMapNZ-SensorNode,markuz,C++,false,false,false,0,false,false,false,false +ardifasilkom/TugasKelompokBasdat,ardifasilkom,PHP,false,false,false,0,false,false,false,false +nickcollins/zinal,nickcollins,Racket,false,false,false,0,false,false,false,false +linuxtardis/robofat,linuxtardis,C++,false,false,false,0,false,false,false,false +ShamaUgale/FCWeekend_Nov,ShamaUgale,Java,false,false,false,0,false,false,false,false +vikash.patel/qwertyu,vikash.patel,JavaScript,false,false,true,0,false,false,false,false +ThomasTJ/AllBoardView,ThomasTJ,CSS,false,false,false,0,false,false,false,false +danxuliu/android_device_fairphone_fp1,danxuliu,C++,false,false,false,0,false,false,false,false +grase/coova-chilli,grase,C,false,false,false,0,false,false,false,false +mym-br/gama_tts_speech_dispatcher_module,mym-br,C++,false,false,false,0,false,false,false,false +mym-br/gama_tts,mym-br,C++,false,false,false,0,false,false,false,false +sebdeckers/cache-digest-immutable,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +robigalia/sel4,robigalia,Makefile,true,false,false,1,false,true,false,false +gistrec/BossBar,gistrec,PHP,false,false,false,0,false,false,false,false +diamondlight/PPWB_13,diamondlight,PHP,false,false,false,0,false,false,false,false +sveeke/Linux-basics,sveeke,,false,false,false,0,false,false,false,false +nmrony/gtni,nmrony,JavaScript,false,false,false,0,false,false,false,false +BafDyce/adventofcode,BafDyce,Rust,false,false,false,0,false,false,false,false +miniit/drdealer,miniit,Ruby,false,false,false,0,false,false,false,false +ThomasTJ/AllBoardViewHTML,ThomasTJ,PHP,false,false,false,0,false,false,false,false +antoine_c/C_2048,antoine_c,C,false,false,false,0,false,false,false,false +anthonykgross/sample-continuous-deployment,anthonykgross,PHP,false,false,false,0,false,false,false,false +encore-un/encore-un-my-cool-anti-ed-bot,encore-un,JavaScript,false,false,false,0,false,false,false,false +malgo/skijumping,malgo,HTML,false,false,false,0,false,false,false,false +benbelga/muscleHPC,benbelga,Python,false,false,false,0,false,false,false,false +simohoor/1617-WDAD4-GR06,simohoor,C#,false,false,false,0,false,false,false,false +brunoflora/framework-material,brunoflora,JavaScript,false,false,false,0,false,false,false,false +hongping1224/Guolin2,hongping1224,C#,false,false,false,0,false,false,false,false +raspberryShake-public/raspShake-enclosure,raspberryShake-public,,false,false,false,0,false,false,false,false +joffily/loja-javinha,joffily,Java,false,false,true,0,false,false,false,false +shatunrus/Centos,shatunrus,JavaScript,false,false,false,0,false,false,false,false +taciturn-pachyderm/knights-of-something-notable,taciturn-pachyderm,Java,true,false,false,2,true,true,false,false +m3206/cours,m3206,,false,false,false,0,false,false,false,false +michirunakam/tarea2matlab,michirunakam,Matlab,false,false,false,0,false,false,false,false +rationalcyber/dashboard_notes,rationalcyber,JavaScript,false,false,false,0,false,false,false,false +spice/spice-space,spice,HTML,false,false,false,0,false,false,false,false +nyenye/love2d-arpg,nyenye,Lua,false,false,false,0,false,false,false,false +SergeyDrozdenko/my-new-proj,SergeyDrozdenko,HTML,false,false,false,0,false,false,false,false +trustable/trustable.gitlab.io,trustable,CSS,true,false,false,1,false,true,false,false +sducher/M3206,sducher,Shell,false,false,false,0,false,false,false,false +crmares/myFirstRuby,crmares,Ruby,false,false,false,0,false,false,false,false +freevolution/exemple-3-merge-conflict,freevolution,,false,false,false,0,false,false,false,false +garantiertnicht/MobTest,garantiertnicht,Java,true,false,false,1,true,false,false,false +victor_riascos_SENA/proyectp_senias_y_letras,victor_riascos_SENA,C#,false,false,false,0,false,false,false,false +richizo/castor-library,richizo,JavaScript,false,false,false,0,false,false,false,false +moosehawk/reactmpls-demo,moosehawk,JavaScript,false,false,false,0,false,false,false,false +odw-tw/wcdp2016-website,odw-tw,CSS,false,false,false,0,false,false,false,false +WangMengnan/Serendipity,WangMengnan,JavaScript,false,false,false,0,false,false,false,false +cmr/lua-rvemu,cmr,Lua,false,false,false,0,false,false,false,false +guptarajat2123/UConnect,guptarajat2123,TypeScript,false,false,false,0,false,false,false,false +Ogure/PI2-Project,Ogure,Java,false,false,false,0,false,false,false,false +vnphp/request-logger-bundle,vnphp,PHP,true,false,false,2,false,true,true,false +fiasco/lfstop,fiasco,C++,false,false,false,0,false,false,false,false +EdgedWks/sxmp,EdgedWks,C,false,false,false,0,false,false,false,false +kyon_kun/reg-programas,kyon_kun,JavaScript,false,false,false,0,false,false,false,false +coderaiser/zames,coderaiser,JavaScript,false,false,false,0,false,false,false,false +mibcadet/dotfiles,mibcadet,Shell,false,false,false,0,false,false,false,false +zannalov/votequick,zannalov,JavaScript,false,false,false,0,false,false,false,false +NaomiPendragon/CCISeg,NaomiPendragon,,false,false,false,0,false,false,false,false +kn0ll/react-spa-boilerplate,kn0ll,JavaScript,false,false,false,0,false,false,false,false +miniit/primefaces-custom-mindmap,miniit,JavaScript,false,false,false,0,false,false,false,false +irbisadm/iot-intercom,irbisadm,HTML,false,false,false,0,false,false,false,false +miniit/mercadolibre-crush,miniit,Java,false,false,true,0,false,false,false,false +Eaknyt/ELib-QtPropertyEditor,Eaknyt,C++,false,false,false,0,false,false,false,false +bradanlane/ros-i2cpwmboard,bradanlane,C++,true,false,false,1,false,false,true,false +stevendobay/seed,stevendobay,Scala,false,false,false,0,false,false,false,false +musienkoyuriy/miner-lab,musienkoyuriy,JavaScript,false,false,false,0,false,false,false,false +samuelmiranda46/projetoteds2016,samuelmiranda46,Java,false,false,false,0,false,false,false,false +joyglyncel/ladiesdorm,joyglyncel,Java,false,false,false,0,false,false,false,false +ylenglish/good-english,ylenglish,,false,false,false,0,false,false,false,false +aaa51507/Slim2xMVC,aaa51507,PHP,false,false,false,0,false,false,false,false +vnphp/presenter-bundle,vnphp,PHP,true,false,false,2,false,true,true,false +jacky-htg/wira-erp-backend,jacky-htg,Go,false,false,false,0,false,false,false,false +ALU/nuage_vsd_abstraction_from_yaml,ALU,Python,false,true,false,0,false,false,false,false +miniit/mvn-enterprise-archetype,miniit,,false,false,false,0,false,false,false,false +Yanrs/projetointegrado,Yanrs,CSS,false,false,false,0,false,false,false,false +andrebsguedes/das-caffe-images,andrebsguedes,Python,false,true,false,0,false,false,false,false +alph-project/alph.py,alph-project,Python,false,false,false,0,false,false,false,false +icaropires/ProjetoFinal_VHDL,icaropires,VHDL,false,false,false,0,false,false,false,false +andrewbanchich/editorial-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +vinay-s17/NivataaSystems_ChallengeRound,vinay-s17,CSS,false,false,false,0,false,false,false,false +hacklabor/Google_Standortverlauf,hacklabor,VisualBasic,false,false,false,0,false,false,false,false +vortexadventures/void,vortexadventures,PHP,false,false,false,0,false,false,false,false +brennohayden/ZupTestCarosuel,brennohayden,Objective-C,false,false,false,0,false,false,false,false +liamesteban/laptop,liamesteban,Python,false,false,false,0,false,false,false,false +akers1405/Clueless,akers1405,Python,false,false,false,0,false,false,false,false +akira/oikos-2,akira,TypeScript,false,false,false,0,false,false,false,false +famvec/reiki,famvec,HTML,false,false,false,0,false,false,false,false +belguith.chachia/jukebandMVC,belguith.chachia,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg_nicp_local_mapper,srrg-software,C++,false,false,false,0,false,false,false,false +seeqlabs/api-python,seeqlabs,Python,true,false,false,1,false,true,false,false +zwick/rget,zwick,Rust,false,false,false,0,false,false,false,false +samilar/RAF-Package,samilar,PHP,false,false,false,0,false,false,false,false +srrg-software/srrg_core_map_global_optimization,srrg-software,CMake,false,false,false,0,false,false,false,false +vnphp/media-extension-bundle,vnphp,PHP,true,false,false,2,false,true,true,false +gvallverdu/cours-python,gvallverdu,HTML,false,false,false,0,false,false,false,false +s2u/s2u_parallax_onepage,s2u,CSS,false,false,false,0,false,false,false,false +nullsec/cerebro,nullsec,C++,false,false,false,0,false,false,false,false +tilasoldo/openfoam_share,tilasoldo,C,false,false,false,0,false,false,false,false +sepulworld/javier-williamson-core-values,sepulworld,,false,false,false,0,false,false,false,false +LightAndLight/phil,LightAndLight,Haskell,false,false,false,0,false,false,false,false +neurogami/TWO-simple-demo,neurogami,Processing,false,false,false,0,false,false,false,false +JJJollyjim/1e-6,JJJollyjim,Rust,false,false,false,0,false,false,false,false +yaoz/emacs.d,yaoz,EmacsLisp,false,false,false,0,false,false,false,false +mandark97/MakerProgress,mandark97,Ruby,false,false,false,0,false,false,false,false +dameety/laravel-church-sermons-app,dameety,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg_nw_calibration,srrg-software,C++,true,false,false,2,true,true,false,false +dansef/A-hub,dansef,JavaScript,false,false,false,0,false,false,false,false +hendrawd/gamehimka,hendrawd,Java,false,false,false,0,false,false,false,false +opap-parse/opap-python,opap-parse,Python,false,false,false,0,false,false,false,false +Guilhermeb/gitlabdemo,Guilhermeb,Python,true,false,false,1,true,false,false,false +project-polaris/api,project-polaris,Kotlin,false,false,false,0,false,false,false,false +masarov/digit-api,masarov,Python,false,true,false,0,false,false,false,false +Codeassasin/Subscriptions,Codeassasin,PHP,false,false,false,0,false,false,false,false +ztane/python-bitbucket,ztane,Python,false,true,false,0,false,false,false,false +vgorcinschi/cejv569Assignment3,vgorcinschi,Java,false,false,false,0,false,false,false,false +samifss/seebd.net,samifss,,false,false,false,0,false,false,false,false +yattering/Loader,yattering,Assembly,false,false,false,0,false,false,false,false +firomerorom4/Vision4Living,firomerorom4,HTML,false,false,false,0,false,false,false,false +OpenMusicKontrollers/midi_matrix.lv2,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false +dariom/lbdm,dariom,C,true,false,false,5,false,false,false,false +beto/isardapi,beto,Python,false,false,false,0,false,false,false,false +equake/aws-spot-fleet-helper,equake,Python,true,true,false,1,false,true,false,false +rdmullett/portalhostnamechange,rdmullett,Shell,false,false,false,0,false,false,false,false +NTPsec/blog,NTPsec,CSS,true,false,false,2,false,true,true,false +janslow/ci-build-version,janslow,TypeScript,true,false,false,2,false,true,true,false +pseudo_sudo/john-website,pseudo_sudo,CSS,false,false,false,0,false,false,false,false +hemant.arora/twitterscroll-widget-w-search,hemant.arora,PHP,false,false,false,0,false,false,false,false +JAMKIT/CI-setup,JAMKIT,,false,false,false,0,false,false,false,false +kwask/No-Space-For-Error,kwask,C++,false,false,false,0,false,false,false,false +kwask/ReversePolishNotation,kwask,Java,false,false,false,0,false,false,false,false +macsy/webprojektiR11,macsy,JavaScript,false,false,false,0,false,false,false,false +vandy-aad-3/aad-3-assg-2,vandy-aad-3,Java,false,false,false,0,false,false,false,false +vandy-aad-3/aad-3-assg-3,vandy-aad-3,Java,false,false,false,0,false,false,false,false +SebastianHoppa/newtours-demoaut-com,SebastianHoppa,Java,false,false,false,0,false,false,false,false +mpimentel/tutorials-deep-learning,mpimentel,JupyterNotebook,false,false,false,0,false,false,false,false +aleks001/haproxy,aleks001,,false,false,false,0,false,false,false,false +benschhold/oppo_common,benschhold,Java,false,false,false,0,false,false,false,false +meksiabdou/Ajax_JS,meksiabdou,JavaScript,false,false,false,0,false,false,false,false +mihirk/terraform-aws-multiple-environment-blue-green-deployments,mihirk,HCL,false,false,false,0,false,false,false,false +semps/openssde,semps,Python,false,false,false,0,false,false,false,false +pdifranc/tbd,pdifranc,Python,false,true,false,0,false,false,false,false +coderlex/beauty-of-lake,coderlex,HTML,true,false,false,1,false,false,true,false +darmawan.fatria/df-sale-addons,darmawan.fatria,Python,false,false,false,0,false,false,false,false +razorsim/confimi,razorsim,PHP,false,false,false,0,false,false,false,false +geminhya/guitarbunch,geminhya,,false,false,false,0,false,false,false,false +ArtificialAmateur/jackal-toolkit,ArtificialAmateur,Python,false,false,false,0,false,false,false,false +mt6797/prebuilts,mt6797,,false,false,false,0,false,false,false,false +Akrobate/api-microservices-bus,Akrobate,JavaScript,false,false,false,0,false,false,false,false +andrewbanchich/dimension-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +slashdeploy/microservice-example,slashdeploy,JavaScript,false,false,false,0,false,false,false,false +vinaychandranvs/pikzel-shadow,vinaychandranvs,Java,false,false,false,0,false,false,false,false +Fodoj/packt-terraform-book,Fodoj,HCL,true,false,false,2,false,true,true,false +amwebdeveloper/curriculum,amwebdeveloper,PHP,false,false,false,0,false,false,false,false +yattering/protected_loader,yattering,C,false,false,false,0,false,false,false,false +devination/devination.gitlab.io,devination,HTML,false,false,false,0,false,false,false,false +ideascup/onearme,ideascup,CSS,false,false,false,0,false,false,false,false +mt6797/android,mt6797,,false,false,false,0,false,false,false,false +wanderlandtravelers/wanderlandtravelers.gitlab.io,wanderlandtravelers,JavaScript,true,false,false,1,false,true,false,false +PainHex/rust-playground-2,PainHex,Rust,false,false,false,0,false,false,false,false +pfjason/Batch-Transcoder,pfjason,C#,false,false,false,0,false,false,false,false +Zak/MettaScript-Editor,Zak,Java,false,false,false,0,false,false,false,false +sh4m1l65/zodiac,sh4m1l65,Go,false,false,false,0,false,false,false,false +knocte/fsx,knocte,F#,true,false,false,4,false,true,false,false +cPTechs/autossh-iterm-tabs,cPTechs,Perl,false,false,false,0,false,false,false,false +cPTechs/autossh-terminal,cPTechs,Perl,false,false,false,0,false,false,false,false +qeshi/gigfinder,qeshi,Java,false,false,true,0,false,false,false,false +dgallegos/mi_ciudad,dgallegos,JavaScript,false,false,false,0,false,false,false,false +dinhbinh1610/express-ejs-seed,dinhbinh1610,JavaScript,false,false,false,0,false,false,false,false +koljakub/neural-network,koljakub,Python,false,false,false,0,false,false,false,false +manelcc/multidivisa,manelcc,Java,false,false,false,0,false,false,false,false +kargathia/PRC_Sort,kargathia,C++,false,false,false,0,false,false,false,false +juba895/testi,juba895,,false,false,false,0,false,false,false,false +sd1-ec-2016-2/p3-g1,sd1-ec-2016-2,JavaScript,false,false,false,0,false,false,false,false +fitzinger/formation-python,fitzinger,JupyterNotebook,true,false,false,1,false,true,false,false +alrazi/jsonxmihandler,alrazi,Java,false,false,true,0,false,false,false,false +duozhasht/homecook-server,duozhasht,JavaScript,false,false,false,0,false,false,false,false +rkyleg/personal-blog,rkyleg,CSS,false,false,false,0,false,false,false,false +PYVIE2017/INFO,PYVIE2017,,false,false,false,0,false,false,false,false +Lunar.Lopez/test-project-01,Lunar.Lopez,Shell,true,false,false,1,false,true,false,false +thogg4/alfred-gl,thogg4,Ruby,false,false,false,0,false,false,false,false +dameety/Weather-App,dameety,CSS,false,false,false,0,false,false,false,false +jundat95/ky7,jundat95,,false,false,false,0,false,false,false,false +transportengineering/radixtree,transportengineering,Haskell,true,false,false,1,false,true,false,false +Sosha/MegaPFulBot,Sosha,Lua,false,false,false,0,false,false,false,false +smecotic/coresso,smecotic,C#,false,false,false,0,false,false,false,false +smecotic/permissoes,smecotic,C#,false,false,false,0,false,false,false,false +acm-utv/ontoqa,acm-utv,Java,false,false,false,0,false,false,false,false +smecotic/quadrohorario,smecotic,C#,false,false,false,0,false,false,false,false +phyks/weboob,phyks,Python,true,false,false,3,true,true,true,false +librewiki/Liberty_v2,librewiki,Python,false,true,false,0,false,false,false,false +adequate-rails/template,adequate-rails,Ruby,false,false,false,0,false,false,false,false +ruby-a-la-cluj/smart-badge,ruby-a-la-cluj,,true,false,false,1,false,true,false,false +cpteam/console,cpteam,PHP,false,false,false,0,false,false,false,false +fast_chemail/fast_chemail-go,fast_chemail,Go,false,false,false,0,false,false,false,false +jun13blu/LibraryManagementSystem,jun13blu,Java,false,false,false,0,false,false,false,false +mszmsg11/test,mszmsg11,,false,false,false,0,false,false,false,false +emojido/emojido,emojido,Java,true,false,false,2,false,true,true,false +cpteam/nette,cpteam,PHP,false,false,false,0,false,false,false,false +cpteam/image,cpteam,PHP,false,false,false,0,false,false,false,false +svigruppo/lab03,svigruppo,Java,false,false,false,0,false,false,false,false +MrCloud/PiOS,MrCloud,Liquid,false,false,false,0,false,false,false,false +naortega/Indivisible,naortega,C,true,false,false,1,true,false,false,false +eevargas/indexy,eevargas,JavaScript,false,false,false,0,false,false,false,false +nrw_noa/meta-nrw-bts,nrw_noa,BitBake,false,false,false,0,false,false,false,false +vaibhavsharma/theleakycauldron-client,vaibhavsharma,JavaScript,false,false,false,0,false,false,false,false +nichodges/kindred2,nichodges,Python,false,true,false,0,false,false,false,false +mzal/connectCztery,mzal,Python,false,false,false,0,false,false,false,false +paddatrapper/shortcuts-gnome-extension,paddatrapper,JavaScript,false,false,false,0,false,false,false,false +dirrospace/T1_JDBC,dirrospace,Java,false,false,false,0,false,false,false,false +dlab-indecol/datavis,dlab-indecol,HTML,false,false,false,0,false,false,false,false +pythonturkiye/pilu,pythonturkiye,Shell,false,false,false,0,false,false,false,false +sat-metalab/InSituImmersiveAuthoring,sat-metalab,Python,false,false,false,0,false,false,false,false +sat-metalab/vrpn-openvr,sat-metalab,C++,false,false,false,0,false,false,false,false +riggeddice/rpg,riggeddice,JupyterNotebook,true,false,false,2,false,true,true,false +insomnyawolf/Akira-Test,insomnyawolf,C#,false,false,false,0,false,false,false,false +erdferkel2/AdventOfCode2016,erdferkel2,C,false,false,false,0,false,false,false,false +jorgeandrealves/ffvp,jorgeandrealves,Python,false,false,false,0,false,false,false,false +afvarela/juegosolimpicos511,afvarela,Java,false,false,false,0,false,false,false,false +agaric/drupal/user_revision,agaric,PHP,false,false,false,0,false,false,false,false +markpundsack/rails-on-heroku-via-docker,markpundsack,Ruby,true,false,false,4,true,false,false,true +kameme1208/kamesound,kameme1208,Java,false,false,false,0,false,false,false,false +r1d2/Arduino,r1d2,C++,false,false,false,0,false,false,false,false +ermite-chevelu/java-ice,ermite-chevelu,,false,false,false,0,false,false,false,false +ermite-chevelu/murmur,ermite-chevelu,,false,false,false,0,false,false,false,false +i-apellaniz/ComputerMethodsForSience,i-apellaniz,,false,false,false,0,false,false,false,false +DarthVaderin/DiscordBotTemplate,DarthVaderin,Java,false,false,true,0,false,false,false,false +zlitz-cw/uc2016-plugins,zlitz-cw,,false,false,false,0,false,false,false,false +OsmundWare/ToDoList,OsmundWare,Java,false,false,false,0,false,false,false,false +tarcisioe/carl,tarcisioe,Python,false,false,false,0,false,false,false,false +csaron92/poker-player-silly-gray-wolf,csaron92,C#,true,false,false,1,false,true,false,false +yashdsaraf/mm-project,yashdsaraf,JavaScript,true,false,false,1,true,false,false,false +max-volkov/DryStm,max-volkov,,false,false,false,0,false,false,false,false +p455w0rd/p455w0rdsThings,p455w0rd,Java,false,false,false,0,false,false,false,false +mduy.fr/mecon,mduy.fr,Java,false,false,false,0,false,false,false,false +akshay.ap95/NoteMaker,akshay.ap95,Java,false,false,false,0,false,false,false,false +opolat/geburtstagsverwaltung,opolat,HTML,false,false,false,0,false,false,false,false +Fordy/fdPRISM_fdCTMC_models,Fordy,Perl6,false,false,false,0,false,false,false,false +zg879229629/test,zg879229629,,false,false,false,0,false,false,false,false +ToastyThePenguin/Text_Reverse,ToastyThePenguin,Python,false,false,false,0,false,false,false,false +artemklevtsov/RcppMisc,artemklevtsov,C++,false,false,false,0,false,false,false,false +hackatory/respond-abilitytransfer,hackatory,Ruby,false,false,false,0,false,false,false,false +zlitz-cw/uc2016-sdk,zlitz-cw,TypeScript,false,false,false,0,false,false,false,false +andrese03/my-awesome-blog,andrese03,JavaScript,false,false,false,0,false,false,false,false +mrisoli/todomvc,mrisoli,Elixir,false,false,false,0,false,false,false,false +bbir1613/PPD-lab5,bbir1613,C#,false,false,false,0,false,false,false,false +rafmonteiro/interviews,rafmonteiro,,false,false,false,0,false,false,false,false +fredz/zeshopping,fredz,JavaScript,false,false,false,0,false,false,false,false +Alienchang/MediaCenter,Alienchang,Objective-C,false,false,false,0,false,false,false,false +jroman1901/pruebas,jroman1901,,false,false,false,0,false,false,false,false +santoshvarma4u/gifapp,santoshvarma4u,Java,false,false,false,0,false,false,false,false +maxigaz/how-to-riot,maxigaz,TeX,false,false,false,0,false,false,false,false +sibyct/Timesheet,sibyct,JavaScript,false,false,false,0,false,false,false,false +etna-2018-projects/pli-etna-lrk/louise-rosier-kids,etna-2018-projects,JavaScript,false,false,false,0,false,false,false,false +ninbryan/unbundle-challenge,ninbryan,JavaScript,false,false,false,0,false,false,false,false +su-v/inx-meshes,su-v,Python,false,false,false,0,false,false,false,false +gitlab-org/eclipse-gitlab-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false +mullac/bloc,mullac,,false,false,false,0,false,false,false,false +EEJ/BookLine,EEJ,HTML,false,false,false,0,false,false,false,false +alphaDev/dictator,alphaDev,Java,false,false,false,0,false,false,false,false +TUHH-TIE/SoccerScraping,TUHH-TIE,Python,false,true,false,0,false,false,false,false +Mega123/KPL_153040178,Mega123,Java,false,false,false,0,false,false,false,false +samueldr/diagrams-opt,samueldr,Shell,false,false,false,0,false,false,false,false +kengodwin/dot-bastion,kengodwin,Vimscript,false,false,false,0,false,false,false,false +NeuralPlayground/NN102,NeuralPlayground,C++,false,false,false,0,false,false,false,false +jesnil/SeeStreamSharp,jesnil,C#,false,false,false,0,false,false,false,false +greenhood/oc-autumn,greenhood,PHP,false,false,false,0,false,false,false,false +capuy/my-ipubuntu,capuy,,false,false,false,0,false,false,false,false +greenhood/oc-private-plugins,greenhood,PHP,false,false,false,0,false,false,false,false +fabian.morales/cowo,fabian.morales,PHP,false,false,false,0,false,false,false,false +davidharrigan/choboi,davidharrigan,Python,false,true,false,0,false,false,false,false +YoonHyunchul/UBCARE_DDocDoc_Windows,YoonHyunchul,C#,false,false,false,0,false,false,false,false +sebdeckers/babel-plugin-transform-string-literal-replace,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +pgrz/wsd-calendar,pgrz,Java,false,false,true,0,false,false,false,false +alrazi/errors_fixer,alrazi,Python,false,false,false,0,false,false,false,false +roman.lelek/etna,roman.lelek,HTML,false,false,false,0,false,false,false,false +dshershukov/methodrecs_vba_1612,dshershukov,TeX,false,false,false,0,false,false,false,false +Keksas/node-server,Keksas,JavaScript,false,false,false,0,false,false,false,false +Keksas/sublime-config,Keksas,,false,false,false,0,false,false,false,false +Brok3r/setter,Brok3r,Python,false,false,false,0,false,false,false,false +infertux/easy-login,infertux,Elm,true,false,false,1,false,true,false,false +lmarca/PulsoiOS,lmarca,Swift,false,false,false,0,false,false,false,false +yano2413/codes,yano2413,Java,false,false,false,0,false,false,false,false +dvalenzu/CHIC,dvalenzu,C++,true,false,false,1,false,true,false,false +g.cont.sebi/proba,g.cont.sebi,,false,false,false,0,false,false,false,false +jjatria/MojoX-Log-Any,jjatria,Perl,false,false,false,0,false,false,false,false +lua/lua,lua,C,false,false,false,0,false,false,false,false +lua/tests,lua,Lua,false,false,false,0,false,false,false,false +lua/manual,lua,,false,false,false,0,false,false,false,false +lua/luac,lua,C,false,false,false,0,false,false,false,false +nagarjuna.naran/Angular-seed,nagarjuna.naran,HTML,false,false,false,0,false,false,false,false +cajuuh/dash,cajuuh,HTML,false,false,false,0,false,false,false,false +judywawira/wateja,judywawira,,false,false,false,0,false,false,false,false +jeanxz/Tareas_Java,jeanxz,Java,false,false,false,0,false,false,false,false +Redyz/MapGen,Redyz,C++,false,false,false,0,false,false,false,false +lindabjalla/gigfinder-web,lindabjalla,JavaScript,false,false,false,0,false,false,false,false +fraza0/Raspi,fraza0,Python,false,false,false,0,false,false,false,false +kargo-ci/kubernetes-incubator/kargo,kargo-ci,Python,true,true,false,7,false,true,false,false +lucasucc/compilador,lucasucc,C++,false,false,false,0,false,false,false,false +hacklabor/Energiemessung,hacklabor,C++,false,false,false,0,false,false,false,false +packaging/logrotate-no-compress-apt-hook,packaging,Shell,true,false,false,2,false,false,false,false +SIshin/CricBuzztest,SIshin,Java,false,false,false,0,false,false,false,false +ayufan/kubernetes-deploy,ayufan,Shell,true,false,false,1,false,false,true,false +eldon/Dissertation,eldon,JupyterNotebook,false,false,false,0,false,false,false,false +tuomashatakka/atom-ui-reduced-dark,tuomashatakka,CSS,true,false,false,1,false,false,true,false +sangrey/LaplaceJumps,sangrey,JupyterNotebook,false,false,false,0,false,false,false,false +open-sismo/coordinate-api,open-sismo,Python,true,true,false,4,true,true,true,true +bff/rn,bff,Rust,true,false,false,1,false,true,false,false +doubletrinity/sinakka,doubletrinity,Scala,false,false,false,0,false,false,false,false +mdeken/Fdf,mdeken,C,false,false,false,0,false,false,false,false +mdeken/Fractol,mdeken,C,false,false,false,0,false,false,false,false +mdeken/electronic-dice,mdeken,C,false,false,false,0,false,false,false,false +eval/pipeclient,eval,Clojure,true,false,false,3,true,true,false,true +tusl/adm-gnu-linux-3,tusl,Shell,false,false,false,0,false,false,false,false +ronaldmulero/drutopia_composer,ronaldmulero,Shell,false,false,false,0,false,false,false,false +yogonza524/fletz,yogonza524,JavaScript,true,false,true,3,true,false,true,true +nasir.gitlab/BITM-PHP-LARAVEL,nasir.gitlab,JavaScript,false,false,false,0,false,false,false,false +thaessle/express-boilerplate,thaessle,JavaScript,false,false,false,0,false,false,false,false +ncigor/sptingdatatest,ncigor,Java,false,false,false,0,false,false,false,false +webjs/sourcedata,webjs,JavaScript,false,false,false,0,false,false,false,false +dacresni/opentax,dacresni,Python,false,false,false,0,false,false,false,false +atsaloli/gitlab-ci-tutorial,atsaloli,PHP,true,false,false,1,false,true,false,false +14520612/TetrisGame-Python,14520612,Python,false,false,false,0,false,false,false,false +brambear/trivia-bot,brambear,Java,false,false,false,0,false,false,false,false +potis/PESSCARA,potis,Python,false,false,false,0,false,false,false,false +dvalenzu/PanVC,dvalenzu,C++,true,false,false,1,false,true,false,false +fdroid/ci-test-app,fdroid,Java,false,false,false,0,false,false,false,false +daniellawrence/go-links,daniellawrence,Python,true,true,false,1,false,true,false,false +Yukioru/akigami-rollup,Yukioru,JavaScript,false,false,false,0,false,false,false,false +gregorybleiker/uberview,gregorybleiker,JavaScript,false,false,false,0,false,false,false,false +aishaorymbayeva/finalproject,aishaorymbayeva,Java,false,false,false,0,false,false,false,false +italoalves/jogo_da_memoria,italoalves,C,false,false,false,0,false,false,false,false +siegcollado/gitlab-ci-build-images,siegcollado,Shell,true,false,false,3,false,true,false,false +infertux/lifechart,infertux,Elm,true,false,false,1,false,true,false,false +iog-austria/competence-db,iog-austria,Java,false,false,false,0,false,false,false,false +JuanTareq/TFG-ULL_Maps_16-17,JuanTareq,TeX,false,false,false,0,false,false,false,false +ConorIA/alpine-pandoc,ConorIA,Shell,true,false,false,2,true,false,true,false +champzilla/Champzilla-First-Project,champzilla,,false,false,false,0,false,false,false,false +mgreiff/crazyflie_trajectory,mgreiff,Python,false,false,false,0,false,false,false,false +pankajkmishra/selectKP,pankajkmishra,,false,false,false,0,false,false,false,false +gistrec/PonyParty,gistrec,PHP,false,false,false,0,false,false,false,false +WzukW/pomodoro,WzukW,Scheme,false,false,false,0,false,false,false,false +SuperPrower/EFTNC,SuperPrower,C++,false,false,false,0,false,false,false,false +carlosefrfloresta/ajtf97-tarefas,carlosefrfloresta,Java,false,false,true,0,false,false,false,false +tnpoon/ConsoleRPG,tnpoon,C#,false,false,false,0,false,false,false,false +giftofjehovah/angular2-unbundle,giftofjehovah,JavaScript,false,false,false,0,false,false,false,false +sims1253/linespots-lib,sims1253,Python,true,false,false,1,false,true,false,false +lxr/table-listing,lxr,PHP,false,false,false,0,false,false,false,false +shlokgilda/cryptopals,shlokgilda,Python,false,false,false,0,false,false,false,false +georgekav/ib_backend_virtualization,georgekav,Python,false,false,false,0,false,false,false,false +danieltorrer/Visualizacion-de-datos-ecobici,danieltorrer,Processing,false,false,false,0,false,false,false,false +danieltorrer/rckbx,danieltorrer,CSS,false,false,false,0,false,false,false,false +danieltorrer/postmo,danieltorrer,HTML,false,false,false,0,false,false,false,false +danieltorrer/music,danieltorrer,JavaScript,false,false,false,0,false,false,false,false +danieltorrer/labdf,danieltorrer,JavaScript,false,false,false,0,false,false,false,false +danieltorrer/ia,danieltorrer,HTML,false,false,false,0,false,false,false,false +danieltorrer/Connect-4,danieltorrer,HTML,false,false,false,0,false,false,false,false +uzzolkumar/Basic-calculator-using-php-function,uzzolkumar,PHP,false,false,false,0,false,false,false,false +CellAO/CellAO,CellAO,C#,false,false,false,0,false,false,false,false +osslugaru/blender-plugins,osslugaru,Python,false,false,false,0,false,false,false,false +Nevax/ppe2_stadium,Nevax,,false,false,false,0,false,false,false,false +CLARIN-ERIC/docker-vlo-beta,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true +openvcash/vcash,openvcash,C++,false,false,false,0,false,false,false,false +s4m-chef-repositories/consul-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false +pabcruz/RentaAutos,pabcruz,Java,false,false,false,0,false,false,false,false +MrHudson/stardust,MrHudson,CSS,false,false,false,0,false,false,false,false +kgnnio/KeyMaker-Website,kgnnio,JavaScript,false,false,false,0,false,false,false,false +itrytopwn/league-creep,itrytopwn,Kotlin,false,false,false,0,false,false,false,false +peterkevans/raspberrypi-environmon,peterkevans,Python,false,false,false,0,false,false,false,false +nasir.gitlab/Advance_forms,nasir.gitlab,HTML,false,false,false,0,false,false,false,false +engel/bowhead,engel,Python,false,true,false,0,false,false,false,false +nimaa77/PhoneBook,nimaa77,PHP,false,false,false,0,false,false,false,false +darmawan.fatria/odoo-addons,darmawan.fatria,Python,false,false,false,0,false,false,false,false +bradclawsie/Net-IP-Parse,bradclawsie,Perl6,false,false,false,0,false,false,false,false +sonar-rs/sonar,sonar-rs,Rust,false,false,false,0,false,false,false,false +shanmuha/interviewer,shanmuha,,false,false,false,0,false,false,false,false +projek.paradox/elk-guide,projek.paradox,,false,false,false,0,false,false,false,false +philippe.lucidarme/sfml_tutorial,philippe.lucidarme,C++,false,false,false,0,false,false,false,false +nunodias.soito/AllwinnerCamHack,nunodias.soito,Batchfile,false,false,false,0,false,false,false,false +isaiasfl/Python,isaiasfl,Python,false,false,false,0,false,false,false,false +wldhx/mpu-project-prosthetics,wldhx,C,false,false,false,0,false,false,false,false +bfcarpio/MSUBDT-Website,bfcarpio,HTML,false,false,false,0,false,false,false,false +lzhao2/testjenkins,lzhao2,Shell,false,false,false,0,false,false,false,false +wanminny/demo,wanminny,,false,false,false,0,false,false,false,false +sommd/dotfiles-manager,sommd,Shell,false,false,false,0,false,false,false,false +DigiGodotPlugins/DigiVR,DigiGodotPlugins,GDScript,false,false,false,0,false,false,false,false +fsftn/SWIFT_CAMP_Website_2K17,fsftn,HTML,false,false,false,0,false,false,false,false +saasdm/saasdm-material,saasdm,JavaScript,true,false,false,1,false,true,false,false +onsip/sipjs.com,onsip,JavaScript,true,false,false,1,false,true,false,false +mehdidou99/ProgEvent,mehdidou99,Python,false,false,false,0,false,false,false,false +pineiden/async_coro,pineiden,Python,false,false,false,0,false,false,false,false +kargathia/ES_Application,kargathia,C++,true,false,false,1,true,false,false,false +jjembakenneth/testing,jjembakenneth,HTML,false,false,false,0,false,false,false,false +mccolljr/_rubigo,mccolljr,Go,false,false,false,0,false,false,false,false +Artefaritaj/smartcard-rs,Artefaritaj,Rust,false,false,false,0,false,false,false,false +BlackEdder/AODVRouter,BlackEdder,C++,true,false,false,1,false,true,false,false +srrg-software/sple,srrg-software,C,false,false,false,0,false,false,false,false +jukey/awesome-links,jukey,,false,false,false,0,false,false,false,false +rbkpro/CarpoolingAPP,rbkpro,Java,false,false,false,0,false,false,false,false +kindaichi/html_tomato,kindaichi,JavaScript,false,false,false,0,false,false,false,false +benstevinson/sports-machine,benstevinson,Ruby,false,false,false,0,false,false,false,false +hansroh/skitai,hansroh,Python,true,false,false,1,false,true,false,false +Bons/laravel5-notification-using-toastr,Bons,PHP,false,false,false,0,false,false,false,false +zsdev/iamw,zsdev,C,false,false,false,0,false,false,false,false +quanhvpd00567/memberManagement,quanhvpd00567,PHP,false,false,false,0,false,false,false,false +schpaper/schpaper.gitlab.io,schpaper,HTML,true,false,false,2,false,true,true,false +JbjstamPublic/ExcelAnimationRecorder,JbjstamPublic,C#,false,false,false,0,false,false,false,false +kameme1208/kameplayer,kameme1208,Java,false,false,false,0,false,false,false,false +angular-material-home/apps/amh-template-builder,angular-material-home,JavaScript,true,false,false,2,true,false,true,false +muslimaswaja/berumon-backend,muslimaswaja,JavaScript,false,false,false,0,false,false,false,false +SamehMohamed/SoftWare_One,SamehMohamed,Java,false,false,false,0,false,false,false,false +aliasgor/MuhammadAliAsgor_155478_B46_Session2,aliasgor,PHP,false,false,false,0,false,false,false,false +zdk9Z9GF5p6w/qbittorent-gazelle-search,zdk9Z9GF5p6w,Python,false,false,false,0,false,false,false,false +ruhallah/Conversation,ruhallah,Java,false,false,false,0,false,false,false,false +lexvella/dotfiles,lexvella,PowerShell,false,false,false,0,false,false,false,false +WSSH/plugins/connectionmanager,WSSH,JavaScript,false,false,false,0,false,false,false,false +GPMueller/spirit,GPMueller,C++,false,false,false,0,false,false,false,false +indicproject/indic-keyboard-website,indicproject,HTML,true,false,false,1,false,true,false,false +CLARIN-ERIC/docker-compreg-beta,CLARIN-ERIC,Shell,false,false,false,0,false,false,false,false +space-sh/lua,space-sh,Shell,true,false,false,1,false,true,false,false +daniellim2000/copyleftgames-chatconsole,daniellim2000,JavaScript,false,false,false,0,false,false,false,false +su-v/inx-legacytext,su-v,Python,false,false,false,0,false,false,false,false +pcapriotti/agda-base,pcapriotti,Agda,true,false,false,1,false,true,false,false +TobiasGross/js-crackme,TobiasGross,HTML,false,false,false,0,false,false,false,false +lexvella/vagrant-boxes,lexvella,,false,false,false,0,false,false,false,false +zadintuvas/eggizator,zadintuvas,Kotlin,false,false,false,0,false,false,false,false +afroja/afroja_159280_session3_B44,afroja,HTML,false,false,false,0,false,false,false,false +openstreetcraft/wms,openstreetcraft,Java,true,false,false,3,true,true,true,false +Thur/UI5-CV,Thur,JavaScript,false,false,false,0,false,false,false,false +omkarnathsingh/UniCaller,omkarnathsingh,Java,false,false,false,0,false,false,false,false +gistrec/AntiVPN,gistrec,PHP,false,false,false,0,false,false,false,false +ThomasCrvsr/practical-resources,ThomasCrvsr,JavaScript,false,false,false,0,false,false,false,false +cubekrowd/system/cubebot,cubekrowd,Java,true,false,false,2,true,false,true,false +mauriciobaeza/cfdi-test,mauriciobaeza,XSLT,false,false,false,0,false,false,false,false +vajda.stefan/vajda.stefan.gitlab.io,vajda.stefan,HTML,true,false,false,1,false,false,true,false +nasir.gitlab/PHP-AJAX-COMBINE-MODULE,nasir.gitlab,PHP,false,false,false,0,false,false,false,false +DayliSoft/proyectoSem,DayliSoft,CSS,false,false,false,0,false,false,false,false +bbaldassari/Alambic,bbaldassari,Perl,true,false,false,1,false,true,false,false +codelibre/schroot,codelibre,C++,true,false,false,2,true,true,false,false +penang-hokkien/penang-hokkien.gitlab.io,penang-hokkien,CSS,true,false,false,2,false,true,true,false +fuzengjie/ProxyPool,fuzengjie,Python,false,false,false,0,false,false,false,false +blndr/lyfe,blndr,Python,false,true,false,0,false,false,false,false +akshay.ap95/PictoBuzz,akshay.ap95,Java,false,false,false,0,false,false,false,false +gsg/facharbeit,gsg,,false,false,false,0,false,false,false,false +jamesrvandegrift/appheld,jamesrvandegrift,Shell,false,false,false,0,false,false,false,false +Renwentao/ren,Renwentao,HTML,false,false,false,0,false,false,false,false +zacharycarter/derelict_old,zacharycarter,Java,false,false,false,0,false,false,false,false +evthedev/frontend-boilerplate,evthedev,HTML,false,false,false,0,false,false,false,false +lijianjian13/WiterField,lijianjian13,Java,false,false,false,0,false,false,false,false +albertodeluca/go2nextfeature,albertodeluca,Python,false,false,false,0,false,false,false,false +adzero/codesignature,adzero,PowerShell,false,false,false,0,false,false,false,false +ikhsanbdy/iwak-fw-example,ikhsanbdy,JavaScript,false,false,false,0,false,false,false,false +Dreams4Passion/SnowVolley,Dreams4Passion,PHP,false,false,false,0,false,false,false,false +warplab/rost-cli,warplab,C++,false,false,false,0,false,false,false,false +veracrypt/VeraCrypt,veracrypt,C,false,false,false,0,false,false,false,false +naimriva/Naim_136875_b44_session5,naimriva,PHP,false,false,false,0,false,false,false,false +Lewisroy/id2mars,Lewisroy,PHP,false,false,false,0,false,false,false,false +avdolainen/cgrc,avdolainen,C,false,false,false,0,false,false,false,false +sophpie/workbench,sophpie,PHP,false,false,false,0,false,false,false,false +prashere/exifdata,prashere,JavaScript,true,false,false,1,false,false,true,false +arndtl/r_workshop,arndtl,HTML,false,false,false,0,false,false,false,false +niksaak/lofi,niksaak,Rust,true,false,false,1,false,true,false,false +drazzle/SacredLTI,drazzle,Java,false,false,false,0,false,false,false,false +mrman/systemjs-plugin-vue-template-compiler,mrman,JavaScript,false,false,false,0,false,false,false,false +robjloranger/license,robjloranger,Go,false,false,false,0,false,false,false,false +robjloranger/agree,robjloranger,Go,false,false,false,0,false,false,false,false +paurosello/sparkpost_integration,paurosello,Python,false,true,false,0,false,false,false,false +jerrya/ferries,jerrya,Python,false,false,false,0,false,false,false,false +mordicool/recordingSystem-yhe,mordicool,JavaScript,false,false,false,0,false,false,false,false +mordicool/vld-recording-system,mordicool,JavaScript,false,false,false,0,false,false,false,false +hamakor/organ,hamakor,Python,true,false,false,1,false,true,false,false +k.bruen/textfilesdownloader,k.bruen,C#,false,false,false,0,false,false,false,false +MachoMan8/wishList,MachoMan8,Java,false,false,false,0,false,false,false,false +kylehqcom/whatjson,kylehqcom,Go,true,false,false,1,false,true,false,false +DayliSoft/tienda,DayliSoft,JavaScript,false,false,false,0,false,false,false,false +NAS-Software/NAS-Chan,NAS-Software,Ruby,false,false,false,0,false,false,false,false +weburger/am-wb/am-wb-copyright,weburger,JavaScript,true,false,false,1,false,true,false,false +axet/android-library,axet,Java,false,false,false,0,false,false,false,false +axet/android-tone-generator,axet,Java,false,false,false,0,false,false,false,false +PublicAgileFactory/TRAINING.Cassandra,PublicAgileFactory,,false,false,false,0,false,false,false,false +isd/layout-dsl,isd,Haskell,true,false,false,1,false,true,false,false +uppt/core,uppt,Java,false,false,false,0,false,false,false,false +wictor/TreoSMS,wictor,Java,true,false,true,3,true,true,true,false +TC01/stockpile,TC01,Python,false,false,false,0,false,false,false,false +Rhaeo/agenda,Rhaeo,,false,false,false,0,false,false,false,false +insightgit/Project-Avenue-Concept,insightgit,C++,true,false,false,1,true,false,false,false +stephwag/code-samples,stephwag,Ruby,false,false,false,0,false,false,false,false +bonsay/small-dev-vm,bonsay,Shell,false,false,false,0,false,false,false,false +Zipcore/AdminHide,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +alexbenic/babble,alexbenic,Go,false,false,false,0,false,false,false,false +aonz/LaravelKit,aonz,Shell,false,false,false,0,false,false,false,false +Palmitoxico/stm8-gdb,Palmitoxico,C,false,false,false,0,false,false,false,false +deadcast/n64-model-viewer,deadcast,C,false,false,false,0,false,false,false,false +containos/containos,containos,Shell,true,false,false,3,true,true,false,false +shlokgilda/file-hash,shlokgilda,Python,false,false,false,0,false,false,false,false +shlokgilda/MAC-Spoofer,shlokgilda,Python,false,false,false,0,false,false,false,false +shlokgilda/MAC-Bypass,shlokgilda,Python,false,false,false,0,false,false,false,false +shlokgilda/WhatsApp-Decryptor,shlokgilda,Python,false,false,false,0,false,false,false,false +shlokgilda/Short-Url,shlokgilda,Python,false,false,false,0,false,false,false,false +vladvesa/ormpp,vladvesa,C++,false,false,false,0,false,false,false,false +Gustafsson-lab/snems-analysis-pipeline,Gustafsson-lab,Python,false,false,false,0,false,false,false,false +zdenda.online/dxcrypto,zdenda.online,Java,false,false,true,0,false,false,false,false +ThomasTJ/WMD,ThomasTJ,CSS,false,false,false,0,false,false,false,false +farkbarn/RugbydeLara,farkbarn,HTML,false,false,false,0,false,false,false,false +niaquinto/nicks-recipies,niaquinto,,true,false,false,1,true,false,false,false +AmosEgel/smuthi,AmosEgel,Fortran,true,false,false,2,false,true,true,false +akita/akita,akita,Go,true,false,false,2,true,true,false,false +danielmattos/odoo-misc,danielmattos,Python,false,false,false,0,false,false,false,false +mdxprograms/Domestic,mdxprograms,CSS,false,false,false,0,false,false,false,false +sssvip/helloworld,sssvip,Java,true,false,false,1,true,false,false,false +InstitutMaupertuis/fanuc_post_processor,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +lxr/api-discogs,lxr,PHP,false,false,false,0,false,false,false,false +dvadim/rgb,dvadim,Java,false,false,false,0,false,false,false,false +aew/repubmqtt-old,aew,Python,false,false,false,0,false,false,false,false +abre/lorikeet,abre,Python,true,false,false,2,false,true,false,false +ArjunShankar/express-template-project,ArjunShankar,JavaScript,false,false,false,0,false,false,false,false +JesusMtnez-monitor/spacemacs,JesusMtnez-monitor,EmacsLisp,false,false,false,0,false,false,false,false +jimschubert/iggy,jimschubert,Java,true,false,false,3,true,true,true,false +aew/repubmqtt,aew,Python,false,false,false,0,false,false,false,false +bradanlane/ros-locoro,bradanlane,JavaScript,false,false,false,0,false,false,false,false +InstitutMaupertuis/fanuc_grinding,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +InstitutMaupertuis/rviz_mesh_transparency,InstitutMaupertuis,CMake,false,false,false,0,false,false,false,false +InstitutMaupertuis/davidSDK,InstitutMaupertuis,C++,true,false,false,1,true,false,false,false +david.athersych/ELEC274Code,david.athersych,Assembly,false,false,false,0,false,false,false,false +perfit-labs/Rubystar,perfit-labs,Ruby,false,false,false,0,false,false,false,false +FalkF/ProjectEuler-hackerrank.com,FalkF,Java,false,false,false,0,false,false,false,false +game-jammers/blackriver,game-jammers,C#,false,false,false,0,false,false,false,false +LinZap/1111delicacy-crawler,LinZap,JavaScript,false,false,false,0,false,false,false,false +Inactionware/uapi/uapi.base,Inactionware,Java,false,false,false,0,false,false,false,false +mathusuthan/portfolio,mathusuthan,JupyterNotebook,false,false,false,0,false,false,false,false +nosolutions/puppet-devel,nosolutions,Ruby,false,false,false,0,false,false,false,false +relacilia/sistemlayananupt,relacilia,JavaScript,false,false,false,0,false,false,false,false +jetkov/37392017,jetkov,Java,false,false,false,0,false,false,false,false +gpcentre/wordpress-nginx-fpm,gpcentre,PHP,true,false,false,2,true,false,false,true +DavidGiordana/Scripts,DavidGiordana,Python,false,false,false,0,false,false,false,false +HubShark/hs-sandbar,HubShark,JavaScript,false,false,false,0,false,false,false,false +r1dScripts/chatty_server,r1dScripts,Python,false,true,false,0,false,false,false,false +PDP-10/READ-THIS,PDP-10,,false,false,false,0,false,false,false,false +dmoonfire/ledger-dom-js,dmoonfire,TypeScript,false,false,false,0,false,false,false,false +helgihaf/ConfigSterilizer,helgihaf,C#,false,false,false,0,false,false,false,false +jrbeverlylabs/vagrant-desktop/vagrant-desktop-opengl,jrbeverlylabs,Shell,false,false,false,0,false,false,false,false +binh.cao/revi,binh.cao,Ruby,false,false,false,0,false,false,false,false +assiscaioss/senado_backend,assiscaioss,Ruby,false,false,false,0,false,false,false,false +syw2014/py-nlp-algos,syw2014,Python,false,false,false,0,false,false,false,false +PisiLinux/pisilinux.org,PisiLinux,,false,false,false,0,false,false,false,false +VictorLamoine/ros_gitlab_ci_test,VictorLamoine,C++,false,false,false,0,false,false,false,false +axil/kodi,axil,C++,false,false,false,0,false,false,false,false +AtomBombed/sting-assistant,AtomBombed,JavaScript,false,false,false,0,false,false,false,false +norad/docs,norad,JavaScript,true,false,false,1,false,true,false,false +dxr/liIonBalancer,dxr,,false,false,false,0,false,false,false,false +open-world/research,open-world,,false,false,false,0,false,false,false,false +dhanesh95/dhanesh95.gitlab.io,dhanesh95,HTML,true,false,false,1,false,true,false,false +huezo/ThemeTDesktop-GNULinux,huezo,Shell,false,false,false,0,false,false,false,false +frimu93/android-project,frimu93,Java,false,false,false,0,false,false,false,false +superq/food,superq,,false,false,false,0,false,false,false,false +ghagl/Gurich,ghagl,C,false,false,false,0,false,false,false,false +jbutz/archerc7-dhcp-client-monitor,jbutz,JavaScript,false,false,false,0,false,false,false,false +gentlemancoder/photo-booth,gentlemancoder,JavaScript,false,false,false,0,false,false,false,false +westeroscraft/WesteroscraftNewLauncher,westeroscraft,Java,false,false,false,0,false,false,false,false +william-marchetto/shared-terminal-settings,william-marchetto,Vimscript,false,false,false,0,false,false,false,false +lucky_auspicious/Lucky_156670_B44_Session9_Agile_UserStory,lucky_auspicious,,false,false,false,0,false,false,false,false +Adneom/jax-rs-kata,Adneom,Java,false,false,true,0,false,false,false,false +gandra404/ticketbeast,gandra404,PHP,true,false,false,1,false,true,false,false +vindarel/cl-s,vindarel,CommonLisp,false,false,false,0,false,false,false,false +xuanvan229/setting,xuanvan229,,false,false,false,0,false,false,false,false +jerrya/nextferry,jerrya,HTML,true,false,false,1,false,false,false,false +specificationtech/mobilereviews,specificationtech,,false,false,false,0,false,false,false,false +MrFlat/MsgResan,MrFlat,PHP,false,false,false,0,false,false,false,false +sfurlani/dicemaster,sfurlani,Swift,false,false,false,0,false,false,false,false +qTox/qtox-updater-tools,qTox,C++,false,false,false,0,false,false,false,false +fxweb/parse-full-server-setup,fxweb,Shell,false,false,false,0,false,false,false,false +hansroh/aquests,hansroh,Python,false,false,false,0,false,false,false,false +dxr/zvs,dxr,,false,false,false,0,false,false,false,false +dxr/lead-acidBatteryCharger,dxr,,false,false,false,0,false,false,false,false +dxr/laserDiodeDriver,dxr,,false,false,false,0,false,false,false,false +InstitutMaupertuis/ros_desktop_launcher_test,InstitutMaupertuis,CMake,false,false,false,0,false,false,false,false +wq1/docker-lifecycle-scripts,wq1,Groovy,false,false,false,0,false,false,false,false +amitojsingh/blog-app,amitojsingh,Ruby,false,false,false,0,false,false,false,false +pidster/aws-lambda-slack,pidster,Shell,false,false,false,0,false,false,false,false +darkomcfly/pack-getter,darkomcfly,HTML,false,false,false,0,false,false,false,false +Conan_Kudo/dhclient-config-debcompat,Conan_Kudo,Shell,false,false,false,0,false,false,false,false +cgcladera/ci-diy,cgcladera,TypeScript,true,false,false,4,false,true,false,true +srrg-software/srrg_nw_calibration_ros,srrg-software,C++,false,false,false,0,false,false,false,false +ergot/ifocop-snake,ergot,JavaScript,true,false,false,1,false,false,true,false +Uzytkownik_A/Kalkulator_Funkcji,Uzytkownik_A,C++,false,false,false,0,false,false,false,false +timmitchell/GRANSO,timmitchell,Matlab,false,false,false,0,false,false,false,false +brookinsconsulting/bchourlyinvoicebundle,brookinsconsulting,PHP,false,false,false,0,false,false,false,false +matthias.iacsa/conf-guru,matthias.iacsa,Kotlin,false,false,false,0,false,false,false,false +mikst/finger-prints,mikst,Python,false,false,false,0,false,false,false,false +CisSasGot/cisgen.gitlab.io,CisSasGot,HTML,false,false,false,0,false,false,false,false +jordimonegallopez/m02html,jordimonegallopez,CSS,true,false,false,1,false,false,true,false +alimaldev/cv,alimaldev,,true,false,false,1,false,false,true,false +photonized/robot,photonized,Java,false,false,false,0,false,false,false,false +ncedric47/Joomleague-3,ncedric47,PHP,false,false,false,0,false,false,false,false +marcjeanmougin/selvage,marcjeanmougin,JavaScript,false,false,false,0,false,false,false,false +wsw0108/go-proj4,wsw0108,C,true,false,false,1,false,true,false,false +wsw0108/go-proj4-mars,wsw0108,Go,true,false,false,1,false,true,false,false +ugin/webpack_demo,ugin,JavaScript,false,false,false,0,false,false,false,false +Yosun/HoloUndergroundApartments,Yosun,C++,false,false,false,0,false,false,false,false +geometalab/python-dockerize,geometalab,Shell,false,false,false,0,false,false,false,false +philippe.lucidarme/sdl_tutorial,philippe.lucidarme,C++,false,false,false,0,false,false,false,false +faisal_iiuc/HouseRentManagementSystem,faisal_iiuc,C#,false,false,false,0,false,false,false,false +atelier-bek/typotheque,atelier-bek,JavaScript,false,false,false,0,false,false,false,false +SiegfriedEhret/angular-js,SiegfriedEhret,HTML,false,false,false,0,false,false,false,false +pseudo_sudo/www-resume-directory,pseudo_sudo,JavaScript,false,false,false,0,false,false,false,false +Tojatta/TojattaAngles,Tojatta,Java,false,false,false,0,false,false,false,false +Mstrodl/heatingdevices-shortcodes,Mstrodl,PHP,false,false,false,0,false,false,false,false +preactive/uw-iot-110,preactive,Python,false,false,false,0,false,false,false,false +powan/CoreRobotics,powan,C++,true,false,false,3,true,true,true,false +joelware/iot-110,joelware,Python,false,false,false,0,false,false,false,false +tramwayjs/tramway-connection-rest-api,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +nithwith/MIAGE_Symfony,nithwith,JavaScript,false,false,false,0,false,false,false,false +lottverw/1617-BP-KAIROS,lottverw,PHP,false,false,false,0,false,false,false,false +BuildStream/buildstream-tests,BuildStream,Shell,true,false,false,1,false,true,false,false +kooki/kooki,kooki,Python,true,false,false,2,false,false,true,false +tspiteri/rox,tspiteri,Rust,true,false,false,1,false,true,false,false +Vortexx/VORTEX-PRIVATE-PLUGINS,Vortexx,,false,false,false,0,false,false,false,false +eita/rios/user_ldap_extended,eita,PHP,false,false,false,0,false,false,false,false +mykhailokoretskyi/test-deep-mock,mykhailokoretskyi,Perl,true,false,false,1,true,false,false,false +roman-yagodin/PlaneShift.BuildScripts,roman-yagodin,Shell,false,false,false,0,false,false,false,false +roman-yagodin/PlaneShift.EnchantedElves,roman-yagodin,,false,false,false,0,false,false,false,false +roman-yagodin/PlaneShift.SkinTools,roman-yagodin,XSLT,false,false,false,0,false,false,false,false +IvanMurzak/Unity-Template-Project,IvanMurzak,C#,false,false,false,0,false,false,false,false +piller.yann/GlobalGamJam2017,piller.yann,C#,false,false,false,0,false,false,false,false +hartsfield/gencrypt,hartsfield,Go,false,false,false,0,false,false,false,false +openstreetcraft/overpass-api,openstreetcraft,Java,true,false,false,3,true,true,true,false +hartsfield/slicerip,hartsfield,Go,false,false,false,0,false,false,false,false +bob-mirror/bob,bob-mirror,Python,false,true,false,0,false,false,false,false +bob-mirror/bob.ip.gabor,bob-mirror,C++,false,false,false,0,false,false,false,false +bob-mirror/bob.bio.base,bob-mirror,Python,false,true,false,0,false,false,false,false +bob-mirror/bob.bio.face,bob-mirror,Python,false,true,false,0,false,false,false,false +bob-mirror/bob.bio.spear,bob-mirror,Python,false,true,false,0,false,false,false,false +boormat/khana-results,boormat,JavaScript,true,false,false,1,false,true,false,false +joeleiva/testOSP,joeleiva,Objective-C,false,false,false,0,false,false,false,false +yunity/quick-syscon,yunity,JavaScript,false,false,false,0,false,false,false,false +davch/jsredir,davch,HTML,true,false,false,1,false,false,true,false +Inactionware/uapi/uapi.cornerstone,Inactionware,Java,false,false,false,0,false,false,false,false +kordian.wiklinski/fancyapp,kordian.wiklinski,JavaScript,false,false,false,0,false,false,false,false +mselmany/webpack1-starter,mselmany,JavaScript,false,false,false,0,false,false,false,false +runarberg/trompt,runarberg,Rust,true,false,false,1,false,true,false,false +jorgeer/ansible-demo,jorgeer,Python,false,true,false,0,false,false,false,false +Zatherz/godot-simple-moddable-example,Zatherz,GDScript,false,false,false,0,false,false,false,false +sharpcraft/MindWorX.Unmanaged,sharpcraft,C#,false,false,false,0,false,false,false,false +Quigley/_Ising_model,Quigley,Python,false,false,false,0,false,false,false,false +hartsfield/fd,hartsfield,Go,false,false,false,0,false,false,false,false +wangfaguo/QLWKWebViewModule,wangfaguo,Objective-C,false,false,false,0,false,false,false,false +acclab/parcas,acclab,Fortran,false,false,false,0,false,false,false,false +lusimeon/bem-slides,lusimeon,JavaScript,true,false,false,1,false,false,false,false +maestroenlared/AntergosToolbox,maestroenlared,Shell,false,false,false,0,false,false,false,false +balavishnu/KEC-GPA-CGPA-CALC-BALA,balavishnu,Java,false,false,false,0,false,false,false,false +pineiden/networktools,pineiden,Python,false,false,false,0,false,false,false,false +luca-heltai/bare-dealii-app,luca-heltai,C++,true,false,false,1,false,true,false,false +masahikotsujita/SugarTable,masahikotsujita,Swift,false,false,false,0,false,false,false,false +scallopedllama/zsh-config,scallopedllama,Shell,false,false,false,0,false,false,false,false +banavirocl/GGJ17,banavirocl,GDScript,false,false,false,0,false,false,false,false +sharpcraft/MindWorX.Blizzard,sharpcraft,C#,false,false,false,0,false,false,false,false +skysteel/vrrm-templates,skysteel,HTML,false,false,false,0,false,false,false,false +rotem.revivo91/spaceships,rotem.revivo91,C,false,false,false,0,false,false,false,false +hartsfield/pulse,hartsfield,Go,false,false,false,0,false,false,false,false +antoine_c/JavaRPG,antoine_c,Java,false,false,false,0,false,false,false,false +antoine_c/JavaRPG2,antoine_c,Java,false,false,false,0,false,false,false,false +antoine_c/cryptographie,antoine_c,C,false,false,false,0,false,false,false,false +tritonrocketadmin/Intrepid,tritonrocketadmin,HTML,false,false,false,0,false,false,false,false +iluxa_com/Java1.8HelloWorld,iluxa_com,Java,false,false,false,0,false,false,false,false +se56160049/census_project,se56160049,TypeScript,false,false,false,0,false,false,false,false +liscioapps/ask-jocko,liscioapps,JavaScript,true,false,false,4,true,true,true,false +umgeher/otter-browser,umgeher,C++,false,false,false,0,false,false,false,false +sonne/letsfetz,sonne,Java,false,false,false,0,false,false,false,false +nvidia/caffe,nvidia,,true,false,false,2,false,false,false,false +ivanjx/etp,ivanjx,C#,false,false,false,0,false,false,false,false +veer66/mapkha,veer66,Go,false,false,false,0,false,false,false,false +ArjunShankar/nodejs-experiments,ArjunShankar,JavaScript,false,false,false,0,false,false,false,false +carlesgm/todos-firebase,carlesgm,Java,false,false,false,0,false,false,false,false +Abhishek_Jha/WebConfig-Utility,Abhishek_Jha,HTML,false,false,false,0,false,false,false,false +littlefork/littlespoon,littlefork,JavaScript,false,false,false,0,false,false,false,false +GuillaumeDEDET/testProjectTP,GuillaumeDEDET,,false,false,false,0,false,false,false,false +n1amr/dotfiles,n1amr,Shell,false,false,false,0,false,false,false,false +mohsen.barzegar/MultiMedia_FinalProject,mohsen.barzegar,Python,false,false,false,0,false,false,false,false +mfriedenhagen/java-gitlab-api,mfriedenhagen,Java,false,false,true,0,false,false,false,false +filipesaraiva/aulas,filipesaraiva,TeX,false,false,false,0,false,false,false,false +angeline_mochimocha/FlippyCoin,angeline_mochimocha,C#,false,false,false,0,false,false,false,false +CinemaPress/CinemaPress-ACMS,CinemaPress,HTML,false,false,false,0,false,false,false,false +angeline_mochimocha/CameraScripts,angeline_mochimocha,C#,false,false,false,0,false,false,false,false +se56160049/census_svr,se56160049,HTML,false,false,false,0,false,false,false,false +tameraw/iot-110,tameraw,Python,false,false,false,0,false,false,false,false +kinshuk/gamedev-hubot,kinshuk,CoffeeScript,false,false,false,0,false,false,false,false +minishift/minishift,minishift,Go,true,false,false,1,false,true,false,false +signal9/conanfiles,signal9,Python,true,false,false,1,false,true,false,false +ncooper123/class-examples,ncooper123,Java,false,false,false,0,false,false,false,false +sweetflavor/email_form,sweetflavor,PHP,false,false,false,0,false,false,false,false +CinemaPress/Theme-Cersei,CinemaPress,HTML,false,false,false,0,false,false,false,false +yachmenov_c/_magento-to-wp-import,yachmenov_c,PHP,false,false,false,0,false,false,false,false +lobokevin/metadatasearch,lobokevin,JavaScript,false,false,false,0,false,false,false,false +emacs-stuff/anaphoric-seq,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +irina-ivanova-extensions/JIRA-Issue-Opener-FF,irina-ivanova-extensions,JavaScript,false,false,false,0,false,false,false,false +InstitutMaupertuis/raspberry_stepper_demo,InstitutMaupertuis,C++,true,false,false,2,true,false,true,false +Conan_Kudo/rpm-mageia-ci,Conan_Kudo,,false,false,false,0,false,false,false,false +dwicklund14/dan,dwicklund14,,false,false,false,0,false,false,false,false +nehamurria/mybaseproject,nehamurria,JavaScript,false,false,false,0,false,false,false,false +squirtles/tindev,squirtles,TypeScript,false,false,true,0,false,false,false,false +srrg-software/srrg_scan_matcher_ros,srrg-software,C++,false,false,false,0,false,false,false,false +albertoluna/moon-video-sync-api,albertoluna,TypeScript,true,false,false,1,false,true,false,false +Graystripe17/JSRountree,Graystripe17,Java,false,false,false,0,false,false,false,false +manfred.madelaine/ageofwar,manfred.madelaine,C++,false,false,false,0,false,false,false,false +TheCreativeCat/tuesou,TheCreativeCat,JavaScript,false,false,false,0,false,false,false,false +TheCreativeCat/purnhub,TheCreativeCat,PHP,false,false,false,0,false,false,false,false +waigy.craigy/rbac_basic,waigy.craigy,PHP,false,false,false,0,false,false,false,false +devprodest/periph-drivers,devprodest,C,false,false,false,0,false,false,false,false +anish137i/CI-NB-Template,anish137i,,false,false,false,0,false,false,false,false +ChipTNC/ChipTNC-www,ChipTNC,Python,false,false,false,0,false,false,false,false +ChipTNC/ChipTNC-config,ChipTNC,Shell,false,false,false,0,false,false,false,false +hosnia/OS_Final_Project,hosnia,,false,false,false,0,false,false,false,false +hearthcode/brimstone,hearthcode,C#,false,false,false,0,false,false,false,false +salay14/sklad,salay14,Java,true,false,true,2,true,true,false,false +statewide/Note,statewide,HTML,false,false,false,0,false,false,false,false +wdd/rtsharp-rtorrent-sds,wdd,D,true,false,false,2,false,false,false,false +frettio/frettio-android,frettio,Java,false,false,false,0,false,false,false,false +alan.t.negrete1/nodeapi-gcloud-boilerplate,alan.t.negrete1,JavaScript,true,false,false,6,true,false,true,false +mfriedenhagen/kotlin-sonar,mfriedenhagen,Kotlin,false,false,true,0,false,false,false,false +codelogs/codelogs-backend,codelogs,Java,true,false,true,3,true,false,true,false +krispyensign/vim-settings,krispyensign,Vimscript,false,false,false,0,false,false,false,false +CLARIN-ERIC/compreg-prod,CLARIN-ERIC,Shell,false,false,false,0,false,false,false,false +drupal-lddb/bam-lddb,drupal-lddb,PHP,false,false,false,0,false,false,false,false +LegendaryRob/WizSys,LegendaryRob,Ruby,false,false,false,0,false,false,false,false +SEMERU-Code-Public/Android/ODBR,SEMERU-Code-Public,Java,false,false,false,0,false,false,false,false +tannerlake/dungeonbot,tannerlake,Python,true,false,false,1,false,true,false,false +MadLittleMods/static-review-app-server,MadLittleMods,JavaScript,false,false,false,0,false,false,false,false +aapjeisbaas/sysop-tools,aapjeisbaas,Shell,false,false,false,0,false,false,false,false +meteora/toinz,meteora,C#,false,false,false,0,false,false,false,false +MinhaCelula/android-client,MinhaCelula,Java,false,false,false,0,false,false,false,false +jonasrrodrigues/cambio-profit-manager,jonasrrodrigues,HTML,false,false,false,0,false,false,false,false +kandelvijaya/XcodeFormatter,kandelvijaya,Swift,false,false,false,0,false,false,false,false +socrates-peru/socrates-peru.gitlab.io,socrates-peru,JavaScript,true,false,false,1,false,false,true,false +scalemailted/CSCI1583-Lectures-Spring2017,scalemailted,Java,false,false,false,0,false,false,false,false +lqf96/miniftpd,lqf96,C++,false,false,false,0,false,false,false,false +tonmoy2114/Donee,tonmoy2114,Java,false,false,false,0,false,false,false,false +kaacode2/html2017,kaacode2,HTML,true,false,false,1,false,false,true,false +Zipcore/Discord-API,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +kindaichi/prolab_ruby3,kindaichi,Ruby,false,false,false,0,false,false,false,false +s952163/UIwithOxyG,s952163,F#,false,false,false,0,false,false,false,false +Salvus/salvus_seismo,Salvus,Python,true,false,false,3,false,false,true,false +ovcaman/empty-yii,ovcaman,PHP,false,false,false,0,false,false,false,false +maxim.m/practice_angular2,maxim.m,JavaScript,false,false,false,0,false,false,false,false +ryanmr-daugherty/kitty-hawk-ui,ryanmr-daugherty,JavaScript,false,false,false,0,false,false,false,false +BafDyce/lkml-scraper,BafDyce,Python,false,false,false,0,false,false,false,false +naym333/gitlab-timer,naym333,JavaScript,true,false,false,1,false,true,false,false +TiagoJSM/SimpleEngine,TiagoJSM,C++,false,false,false,0,false,false,false,false +montellano.david/repositoy-bash-shell-script,montellano.david,Shell,false,false,false,0,false,false,false,false +chris-morgan/symlink,chris-morgan,Rust,true,false,false,1,false,true,false,false +HardlyDifficult/HardlyEdu-Programming_Game_AI_by_Example,HardlyDifficult,C#,false,false,false,0,false,false,false,false +m_dilmac/nmap-helper,m_dilmac,,false,false,false,0,false,false,false,false +Partanen/kyssari,Partanen,C,false,false,false,0,false,false,false,false +anthill-modules/ah-content-exporter,anthill-modules,HTML,false,false,false,0,false,false,false,false +lyda/gqgmc,lyda,Go,true,false,false,1,false,true,false,false +Khmaieshassen/Cyberdev-covoituragetn,Khmaieshassen,Java,false,false,false,0,false,false,false,false +koschi/spot,koschi,Matlab,false,false,false,0,false,false,false,false +xy2/_lyceecours,xy2,,false,false,false,0,false,false,false,false +gimerstedt/delk,gimerstedt,Makefile,false,false,false,0,false,false,false,false +uV88/JavaProgramming,uV88,HTML,false,false,true,0,false,false,false,false +bigone.systems/django-vscode,bigone.systems,JavaScript,false,false,false,0,false,false,false,false +kakamaru7717/abc,kakamaru7717,,false,false,false,0,false,false,false,false +plut0n/Bluebird,plut0n,C++,true,false,false,1,true,false,false,false +dp48687/Final_project,dp48687,Java,false,false,false,0,false,false,false,false +willemmali-sh/tiptoe,willemmali-sh,Shell,false,false,false,0,false,false,false,false +smizy/docker-keras-tensorflow,smizy,Makefile,true,false,false,1,true,false,false,false +ameybawiskar/App,ameybawiskar,Java,false,false,false,0,false,false,false,false +pondits/bitm,pondits,PHP,false,false,false,0,false,false,false,false +CodingCompanions/Data-Structures,CodingCompanions,C++,false,false,false,0,false,false,false,false +CodingCompanions/Python-Programming-DSA,CodingCompanions,Python,false,false,false,0,false,false,false,false +CodingCompanions/Haskell-Programming,CodingCompanions,Haskell,false,false,false,0,false,false,false,false +lukasalexander/json-cpp,lukasalexander,C++,false,false,false,0,false,false,false,false +roddhjav/pass-update,roddhjav,Shell,true,false,false,3,false,true,true,false +melmups/smarty,melmups,PHP,false,false,false,0,false,false,false,false +shlokgilda/chatapp,shlokgilda,JavaScript,false,false,false,0,false,false,false,false +LibrePCB/LibrePCB,LibrePCB,C++,false,false,false,0,false,false,false,false +jeremybise/dotfiles,jeremybise,Shell,false,false,false,0,false,false,false,false +clementop/kx3util,clementop,Shell,false,false,false,0,false,false,false,false +Bludsky/TrendSetter2017,Bludsky,Python,false,false,false,0,false,false,false,false +les-insecables/fondations,les-insecables,,false,false,false,0,false,false,false,false +nubu/nubu-website,nubu,JavaScript,false,false,false,0,false,false,false,false +Pilatomic/grbl-overseer,Pilatomic,C++,false,false,false,0,false,false,false,false +asmw/qmlgraph,asmw,C++,false,false,false,0,false,false,false,false +MediaMagnet/tas-psoc,MediaMagnet,C,false,false,false,0,false,false,false,false +weburger/am-wb/am-wb-carousel,weburger,JavaScript,true,false,false,1,false,true,false,false +ConorIA/MellowPlayer,ConorIA,QML,false,false,false,0,false,false,false,false +coder618/bitmProject,coder618,JavaScript,false,false,false,0,false,false,false,false +dashluce/sala,dashluce,JavaScript,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab_consul,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true +antoine_c/portfolio,antoine_c,JavaScript,false,false,false,0,false,false,false,false +angular-material-dashboard/apps/amd-teacher,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false +fargie_s/pipo,fargie_s,JavaScript,true,false,false,2,false,true,false,false +indrek.toomas/Spordiyrituste_veeb,indrek.toomas,JavaScript,false,false,false,0,false,false,false,false +parroty/gitlab_sample,parroty,Elixir,true,false,false,1,false,true,false,false +assume/adaptor-bugzilla,assume,Java,false,false,false,0,false,false,false,false +tostasqb/tracker,tostasqb,Ruby,false,false,false,0,false,false,false,false +LaQuasiCinque/producteev-provider,LaQuasiCinque,PHP,false,false,false,0,false,false,false,false +nasir.gitlab/CVzone,nasir.gitlab,JavaScript,false,false,false,0,false,false,false,false +sat-metalab/scenic-server,sat-metalab,Shell,false,false,false,0,false,false,false,false +sofreeus/aghi2linux,sofreeus,,false,false,false,0,false,false,false,false +rharrisglab/week02,rharrisglab,Java,false,false,false,0,false,false,false,false +vindarel/cl-gitlab,vindarel,CommonLisp,false,false,false,0,false,false,false,false +fsfe/fsfe-cd-dummy-postgres,fsfe,Shell,true,false,false,2,true,false,true,false +tylangesmith/powerhouse,tylangesmith,JavaScript,false,false,false,0,false,false,false,false +chipbuster/latex-templates,chipbuster,TeX,false,false,false,0,false,false,false,false +jrimek/mini-projects/config-files,jrimek,Vimscript,false,false,false,0,false,false,false,false +pedroppl/Meet-Guild,pedroppl,Java,false,false,false,0,false,false,false,false +biotransistor/acpipe_acjson,biotransistor,Python,false,false,false,0,false,false,false,false +sanpi/onion-everywhere,sanpi,JavaScript,false,false,false,0,false,false,false,false +biotransistor/acpipe_biotek,biotransistor,Python,false,false,false,0,false,false,false,false +byteball/faq,byteball,HTML,true,false,false,1,false,false,true,false +imgbld/Characters,imgbld,Roff,false,false,false,0,false,false,false,false +aquarchitect/iTransmit,aquarchitect,Java,false,false,false,0,false,false,false,false +sachindayl/OutclassDL,sachindayl,Java,false,false,false,0,false,false,false,false +sachindayl/Portfolio,sachindayl,HTML,false,false,false,0,false,false,false,false +jorge.aguilera/grocker,jorge.aguilera,CSS,true,false,false,2,true,false,true,false +fisakov.root/script-hosting,fisakov.root,Shell,false,false,false,0,false,false,false,false +zencore/PercCheck,zencore,Shell,false,false,false,0,false,false,false,false +andrewn/pebbledash,andrewn,Go,false,false,false,0,false,false,false,false +willemmali-sh/Scred,willemmali-sh,Shell,false,false,false,0,false,false,false,false +braineering/crimegraph,braineering,Java,false,false,true,0,false,false,false,false +d3sm0/dantebot,d3sm0,Python,false,false,false,0,false,false,false,false +davcri91/softhub-site,davcri91,Python,false,true,false,0,false,false,false,false +Wenlin/wanwu,Wenlin,PHP,false,false,false,0,false,false,false,false +servercharlie/servercharlie.gitlab.io,servercharlie,CSS,true,false,false,1,false,true,false,false +Gracesearchengine/Crawler,Gracesearchengine,Python,false,false,false,0,false,false,false,false +cidades-inteligentes-verao-2017/bus-delay,cidades-inteligentes-verao-2017,Ruby,false,false,false,0,false,false,false,false +JulienMaffar/BlogLaravel,JulienMaffar,PHP,false,false,false,0,false,false,false,false +hanggong/cmu15619_p1.2,hanggong,Shell,false,false,false,0,false,false,false,false +codigofacilito/recurring-payments,codigofacilito,JavaScript,false,false,false,0,false,false,false,false +ItHasU/AtelierCO,ItHasU,JavaScript,false,false,false,0,false,false,false,false +apa102-controller/apa102-atmega328p,apa102-controller,C++,false,false,false,0,false,false,false,false +viperzer0/Chemistry-Calc,viperzer0,C,false,false,false,0,false,false,false,false +diawans/dawnoftitns,diawans,,false,false,false,0,false,false,false,false +magento2-dev/magento2,magento2-dev,CSS,false,false,false,0,false,false,false,false +livewords-oss/livewords-gitlab-runner,livewords-oss,Shell,true,false,false,3,true,true,false,true +simonbreiter/rest-cms,simonbreiter,,true,false,false,2,true,true,false,false +goodnesskay/Firebase-App,goodnesskay,Java,false,false,false,0,false,false,false,false +krgrfr/TaFace,krgrfr,Python,false,false,false,0,false,false,false,false +timetomakefood/timetomakefood.gitlab.io,timetomakefood,HTML,false,false,false,0,false,false,false,false +wku_parking_finder/parking_simulator,wku_parking_finder,Java,false,false,false,0,false,false,false,false +wku_parking_finder/parking_finder_application,wku_parking_finder,PHP,false,false,false,0,false,false,false,false +barda/PetitsChevaux,barda,PHP,false,false,false,0,false,false,false,false +Isidore/ierik.github-mockup,Isidore,,false,false,false,0,false,false,false,false +ossguy/jmp-fwdcalls,ossguy,Ruby,false,false,false,0,false,false,false,false +esilvert/ENJMIN,esilvert,TeX,false,false,false,0,false,false,false,false +Gianfranco97/ApiRest-basica,Gianfranco97,JavaScript,false,false,false,0,false,false,false,false +vco2000/OSToolkit,vco2000,PowerShell,false,false,false,0,false,false,false,false +shreyakumar/public_resources,shreyakumar,C++,false,false,false,0,false,false,false,false +codesigns/wp-force-ssl,codesigns,PHP,false,false,false,0,false,false,false,false +bradclawsie/rscs,bradclawsie,Go,false,false,false,0,false,false,false,false +NightShade/kabinfonetlify,NightShade,CSS,false,false,false,0,false,false,false,false +edreiuc/medoo,edreiuc,PHP,false,false,false,0,false,false,false,false +webkod3r/run-recarga,webkod3r,PHP,false,false,false,0,false,false,false,false +meno/vocal-coach,meno,Dart,true,false,false,1,false,false,true,false +TW80000/kufu,TW80000,JavaScript,false,false,false,0,false,false,false,false +akita/mem,akita,Go,true,false,false,3,true,false,false,false +kousu/fbgate,kousu,Python,false,true,false,0,false,false,false,false +RobertN/3d,RobertN,C++,false,false,false,0,false,false,false,false +tambre/rusty_starship,tambre,C++,false,false,false,0,false,false,false,false +opencver91/dl,opencver91,Python,false,false,false,0,false,false,false,false +vindarel/staticket,vindarel,HTML,false,false,false,0,false,false,false,false +KitaitiMakoto/scrollspy-example,KitaitiMakoto,HTML,true,false,false,1,false,true,false,false +renegadevi/Responsive-CSS3-Menu,renegadevi,HTML,false,false,false,0,false,false,false,false +geckotree/gko-boilerplate,geckotree,JavaScript,false,false,false,0,false,false,false,false +nestal/spaghetti,nestal,C++,true,false,false,1,true,false,false,false +hallison/mvc-ruby-sinatra-sequel,hallison,Ruby,false,false,false,0,false,false,false,false +xelivous/godot-irc,xelivous,GDScript,false,false,false,0,false,false,false,false +tipharethaurora/lento,tipharethaurora,PHP,false,false,false,0,false,false,false,false +pvdstel/chemiekast,pvdstel,PHP,false,false,false,0,false,false,false,false +dami_deleon/megaglobal_web,dami_deleon,Java,false,false,false,0,false,false,false,false +viet.hoang/my-simple-framework,viet.hoang,C#,false,false,false,0,false,false,false,false +Ardakaniz/ToyLang,Ardakaniz,C++,false,false,false,0,false,false,false,false +paretje/mupdf,paretje,C,false,false,false,0,false,false,false,false +paretje/zathura-pdf-mupdf,paretje,C,false,false,false,0,false,false,false,false +vurpo/rust-dlscript-example,vurpo,Rust,false,false,false,0,false,false,false,false +dev_harsh1998/device_a6000,dev_harsh1998,C++,false,false,false,0,false,false,false,false +Isidore/grimoire-mockup,Isidore,,false,false,false,0,false,false,false,false +macakzsolt/igenaptar,macakzsolt,CSS,false,false,false,0,false,false,false,false +smkbarbosa/Jasmine,smkbarbosa,CSS,false,false,false,0,false,false,false,false +weburger/am-wb-seen/am-wb-seen-monitors,weburger,JavaScript,false,false,false,0,false,false,false,false +rednatto/pseudo-sudo,rednatto,Shell,false,false,false,0,false,false,false,false +madsonic/madsonic-main,madsonic,Java,false,false,true,0,false,false,false,false +madsonic/madsonic,madsonic,,false,false,false,0,false,false,false,false +Gluttton/BronKerbosch,Gluttton,C++,true,false,false,1,false,true,false,false +AY_Apps/1chat_app,AY_Apps,,false,false,false,0,false,false,false,false +thebastedo/thebastedo.com,thebastedo,JavaScript,true,false,false,3,true,true,true,false +laurent.garnier.univ/TP-LOVE-Git,laurent.garnier.univ,C++,false,false,false,0,false,false,false,false +coderpower/coderpower-js-template,coderpower,JavaScript,false,false,false,0,false,false,false,false +andreaslinke/h2benchA,andreaslinke,Java,false,false,false,0,false,false,false,false +yawin/Mod_Magic,yawin,Lua,false,false,false,0,false,false,false,false +codeandsupplyfund/codeandsupply.fund,codeandsupplyfund,HTML,true,false,false,2,true,false,true,false +Fred-Barclay/Caja-hide,Fred-Barclay,Python,false,false,false,0,false,false,false,false +Fred-Barclay/Dragon-Catcher,Fred-Barclay,Python,false,false,false,0,false,false,false,false +baldnate/baldbbq,baldnate,C++,false,false,false,0,false,false,false,false +Innopolis/lessionCarShop,Innopolis,Java,false,false,false,0,false,false,false,false +kenzy-w/heroku-gitlab-runner,kenzy-w,,false,false,false,0,false,false,false,false +CruAlbaniaDigital/broshura-4-ligjet,CruAlbaniaDigital,HTML,true,false,false,1,false,true,false,false +mvglasow/pistemap,mvglasow,PHP,false,false,false,0,false,false,false,false +vladgo/ansible-minio,vladgo,,true,false,false,2,false,false,false,false +Tavalik/ConZapr1C_Tavalik,Tavalik,1CEnterprise,false,false,false,0,false,false,false,false +ding444/code-samples,ding444,JavaScript,false,false,false,0,false,false,false,false +prool/virtustan,prool,C,false,false,false,0,false,false,false,false +lagbotics/current,lagbotics,Java,true,false,false,1,false,true,false,false +x2v3/zl_refresh,x2v3,Python,false,false,false,0,false,false,false,false +ChrisLinn/my-vimrc,ChrisLinn,Vimscript,false,false,false,0,false,false,false,false +instant.sc/theverybesteditor,instant.sc,C#,false,false,false,0,false,false,false,false +icf-church/side-projects/slidecreator,icf-church,PHP,false,false,false,0,false,false,false,false +aamir200/Fact_Chat_Messenger,aamir200,Swift,false,false,false,0,false,false,false,false +lobaro/iot-dashboard-plugins,lobaro,JavaScript,false,false,false,0,false,false,false,false +swe_toast/malware-filter,swe_toast,Shell,false,false,false,0,false,false,false,false +Arknoid/Energeon,Arknoid,GDScript,false,false,false,0,false,false,false,false +territoires/caligram-react,territoires,JavaScript,true,false,false,2,false,true,true,false +hartsfield/mpvr,hartsfield,Go,false,false,false,0,false,false,false,false +julianojulio/yet-another-builder,julianojulio,Java,false,false,false,0,false,false,false,false +SportsStore/MVC,SportsStore,C#,false,false,false,0,false,false,false,false +Sinea/Sinea,Sinea,JavaScript,false,false,false,0,false,false,false,false +ChrisLinn/readme_template,ChrisLinn,,false,false,false,0,false,false,false,false +Rurigok/havabol-interpreter,Rurigok,Java,false,false,false,0,false,false,false,false +highway900/gochat,highway900,Go,false,false,false,0,false,false,false,false +Tai_Saito/Twitch_ChatBot,Tai_Saito,Python,false,false,false,0,false,false,false,false +kazuakasu/kast_web_application,kazuakasu,Python,false,false,false,0,false,false,false,false +tafsuth.boumali/twitter-live-streaming,tafsuth.boumali,Scala,false,false,false,0,false,false,false,false +MrCloud/PiOSPodSpecs,MrCloud,Ruby,false,false,false,0,false,false,false,false +tepe42/camagru,tepe42,PHP,false,false,false,0,false,false,false,false +cip-project/cip-testing/board-at-desk-single-dev,cip-project,Shell,false,false,false,0,false,false,false,false +zetok/epaste,zetok,Rust,true,false,false,1,true,false,false,false +magsoft/vlc,magsoft,C,false,false,false,0,false,false,false,false +Fred-Barclay/debupdate,Fred-Barclay,Python,false,false,false,0,false,false,false,false +PiDev-1617/webPi,PiDev-1617,HTML,false,false,false,0,false,false,false,false +simp/simp-metadata,simp,,false,false,false,0,false,false,false,false +mpdb.tv/Phoenix,mpdb.tv,Makefile,false,false,false,0,false,false,false,false +ludjac/spacecows,ludjac,PHP,false,false,false,0,false,false,false,false +faberxavier/lab_aed,faberxavier,C#,false,false,false,0,false,false,false,false +JoshuaGarrison27/CalvertWedding,JoshuaGarrison27,CSS,false,false,false,0,false,false,false,false +teamtime/TeamTime,teamtime,PHP,false,false,false,0,false,false,false,false +ValveSoftware/steamlink-sdk,ValveSoftware,,false,false,false,0,false,false,false,false +espruinolibs/MidiLibs,espruinolibs,JavaScript,false,false,false,0,false,false,false,false +commando.brando2k/qtile-config,commando.brando2k,Python,false,false,false,0,false,false,false,false +osslugaru/nonfree-mods,osslugaru,,false,false,false,0,false,false,false,false +vaghtgir/telegram-cli-binary,vaghtgir,,true,false,false,1,true,false,false,false +jsprengers/springboot-testing-tips,jsprengers,Java,false,false,true,0,false,false,false,false +nasa8x/blog,nasa8x,CSS,false,false,false,0,false,false,false,false +tsktsktsktsk/website_attempt_two,tsktsktsktsk,JavaScript,true,false,false,1,false,true,false,false +Sibren/JartexNotifier,Sibren,C#,false,false,false,0,false,false,false,false +tusharagey/wordpress_plug,tusharagey,PHP,false,false,false,0,false,false,false,false +vaghtgir/Semantic-UI-RTL,vaghtgir,,true,false,false,1,true,false,false,false +pixelone/BB-Tracker,pixelone,PHP,false,false,false,0,false,false,false,false +webhook-to-mqtt/webhook-to-mqtt-server,webhook-to-mqtt,Clojure,true,false,false,1,false,true,false,false +Neumann/GOLAD2,Neumann,Java,false,false,true,0,false,false,false,false +orbifx/tokenauth,orbifx,OCaml,false,false,false,0,false,false,false,false +jerome-commaret/Automatisation-FTP,jerome-commaret,JavaScript,false,false,false,0,false,false,false,false +PedroFerr/ng2-HTTP,PedroFerr,TypeScript,false,false,false,0,false,false,false,false +cinjko/infinite,cinjko,PHP,false,false,false,0,false,false,false,false +t0ky0/dscrape,t0ky0,Shell,false,false,false,0,false,false,false,false +valeth/anidb.rb,valeth,Ruby,true,false,false,1,false,true,false,false +PPL2017csui/PPLC5,PPL2017csui,,false,false,false,0,false,false,false,false +sumner/tracktime,sumner,Python,true,false,false,4,true,true,true,false +PPL2017csui/PPLA2,PPL2017csui,,false,false,false,0,false,false,false,false +PPL2017csui/PPLC2,PPL2017csui,HTML,true,false,false,3,true,true,true,false +protoneutron/xbtbb3cker_board3modules,protoneutron,PHP,false,false,false,0,false,false,false,false +PPL2017csui/PPLA1,PPL2017csui,JavaScript,true,false,false,2,false,true,true,false +teksify/chatting-script,teksify,CSS,false,false,false,0,false,false,false,false +icygit/revit-door-counter,icygit,C#,false,false,false,0,false,false,false,false +chialab/dna-webpack-boilerplate,chialab,JavaScript,false,false,false,0,false,false,false,false +Intive/JavaCourse,Intive,Java,false,false,false,0,false,false,false,false +marcus.filho/iugu-java,marcus.filho,Java,false,false,true,0,false,false,false,false +sunkur/SpringJavaFXController,sunkur,Java,false,false,false,0,false,false,false,false +pierrick.bignet/bot-jira-reminder,pierrick.bignet,JavaScript,false,false,false,0,false,false,false,false +michaelbarton/gaet,michaelbarton,Python,true,false,false,2,false,true,false,true +richardyantas5/Videogame,richardyantas5,JavaScript,false,false,false,0,false,false,false,false +allima/my-similarity-project,allima,Java,true,false,true,1,true,false,false,false +PPL2017csui/PPLA5,PPL2017csui,,false,false,false,0,false,false,false,false +albina-euregio/albina-server,albina-euregio,Java,true,false,true,1,false,true,false,false +pringlesc91/ci-pipelines,pringlesc91,,false,false,false,0,false,false,false,false +albina-euregio/albina-admin-gui,albina-euregio,TypeScript,false,false,false,0,false,false,false,false +acm-utv/teaching,acm-utv,HTML,false,false,false,0,false,false,false,false +Electropepper/NMM-1,Electropepper,C++,false,false,false,0,false,false,false,false +altkomgit/angular,altkomgit,,false,false,false,0,false,false,false,false +jorge.aguilera/codemidi,jorge.aguilera,Groovy,true,false,false,2,true,false,true,false +pavelgopanenko/margo-cookery,pavelgopanenko,HTML,true,false,false,2,false,false,false,true +charlie-ablett/romanesco,charlie-ablett,Ruby,false,false,false,0,false,false,false,false +damnjanovic.tanja96/Seminarski,damnjanovic.tanja96,Python,false,false,false,0,false,false,false,false +decision-deck/contrib.web-services/PUT/Sebastian.Pawlak,decision-deck,Java,false,false,false,0,false,false,false,false +liuzzi/branding-romina,liuzzi,CSS,false,false,false,0,false,false,false,false +jucamanve/hack,jucamanve,Ruby,false,false,false,0,false,false,false,false +ant-guillot/Part1_Next_Previous_Button,ant-guillot,R,false,false,false,0,false,false,false,false +ppdai-open/open-sdk,ppdai-open,JavaScript,false,false,false,0,false,false,false,false +revaz/Mtools,revaz,Python,false,false,false,0,false,false,false,false +P5YCH0D3/MUN,P5YCH0D3,JavaScript,true,false,false,1,false,true,false,false +jnanar/opus,jnanar,Python,false,true,false,0,false,false,false,false +CruAlbaniaDigital/hapitjeter,CruAlbaniaDigital,JavaScript,true,false,false,1,false,true,false,false +skunkwerks/diy-jails,skunkwerks,Shell,false,false,false,0,false,false,false,false +InfiniteNesLives/let-s-build-6502-compiler-in-C,InfiniteNesLives,C,false,false,false,0,false,false,false,false +diegoprimo/infn3,diegoprimo,,false,false,false,0,false,false,false,false +sudoman/swirlnet,sudoman,JavaScript,false,false,false,0,false,false,false,false +a1-proyek4/old-ceban-backend,a1-proyek4,Java,false,false,false,0,false,false,false,false +thebrandonallen/wp-fail2ban-redux,thebrandonallen,PHP,false,false,false,0,false,false,false,false +kazuakasu/why_not_us_mobile_app_backend,kazuakasu,Python,false,false,false,0,false,false,false,false +sewolf/my-super-project,sewolf,,false,false,false,0,false,false,false,false +kazuakasu/voipcc_core_application,kazuakasu,Java,false,false,false,0,false,false,false,false +nemolovich/rpi-init,nemolovich,Perl,false,false,false,0,false,false,false,false +nemolovich/rpi-docker,nemolovich,HTML,false,false,false,0,false,false,false,false +nemolovich/ApacheDS-image,nemolovich,Shell,false,false,false,0,false,false,false,false +revaz/Ptools,revaz,Python,false,false,false,0,false,false,false,false +revaz/glups,revaz,Python,false,false,false,0,false,false,false,false +SiddheshRane/xtrac,SiddheshRane,C,false,false,false,0,false,false,false,false +gitlab-org/build/omnibus-mirror/postgres_exporter,gitlab-org,Go,false,false,false,0,false,false,false,false +authenticity/enrollment-js,authenticity,JavaScript,true,false,false,2,true,true,false,false +kazuakasu/why_not_us_mobile_app,kazuakasu,Java,false,false,false,0,false,false,false,false +wgo-manager/site,wgo-manager,HTML,false,false,false,0,false,false,false,false +quantcoin/mobile,quantcoin,JavaScript,false,false,false,0,false,false,false,false +prashantkrsahu/ios-beacon,prashantkrsahu,JavaScript,false,false,false,0,false,false,false,false +DanPiston/dotfiles,DanPiston,Vimscript,false,false,false,0,false,false,false,false +selfuryon/toggle_report,selfuryon,JupyterNotebook,false,false,false,0,false,false,false,false +waldi/debian-mirror-cloud-terraform,waldi,HCL,false,false,false,0,false,false,false,false +andivigna/pi-monitor,andivigna,JavaScript,false,false,false,0,false,false,false,false +drburd/FurryAnimals,drburd,C#,false,false,false,0,false,false,false,false +shingonoide/php,shingonoide,PHP,true,false,false,1,false,true,false,false +iron1025/activity_manage,iron1025,JavaScript,false,false,false,0,false,false,false,false +sourisFramework/offCanvas,sourisFramework,HTML,false,false,false,0,false,false,false,false +CS-Translation/JamesRH_Lisa,CS-Translation,,false,false,false,0,false,false,false,false +jbclaya/NewsScraper,jbclaya,,false,false,false,0,false,false,false,false +chinhlv95/Test1,chinhlv95,PHP,false,false,false,0,false,false,false,false +dgch/dojo,dgch,Java,false,false,false,0,false,false,false,false +mm-openstyle/guidaHtml,mm-openstyle,Java,false,false,false,0,false,false,false,false +anarcat/kobo-ssh,anarcat,Shell,true,false,false,1,true,false,false,false +gitlab-org/gitlab-mock-ci-service,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +onimon/dashboard,onimon,PHP,false,false,false,0,false,false,false,false +frettio/frettio-handbook,frettio,Shell,false,false,false,0,false,false,false,false +rationalcyber/syslog-ng-configuration,rationalcyber,,false,false,false,0,false,false,false,false +swe-nrb/nrb-sbp-shopfront,swe-nrb,HTML,true,false,false,3,true,false,true,false +debiants/laptop-detect,debiants,Shell,false,false,false,0,false,false,false,false +toganlabs/linux-raspberrypi-lts,toganlabs,,false,false,false,0,false,false,false,false +nats/deptreeviz,nats,Java,false,false,false,0,false,false,false,false +bmuschko/gradle-docker-plugin,bmuschko,Groovy,false,false,false,0,false,false,false,false +paddy0174/extendedSitemap,paddy0174,PHP,false,false,false,0,false,false,false,false +finnyapp/finny-api,finnyapp,Clojure,true,false,false,2,false,true,true,false +onimon/script,onimon,Python,false,false,false,0,false,false,false,false +NoctuaDeveloper/Noctua,NoctuaDeveloper,Matlab,false,false,false,0,false,false,false,false +Ekkon-Games/Aela,Ekkon-Games,C++,false,false,false,0,false,false,false,false +nkay08/gameList,nkay08,Java,false,false,false,0,false,false,false,false +festin/birthday-reminder,festin,JavaScript,false,false,false,0,false,false,false,false +ZatsuneNoMokou/copy_text_link,ZatsuneNoMokou,JavaScript,false,false,false,0,false,false,false,false +mildahrubes/wordpress-docker-file,mildahrubes,,false,false,false,0,false,false,false,false +neville1355/realmoffline,neville1355,C#,false,false,false,0,false,false,false,false +3BCnC/pruware,3BCnC,,false,false,false,0,false,false,false,false +rjmunhoz/npmjs-telegram-bot,rjmunhoz,JavaScript,false,false,false,0,false,false,false,false +tp3/qtmidi,tp3,C++,false,false,false,0,false,false,false,false +coppercoder/sastrane,coppercoder,Java,false,false,false,0,false,false,false,false +ant-guillot/SemiCollapsibleSidebar,ant-guillot,R,false,false,false,0,false,false,false,false +cse-pmdat/ips,cse-pmdat,JavaScript,false,false,false,0,false,false,false,false +DIGITALR00TS-Demo/ci-jekyll,DIGITALR00TS-Demo,HTML,true,false,false,4,true,true,true,false +ultreiaio/gitlab-maven-plugin,ultreiaio,Java,true,false,false,4,false,true,false,false +OK2NMZ/embedded-linux-crash-course,OK2NMZ,,false,false,false,0,false,false,false,false +remyGrandry/Myre,remyGrandry,C,true,false,false,2,true,false,false,true +Molino/CisLuminator,Molino,,false,false,false,0,false,false,false,false +clapide/music-real-time,clapide,Python,false,false,false,0,false,false,false,false +alxkalinovsky/datamola_shirts_unsorted,alxkalinovsky,C++,false,false,false,0,false,false,false,false +arabeyes-art/khotot,arabeyes-art,Makefile,false,false,false,0,false,false,false,false +anandrikka/tmdb-project,anandrikka,JavaScript,false,false,false,0,false,false,false,false +wesleyancs/danner-licata-recurrence-extraction,wesleyancs,OCaml,false,false,false,0,false,false,false,false +cromse/django-plataform-colegio,cromse,Python,false,true,false,0,false,false,false,false +owdlevi/github-reactjs,owdlevi,JavaScript,false,false,false,0,false,false,false,false +kousu/ConjugateFR,kousu,,false,false,false,0,false,false,false,false +forGGe/theCore,forGGe,C++,false,false,false,0,false,false,false,false +griest/pexi,griest,JavaScript,true,false,false,3,true,true,true,false +Bernt/MITOS,Bernt,Python,false,true,false,0,false,false,false,false +miniit/quantum-drupal,miniit,PHP,false,false,false,0,false,false,false,false +miniit/soumedico-simulator,miniit,,false,false,false,0,false,false,false,false +nathanielchanning/simple-ball,nathanielchanning,OCaml,false,false,false,0,false,false,false,false +Goldenknight64/HCISemesterProject,Goldenknight64,,false,false,false,0,false,false,false,false +Ryant/ansible-haproxy,Ryant,,false,false,false,0,false,false,false,false +hjubb/snek-emoji,hjubb,Kotlin,false,false,false,0,false,false,false,false +dockerouscommon/dockerous-shortcodes,dockerouscommon,PHP,false,false,false,0,false,false,false,false +leungkaming666/elementMobile,leungkaming666,Vue,false,false,false,0,false,false,false,false +Infinity//PZ1,Infinity,Java,false,false,false,0,false,false,false,false +garcia.rev/test,garcia.rev,,false,false,false,0,false,false,false,false +engineering-projekt/examibur,engineering-projekt,Java,true,false,false,7,true,true,true,false +raficky/vmica/1,raficky,HTML,false,false,false,0,false,false,false,false +TheoElia/ludeo-video,TheoElia,TypeScript,false,false,false,0,false,false,false,false +icechao/INIT_nrf5_sdk,icechao,Shell,false,false,false,0,false,false,false,false +brianhei/react-navigation-playground,brianhei,JavaScript,false,false,false,0,false,false,false,false +JrRaulHerrera/cms,JrRaulHerrera,HTML,false,false,false,0,false,false,false,false +cardinalblue/OpenCV-iOS,cardinalblue,C++,false,false,false,0,false,false,false,false +openrail/uk/referencedata-nodejs,openrail,JavaScript,true,false,false,4,true,true,true,false +sztkp/yeah-boi-generator,sztkp,Python,false,false,false,0,false,false,false,false +ShashankaNataraj/HomeSuite,ShashankaNataraj,JavaScript,false,false,false,0,false,false,false,false +weliyt/kfcpodcast-bootstrap,weliyt,Java,false,false,false,0,false,false,false,false +jpro-public/HelloJPro,jpro-public,Java,false,false,false,0,false,false,false,false +paren8esis/Artificial_Intelligence_course,paren8esis,Python,false,false,false,0,false,false,false,false +qor/media_library,qor,Go,false,false,false,0,false,false,false,false +thelabnyc/certbot-django,thelabnyc,Python,true,false,false,1,false,true,false,false +ypid/hc-tests-cache,ypid,HTML,false,false,false,0,false,false,false,false +azdle/stockfaces-api,azdle,Rust,true,false,false,2,true,false,false,false +o2des_dev/ParallelOCBA,o2des_dev,Cuda,false,false,false,0,false,false,false,false +jlf123/intents-camping-frontend,jlf123,TypeScript,false,false,false,0,false,false,false,false +adikumar25/Ojass17,adikumar25,Java,false,false,false,0,false,false,false,false +eit-wit/figures_n_illustrations,eit-wit,,false,false,false,0,false,false,false,false +hoologic/client.carexcanada,hoologic,,false,false,false,0,false,false,false,false +viet.hoang/workshop,viet.hoang,PowerShell,false,false,false,0,false,false,false,false +nobilix/list-filtering,nobilix,JavaScript,false,false,false,0,false,false,false,false +bukialabi/apionic,bukialabi,TypeScript,false,false,false,0,false,false,false,false +drain-drian/meteorite-fm,drain-drian,JavaScript,false,false,false,0,false,false,false,false +Toxcore/toxcore,Toxcore,C,false,false,false,0,false,false,false,false +thesecretmaster/otters,thesecretmaster,Ruby,false,false,false,0,false,false,false,false +incredibleXE/wifi-display-arduino,incredibleXE,TeX,false,false,false,0,false,false,false,false +ottojimb/presentation,ottojimb,JavaScript,false,false,false,0,false,false,false,false +penkit/alpine,penkit,Shell,false,false,false,0,false,false,false,false +gabolucuy/PuntuacionTennis,gabolucuy,Java,false,false,false,0,false,false,false,false +RTSquad/Rpi,RTSquad,Python,false,false,false,0,false,false,false,false +ryanbaskara/omi,ryanbaskara,JavaScript,false,false,false,0,false,false,false,false +mjasion/ansible-workshop,mjasion,Shell,false,false,false,0,false,false,false,false +matthewj4m/ddc-main,matthewj4m,JavaScript,false,false,false,0,false,false,false,false +OpenMusicKontrollers/synthpod,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false +MrCloud/PiOSImageLoader,MrCloud,Swift,false,false,false,0,false,false,false,false +wgo-manager/client,wgo-manager,JavaScript,false,false,false,0,false,false,false,false +tiagodll/notes,tiagodll,JavaScript,false,false,false,0,false,false,false,false +Cracklydisc/pmManager-Amazfit,Cracklydisc,Java,false,false,false,0,false,false,false,false +codeandsupply/survey_analysis,codeandsupply,Ruby,false,false,false,0,false,false,false,false +pedro_hff/javaweb-projeto-banco,pedro_hff,Java,false,false,true,0,false,false,false,false +robconnolly/hass-config,robconnolly,,true,false,false,1,false,false,false,false +uedalab/sp8-analysis,uedalab,C++,false,false,false,0,false,false,false,false +amirziarati/Echarge,amirziarati,Java,false,false,false,0,false,false,false,false +tanyan2004/updown-ruby,tanyan2004,Ruby,false,false,false,0,false,false,false,false +vente17/Frutinfo,vente17,Java,false,false,false,0,false,false,false,false +strsljen_ansible/openstack,strsljen_ansible,,false,false,false,0,false,false,false,false +SornemusPHP/imagekeeper-php,SornemusPHP,PHP,false,false,false,0,false,false,false,false +linuxtools/tkterm,linuxtools,Python,false,false,false,0,false,false,false,false +kylehqcom/qupid,kylehqcom,Go,true,false,false,1,false,true,false,false +isite-project/etweet,isite-project,CSS,false,false,false,0,false,false,false,false +posea/posea,posea,,false,false,false,0,false,false,false,false +nandess/pact-test,nandess,,false,false,false,0,false,false,false,false +Bladou/logstash-indexer-example,Bladou,Ruby,true,false,false,1,false,true,false,false +ZatsuneNoMokou/bettertwitter,ZatsuneNoMokou,JavaScript,false,false,false,0,false,false,false,false +chef-platform/storm-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/consul-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/ovh-api,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/zookeeper-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/aerospike-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +ffffm/docker-salt-minion,ffffm,,true,false,false,1,true,false,false,false +chef-platform/cluster-search,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/confluent-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +chef-platform/dynamic-attributes,chef-platform,Ruby,false,false,false,0,false,false,false,false +Maix5/burvey,Maix5,Java,false,false,false,0,false,false,false,false +Mattlk13/github-updater,Mattlk13,PHP,false,false,false,0,false,false,false,false +mark.anthony.r.rosario/a-software-project-management-framework,mark.anthony.r.rosario,,false,false,false,0,false,false,false,false +tramwayjs/tramway-core-router,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +dgoo2308/jekyll-plantuml-url,dgoo2308,Ruby,true,false,false,2,true,true,false,false +Waxo/2c-course,Waxo,JavaScript,false,false,false,0,false,false,false,false +hasura/docker-git-push-examples,hasura,Ruby,false,false,false,0,false,false,false,false +githg22/My_Code,githg22,C++,false,false,false,0,false,false,false,false +Creased/markdown-to-mindmap,Creased,JavaScript,false,false,false,0,false,false,false,false +lengthofrope-pdo/querybuilder,lengthofrope-pdo,,false,false,false,0,false,false,false,false +willemmali-sh/todo,willemmali-sh,Shell,false,false,false,0,false,false,false,false +ehiggs/ripawk,ehiggs,Rust,true,false,false,1,false,true,false,false +rachaelp/eagle-utils,rachaelp,,false,false,false,0,false,false,false,false +Oreolek/ludumdare37,Oreolek,CoffeeScript,false,false,false,0,false,false,false,false +arecap/arecap,arecap,,false,false,false,0,false,false,false,false +ontic/CLUSPLUS,ontic,Python,false,false,false,0,false,false,false,false +aminkt/yii2-bootstrap-ajax-modal-widget,aminkt,PHP,false,false,false,0,false,false,false,false +dxvxd/have-a-plan,dxvxd,HTML,false,false,false,0,false,false,false,false +joanq/asciidocadmonitionbug,joanq,,false,false,false,0,false,false,false,false +mkuhnt/de-budget-ethereum,mkuhnt,JavaScript,false,false,false,0,false,false,false,false +android-deamon/deamon-service-demo,android-deamon,Java,false,false,false,0,false,false,false,false +android-deamon/deamon-service-library,android-deamon,Java,false,false,false,0,false,false,false,false +mkotek/classx-server,mkotek,Java,false,false,true,0,false,false,false,false +dockerouscommon/dockerous-pagespeed,dockerouscommon,PHP,false,false,false,0,false,false,false,false +aamir200/PlaceNearMe,aamir200,Swift,false,false,false,0,false,false,false,false +brycepj/gitlab-frontend-monitor,brycepj,JavaScript,false,false,false,0,false,false,false,false +tanyan2004/WIKI,tanyan2004,,false,false,false,0,false,false,false,false +tanyan2004/rubygems,tanyan2004,Ruby,false,false,false,0,false,false,false,false +didymograptus/ASG4,didymograptus,HTML,false,false,false,0,false,false,false,false +nonameyet/nash-mesh,nonameyet,,false,false,false,0,false,false,false,false +captainmurphy/unity-launcher,captainmurphy,C#,false,false,false,0,false,false,false,false +antongnutov/scala-js-prototype,antongnutov,Scala,true,false,false,3,true,true,true,false +gibbonsjohnm/gibbonsjohnm.gitlab.io,gibbonsjohnm,HTML,false,false,false,0,false,false,false,false +bradclawsie/Context,bradclawsie,Perl6,false,false,false,0,false,false,false,false +sunsipeng/sipeng-blog,sunsipeng,,false,false,false,0,false,false,false,false +MLRyeast/MLRsimulator,MLRyeast,C++,false,false,false,0,false,false,false,false +sklif.85/ft_random,sklif.85,C++,false,false,false,0,false,false,false,false +fgaz/ict,fgaz,JavaScript,false,false,false,0,false,false,false,false +TeamPBDK/cake_shop,TeamPBDK,CSS,false,false,false,0,false,false,false,false +denis.cosarba/desktop-horloger,denis.cosarba,C#,false,false,false,0,false,false,false,false +jankrloz/petdate,jankrloz,JavaScript,false,false,false,0,false,false,false,false +jswrenn/nlptk,jswrenn,Rust,true,false,false,1,false,true,false,false +AmbassadAir/GullivAir,AmbassadAir,C++,false,false,false,0,false,false,false,false +Dadiva/web-app,Dadiva,JavaScript,false,false,false,0,false,false,false,false +matthiasstock/monolith,matthiasstock,Java,true,false,false,2,true,true,false,false +rej156/React-testing-guide,rej156,,false,false,false,0,false,false,false,false +nextgis/data.mos.ru,nextgis,,false,false,false,0,false,false,false,false +vanilla-rtb/CRUD,vanilla-rtb,C++,false,false,false,0,false,false,false,false +universal-playlist/pls2upl,universal-playlist,Python,true,false,false,1,false,false,false,false +RIscRIpt/tti_schedule_android,RIscRIpt,Java,false,false,false,0,false,false,false,false +zetok/tox-neurological-warfare-bot,zetok,Rust,false,false,false,0,false,false,false,false +IAmASheep0w0/final,IAmASheep0w0,Makefile,false,false,false,0,false,false,false,false +bup/bup,bup,Python,false,false,false,0,false,false,false,false +EDGC_MGB/MGB_Genotyping,EDGC_MGB,,false,false,false,0,false,false,false,false +Awesomenies/Green-Collaboration,Awesomenies,JavaScript,false,false,false,0,false,false,false,false +SherlockHolo/pvim,SherlockHolo,Shell,false,false,false,0,false,false,false,false +ngx-filemanager/ngx-filemanager,ngx-filemanager,TypeScript,true,false,false,3,true,true,true,false +weznon/dotfiles,weznon,Vimscript,false,false,false,0,false,false,false,false +retrobrewcomputers/Linux-SBC,retrobrewcomputers,,false,false,false,0,false,false,false,false +lstep/2fanginx,lstep,Go,false,false,false,0,false,false,false,false +JudiniCambell/Dinamico,JudiniCambell,PHP,false,false,false,0,false,false,false,false +rephus/perfect-stack,rephus,JavaScript,false,false,false,0,false,false,false,false +czerasz/ansible-jemalloc,czerasz,Shell,false,false,false,0,false,false,false,false +reprazent/dotfiles,reprazent,Shell,false,false,false,0,false,false,false,false +shadowy-ui/angular-2-temlates,shadowy-ui,JavaScript,false,false,false,0,false,false,false,false +wayanjimmy/warungmoneer,wayanjimmy,CSS,true,false,false,1,false,true,false,false +mtg-archive/magic-laravel,mtg-archive,JavaScript,true,false,false,2,false,true,true,false +Creased/chl-xivo,Creased,Lua,false,false,false,0,false,false,false,false +carlosga/FacturaE,carlosga,C#,false,false,false,0,false,false,false,false +php-pm/php-pm,php-pm,PHP,false,false,false,0,false,false,false,false +josegerman191/AppTracking,josegerman191,HTML,false,false,false,0,false,false,false,false +anarcat/bup-cron,anarcat,Python,false,false,false,0,false,false,false,false +streamy/concon,streamy,Go,false,false,false,0,false,false,false,false +cign-io/swifty-ghost,cign-io,HTML,false,false,false,0,false,false,false,false +BratWiekszy/JsonRazor,BratWiekszy,,false,false,false,0,false,false,false,false +penkit/packages,penkit,Shell,true,false,false,1,false,true,false,false +mkleehammer/spacemacs.d,mkleehammer,EmacsLisp,false,false,false,0,false,false,false,false +simp-council/minutes,simp-council,,false,false,false,0,false,false,false,false +Sosha/Tor-Restart,Sosha,Shell,false,false,false,0,false,false,false,false +tommasopasini/NLP_Practical_Sessions,tommasopasini,JupyterNotebook,false,false,false,0,false,false,false,false +MoisesCC/curso_git_grupo1,MoisesCC,CSS,false,false,false,0,false,false,false,false +Energy0124/unreal-unity-chan,Energy0124,,false,false,false,0,false,false,false,false +fstein/graph,fstein,Java,false,false,false,0,false,false,false,false +vnellore/gofred,vnellore,Go,false,false,false,0,false,false,false,false +axet/wcraft2k,axet,C++,false,false,false,0,false,false,false,false +bits4fun/mpm,bits4fun,C,false,false,false,0,false,false,false,false +axet/lookup,axet,Java,false,false,true,0,false,false,false,false +axet/desktop,axet,Java,false,false,false,0,false,false,false,false +dotuancd/basic-blog,dotuancd,PHP,false,false,false,0,false,false,false,false +axet/apple,axet,Java,false,false,true,0,false,false,false,false +bits4fun/buildbin,bits4fun,C,false,false,false,0,false,false,false,false +z88/mthtoken,z88,C,false,false,false,0,false,false,false,false +bits4fun/eazylink2,bits4fun,C++,false,false,false,0,false,false,false,false +axet/mavennatives,axet,Java,false,false,true,0,false,false,false,false +trexs/drutopia_docker,trexs,,false,false,false,0,false,false,false,false +sympla-recruitment/ios-recruitment,sympla-recruitment,,false,false,false,0,false,false,false,false +trampo/trampo-web,trampo,JavaScript,false,false,false,0,false,false,false,false +bagrounds/gaggle-demo,bagrounds,JavaScript,false,false,false,0,false,false,false,false +librecube/elements/LC3201,librecube,,false,false,false,0,false,false,false,false +dotuancd/basic-oop,dotuancd,PHP,false,false,false,0,false,false,false,false +Dzybaty/Chrome-Tabber-Extension,Dzybaty,JavaScript,false,false,false,0,false,false,false,false +vahidabdi/firefighter,vahidabdi,Elixir,false,false,false,0,false,false,false,false +makespacemadrid/ResumenesSemanales,makespacemadrid,Python,false,false,false,0,false,false,false,false +zhakenov.askar/Notification,zhakenov.askar,Java,false,false,false,0,false,false,false,false +zhakenov.askar/Files0,zhakenov.askar,Java,false,false,false,0,false,false,false,false +dgoo2308/testapi_access,dgoo2308,,true,false,false,1,false,true,false,false +chrifey/mobilepi,chrifey,Shell,false,false,false,0,false,false,false,false +PureNexus/vendor_gapps,PureNexus,Makefile,false,false,false,0,false,false,false,false +Linear/dungeonita,Linear,Kotlin,false,false,false,0,false,false,false,false +Roguyt/overwatch-monitoring,Roguyt,JavaScript,false,false,false,0,false,false,false,false +mimpirizal/SAB-143040106,mimpirizal,Java,false,false,false,0,false,false,false,false +b2vn/TheDrawinator,b2vn,OpenSCAD,false,false,false,0,false,false,false,false +ashish28ranjan/network-speed-bot,ashish28ranjan,Python,false,false,false,0,false,false,false,false +headlines-analyzer/scrapper,headlines-analyzer,Python,false,true,false,0,false,false,false,false +zj/babysit,zj,Go,false,false,false,0,false,false,false,false +tastapod/bddbyexample,tastapod,CSS,true,false,false,1,false,true,false,false +DeezerDownloader/jaudiotagger,DeezerDownloader,Java,false,false,true,0,false,false,false,false +AntoniOrs/Timer,AntoniOrs,TypeScript,true,false,false,3,true,false,true,true +ezdoo/website_recaptcha,ezdoo,Python,false,false,false,0,false,false,false,false +khwfox/uikit_sample,khwfox,HTML,false,false,false,0,false,false,false,false +asdofindia/asdofindia.gitlab.io,asdofindia,CSS,false,false,false,0,false,false,false,false +cip-playground/project-x,cip-playground,,false,false,false,0,false,false,false,false +saibot94/ps-lab-2.1,saibot94,C++,false,false,false,0,false,false,false,false +victorlocoman/trello,victorlocoman,JavaScript,false,false,false,0,false,false,false,false +files3/gnvue2,files3,CSS,false,false,false,0,false,false,false,false +cef.table.archive/cef.table.archive,cef.table.archive,,false,false,false,0,false,false,false,false +matheusviegas/CoffeeBreak,matheusviegas,HTML,false,false,false,0,false,false,false,false +riktus/WpfCustomWindow,riktus,C#,false,false,false,0,false,false,false,false +adrikayak/Hybris_translations,adrikayak,Python,false,false,false,0,false,false,false,false +spicycms.com/dev-SpicyCMS_Chief_Editor,spicycms.com,Shell,true,false,false,3,true,false,false,false +jakimenko/timestamp-microservice,jakimenko,JavaScript,false,false,false,0,false,false,false,false +fchasseur/pingClock,fchasseur,C++,false,false,false,0,false,false,false,false +teabow/swift-redux-stack,teabow,Swift,false,false,false,0,false,false,false,false +teabow/kotlin-redux-stack,teabow,Kotlin,false,false,false,0,false,false,false,false +tiltan2017/test,tiltan2017,JavaScript,false,false,false,0,false,false,false,false +siasar-project/indicators,siasar-project,JavaScript,false,false,false,0,false,false,false,false +trampo/trampo-api,trampo,C#,false,false,false,0,false,false,false,false +bernardodsanderson/mubi-world,bernardodsanderson,JavaScript,false,false,false,0,false,false,false,false +danztty/react_practica,danztty,,false,false,false,0,false,false,false,false +peetp6/chillinpillow,peetp6,C++,false,false,false,0,false,false,false,false +gismala/ongisline,gismala,JavaScript,true,false,false,1,false,false,false,false +tiltan2017/coping,tiltan2017,C#,false,false,false,0,false,false,false,false +pisandellicom/egret,pisandellicom,PHP,false,false,false,0,false,false,false,false +opensource-saurik/cydia,opensource-saurik,Objective-C++,false,false,false,0,false,false,false,false +angular-bootcamp/starter,angular-bootcamp,JavaScript,false,false,false,0,false,false,false,false +MobiusHorizons/Youtube-BME280-Weather-Station,MobiusHorizons,C++,false,false,false,0,false,false,false,false +ttc/transmark,ttc,JavaScript,false,false,false,0,false,false,false,false +wangqiangweb/myblog,wangqiangweb,HTML,false,false,false,0,false,false,false,false +dinosaurchi/Thesis,dinosaurchi,Java,false,false,false,0,false,false,false,false +gbraad/minishift,gbraad,,true,false,false,1,false,true,false,false +nknapp/openapi-editor,nknapp,Vue,false,false,false,0,false,false,false,false +jakimenko/request-header-parser-microservice,jakimenko,JavaScript,false,false,false,0,false,false,false,false +mhoelzl/PullRequests,mhoelzl,C++,false,false,false,0,false,false,false,false +guihao_cyh/demo,guihao_cyh,,false,false,false,0,false,false,false,false +ZORALab/BaSHELL,ZORALab,Shell,true,false,false,3,true,true,false,true +fabschon/ratlab,fabschon,Python,false,false,false,0,false,false,false,false +hopmon-re/unity3d-game,hopmon-re,C#,false,false,false,0,false,false,false,false +FerJohan/Padawan-project,FerJohan,JavaScript,false,false,false,0,false,false,false,false +Jmccl/Custodia,Jmccl,Ruby,false,false,false,0,false,false,false,false +librespacefoundation/rocketry/hpr-telem-board,librespacefoundation,,false,false,false,0,false,false,false,false +Mizux/qt5-101,Mizux,C++,false,false,false,0,false,false,false,false +khangtoh/fb-messenger-api,khangtoh,JavaScript,false,false,false,0,false,false,false,false +Meechyst/three,Meechyst,PHP,false,false,false,0,false,false,false,false +moazzam133/php-51,moazzam133,PHP,false,false,false,0,false,false,false,false +fosbsb/android,fosbsb,Java,false,false,false,0,false,false,false,false +monasca-installer/monasca-installer,monasca-installer,Shell,true,false,false,2,false,true,true,false +shamimarnob/phpNewProject,shamimarnob,,false,false,false,0,false,false,false,false +qparrod/AngryRobot,qparrod,Makefile,false,false,false,0,false,false,false,false +mek4nr/BloodSword,mek4nr,Java,false,false,false,0,false,false,false,false +mchen6/ConnectND,mchen6,Python,false,false,false,0,false,false,false,false +yorickpeterse/load-testing,yorickpeterse,,true,false,false,1,false,true,false,false +daveroundy/dynein_walk,daveroundy,C++,false,false,false,0,false,false,false,false +Urosch/TopoDTK,Urosch,JavaScript,false,false,false,0,false,false,false,false +Zartemius/pet,Zartemius,C++,false,false,false,0,false,false,false,false +INhouse/inhouse-framework,INhouse,PHP,false,false,false,0,false,false,false,false +Hazor/BattlEye_Bypass,Hazor,,false,false,false,0,false,false,false,false +nvidia/cuda-ppc64le,nvidia,,false,false,false,0,false,false,false,false +mikekoetter/node-varint,mikekoetter,C++,true,false,false,1,false,true,false,false +AlexanderCavaliere/CSCI-331-Project_One,AlexanderCavaliere,Java,false,false,false,0,false,false,false,false +automatedtrading/questrade,automatedtrading,Go,true,false,false,1,false,true,false,false +read100nm/cg_practice,read100nm,C++,false,false,false,0,false,false,false,false +oneplusqa/qapropaganda,oneplusqa,,false,false,false,0,false,false,false,false +Mizux/cpp-101,Mizux,CMake,true,false,false,1,false,false,false,true +microservices-for-everyone/communication_styles,microservices-for-everyone,PHP,false,false,false,0,false,false,false,false +hybris-projects/HybrisUserTracking,hybris-projects,Java,false,false,true,0,false,false,false,false +xaverdh/hmail,xaverdh,Haskell,false,false,false,0,false,false,false,false +hybris-projects/TrackingSessionListenerExample,hybris-projects,Java,false,false,true,0,false,false,false,false +BarcodeReader/barcode-reader,BarcodeReader,Java,false,false,false,0,false,false,false,false +torfinnnome/dotfiles,torfinnnome,Vimscript,false,false,false,0,false,false,false,false +genthree/install-script,genthree,Shell,false,false,false,0,false,false,false,false +catedra_c/vm,catedra_c,Ruby,false,false,false,0,false,false,false,false +Syl20/RubiksSolver,Syl20,Python,false,false,false,0,false,false,false,false +html-2-embed/html-2-embed,html-2-embed,JavaScript,false,false,false,0,false,false,false,false +nielsmokkenstorm/dungeontool,nielsmokkenstorm,PHP,true,false,false,1,true,false,false,false +alelec/docker-arm-none-eabi,alelec,,true,false,false,1,false,true,false,false +carmenbianca/en-pyssant,carmenbianca,Python,true,true,false,3,false,true,true,false +ravindra-lakal/scribe,ravindra-lakal,,false,false,false,0,false,false,false,false +viveks.singh/dslib,viveks.singh,C,false,false,false,0,false,false,false,false +divemarkus/reclaim-w10,divemarkus,PowerShell,false,false,false,0,false,false,false,false +IlaRistola/Ratlander,IlaRistola,C#,false,false,false,0,false,false,false,false +bck8888/3D_CAD_nodule_detection,bck8888,Python,false,false,false,0,false,false,false,false +neo0x3d/ffp_infoscreen,neo0x3d,Python,false,true,false,0,false,false,false,false +athewit/the-project-coo-3,athewit,Python,false,false,false,0,false,false,false,false +checkmein2/checkmein2-mobile,checkmein2,JavaScript,false,false,false,0,false,false,false,false +ScribeSoftware/webapi-full-reference-app,ScribeSoftware,JavaScript,false,false,false,0,false,false,false,false +chatterops/chatterops.gitlab.io,chatterops,CSS,true,false,false,1,false,true,false,false +mfgames-writing/example-frankenstein,mfgames-writing,,true,false,false,1,false,false,true,false +comkieffer/Thesis-Code,comkieffer,Matlab,false,false,false,0,false,false,false,false +angryshort.one/swift-backend,angryshort.one,Swift,true,false,false,3,true,true,true,false +zambzi/TerminalCommander,zambzi,C++,false,false,false,0,false,false,false,false +SimonPierreBrazeau/VectorAttack2,SimonPierreBrazeau,JavaScript,false,false,false,0,false,false,false,false +anhtuannt0308/my-app,anhtuannt0308,Java,false,false,false,0,false,false,false,false +user3Zub/project1,user3Zub,,false,false,false,0,false,false,false,false +necoman51/android_kernel_acer_z530,necoman51,,false,false,false,0,false,false,false,false +LittleCorn/supersume8.9,LittleCorn,,false,false,false,0,false,false,false,false +aeten/aeten-core-c,aeten,C,false,false,false,0,false,false,false,false +wisdomwolf/house_hunter,wisdomwolf,Python,false,true,false,0,false,false,false,false +oscar84922tw/wotan,oscar84922tw,Python,false,false,false,0,false,false,false,false +fennecdjay/ff2spa,fennecdjay,C,false,false,false,0,false,false,false,false +fennecdjay/haiti,fennecdjay,C,false,false,false,0,false,false,false,false +fennecdjay/Gwion,fennecdjay,C,false,false,false,0,false,false,false,false +fennecdjay/Gwion-plug,fennecdjay,C,false,false,false,0,false,false,false,false +crazybus/crazybus.gitlab.io,crazybus,CSS,true,false,false,1,false,true,false,false +wumo/agent-simulator,wumo,Java,false,false,false,0,false,false,false,false +priezz/simple-react-mobx-router,priezz,JavaScript,false,false,false,0,false,false,false,false +nocory/pvp_framework.Altis,nocory,SQF,false,false,false,0,false,false,false,false +lauyader/Juegos-phaser,lauyader,,false,false,false,0,false,false,false,false +mtxweb/mtxweb-wp-api,mtxweb,PHP,false,false,false,0,false,false,false,false +nicolasOvejero/tp2_nachos,nicolasOvejero,HTML,false,false,false,0,false,false,false,false +soorajkenoth/An_introduction_to_Malayalam_Computer,soorajkenoth,TeX,false,false,false,0,false,false,false,false +victor.trucco/CPUProtector,victor.trucco,,false,false,false,0,false,false,false,false +alexraginskiy/scratch,alexraginskiy,JavaScript,false,false,false,0,false,false,false,false +edwardwang1/biomodUBC,edwardwang1,HTML,true,false,false,1,false,false,true,false +maximgolev/Test,maximgolev,HTML,false,false,false,0,false,false,false,false +chengpengpeng/cp,chengpengpeng,Java,false,false,false,0,false,false,false,false +fshm/awesome-coop,fshm,,false,false,false,0,false,false,false,false +mgoral/feed-commas,mgoral,Python,true,true,false,2,false,true,true,false +naortega/TFGCW,naortega,C++,true,false,false,1,true,false,false,false +or_ira/ThPr/ThpEditor,or_ira,JavaScript,false,false,false,0,false,false,false,false +mzdonline/tutorial,mzdonline,C++,false,false,false,0,false,false,false,false +mzdonline/cmu-513c,mzdonline,Shell,false,false,false,0,false,false,false,false +moazzam133/day-04,moazzam133,PHP,false,false,false,0,false,false,false,false +ostjpa/sppovw,ostjpa,JavaScript,false,false,false,0,false,false,false,false +Queuecumber/linux-acs-override,Queuecumber,Python,true,false,false,2,true,false,false,false +jgsqware/gitlab-ci-demo,jgsqware,Ruby,false,false,false,0,false,false,false,false +checkmein2/checkmein2-user-management-service,checkmein2,JavaScript,true,false,false,1,false,false,false,false +checkmein2/checkmein2-campaign-service,checkmein2,JavaScript,true,false,false,1,false,false,false,false +LevenThu/AlphaAlgorithm,LevenThu,Java,false,false,true,0,false,false,false,false +hafijur/dolebanana,hafijur,HTML,false,false,false,0,false,false,false,false +DaniilAnichin/miograph,DaniilAnichin,JavaScript,false,false,false,0,false,false,false,false +endkne/aula2,endkne,Java,false,false,false,0,false,false,false,false +usljujuy/usljujuysite,usljujuy,PHP,false,false,false,0,false,false,false,false +LevenThu/NewJCPN,LevenThu,Java,false,false,false,0,false,false,false,false +mzdonline/headunit,mzdonline,C++,false,false,false,0,false,false,false,false +yypotato/intensity_of_land_use_type_in_Shanghai,yypotato,,false,false,false,0,false,false,false,false +alrazi/pepperModules-CUBHUNIModules,alrazi,Java,false,false,true,0,false,false,false,false +zaaksysteem/converter-service,zaaksysteem,Perl,true,false,false,3,true,true,false,true +soa-labs/task4,soa-labs,Java,false,false,true,0,false,false,false,false +Miner34006/_Cruel_Polites_,Miner34006,C++,false,false,false,0,false,false,false,false +gmes78/USBMaker,gmes78,Python,false,false,false,0,false,false,false,false +ValerXenus/Automation-Box-Simulator,ValerXenus,C#,false,false,false,0,false,false,false,false +gabrielgc/comidabarata.com,gabrielgc,HTML,false,false,false,0,false,false,false,false +mikegreiling/vue-todo-app,mikegreiling,JavaScript,false,false,false,0,false,false,false,false +ambs/xml-dt-js,ambs,JavaScript,false,false,false,0,false,false,false,false +Wunkolo/Console,Wunkolo,C++,false,false,false,0,false,false,false,false +chengpengpeng/switch_jdk,chengpengpeng,Batchfile,false,false,false,0,false,false,false,false +nany-lang/syntax-highlighting/nany-syntax-vim,nany-lang,Vimscript,false,false,false,0,false,false,false,false +mtervonen80/taideart,mtervonen80,PHP,false,false,false,0,false,false,false,false +3DIO/mmrb,3DIO,HTML,false,false,false,0,false,false,false,false +story-board/frontend,story-board,JavaScript,false,false,false,0,false,false,false,false +florianjolivet/Supinfy,florianjolivet,PowerShell,false,false,false,0,false,false,false,false +nikhil.iitmandi/Convolutional_Neural_Network_torch,nikhil.iitmandi,Lua,false,false,false,0,false,false,false,false +Vondracek/JustATeam_IVS,Vondracek,HTML,true,false,false,2,true,true,false,false +emilopez/flisol-santafe,emilopez,JavaScript,false,false,false,0,false,false,false,false +angular-material-home/apps/amh-blog,angular-material-home,JavaScript,true,false,false,2,true,false,true,false +planet-react/planet-react.org,planet-react,PHP,false,false,false,0,false,false,false,false +neonphog/UnrealMeetupPresData1,neonphog,,false,false,false,0,false,false,false,false +sd1-ec-2017-1/g1-p1,sd1-ec-2017-1,JavaScript,false,false,false,0,false,false,false,false +fpirola/scala-js-matrix,fpirola,Scala,true,false,false,1,false,true,false,false +dakriy/City-Generator,dakriy,HTML,false,false,false,0,false,false,false,false +joshlambert/prometheus-demo,joshlambert,Ruby,true,false,false,8,true,true,false,true +xllc0cl3llx/GitLab,xllc0cl3llx,Python,false,false,false,0,false,false,false,false +biery/OpenSkyStacker,biery,C++,false,false,false,0,false,false,false,false +lextime2013/my-awesome-project,lextime2013,,false,false,false,0,false,false,false,false +offcourse/web,offcourse,CSS,false,false,false,0,false,false,false,false +kalug/kalug-meetup,kalug,HTML,true,false,false,1,false,false,true,false +MazeChaZer/webcomponent-ckeditor,MazeChaZer,JavaScript,false,false,false,0,false,false,false,false +perlstalker/hugo-docker,perlstalker,,true,false,false,3,false,false,false,true +redEvening/OpenCVToolkit,redEvening,Java,false,false,false,0,false,false,false,false +benoitrongeard/ionic2-todolist,benoitrongeard,CSS,false,false,false,0,false,false,false,false +matirivas1995/lp3_tp1,matirivas1995,C,false,false,false,0,false,false,false,false +TrueFurby/go-callvis,TrueFurby,Go,false,false,false,0,false,false,false,false +gotfix/docker-gitlab,gotfix,Shell,true,false,false,4,true,true,false,true +drutopia/drutopia_action,drutopia,,false,false,false,0,false,false,false,false +define-private-public/LGJ2017,define-private-public,Nim,false,false,false,0,false,false,false,false +cosban/data,cosban,Go,false,false,false,0,false,false,false,false +narendra-tiwary/InsertUpdateDeleteUsingMVCApplication,narendra-tiwary,C#,false,false,false,0,false,false,false,false +sowmiyaramesh/pms-web-app,sowmiyaramesh,,false,false,false,0,false,false,false,false +ernestomessina/sniffit,ernestomessina,C++,false,false,false,0,false,false,false,false +ernestomessina/bingrep,ernestomessina,QMake,false,false,false,0,false,false,false,false +tylangesmith/flashcards,tylangesmith,TypeScript,false,false,false,0,false,false,false,false +mervinzhu/react-native-pushy-mutirn,mervinzhu,C,false,false,false,0,false,false,false,false +eamonnmurray/IntroToScientificComputing,eamonnmurray,JupyterNotebook,false,false,false,0,false,false,false,false +ArjunShankar/angular-template-project,ArjunShankar,TypeScript,false,false,false,0,false,false,false,false +yenkaykiran/trackRide,yenkaykiran,,false,false,false,0,false,false,false,false +swathanthram/swathanthram.gitlab.io,swathanthram,JavaScript,true,false,false,2,false,true,true,false +franxet/my-useful-scripts,franxet,Python,false,false,false,0,false,false,false,false +TeddyChen/GoFBasic,TeddyChen,C#,false,false,false,0,false,false,false,false +joustie/joustie.gitlab.io,joustie,HTML,true,false,false,1,false,true,false,false +Lokango/Asistencia,Lokango,JavaScript,false,false,false,0,false,false,false,false +remiceres/arcus,remiceres,C++,false,false,false,0,false,false,false,false +towind/tivacar,towind,C,false,false,false,0,false,false,false,false +schumar/ESP_BaPoTeSta,schumar,C++,false,false,false,0,false,false,false,false +wurunduk/shadowware,wurunduk,C++,false,false,false,0,false,false,false,false +Informatica-Olivelli-Putelli/uRadio,Informatica-Olivelli-Putelli,C,false,false,false,0,false,false,false,false +fsci/fsci.org.in,fsci,JavaScript,true,false,false,1,false,false,true,false +ronanharris09/rmnt-toolkit,ronanharris09,Batchfile,false,false,false,0,false,false,false,false +SherlockHolo/pytgbot,SherlockHolo,Python,false,false,false,0,false,false,false,false +sixtenpress/sixtenpress-maintenance,sixtenpress,PHP,false,false,false,0,false,false,false,false +DeltaGem/event-planer,DeltaGem,Java,false,false,false,0,false,false,false,false +torndeco-aplsa/chernarus_isles,torndeco-aplsa,,false,false,false,0,false,false,false,false +fedorets/user-generator,fedorets,CSS,false,false,false,0,false,false,false,false +znixian/SimpleShooter,znixian,C++,false,false,false,0,false,false,false,false +ECU-Libraries/ecu-centennial,ECU-Libraries,HTML,false,false,false,0,false,false,false,false +libidn/gnulib-mirror,libidn,C,false,false,false,0,false,false,false,false +rbertoli/Combustivel,rbertoli,Java,false,false,false,0,false,false,false,false +general-purpose-libraries/graph,general-purpose-libraries,Java,true,false,true,2,true,true,false,false +machub/xeditor,machub,Objective-C,false,false,false,0,false,false,false,false +machub/latte,machub,C++,false,false,false,0,false,false,false,false +eltech6302/dmProject1,eltech6302,C++,false,false,false,0,false,false,false,false +sharpbell/wolfrayet/lppccl,sharpbell,,false,false,false,0,false,false,false,false +infokam-open/jpktools,infokam-open,C#,false,false,false,0,false,false,false,false +tekton/wp-analytics,tekton,PHP,false,false,false,0,false,false,false,false +luisfi/pic16f877a,luisfi,Assembly,false,false,false,0,false,false,false,false +imyuvii/the-peoples-web,imyuvii,PHP,false,false,false,0,false,false,false,false +Linn/Blackjack,Linn,Java,false,false,false,0,false,false,false,false +audron/YaTWi,audron,TypeScript,true,false,false,13,true,true,false,true +mogaiskii/Maclaurin,mogaiskii,C++,true,false,false,1,true,false,false,false +vicsana1/BigDataCourse,vicsana1,,false,false,false,0,false,false,false,false +alrazi/expand_data,alrazi,Python,false,false,false,0,false,false,false,false +nithishreddy/NewMeanProject,nithishreddy,TypeScript,false,false,false,0,false,false,false,false +saurdeshmukh/MATLAB_DIGITAL_IMAGE_PROCESSING_CODE,saurdeshmukh,Matlab,false,false,false,0,false,false,false,false +LaBourseADes/DjangoServer,LaBourseADes,Python,false,false,false,0,false,false,false,false +ad-si-2017-1/p1,ad-si-2017-1,,false,false,false,0,false,false,false,false +Conan_Kudo/zfsonlinux-zfs,Conan_Kudo,C,false,false,false,0,false,false,false,false +ad-si-2017-1/p1-g2,ad-si-2017-1,HTML,false,false,false,0,false,false,false,false +ad-si-2017-1/p1-g4,ad-si-2017-1,JavaScript,false,false,false,0,false,false,false,false +ad-si-2017-1/p1-g5,ad-si-2017-1,JavaScript,false,false,false,0,false,false,false,false +MDCNette/Forms,MDCNette,PHP,false,false,false,0,false,false,false,false +sharpbell/wolfrayet/MK1Autoloader,sharpbell,,false,false,false,0,false,false,false,false +lolster/ws-compiler,lolster,C,false,false,false,0,false,false,false,false +cschroeter/GraphQL,cschroeter,JavaScript,false,false,false,0,false,false,false,false +Swizi/swizi-community/swizi-community-plugin,Swizi,JavaScript,true,false,false,1,false,false,true,false +thallian/gog-sync,thallian,Rust,true,false,false,1,false,true,false,false +jgsqware/playbook-cli,jgsqware,Go,true,false,false,3,true,false,false,true +bamchoh/friend_books,bamchoh,Ruby,false,false,false,0,false,false,false,false +cursoic/proj1,cursoic,,false,false,false,0,false,false,false,false +ayufan/code-coverage-test,ayufan,,true,false,false,1,false,true,false,false +ScribeSoftware/ConnectorSDK,ScribeSoftware,C#,false,false,false,0,false,false,false,false +ScribeSoftware/webapi-solution-documentation,ScribeSoftware,JavaScript,false,false,false,0,false,false,false,false +Liedanzeige/MediaDisplay-Server,Liedanzeige,Python,false,false,false,0,false,false,false,false +alelec/python-certifi-win32,alelec,Python,true,false,false,1,false,false,true,false +general-purpose-libraries/huge-collections,general-purpose-libraries,Java,true,false,true,2,true,true,false,false +hsb1007/StripePaymentBundle,hsb1007,PHP,false,false,false,0,false,false,false,false +saibot94/ps-lab-4-2,saibot94,C++,false,false,false,0,false,false,false,false +microservices-for-everyone/data-formats,microservices-for-everyone,PHP,false,false,false,0,false,false,false,false +Nanquitas/CTRPluginFramework_Examples,Nanquitas,C++,false,false,false,0,false,false,false,false +sudoku-express/katana,sudoku-express,Python,false,false,false,0,false,false,false,false +kameme1208/kameTab,kameme1208,,false,false,false,0,false,false,false,false +glf/gitlab-stickers,glf,,false,false,false,0,false,false,false,false +roru/xamarin-fastlane-cake-build,roru,C#,false,false,false,0,false,false,false,false +yshui/sdpc,yshui,D,true,false,false,2,false,true,true,false +bigapplepy/bigapplepy.gitlab.io,bigapplepy,HTML,true,false,false,1,false,false,true,false +datasciencesociety/case_ontotext,datasciencesociety,,false,false,false,0,false,false,false,false +Rastler/clio,Rastler,PHP,false,false,false,0,false,false,false,false +oleerik/comptray,oleerik,Python,false,false,false,0,false,false,false,false +shinnova/rslevel,shinnova,Python,false,false,false,0,false,false,false,false +mujeebcpy/mujeebcpy.gitlab.io,mujeebcpy,JavaScript,true,false,false,1,false,false,true,false +kdwinter/aurb,kdwinter,Ruby,false,false,false,0,false,false,false,false +forensic-architecture/guerrero,forensic-architecture,JavaScript,false,false,false,0,false,false,false,false +microservices-for-everyone/persistence,microservices-for-everyone,PHP,false,false,false,0,false,false,false,false +L0gIn/serverless-pr-remover,L0gIn,JavaScript,false,false,false,0,false,false,false,false +eleks_homeworks/eleks_homework4,eleks_homeworks,C#,false,false,false,0,false,false,false,false +hughesmatias/training,hughesmatias,PHP,false,false,false,0,false,false,false,false +Vinnl/wdio-webpack-dev-server-service,Vinnl,JavaScript,true,false,false,2,true,false,false,true +williamyaoh/nix-config,williamyaoh,EmacsLisp,true,false,false,1,true,false,false,false +uV88/cinema_web_app,uV88,Java,false,false,true,0,false,false,false,false +exadra37-docker/php/docker-stack,exadra37-docker,Shell,false,false,false,0,false,false,false,false +Technovasoft/Django-Music,Technovasoft,CSS,true,false,false,1,false,true,false,false +Rtzq0/completely-reasonable-job-requirements,Rtzq0,JavaScript,true,false,false,1,false,false,true,false +reachmejust/capstone-java-standards,reachmejust,,false,false,false,0,false,false,false,false +berakrishn/Graphics_Animation,berakrishn,JavaScript,false,false,false,0,false,false,false,false +MrCloud/PiOSLogger,MrCloud,Swift,false,false,false,0,false,false,false,false +iron1025/dev_proxy,iron1025,JavaScript,false,false,false,0,false,false,false,false +matinkaboli/Timer,matinkaboli,JavaScript,false,false,false,0,false,false,false,false +trimegisto/sistemas_distribuidos,trimegisto,Erlang,false,false,false,0,false,false,false,false +MrCloud/PiOSPod,MrCloud,Swift,false,false,false,0,false,false,false,false +named-data/TR-NDN-0021-NFD-dev-guide,named-data,TeX,true,false,false,1,false,false,true,false +farazsamei2012/three.js,farazsamei2012,JavaScript,false,false,false,0,false,false,false,false +formaltech/rtnetlink-hs,formaltech,Haskell,true,false,false,1,false,true,false,false +nishedcob/GitEDU,nishedcob,Python,false,false,false,0,false,false,false,false +aerth/gl,aerth,Go,false,false,false,0,false,false,false,false +nckx/guix,nckx,Scheme,false,false,false,0,false,false,false,false +foxycode/workshop-gitlab-ci,foxycode,HTML,true,false,false,2,false,true,false,false +ginvidi/happy-birthday,ginvidi,CSS,false,false,false,0,false,false,false,false +IA-2016-2/Robotic-Arm,IA-2016-2,Matlab,false,false,false,0,false,false,false,false +Emper/kuchtit,Emper,PHP,false,false,false,0,false,false,false,false +ahmed.kamal.abdelsamad/front-end-dev,ahmed.kamal.abdelsamad,,false,false,false,0,false,false,false,false +Nabile/soundcloud-for-vlc,Nabile,Lua,false,false,false,0,false,false,false,false +lgwain/cpp2017,lgwain,C++,false,false,false,0,false,false,false,false +ngircd/ngircd,ngircd,C,false,false,false,0,false,false,false,false +virtualmin/virtualmin-gpl,virtualmin,Perl,false,false,false,0,false,false,false,false +biomassives/wordpress_alchemyapi,biomassives,PHP,false,false,false,0,false,false,false,false +hugocf/sandbox,hugocf,,true,false,false,3,true,true,true,false +moussadiallo/tdsilab,moussadiallo,Java,false,false,false,0,false,false,false,false +ywangd/aws-bufr,ywangd,HTML,false,false,false,0,false,false,false,false +traducha-academic/epidemic,traducha-academic,Python,false,false,false,0,false,false,false,false +wisdomwolf/pitftmenu,wisdomwolf,Python,true,false,false,1,false,false,true,false +kiradev/xPermissions,kiradev,Java,false,false,false,0,false,false,false,false +Zipcore/CSGO-Colors,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +jonas.marquez/blog,jonas.marquez,PHP,false,false,false,0,false,false,false,false +guirolou/TP2,guirolou,Java,false,false,false,0,false,false,false,false +yussifbarcelos/Aprendi,yussifbarcelos,C#,false,false,false,0,false,false,false,false +elenaluiza94/myAwesomeProject,elenaluiza94,,false,false,false,0,false,false,false,false +kern3lp4nic/AtAVi,kern3lp4nic,TypeScript,false,false,false,0,false,false,false,false +vkynchev/unlimMesh,vkynchev,C++,false,false,false,0,false,false,false,false +WPezPlugins/wpezrsscurator/wpezrsscurator,WPezPlugins,PHP,false,false,false,0,false,false,false,false +aegir/hosting_civicrm,aegir,PHP,false,false,false,0,false,false,false,false +ElaineCSantos/minhabiblioteca,ElaineCSantos,Java,false,false,false,0,false,false,false,false +nicktobolski/nicktobolski-resume,nicktobolski,CSS,false,false,false,0,false,false,false,false +AlexR1712/messenger-to-telegram,AlexR1712,JavaScript,true,false,false,1,true,false,false,false +deeksha25/starter-springboot-pipeline,deeksha25,Java,true,false,true,1,true,false,false,false +GitAlphabet/cx,GitAlphabet,,false,false,false,0,false,false,false,false +airc-ntu/ayame,airc-ntu,Java,true,false,true,1,false,false,false,false +KevLeong/test,KevLeong,,false,false,false,0,false,false,false,false +KenOokamiHoro/pelican-yoitsu,KenOokamiHoro,Python,false,false,false,0,false,false,false,false +L0gIn/devops-toolbox,L0gIn,JavaScript,false,false,false,0,false,false,false,false +sd1-ec-2017-1/g4-p1,sd1-ec-2017-1,JavaScript,false,false,false,0,false,false,false,false +Aemmie/Lab1,Aemmie,C++,false,false,false,0,false,false,false,false +raphaelbastide/piece,raphaelbastide,CSS,false,false,false,0,false,false,false,false +TreeGenes/CartograTree,TreeGenes,JavaScript,false,false,false,0,false,false,false,false +Wovale/Pipeline-testing,Wovale,,false,false,false,0,false,false,false,false +LucidThought/pyBot,LucidThought,Python,false,false,false,0,false,false,false,false +siegebreaker/My-Online-Portfolio,siegebreaker,CSS,false,false,false,0,false,false,false,false +Recipe-Repo/Recipe-Repo,Recipe-Repo,C++,false,false,false,0,false,false,false,false +KenOokamiHoro/pelican-yoitsu-theme,KenOokamiHoro,CSS,false,false,false,0,false,false,false,false +sxml/onekeygcm,sxml,Shell,false,false,false,0,false,false,false,false +INhouse/simple-cms,INhouse,PHP,false,false,false,0,false,false,false,false +manolo.rodriguez/vuejs-todo,manolo.rodriguez,JavaScript,false,false,false,0,false,false,false,false +MFebraS/blk-demak-v2,MFebraS,PHP,false,false,false,0,false,false,false,false +ducciomalinverni/lbsDCA,ducciomalinverni,C++,false,false,false,0,false,false,false,false +ctrabold/devops-training,ctrabold,Shell,false,false,false,0,false,false,false,false +jmigueldelgado/tdx2hav,jmigueldelgado,Python,false,false,false,0,false,false,false,false +tramwayjs/tramway-command,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +DrFade/Custom-RotMG-Behaviors,DrFade,C#,false,false,false,0,false,false,false,false +zuevstudio/design,zuevstudio,HTML,false,false,false,0,false,false,false,false +phlyk-portfolio/clojure-sat-solver,phlyk-portfolio,Clojure,false,false,false,0,false,false,false,false +gabrielsanterre/ddns-updater,gabrielsanterre,JavaScript,false,false,false,0,false,false,false,false +Ziracmo/Ng-Space-Invader,Ziracmo,JavaScript,false,false,false,0,false,false,false,false +Lux-Vacuos/Voxel,Lux-Vacuos,Java,false,false,false,0,false,false,false,false +sunnhas/dotfiles,sunnhas,Shell,false,false,false,0,false,false,false,false +likeno/soko,likeno,Python,true,false,false,4,false,false,true,false +i-am-root/umami,i-am-root,PHP,true,false,false,3,true,false,true,false +msifeed/misca,msifeed,Java,true,false,false,1,true,false,false,false +jaetmar/Arquitectura-Publica-Suscribe,jaetmar,Python,false,false,false,0,false,false,false,false +aliyas/mud,aliyas,Java,false,false,false,0,false,false,false,false +muripuig/Curs_java_8,muripuig,Java,false,false,false,0,false,false,false,false +su-v/inx-pathops,su-v,Python,false,false,false,0,false,false,false,false +Angius/WWSIS_Programowanie,Angius,C#,false,false,false,0,false,false,false,false +ingenieria-de-software-2/castor,ingenieria-de-software-2,HTML,false,false,false,0,false,false,false,false +mspritch/spcam3.0-neural-net,mspritch,Fortran,false,false,false,0,false,false,false,false +BlueRockTEL/OVHBills,BlueRockTEL,PHP,false,false,false,0,false,false,false,false +dvd0101/corso-base-dati,dvd0101,CSS,false,false,false,0,false,false,false,false +textileio/MVVM-SetSDK,textileio,Swift,false,false,false,0,false,false,false,false +second-company/scalabot,second-company,JavaScript,false,false,false,0,false,false,false,false +grails-3-book/feedback,grails-3-book,,false,false,false,0,false,false,false,false +j2se-sweng/liferay/portlets/ManageSales,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/liferay/portlets/ExamplePortlet,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/liferay/portlets/Tasks,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/servlets/ManagerServlet,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/servlets/ProvaServlet,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/servlets/ManageOrders,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/servlets/Stack,j2se-sweng,Java,false,false,false,0,false,false,false,false +j2se-sweng/liferay/portlets/ManageBooks,j2se-sweng,Java,false,false,false,0,false,false,false,false +joseph.choufani/blog-builder,joseph.choufani,Python,false,true,false,0,false,false,false,false +akinozgen/animsatici-kelebek-android,akinozgen,C#,false,false,false,0,false,false,false,false +satskiy.a/WebFax,satskiy.a,JavaScript,true,false,false,1,false,false,false,false +o.lelenkov/docker-minideb,o.lelenkov,Makefile,true,false,false,1,true,false,false,false +fnordian/kubernetes-sshfs-provisioner,fnordian,Go,true,false,false,1,true,false,false,false +MalenzV/OctusAC,MalenzV,,false,false,false,0,false,false,false,false +o.lelenkov/docker-dlang-dev,o.lelenkov,Shell,true,false,false,1,true,false,false,false +o.lelenkov/docker-dlang-runtime,o.lelenkov,Shell,true,false,false,1,true,false,false,false +Shaem/shaem,Shaem,C,false,false,false,0,false,false,false,false +b17/agile-payroll,b17,Shell,true,false,false,1,false,true,false,false +Lunatix89/GStreamer-Sharp,Lunatix89,C#,true,false,false,3,true,true,false,false +iurie/geonkick,iurie,C++,false,false,false,0,false,false,false,false +Luky/docker,Luky,Shell,false,false,false,0,false,false,false,false +gitlab-cog/swat,gitlab-cog,Ruby,true,false,false,1,false,true,false,false +rafael.santana/poc-multi-tenant,rafael.santana,Java,true,false,true,3,true,true,false,false +game-jammers/overmind,game-jammers,C#,false,false,false,0,false,false,false,false +goeb/newcomen,goeb,Perl,false,false,false,0,false,false,false,false +ootoovak/botket,ootoovak,Rust,false,false,false,0,false,false,false,false +andrioid/graphql-demo,andrioid,JavaScript,false,false,false,0,false,false,false,false +reyramos/electron,reyramos,CSS,false,false,false,0,false,false,false,false +btklein/mpich,btklein,C,false,false,false,0,false,false,false,false +btklein/cfncluster,btklein,Python,false,false,false,0,false,false,false,false +btklein/docker,btklein,Go,false,false,false,0,false,false,false,false +btklein/petsc,btklein,C,false,false,false,0,false,false,false,false +yrvvan/taekwondo,yrvvan,HTML,false,false,false,0,false,false,false,false +cosban/bluemonday,cosban,Go,false,false,false,0,false,false,false,false +cosban/UOS-77,cosban,JavaScript,false,false,false,0,false,false,false,false +alietors/pr_checker,alietors,Ruby,false,false,false,0,false,false,false,false +ldo/python_freetype_examples,ldo,Python,false,false,false,0,false,false,false,false +ldo/harfpy_examples,ldo,Python,false,false,false,0,false,false,false,false +danantonioreyes/python_tdd,danantonioreyes,Python,false,false,false,0,false,false,false,false +Luky/docker-websocketd,Luky,,false,false,false,0,false,false,false,false +chenrj/DFSpecs,chenrj,Ruby,false,false,false,0,false,false,false,false +JGill/OpenPyn,JGill,Python,false,false,false,0,false,false,false,false +hendisantika/spring-boot-crud,hendisantika,Java,false,false,true,0,false,false,false,false +bhargav461995/BSNL-usage,bhargav461995,Python,false,true,false,0,false,false,false,false +masterzdran/docker_sonarqube,masterzdran,,false,false,false,0,false,false,false,false +Genisys3/Protocols,Genisys3,,false,false,false,0,false,false,false,false +sangamanga/pelicomic,sangamanga,CSS,false,false,false,0,false,false,false,false +hojjatbandani/Azad_Un,hojjatbandani,PHP,false,false,false,0,false,false,false,false +tangofoxtrot/deezloader-app,tangofoxtrot,CSS,false,false,false,0,false,false,false,false +cip-playground/linux-cip,cip-playground,C,false,false,false,0,false,false,false,false +ducciomalinverni/dcaTools,ducciomalinverni,Python,false,false,false,0,false,false,false,false +viluon/Desktox,viluon,Lua,true,false,false,3,false,true,false,false +BigGold1310/TBZ_OpenShift_Cluster_with_Ansible,BigGold1310,,false,false,false,0,false,false,false,false +SofiaSysourka/Aesthetics_quality_evaluation_system_of_web_applications,SofiaSysourka,Python,false,false,false,0,false,false,false,false +guilhermemtr/emacs-config,guilhermemtr,EmacsLisp,false,false,false,0,false,false,false,false +hdeanclark/Disciplinarian,hdeanclark,C++,false,false,false,0,false,false,false,false +stackshuttle/gitlab-monitor,stackshuttle,C++,false,false,false,0,false,false,false,false +hugocf/rubber-duck-hunt,hugocf,,false,false,false,0,false,false,false,false +ScribeSoftware/webhook-test-harness,ScribeSoftware,HTML,false,false,false,0,false,false,false,false +damienpucheu/zeruzkanAPI,damienpucheu,JavaScript,false,false,false,0,false,false,false,false +dropwizard/dropwizard,dropwizard,Java,false,false,true,0,false,false,false,false +lparcq/rsws,lparcq,Rust,true,false,false,1,false,true,false,false +alfageme/client-GUI-tests,alfageme,JavaScript,true,false,false,1,false,true,false,false +goern/ical2json,goern,Go,false,false,false,0,false,false,false,false +niklas-dahl/angular-cli-e2e-test,niklas-dahl,TypeScript,true,false,false,1,false,true,false,false +acme101/angular-hello-world,acme101,TypeScript,true,false,false,1,true,false,false,false +gcosta87/herramientas-ulm,gcosta87,JavaScript,false,false,false,0,false,false,false,false +scellow/KotlinNativeTest,scellow,Kotlin,false,false,false,0,false,false,false,false +sciamlab/ckan-vagrant,sciamlab,Shell,false,false,false,0,false,false,false,false +PRTG/Device-Templates/Aruba,PRTG,,true,false,false,1,true,false,false,false +gustavocosta/Tomada_verde_IoT,gustavocosta,Python,false,false,false,0,false,false,false,false +K.W.W.T/espd,K.W.W.T,Java,false,false,false,0,false,false,false,false +ardyhim/ionupload,ardyhim,TypeScript,false,false,false,0,false,false,false,false +barrel-db/e2qc,barrel-db,C,true,false,false,1,false,true,false,false +marcpacheco97/ponme-nombre,marcpacheco97,Kotlin,false,false,false,0,false,false,false,false +Klaudia/simple-models,Klaudia,Matlab,false,false,false,0,false,false,false,false +Energy0124/FRAGMENTS-The-Game,Energy0124,,false,false,false,0,false,false,false,false +miguelemosreverte/WesterosCraftUnreal,miguelemosreverte,C,false,false,false,0,false,false,false,false +Freso/spotify2musicbrainz,Freso,Python,false,true,false,0,false,false,false,false +smg-edt/RunWithMe,smg-edt,PHP,false,false,false,0,false,false,false,false +PierreCapo/RMS-tools,PierreCapo,XS,false,false,false,0,false,false,false,false +mbeboek/pxls-dumper,mbeboek,PHP,false,false,false,0,false,false,false,false +wheleph/the-adventures-of-dennis,wheleph,HTML,true,false,false,1,false,false,true,false +icylogic/el6483,icylogic,C,false,false,false,0,false,false,false,false +metaperl/adsactly-gridtrader,metaperl,Python,false,true,false,0,false,false,false,false +ale97/driver-zone,ale97,Ruby,false,false,false,0,false,false,false,false +sutd_nlp/overlapping_mentions,sutd_nlp,Java,false,false,true,0,false,false,false,false +jarecsni/appdux,jarecsni,JavaScript,false,false,false,0,false,false,false,false +Wizy/wgl,Wizy,JavaScript,false,false,false,0,false,false,false,false +on_off/smile-speak-bot,on_off,C#,false,false,false,0,false,false,false,false +Mechtecs/steam-collection-manager,Mechtecs,PHP,false,false,false,0,false,false,false,false +codeflash/Atiempo/moduloAPI_Node,codeflash,JavaScript,false,false,false,0,false,false,false,false +gitlab-com/marketing/community-relations/community-advocacy/tanukidesk,gitlab-com,Ruby,false,false,false,0,false,false,false,false +DmitryDorofeev/msu-go-bot,DmitryDorofeev,Go,true,false,false,1,false,true,false,false +nitsakh/ArtificialIntelligence,nitsakh,Java,false,false,false,0,false,false,false,false +sangrey/sangrey.gitlab.io,sangrey,HTML,true,false,false,1,false,true,false,false +stevendobay/sls,stevendobay,Scala,false,false,false,0,false,false,false,false +EPVogel/Noboloid,EPVogel,Python,false,false,false,0,false,false,false,false +exarh-team/Skaro-WEB,exarh-team,JavaScript,false,false,false,0,false,false,false,false +acurrie/wp-skeleton,acurrie,PHP,false,false,false,0,false,false,false,false +jasonmm/hunt-the-wumpus,jasonmm,Clojure,true,false,false,1,false,false,true,false +adhnguyen/udemy-angular2,adhnguyen,TypeScript,false,false,false,0,false,false,false,false +adhnguyen/udemy-react,adhnguyen,JavaScript,false,false,false,0,false,false,false,false +abhijd/Experiment-Time-Division-Multiplexing-Audio-Transfer,abhijd,Matlab,false,false,false,0,false,false,false,false +ashutoshsrivastava44/real_time_game1,ashutoshsrivastava44,JavaScript,false,false,false,0,false,false,false,false +guardianproject/fdroid-repo,guardianproject,HTML,true,false,false,1,false,true,false,false +bon/web-socket-example-application,bon,Java,false,false,true,0,false,false,false,false +tfg-team/tfg-woodensnail,tfg-team,C,false,false,false,0,false,false,false,false +lechten/qubes.el,lechten,EmacsLisp,false,false,false,0,false,false,false,false +jjatria/Mastodon-Client,jjatria,Perl,false,false,false,0,false,false,false,false +commite/channels_examples,commite,Python,false,false,false,0,false,false,false,false +traducha-academic/languages,traducha-academic,Python,false,false,false,0,false,false,false,false +CookieEaters/speercs,CookieEaters,C#,false,false,false,0,false,false,false,false +chenrj/DFKit,chenrj,Objective-C,false,false,false,0,false,false,false,false +pearlstar/Proxy-Server,pearlstar,Python,false,false,false,0,false,false,false,false +klmp200/freedom-fighter,klmp200,GDScript,false,false,false,0,false,false,false,false +mo_sander/pfam_maps,mo_sander,JavaScript,false,false,false,0,false,false,false,false +thecyberd3m0n/ngRuflix,thecyberd3m0n,,false,false,false,0,false,false,false,false +viosey/viosey-blog,viosey,,false,false,false,0,false,false,false,false +wearetwitter/wearetwitter.global,wearetwitter,JavaScript,true,false,false,1,false,false,true,false +angular-material-dashboard/angular-material-dashboard-account,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +andrewward2001/SQLEconomy,andrewward2001,Java,false,false,false,0,false,false,false,false +angular-material-dashboard/angular-material-dashboard-user,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +angular-material-dashboard/angular-material-dashboard-cms,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +david.athersych/ELEC278Code,david.athersych,C,false,false,false,0,false,false,false,false +ja4nm/quicksort,ja4nm,Java,false,false,false,0,false,false,false,false +bardiarastin/github-repo-status,bardiarastin,JavaScript,false,false,false,0,false,false,false,false +gmarciani/devops,gmarciani,Python,false,false,false,0,false,false,false,false +cuixiaolai/koa2,cuixiaolai,JavaScript,false,false,false,0,false,false,false,false +weburger/am-wb/am-wb-common,weburger,JavaScript,true,false,false,1,false,true,false,false +GenaDyomin/Lab2,GenaDyomin,C++,true,false,false,1,true,false,false,false +trud/CfL-AV1-Presentation,trud,TeX,true,false,false,1,false,true,false,false +annaxluo/stereo-code,annaxluo,Matlab,false,false,false,0,false,false,false,false +mariocesar/tesla,mariocesar,CSS,true,false,false,3,true,false,true,false +thejanasandi/rosaapp,thejanasandi,JavaScript,false,false,false,0,false,false,false,false +tottokotkd/hinaserver,tottokotkd,Ruby,false,false,false,0,false,false,false,false +Swardu/AnimeScr,Swardu,PHP,false,false,false,0,false,false,false,false +jtfrey/unix-software-dev,jtfrey,C,false,false,false,0,false,false,false,false +d1vella/MTGO,d1vella,,false,false,false,0,false,false,false,false +mejo-/ansible-role-spreed-webrtc,mejo-,,false,false,false,0,false,false,false,false +tunisia-sat/freelance,tunisia-sat,PHP,false,false,false,0,false,false,false,false +zlnemeth/WinPrivEsc-EA,zlnemeth,,false,false,false,0,false,false,false,false +mjadev/GMS2_localization,mjadev,Yacc,false,false,false,0,false,false,false,false +Hal9007/WesterosCraftUnreal,Hal9007,C,false,false,false,0,false,false,false,false +COSY/BLM/IOC,COSY,C,false,false,false,0,false,false,false,false +StreamerSpectrum/team_logo,StreamerSpectrum,,false,false,false,0,false,false,false,false +michaeltlombardi/needful-docs,michaeltlombardi,Shell,true,false,false,2,false,true,true,false +mmashhood/libgit,mmashhood,,false,false,false,0,false,false,false,false +ammaddpl/FirstProject,ammaddpl,HTML,false,false,false,0,false,false,false,false +mmashhood/gitlabproj,mmashhood,Ruby,false,false,false,0,false,false,false,false +jerrysdesign/cepace.com,jerrysdesign,CSS,false,false,false,0,false,false,false,false +MichelleM90/tweetfeedconsoleapp,MichelleM90,C#,false,false,false,0,false,false,false,false +icf-church/icf-equip,icf-church,PHP,false,false,false,0,false,false,false,false +KillianKemps/ansible-playbook-mastodon,KillianKemps,Python,false,false,false,0,false,false,false,false +anarcat/ikiwiki,anarcat,Perl,false,false,false,0,false,false,false,false +_project2501/dallos,_project2501,C++,false,false,false,0,false,false,false,false +anarcat/git-hooks,anarcat,Shell,false,false,false,0,false,false,false,false +decko/dotfiles,decko,Vimscript,false,false,false,0,false,false,false,false +anarcat/scripts,anarcat,Python,false,false,false,0,false,false,false,false +anagabriel/pumpkin-spice-latte,anagabriel,C++,true,false,false,2,false,true,false,false +mammouthcafe/mastodon,mammouthcafe,Ruby,false,false,false,0,false,false,false,false +Holthaus/Coursework,Holthaus,,false,false,false,0,false,false,false,false +kapps/common-ios,kapps,Swift,false,false,false,0,false,false,false,false +datnv/emotion_vgg,datnv,Python,false,false,false,0,false,false,false,false +our-sci/reflectance-spec-firmware,our-sci,C++,false,false,false,0,false,false,false,false +crankylinuxuser/uWho,crankylinuxuser,C++,false,false,false,0,false,false,false,false +somatorio/somatorio.org,somatorio,HTML,true,false,false,2,true,false,true,false +rmoe/c2log,rmoe,Python,true,true,false,3,false,true,true,false +dbouman/SonarQubeFontys,dbouman,,false,false,false,0,false,false,false,false +termapps/securebox,termapps,Java,false,false,false,0,false,false,false,false +ArtificialAmateur/anim,ArtificialAmateur,Shell,false,false,false,0,false,false,false,false +slcu/teamHJ/niklas/organism_python_wrapper,slcu,Python,false,false,false,0,false,false,false,false +weburger/am-wb-seen/am-wb-seen-collection,weburger,JavaScript,true,false,false,1,false,true,false,false +dewet/quis-es,dewet,Python,true,true,false,1,true,false,false,false +liu.tao/loh,liu.tao,Java,false,false,false,0,false,false,false,false +gmessner/test-project,gmessner,,false,false,false,0,false,false,false,false +huyhoang9213/my-linkit,huyhoang9213,JavaScript,false,false,false,0,false,false,false,false +zlb820/dftsms_project,zlb820,Java,false,false,false,0,false,false,false,false +jum-s/understanding_linked_geodata,jum-s,JavaScript,true,false,false,1,false,false,true,false +HalfwayDead/rl-deadzone,HalfwayDead,JavaScript,true,false,false,1,false,false,true,false +raresb/COProj,raresb,Java,false,false,false,0,false,false,false,false +cygnus.mobi/estoque,cygnus.mobi,Java,false,false,false,0,false,false,false,false +kingrayhan/drubo-wordpress-theme,kingrayhan,PHP,false,false,false,0,false,false,false,false +davestevens/vuedemo,davestevens,JavaScript,false,false,false,0,false,false,false,false +ssugm/ssugm.gitlab.io,ssugm,CSS,true,false,false,1,false,false,true,false +ratmice/gitlab-urweb-pages,ratmice,UrWeb,true,false,false,1,false,true,false,false +DamianPendrak/SmartSong-desktop-CSharp,DamianPendrak,C#,false,false,false,0,false,false,false,false +Saphire/smirc,Saphire,C,false,false,false,0,false,false,false,false +wooheaven/DeepLearning-Study,wooheaven,JupyterNotebook,false,false,false,0,false,false,false,false +sadlil/empatica,sadlil,Go,false,false,false,0,false,false,false,false +Guims/alamud,Guims,Python,false,false,false,0,false,false,false,false +claut/claut-resources,claut,,false,false,false,0,false,false,false,false +ghoblin/smsku,ghoblin,PHP,false,false,false,0,false,false,false,false +mtuchowski/rake-protect,mtuchowski,Ruby,true,false,false,1,false,true,false,false +reyramos/phx-common,reyramos,TypeScript,false,false,false,0,false,false,false,false +apetitbois/packt-sync,apetitbois,Go,true,false,false,2,true,true,false,false +KieranDevvs/intensepk-client,KieranDevvs,Java,false,false,false,0,false,false,false,false +KieranDevvs/intensepk-cache,KieranDevvs,,false,false,false,0,false,false,false,false +Zipcore/ChickenStrike,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +CSUI-AdvProg-2017/week-8-template,CSUI-AdvProg-2017,Python,true,true,false,1,false,true,false,false +btklein/refind,btklein,C,false,false,false,0,false,false,false,false +btklein/pflotran,btklein,Fortran,false,false,false,0,false,false,false,false +btklein/ompi,btklein,C,false,false,false,0,false,false,false,false +rtorresware/kivyrt,rtorresware,Python,false,false,false,0,false,false,false,false +Computer_Vision_Project/Angry_Bird_Detection,Computer_Vision_Project,Matlab,false,false,false,0,false,false,false,false +sergon146/mobilization-17,sergon146,Java,false,false,false,0,false,false,false,false +axil/presentations,axil,CSS,false,false,false,0,false,false,false,false +ninjacentral/ng2-Ninjacentral,ninjacentral,TypeScript,false,false,false,0,false,false,false,false +KaskMartin/KartKicker,KaskMartin,C#,false,false,false,0,false,false,false,false +josgraha/paip-excercises,josgraha,,false,false,false,0,false,false,false,false +kurai_ten/android-device-rooting,kurai_ten,,false,false,false,0,false,false,false,false +okdocker/pynode,okdocker,Makefile,false,false,false,0,false,false,false,false +raulgranados/PetitMon,raulgranados,,false,false,false,0,false,false,false,false +Zipcore/LogCleaner,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +krnekhelesh/debian-log,krnekhelesh,,false,false,false,0,false,false,false,false +upe-consulting/TypedJSON,upe-consulting,TypeScript,true,false,false,4,true,true,true,false +tottokotkd/themisto-electron,tottokotkd,,false,false,false,0,false,false,false,false +flare/arangodb-exporter,flare,Go,false,false,false,0,false,false,false,false +osas/ansible-role-mailing-lists-server,osas,,false,false,false,0,false,false,false,false +Lokakuu/TechBench-dump,Lokakuu,PHP,false,false,false,0,false,false,false,false +waizkorli/tugas1,waizkorli,,false,false,false,0,false,false,false,false +surenpi/phoenix.interface.framework,surenpi,Java,false,false,false,0,false,false,false,false +surenpi/phoenix.webui.framework,surenpi,Java,false,false,false,0,false,false,false,false +surenpi/phoenix.platform,surenpi,CSS,false,false,false,0,false,false,false,false +sjohannes/argos-pasink,sjohannes,C,false,false,false,0,false,false,false,false +lelongg/gum,lelongg,Go,false,false,false,0,false,false,false,false +arnaud-preevio/docker-reprepro,arnaud-preevio,Shell,false,false,false,0,false,false,false,false +hphil/mpg-gss,hphil,CSS,false,false,false,0,false,false,false,false +GitLabRGI/nsg/gpep-mapproxy,GitLabRGI,Python,true,false,false,1,false,true,false,false +hiepnh.duytan/UIU-MTH254-2017,hiepnh.duytan,Java,false,false,false,0,false,false,false,false +maike_tl/lazy-intg,maike_tl,Go,false,false,false,0,false,false,false,false +koushik72/dating-website,koushik72,PHP,false,false,false,0,false,false,false,false +alexgittens/RealML,alexgittens,,false,false,false,0,false,false,false,false +zkonate1/satie4unityExample,zkonate1,C#,false,false,false,0,false,false,false,false +ad-si-2017-1/p2-g4,ad-si-2017-1,CSS,false,false,false,0,false,false,false,false +kazuakasu/project_ai,kazuakasu,Python,false,false,false,0,false,false,false,false +danio-code/DANIO-CODE_CAGE-seq,danio-code,HTML,false,false,false,0,false,false,false,false +johncf/backblaze,johncf,Python,false,false,false,0,false,false,false,false +johncf/failure-analysis,johncf,Python,false,false,false,0,false,false,false,false +lumin/withlinux,lumin,Python,false,false,false,0,false,false,false,false +deyshin/deyshin.gitlab.io,deyshin,CSS,false,false,false,0,false,false,false,false +sampablokuper/zfs-on-linux_wiki,sampablokuper,Shell,false,false,false,0,false,false,false,false +qeni/lactatelevel,qeni,Python,false,true,false,0,false,false,false,false +6905/genart,6905,C,false,false,false,0,false,false,false,false +biper94/FileProcessingAssignment_1,biper94,C++,false,false,false,0,false,false,false,false +cwenck/bittorrent,cwenck,C,true,false,false,1,false,true,false,false +judbet/InfoGITLAB,judbet,,false,false,false,0,false,false,false,false +rszemplinski22/Intrinio.NetCore,rszemplinski22,C#,false,false,false,0,false,false,false,false +absolutejam/codedump_connectwise_sync,absolutejam,PowerShell,false,false,false,0,false,false,false,false +alex_vinokurov/tz-todo,alex_vinokurov,JavaScript,false,false,false,0,false,false,false,false +jsteitz/jenkins-shared-library,jsteitz,Groovy,false,false,false,0,false,false,false,false +patten_based/InstagramFetcher,patten_based,Java,false,false,false,0,false,false,false,false +a.vosnakis/nakistext,a.vosnakis,Python,false,false,false,0,false,false,false,false +timzallmann/awesome-gitlab,timzallmann,,false,false,false,0,false,false,false,false +VircomInc/DbAutoFill,VircomInc,C#,false,false,false,0,false,false,false,false +Summertime/news-portal,Summertime,,false,false,false,0,false,false,false,false +effiwander/proyecto2,effiwander,,false,false,false,0,false,false,false,false +shahabsaf/cguard,shahabsaf,Lua,false,false,false,0,false,false,false,false +liviaricia/bearbitinc,liviaricia,JavaScript,false,false,false,0,false,false,false,false +esilvert/LDJAM_38,esilvert,GDScript,false,false,false,0,false,false,false,false +jammy-games/rpg-test-game,jammy-games,Java,false,false,false,0,false,false,false,false +escargot-chat/msn-switcher,escargot-chat,C++,false,false,false,0,false,false,false,false +escargot-chat/msn-patcher,escargot-chat,Python,false,false,false,0,false,false,false,false +mmkiff/ircbot,mmkiff,JavaScript,false,false,false,0,false,false,false,false +sliptype/tacky,sliptype,JavaScript,false,false,false,0,false,false,false,false +utdorm/survey,utdorm,CSS,false,false,false,0,false,false,false,false +T.Robert/FitnessApp,T.Robert,JavaScript,false,false,false,0,false,false,false,false +mihaioprea/coursera_machine_learning,mihaioprea,Matlab,false,false,false,0,false,false,false,false +w3bdeveloper/ahmedMahmoud,w3bdeveloper,,false,false,false,0,false,false,false,false +montanari/cosmo-el,montanari,EmacsLisp,false,false,false,0,false,false,false,false +Shawniac/shawniac.gitlab.io,Shawniac,HTML,true,false,false,1,false,true,false,false +ChiliPeps/ProyectoCascabel,ChiliPeps,JavaScript,false,false,false,0,false,false,false,false +gnuwget/wget,gnuwget,C,true,false,false,1,false,true,false,false +ChristopheMaldivi/service-discovery,ChristopheMaldivi,JavaScript,false,false,false,0,false,false,false,false +Gitorials/Gitorial,Gitorials,Shell,false,false,false,0,false,false,false,false +paolofalomo/codexa,paolofalomo,PHP,true,false,false,1,false,true,false,false +ashkitten/bf-interpreter-nasm,ashkitten,Assembly,false,false,false,0,false,false,false,false +GabrielTK/OnlinkCheats,GabrielTK,C#,true,false,false,1,true,false,false,false +8ouiasd/EZgrade,8ouiasd,HTML,false,false,false,0,false,false,false,false +Dr.Drake/My_first_project,Dr.Drake,C++,false,false,false,0,false,false,false,false +Maix5/dataset-birds-vs-dogs,Maix5,Shell,false,false,false,0,false,false,false,false +wldhx/reactNativeGitlabCIAndroidCDTest,wldhx,JavaScript,true,false,false,1,true,false,false,false +Keksas/node-utils,Keksas,JavaScript,false,false,false,0,false,false,false,false +upe-consulting/npm/decorators,upe-consulting,TypeScript,true,false,false,4,true,true,true,false +rekahsoft/blog-rekahsoft,rekahsoft,Haskell,true,false,false,2,true,false,true,false +Fred-Barclay/Argo,Fred-Barclay,Python,false,false,false,0,false,false,false,false +Winsonic/CB0P01-S5P6818,Winsonic,,true,false,false,1,true,false,false,false +sabap-lig/modixml2csv,sabap-lig,Python,true,false,false,1,false,true,false,false +TungVu/tesseract-android-intergrade,TungVu,Java,false,false,false,0,false,false,false,false +rajeesh92/LearnGit,rajeesh92,,false,false,false,0,false,false,false,false +v01d-sk/v01d.sk,v01d-sk,CSS,true,false,false,1,false,true,false,false +don/pirates-mar-2017,don,JavaScript,false,false,false,0,false,false,false,false +eunleem/gopack,eunleem,Go,true,false,false,2,false,false,false,false +Alex_R/unthrottle.js,Alex_R,JavaScript,false,false,false,0,false,false,false,false +credizian/untrackme,credizian,CSS,true,false,false,1,false,false,true,false +forest1212/awesome-project-tools,forest1212,,false,false,false,0,false,false,false,false +tottokotkd/themisto,tottokotkd,JavaScript,false,false,false,0,false,false,false,false +fsmk/embedded-for-her,fsmk,JavaScript,true,false,false,1,false,true,false,false +therealjoyesh/AppleIntelWiFiMVM,therealjoyesh,C,false,false,false,0,false,false,false,false +StreamerSpectrum/SpectrumCraft/IKnowBashFu_Server,StreamerSpectrum,Lua,false,false,false,0,false,false,false,false +kb/block,kb,Python,true,false,false,1,false,true,false,false +lucassabreu/k8s-pr-envs,lucassabreu,Shell,true,false,false,5,true,false,false,true +ramdhanmy27/laraden,ramdhanmy27,PHP,false,false,false,0,false,false,false,false +devops-df/2017.brasilia.devopsdays.com.br,devops-df,HTML,true,false,false,1,false,true,false,false +kb/login,kb,Python,true,false,false,1,false,true,false,false +kb/base,kb,Python,true,false,false,1,false,true,false,false +kb/mail,kb,Python,true,false,false,1,false,true,false,false +sammcj/puppet-luks,sammcj,Puppet,false,false,false,0,false,false,false,false +lzukowski/acd,lzukowski,Python,true,false,false,2,false,true,false,true +edans/Kappa123,edans,,false,false,false,0,false,false,false,false +solai.ece1201/myproject12345,solai.ece1201,Java,false,false,false,0,false,false,false,false +jaspax/ams-unlocked,jaspax,JavaScript,false,false,false,0,false,false,false,false +chstudio/mautic-deployer,chstudio,,false,false,false,0,false,false,false,false +surenpi/autotest.suite.runner,surenpi,,false,false,false,0,false,false,false,false +applification/lottie-react-native,applification,Objective-C,false,false,false,0,false,false,false,false +rasmus/spoonbill,rasmus,CSS,false,false,false,0,false,false,false,false +t-palmer/bpm-case-agents,t-palmer,Java,false,false,false,0,false,false,false,false +Guile76/TP_CS_Nico_Guile,Guile76,C#,false,false,false,0,false,false,false,false +Koncealed/steam-bitcoin-key-converter,Koncealed,Python,false,false,false,0,false,false,false,false +beatdown/beatdown,beatdown,JavaScript,false,false,false,0,false,false,false,false +mLazar/VoroTop,mLazar,C++,false,false,false,0,false,false,false,false +erickfmm/taller-emprendimiento,erickfmm,JavaScript,false,false,false,0,false,false,false,false +surenpi/autotest.parent,surenpi,,false,false,true,0,false,false,false,false +cupa/website,cupa,PHP,false,false,false,0,false,false,false,false +ragnarok22/airport,ragnarok22,Python,false,false,false,0,false,false,false,false +planet-innovation/gitlab-ci-angular-webapp,planet-innovation,JavaScript,true,false,false,2,false,false,false,false +sunetraalex/graphic-project-cookiecutter,sunetraalex,Shell,false,false,false,0,false,false,false,false +cfmm/DicomRaw,cfmm,Python,false,true,false,0,false,false,false,false +gliniak/cossacks3-units-ranking,gliniak,JavaScript,true,false,false,1,false,false,true,false +aqie123/aqieframe,aqie123,HTML,false,false,false,0,false,false,false,false +williamyaoh/arg_input,williamyaoh,Rust,false,false,false,0,false,false,false,false +westeroscraft/WesterosCraftUnreal,westeroscraft,C,false,false,false,0,false,false,false,false +dearth96/Kludge2k17,dearth96,Python,false,false,false,0,false,false,false,false +gitmate/open-source/result-bouncer,gitmate,Python,true,false,false,3,true,true,false,true +avergnaud/spring-boot-angularjs,avergnaud,Java,false,false,true,0,false,false,false,false +musesystems-opensource/musesuperchar,musesystems-opensource,JavaScript,false,false,false,0,false,false,false,false +mtvee/go-dploi,mtvee,Go,false,false,false,0,false,false,false,false +TreeGenes/TGDR,TreeGenes,PHP,false,false,false,0,false,false,false,false +simp/simp-artwork,simp,,false,false,false,0,false,false,false,false +ABruguera/WaterWars,ABruguera,C#,false,false,false,0,false,false,false,false +angular-material-dashboard/angular-material-dashboard-seo,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +criztovyl/gnome-right-click-down,criztovyl,JavaScript,false,false,false,0,false,false,false,false +ianjcalvert/edgehammer,ianjcalvert,Python,false,false,false,0,false,false,false,false +andrewbanchich/massively-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +shestacks/front,shestacks,JavaScript,false,false,false,0,false,false,false,false +irm-erp/tss,irm-erp,PHP,false,false,false,0,false,false,false,false +vsichka/type-should-be.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +gmarciani/spring-app,gmarciani,Java,false,false,true,0,false,false,false,false +corna/android-prebuilts,corna,Makefile,false,false,false,0,false,false,false,false +insomniaqc/adobewebm,insomniaqc,C,false,false,false,0,false,false,false,false +loyke96/kernel,loyke96,C++,false,false,false,0,false,false,false,false +Mayber/quotes-generator,Mayber,HTML,false,false,false,0,false,false,false,false +nlp-passau/IndraLoader,nlp-passau,Java,false,false,true,0,false,false,false,false +Miniature-/MegaDownloader,Miniature-,PHP,false,false,false,0,false,false,false,false +ldo/dbussy,ldo,Python,false,false,false,0,false,false,false,false +Tirukomi/PuzzleGame,Tirukomi,C++,false,false,false,0,false,false,false,false +localtoast/chocolate-bunnies,localtoast,,false,false,false,0,false,false,false,false +zollak/RouterOS,zollak,,false,false,false,0,false,false,false,false +seriejava/serie-java,seriejava,Java,false,false,false,0,false,false,false,false +pi-control/pi-control,pi-control,,false,false,false,0,false,false,false,false +sherzo/atletico-boral,sherzo,HTML,false,false,false,0,false,false,false,false +amulvany/omnibus-vagrant,amulvany,,false,false,false,0,false,false,false,false +mardy/photokinesis,mardy,C++,true,false,false,2,true,true,false,false +fisthandle/tiny-analytics-php,fisthandle,PHP,false,false,false,0,false,false,false,false +nemolovich/shellscripts,nemolovich,Shell,false,false,false,0,false,false,false,false +STRUCTiX/hangman,STRUCTiX,C,false,false,false,0,false,false,false,false +anagabriel/oracle-db-sql,anagabriel,,false,false,false,0,false,false,false,false +igormironchik/qtmwidgets,igormironchik,C++,false,false,false,0,false,false,false,false +MariusLab/Less-Real,MariusLab,PHP,true,false,false,1,false,true,false,false +GolangVE/SitioWeb,GolangVE,JavaScript,true,false,false,1,false,true,false,false +Eskilop/unitohelperbot,Eskilop,Python,false,false,false,0,false,false,false,false +helgihaf/CommandLineParser,helgihaf,C#,false,false,false,0,false,false,false,false +946336-misc/CRTP,946336-misc,C++,false,false,false,0,false,false,false,false +koroltecnologia/salvatio,koroltecnologia,C++,false,false,false,0,false,false,false,false +betse/betsee,betse,Python,true,false,false,1,false,true,false,false +devymex/caffe,devymex,C++,false,false,false,0,false,false,false,false +CLARIN-ERIC/docker-alpine-supervisor-base,CLARIN-ERIC,Shell,true,false,false,2,true,false,false,true +Lebastaq/Esisar-VHDL,Lebastaq,TeX,false,false,false,0,false,false,false,false +kbaltruschat/RennspurApp,kbaltruschat,Java,false,false,false,0,false,false,false,false +barrel-db/lab/instrument,barrel-db,Erlang,true,false,false,1,false,true,false,false +cfmm/dcmrcvr,cfmm,Python,false,true,false,0,false,false,false,false +OOFGA-2017-01/EP2,OOFGA-2017-01,Java,false,false,false,0,false,false,false,false +PascalSmeets/psek-fitnesse-fixtures-demo,PascalSmeets,CSS,true,false,true,2,false,true,false,true +canarduck/disques,canarduck,CSS,true,false,false,4,false,true,true,false +vejnar/rsyncb,vejnar,Shell,false,false,false,0,false,false,false,false +spatchin/MyRecTeam,spatchin,Ruby,false,false,false,0,false,false,false,false +atorresm/GodotVibrate,atorresm,Java,false,false,false,0,false,false,false,false +TeeFirefly/prebuilts,TeeFirefly,C,false,false,false,0,false,false,false,false +uxrt-bos/multiboot2_lib,uxrt-bos,C,false,false,false,0,false,false,false,false +masoudnasiry/last-project,masoudnasiry,C++,false,false,false,0,false,false,false,false +civitas-digitalis/platform,civitas-digitalis,Java,false,false,false,0,false,false,false,false +order-tracking/restaurant_app,order-tracking,TypeScript,true,false,false,3,true,true,true,false +craftopoly/nginx-rtmp-streaming,craftopoly,Shell,false,false,false,0,false,false,false,false +ESC/Geant4-ReaderEicMC,ESC,C++,false,false,false,0,false,false,false,false +Chris92de/AdminServ-Neo,Chris92de,PHP,false,false,false,0,false,false,false,false +pgregoire/pep8term,pgregoire,C++,false,false,false,0,false,false,false,false +kuhlskev/asa-api,kuhlskev,Python,false,false,false,0,false,false,false,false +erisfrison/rtcg,erisfrison,Rust,true,false,false,1,false,true,false,false +spice/x11spice,spice,C,false,false,false,0,false,false,false,false +aluque/PESTO,aluque,Python,false,false,false,0,false,false,false,false +frodesigns-group/pwa-skeleton,frodesigns-group,Vue,true,false,false,3,true,false,true,false +jayapra78/Test,jayapra78,Java,false,false,false,0,false,false,false,false +mrswats/latgen,mrswats,Python,false,false,false,0,false,false,false,false +tianhanfangyan/tornado02,tianhanfangyan,Python,false,false,false,0,false,false,false,false +tianhanfangyan/tornado01,tianhanfangyan,Python,false,false,false,0,false,false,false,false +chrisspelberg/IDEA-profiles,chrisspelberg,,false,false,false,0,false,false,false,false +andrei1058/Reporting1058,andrei1058,,false,false,false,0,false,false,false,false +dolphinspray.fr/Route-Planner,dolphinspray.fr,Java,false,false,false,0,false,false,false,false +tombousso/gnu-bytecode2,tombousso,Java,true,false,false,1,false,false,false,false +jkw/yafa,jkw,HTML,false,false,false,0,false,false,false,false +georgekav/openwrt,georgekav,C,false,false,false,0,false,false,false,false +p3p3pp3/chrome-plugin-ssr-detector,p3p3pp3,JavaScript,false,false,false,0,false,false,false,false +mrswats/epidemic_spreading,mrswats,Python,false,false,false,0,false,false,false,false +InfRescue/Android,InfRescue,Java,false,false,false,0,false,false,false,false +grossmane/php-extended-with-mail,grossmane,Shell,false,false,false,0,false,false,false,false +fluxcess/fluxcess_admin,fluxcess,PHP,true,false,false,1,true,false,false,false +laraveluk/laraveluk.gitlab.io,laraveluk,CSS,true,false,false,1,false,true,false,false +caldera-labs/apirate,caldera-labs,PHP,false,false,false,0,false,false,false,false +kapsulstore/ng-site,kapsulstore,Java,false,false,true,0,false,false,false,false +DanielFGray/dotfiles,DanielFGray,Lua,false,false,false,0,false,false,false,false +aossie/MindTheWord-Mobile,aossie,TypeScript,false,false,false,0,false,false,false,false +usquam-frigus/Placeholder,usquam-frigus,JavaScript,false,false,false,0,false,false,false,false +hoanghuyle1709/test_project_0605,hoanghuyle1709,,false,false,false,0,false,false,false,false +JudiniCambell/Blender,JudiniCambell,,false,false,false,0,false,false,false,false +suportetikrn/nxbackups,suportetikrn,Shell,false,false,false,0,false,false,false,false +fauzipadlaw/spk-ahp,fauzipadlaw,JavaScript,false,false,false,0,false,false,false,false +clinic.manager.fee/Clinic_Manager,clinic.manager.fee,Java,false,false,false,0,false,false,false,false +gilben/home-scripts,gilben,Shell,false,false,false,0,false,false,false,false +ASCIIbreakdown/flaskmark,ASCIIbreakdown,Python,false,false,false,0,false,false,false,false +cygnus.mobi/sematica,cygnus.mobi,Python,false,false,false,0,false,false,false,false +kelvinosse/Origami,kelvinosse,Vue,false,false,false,0,false,false,false,false +moueza/gmail-delete,moueza,Java,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-user,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +playing05067/Taoyuan-airport-LoRaWAN-GPS,playing05067,Python,false,false,false,0,false,false,false,false +csaboka/prog2hazi,csaboka,C++,false,false,false,0,false,false,false,false +panchoaby/cityos,panchoaby,C#,true,false,false,1,false,true,false,false +fschuetz04/pilight-server,fschuetz04,Go,false,false,false,0,false,false,false,false +atelier-bek/svg2font,atelier-bek,Python,false,false,false,0,false,false,false,false +tramwayjs/tramway-callback-adapter,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +AkbarAlam/ProjectAcc,AkbarAlam,Java,false,false,true,0,false,false,false,false +chanunc/dtf_drupal,chanunc,PHP,false,false,false,0,false,false,false,false +fschuetz04/pilight-websockets-python,fschuetz04,Python,false,false,false,0,false,false,false,false +redpine/api-client,redpine,JavaScript,true,false,false,1,false,true,false,false +adqm/tako-plugins,adqm,,false,false,false,0,false,false,false,false +thanhbc/sortedlistsample,thanhbc,Java,false,false,false,0,false,false,false,false +zubairahmed/Sberbank_Russian_Housing_Market,zubairahmed,JupyterNotebook,false,false,false,0,false,false,false,false +KrishnaIyer/TUB_2SEM_ACA,KrishnaIyer,C,false,false,false,0,false,false,false,false +alvarocarrerasr/NVIDIACuda,alvarocarrerasr,C,false,false,false,0,false,false,false,false +juliochemoreno/FSM,juliochemoreno,,false,false,false,0,false,false,false,false +ElenQ/schiumato,ElenQ,JavaScript,false,false,false,0,false,false,false,false +tom81094/custom-patches,tom81094,,false,false,false,0,false,false,false,false +ccasanova/aws-docker,ccasanova,DIGITALCommandLanguage,false,false,false,0,false,false,false,false +Lexus733/h1.krestiki,Lexus733,C#,false,false,false,0,false,false,false,false +AxonNet/GitHub/dokuwiki,AxonNet,PHP,false,false,false,0,false,false,false,false +gitall/gitall,gitall,Ruby,false,false,false,0,false,false,false,false +Naej/Lemmings-LP24,Naej,Java,false,false,false,0,false,false,false,false +kwask/vela,kwask,C++,false,false,false,0,false,false,false,false +harsh.udasi/freeswitch_voitekk_demo,harsh.udasi,JavaScript,false,false,false,0,false,false,false,false +marnczarnecki/encrypt_content_client,marnczarnecki,PHP,false,false,false,0,false,false,false,false +sharpcraft/SharpCraft,sharpcraft,C#,false,false,false,0,false,false,false,false +angular-material-dashboard/angular-material-dashboard-collection,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +flomertens/ps_eor,flomertens,Python,false,false,false,0,false,false,false,false +subversion/wpsnitch,subversion,Python,false,false,false,0,false,false,false,false +Takuvik/ed0,Takuvik,R,false,false,false,0,false,false,false,false +openbufo/phorone,openbufo,Python,false,false,false,0,false,false,false,false +WzukW/hooklibml,WzukW,HTML,false,false,false,0,false,false,false,false +shep/python-course,shep,Python,false,false,false,0,false,false,false,false +varikin/romen,varikin,Go,true,false,false,2,false,true,false,false +ThibaultLemaire/3PJT-QwirkClient,ThibaultLemaire,Java,false,false,false,0,false,false,false,false +article-projects/acceptance-tests,article-projects,JavaScript,false,false,false,0,false,false,false,false +xxu/pyunlvrtm,xxu,Python,false,false,false,0,false,false,false,false +tecprog2-01-2017/bikesharingSP,tecprog2-01-2017,Ruby,false,false,false,0,false,false,false,false +fernandodsf/EngenhoDoce,fernandodsf,Java,false,false,false,0,false,false,false,false +Vargas1/proyecto-finalIAVR,Vargas1,HTML,false,false,false,0,false,false,false,false +MaralAfris/Tea-flavors,MaralAfris,,false,false,false,0,false,false,false,false +jonathan.youett/lndw_rccar,jonathan.youett,Python,false,false,false,0,false,false,false,false +navyasri/group_project,navyasri,,false,false,false,0,false,false,false,false +kv025java/AuraCore,kv025java,Java,true,false,false,5,true,true,false,false +Flowster/issues-infinite-scroll,Flowster,JavaScript,false,false,false,0,false,false,false,false +Martinlsm/LambdaSample,Martinlsm,Java,false,false,false,0,false,false,false,false +korqeeshsw/course1,korqeeshsw,C,false,false,false,0,false,false,false,false +rustyhorde/mimir,rustyhorde,Rust,false,false,false,0,false,false,false,false +adampharrison/bm3d_pcct,adampharrison,Matlab,false,false,false,0,false,false,false,false +gitmate/open-source/coala-incremental-results,gitmate,Python,true,false,false,2,false,true,false,true +gianluca.rigoletti/simulazioni-geant4,gianluca.rigoletti,TeX,false,false,false,0,false,false,false,false +solanpaa/bill2d,solanpaa,C++,true,false,false,2,false,false,true,false +biochron/lempy,biochron,Python,false,false,false,0,false,false,false,false +pcarbo/test-project,pcarbo,,false,false,false,0,false,false,false,false +salbertsdimdi/gitdimdi,salbertsdimdi,,false,false,false,0,false,false,false,false +katanastudios/LIM,katanastudios,PHP,false,false,false,0,false,false,false,false +Hyperion777/ScreenFramer,Hyperion777,Python,false,false,false,0,false,false,false,false +Arkrev/MovementController,Arkrev,C#,false,false,false,0,false,false,false,false +goern/oe2k,goern,Go,true,false,false,3,false,false,false,false +adriankroeger/PanzerProjekt,adriankroeger,Java,false,false,false,0,false,false,false,false +marc-fernandes/MFRC522-python3,marc-fernandes,Python,false,false,false,0,false,false,false,false +riktus/NuclearPowerPlantElements,riktus,C#,false,false,false,0,false,false,false,false +TruePath/check-monit-tpt,TruePath,Python,false,false,false,0,false,false,false,false +pedroms/presentations,pedroms,,false,false,false,0,false,false,false,false +braineering/disk-packing,braineering,Matlab,false,false,false,0,false,false,false,false +JeremyFerreira/rssconfigurator,JeremyFerreira,C#,false,false,false,0,false,false,false,false +azrazalea/cl-bearlibterminal,azrazalea,Python,false,false,false,0,false,false,false,false +kloeckner-i/rancher-api-beta,kloeckner-i,Ruby,false,false,false,0,false,false,false,false +amercader/mor,amercader,JavaScript,true,false,false,1,false,false,true,false +Fair_lab/Volumetric_ROI_to_Label,Fair_lab,Shell,false,false,false,0,false,false,false,false +AliaBrenkia/testingP,AliaBrenkia,Java,false,false,true,0,false,false,false,false +htmleditor/htmleditor.gitlab.io,htmleditor,HTML,true,false,false,1,false,false,true,false +saul.mtzs/jiraTimer,saul.mtzs,Vue,false,false,false,0,false,false,false,false +wearingstorm/docker_ksp,wearingstorm,Shell,false,false,false,0,false,false,false,false +wwcodemanila/WWCodeManila-Android,wwcodemanila,Java,false,false,false,0,false,false,false,false +accounts-sso/libauthentication,accounts-sso,C++,true,false,false,3,true,true,true,false +sourplum/dotfiles,sourplum,Python,false,false,false,0,false,false,false,false +genenetwork/guix-bioinformatics,genenetwork,Scheme,false,false,false,0,false,false,false,false +pgregoire/yubitouch,pgregoire,Shell,false,false,false,0,false,false,false,false +ReDevelopers/ReFlar/reactions,ReDevelopers,PHP,false,false,false,0,false,false,false,false +legited/dope-angular2-modules,legited,,false,false,false,0,false,false,false,false +mgetmanov/call-statistic,mgetmanov,Java,false,false,false,0,false,false,false,false +phanmanh1996/Nhom59_1451062081_1451062220,phanmanh1996,PHP,false,false,false,0,false,false,false,false +DMore/behat-chrome-skeleton,DMore,Gherkin,true,false,false,1,false,true,false,false +muhammadkholidb/ocbased,muhammadkholidb,JavaScript,false,false,false,0,false,false,false,false +AxonNet/GNU/Eli-src,AxonNet,C,false,false,false,0,false,false,false,false +timorleste/wind-speed,timorleste,HTML,false,false,false,0,false,false,false,false +zouquan741/GolfshotDataGrabber,zouquan741,Python,false,false,false,0,false,false,false,false +caldera-labs/caldera-jsonld,caldera-labs,PHP,false,false,false,0,false,false,false,false +opensource-tracking/FreeFileSync,opensource-tracking,C++,false,false,false,0,false,false,false,false +clustereurope-gitlab/workshop-script,clustereurope-gitlab,,false,false,false,0,false,false,false,false +tramwayjs/tramway-router-react-strategy,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +MateuszZ3/hajs,MateuszZ3,Python,false,true,false,0,false,false,false,false +leapsight/leap,leapsight,Erlang,false,false,false,0,false,false,false,false +transybao93/ejob,transybao93,PHP,false,false,false,0,false,false,false,false +ElenQ/site,ElenQ,HTML,false,false,false,0,false,false,false,false +chriscool/clustereurope,chriscool,,false,false,false,0,false,false,false,false +gf-bl/python-geolink-formatter,gf-bl,Python,true,true,false,3,false,true,true,false +supimpa/InfinityComboFighters,supimpa,Rust,false,false,false,0,false,false,false,false +mathewwe/FTC_APP,mathewwe,Java,false,false,false,0,false,false,false,false +sucan/Emmbrook,sucan,HTML,false,false,false,0,false,false,false,false +np23295/Views_in_odoo_8,np23295,Python,false,false,false,0,false,false,false,false +np23295/relation_odoo_8,np23295,,false,false,false,0,false,false,false,false +notklaatu/boomtown,notklaatu,Makefile,false,false,false,0,false,false,false,false +vagnum08/cpupower-gui,vagnum08,Makefile,false,false,false,0,false,false,false,false +colivre/erinle-ui,colivre,JavaScript,false,false,false,0,false,false,false,false +6uellerBpanda/omd-mattermost,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false +smzy11/ruby-bot,smzy11,Ruby,false,false,false,0,false,false,false,false +anhta-softwares/personal_tools,anhta-softwares,JavaScript,false,false,false,0,false,false,false,false +cjwebb/myblog,cjwebb,JavaScript,true,false,false,1,false,true,false,false +DanielSiepmann/neotags,DanielSiepmann,Python,true,false,false,2,true,true,false,false +shrestha.aawesh/PedestrianSafety,shrestha.aawesh,Java,false,false,false,0,false,false,false,false +pwmc/gsvg,pwmc,Vala,true,false,false,2,true,false,true,false +Kurobeats/pentest-machine,Kurobeats,Ruby,false,false,false,0,false,false,false,false +MecQueen/Herbie,MecQueen,,false,false,false,0,false,false,false,false +ariandin1411/periksapajak,ariandin1411,PHP,false,false,false,0,false,false,false,false +bradanlane/hawkeyepi,bradanlane,Python,false,false,false,0,false,false,false,false +sindrel/librenms-overview,sindrel,PHP,false,false,false,0,false,false,false,false +fdsoil/FDSoil,fdsoil,PHP,false,false,false,0,false,false,false,false +braineering/moviedoop,braineering,Java,false,false,false,0,false,false,false,false +braineering/socstream,braineering,Java,false,false,true,0,false,false,false,false +_zngguvnf/org-static-blog-example,_zngguvnf,EmacsLisp,true,false,false,1,false,true,false,false +BalmungSan/spark-kmeans,BalmungSan,HTML,true,false,false,1,false,false,true,false +a.savelev/TRPP_Project_Group1,a.savelev,Java,false,false,false,0,false,false,false,false +jmigueldelgado/myrpack,jmigueldelgado,R,false,false,false,0,false,false,false,false +bertof/PiTest,bertof,Java,false,false,false,0,false,false,false,false +agaric/drupal/bookmark,agaric,PHP,false,false,false,0,false,false,false,false +JHVenn/Quick-Haas,JHVenn,C++,false,false,false,0,false,false,false,false +Arithmo/Sigma,Arithmo,Java,false,false,false,0,false,false,false,false +diydatadevices/home,diydatadevices,C++,false,false,false,0,false,false,false,false +Tim54000/embedmessagecreator,Tim54000,Java,false,false,false,0,false,false,false,false +LibreGames/libregames.gitlab.io,LibreGames,Python,true,false,false,1,false,true,false,false +JairNunes/EntregaAndroid,JairNunes,Java,false,false,false,0,false,false,false,false +BobSteagall/CppNow2017,BobSteagall,C++,false,false,false,0,false,false,false,false +evilj0e1/urban-snake-2k17,evilj0e1,JavaScript,true,false,false,1,false,true,false,false +ibnukipa/kipa-ppi,ibnukipa,PHP,false,false,false,0,false,false,false,false +ayufan/external-zip-archive-seeker,ayufan,Go,false,false,false,0,false,false,false,false +ibnuda/Forum,ibnuda,F#,false,false,false,0,false,false,false,false +zeizig/moodle-wrapper,zeizig,PHP,false,false,false,0,false,false,false,false +mgreci/IHA_Referral,mgreci,JavaScript,false,false,false,0,false,false,false,false +markus-wa/cs-demos,markus-wa,,false,false,false,0,false,false,false,false +ravi220644/hyperarch,ravi220644,Python,false,false,false,0,false,false,false,false +benharri/benbot,benharri,PHP,false,false,false,0,false,false,false,false +mdklinux/mgapkg-koji,mdklinux,Shell,false,false,false,0,false,false,false,false +mzdonline/cmu-cli-tools,mzdonline,Shell,true,false,false,1,false,true,false,false +pygotham/2015,pygotham,HTML,false,false,false,0,false,false,false,false +pygotham/2016,pygotham,HTML,false,false,false,0,false,false,false,false +alvr/steam-ah,alvr,HTML,false,false,false,0,false,false,false,false +spaghettisalat/jffi,spaghettisalat,CommonLisp,false,false,false,0,false,false,false,false +moulpu/CrystalDefense,moulpu,C#,false,false,false,0,false,false,false,false +afolson/move,afolson,PHP,false,false,false,0,false,false,false,false +swarm2/swarm2,swarm2,JavaScript,false,false,false,0,false,false,false,false +Knackstedt/CarbonShell,Knackstedt,C#,true,false,false,2,true,true,false,false +duncan-bayne/ubuntu-setup,duncan-bayne,Python,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-monitoring,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true +makeorg/platform/control-center,makeorg,Scala,false,false,false,0,false,false,false,false +shameem6896/cms,shameem6896,CSS,false,false,false,0,false,false,false,false +thelabnyc/wagtail-links,thelabnyc,Python,true,false,false,1,false,true,false,false +Haroon96/Torrenter,Haroon96,Java,false,false,false,0,false,false,false,false +pantacor/pantavisor,pantacor,C,false,false,false,0,false,false,false,false +mdraw/predictingdeeper-seminar,mdraw,TeX,true,false,false,1,false,true,false,false +strburst/strburst.gitlab.io,strburst,HTML,true,false,false,1,false,true,false,false +djcuze/monopoly,djcuze,Ruby,false,false,false,0,false,false,false,false +rogelioRa/Prueba-sockets,rogelioRa,JavaScript,false,false,false,0,false,false,false,false +BuildStream/debootstrap-ostree,BuildStream,Shell,false,false,false,0,false,false,false,false +jassouline/nagios,jassouline,Shell,false,false,false,0,false,false,false,false +apiucci/HighRR_TrackingHandsOn_handson,apiucci,C++,false,false,false,0,false,false,false,false +mrlotfi/scmod,mrlotfi,Java,false,false,false,0,false,false,false,false +mathieu-ducrot/poc-test_unitaire,mathieu-ducrot,PHP,false,false,false,0,false,false,false,false +DevNebulae/thorium,DevNebulae,PureScript,false,false,false,0,false,false,false,false +fsfe/ams-docker-compose,fsfe,Shell,true,false,false,1,false,true,false,false +ovysotska/online_place_recognition,ovysotska,C++,true,false,false,2,true,true,false,false +bahmutov/cypress-ts-example,bahmutov,JavaScript,true,false,false,1,false,true,false,false +cnmota/ruby-snippets,cnmota,Ruby,false,false,false,0,false,false,false,false +llde/crypto-sithis,llde,C,false,false,false,0,false,false,false,false +jmigueldelgado/suds,jmigueldelgado,R,false,false,false,0,false,false,false,false +primedio/delivery-primedjs,primedio,JavaScript,true,false,false,1,false,true,false,false +allima/Application-Java,allima,Java,false,false,true,0,false,false,false,false +rex-yue-wu/Deep-Matching-Validation-Network,rex-yue-wu,JupyterNotebook,false,false,false,0,false,false,false,false +jonathan-kosgei/gitlab-ci-angular-e2e-unit-test,jonathan-kosgei,TypeScript,true,false,false,2,false,false,false,false +anil.it/nrm-pariwar,anil.it,JavaScript,false,false,false,0,false,false,false,false +djazz/project-sunflower-ebook,djazz,HTML,false,false,false,0,false,false,false,false +terramias/pixi-animation-sprite-converter,terramias,JavaScript,false,false,false,0,false,false,false,false +darwinsubramaniam/quizchamp_android,darwinsubramaniam,Java,false,false,false,0,false,false,false,false +benpl/xmi,benpl,Java,false,false,true,0,false,false,false,false +iceflower/xvm-licht-config,iceflower,XC,false,false,false,0,false,false,false,false +kaili/qlibs,kaili,C,false,false,false,0,false,false,false,false +rani.asila/IccPhp,rani.asila,PHP,false,false,false,0,false,false,false,false +jakpawlik/less-funkcje,jakpawlik,CSS,false,false,false,0,false,false,false,false +jnanar/scikit-linuxfr,jnanar,JupyterNotebook,false,false,false,0,false,false,false,false +InfRescue/Api,InfRescue,PHP,false,false,false,0,false,false,false,false +jamietanna/user-cookbook,jamietanna,Ruby,true,false,false,1,false,true,false,false +TC01/python-bautils,TC01,Python,true,false,false,1,false,true,false,false +rolodato/rolodato.gitlab.io,rolodato,HTML,true,false,false,1,false,true,false,false +bloxgate/cicero-bot,bloxgate,Kotlin,false,false,false,0,false,false,false,false +drutopia/drutopia_template,drutopia,,false,false,false,0,false,false,false,false +tianhanfangyan/weblog_analysis,tianhanfangyan,Python,false,false,false,0,false,false,false,false +ustun/eba,ustun,CSS,false,false,false,0,false,false,false,false +reinholdt/polarizationsolver,reinholdt,Python,true,false,false,1,false,true,false,false +jayakumar/KotlinExpriments,jayakumar,Kotlin,false,false,false,0,false,false,false,false +shiver/shrt,shiver,Rust,false,false,false,0,false,false,false,false +deliverous/blog,deliverous,Makefile,true,false,false,2,true,false,true,false +mkleehammer/runtasks,mkleehammer,Python,false,false,false,0,false,false,false,false +esodan/gresg,esodan,M4,false,false,false,0,false,false,false,false +SpringsCS/laravel-google-cloud-print,SpringsCS,PHP,false,false,false,0,false,false,false,false +diegonobre/mini-glossary,diegonobre,PHP,false,false,false,0,false,false,false,false +sliptype/etherbay,sliptype,Vue,false,false,false,0,false,false,false,false +worr/mypy-rt,worr,Python,false,true,false,0,false,false,false,false +d-e/rosalind,d-e,OpenSCAD,false,false,false,0,false,false,false,false +wwcodemanila/WWCodeManila-ML.AI,wwcodemanila,JupyterNotebook,false,false,false,0,false,false,false,false +MinhThuan96/ShopThoiTrang,MinhThuan96,,false,false,false,0,false,false,false,false +cafes-ludiques/wp-bgg,cafes-ludiques,PHP,false,false,false,0,false,false,false,false +FodyWeaving/Aspects,FodyWeaving,C#,true,false,false,4,true,true,false,true +hristonev/opencart-importer,hristonev,PHP,false,false,false,0,false,false,false,false +jclangst/personal-portfolio,jclangst,TypeScript,false,false,false,0,false,false,false,false +MaLarsson/layer-editor,MaLarsson,C++,false,false,false,0,false,false,false,false +LANL-EM/cr3va,LANL-EM,GLSL,false,false,false,0,false,false,false,false +clvnh1/GB_Tetris_CS,clvnh1,C#,false,false,false,0,false,false,false,false +JuPersonalWork/curriculum-vitae,JuPersonalWork,HTML,false,false,false,0,false,false,false,false +axet/java-flac-encoder,axet,Java,false,false,true,0,false,false,false,false +bootcamp.jrt/yum4,bootcamp.jrt,Java,false,false,false,0,false,false,false,false +jkantarek/kafka_ex_helpers,jkantarek,Elixir,true,false,false,2,false,true,true,false +Mohamed_Mansour/Advanced_SemiConductors,Mohamed_Mansour,Matlab,false,false,false,0,false,false,false,false +Mohamed_Mansour/Optical_Engineering,Mohamed_Mansour,Matlab,false,false,false,0,false,false,false,false +chukwuemeka/zappa,chukwuemeka,Python,false,true,false,0,false,false,false,false +Brezinova/eValue-skoleni,Brezinova,CSS,false,false,false,0,false,false,false,false +Mohamed_Mansour/JPEG_Compression_Techniques,Mohamed_Mansour,Matlab,false,false,false,0,false,false,false,false +Mohamed_Mansour/Graduation_Project,Mohamed_Mansour,,false,false,false,0,false,false,false,false +LibreGames/meta,LibreGames,,false,false,false,0,false,false,false,false +kronos29296/nvim-dotfiles,kronos29296,Vimscript,false,false,false,0,false,false,false,false +IskanderNovena/synology-vpn-scripts,IskanderNovena,Shell,false,false,false,0,false,false,false,false +QuasiMod/arzedit,QuasiMod,C#,false,false,false,0,false,false,false,false +LuisTheKid/lfonsi.com,LuisTheKid,CSS,false,false,false,0,false,false,false,false +kurt.timm/test,kurt.timm,Perl,false,false,false,0,false,false,false,false +kobededecker/docker,kobededecker,Batchfile,false,false,false,0,false,false,false,false +meutraa/android-utils,meutraa,Kotlin,false,false,false,0,false,false,false,false +float.cf/proxy,float.cf,,true,false,false,2,true,false,true,false +yopi-angi/odoo-nginx-conf,yopi-angi,,false,false,false,0,false,false,false,false +Zipcore/AntiAFK,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +manandoshi/conv_autoencoder,manandoshi,Python,false,false,false,0,false,false,false,false +kennydude/tb-ng,kennydude,Python,false,true,false,0,false,false,false,false +henrikhaugboelle/zmags-hn-random-reader,henrikhaugboelle,CSS,false,false,false,0,false,false,false,false +ubcbiomod/biomod2017,ubcbiomod,HTML,true,false,false,1,false,true,false,false +weburger/am-wb/am-wb-mailchimp,weburger,JavaScript,true,false,false,1,false,true,false,false +lmt.freelance/LeGiaGrass,lmt.freelance,,false,false,false,0,false,false,false,false +fschuetz04/home-assistant,fschuetz04,,false,false,false,0,false,false,false,false +Mohamed_Mansour/RX_Design,Mohamed_Mansour,,false,false,false,0,false,false,false,false +DGKmaster/HunterCV,DGKmaster,C,false,false,false,0,false,false,false,false +joselsegura/monogen,joselsegura,Python,false,false,false,0,false,false,false,false +cdaringe/react-scripts-webpack-config-editor,cdaringe,JavaScript,false,false,false,0,false,false,false,false +VickNet/matcha,VickNet,TypeScript,false,false,false,0,false,false,false,false +wearingstorm/docker_fivem,wearingstorm,Groovy,false,false,false,0,false,false,false,false +rudy_dv/projet-django,rudy_dv,Python,false,true,false,0,false,false,false,false +monetha/ico-reputation-analyzer,monetha,Go,true,false,false,2,true,false,false,false +sowebdev/battleship-game,sowebdev,PHP,true,false,false,1,false,true,false,false +mzshieh/nctu-annual-2017,mzshieh,TeX,false,false,false,0,false,false,false,false +mzdonline/mazda-toolchain,mzdonline,,false,false,false,0,false,false,false,false +kronos29296/project_euler,kronos29296,Python,false,false,false,0,false,false,false,false +lysakaleksey/cassandra-jobs-api,lysakaleksey,Java,false,false,false,0,false,false,false,false +teymoori/sematecsaturdays,teymoori,Java,false,false,false,0,false,false,false,false +DeepArtPlus/TrainingModel-Release,DeepArtPlus,,false,false,false,0,false,false,false,false +fschl/strings_safety_c,fschl,C,false,false,false,0,false,false,false,false +dgallegos/vive-sps,dgallegos,JavaScript,false,false,false,0,false,false,false,false +jakpawlik/black-browser-detect,jakpawlik,HTML,false,false,false,0,false,false,false,false +mitlley/BibliotecaEjemplo,mitlley,Java,false,false,false,0,false,false,false,false +roni_sharma123/first_project,roni_sharma123,HTML,false,false,false,0,false,false,false,false +emilopez/ayudar,emilopez,,false,false,false,0,false,false,false,false +cuidandodomeubairro/tagarela,cuidandodomeubairro,Python,false,false,false,0,false,false,false,false +cuidandodomeubairro/viralata,cuidandodomeubairro,Python,false,false,false,0,false,false,false,false +cuidandodomeubairro/esic-livre,cuidandodomeubairro,Python,false,false,false,0,false,false,false,false +Isidore/reddit-redesign,Isidore,TypeScript,false,false,false,0,false,false,false,false +fast-science/background-removal-vue,fast-science,JavaScript,true,false,false,1,false,false,true,false +gryph-trash-studios/meteorhead-xvi,gryph-trash-studios,,false,false,false,0,false,false,false,false +alvinrizqikoswara/openlibrary,alvinrizqikoswara,PHP,false,false,false,0,false,false,false,false +ArkitectureRepository/XCodeTemplates,ArkitectureRepository,Swift,false,false,false,0,false,false,false,false +felixfong227/fasthub,felixfong227,JavaScript,false,false,false,0,false,false,false,false +harrylaou/monad-stacks,harrylaou,Scala,false,false,false,0,false,false,false,false +loreliji/taller1_primerapp,loreliji,Java,false,false,false,0,false,false,false,false +adamldavis/groocss,adamldavis,Groovy,true,false,false,2,true,true,false,false +fnix/korujas,fnix,CSS,false,false,false,0,false,false,false,false +mkleehammer/autoconfig,mkleehammer,Python,false,false,false,0,false,false,false,false +jonatanpc8/keygenSublimeText_GNU_LINUX,jonatanpc8,,false,false,false,0,false,false,false,false +nascVi/honeyChamps,nascVi,,false,false,false,0,false,false,false,false +smondet/vecosek,smondet,OCaml,true,false,false,1,false,true,false,false +cgascoig/netdevops,cgascoig,Python,true,false,false,4,false,true,true,false +psyked/cheat-sheets,psyked,HTML,false,false,false,0,false,false,false,false +learning-angular4/starting-with-angular4,learning-angular4,TypeScript,false,false,false,0,false,false,false,false +learning-angular4/angular4-from-scratch,learning-angular4,TypeScript,false,false,false,0,false,false,false,false +martindell.oro/capacitacionGitlab,martindell.oro,,false,false,false,0,false,false,false,false +tjsdavies/rdx,tjsdavies,JavaScript,false,false,false,0,false,false,false,false +huygens/unifi-docker,huygens,Shell,true,false,false,1,false,true,false,false +tienphuc0505/Recycler_View_Animation,tienphuc0505,Java,false,false,false,0,false,false,false,false +kirara/reborn-modpack,kirara,HTML,true,false,false,1,true,false,false,false +sd1-ec-2017-1/g4-p3,sd1-ec-2017-1,JavaScript,false,false,false,0,false,false,false,false +rmoshiur81/laravel-task-scheduler,rmoshiur81,PHP,false,false,false,0,false,false,false,false +gitmate/documentation,gitmate,,true,false,false,1,false,true,false,false +kybernetics/hypershot,kybernetics,Python,true,true,false,2,false,true,true,false +luccasalves/shoppingList,luccasalves,JavaScript,false,false,false,0,false,false,false,false +devchuckcamp/rose-ng2,devchuckcamp,JavaScript,false,false,false,0,false,false,false,false +SwePopper/RuntimeCpp,SwePopper,C++,false,false,false,0,false,false,false,false +carmenbianca/changelogdir,carmenbianca,Python,true,true,false,2,false,true,true,false +voidspiral/Antum,voidspiral,CSS,false,false,false,0,false,false,false,false +mzdonline/cmu-opkg,mzdonline,JavaScript,false,false,false,0,false,false,false,false +Lignum/urn-pong,Lignum,CommonLisp,false,false,false,0,false,false,false,false +SrBrahma27/Logiwin,SrBrahma27,,false,false,false,0,false,false,false,false +rr789/wpf_resize_adorner,rr789,C#,false,false,false,0,false,false,false,false +jakubsacha/cli-table,jakubsacha,Rust,true,false,false,1,false,true,false,false +rizaliahmd/master-cms,rizaliahmd,JavaScript,false,false,false,0,false,false,false,false +esoadamo/VolumeRansomware,esoadamo,Python,false,false,false,0,false,false,false,false +RikdeRooij/2DBattleArena,RikdeRooij,C#,false,false,false,0,false,false,false,false +mvglasow/qz,mvglasow,Java,false,false,false,0,false,false,false,false +Tree_Water_Sensors/dendrometer,Tree_Water_Sensors,C++,false,false,false,0,false,false,false,false +microservices-for-everyone/process-management,microservices-for-everyone,PHP,false,false,false,0,false,false,false,false +fredleger/formation-ELK,fredleger,PHP,false,false,false,0,false,false,false,false +asacasa/gluster-kubernetes-arm,asacasa,Shell,false,false,false,0,false,false,false,false +dknof/pipe,dknof,C++,false,false,false,0,false,false,false,false +n33gr0m4nc3r/TF2-Config,n33gr0m4nc3r,,false,false,false,0,false,false,false,false +lefetmeofefet/PeachMe,lefetmeofefet,Python,false,true,false,0,false,false,false,false +Verner/django-assets-livereload,Verner,Python,false,true,false,0,false,false,false,false +senioroman4uk/bigdata-face-recognition,senioroman4uk,Python,false,false,false,0,false,false,false,false +citySmall/Hackathon-gpu-process,citySmall,Cuda,false,false,false,0,false,false,false,false +gunnarwolf/madewithcc-es,gunnarwolf,Ruby,false,false,false,0,false,false,false,false +michael_house/VR_Room_Editor,michael_house,C#,false,false,false,0,false,false,false,false +qulogic-rpms/obspy,qulogic-rpms,,false,false,false,0,false,false,false,false +zainalam/ionic-testing,zainalam,JavaScript,false,false,false,0,false,false,false,false +runik/kts,runik,Python,false,false,false,0,false,false,false,false +gercom/evalvid-ns3,gercom,Smalltalk,false,false,false,0,false,false,false,false +AxonNet/GNU/odin,AxonNet,C,false,false,false,0,false,false,false,false +mschwan/roc,mschwan,C,false,false,false,0,false,false,false,false +dnl76935/knowledgegraph,dnl76935,JavaScript,false,false,false,0,false,false,false,false +ScribeSoftware/reference-app-managed-services-console,ScribeSoftware,JavaScript,false,false,false,0,false,false,false,false +ilug-bom/www.ilug-bom.org.in,ilug-bom,CSS,true,false,false,1,false,false,true,false +tgcandido/devgrid-challenge,tgcandido,Python,false,false,false,0,false,false,false,false +dnl76935/resources,dnl76935,PHP,false,false,false,0,false,false,false,false +eephrati/socketio-express,eephrati,JavaScript,false,false,false,0,false,false,false,false +GCinema/Main-Server,GCinema,Lua,false,false,false,0,false,false,false,false +sadek.amrch/tpi-secuchat,sadek.amrch,C#,false,false,false,0,false,false,false,false +zj/isgitlabipv6yet,zj,HTML,false,false,false,0,false,false,false,false +wiert.me/gitlab/issues,wiert.me,HTML,false,false,false,0,false,false,false,false +nicholaschung/Twitter-Swift3-iOS,nicholaschung,Swift,false,false,false,0,false,false,false,false +zach-geek/songbook,zach-geek,Ruby,true,false,false,2,true,false,true,false +sohunjug/i3config,sohunjug,Shell,false,false,false,0,false,false,false,false +MISRA/MISRA-C/MISRA-C-2004/Exemplar-Suite,MISRA,C,false,false,false,0,false,false,false,false +UnitedPAWN/unit,UnitedPAWN,PAWN,false,false,false,0,false,false,false,false +druvikram/hr_webadvisor,druvikram,HTML,false,false,false,0,false,false,false,false +ucgc/discord,ucgc,Go,true,false,false,2,true,false,false,false +manatejo/activite1,manatejo,Java,false,false,false,0,false,false,false,false +selimcan/apertium-fitnesse,selimcan,Python,false,false,false,0,false,false,false,false +watshi/maven_test,watshi,Java,false,false,false,0,false,false,false,false +notakey-support/appliance,notakey-support,Shell,false,false,false,0,false,false,false,false +misitioba/storeco,misitioba,JavaScript,false,false,false,0,false,false,false,false +nsac/server,nsac,Shell,false,false,false,0,false,false,false,false +tspiteri/sconcat,tspiteri,Rust,false,false,false,0,false,false,false,false +ClemMakesApps/trello-power-up,ClemMakesApps,HTML,false,false,false,0,false,false,false,false +bti360/gradle-console-reporter,bti360,Groovy,false,false,false,0,false,false,false,false +juankql/freelance-recruitment,juankql,PHP,false,false,false,0,false,false,false,false +Skuteli/material-girl,Skuteli,Clojure,false,false,false,0,false,false,false,false +sat-metalab/forks/panda3d_render_pipeline,sat-metalab,Python,false,false,false,0,false,false,false,false +boromil/flatteners,boromil,Python,false,false,false,0,false,false,false,false +andribs24/tugas-pemrograman-web,andribs24,PHP,false,false,false,0,false,false,false,false +ansome22/unreal-engine-space-shooter,ansome22,,false,false,false,0,false,false,false,false +AbdullahskBD/Online-Bangla-text-converter,AbdullahskBD,,false,false,false,0,false,false,false,false +nagyadi14/java_kotprog,nagyadi14,Java,false,false,false,0,false,false,false,false +mttelkomsel/jualbeli,mttelkomsel,Java,false,false,false,0,false,false,false,false +DeepArtPlus/TrainingModel-chainer-fast-neuralstyle,DeepArtPlus,,false,false,false,0,false,false,false,false +4151/WebExt/ReqBlock,4151,JavaScript,true,false,false,1,true,false,false,false +picter/frontier,picter,TypeScript,true,false,false,2,false,true,true,false +biotransistor/acpipe_aushon,biotransistor,Python,false,false,false,0,false,false,false,false +dragonn/hypercube_evo-marlin,dragonn,C,false,false,false,0,false,false,false,false +ga-epd-it/ga-epd-wds,ga-epd-it,HTML,false,false,false,0,false,false,false,false +monaco/cee,monaco,M4,false,false,false,0,false,false,false,false +AlexKuzmenko/library,AlexKuzmenko,PHP,false,false,false,0,false,false,false,false +alecshaw/alecshaw.gitlab.io,alecshaw,HTML,true,false,false,1,false,false,true,false +recalbox/ops/env2file,recalbox,Shell,true,false,false,1,true,false,false,false +Razrab/t,Razrab,JavaScript,false,false,false,0,false,false,false,false +lafricain79/NYM,lafricain79,,false,false,false,0,false,false,false,false +the-casual-trade-and-fun-server/VIP-manager,the-casual-trade-and-fun-server,SourcePawn,false,false,false,0,false,false,false,false +pygotham/countdown,pygotham,HTML,false,false,false,0,false,false,false,false +puravida-software/asciidoctor-extensions,puravida-software,CSS,true,false,false,2,true,false,true,false +pulkitpahwa/music_player,pulkitpahwa,Python,false,false,false,0,false,false,false,false +aiakos/dj12,aiakos,Python,true,false,false,1,false,true,false,false +DotNetIW/GerenciadorDeUsuarios,DotNetIW,C#,false,false,false,0,false,false,false,false +joaovieira/grpc-web-spa,joaovieira,TypeScript,false,false,false,0,false,false,false,false +sodimel/up,sodimel,PHP,false,false,false,0,false,false,false,false +GismoBr/WebGL_Editor2,GismoBr,JavaScript,false,false,false,0,false,false,false,false +exadra37-learning/elixir/programming-elixir-1.3-book,exadra37-learning,Elixir,false,false,false,0,false,false,false,false +jjacobson/rancher-cockroachdb,jjacobson,Shell,true,false,false,1,true,false,false,false +projects-shellscripts/puppet_agent,projects-shellscripts,Shell,false,false,false,0,false,false,false,false +pwiedel/meta-testing-example,pwiedel,Groovy,false,false,false,0,false,false,false,false +Arunkumarcs/express-sequelize-nunjucks,Arunkumarcs,JavaScript,false,false,false,0,false,false,false,false +NM0J/jt-reddit,NM0J,C++,false,false,false,0,false,false,false,false +amoshuangyc/ccu,amoshuangyc,JupyterNotebook,false,false,false,0,false,false,false,false +prabalm2014/Kanpsack-Artificial-Intelligence-Problem,prabalm2014,C++,false,false,false,0,false,false,false,false +Milihhard/echec-java,Milihhard,Java,true,false,true,3,false,true,false,false +aytacworld/angular-simple-overlay,aytacworld,TypeScript,false,false,false,0,false,false,false,false +SvenKardol/Orbit-Visualization-Tool,SvenKardol,JavaScript,false,false,false,0,false,false,false,false +weburger/am-wb-seen/am-wb-seen-core,weburger,JavaScript,true,false,false,1,false,true,false,false +DomesticScience/InteractiveNonFiction,DomesticScience,HTML,false,false,false,0,false,false,false,false +thebottlerocket/111-prototypes,thebottlerocket,HTML,false,false,false,0,false,false,false,false +hipparchus2000/PersonalSpendingAnalysis,hipparchus2000,C#,false,false,false,0,false,false,false,false +johannesg/vegg,johannesg,PHP,false,false,false,0,false,false,false,false +shingrey/miwebpage,shingrey,CSS,false,false,false,0,false,false,false,false +willeonardo19/plantilla,willeonardo19,HTML,false,false,false,0,false,false,false,false +categulario/tesis,categulario,TeX,false,false,false,0,false,false,false,false +Kwilco/kwil.co,Kwilco,Shell,true,false,false,1,false,true,false,false +whacks/daily-reddit,whacks,Java,true,false,true,1,false,true,false,false +endymuhardin/training-git-2017-01,endymuhardin,,false,false,false,0,false,false,false,false +mozinrat/frauddetect,mozinrat,Java,false,false,false,0,false,false,false,false +dlab-indecol/web_trawler,dlab-indecol,Python,true,false,false,1,false,true,false,false +AnjiProject/anji-core,AnjiProject,Python,true,false,false,2,false,true,false,false +caro-sdu/gripperz,caro-sdu,C++,false,false,false,0,false,false,false,false +mathml/MathMLinHTML5,mathml,TeX,false,false,false,0,false,false,false,false +brainsick/bscc,brainsick,Haskell,false,false,false,0,false,false,false,false +mateusas3s/EP3-OO,mateusas3s,Ruby,false,false,false,0,false,false,false,false +raghava.kota/demo,raghava.kota,Java,false,false,false,0,false,false,false,false +MohemmadAlbughdadi/DLS,MohemmadAlbughdadi,JavaScript,false,false,false,0,false,false,false,false +riandpratama/car,riandpratama,Processing,false,false,false,0,false,false,false,false +venenux/simplecontrolasistencia,venenux,HTML,false,false,false,0,false,false,false,false +vgg/vgg_frontend,vgg,Python,false,false,false,0,false,false,false,false +edwinj3829/react-gallery,edwinj3829,JavaScript,false,false,false,0,false,false,false,false +gonxo/Curso_GIS,gonxo,JavaScript,false,false,false,0,false,false,false,false +Boogemin/CameraLoop,Boogemin,Matlab,false,false,false,0,false,false,false,false +revathskumar/jest-training,revathskumar,JavaScript,false,false,false,0,false,false,false,false +scrolliris/scrolliris-readability-tracker,scrolliris,JavaScript,true,false,false,3,false,false,false,false +fnordian/swagger-viewer-react,fnordian,JavaScript,true,false,false,1,false,true,false,false +davidwisch/miso,davidwisch,Go,false,false,false,0,false,false,false,false +zhyunfe/MyRiseClub,zhyunfe,PHP,false,false,false,0,false,false,false,false +YouRock/TheFlipSideRebirth,YouRock,C++,false,false,false,0,false,false,false,false +internpursuit/website,internpursuit,PHP,false,false,false,0,false,false,false,false +e2prod/e2prod.com,e2prod,CSS,false,false,false,0,false,false,false,false +enzanki_ars/live-tv,enzanki_ars,Python,false,true,false,0,false,false,false,false +Lukasz.Sobalak/spring-mvc,Lukasz.Sobalak,Java,false,false,false,0,false,false,false,false +MackSure/b2b,MackSure,,false,false,false,0,false,false,false,false +harbottle/docker-rpm,harbottle,,true,false,false,1,true,false,false,false +ebal/spammers,ebal,,false,false,false,0,false,false,false,false +mextrix/matrix-appservice-signal,mextrix,Kotlin,true,false,false,2,true,true,false,false +jankern/shopping-card,jankern,JavaScript,false,false,false,0,false,false,false,false +spicydog/example-ci-cd-golang,spicydog,Go,true,false,false,2,true,true,false,false +hegdevinayi/kelpie,hegdevinayi,Python,true,false,false,1,true,false,false,false +egolib/ego,egolib,Go,true,false,false,1,true,false,false,false +kevinkhill/lavacharts-angular-demo,kevinkhill,JavaScript,false,false,false,0,false,false,false,false +spisemisu/elm-bytes,spisemisu,Elm,false,false,false,0,false,false,false,false +auf-org/sigma,auf-org,JavaScript,false,false,false,0,false,false,false,false +gwenf/ParkExplorer,gwenf,JavaScript,false,false,false,0,false,false,false,false +second-grain/src,second-grain,Python,false,false,false,0,false,false,false,false +second-grain/cli,second-grain,Python,false,false,false,0,false,false,false,false +localtoast/oxo,localtoast,Python,false,false,false,0,false,false,false,false +mortlach/LP_Hangman,mortlach,,false,false,false,0,false,false,false,false +kpmeen/clammyscan,kpmeen,Scala,true,false,false,2,false,true,false,false +recalbox/ops/savior,recalbox,Shell,true,false,false,1,true,false,false,false +andreybolonin/clickhouse_crud,andreybolonin,PHP,true,false,false,1,false,true,false,false +winniehell/water-child,winniehell,HTML,true,false,false,1,false,false,true,false +6massote/users-profile-manager,6massote,CSS,true,false,false,6,true,true,false,false +berenm/kaitai_struct_formats,berenm,HTML,false,false,false,0,false,false,false,false +localtoast/oxo-postwriter,localtoast,Python,false,false,false,0,false,false,false,false +pubsweet/pubsweet.gitlab.io,pubsweet,HTML,true,false,false,1,false,false,true,false +Dscha/OBE_DevBuild,Dscha,C++,false,false,false,0,false,false,false,false +alexey-martynov/cl-json-object,alexey-martynov,CommonLisp,true,false,false,1,false,true,false,false +kyrylovoronoi/tm-frontend-test-junior,kyrylovoronoi,JavaScript,false,false,false,0,false,false,false,false +dakf_cusat/dakf_cusat.gitlab.io,dakf_cusat,Ruby,false,false,false,0,false,false,false,false +lafricain79/kituba-dic,lafricain79,Shell,false,false,false,0,false,false,false,false +24hoursmedia/craft2-plugins/craft2-taskrunner,24hoursmedia,PHP,false,false,false,0,false,false,false,false +joaopaulo.reisalvarenga/sistemacaronas-backend,joaopaulo.reisalvarenga,C++,false,false,false,0,false,false,false,false +dropkoala/LED-vu-meter,dropkoala,Java,false,false,false,0,false,false,false,false +pinkhatbeard/webshootout,pinkhatbeard,Python,false,true,false,0,false,false,false,false +2NEI1/mysuperproject,2NEI1,,false,false,false,0,false,false,false,false +tjian-darzacq-lab/spot-on-matlab,tjian-darzacq-lab,Matlab,false,false,false,0,false,false,false,false +talachutla/solace-jms-spring-boot,talachutla,Java,false,false,false,0,false,false,false,false +dixanta/AJV17004Projects,dixanta,Java,false,false,false,0,false,false,false,false +leworeczny-programista/homepage,leworeczny-programista,PHP,false,false,false,0,false,false,false,false +johncf/stosim,johncf,Rust,false,false,false,0,false,false,false,false +pantacor/pvr,pantacor,Go,true,false,false,1,true,false,false,false +Shag-hack/shaq-website-hack,Shag-hack,JavaScript,false,false,false,0,false,false,false,false +sicamp-py/gate-backend,sicamp-py,Scilab,false,false,false,0,false,false,false,false +mr.varga.robert/Godel_DL,mr.varga.robert,C++,false,false,false,0,false,false,false,false +o.lelenkov/dub-registry,o.lelenkov,D,false,false,false,0,false,false,false,false +gmarciani/flink-app,gmarciani,Java,false,false,true,0,false,false,false,false +gmarciani/mapreduce-app,gmarciani,Java,false,false,true,0,false,false,false,false +scastiel/crypticker-api,scastiel,JavaScript,false,false,false,0,false,false,false,false +SomeDirt/UltimateFrisbeeApp,SomeDirt,TypeScript,false,false,false,0,false,false,false,false +seifriedc/seifriedc.gitlab.io,seifriedc,EmacsLisp,true,false,false,1,false,true,false,false +sapanagrawal777/Artificial_Robotic_Arm,sapanagrawal777,LabVIEW,false,false,false,0,false,false,false,false +KyleDellisAutomationWork/IsoCountryCodeServiceTest,KyleDellisAutomationWork,C#,false,false,false,0,false,false,false,false +pkinold/lightning-docker-test,pkinold,PHP,true,false,false,1,true,false,false,false +scalad/SSS,scalad,Java,false,false,true,0,false,false,false,false +scalad/HAP2.0,scalad,JavaScript,false,false,false,0,false,false,false,false +skoric/erfolgsplaner,skoric,Java,false,false,true,0,false,false,false,false +codedaily/reactnativeanimations,codedaily,Objective-C,false,false,false,0,false,false,false,false +kotlin-samples/recyclerview-sample,kotlin-samples,Kotlin,false,false,false,0,false,false,false,false +ShawnCarter/WebLogThingy,ShawnCarter,PHP,false,false,false,0,false,false,false,false +fpirola/scala-js-broken-telephone,fpirola,Scala,false,false,false,0,false,false,false,false +sigma-web-app/s-container,sigma-web-app,JavaScript,true,false,false,1,false,false,true,false +macward/papercup,macward,Swift,false,false,false,0,false,false,false,false +shazbot89/shaunbur.ch,shazbot89,CSS,true,false,false,1,false,false,true,false +VickySteeves/Women-Leaders-Openness,VickySteeves,JavaScript,true,false,false,2,false,true,true,false +kevinresol/haxe-react-native,kevinresol,Haxe,false,false,false,0,false,false,false,false +icipiracy/icui,icipiracy,JavaScript,false,false,false,0,false,false,false,false +SheMaris/MonkeyRace_GodotEngine,SheMaris,C++,false,false,false,0,false,false,false,false +willemmali/awesome-root,willemmali,,false,false,false,0,false,false,false,false +wustl-pctg-pub/cracer,wustl-pctg-pub,C,false,false,false,0,false,false,false,false +RFsmarthome/RGBController_Android,RFsmarthome,Java,false,false,false,0,false,false,false,false +jcharaoui/rtorrent_pia,jcharaoui,PHP,false,false,false,0,false,false,false,false +wrightg42/sneak-game,wrightg42,C#,false,false,false,0,false,false,false,false +Megver83/hypersocial,Megver83,Python,false,true,false,0,false,false,false,false +idgreywolf/lord-of-the-rings,idgreywolf,,false,false,false,0,false,false,false,false +wolframkriesing/talk-flow-type-enterjs-2017,wolframkriesing,JavaScript,false,false,false,0,false,false,false,false +jmatheis/LibThermo,jmatheis,Matlab,false,false,false,0,false,false,false,false +Vondracek/TodoApp,Vondracek,JavaScript,true,false,false,1,false,true,false,false +elijahlynn/open-election-voting-specification,elijahlynn,,false,false,false,0,false,false,false,false +ViniciusArnhold/ProjectAltaria,ViniciusArnhold,Java,false,false,false,0,false,false,false,false +afranke/wims-modules,afranke,Java,false,false,false,0,false,false,false,false +simoneferri/lambda,simoneferri,Java,false,false,false,0,false,false,false,false +afranke/wims,afranke,Java,false,false,false,0,false,false,false,false +abul_wcse/casino,abul_wcse,PHP,false,false,false,0,false,false,false,false +arm-hpc/workloads,arm-hpc,,false,false,false,0,false,false,false,false +summer-js-course-epam-2017/ToDo-server,summer-js-course-epam-2017,JavaScript,false,false,false,0,false,false,false,false +hodgskin-callan/Spellunk,hodgskin-callan,C#,false,false,false,0,false,false,false,false +ergin/java-multi-module-skeleton,ergin,Java,false,false,false,0,false,false,false,false +bitbeter/ng4-persian,bitbeter,TypeScript,false,false,false,0,false,false,false,false +mschwan/dotfiles,mschwan,TeX,false,false,false,0,false,false,false,false +kadsys/kraken-notfier,kadsys,PowerShell,false,false,false,0,false,false,false,false +fpirola/scala-js-breakout,fpirola,Scala,true,false,false,1,false,true,false,false +commonshost/website,commonshost,CSS,true,false,false,1,false,true,false,false +fed_nicaifu/fedauto_h5,fed_nicaifu,JavaScript,false,false,false,0,false,false,false,false +unee-t/bugzilla,unee-t,CSS,true,false,false,2,true,false,true,false +szilagyiabo/d3-getting-started,szilagyiabo,,false,false,false,0,false,false,false,false +vaken79/Cogihot,vaken79,,false,false,false,0,false,false,false,false +weburger/am-wb/am-wb-chart,weburger,JavaScript,true,false,false,1,false,true,false,false +theShirbiny/count,theShirbiny,Go,false,false,false,0,false,false,false,false +teymoori/sematecfridays,teymoori,Java,false,false,false,0,false,false,false,false +pcapriotti/agda-segal,pcapriotti,Agda,false,false,false,0,false,false,false,false +feinfinger/feinfinger.gitlab.io,feinfinger,JavaScript,true,false,false,1,false,false,true,false +carlosviteri/reservav1,carlosviteri,HTML,false,false,false,0,false,false,false,false +nickguletskii/WixWPFWizardBA,nickguletskii,C#,false,false,false,0,false,false,false,false +marxist/socrev-api,marxist,JavaScript,false,false,false,0,false,false,false,false +precognition-llc/aeonvera,precognition-llc,Ruby,true,false,false,2,false,true,false,true +niangao/tax,niangao,JavaScript,false,false,true,0,false,false,false,false +alelec/future_thread,alelec,Python,true,false,false,1,false,false,true,false +LetWomenIn/letwomenin,LetWomenIn,CSS,false,false,false,0,false,false,false,false +CoreDockWorker/CoreDockWorker.setup.public,CoreDockWorker,Shell,true,false,false,1,true,false,false,false +lopin_dockerfiles/lopalpinegit,lopin_dockerfiles,,true,false,false,1,true,false,false,false +warplab/dolphin-lang,warplab,Python,false,false,false,0,false,false,false,false +createjump/mechos,createjump,C,false,false,false,0,false,false,false,false +ATFreelancer/erp-backend,ATFreelancer,PHP,false,false,false,0,false,false,false,false +baumrock/FieldtypeHandsontable,baumrock,PHP,false,false,false,0,false,false,false,false +lembux/Yumita,lembux,HTML,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-bank,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +vmfhrmfoaj/lein-template-simple-nodejs,vmfhrmfoaj,Clojure,false,false,false,0,false,false,false,false +maheshwarinamra17/DC-Browser,maheshwarinamra17,Python,false,false,false,0,false,false,false,false +Vanilor/VaporisWeb,Vanilor,PHP,false,false,false,0,false,false,false,false +RTI-Hub/P1-RTI-Date-Calculator-Web,RTI-Hub,HTML,false,false,false,0,false,false,false,false +rotarypot/Ulises-Legarreta,rotarypot,CSS,false,false,false,0,false,false,false,false +BestPracticesWorkgroup/UsabilityBestPractices,BestPracticesWorkgroup,TeX,true,false,false,1,false,true,false,false +PAM-PIE/PAM,PAM-PIE,Matlab,false,false,false,0,false,false,false,false +insomniak/lsb_script,insomniak,Python,false,false,false,0,false,false,false,false +patram1121/acfml,patram1121,PHP,false,false,false,0,false,false,false,false +cpteam/libs/strict,cpteam,PHP,false,false,false,0,false,false,false,false +therick96/Reclutamieno_y_Seleccion,therick96,Python,false,false,false,0,false,false,false,false +Piterden/streams-platform-js,Piterden,JavaScript,false,false,false,0,false,false,false,false +pyro-plus/exporter-extension,pyro-plus,PHP,false,false,false,0,false,false,false,false +pyro-plus/page_post_parent-extension,pyro-plus,PHP,false,false,false,0,false,false,false,false +LucasNabolotnyj/JOGL,LucasNabolotnyj,Java,false,false,false,0,false,false,false,false +aakansha/face_detection,aakansha,Python,false,false,false,0,false,false,false,false +pyphihue/pyphihue,pyphihue,Python,false,false,false,0,false,false,false,false +cosban/nebula,cosban,Go,true,false,false,2,false,true,false,false +mikeakohn/wonko,mikeakohn,C,false,false,false,0,false,false,false,false +blade/scrctrl,blade,Perl,false,false,false,0,false,false,false,false +nnchien/react-native-practices,nnchien,,false,false,false,0,false,false,false,false +xurong/openwrt-zte-files,xurong,Shell,false,false,false,0,false,false,false,false +codingmadeeasy/OpenGLMadeEasy,codingmadeeasy,C++,false,false,false,0,false,false,false,false +0xDiddi/Rainbow-School,0xDiddi,,false,false,false,0,false,false,false,false +inspircd/inspircd-extras,inspircd,C++,false,false,false,0,false,false,false,false +buzzcode/Bamboo-Veracode,buzzcode,Java,false,false,true,0,false,false,false,false +amenezes/ansible-gitlab-ci-multi-runner,amenezes,Shell,true,false,false,1,false,false,false,false +chusiang/helloworld.ansible.role,chusiang,Makefile,true,false,false,1,false,true,false,false +thengOS/thengos.gitlab.io,thengOS,CSS,true,false,false,1,false,false,true,false +Slashu/java_1,Slashu,Java,false,false,false,0,false,false,false,false +mosaic-mfg/palette-2-plugin,mosaic-mfg,Python,false,true,false,0,false,false,false,false +mschlueter/laravel-backend,mschlueter,PHP,false,false,false,0,false,false,false,false +cpfr/CriticalMission.gitlab.io,cpfr,CSS,true,false,false,1,false,false,true,false +yahya-abou-imran/debian-custom,yahya-abou-imran,Shell,false,false,false,0,false,false,false,false +demo-clusters/i2p.online,demo-clusters,,true,false,false,2,false,false,true,false +Zatherz/dcr,Zatherz,Crystal,true,false,false,1,false,true,false,false +clubinferno/clubinferno,clubinferno,PHP,false,false,false,0,false,false,false,false +meyacine/formation-restful,meyacine,CSS,false,false,false,0,false,false,false,false +johncf/backblaze-plots,johncf,,false,false,false,0,false,false,false,false +truchas/pececillo,truchas,Fortran,false,false,false,0,false,false,false,false +kazbeel/geckobugtraker,kazbeel,Java,false,false,true,0,false,false,false,false +mschlueter/laravel-force-https,mschlueter,PHP,false,false,false,0,false,false,false,false +druidgreeneyes/rivet-core.java,druidgreeneyes,Java,true,false,true,2,true,true,false,false +nazarmx/mega,nazarmx,Rust,true,false,false,1,false,true,false,false +gitlab-org/rubocop-gitlab-security,gitlab-org,Ruby,true,false,false,1,false,true,false,false +StevenPG/DockerTagManager,StevenPG,Java,false,false,true,0,false,false,false,false +nutrinowinc/firebase-react,nutrinowinc,JavaScript,false,false,false,0,false,false,false,false +Displeased/online-auction-for-rialto-company,Displeased,JavaScript,false,false,false,0,false,false,false,false +manuee/drupal-gnome-shell-extension,manuee,JavaScript,false,false,false,0,false,false,false,false +bertalan-verebelyi/cat-lumen,bertalan-verebelyi,PHP,false,false,false,0,false,false,false,false +kazuakasu/Rising_Tide_Chatbot_Prototype,kazuakasu,Python,false,false,false,0,false,false,false,false +rifqii14/ukom_2017,rifqii14,JavaScript,false,false,false,0,false,false,false,false +guedel87/microtest,guedel87,PHP,false,false,false,0,false,false,false,false +Xharos/Commons,Xharos,Java,false,false,false,0,false,false,false,false +ajwoo/cherry-run,ajwoo,Java,false,false,false,0,false,false,false,false +Lucas_W/Engenharia_Cascata_Terraplanagem,Lucas_W,,false,false,false,0,false,false,false,false +biabeuting/Tra,biabeuting,,false,false,false,0,false,false,false,false +karisch/docker/terraform,karisch,,true,false,false,3,true,true,false,true +angelhack-oboseen/reporter-android,angelhack-oboseen,Java,false,false,false,0,false,false,false,false +ifakara/dynamica-android,ifakara,Java,false,false,false,0,false,false,false,false +igazine/as3-cache,igazine,HTML,false,false,false,0,false,false,false,false +javierfraga/schaum-cpp,javierfraga,C++,false,false,false,0,false,false,false,false +joanq/insdebauto,joanq,Shell,false,false,false,0,false,false,false,false +justin-lau/docker-magento2,justin-lau,Shell,false,false,false,0,false,false,false,false +hipparchus2000/dropletWww,hipparchus2000,CSS,false,false,false,0,false,false,false,false +tmendes/FoodScaleDroid,tmendes,Java,false,false,false,0,false,false,false,false +lucasdantas/alunos-spring,lucasdantas,Java,false,false,true,0,false,false,false,false +sakis/check-your-isp,sakis,JavaScript,false,false,false,0,false,false,false,false +Free_Geek_PDX/Shell_Scripting,Free_Geek_PDX,HTML,false,false,false,0,false,false,false,false +TheRingmaster/groundzero_repo,TheRingmaster,,false,false,false,0,false,false,false,false +Punknoodles/ruby-ces,Punknoodles,Ruby,false,false,false,0,false,false,false,false +mahham/ctf,mahham,PostScript,false,false,false,0,false,false,false,false +duvanj/tuzte,duvanj,HTML,false,false,false,0,false,false,false,false +rafecile/ejercicioMinisterio,rafecile,,false,false,false,0,false,false,false,false +Bushan/kubernetes-gloud-windows,Bushan,,false,false,false,0,false,false,false,false +alexjane19/software_engineering,alexjane19,PHP,false,false,false,0,false,false,false,false +fweimer/debsecan,fweimer,Python,false,false,false,0,false,false,false,false +cambrian/nnet,cambrian,Java,false,false,false,0,false,false,false,false +ztshandongPublic/spring-boot-mybatis-read-write-dbcore,ztshandongPublic,Java,false,false,true,0,false,false,false,false +retribution-exposed/PORGameSource,retribution-exposed,Python,false,false,false,0,false,false,false,false +cosme/ai_driver,cosme,JavaScript,true,false,false,1,false,false,true,false +leschap/VieAssociativeDouai,leschap,TypeScript,false,false,false,0,false,false,false,false +franjsaenz/pogogyms,franjsaenz,Java,false,false,true,0,false,false,false,false +keith.maxwell/cattle,keith.maxwell,Shell,false,false,false,0,false,false,false,false +broniar/OpenFOAM-project,broniar,,false,false,false,0,false,false,false,false +acisternino/terraform-cluster,acisternino,Python,false,false,false,0,false,false,false,false +Rdatatable/data.table,Rdatatable,C,true,false,false,5,true,true,true,false +dolani/learningOOP,dolani,C#,false,false,false,0,false,false,false,false +salfter/nvoc-nicehash-switcher,salfter,Python,false,false,false,0,false,false,false,false +shallawell/aws-create-vpc-ec2,shallawell,Shell,false,false,false,0,false,false,false,false +Trev32198/TreeTransfer,Trev32198,Python,false,false,false,0,false,false,false,false +Yuri_yy/yuri_gmf,Yuri_yy,,true,false,false,2,false,true,true,false +web-novel/syosetsu,web-novel,Python,false,false,false,0,false,false,false,false +mk990/dotfiles,mk990,Vimscript,false,false,false,0,false,false,false,false +creosteanu/lambda-data-collection,creosteanu,TypeScript,true,false,false,1,false,true,false,false +wwcodemanila/WWCodeManila-Ruby.RubyOnRails,wwcodemanila,HTML,false,false,false,0,false,false,false,false +hexagon-soft/public/shop-demo,hexagon-soft,Java,true,false,true,1,false,true,false,false +gabrielperes97/Rasterization,gabrielperes97,Kotlin,false,false,false,0,false,false,false,false +MinhTruong/DemoSocketIO,MinhTruong,Swift,false,false,false,0,false,false,false,false +etiosa/CoreJava,etiosa,Java,false,false,false,0,false,false,false,false +MinhTruong/DemoTouchID,MinhTruong,Objective-C,false,false,false,0,false,false,false,false +KrouDemy/PP-BTB-Class/Spring-RESTful-Web-Service,KrouDemy,Java,false,false,true,0,false,false,false,false +giorgioazzinnaro/giorgioazzinnaro.gitlab.io,giorgioazzinnaro,CSS,true,false,false,1,false,true,false,false +Tkkg1994/BatStock-Rom,Tkkg1994,,false,false,false,0,false,false,false,false +jaborla/endodonticslimited_net,jaborla,HTML,false,false,false,0,false,false,false,false +kabikaj/freeling2annis,kabikaj,Python,false,false,false,0,false,false,false,false +slcu/teamHJ/max/old_stuff,slcu,Python,false,false,false,0,false,false,false,false +MinhTruong/DemoFirebaseAuth,MinhTruong,Swift,false,false,false,0,false,false,false,false +daily-five/framework,daily-five,PHP,true,false,false,1,false,true,false,false +nathanfaucett/rs-bezier2,nathanfaucett,Rust,true,false,false,1,false,true,false,false +nathanfaucett/rs-data_structure_traits,nathanfaucett,Rust,true,false,false,1,false,true,false,false +nathanfaucett/rs-lexer,nathanfaucett,Rust,true,false,false,1,false,true,false,false +sebiG/cuRRay,sebiG,HTML,false,false,false,0,false,false,false,false +WOMBAK/slack-jobs-bot,WOMBAK,JavaScript,false,false,false,0,false,false,false,false +faridj/f_logos,faridj,,false,false,false,0,false,false,false,false +Kadrx/python-code,Kadrx,Python,false,false,false,0,false,false,false,false +photog.social/mastodon_bot,photog.social,Python,false,true,false,0,false,false,false,false +co23/login,co23,PHP,false,false,false,0,false,false,false,false +kts-umd/enpm687,kts-umd,Python,false,false,false,0,false,false,false,false +joshlambert/demo-be,joshlambert,Java,true,false,true,5,true,true,true,false +joshlambert/demo-app,joshlambert,Java,true,false,true,5,true,true,true,false +ATFreelancer/ERP,ATFreelancer,Vue,false,false,false,0,false,false,false,false +dhole/go-olm,dhole,Go,false,false,false,0,false,false,false,false +smileczh/itcast,smileczh,HTML,false,false,false,0,false,false,false,false +ibamibrahim0/design-pattern-explained,ibamibrahim0,,false,false,false,0,false,false,false,false +slcu/teamHJ/max/automated_phenotyping,slcu,Python,false,false,false,0,false,false,false,false +mobilnikkg/android-sdk,mobilnikkg,Java,true,false,false,1,false,true,false,false +fej/inkscape-mobile-export,fej,Python,false,false,false,0,false,false,false,false +Dberd/my-super-project,Dberd,Python,false,false,false,0,false,false,false,false +returnx/Qhttpc,returnx,C++,false,false,false,0,false,false,false,false +hardcorenarrativist/narrows,hardcorenarrativist,Elm,false,false,false,0,false,false,false,false +max.selivanov/video-rental-store,max.selivanov,Java,false,false,true,0,false,false,false,false +brushtal.es/brushtales-app,brushtal.es,CoffeeScript,false,false,false,0,false,false,false,false +lizhiyang/ImoocMall,lizhiyang,CSS,false,false,false,0,false,false,false,false +jackclark/angular,jackclark,TypeScript,false,false,false,0,false,false,false,false +kakicoro2/rpl-news,kakicoro2,HTML,false,false,false,0,false,false,false,false +cglotr/mj-order-tracking-app,cglotr,Ruby,false,false,false,0,false,false,false,false +QForm/Subroutines,QForm,Lua,false,false,false,0,false,false,false,false +cediddi/FG-15_dspec,cediddi,Python,false,true,false,0,false,false,false,false +robeleon/tarea2,robeleon,Java,false,false,false,0,false,false,false,false +redsleeve/npm-kit,redsleeve,CSS,false,false,false,0,false,false,false,false +grahamc/mac-nix-multi-user,grahamc,HTML,true,false,false,1,false,false,true,false +heliujie/wxxcx-douban,heliujie,JavaScript,false,false,false,0,false,false,false,false +tocsinde/videoshop,tocsinde,Java,false,false,true,0,false,false,false,false +gitlab-org/cross-browser-testing,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +burke-software/nativescript-libsodium,burke-software,TypeScript,false,false,false,0,false,false,false,false +dasnoo.official/arsocket,dasnoo.official,TypeScript,false,false,false,0,false,false,false,false +anoneko/japari-parkman,anoneko,JavaScript,true,false,false,1,false,false,true,false +exadra37-learning/security/all-i-know-about-https,exadra37-learning,,false,false,false,0,false,false,false,false +cmbaughman/field_weight,cmbaughman,PHP,false,false,false,0,false,false,false,false +damonh/documentacion,damonh,,false,false,false,0,false,false,false,false +AkbarAlam/StockPricePrediction,AkbarAlam,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/asp-net-test,TomasHubelbauer,C#,true,false,false,1,false,true,false,false +tampe/stis-parser,tampe,Scheme,false,false,false,0,false,false,false,false +rawsec/Rawsec-website,rawsec,CSS,true,false,false,2,false,true,true,false +marmyshev/openlp,marmyshev,Python,false,false,false,0,false,false,false,false +marmyshev/openlp-packaging,marmyshev,Python,false,false,false,0,false,false,false,false +czubehead/bootstrap-4-forms,czubehead,PHP,false,false,false,0,false,false,false,false +mujeebcpy/xml-for-keralagram,mujeebcpy,,false,false,false,0,false,false,false,false +Phundrak/brainfuck-interprete-and-compiler,Phundrak,Assembly,false,false,false,0,false,false,false,false +TH3LASTLINE/plugin_dekonp,TH3LASTLINE,C++,false,false,false,0,false,false,false,false +TH3LASTLINE/plugin_ams,TH3LASTLINE,C++,false,false,false,0,false,false,false,false +TH3LASTLINE/plugin_ams_event,TH3LASTLINE,C++,false,false,false,0,false,false,false,false +dirn/dotfiles,dirn,Vimscript,false,false,false,0,false,false,false,false +cip-playground/linux-cip-cyclonev,cip-playground,C,false,false,false,0,false,false,false,false +Ryota1234/BGP-PIC,Ryota1234,,false,false,false,0,false,false,false,false +rdurham1007/pstools,rdurham1007,PowerShell,false,false,false,0,false,false,false,false +achkatabg/BlackSound,achkatabg,C#,false,false,false,0,false,false,false,false +nanotrix/ntx-js,nanotrix,JavaScript,false,false,false,0,false,false,false,false +EclectickMediaSolutions/SignLightup,EclectickMediaSolutions,Python,false,true,false,0,false,false,false,false +comzeradd/vuejs-spa,comzeradd,Vue,true,false,false,1,false,false,true,false +ikechukwu_kalu/fun-numbers,ikechukwu_kalu,JavaScript,false,false,false,0,false,false,false,false +durmiun/List-Emails-Chrome-Extension,durmiun,JavaScript,false,false,false,0,false,false,false,false +Bitergia/c/OpenDayLight/reports,Bitergia,,false,false,false,0,false,false,false,false +reskwer/blank,reskwer,JavaScript,false,false,false,0,false,false,false,false +gilgil/doc,gilgil,,false,false,false,0,false,false,false,false +r2robotics/r2robotics_strategy,r2robotics,Python,false,false,false,0,false,false,false,false +joyeusenoelle/api-example-django,joyeusenoelle,Python,false,true,false,0,false,false,false,false +r2robotics/r2robotics_control,r2robotics,C++,false,false,false,0,false,false,false,false +jubianchi/intercom2dw,jubianchi,JavaScript,false,false,false,0,false,false,false,false +r2robotics/r2robotics_trajectory,r2robotics,C++,false,false,false,0,false,false,false,false +shockrahwow/twobitbot,shockrahwow,Python,false,false,false,0,false,false,false,false +morganrallen/OSHChip_BLED,morganrallen,C,true,false,false,1,false,true,false,false +massimo99881/my-project-1,massimo99881,,false,false,false,0,false,false,false,false +tjnikkila/trading-goods-by-q-learning,tjnikkila,Python,false,true,false,0,false,false,false,false +OvGU-ESS/eLab_v2/lia_script,OvGU-ESS,Elm,false,false,false,0,false,false,false,false +AQuadro/AtacSimulator,AQuadro,HTML,true,false,false,1,false,true,false,false +DLTT/Project-Matrimony,DLTT,CSS,false,false,false,0,false,false,false,false +Molcas/doc,Molcas,TeX,true,false,false,2,true,false,false,false +hitolv4/g_empleo,hitolv4,PHP,false,false,false,0,false,false,false,false +FalkF/Minesweeper,FalkF,AutoIt,false,false,false,0,false,false,false,false +multpix/vue_drupal,multpix,PHP,false,false,false,0,false,false,false,false +tobyfoord/rancher-cli,tobyfoord,,true,false,false,2,true,false,false,true +ercom/dct4git,ercom,Shell,false,false,false,0,false,false,false,false +mindig.marton/ha-nadtcp,mindig.marton,Python,false,false,false,0,false,false,false,false +topicsky/fitcore,topicsky,Java,false,false,false,0,false,false,false,false +westerjn/awesomesauce,westerjn,HTML,true,false,false,1,false,false,true,false +LorDOniX/skelet,LorDOniX,JavaScript,false,false,false,0,false,false,false,false +eseiler/DaisySuite,eseiler,Python,false,false,false,0,false,false,false,false +aminkt/normilizer,aminkt,PHP,false,false,false,0,false,false,false,false +hafiyyan94/MyUI,hafiyyan94,Java,true,false,false,1,false,true,false,false +lavendor/nodejs-lavendor,lavendor,,false,false,false,0,false,false,false,false +datenschubse/talend_loads,datenschubse,PLpgSQL,false,false,false,0,false,false,false,false +adrian.kozlowski/ircbot,adrian.kozlowski,Java,true,false,true,3,true,true,true,false +YamilaCuestas/eventpy,YamilaCuestas,JavaScript,false,false,false,0,false,false,false,false +cymbalchecker/cymbalchecker,cymbalchecker,TypeScript,false,false,false,0,false,false,false,false +sandoval.matos/elonitive,sandoval.matos,Ruby,false,false,false,0,false,false,false,false +pascalhexagon/pascalhexagon,pascalhexagon,Pascal,false,false,false,0,false,false,false,false +tarantulaaha/sun,tarantulaaha,PHP,false,false,false,0,false,false,false,false +deadroot/osint_tools,deadroot,HTML,false,false,false,0,false,false,false,false +lansharkconsulting/django/lanshark-helpdesk,lansharkconsulting,JavaScript,false,false,false,0,false,false,false,false +mtchavez/ex_cc_validation,mtchavez,Elixir,true,false,false,2,false,true,false,false +kimlab/MD_toolkit,kimlab,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/blueprint,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/check-domains-py,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/django-ansible,lansharkconsulting,,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-brutebuster,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/django/django-dumpdb,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/django/django-fabric,lansharkconsulting,,false,false,false,0,false,false,false,false +lansharkconsulting/django/django-scaffolder,lansharkconsulting,HTML,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/djanitor,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/git-repo-updater,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/elk-ansible,lansharkconsulting,,false,false,false,0,false,false,false,false +lansharkconsulting/public/googlecalendarsync,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/public/Lector,lansharkconsulting,Python,false,true,false,0,false,false,false,false +FrederikBrueckner/Processing,FrederikBrueckner,JavaScript,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/ls-ansible-django-stack,lansharkconsulting,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-admin-import,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/ls-django-ansible-setup,lansharkconsulting,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-authtools,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-email-auth,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-user-accounts,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-user-profiles,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/ls-mysql-postgresql-converter,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/public/ls-photosorter,lansharkconsulting,Python,false,true,false,0,false,false,false,false +creare-com/tabsint,creare-com,JavaScript,true,false,false,1,false,true,false,false +lansharkconsulting/sysadmin/ls-vagrant-django-cookie-dough,lansharkconsulting,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/ls-vagrant-ubuntu-xenial-64,lansharkconsulting,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/makehomedir,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/py-mysql2pgsql,lansharkconsulting,Python,false,true,false,0,false,false,false,false +lansharkconsulting/sysadmin/squeaky-wheel,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/spinup,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/stack,lansharkconsulting,HCL,false,false,false,0,false,false,false,false +mpv-ipc/mpvc,mpv-ipc,Rust,false,false,false,0,false,false,false,false +mpv-ipc/mpvipc,mpv-ipc,Rust,false,false,false,0,false,false,false,false +micro-org/devops,micro-org,,false,false,false,0,false,false,false,false +Ameliorate/Bigguburaza,Ameliorate,Python,false,false,false,0,false,false,false,false +ostrebler/finder,ostrebler,JavaScript,false,false,false,0,false,false,false,false +vikas17a/terraform-example,vikas17a,HCL,false,false,false,0,false,false,false,false +topicsky/fitcorejdk,topicsky,Java,false,false,false,0,false,false,false,false +sigscale/ocs,sigscale,Erlang,true,false,false,3,true,true,true,false +lycis/emma,lycis,C,false,false,false,0,false,false,false,false +RKIBioinformaticsPipelines/qc_map_var,RKIBioinformaticsPipelines,Python,false,false,false,0,false,false,false,false +YBinnenweg/telegram-lawnchair-mirror,YBinnenweg,Python,false,false,false,0,false,false,false,false +zanny/hyper-openid,zanny,Rust,false,false,false,0,false,false,false,false +therick96/Ingresos,therick96,Python,false,false,false,0,false,false,false,false +pascalhexagon/pascalhexagon-data,pascalhexagon,,false,false,false,0,false,false,false,false +megahurts/ztex-tests,megahurts,JavaScript,false,false,false,0,false,false,false,false +TC01/ookcaml,TC01,OCaml,false,false,false,0,false,false,false,false +mmclaughlin/helloworld-cpp,mmclaughlin,Shell,true,false,false,1,true,false,false,false +topicsky/fitcoretranslate,topicsky,,false,false,false,0,false,false,false,false +oshw-powerpc-notebook/freescale.com-ppc-u-boot,oshw-powerpc-notebook,C,false,false,false,0,false,false,false,false +dt/dotfiles,dt,Shell,false,false,false,0,false,false,false,false +bsarda/docker-puppetserver,bsarda,Shell,false,false,false,0,false,false,false,false +bsarda/docker-supervisor,bsarda,Shell,false,false,false,0,false,false,false,false +bsarda/docker-puppetclient,bsarda,Shell,false,false,false,0,false,false,false,false +bsarda/docker-puppetdb,bsarda,Shell,false,false,false,0,false,false,false,false +bsarda/docker-phpipam,bsarda,Shell,false,false,false,0,false,false,false,false +tecnos/material-icons-base64,tecnos,JavaScript,true,false,false,1,false,false,true,false +ralt/httpickle,ralt,CommonLisp,false,false,false,0,false,false,false,false +Anti_Alias/raytracer,Anti_Alias,Scala,false,false,false,0,false,false,false,false +stenote/nanomsg,stenote,JavaScript,false,false,false,0,false,false,false,false +tifredfr/debserver,tifredfr,Shell,true,false,false,1,false,true,false,false +madddie/my-toolkit,madddie,C++,false,false,false,0,false,false,false,false +curl-services-public/spring-security-jwt,curl-services-public,Java,false,false,false,0,false,false,false,false +digimon3d/Digimon-3D,digimon3d,HTML,false,false,false,0,false,false,false,false +fhuitelec/slides-template,fhuitelec,HTML,true,false,false,1,false,false,true,false +HiSchoolProject/BackSchool,HiSchoolProject,Python,false,true,false,0,false,false,false,false +DomDiiDom/TreeHelper,DomDiiDom,Java,false,false,false,0,false,false,false,false +nickdonnelly/req,nickdonnelly,Rust,true,false,false,2,false,false,false,false +deployctl/deployctl,deployctl,C,true,false,false,6,true,true,false,true +efnet-moto/efnet-moto.gitlab.io,efnet-moto,Makefile,true,false,false,1,false,true,false,false +LazzyTeam/politsim,LazzyTeam,PHP,true,false,false,1,false,true,false,false +PHD-MDCE/EMMA-Example,PHD-MDCE,Java,false,false,false,0,false,false,false,false +ConorIA/wire-builds,ConorIA,Shell,false,false,false,0,false,false,false,false +barrel/barrel-dev-best-practices,barrel,,false,false,false,0,false,false,false,false +tsomorfaruk/eComerceSite,tsomorfaruk,PHP,false,false,false,0,false,false,false,false +teymoori/sematec_php,teymoori,PHP,false,false,false,0,false,false,false,false +jgullickson/offgrid,jgullickson,OpenSCAD,false,false,false,0,false,false,false,false +gerardbalaoro/bibliolite,gerardbalaoro,JavaScript,false,false,false,0,false,false,false,false +brianegan/flutter_mvi_counter,brianegan,Dart,false,false,false,0,false,false,false,false +nicstrisc/COPE,nicstrisc,Matlab,false,false,false,0,false,false,false,false +rex-yue-wu/ISI-PPT-Dataset,rex-yue-wu,JupyterNotebook,false,false,false,0,false,false,false,false +alexbuzzbee/Ignition,alexbuzzbee,,false,false,false,0,false,false,false,false +davidzheng/DavidAndroidProjectTools,davidzheng,Java,false,false,false,0,false,false,false,false +davidzheng/DAndroidUtils,davidzheng,Java,false,false,false,0,false,false,false,false +nobodyinperson/python3-numericalmodel,nobodyinperson,Python,true,false,false,3,false,true,true,false +saprykingerman/flutter-docker,saprykingerman,,true,false,false,1,false,true,false,false +kalak/pepper_conjugation_generator,kalak,Python,false,false,false,0,false,false,false,false +terramias/graph-routing,terramias,JavaScript,true,false,false,2,false,true,true,false +pedrohjordao/rust-pbrt,pedrohjordao,Rust,true,false,false,2,true,true,false,false +radamich/tvTabBar,radamich,JavaScript,false,false,false,0,false,false,false,false +bunto/bunto,bunto,Ruby,false,false,false,0,false,false,false,false +Apostolof/thmmyDarkTheme,Apostolof,CSS,false,false,false,0,false,false,false,false +jbellic/iha-risk-app,jbellic,CSS,false,false,false,0,false,false,false,false +jbellic/iha-risk-backend,jbellic,JavaScript,false,false,false,0,false,false,false,false +noemie-kerroux/node-template-selector,noemie-kerroux,PHP,false,false,false,0,false,false,false,false +IntelliMedia/Flare,IntelliMedia,C#,false,false,false,0,false,false,false,false +eduardomezencio/mif32,eduardomezencio,C,false,false,false,0,false,false,false,false +rafinha.unix/kiwi,rafinha.unix,Go,false,false,false,0,false,false,false,false +Zachu/LibreWolf,Zachu,PHP,false,false,false,0,false,false,false,false +Zachu/LiquiHilights,Zachu,JavaScript,false,false,false,0,false,false,false,false +PentagonalDevelopment/Project-Gudang,PentagonalDevelopment,PHP,false,false,false,0,false,false,false,false +agriconnect/tools/docker-cross-compiler-armhf-ubuntu-xenial,agriconnect,,false,false,false,0,false,false,false,false +leonelsoriano3/projecto-peru,leonelsoriano3,JavaScript,false,false,false,0,false,false,false,false +dzt124/004,dzt124,,false,false,false,0,false,false,false,false +MaximusJuicious/FYP,MaximusJuicious,C,false,false,false,0,false,false,false,false +topicsky/fitcorebate,topicsky,Java,false,false,true,0,false,false,false,false +tabi/tabi-app,tabi,C#,false,false,false,0,false,false,false,false +abhijitnavale/watermark_photos,abhijitnavale,Shell,false,false,false,0,false,false,false,false +alelec/gitlab-tags-to-pip-index,alelec,Python,true,false,false,2,false,false,true,false +bkwon-awesome-group/ansible-elk,bkwon-awesome-group,,false,false,false,0,false,false,false,false +ezdoo/odoo,ezdoo,,false,false,false,0,false,false,false,false +bersace/libnotify-proxy,bersace,Python,false,false,false,0,false,false,false,false +greenmonkey6/dotfiles,greenmonkey6,Shell,false,false,false,0,false,false,false,false +mukeshmandiwal/angular-firbase-grunt-starterPack,mukeshmandiwal,JavaScript,false,false,false,0,false,false,false,false +Tkkg1994/CSC_Selection-S8,Tkkg1994,Shell,false,false,false,0,false,false,false,false +victorkwak/MLClass,victorkwak,HTML,false,false,false,0,false,false,false,false +joniogerg/RHMarioParty,joniogerg,Java,true,false,false,1,false,false,true,false +m3hrantorki/Django_React,m3hrantorki,JavaScript,false,false,false,0,false,false,false,false +wolcen/vi4py,wolcen,,false,false,false,0,false,false,false,false +isciences/wsim/wsim,isciences,R,true,false,false,3,true,true,false,true +JefersonSilva/Embaralhado,JefersonSilva,Java,false,false,false,0,false,false,false,false +Tunisiajavascripters/CTF,Tunisiajavascripters,JavaScript,false,false,false,0,false,false,false,false +robin-good/docker-build-image,robin-good,,true,false,false,1,true,false,false,false +wanghailin68/audioLabel,wanghailin68,PHP,false,false,false,0,false,false,false,false +stevelr/nuxeo-docker,stevelr,Shell,false,false,false,0,false,false,false,false +kotmonstr/kotmonstr.ru,kotmonstr,JavaScript,true,false,false,1,false,true,false,false +beboobailey/ToastyBot,beboobailey,Python,false,false,false,0,false,false,false,false +rocket_launcher/jekyll,rocket_launcher,Ruby,true,false,false,2,false,true,true,false +Accensus/Vengeance,Accensus,,false,false,false,0,false,false,false,false +ttpcodes/Music.php,ttpcodes,PHP,false,false,false,0,false,false,false,false +GamingCommunityCentral/GCCGlobalBans-Web,GamingCommunityCentral,PHP,false,false,false,0,false,false,false,false +UOYO/DestopB,UOYO,Swift,false,false,false,0,false,false,false,false +hipparchus2000/Shake_Rest,hipparchus2000,JavaScript,false,false,false,0,false,false,false,false +jukey/raspilms,jukey,,false,false,false,0,false,false,false,false +Asisster/odoo10_multi_store,Asisster,Python,false,false,false,0,false,false,false,false +dasch8/angular-ci,dasch8,,true,false,false,1,true,false,false,false +mukeshmandiwal/mobileUi,mukeshmandiwal,CSS,false,false,false,0,false,false,false,false +ysb33rOrg/packer-gradle-plugin,ysb33rOrg,Groovy,true,false,false,3,true,true,false,true +gitlab-cookbooks/gitlab_dns,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true +Jedimaster0/nagios-mattermost-webhook,Jedimaster0,Shell,false,false,false,0,false,false,false,false +harshdvaid24/Hrs-Projects,harshdvaid24,,false,false,false,0,false,false,false,false +Evil-fox/caipiao_game,Evil-fox,Java,false,false,false,0,false,false,false,false +Pascal3366/NextKore-OP3,Pascal3366,,false,false,false,0,false,false,false,false +davidlaym/hackaton-DDP,davidlaym,JavaScript,false,false,false,0,false,false,false,false +CS-Translation/ComputationAndStateMachines,CS-Translation,,false,false,false,0,false,false,false,false +stemid/siptrack-backend,stemid,,false,false,false,0,false,false,false,false +stemid/siptrack-frontend,stemid,Shell,false,false,false,0,false,false,false,false +ysb33rOrg/cmake-gradle-plugin,ysb33rOrg,,false,false,false,0,false,false,false,false +hooksie1/ansible-prometheus,hooksie1,,true,false,false,1,false,true,false,false +LTTaylor/bet,LTTaylor,JavaScript,true,false,false,1,false,false,true,false +weznon/controllerIDEK,weznon,Haskell,false,false,false,0,false,false,false,false +Learnia/LearniaWeb,Learnia,JavaScript,false,false,false,0,false,false,false,false +jablonka-adrian/Abandoned_Motel_Level_Design,jablonka-adrian,,false,false,false,0,false,false,false,false +superko/multyband,superko,JavaScript,false,false,false,0,false,false,false,false +janecekpetr/embedded-postgresql-maven-plugin,janecekpetr,Java,false,false,true,0,false,false,false,false +open-nodejs-projects/manco-capac,open-nodejs-projects,JavaScript,false,false,false,0,false,false,false,false +Zachu/GizmoAPI,Zachu,PHP,false,false,false,0,false,false,false,false +XMasud/ns3-wormhole-attack,XMasud,,false,false,false,0,false,false,false,false +xneomac/cmake_config_files,xneomac,C,false,false,false,0,false,false,false,false +zhikariz/kmm,zhikariz,JavaScript,false,false,false,0,false,false,false,false +kornelski/autobatch,kornelski,JavaScript,true,false,false,1,false,true,false,false +Dardo/RPF_Persistency,Dardo,SQF,false,false,false,0,false,false,false,false +Dardo/DumpsterModule,Dardo,C,false,false,false,0,false,false,false,false +allaert/CPT,allaert,Python,false,false,false,0,false,false,false,false +alimakki/streisand,alimakki,Shell,false,false,false,0,false,false,false,false +cristianvitortrucco/docker-git-nginx,cristianvitortrucco,HTML,true,false,false,2,true,false,true,false +deltaxflux/ash,deltaxflux,C++,false,false,false,0,false,false,false,false +neaconnect/neaconnect17,neaconnect,C#,false,false,false,0,false,false,false,false +Palaton/palaton,Palaton,Python,false,false,false,0,false,false,false,false +opendevise-projects/opendevise-site-generator-express,opendevise-projects,JavaScript,true,false,false,1,false,true,false,false +x-doggy/numerical-methods,x-doggy,C++,false,false,false,0,false,false,false,false +JayneMorais/WEBII_N2,JayneMorais,PHP,false,false,false,0,false,false,false,false +stavros/panoptes,stavros,Rust,false,false,false,0,false,false,false,false +seen/angular/seen-core,seen,JavaScript,true,false,false,2,false,true,true,false +seen/test/frisby-core,seen,JavaScript,true,false,false,2,false,true,true,false +pipodi93/italiansubsmobilegitlab,pipodi93,Java,false,false,false,0,false,false,false,false +itayronen/itay-behavior,itayronen,TypeScript,false,false,false,0,false,false,false,false +anpopa/macDLT,anpopa,C,false,false,false,0,false,false,false,false +lansharkconsulting/frontend/vue-chat,lansharkconsulting,Vue,false,false,false,0,false,false,false,false +lappis-unb/projects/fga/portal/themes,lappis-unb,CSS,false,false,false,0,false,false,false,false +fanshenium/site-template-env,fanshenium,JavaScript,false,false,false,0,false,false,false,false +lansharkconsulting/sysadmin/heroku-flower,lansharkconsulting,Python,false,true,false,0,false,false,false,false +apertus/beta-software,apertus,VHDL,false,false,false,0,false,false,false,false +joaopluis/billboard-generator,joaopluis,JavaScript,false,false,false,0,false,false,false,false +petelawler/LiBrew,petelawler,Python,false,true,false,0,false,false,false,false +gogu/taskmanager,gogu,PHP,false,false,false,0,false,false,false,false +MadaniStudio/AyoShalat-linebot,MadaniStudio,Java,false,false,false,0,false,false,false,false +b-rowlingson/latex_pub_list,b-rowlingson,TeX,false,false,false,0,false,false,false,false +fanshenium/site-template-django,fanshenium,Python,false,true,false,0,false,false,false,false +jsalazardev/pruebas,jsalazardev,,false,false,false,0,false,false,false,false +chusiang/sandbox,chusiang,JupyterNotebook,false,false,false,0,false,false,false,false +bodhidogma/rc_settings,bodhidogma,,false,false,false,0,false,false,false,false +jonez73/anycubic_kossel_linear_plus,jonez73,C,false,false,false,0,false,false,false,false +flaxandteal/commandment,flaxandteal,Python,true,true,false,4,true,true,true,true +gitlab-org/gitter/styleguide,gitlab-org,HTML,false,false,false,0,false,false,false,false +4151/WebExt/ReStyle,4151,JavaScript,false,false,false,0,false,false,false,false +Marwein/vuejs-auth,Marwein,CSS,false,false,false,0,false,false,false,false +Sirfanas/rsacrypt,Sirfanas,Python,false,false,false,0,false,false,false,false +JAMstack/cobalt,JAMstack,HTML,true,false,false,1,false,true,false,false +vklquevs/gx-idris,vklquevs,Shell,false,false,false,0,false,false,false,false +nickkupriyanov/health,nickkupriyanov,TypeScript,false,false,false,0,false,false,false,false +halfcab123/camtradr-open,halfcab123,JavaScript,false,false,false,0,false,false,false,false +tegarraharditya/BizzyQATest,tegarraharditya,,false,false,false,0,false,false,false,false +dbnZA/Jita,dbnZA,C#,true,false,false,4,true,true,true,false +certik/ci-images,certik,Shell,true,false,false,1,true,false,false,false +voidspiral/HFA-text,voidspiral,HTML,false,false,false,0,false,false,false,false +FlumeAutomation/GRBL_Server,FlumeAutomation,Python,false,true,false,0,false,false,false,false +pseudo_sudo/slackbot,pseudo_sudo,JavaScript,false,false,false,0,false,false,false,false +yueguangmozhou/myweb,yueguangmozhou,,false,false,false,0,false,false,false,false +Shimwell/install_scripts,Shimwell,Shell,false,false,false,0,false,false,false,false +cosepi/tutorial,cosepi,HTML,false,false,false,0,false,false,false,false +livro/puppet,livro,Puppet,false,false,false,0,false,false,false,false +JingqingLin/inventoryWithUMG,JingqingLin,,false,false,false,0,false,false,false,false +vsichka/multiconf.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +esilvert/LDJAM_39,esilvert,GDScript,false,false,false,0,false,false,false,false +lorepirri/jekyll-theme-simple-blog,lorepirri,HTML,true,false,false,2,false,true,true,false +jasoncoal/s-pen-sdk,jasoncoal,,false,false,false,0,false,false,false,false +Parvaze/Robiul_Islam_181681_B68_Session3_Git,Parvaze,,false,false,false,0,false,false,false,false +makdalimjr/TTMS,makdalimjr,,false,false,false,0,false,false,false,false +codebook/deep-learning/get-started-tensorflow,codebook,,false,false,false,0,false,false,false,false +baumrock/RockReplacer,baumrock,PHP,false,false,false,0,false,false,false,false +LeeReindeer/Marks,LeeReindeer,,false,false,false,0,false,false,false,false +Tim-S/xtext-archetype,Tim-S,Xtend,false,false,true,0,false,false,false,false +famensaodiseng/learn,famensaodiseng,HTML,false,false,false,0,false,false,false,false +TheJaredWilcurt/battery-app-workshop,TheJaredWilcurt,,false,false,false,0,false,false,false,false +candc/outward/terasys,candc,C++,false,false,false,0,false,false,false,false +guillecaba/DomoApp,guillecaba,Java,false,false,false,0,false,false,false,false +seen/angular/seen-tenant,seen,JavaScript,true,false,false,2,false,true,true,false +xam_me/zoom,xam_me,PHP,false,false,false,0,false,false,false,false +afandiyusuf/base-backend-php,afandiyusuf,PHP,false,false,false,0,false,false,false,false +onr/lyk2017-js,onr,JavaScript,false,false,false,0,false,false,false,false +kyb/build-info-header,kyb,Shell,false,false,false,0,false,false,false,false +GatoProgramador/tester4j,GatoProgramador,Java,false,false,false,0,false,false,false,false +groovy-lang/101-scripts,groovy-lang,Groovy,true,false,false,2,true,false,true,false +unityversity/vrtk_cogswell,unityversity,C#,false,false,false,0,false,false,false,false +adewalegeorge/Vodafone-Iconfont,adewalegeorge,JavaScript,false,false,false,0,false,false,false,false +excluzard.360/trainingJBPM,excluzard.360,Java,false,false,true,0,false,false,false,false +rogeruiz/thelou,rogeruiz,JavaScript,true,false,false,1,false,true,false,false +yadda/arv-webapp,yadda,HTML,false,false,false,0,false,false,false,false +thx8411_j2ee/melodyexporter,thx8411_j2ee,Java,true,false,true,2,false,false,false,false +rasterman7/Cencosud,rasterman7,Python,false,false,false,0,false,false,false,false +MapleShao/Model,MapleShao,Java,false,false,false,0,false,false,false,false +562593188/btc,562593188,Python,false,false,false,0,false,false,false,false +cyberscape/amptweet/amptweet-web,cyberscape,JavaScript,true,false,false,1,false,true,false,false +bmw-lab/NB_IoT_scheduler,bmw-lab,HTML,false,false,false,0,false,false,false,false +k3informatics/broadridge-aug,k3informatics,TypeScript,false,false,false,0,false,false,false,false +edcelfr/SE3103prelim,edcelfr,JavaScript,false,false,false,0,false,false,false,false +NunezG/BombermanUE,NunezG,C++,false,false,false,0,false,false,false,false +gilgil/sum_test,gilgil,C++,false,false,false,0,false,false,false,false +gitlab-examples/cross-project-java/java-frontend,gitlab-examples,Java,true,false,true,5,true,true,true,true +gitlab-examples/cross-project-java/java-lib,gitlab-examples,Java,true,false,true,5,true,true,true,true +Danilomorais/diario-necessario,Danilomorais,TypeScript,false,false,false,0,false,false,false,false +wdeback/2017_MathModMedicine,wdeback,,false,false,false,0,false,false,false,false +arthurrump/csharpforfun,arthurrump,CSS,true,false,false,1,false,true,false,false +fhuitelec-learning/learning-wish-list,fhuitelec-learning,,false,false,false,0,false,false,false,false +teamdistancia/Aurora,teamdistancia,JavaScript,false,false,false,0,false,false,false,false +robit.a/spatsoc,robit.a,R,true,false,false,2,false,true,false,false +teamdistancia/SGMC,teamdistancia,C#,false,false,false,0,false,false,false,false +BalmungSan/docker-example,BalmungSan,PHP,false,false,false,0,false,false,false,false +BalmungSan/goofle,BalmungSan,Scala,false,false,false,0,false,false,false,false +BalmungSan/bookstore,BalmungSan,PHP,false,false,false,0,false,false,false,false +BalmungSan/FaceSecurity,BalmungSan,Java,false,false,false,0,false,false,false,false +hungbv9894/Shop-D2,hungbv9894,PHP,false,false,false,0,false,false,false,false +Cornet-JS/Cornet.JS,Cornet-JS,JavaScript,false,false,false,0,false,false,false,false +Dragma78/graph-extractor,Dragma78,JavaScript,false,false,false,0,false,false,false,false +coupies/android-sdk,coupies,Java,false,false,false,0,false,false,false,false +coupies/ios-sdk,coupies,Objective-C,false,false,false,0,false,false,false,false +h45h74x/testproject_01,h45h74x,,false,false,false,0,false,false,false,false +prettycoldramen/AlexaInnovationChallenge,prettycoldramen,Python,false,true,false,0,false,false,false,false +Slimshadycold/series,Slimshadycold,,false,false,false,0,false,false,false,false +mkleehammer/servant,mkleehammer,Python,false,true,false,0,false,false,false,false +gitmate/open-source/example-setup,gitmate,Shell,false,false,false,0,false,false,false,false +makers-example/Job-Evaluation-Service,makers-example,C#,false,false,false,0,false,false,false,false +makers-example/Job-Evaluation-Web,makers-example,JavaScript,false,false,false,0,false,false,false,false +hoyohoyo15/Intellinator,hoyohoyo15,C++,false,false,false,0,false,false,false,false +rl_projects/eclipseRCP,rl_projects,JavaScript,false,false,false,0,false,false,false,false +vijaiaeroastro/ScrapeForFun,vijaiaeroastro,Python,true,false,false,1,false,true,false,false +sigmavirus24/learn-the-nato-alphabet,sigmavirus24,Python,false,false,false,0,false,false,false,false +cactusfluo/ct_lib,cactusfluo,C,false,false,false,0,false,false,false,false +xuhdev/optimum-shell,xuhdev,Python,true,false,false,1,false,true,false,false +ShiningCrusader/codesmith,ShiningCrusader,CSS,false,false,false,0,false,false,false,false +Pruppet/PrivatePlugins,Pruppet,,false,false,false,0,false,false,false,false +teamdistancia/GuiaContribucion,teamdistancia,,false,false,false,0,false,false,false,false +therick96/biblioteca,therick96,Python,false,false,false,0,false,false,false,false +vovas/japi-airbnb,vovas,Java,false,false,true,0,false,false,false,false +brisan/listatareas,brisan,TypeScript,false,false,false,0,false,false,false,false +rorlork/ook,rorlork,C,false,false,false,0,false,false,false,false +tmaczukin/hanging-droplets-cleaner,tmaczukin,Go,true,false,false,4,false,true,false,true +RoboDragonsFTC/RelicRecovery2017,RoboDragonsFTC,Java,false,false,false,0,false,false,false,false +Johnsoct/lemon-kiwis,Johnsoct,HTML,true,false,false,2,false,true,true,false +paragonmc/Serveur_v1,paragonmc,,false,false,false,0,false,false,false,false +abuhmeedan/phalcon-apis,abuhmeedan,PHP,false,false,false,0,false,false,false,false +McNase/MinecraftOfflineUUID,McNase,Ruby,true,false,false,5,false,false,false,false +qhyloverain/learnpython,qhyloverain,Python,false,false,false,0,false,false,false,false +wolframkriesing/monads-from-scratch-in-js,wolframkriesing,JavaScript,false,false,false,0,false,false,false,false +hathi-social/hathi-mode,hathi-social,,false,false,false,0,false,false,false,false +hathi-social/hathi-web,hathi-social,Python,false,false,false,0,false,false,false,false +justins83/WME-Magic-Public,justins83,,false,false,false,0,false,false,false,false +xliu/ilovegit,xliu,,false,false,false,0,false,false,false,false +ciemat-psa/FMI_common,ciemat-psa,C++,false,false,false,0,false,false,false,false +ciemat-psa/surf,ciemat-psa,C++,false,false,false,0,false,false,false,false +yahyazini/wp-laravel,yahyazini,PHP,false,false,false,0,false,false,false,false +allen01/TPResponderChainDemo,allen01,Objective-C,false,false,false,0,false,false,false,false +teknesystems/ATMOS_old,teknesystems,C++,false,false,false,0,false,false,false,false +snehaldangroshiya/jira-issue-duedate,snehaldangroshiya,,false,false,false,0,false,false,false,false +thesecretmaster/ChatX,thesecretmaster,Ruby,true,false,false,1,false,true,false,false +alti2d/RFCs,alti2d,,false,false,false,0,false,false,false,false +sapidolo/public-jumble,sapidolo,Python,false,false,false,0,false,false,false,false +coppercoder/variant-tap,coppercoder,Java,false,false,false,0,false,false,false,false +sunzhicp3/JS_OC-demo,sunzhicp3,Objective-C,false,false,false,0,false,false,false,false +wxlsh114/VIP,wxlsh114,Python,false,false,false,0,false,false,false,false +node-microservice/microservice,node-microservice,TypeScript,true,false,false,1,false,true,false,false +Miguel-Herrero/React-CarRenting,Miguel-Herrero,JavaScript,false,false,false,0,false,false,false,false +rh-kernel-stqe/python-stqe,rh-kernel-stqe,Python,true,false,false,1,false,true,false,false +buni/kumbizetu-backend-frontend,buni,PHP,false,false,false,0,false,false,false,false +WilliamMayor/tempting,WilliamMayor,Python,false,true,false,0,false,false,false,false +paddy-hack/devuan,paddy-hack,Shell,true,false,false,3,true,false,false,false +damducthoai/spring-ebooks,damducthoai,,false,false,false,0,false,false,false,false +modweb/redux-first-router-page,modweb,JavaScript,false,false,false,0,false,false,false,false +LUACourses/GC03_Casse-brique,LUACourses,Lua,false,false,false,0,false,false,false,false +skororu/scripts,skororu,Shell,false,false,false,0,false,false,false,false +kornelski/exclude_from_backups,kornelski,Rust,true,false,false,1,false,true,false,false +jerdog/gitpitch-wowza,jerdog,Java,false,false,false,0,false,false,false,false +gitlab-org/herokuish,gitlab-org,Shell,false,false,false,0,false,false,false,false +SistemasOperativos-Ciencias-UNAM/sistemasoperativos-ciencias-unam.gitlab.io,SistemasOperativos-Ciencias-UNAM,HTML,true,false,false,1,false,false,true,false +scottwolf/Project_Two,scottwolf,Java,false,false,true,0,false,false,false,false +LinuxUser/Runit,LinuxUser,Shell,false,false,false,0,false,false,false,false +Banzyme2/django-cloud9-dokcer,Banzyme2,Python,true,true,false,4,true,true,true,true +francescosilvetti8/ProyectoPinners,francescosilvetti8,Java,false,false,false,0,false,false,false,false +adrianaden/indonesianstemmer,adrianaden,Java,false,false,false,0,false,false,false,false +thislight/web.dart,thislight,Dart,true,false,false,1,false,true,false,false +ngmartin/Pockey-Frontend,ngmartin,JavaScript,false,false,false,0,false,false,false,false +antoinentl/readme.book,antoinentl,TeX,true,false,false,3,true,true,false,false +Marnes/plain-text-linker,Marnes,JavaScript,true,false,false,1,true,false,false,false +alphaDev/uss-nautilus,alphaDev,Java,false,false,true,0,false,false,false,false +winh/bisection-party,winh,HTML,false,false,false,0,false,false,false,false +dalstonalex/PhotoGallery,dalstonalex,Go,false,false,false,0,false,false,false,false +dmattosr/website_recaptcha,dmattosr,Python,false,false,false,0,false,false,false,false +ba.hurtado564/Moviles,ba.hurtado564,JavaScript,false,false,false,0,false,false,false,false +p.stefano92/chatFx,p.stefano92,Java,false,false,false,0,false,false,false,false +Adanos020/PlatforMaker,Adanos020,D,false,false,false,0,false,false,false,false +AlfredoRodrigo/ProjectAvoe,AlfredoRodrigo,Java,false,false,false,0,false,false,false,false +OCamlPro-Iguernlala/Ctrl-Ergo,OCamlPro-Iguernlala,OCaml,false,false,false,0,false,false,false,false +ironistm/googleTagManageR,ironistm,R,false,false,false,0,false,false,false,false +Eskimo/Lee-SLAM-source,Eskimo,,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-client-ansible,librespacefoundation,Shell,true,false,false,1,false,true,false,false +lsigrist/rocketlogger,lsigrist,C,false,false,false,0,false,false,false,false +Ernest_Jones/tourismatik_app,Ernest_Jones,JavaScript,false,false,false,0,false,false,false,false +pkrazz/preact-redux-sass-example,pkrazz,JavaScript,false,false,false,0,false,false,false,false +OptionalLanguor/kagami-automata-visualization,OptionalLanguor,C,false,false,false,0,false,false,false,false +yigitaltintas/basicblog,yigitaltintas,HTML,false,false,false,0,false,false,false,false +zarpedes/Intermediate_python_class,zarpedes,JupyterNotebook,false,false,false,0,false,false,false,false +yigitaltintas/hava-durumu,yigitaltintas,JavaScript,false,false,false,0,false,false,false,false +dbanwait/machine-learning,dbanwait,Python,false,false,false,0,false,false,false,false +Fred-Barclay/Mosquito,Fred-Barclay,R,false,false,false,0,false,false,false,false +AdrianoMoreira/my-virtual-store,AdrianoMoreira,TypeScript,false,false,false,0,false,false,false,false +yury.kalinau/ObservableData,yury.kalinau,C#,false,false,false,0,false,false,false,false +rpm5-legacy/hawkey,rpm5-legacy,C,false,false,false,0,false,false,false,false +rpm5-legacy/libhif,rpm5-legacy,C,false,false,false,0,false,false,false,false +liscioapps/listmeapp,liscioapps,HTML,false,false,false,0,false,false,false,false +rpm5-legacy/dnf,rpm5-legacy,Python,false,false,false,0,false,false,false,false +andreluiscunha81/hqsms,andreluiscunha81,Python,false,false,false,0,false,false,false,false +xagawa/CTF-crypto-RSA,xagawa,,false,false,false,0,false,false,false,false +ralphembree/silbacre,ralphembree,Python,false,false,false,0,false,false,false,false +rpm5-legacy/PackageKit,rpm5-legacy,C,false,false,false,0,false,false,false,false +Trev32198/Expressions,Trev32198,C,false,false,false,0,false,false,false,false +jmigueldelgado/montis,jmigueldelgado,,false,false,false,0,false,false,false,false +OmidShafiei/s1-project-android,OmidShafiei,Java,false,false,false,0,false,false,false,false +tianhanfangyan/tornado_api_json,tianhanfangyan,Python,false,false,false,0,false,false,false,false +clavem/clavem.gitlab.io,clavem,HTML,true,false,false,2,false,false,false,false +rithvikvibhu/homechef-webapp,rithvikvibhu,Vue,false,false,false,0,false,false,false,false +deployctl/www.deployctl.com,deployctl,HTML,true,false,false,4,true,false,false,true +b2m9/js,b2m9,HTML,false,false,false,0,false,false,false,false +rubyjobsar/rjobsar,rubyjobsar,Ruby,false,false,false,0,false,false,false,false +fjalars/pywebservices,fjalars,Python,false,false,false,0,false,false,false,false +technimad/bash-git-prompt-it2-integration,technimad,Shell,false,false,false,0,false,false,false,false +jrop-js/gifnoc,jrop-js,JavaScript,true,false,false,1,false,true,false,false +MBA22/Baby-steps-CodeIgniter,MBA22,PHP,false,false,false,0,false,false,false,false +gongph/hello,gongph,,false,false,false,0,false,false,false,false +kjkjjang/echo-server-client,kjkjjang,Java,false,false,false,0,false,false,false,false +JanGregor/async-processing-slides,JanGregor,HTML,true,false,false,1,false,false,true,false +brotherzone/nodebb-plugin-leech-tool,brotherzone,JavaScript,false,false,false,0,false,false,false,false +rezayds/ci-blog,rezayds,PHP,false,false,false,0,false,false,false,false +Jibbow/fastis,Jibbow,Java,false,false,false,0,false,false,false,false +exadra37-playground/elixir/cli-soup-web-scraper,exadra37-playground,Elixir,false,false,false,0,false,false,false,false +Etuldan/GTA_O9K-RP,Etuldan,Lua,false,false,false,0,false,false,false,false +Silveress_BnS/BnS_Manual_Data,Silveress_BnS,,false,false,false,0,false,false,false,false +Shapik88/auctionHouseSql,Shapik88,Java,false,false,false,0,false,false,false,false +pqrkchqps/Duality-Game,pqrkchqps,C++,false,false,false,0,false,false,false,false +idearium/eslint-config-idearium,idearium,JavaScript,true,false,false,1,false,false,true,false +sj1k/mehui,sj1k,Python,false,false,false,0,false,false,false,false +mgoral/subconvert,mgoral,Python,true,true,false,2,false,true,true,false +jishnu7/Akshara-Mazha,jishnu7,Java,false,false,false,0,false,false,false,false +seen/java/seen-retrofit,seen,Java,true,false,true,2,false,true,true,false +rpm5-legacy/appstream-glib,rpm5-legacy,C,false,false,false,0,false,false,false,false +seen/java/JSeenClient/JAssort,seen,Java,false,false,true,0,false,false,false,false +Jenselme/daiquiri-rollbar,Jenselme,Python,true,false,false,2,false,true,false,false +seen/java/JSeenClient/JBank,seen,Java,false,false,true,0,false,false,false,false +seen/java/JSeenClient/JCms,seen,Java,false,false,true,0,false,false,false,false +nickolaz1/apigo,nickolaz1,Go,false,false,false,0,false,false,false,false +anlijudavid/p5Babel,anlijudavid,JavaScript,false,false,false,0,false,false,false,false +Kr4ken-9/Unturned,Kr4ken-9,C#,false,false,false,0,false,false,false,false +seen/java/seen-retrofit-examples,seen,Java,false,false,true,0,false,false,false,false +mbrix/Bitcoineum_Gaopool,mbrix,JavaScript,false,false,false,0,false,false,false,false +zg2pro/cv.gregory.anne,zg2pro,CSS,true,false,false,2,true,false,true,false +lorde_kumamon/homem-economia-estado,lorde_kumamon,Shell,false,false,false,0,false,false,false,false +vitalkanev/hello-world,vitalkanev,,false,false,false,0,false,false,false,false +LoraLight/protocol,LoraLight,,false,false,false,0,false,false,false,false +bytesizedxyz/react-training,bytesizedxyz,JavaScript,false,false,false,0,false,false,false,false +vianmolina/proyectoTopicos,vianmolina,C#,false,false,false,0,false,false,false,false +nktdmr/TurboBlade,nktdmr,Python,false,false,false,0,false,false,false,false +rmbassman/opencv,rmbassman,C++,false,false,false,0,false,false,false,false +HenningTimm/gitlab-ci-demo,HenningTimm,Python,false,false,false,0,false,false,false,false +zanchin/bootstrap-rancher,zanchin,,false,false,false,0,false,false,false,false +chillcoding-at-the-beach/I-love,chillcoding-at-the-beach,Kotlin,true,false,false,1,true,false,false,false +remram44/microforwarder,remram44,Python,false,true,false,0,false,false,false,false +blueoakinteractive/boi-migrate,blueoakinteractive,PHP,false,false,false,0,false,false,false,false +vsichka/encrypted-jwt.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-docs,librespacefoundation,Python,false,true,false,0,false,false,false,false +droxmusic/bikeclub,droxmusic,GDScript,false,false,false,0,false,false,false,false +Andromedous/minerva,Andromedous,HTML,false,false,false,0,false,false,false,false +unitelabs/unitelabs_sila_ioi,unitelabs,TypeScript,false,false,false,0,false,false,false,false +fV6Dcb8VGcpyI/PostgreSQL_and_Linux_Containers_in_the_Enterprise,fV6Dcb8VGcpyI,Shell,false,false,false,0,false,false,false,false +fast_pixelated_detectors/fpd_data_processing,fast_pixelated_detectors,,true,false,false,1,false,false,true,false +modle-share/eatables,modle-share,Python,false,true,false,0,false,false,false,false +modle-share/better-isms,modle-share,JavaScript,false,false,false,0,false,false,false,false +modle-share/knights-of-something-notable,modle-share,Java,true,false,false,3,true,true,true,false +bja/pm-paw2017,bja,Chapel,false,false,false,0,false,false,false,false +hedgenet/kpsolver,hedgenet,Python,false,false,false,0,false,false,false,false +damejia/PuntoNet,damejia,,false,false,false,0,false,false,false,false +modle-share/centipede,modle-share,JavaScript,false,false,false,0,false,false,false,false +Maddison/ieq,Maddison,Java,false,false,false,0,false,false,false,false +EwneoN/Queste,EwneoN,C#,true,false,false,3,true,true,true,false +flushwave/site,flushwave,JavaScript,false,false,false,0,false,false,false,false +hct/m-mock,hct,JavaScript,false,false,false,0,false,false,false,false +gtauzin/metaLBM_private,gtauzin,C++,true,false,false,1,false,true,false,false +sd1-ec-2017-2/p1-g3,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +sd1-ec-2017-2/p1-g4,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +dmitriy13/Report_Generator,dmitriy13,Python,false,true,false,0,false,false,false,false +Maratyz/cs50,Maratyz,Python,false,false,false,0,false,false,false,false +m.abkenar/titler,m.abkenar,Shell,false,false,false,0,false,false,false,false +traversetech/qoriq-uboot,traversetech,C,false,false,false,0,false,false,false,false +traversetech/five64-lede-staging,traversetech,C,false,false,false,0,false,false,false,false +pschmidt/ue4-mcp,pschmidt,C++,false,false,false,0,false,false,false,false +influencepc/generateur-de-plateau-de-service,influencepc,OpenSCAD,false,false,false,0,false,false,false,false +garrett/gtksourceview-extras,garrett,Roff,false,false,false,0,false,false,false,false +fsanches/Anti-Blobs,fsanches,Python,false,false,false,0,false,false,false,false +onofreliscano/juntos,onofreliscano,CSS,false,false,false,0,false,false,false,false +paulhibbitts/demo-grav-open-publishing,paulhibbitts,,false,false,false,0,false,false,false,false +Creased/arducky,Creased,C++,false,false,false,0,false,false,false,false +3RaGaming/3Ra-Labyrinth,3RaGaming,Lua,false,false,false,0,false,false,false,false +rdev163/flash-card-recall-react,rdev163,TypeScript,false,false,false,0,false,false,false,false +GEOG279_Fall2017/Tutorials_and_other_materials,GEOG279_Fall2017,JupyterNotebook,false,false,false,0,false,false,false,false +binero/android-bootimage,binero,Rust,false,false,false,0,false,false,false,false +ad-si-2017-2/p1-g2,ad-si-2017-2,JavaScript,false,false,false,0,false,false,false,false +ad-si-2017-2/p1-g4,ad-si-2017-2,JavaScript,false,false,false,0,false,false,false,false +mkleehammer/pepperssh,mkleehammer,Python,false,false,false,0,false,false,false,false +gbraad/openshift-origin,gbraad,Go,false,false,false,0,false,false,false,false +STEINGuillaume/webchzer,STEINGuillaume,PHP,false,false,false,0,false,false,false,false +LUACourses/GC04_Tetris,LUACourses,Lua,false,false,false,0,false,false,false,false +ttpcodes/KeyClubInterface-Android,ttpcodes,Java,false,false,false,0,false,false,false,false +dave.ursa/Zounds,dave.ursa,TypeScript,false,false,false,0,false,false,false,false +halfcab123/The-New-Boston_ReactForBeginners,halfcab123,JavaScript,false,false,false,0,false,false,false,false +riovir/webpack-workshop,riovir,JavaScript,false,false,false,0,false,false,false,false +vogier/pymorandum,vogier,CSS,false,false,false,0,false,false,false,false +MadHSSniper/FDS,MadHSSniper,Java,false,false,false,0,false,false,false,false +kyaniheessels/cashflow,kyaniheessels,JavaScript,true,false,false,2,true,false,true,false +Sfeir/openbar/miou,Sfeir,JavaScript,false,false,false,0,false,false,false,false +MindSpunk/NovaEngine,MindSpunk,C++,false,false,false,0,false,false,false,false +pdg-open-source/maderas,pdg-open-source,HTML,false,false,false,0,false,false,false,false +darkavenger_uy/ForeignExchange2,darkavenger_uy,C#,false,false,false,0,false,false,false,false +tref/demo-no-ops-lando,tref,PHP,true,false,false,8,false,false,false,false +whittles/PuLP_Simple_Example,whittles,Python,false,false,false,0,false,false,false,false +senac/UC11/2016-321/alunos/hentonny/Hentonny-Calculadora,senac,Java,false,false,false,0,false,false,false,false +tescoelectronics/arduino_course,tescoelectronics,C++,false,false,false,0,false,false,false,false +nobodyinperson/git-tutorial,nobodyinperson,Makefile,false,false,false,0,false,false,false,false +bmnepali/ng4-form-demo,bmnepali,TypeScript,false,false,false,0,false,false,false,false +craigbarnes/craigbarnes.gitlab.io,craigbarnes,Makefile,true,false,false,1,true,false,false,false +psd-ec-2017-2/meta,psd-ec-2017-2,,false,false,false,0,false,false,false,false +fredrikhasselgren/magic-mirror,fredrikhasselgren,JavaScript,false,false,false,0,false,false,false,false +mayokun/popping,mayokun,TypeScript,false,false,false,0,false,false,false,false +rdavila_portfolio/DogFeeder,rdavila_portfolio,JavaScript,false,false,false,0,false,false,false,false +KitsuneSakul/ChatAsUser,KitsuneSakul,Java,false,false,false,0,false,false,false,false +azam007/quiz-php-weekend,azam007,PHP,false,false,false,0,false,false,false,false +alisyahidin/quiz-php-weekend,alisyahidin,PHP,false,false,false,0,false,false,false,false +amjal/tiny-search-engine,amjal,Java,false,false,false,0,false,false,false,false +caiorrs/automatizacao_PACEfied,caiorrs,Batchfile,false,false,false,0,false,false,false,false +muhamed.halil/introduction-to-salesforce,muhamed.halil,HTML,false,false,false,0,false,false,false,false +smondet/pewolio,smondet,OCaml,false,false,false,0,false,false,false,false +z.a.horvath/smart_title,z.a.horvath,PHP,false,false,false,0,false,false,false,false +black-plain-games/authorization,black-plain-games,C#,false,false,false,0,false,false,false,false +vatsalattatvic/dls,vatsalattatvic,JavaScript,false,false,false,0,false,false,false,false +ilya2306/siv-boilerplate,ilya2306,JavaScript,true,false,false,3,false,true,false,false +techzara.mada/codeo-201708-python,techzara.mada,Python,false,false,false,0,false,false,false,false +optimbug/omagasin2,optimbug,,false,false,false,0,false,false,false,false +HamdiChebbi/PostManagement,HamdiChebbi,Python,false,false,false,0,false,false,false,false +harijiang/cupci,harijiang,Ruby,false,false,false,0,false,false,false,false +kvizdos/bracketify,kvizdos,HTML,false,false,false,0,false,false,false,false +alexkuznecov/one-h-idea,alexkuznecov,Java,false,false,true,0,false,false,false,false +zxzl/slide-analyzer,zxzl,JupyterNotebook,false,false,false,0,false,false,false,false +CarlosMatheus/TheAwakening,CarlosMatheus,C#,false,false,false,0,false,false,false,false +slobodovinari/Larpstone,slobodovinari,Python,false,false,false,0,false,false,false,false +tuxllefia/Scripts_blog,tuxllefia,Python,false,false,false,0,false,false,false,false +nish-agrawal/TestRepo,nish-agrawal,Java,false,false,false,0,false,false,false,false +ansonmiu0214/stc-projects-2017,ansonmiu0214,JavaScript,false,false,false,0,false,false,false,false +mbunkus/simple-rtm,mbunkus,EmacsLisp,false,false,false,0,false,false,false,false +mbunkus/utm-update-certificate,mbunkus,Perl,false,false,false,0,false,false,false,false +cjvnjde/psychopathy-online,cjvnjde,JavaScript,true,false,false,4,true,true,true,true +la-livre/lolifier,la-livre,Go,false,false,false,0,false,false,false,false +redpop/gulp-firestarter,redpop,JavaScript,true,false,false,1,false,true,false,false +open-pipeline/openPipelineNext,open-pipeline,,false,false,false,0,false,false,false,false +AlexShkor/workshop,AlexShkor,JavaScript,false,false,false,0,false,false,false,false +krmit/mimer-academy-pre,krmit,JavaScript,false,false,false,0,false,false,false,false +elora/libre-abp,elora,C,false,false,false,0,false,false,false,false +jmigueldelgado/tms.calib,jmigueldelgado,R,false,false,false,0,false,false,false,false +vakaloud/Nimbus_Horse_App,vakaloud,Java,false,false,false,0,false,false,false,false +BlueRockTEL/TelcoDirectCallsOVH,BlueRockTEL,PHP,false,false,false,0,false,false,false,false +longkey1/dotfiles,longkey1,Vimscript,false,false,false,0,false,false,false,false +jmigueldelgado/energy-balance-coruche,jmigueldelgado,R,false,false,false,0,false,false,false,false +shreyakumar/public-paradigms-fall17,shreyakumar,Python,false,false,false,0,false,false,false,false +michalpospech/SimCity-Lite,michalpospech,C#,false,false,false,0,false,false,false,false +t-munk/gipsy,t-munk,,true,false,false,1,false,true,false,false +kqorany/SCHC,kqorany,C,false,false,false,0,false,false,false,false +jlozada2426/awesome-sysadmin,jlozada2426,,false,false,false,0,false,false,false,false +faustobdls/ppi-agenda,faustobdls,CSS,false,false,false,0,false,false,false,false +camu891/afua-mati,camu891,Java,false,false,false,0,false,false,false,false +shingrey/NumberCard,shingrey,Java,false,false,false,0,false,false,false,false +Gatoheredia/gitpruebaaaa,Gatoheredia,Java,false,false,false,0,false,false,false,false +nicosingh/rpi-openvpn-keygenerator,nicosingh,Shell,true,false,false,2,false,false,false,false +nicosingh/rpi-openvpn-server,nicosingh,,true,false,false,2,false,false,false,false +nicosingh/rpi-fr24feed,nicosingh,Shell,true,false,false,2,false,false,false,false +leibnizhu/spring-boot-starter-netty,leibnizhu,Java,false,false,true,0,false,false,false,false +LPhilby/dcp_intermission_calc,LPhilby,Python,false,false,false,0,false,false,false,false +thelamer/taisun,thelamer,JavaScript,false,false,false,0,false,false,false,false +alxrem/html2tg,alxrem,Go,true,false,false,1,false,true,false,false +bryandan10/GIT-Cola,bryandan10,,false,false,false,0,false,false,false,false +gedeiswara/PowerCLI,gedeiswara,PowerShell,false,false,false,0,false,false,false,false +ReloadLife/unixwebbot,ReloadLife,Lua,false,false,false,0,false,false,false,false +scorewinner/triggerer,scorewinner,,false,false,false,0,false,false,false,false +frederikcreemers/frederikcreemers.be,frederikcreemers,JavaScript,true,false,false,1,false,true,false,false +finetuned/an1310-python,finetuned,Python,false,false,false,0,false,false,false,false +mitlley/HolaMundoAPR4DB,mitlley,Java,false,false,false,0,false,false,false,false +Wychmire/wofmc,Wychmire,Java,false,false,false,0,false,false,false,false +onurorhan04/fenicoIOS,onurorhan04,JavaScript,false,false,false,0,false,false,false,false +psd-ec-2017-2/plano-de-projeto,psd-ec-2017-2,,false,false,false,0,false,false,false,false +techzara.mada/codeo-201708-design,techzara.mada,,false,false,false,0,false,false,false,false +techzara.mada/codeo-201708-front,techzara.mada,CSS,false,false,false,0,false,false,false,false +zaytseva_natali/payments,zaytseva_natali,Java,false,false,true,0,false,false,false,false +ungefroren/SchemGui,ungefroren,Java,false,false,true,0,false,false,false,false +dgflagg/talent-wrangler,dgflagg,,false,false,false,0,false,false,false,false +circuit-simulator/documentation,circuit-simulator,TeX,true,false,false,1,false,true,false,false +marciohelenowebsite/EstudosDeC,marciohelenowebsite,C,false,false,false,0,false,false,false,false +Urosch/knjige,Urosch,,true,false,false,1,false,false,true,false +glshybs/javascript9,glshybs,JavaScript,false,false,false,0,false,false,false,false +samrdz/CV-Psique-Ajax,samrdz,JavaScript,false,false,false,0,false,false,false,false +jarhmander-config/lua,jarhmander-config,Lua,false,false,false,0,false,false,false,false +berublan/vscode-log-viewer,berublan,TypeScript,true,false,false,1,false,true,false,false +nbs-it/NG6-starter,nbs-it,JavaScript,false,false,false,0,false,false,false,false +marekpetrik/cs980_2017,marekpetrik,C++,false,false,false,0,false,false,false,false +rendello/syllabic-converter,rendello,Python,false,false,false,0,false,false,false,false +gokulpch/OpenContrail-Kolla,gokulpch,Python,false,false,false,0,false,false,false,false +vlead/project-planning,vlead,Shell,false,false,false,0,false,false,false,false +cheminfIBB/tfbio,cheminfIBB,Python,true,false,false,1,false,true,false,false +huypq6/STM32-Bootloader,huypq6,C,false,false,false,0,false,false,false,false +afaqahmad1993/saltinnovation,afaqahmad1993,PHP,false,false,false,0,false,false,false,false +khosronz/my-admin-panel-singlepage,khosronz,TypeScript,false,false,false,0,false,false,false,false +nixi/keysigning-guide,nixi,,false,false,false,0,false,false,false,false +ZEEKOEtech/manateefood,ZEEKOEtech,Python,false,true,false,0,false,false,false,false +cb-geo/mpm-mesh-generator-old,cb-geo,C++,false,false,false,0,false,false,false,false +novawebdevelopment/Canvassing_VolunteerManagement_Software_Stories,novawebdevelopment,,false,false,false,0,false,false,false,false +aroulin/arln.fr,aroulin,CSS,false,false,false,0,false,false,false,false +jhoff/lmdb,jhoff,PHP,false,false,false,0,false,false,false,false +canarduck/linkintab,canarduck,Python,false,false,false,0,false,false,false,false +rubemlrm/laravel,rubemlrm,PHP,true,false,false,1,false,true,false,false +nd-cse-30341-fa17/cse-30341-fa17-examples,nd-cse-30341-fa17,C++,false,false,false,0,false,false,false,false +brianegan/flutter_redux_dev_tools,brianegan,Dart,true,false,false,1,false,true,false,false +electronic-gulden-foundation/egulden,electronic-gulden-foundation,C++,true,false,false,2,true,true,false,false +dhanar_santika/My_First_Repo,dhanar_santika,,false,false,false,0,false,false,false,false +jkarteaga/hugo,jkarteaga,HTML,true,false,false,1,false,true,false,false +krmit/htsit-lab,krmit,,false,false,false,0,false,false,false,false +monks.de/ember-filter-sort,monks.de,JavaScript,true,false,false,2,false,true,true,false +ercom/rats-pkg,ercom,C,true,false,false,1,true,false,false,false +Damorin/GVG-DeceptiveGames,Damorin,Java,false,false,false,0,false,false,false,false +cocoa1231/karchtoolin,cocoa1231,Python,false,false,false,0,false,false,false,false +fedran/fedran-website,fedran,JavaScript,false,false,false,0,false,false,false,false +AiToR51/laberinto_arduino,AiToR51,C++,false,false,false,0,false,false,false,false +JhonMart/Lanchonete,JhonMart,JavaScript,false,false,false,0,false,false,false,false +linh.truong/higo,linh.truong,PHP,false,false,false,0,false,false,false,false +x2v3/CallBlocker,x2v3,Java,true,false,false,2,true,true,false,false +deployctl/github_go_release2rpm,deployctl,Shell,true,false,false,3,true,false,true,false +canarduck/systranio,canarduck,Python,true,true,false,2,false,true,true,false +oppytut/kelasvirtual,oppytut,JavaScript,false,false,false,0,false,false,false,false +dhanar_santika/lab-01,dhanar_santika,JavaScript,true,false,false,2,false,true,true,false +teh.jimisdam/libJD_php,teh.jimisdam,PHP,false,false,false,0,false,false,false,false +teh.jimisdam/libJD_MVC,teh.jimisdam,PHP,false,false,false,0,false,false,false,false +dimachuev/qt5-cryptopro-csp-repo,dimachuev,,false,false,false,0,false,false,false,false +srk9public/loki.config,srk9public,Shell,false,false,false,0,false,false,false,false +craftsmen/rp-workshop-ing-2017-09-07,craftsmen,JavaScript,false,false,false,0,false,false,false,false +zero-gravity/zero-gravity-cms,zero-gravity,PHP,true,false,false,1,false,true,false,false +zero-gravity/zero-gravity-cms-bundle,zero-gravity,PHP,true,false,false,1,false,true,false,false +benedekb97/pipaweb-new,benedekb97,PHP,false,false,false,0,false,false,false,false +columbia-design-and-development/white-panther-astoria,columbia-design-and-development,JavaScript,false,false,false,0,false,false,false,false +friss-robotics/documents,friss-robotics,,false,false,false,0,false,false,false,false +friss-robotics/backend,friss-robotics,JavaScript,true,false,false,1,false,true,false,false +Inforge/XenForge/ReplyAlerter,Inforge,CSS,false,false,false,0,false,false,false,false +ario.seto/lab01_TDD,ario.seto,Python,false,true,false,0,false,false,false,false +classiga/classiga,classiga,Java,true,false,true,2,true,false,true,false +stanleys97/git-introduction-tutorial,stanleys97,Python,true,true,false,2,false,true,true,false +luqi/PPW-Tutorial,luqi,JavaScript,true,false,false,2,false,true,true,false +banusuryadi/sG-RP,banusuryadi,Lua,false,false,false,0,false,false,false,false +SugarLSG/APP.Core,SugarLSG,C#,false,false,false,0,false,false,false,false +retalia/p2p-bookshelf,retalia,Python,false,false,false,0,false,false,false,false +sims1253/chalmers_stuff,sims1253,,false,false,false,0,false,false,false,false +tstilz/simple_rc,tstilz,Python,false,false,false,0,false,false,false,false +eosio/eos,eosio,C++,true,false,false,1,false,true,false,false +Django_Vzla/Web-Django_Vzla,Django_Vzla,Python,false,false,false,0,false,false,false,false +FlopiVG/web-game,FlopiVG,TypeScript,false,false,false,0,false,false,false,false +jsmera/tallerEstructuras,jsmera,C++,false,false,false,0,false,false,false,false +replikativ/index-sync,replikativ,Clojure,false,false,false,0,false,false,false,false +vbgl/tresau,vbgl,,false,false,false,0,false,false,false,false +toni83/practicados,toni83,HTML,false,false,false,0,false,false,false,false +hasanshahoud/search-feature,hasanshahoud,JavaScript,false,false,false,0,false,false,false,false +iss93/ic-perceptron,iss93,Python,false,false,false,0,false,false,false,false +pengliheng/chatroom,pengliheng,JavaScript,false,false,false,0,false,false,false,false +fedoras/55156,fedoras,HTML,false,false,false,0,false,false,false,false +kanasimi/work_crawler,kanasimi,JavaScript,false,false,false,0,false,false,false,false +nickdonnelly/horus-server,nickdonnelly,Rust,true,false,false,1,false,false,false,false +TemplateMonster/PlasmaPlatform/Frontend/Scaffolders/Project,TemplateMonster,JavaScript,false,false,false,0,false,false,false,false +tahirnoormca/liferay-training,tahirnoormca,CSS,false,false,false,0,false,false,false,false +petrikm/FTOMonoid,petrikm,Python,false,false,false,0,false,false,false,false +Pedro_Alferes/faceionic,Pedro_Alferes,TypeScript,false,false,false,0,false,false,false,false +karroffel/pncl,karroffel,C,false,false,false,0,false,false,false,false +Didou/poc_ci,Didou,PHP,true,false,false,4,true,true,true,false +arjunsinghy96/xamples,arjunsinghy96,JavaScript,false,false,false,0,false,false,false,false +juanfperezperez/ip-and-network-calculator-module,juanfperezperez,PowerShell,true,false,false,4,true,true,true,false +ltbclqd2805/MultiTask-MergeDataset,ltbclqd2805,Python,false,false,false,0,false,false,false,false +Zipcore/zStocks,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +teymoori/sematec_advance,teymoori,Java,false,false,false,0,false,false,false,false +alti2d/server_core,alti2d,Kotlin,false,false,false,0,false,false,false,false +anachmad/filio,anachmad,Java,false,false,false,0,false,false,false,false +elitepvpers/external/userscript-collection,elitepvpers,JavaScript,false,false,false,0,false,false,false,false +raul7romero/PAP_IIEG,raul7romero,Python,false,false,false,0,false,false,false,false +engell/engell.gitlab.io,engell,HTML,true,false,false,1,false,true,false,false +guildship/guildship,guildship,Elixir,true,false,false,1,false,true,false,false +souravsuresh/FarmConnect,souravsuresh,CSS,false,false,false,0,false,false,false,false +chgans/aucklug-git-september-2017,chgans,Shell,false,false,false,0,false,false,false,false +oanhduong/web-mvc-jsp-example,oanhduong,HTML,false,false,false,0,false,false,false,false +KarlaByrinth/Bornhack-Badge-Pendulum,KarlaByrinth,C,false,false,false,0,false,false,false,false +tyrone.grech/stockman,tyrone.grech,Go,false,false,false,0,false,false,false,false +davidhsianturi/laravel-test-deploy,davidhsianturi,PHP,true,false,false,2,false,true,true,false +dkretzlaff/quake_reports,dkretzlaff,Ruby,false,false,false,0,false,false,false,false +ulm0/graphql-docker-api,ulm0,Go,true,false,false,3,true,false,false,false +felipeac/pitbot,felipeac,Python,false,false,false,0,false,false,false,false +harold98/proyecto1,harold98,,false,false,false,0,false,false,false,false +mayan-edms/mayan-edms-vagrant,mayan-edms,Shell,false,false,false,0,false,false,false,false +nbs-it/ng-ui-library,nbs-it,JavaScript,true,false,false,1,true,false,false,false +donatinator/donatinator,donatinator,JavaScript,false,false,false,0,false,false,false,false +vivify-ideas/vivifyacademy-api-be,vivify-ideas,PHP,false,false,false,0,false,false,false,false +vivify-ideas/vivifyacademy-api-fe,vivify-ideas,TypeScript,false,false,false,0,false,false,false,false +tacolpena/diagnosticos-seguridad-digital,tacolpena,,false,false,false,0,false,false,false,false +topoi/tildagirl,topoi,Haskell,false,false,false,0,false,false,false,false +DevashishX/devtext,DevashishX,C,false,false,false,0,false,false,false,false +iron-oxide/cogwheel,iron-oxide,Rust,true,false,false,3,true,true,true,false +EpicOmega/EpicOmega_Core,EpicOmega,,false,false,false,0,false,false,false,false +HiSchoolProject/FrontSchool,HiSchoolProject,JavaScript,false,false,false,0,false,false,false,false +Hypatia/Hypatia,Hypatia,,false,false,false,0,false,false,false,false +projetosReactNative/app8,projetosReactNative,JavaScript,false,false,false,0,false,false,false,false +jackmiller403/kexpbot,jackmiller403,Python,false,true,false,0,false,false,false,false +myrrlyn/endian_trait,myrrlyn,Rust,true,false,false,1,false,true,false,false +tkrause/midi-controller,tkrause,C++,false,false,false,0,false,false,false,false +venkateshyelnoorkar/dsa_project_2017,venkateshyelnoorkar,C,false,false,false,0,false,false,false,false +higan/bass,higan,C++,false,false,false,0,false,false,false,false +frednora/gramado,frednora,C,false,false,false,0,false,false,false,false +drzi/PTClassic,drzi,,false,false,false,0,false,false,false,false +lbexresearch/populate,lbexresearch,Python,true,false,false,1,false,false,false,false +rreberol/CV-RR,rreberol,,false,false,false,0,false,false,false,false +tfalbo/movie-trailer-website,tfalbo,Python,false,false,false,0,false,false,false,false +ibnufirdaus/Labs,ibnufirdaus,Python,true,true,false,2,false,true,true,false +atnartur/net-lectures,atnartur,,false,false,false,0,false,false,false,false +PresentationsTechniques/HTML5,PresentationsTechniques,CSS,false,false,false,0,false,false,false,false +chaica/mastocount,chaica,Python,false,false,false,0,false,false,false,false +ercom/android-emulator,ercom,Shell,true,false,false,1,true,false,false,false +reznov53/AFanaro_Gamedev_Tutorial1,reznov53,,false,false,false,0,false,false,false,false +vatoobhai/wickedchess,vatoobhai,C,false,false,false,0,false,false,false,false +ciemat-psa/surf-simulator,ciemat-psa,CSS,true,false,false,2,false,true,true,false +rafiedharmawan/rafie-Lab,rafiedharmawan,JavaScript,true,false,false,2,false,true,true,false +IonicZoo/chameleon-mask-directive,IonicZoo,TypeScript,true,false,false,1,false,false,true,false +MrFlyingToasterman/tracer,MrFlyingToasterman,Java,false,false,false,0,false,false,false,false +pdftools/python-ghostscript,pdftools,Python,true,true,false,2,true,true,false,false +apt-rpm/apt-rpm,apt-rpm,C++,false,false,false,0,false,false,false,false +space-sh/twitter,space-sh,Shell,false,false,false,0,false,false,false,false +friss-robotics/web,friss-robotics,JavaScript,false,false,false,0,false,false,false,false +ubunturox104/imagenes,ubunturox104,CSS,true,false,false,1,false,true,false,false +muesli/bones,muesli,Go,false,false,false,0,false,false,false,false +stenier/DemosWeb,stenier,PHP,false,false,false,0,false,false,false,false +GreatNameAgain/diamond-mod-bb,GreatNameAgain,,false,false,false,0,false,false,false,false +arkthusk/Lab_ppw_02,arkthusk,Python,true,true,false,2,false,true,true,false +toggle-corp/react-store,toggle-corp,JavaScript,false,false,false,0,false,false,false,false +PenguinRun/own-page,PenguinRun,JavaScript,false,false,false,0,false,false,false,false +st.levchuk/aster,st.levchuk,JavaScript,false,false,false,0,false,false,false,false +frnmst-mirrors/kalliope,frnmst-mirrors,Python,false,false,false,0,false,false,false,false +Luuse/Visible-Langage-Aspirator,Luuse,Shell,false,false,false,0,false,false,false,false +CEC-kymeta/test,CEC-kymeta,Vimscript,false,false,false,0,false,false,false,false +cedanoernesto/cursos,cedanoernesto,PHP,false,false,false,0,false,false,false,false +scorpions/TechCrawler,scorpions,Python,false,false,false,0,false,false,false,false +nslr/nslr,nslr,C++,false,false,false,0,false,false,false,false +nslr/nslr-hmm,nslr,Python,false,false,false,0,false,false,false,false +haggl/uMIDI-hmi,haggl,,false,false,false,0,false,false,false,false +omzo/annonce,omzo,PHP,false,false,false,0,false,false,false,false +ishtiaq156/just-tap-it,ishtiaq156,PHP,false,false,false,0,false,false,false,false +smallstack/infrastructure/smallstack-webpage-renderer,smallstack,JavaScript,true,false,false,1,true,false,false,false +n3wborn/myscripts,n3wborn,Shell,false,false,false,0,false,false,false,false +yartash/apricot,yartash,JavaScript,false,false,false,0,false,false,false,false +seen/angular/seen-shop,seen,JavaScript,true,false,false,2,false,true,true,false +purwadarozatunakis/schs,purwadarozatunakis,PHP,false,false,false,0,false,false,false,false +seen/angular/seen-assort,seen,JavaScript,true,false,false,2,false,true,true,false +andrew.n.sutton/pl-notes,andrew.n.sutton,C++,false,false,false,0,false,false,false,false +bridgetojapan/connie,bridgetojapan,,false,false,false,0,false,false,false,false +bridgetojapan/interviewer,bridgetojapan,,false,false,false,0,false,false,false,false +narendram/sun-desk,narendram,HTML,false,false,false,0,false,false,false,false +rafasaints/Televisao,rafasaints,C#,false,false,false,0,false,false,false,false +janardhanpshetty/keras-nlp-2,janardhanpshetty,Python,false,true,false,0,false,false,false,false +ccondry/cce-app-gateway,ccondry,JavaScript,false,false,false,0,false,false,false,false +AlexTEko/monitor.home,AlexTEko,HTML,true,false,false,1,false,true,false,false +ottowao/dotfiles,ottowao,Shell,false,false,false,0,false,false,false,false +AlexTEko/pmx-console,AlexTEko,Python,true,true,false,1,false,true,false,false +biphub/biphub,biphub,CSS,false,false,false,0,false,false,false,false +Chateado/VanillaBans,Chateado,Java,false,false,false,0,false,false,false,false +r2robotics/r2robotics_wheelbase,r2robotics,C++,false,false,false,0,false,false,false,false +r2robotics/r2robotics_act,r2robotics,C++,false,false,false,0,false,false,false,false +r2robotics/r2robotics_common,r2robotics,CMake,false,false,false,0,false,false,false,false +librecoder/config-files,librecoder,,false,false,false,0,false,false,false,false +ralt/isoostrap,ralt,CommonLisp,true,false,false,1,false,true,false,false +noraj/nvd_api,noraj,Ruby,true,false,false,2,false,true,true,false +RaraCerberus/SMOD13,RaraCerberus,C++,false,false,false,0,false,false,false,false +zauster/geppml,zauster,R,false,false,false,0,false,false,false,false +jamesadakorn/pcp,jamesadakorn,HTML,false,false,false,0,false,false,false,false +kristiantokt/repo-ppw,kristiantokt,JavaScript,true,false,false,2,false,true,true,false +SvdLeegte/Varifyfirst,SvdLeegte,HTML,true,false,false,1,false,true,false,false +Ekt0s/android-boilerplate,Ekt0s,Java,true,false,false,2,true,true,false,false +occam-archive/occam-web-client,occam-archive,JavaScript,false,false,false,0,false,false,false,false +occam-archive/occam,occam-archive,Python,false,true,false,0,false,false,false,false +VictorRodrigues/Symphonya_RedeSocial,VictorRodrigues,JavaScript,false,false,false,0,false,false,false,false +crankylinuxuser/closed_loop_system,crankylinuxuser,C++,false,false,false,0,false,false,false,false +gemeoseali/SistemaEscola,gemeoseali,Java,false,false,false,0,false,false,false,false +Icaro_UFAL/qdelivery,Icaro_UFAL,QML,false,false,false,0,false,false,false,false +GulaschLulatsch/EquipmentOptimizer,GulaschLulatsch,Java,false,false,false,0,false,false,false,false +CSUI-ITProject-2017/Guidelines,CSUI-ITProject-2017,,false,false,false,0,false,false,false,false +PPW-2017/ppw-lab-ki,PPW-2017,Python,true,true,false,2,false,true,true,false +CSUI-ITProject-2017/KI1/Codebase,CSUI-ITProject-2017,Ruby,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/pg_plugins,gitlab-com,C,false,false,false,0,false,false,false,false +incaper/PCR,incaper,,false,false,false,0,false,false,false,false +incaper/PNT,incaper,Fortran,false,false,false,0,false,false,false,false +eduardoprado/gstreamer-tutorial5,eduardoprado,Makefile,false,false,false,0,false,false,false,false +simont3/hcprequestanalytics,simont3,Python,false,false,false,0,false,false,false,false +daiaferreiraes/sime,daiaferreiraes,JavaScript,false,false,false,0,false,false,false,false +ablondin/inf3135-aut2017-tp1-enonce,ablondin,Makefile,false,false,false,0,false,false,false,false +Maix5/fp-wild-tic-tac-toe,Maix5,Haskell,false,false,false,0,false,false,false,false +luism1905/Proy-Isomat,luism1905,PHP,false,false,false,0,false,false,false,false +pleasantone/signup-bot,pleasantone,Python,false,false,false,0,false,false,false,false +magento-two/gift-card,magento-two,PHP,false,false,false,0,false,false,false,false +holloway/golang-web-tutorial,holloway,Go,false,false,false,0,false,false,false,false +capstonefpt/japaneseinyourhand,capstonefpt,C#,false,false,false,0,false,false,false,false +anis8/TRIKI,anis8,Java,false,false,false,0,false,false,false,false +raspi0124/Japanese-font-for-TinyMCE,raspi0124,PHP,false,false,false,0,false,false,false,false +SugarLSG/Dotnet.Template,SugarLSG,JavaScript,false,false,false,0,false,false,false,false +orama/les_causeries,orama,,false,false,false,0,false,false,false,false +hop23typhu/baseapp,hop23typhu,JavaScript,true,false,false,9,true,true,false,true +h4midrez4/nahali,h4midrez4,,false,false,false,0,false,false,false,false +univa/recordLine,univa,Python,false,false,false,0,false,false,false,false +andreas-h/mss-chem,andreas-h,Python,false,false,false,0,false,false,false,false +cwx/app-template-ionic,cwx,CSS,false,false,false,0,false,false,false,false +andreas-h/emiprep,andreas-h,Python,false,true,false,0,false,false,false,false +rappad/ionic3-crud-firebase,rappad,TypeScript,false,false,false,0,false,false,false,false +go2null/upm,go2null,Shell,false,false,false,0,false,false,false,false +bmgaynor/react-16-presentation,bmgaynor,JavaScript,true,false,false,3,true,true,true,false +brian-pengel-hku/kern-gdv2,brian-pengel-hku,ASP,false,false,false,0,false,false,false,false +michal.ursiny/scrollbot-gitlab-feed-display,michal.ursiny,Python,false,false,false,0,false,false,false,false +nathanfaucett/rs-specs_time,nathanfaucett,Rust,true,false,false,1,false,true,false,false +a624042309/MyFlask,a624042309,Python,false,false,false,0,false,false,false,false +RLesur/bookdown-gitlab-pages,RLesur,HTML,true,false,false,1,false,false,true,false +sat-metalab/splash-gui,sat-metalab,Python,false,false,false,0,false,false,false,false +cslucr/ubuntu-ucr,cslucr,Shell,true,false,false,1,false,true,false,false +unbekannt3/TodoApp,unbekannt3,TypeScript,false,false,false,0,false,false,false,false +vise890/parseq,vise890,Clojure,true,false,false,2,false,true,true,false +MajesticOpen/ContractManager,MajesticOpen,C#,false,false,false,0,false,false,false,false +blubirub/arcadeGames,blubirub,HTML,false,false,false,0,false,false,false,false +marinaz/presentations,marinaz,,false,false,false,0,false,false,false,false +serveus/serveus,serveus,C#,false,false,false,0,false,false,false,false +Retr0_System/buildtools,Retr0_System,,false,false,false,0,false,false,false,false +michaun/cargo,michaun,C,false,false,false,0,false,false,false,false +hstack/tf-mod-aws-allinone,hstack,HCL,false,false,false,0,false,false,false,false +rafaelteodosio/projeto_desenvolvimento_de_software,rafaelteodosio,,false,false,false,0,false,false,false,false +fahim525/open-source,fahim525,PHP,false,false,false,0,false,false,false,false +openvm/console,openvm,HTML,true,false,false,1,false,true,false,false +michaelha/cliocon,michaelha,HTML,false,false,false,0,false,false,false,false +al.olteanu/ws-RMCDA,al.olteanu,R,false,false,false,0,false,false,false,false +cw-andrews/url_utm_combinator,cw-andrews,Python,true,true,false,1,false,true,false,false +zanny/oidc-reqwest,zanny,Rust,true,false,false,1,false,true,false,false +ledangfamily/duyle.gitlab.io,ledangfamily,JavaScript,true,false,false,1,false,true,false,false +jpsamaroo/Tasklets.jl,jpsamaroo,Julia,true,false,false,1,false,true,false,false +nickolaz1/firego,nickolaz1,Go,false,false,false,0,false,false,false,false +llravelo/computer-vision-exercises,llravelo,Python,false,false,false,0,false,false,false,false +syrnik-webasyst-docker/wa-phpfpm71-mariadb-nginx,syrnik-webasyst-docker,PHP,false,false,false,0,false,false,false,false +foodchi/peyk,foodchi,PHP,false,false,false,0,false,false,false,false +JEhistory/Myhistory,JEhistory,,false,false,false,0,false,false,false,false +bearmetalpublic/BearMetal-FRC-2017-Public,bearmetalpublic,Java,false,false,false,0,false,false,false,false +democracy-tools/democracy,democracy-tools,Ruby,false,false,false,0,false,false,false,false +Retr0_System/librejs,Retr0_System,JavaScript,false,false,false,0,false,false,false,false +datenstrom/home,datenstrom,Nix,true,false,false,2,false,true,true,false +jiusong/bst-guesser,jiusong,Java,false,false,false,0,false,false,false,false +damonpetta/dotfiles,damonpetta,Vimscript,false,false,false,0,false,false,false,false +Megnatis/TelegramBot_LearnFiles,Megnatis,PHP,false,false,false,0,false,false,false,false +ecartman/sleekxmpp-omemo-plugin,ecartman,Python,false,false,false,0,false,false,false,false +geoffrey-grebert/sii-spring,geoffrey-grebert,Java,true,false,true,6,true,true,true,false +sofreeus/AGHI2OpenStack,sofreeus,Shell,false,false,false,0,false,false,false,false +LiefEriccson/DiscordDogeBot,LiefEriccson,JavaScript,false,false,false,0,false,false,false,false +aulwardana/mqtt-ac,aulwardana,Go,false,false,false,0,false,false,false,false +imadeboga/skeleton-automation,imadeboga,Java,false,false,true,0,false,false,false,false +magiklab/my-own-playstore,magiklab,Java,false,false,false,0,false,false,false,false +pepperbay/guidelines,pepperbay,,false,false,false,0,false,false,false,false +grahamranson/Puggle,grahamranson,Lua,false,false,false,0,false,false,false,false +damonpetta/st,damonpetta,C,false,false,false,0,false,false,false,false +tomarashish/taxonomyCompare,tomarashish,JavaScript,true,false,false,1,false,false,true,false +alcrsg/blog,alcrsg,HTML,true,false,false,1,false,true,false,false +NicolasStohler/asp-net-core-whitelist-middleware,NicolasStohler,C#,false,false,false,0,false,false,false,false +IonicZoo/pigeon-restful-provider,IonicZoo,TypeScript,true,false,false,2,true,false,true,false +IonicZoo/eagle-map-component,IonicZoo,TypeScript,true,false,false,1,false,false,true,false +IonicZoo/ioniczoo.gitlab.io,IonicZoo,HTML,true,false,false,1,false,false,true,false +harrisland/C18_ISP,harrisland,C,false,false,false,0,false,false,false,false +Tkkg1994/IronRom,Tkkg1994,Shell,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-rotator-firmware,librespacefoundation,C++,true,false,false,1,false,true,false,false +faustobdls/ppi-locadora2,faustobdls,CSS,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-diplexer,librespacefoundation,,false,false,false,0,false,false,false,false +mirko.passoli/arduino-pc-monitor,mirko.passoli,C#,false,false,false,0,false,false,false,false +davepwsmith/hugo-shuttersmith,davepwsmith,HTML,false,false,false,0,false,false,false,false +cw-andrews/project_template,cw-andrews,Python,true,true,false,1,false,true,false,false +Sora-Kun/37392018,Sora-Kun,,false,false,false,0,false,false,false,false +gitlab-pkg/gitlab-vault,gitlab-pkg,Makefile,true,false,false,3,true,false,false,true +EarzS/Animalitos,EarzS,JavaScript,false,false,false,0,false,false,false,false +khud.katya/gateway,khud.katya,Java,false,false,false,0,false,false,false,false +rust-algorithms/queues,rust-algorithms,Rust,true,false,false,2,true,true,false,false +vylion/velascobot,vylion,Python,false,false,false,0,false,false,false,false +cjacobsen/icecast-balancer,cjacobsen,PHP,false,false,false,0,false,false,false,false +gitlab-org/codeclimate,gitlab-org,Ruby,false,false,false,0,false,false,false,false +modorg/zaki,modorg,Ruby,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/gitlab-patcher,gitlab-com,Go,true,false,false,1,false,true,false,false +teeuwen/libio,teeuwen,C,false,false,false,0,false,false,false,false +incaper/sispreco,incaper,PHP,true,false,false,2,true,true,false,false +incaper/rep2sql,incaper,PHP,false,false,false,0,false,false,false,false +mau21mau/sheetgo-test,mau21mau,Python,false,true,false,0,false,false,false,false +JamesPoole/facial-recognition-hog,JamesPoole,Python,false,false,false,0,false,false,false,false +Synder/Tokage,Synder,Python,false,true,false,0,false,false,false,false +flyingchipmunk/dotbot-yum,flyingchipmunk,Python,false,false,false,0,false,false,false,false +fira90/Bicimovil,fira90,PHP,false,false,false,0,false,false,false,false +AtsushiHirata/PythonNewbie,AtsushiHirata,Python,false,false,false,0,false,false,false,false +amirulfazlan/mudahborongv3,amirulfazlan,HTML,false,false,false,0,false,false,false,false +orama/site_v1,orama,JavaScript,false,false,false,0,false,false,false,false +smithhj2/3XA3_27,smithhj2,Python,false,false,false,0,false,false,false,false +luizcelso/RI-UTFPR,luizcelso,HTML,false,false,false,0,false,false,false,false +paololaurenti_cp/paololaurenti_cp.gitlab.io,paololaurenti_cp,CSS,true,false,false,2,false,true,true,false +danz/scrapy-proxies,danz,Python,false,false,false,0,false,false,false,false +MocoNinja/FPGSDAMII-WithAVengeance,MocoNinja,HTML,false,false,false,0,false,false,false,false +acostaj/bashmritools,acostaj,Smarty,false,false,false,0,false,false,false,false +cw-andrews/hug_test,cw-andrews,Python,true,true,false,1,false,true,false,false +AstroCarol/algoritmos,AstroCarol,C,false,false,false,0,false,false,false,false +ucgc/webClient,ucgc,JavaScript,false,false,false,0,false,false,false,false +mdanbari/adminpannel,mdanbari,CSS,false,false,false,0,false,false,false,false +tree_cripac/DeMeshNet,tree_cripac,JupyterNotebook,false,false,false,0,false,false,false,false +cerfacs/chemistry/cantera-avbp,cerfacs,C++,false,false,false,0,false,false,false,false +kicke/authenticator,kicke,Python,false,true,false,0,false,false,false,false +croosen/my-personal-website,croosen,CSS,true,false,false,3,true,true,true,false +brilliant-data/d3brush-frelard,brilliant-data,CSS,true,false,false,1,false,false,true,false +grep_jtv/jtv_webmanager,grep_jtv,Java,false,false,false,0,false,false,false,false +avernois/gouge,avernois,Lua,false,false,false,0,false,false,false,false +alelec/kodi/skin.estuary.corona,alelec,,false,false,false,0,false,false,false,false +InstitutMaupertuis/docker,InstitutMaupertuis,Shell,false,false,false,0,false,false,false,false +edomo/add-ons/devices-service,edomo,Go,false,false,false,0,false,false,false,false +noemie-kerroux/wp-helper-global-search,noemie-kerroux,PHP,false,false,false,0,false,false,false,false +fosfrancesco/foscarin-listening-test,fosfrancesco,JavaScript,false,false,false,0,false,false,false,false +franbonafina/FacturationSoft,franbonafina,,false,false,false,0,false,false,false,false +graphviz/graphviz-build,graphviz,Shell,false,false,false,0,false,false,false,false +open_ds/dq,open_ds,JupyterNotebook,false,false,false,0,false,false,false,false +Brohnesorge/SoldierZ,Brohnesorge,,false,false,false,0,false,false,false,false +teymoori/sematec_and,teymoori,Java,false,false,false,0,false,false,false,false +angular-material-dashboard/apps/amd-siteonclouds,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false +teymoori/php_sematec,teymoori,PHP,false,false,false,0,false,false,false,false +zpartakov/facturAcpMyPDD,zpartakov,PHP,false,false,false,0,false,false,false,false +quentin.bourasse.49/my-awesome-dvd,quentin.bourasse.49,HTML,false,false,false,0,false,false,false,false +javatar-2017-2018/manadium-laravel,javatar-2017-2018,PHP,true,false,false,1,false,true,false,false +schedule4j/schedule4j-cron,schedule4j,,true,false,true,1,false,true,false,false +schedule4j/schedule4j-core,schedule4j,,false,false,false,0,false,false,false,false +graphviz/graphviz.gitlab.io,graphviz,HTML,true,false,false,2,false,true,true,false +iota-x/iota-engine,iota-x,JavaScript,false,false,false,0,false,false,false,false +eigan/mediasort,eigan,PHP,true,false,false,1,false,true,false,false +uup-dump/api,uup-dump,PHP,false,false,false,0,false,false,false,false +suitbots/ftc_app,suitbots,Java,false,false,false,0,false,false,false,false +thelamer/taisun-website,thelamer,HTML,false,false,false,0,false,false,false,false +smondet/staticrypt-cli,smondet,JavaScript,false,false,false,0,false,false,false,false +SasLuca/LCSDiscordBot,SasLuca,Kotlin,false,false,false,0,false,false,false,false +ByungSunBae/PRshiny,ByungSunBae,R,false,false,false,0,false,false,false,false +mrksu/linux-notes,mrksu,,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-CriminalIntent-DialogFragment,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-CriminalIntent-SqliteDatabase,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-CriminalIntent-Toolbar,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-Project-FoodBus,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-SaveState,jeevak001,,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-CriminalIntent-RecyclerView,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-APITry-CriminalIntent-ViewPager,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-Project-NoteItOnline,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-Project-Techzei,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Android-Project-NoteIt,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/LibGDX-Game-MarioGame,jeevak001,Java,false,false,false,0,false,false,false,false +jeevak001/Web-Project-FoodBusWeb,jeevak001,PHP,false,false,false,0,false,false,false,false +Project-FiFo/otterx,Project-FiFo,Elixir,false,false,false,0,false,false,false,false +Project-FiFo/FiFo/howl,Project-FiFo,Erlang,true,false,false,2,false,true,false,false +Project-FiFo/etermcap,Project-FiFo,Erlang,false,false,false,0,false,false,false,false +Project-FiFo/ensq,Project-FiFo,Erlang,false,false,false,0,false,false,false,false +Project-FiFo/cowboy_oauth,Project-FiFo,Erlang,false,false,false,0,false,false,false,false +Project-FiFo/FiFo/cerberus,Project-FiFo,JavaScript,true,false,false,2,false,true,false,false +Project-FiFo/DalmatinerDB/dqe,Project-FiFo,Erlang,false,false,false,0,false,false,false,false +Project-FiFo/DalmatinerDB/dalmatinerpx,Project-FiFo,Erlang,true,false,false,2,false,true,false,false +Project-FiFo/DalmatinerDB/dalmatinerdb-datasource,Project-FiFo,JavaScript,false,false,false,0,false,false,false,false +Project-FiFo/DalmatinerDB/dalmatinerfe,Project-FiFo,JavaScript,true,false,false,2,false,true,false,false +Project-FiFo/DalmatinerDB/bitmap,Project-FiFo,Erlang,true,false,false,4,false,false,false,false +alextra/rancher_catalog,alextra,Smarty,false,false,false,0,false,false,false,false +eugenweissbart/pyfimon,eugenweissbart,Python,false,false,false,0,false,false,false,false +ismail-s/my-build-your-own-lisp,ismail-s,C,true,false,false,2,true,true,false,false +pierre1/pyconfr2017,pierre1,JavaScript,false,false,false,0,false,false,false,false +shouvik.aust/Database-CRUD,shouvik.aust,PHP,false,false,false,0,false,false,false,false +bottroper-werkstatt-cvjm/bottroper-werkstatt-cvjm.gitlab.io,bottroper-werkstatt-cvjm,Haskell,true,false,false,1,false,true,false,false +CallumDenby/base-node,CallumDenby,JavaScript,false,false,false,0,false,false,false,false +Pedro_Alferes/crud,Pedro_Alferes,TypeScript,false,false,false,0,false,false,false,false +DSASanFrancisco/docs,DSASanFrancisco,Shell,false,false,false,0,false,false,false,false +yantra/compiler/yep,yantra,C,false,false,false,0,false,false,false,false +JigsawMaster/Seb,JigsawMaster,JavaScript,false,false,false,0,false,false,false,false +openvm/openvm,openvm,Go,true,false,false,3,true,true,false,false +solar-car/solar-car-telemetry,solar-car,JavaScript,false,false,false,0,false,false,false,false +Ajaw/iwsk-rs232,Ajaw,C#,false,false,false,0,false,false,false,false +a.halepotra90/Kotlin_recycleview,a.halepotra90,,false,false,false,0,false,false,false,false +andrewh-blockchain/ethereum/token_stuff,andrewh-blockchain,,false,false,false,0,false,false,false,false +solbianca/code_guideline,solbianca,,false,false,false,0,false,false,false,false +skreech/networks-lab,skreech,C,false,false,false,0,false,false,false,false +Nicd/mbu,Nicd,Elixir,true,false,false,1,false,true,false,false +Retr0_System/javascript-file-encrypter,Retr0_System,CSS,false,false,false,0,false,false,false,false +tpi115-2017/ong-tracoda,tpi115-2017,HTML,false,false,false,0,false,false,false,false +sampadashboard/infocity,sampadashboard,Ruby,true,false,false,1,false,true,false,false +Morriar/inf3143_171_tp1_public,Morriar,Shell,false,false,false,0,false,false,false,false +asqatasun-websites/www-asqatasun-org,asqatasun-websites,CSS,true,false,false,1,false,true,false,false +Problembeloeser/Bell-UW-Navi,Problembeloeser,TeX,false,false,false,0,false,false,false,false +yaminidurga/web-assignments,yaminidurga,JavaScript,false,false,false,0,false,false,false,false +md31415/PyGraphEdit,md31415,Python,false,false,false,0,false,false,false,false +DimitriDnt/developpement-web,DimitriDnt,HTML,false,false,false,0,false,false,false,false +manigandand/gitlab-ci-test,manigandand,Go,false,false,false,0,false,false,false,false +ali_reza/Allover,ali_reza,JavaScript,false,false,false,0,false,false,false,false +TheGeiger/spider,TheGeiger,,false,false,false,0,false,false,false,false +slcu/teamHJ/pau/RegionsAnalysis,slcu,Matlab,false,false,false,0,false,false,false,false +CreatureSurvive-Tweaks/PullToClear,CreatureSurvive-Tweaks,Logos,false,false,false,0,false,false,false,false +toornm/angular2JavaEE,toornm,TypeScript,false,false,true,0,false,false,false,false +shingrey/WebPageAngular,shingrey,,false,false,false,0,false,false,false,false +beesleeps/gallery,beesleeps,TypeScript,false,false,false,0,false,false,false,false +senforsce/skills/web,senforsce,JavaScript,false,false,false,0,false,false,false,false +CS-Fall17-Rutgers-Group3/A1,CS-Fall17-Rutgers-Group3,C++,false,false,false,0,false,false,false,false +LoKiMoKi/Ping,LoKiMoKi,C#,false,false,false,0,false,false,false,false +chuck-mean-stack/somean,chuck-mean-stack,JavaScript,false,false,false,0,false,false,false,false +Fabriko-Projects/Shake-Table,Fabriko-Projects,OpenSCAD,false,false,false,0,false,false,false,false +mmmickmason2/ether-router-master,mmmickmason2,JavaScript,true,false,false,7,true,true,false,true +no-vacancies/nvaca-killbot,no-vacancies,Python,false,true,false,0,false,false,false,false +Hannes42/btw17maps,Hannes42,,false,false,false,0,false,false,false,false +demo-android-kotlin/TicTacToy,demo-android-kotlin,Kotlin,false,false,false,0,false,false,false,false +daufinsyd/supertux,daufinsyd,C++,false,false,false,0,false,false,false,false +opolat/VacationPlannerRestService,opolat,Java,false,false,false,0,false,false,false,false +Conan_Kudo/snapcore-mkrpmtree,Conan_Kudo,Python,true,false,false,1,true,false,false,false +open-pipeline/prman_pydenoise,open-pipeline,Python,false,true,false,0,false,false,false,false +hitch90/psds,hitch90,Vue,false,false,false,0,false,false,false,false +LDalby/almass,LDalby,HTML,false,false,false,0,false,false,false,false +hop23typhu/project-todo,hop23typhu,JavaScript,false,false,false,0,false,false,false,false +youshoubianer/ngWallpaper,youshoubianer,JavaScript,false,false,false,0,false,false,false,false +ruslan.levitskiy/NotifyOPR,ruslan.levitskiy,JavaScript,false,false,false,0,false,false,false,false +jonellrz/upc_pro1,jonellrz,C++,false,false,false,0,false,false,false,false +laai/website,laai,HTML,true,false,false,2,false,false,true,false +banminkyoz/angular-cli-seed,banminkyoz,TypeScript,false,false,false,0,false,false,false,false +bolorundurowb/Week16,bolorundurowb,JavaScript,false,false,false,0,false,false,false,false +bakedalaska/adolfcore-Vergeltung,bakedalaska,C++,false,false,false,0,false,false,false,false +robojeb/JFlash,robojeb,HTML,false,false,false,0,false,false,false,false +avikde/SOEM,avikde,C,false,false,false,0,false,false,false,false +DeeJayElly/eduBar,DeeJayElly,,false,false,false,0,false,false,false,false +ahrnjic2/RedmineTasks,ahrnjic2,Java,false,false,false,0,false,false,false,false +Project-FiFo/FiFo/help,Project-FiFo,,false,false,false,0,false,false,false,false +HotChocJS/HotChocJS,HotChocJS,JavaScript,false,false,false,0,false,false,false,false +mielune/alpine-apache-arm,mielune,Shell,false,false,false,0,false,false,false,false +willhallonline/demo-project,willhallonline,PHP,true,false,false,1,false,true,false,false +mielune/alpine-mariadb-arm,mielune,Shell,false,false,false,0,false,false,false,false +karabijavad/vault-init-config,karabijavad,Shell,false,false,false,0,false,false,false,false +rationalcyber/splunk_syslog_inputs,rationalcyber,Python,false,false,false,0,false,false,false,false +NicolasCorrea/calidad2ficha1355170,NicolasCorrea,,false,false,false,0,false,false,false,false +iitalics/quality,iitalics,OCaml,false,false,false,0,false,false,false,false +thync/ddos-detect,thync,Python,false,false,false,0,false,false,false,false +uts-magic-lab/react-ros-boilerplate,uts-magic-lab,JavaScript,true,false,false,1,false,true,false,false +Vimallakzz/Company_Management,Vimallakzz,Java,false,false,false,0,false,false,false,false +tripetto/collector,tripetto,TypeScript,false,false,false,0,false,false,false,false +soc-and-functional/soc-fpga,soc-and-functional,VHDL,false,false,false,0,false,false,false,false +gt8/open-source/elixir/eidetic,gt8,Elixir,true,false,false,3,true,true,false,false +gt8/open-source/elixir/eidetic-eventstore-mongodb,gt8,Elixir,true,false,false,3,false,false,false,false +gt8/open-source/elixir/eidetic-eventstore-subscriber-kafka,gt8,Elixir,false,false,false,0,false,false,false,false +tripetto/blocks/boilerplate,tripetto,JavaScript,true,false,false,1,false,false,false,false +jegkristaly/backend,jegkristaly,JavaScript,false,false,false,0,false,false,false,false +tslocum/medinet,tslocum,Go,true,false,false,2,true,true,false,false +Deediezi/openclassrooms,Deediezi,PHP,false,false,false,0,false,false,false,false +geoffrey-grebert/pgadmin4-importer,geoffrey-grebert,C++,true,false,false,3,true,true,false,false +ali-shokoohi/notion,ali-shokoohi,Python,false,false,false,0,false,false,false,false +cct0419.josecamelo/trabalhoDeModelagemCamelo,cct0419.josecamelo,Java,false,false,false,0,false,false,false,false +alenDeveloper/small-game,alenDeveloper,Java,false,false,false,0,false,false,false,false +gmgeo/osmic,gmgeo,HTML,false,false,false,0,false,false,false,false +carlos_olarte/SiLVer,carlos_olarte,,false,false,false,0,false,false,false,false +Open-Interject/Data-Latinizer,Open-Interject,PowerShell,false,false,false,0,false,false,false,false +bplatta/proto-api,bplatta,Python,true,true,false,5,true,true,false,false +nathansb/learnwebscrapingbydoing,nathansb,Python,false,false,false,0,false,false,false,false +Dannel/Midnight,Dannel,CSS,false,false,false,0,false,false,false,false +Habibovic/predavanje2,Habibovic,Java,false,false,false,0,false,false,false,false +maringa-dojo/peripecias,maringa-dojo,,false,false,false,0,false,false,false,false +nikhil.iitmandi/deformed-text-classification-lstm-keras,nikhil.iitmandi,Python,false,false,false,0,false,false,false,false +vise890/zookareg,vise890,Clojure,true,false,false,2,false,true,true,false +ThirdNeurodactyls/Neurodactyl3.0,ThirdNeurodactyls,HTML,false,false,false,0,false,false,false,false +Papilio-FPGA/Papilio-Environment,Papilio-FPGA,,false,false,false,0,false,false,false,false +acurrie/icons,acurrie,,false,false,false,0,false,false,false,false +tfalbo/portfolio-site,tfalbo,HTML,false,false,false,0,false,false,false,false +improbible/landing-page,improbible,CSS,true,false,false,1,true,false,false,false +ArielCostas03/ac-website,ArielCostas03,PHP,false,false,false,0,false,false,false,false +Avris/Dotenv,Avris,PHP,true,false,false,1,false,true,false,false +Retr0_System/appinventor-sources,Retr0_System,Java,false,false,false,0,false,false,false,false +Retr0_System/appinventor-extensions,Retr0_System,Java,false,false,false,0,false,false,false,false +havk/tvpvod,havk,Python,false,false,false,0,false,false,false,false +Retr0_System/the-swift-programming-language-in-chinese,Retr0_System,CSS,false,false,false,0,false,false,false,false +Retr0_System/ccs-pysecuretransport,Retr0_System,Python,false,false,false,0,false,false,false,false +Retr0_System/fontmake,Retr0_System,Python,false,true,false,0,false,false,false,false +Retr0_System/AppImageKit,Retr0_System,C,false,false,false,0,false,false,false,false +lebrad/lebrad.gitlab.io,lebrad,CSS,true,false,false,2,false,true,true,false +trossky-dev/training/mobile/kotlin/learn-kotlin,trossky-dev,Kotlin,false,false,false,0,false,false,false,false +paloga/babynames,paloga,Kotlin,false,false,false,0,false,false,false,false +uup-dump/fileinfo,uup-dump,,false,false,false,0,false,false,false,false +crajah/scala_interview,crajah,Scala,false,false,false,0,false,false,false,false +RJain12/Random-Tag-Blargbot,RJain12,,false,false,false,0,false,false,false,false +bytecrowd/behametrics-ml,bytecrowd,Python,false,false,false,0,false,false,false,false +Project-FiFo/gitlabctl,Project-FiFo,Elixir,false,false,false,0,false,false,false,false +training-telkomsigma-201710/catalog,training-telkomsigma-201710,Java,true,false,true,2,true,false,true,false +RomanowAlex/deploy,RomanowAlex,Java,true,false,false,2,true,false,true,false +niklasenglert/hsg-demo,niklasenglert,HTML,false,false,false,0,false,false,false,false +Neelum/clinic_software,Neelum,JavaScript,false,false,false,0,false,false,false,false +municz/books.rb,municz,Ruby,true,false,false,1,false,true,false,false +1oglop1/gitlab-runner-docker,1oglop1,Makefile,false,false,false,0,false,false,false,false +elchebbi.ahmed/PushNotificationWithPHP,elchebbi.ahmed,PHP,false,false,false,0,false,false,false,false +sd1-ec-2017-2/p2-g3,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +sd1-ec-2017-2/p2-g4,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +appauldev/cs32ay1718,appauldev,C,false,false,false,0,false,false,false,false +JamesPoole/keras-image-classification,JamesPoole,Python,false,false,false,0,false,false,false,false +mity/mustache4c,mity,C,false,false,false,0,false,false,false,false +txl/home,txl,CSS,true,false,false,1,false,false,true,false +elkathino/smartadmin,elkathino,PHP,false,false,false,0,false,false,false,false +txl/resumeold,txl,CSS,true,false,false,1,false,false,true,false +ferdidolot/bdma-shared,ferdidolot,,false,false,false,0,false,false,false,false +eSpace-epfl/rospace/core,eSpace-epfl,Python,true,false,false,1,false,true,false,false +eSpace-epfl/rospace/ncs-models,eSpace-epfl,Python,false,false,false,0,false,false,false,false +tjvb/testreportmixer,tjvb,PHP,true,false,false,1,false,true,false,false +tripetto/demo,tripetto,TypeScript,true,false,false,1,false,false,false,false +janardhanpshetty/movie-sentiment-herokuapp,janardhanpshetty,CSS,false,false,false,0,false,false,false,false +dawehner/modules_elm,dawehner,JavaScript,false,false,false,0,false,false,false,false +lngallo/ICC,lngallo,Java,false,false,false,0,false,false,false,false +dnldsht/ro,dnldsht,AMPL,false,false,false,0,false,false,false,false +trelloslack/HipChat,trelloslack,,false,false,false,0,false,false,false,false +raynhl/image_processing_demo,raynhl,HTML,false,false,false,0,false,false,false,false +tiradoe/fourteeners-docker,tiradoe,HTML,false,false,false,0,false,false,false,false +AmadeuAntunes/CRUDListaObj,AmadeuAntunes,C#,false,false,false,0,false,false,false,false +valera540/Tank_Chaos,valera540,C++,false,false,false,0,false,false,false,false +0emb/ping_pong_soft,0emb,C++,false,false,false,0,false,false,false,false +trkadi/lengyelkurzus,trkadi,CSS,false,false,false,0,false,false,false,false +Capt.Rogers/Python_Metadata-XML,Capt.Rogers,Python,false,true,false,0,false,false,false,false +Capt.Rogers/sbMACRO_CLI,Capt.Rogers,Python,false,true,false,0,false,false,false,false +Capt.Rogers/sbMACRO_WebApp-in_progress,Capt.Rogers,Python,false,true,false,0,false,false,false,false +hagsteel/cryptoprice,hagsteel,Rust,false,false,false,0,false,false,false,false +anuragshas/collegedisha,anuragshas,CSS,false,false,false,0,false,false,false,false +nitrogenreaction/imperatoriae,nitrogenreaction,JavaScript,false,false,false,0,false,false,false,false +yiwei.she/tf_fcn,yiwei.she,JupyterNotebook,false,false,false,0,false,false,false,false +pool-hockey-dg/archives,pool-hockey-dg,HTML,false,false,false,0,false,false,false,false +jndl/python,jndl,JupyterNotebook,false,false,false,0,false,false,false,false +sebuah-grup/PPWDioBrando,sebuah-grup,Python,true,true,false,2,false,true,true,false +kamirama/glow-sticks,kamirama,Lua,false,false,false,0,false,false,false,false +KelompokB10PPW2017/konekin,KelompokB10PPW2017,CSS,true,false,false,2,false,true,true,false +femprocomuns/ldapclient,femprocomuns,Python,false,true,false,0,false,false,false,false +dawehner/permissions_elm,dawehner,Elm,false,false,false,0,false,false,false,false +mrifqifathurrahman/tugas1kelompokppw,mrifqifathurrahman,CSS,true,false,false,2,false,true,true,false +zauster/DESTA,zauster,R,false,false,false,0,false,false,false,false +Haltestelle/Forum,Haltestelle,PHP,false,false,false,0,false,false,false,false +rniederhauser/AliTec,rniederhauser,C#,false,false,false,0,false,false,false,false +sdl2-swift/SDL2,sdl2-swift,Swift,false,false,false,0,false,false,false,false +eduardo.marin/appconn,eduardo.marin,Java,false,false,true,0,false,false,false,false +Plunder/Light_Burn,Plunder,C#,false,false,false,0,false,false,false,false +nanotrix/ntx-net-starter,nanotrix,C#,false,false,false,0,false,false,false,false +martimarkov/postgresify,martimarkov,PHP,false,false,false,0,false,false,false,false +sepulvedamendezmauricio/proyectoDeDispositivosMoviles,sepulvedamendezmauricio,CSS,false,false,false,0,false,false,false,false +eddwinpaz/renty-dashboard,eddwinpaz,Python,false,false,false,0,false,false,false,false +ckaufmann/kotlin-sort,ckaufmann,Kotlin,false,false,false,0,false,false,false,false +stuartcrouch/vwfs-challenge,stuartcrouch,C#,false,false,false,0,false,false,false,false +noraj/ruby-cheatsheet,noraj,,true,false,false,1,false,true,false,false +conglevalleycampus/Bluetooth-Scanner,conglevalleycampus,Java,false,false,false,0,false,false,false,false +PRTG/PRTGBaseProject,PRTG,,false,false,false,0,false,false,false,false +PRTG/Device-Templates/Checkpoint,PRTG,,true,false,false,1,true,false,false,false +opolat/my-jenkins,opolat,,false,false,false,0,false,false,false,false +willhallonline/file_system_switch,willhallonline,,false,false,false,0,false,false,false,false +dhanar_santika/Tugas-1-PPW-C-14,dhanar_santika,JavaScript,true,false,false,2,false,true,true,false +serpro/gamification-dashboard,serpro,CSS,true,false,false,2,true,true,false,false +cyejing/fast-ngrok,cyejing,Java,false,false,true,0,false,false,false,false +nexthub-br/nexthub.com.br,nexthub-br,CSS,true,false,false,1,false,false,true,false +pilloPl/accounting,pilloPl,Java,false,false,false,0,false,false,false,false +nav/the-snake-pipeline,nav,JavaScript,true,false,false,2,false,true,true,false +crunching-data/learn-by-example,crunching-data,JupyterNotebook,false,false,false,0,false,false,false,false +atoxiam/Floppy-Fighters,atoxiam,C++,false,false,false,0,false,false,false,false +smvoss/vfio,smvoss,Shell,false,false,false,0,false,false,false,false +jimsy/ip,jimsy,Elixir,true,false,false,1,false,true,false,false +Calinou/godot-builds,Calinou,Batchfile,true,false,false,4,true,true,true,false +dzaporozhets/amisafe,dzaporozhets,Shell,false,false,false,0,false,false,false,false +marklj/webpack-base,marklj,JavaScript,false,false,false,0,false,false,false,false +chillcoding-at-the-beach/my-template-app,chillcoding-at-the-beach,Kotlin,false,false,false,0,false,false,false,false +masonraus/LostArtist,masonraus,Lua,false,false,false,0,false,false,false,false +tormod/level2mooh,tormod,Assembly,false,false,false,0,false,false,false,false +mxklb/cuteproject,mxklb,Shell,true,false,false,5,true,true,true,true +arthurzinck/site-cv17,arthurzinck,HTML,true,false,false,2,false,true,true,false +dosshell/tinycsockets,dosshell,C++,true,false,false,1,false,true,false,false +elchebbi.ahmed/AIServicewebAcmearmani,elchebbi.ahmed,Java,false,false,false,0,false,false,false,false +elchebbi.ahmed/AIServicewebAcmearmaniReport,elchebbi.ahmed,TeX,false,false,false,0,false,false,false,false +tollyx/tollyx.gitlab.io,tollyx,CSS,true,false,false,1,false,true,false,false +tenzing/shared-array,tenzing,C,true,false,false,2,true,false,true,false +Blinkmage/ansible-study-kit,Blinkmage,,false,false,false,0,false,false,false,false +PearsonLawrence/TrailsOfWukong,PearsonLawrence,C++,false,false,false,0,false,false,false,false +talyh/InfiniteRunner,talyh,C#,false,false,false,0,false,false,false,false +Retr0_System/libotr,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/pidgin_otr,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/qemu,Retr0_System,C,false,false,false,0,false,false,false,false +bhdryrdm/W-ORM,bhdryrdm,C#,false,false,false,0,false,false,false,false +mrdeveloper28/M2_Messenger,mrdeveloper28,C#,false,false,false,0,false,false,false,false +Retr0_System/firewall,Retr0_System,PHP,false,false,false,0,false,false,false,false +Retr0_System/base,Retr0_System,Java,false,false,false,0,false,false,false,false +5hanth/estatechain-api,5hanth,Ruby,false,false,false,0,false,false,false,false +Ezebert/grafos,Ezebert,Java,false,false,false,0,false,false,false,false +kvalev/caffe-models,kvalev,,false,false,false,0,false,false,false,false +degiant/httpsch/Heartbeat,degiant,,false,false,false,0,false,false,false,false +oanhduong/java-nangcao,oanhduong,Java,false,false,false,0,false,false,false,false +joncedimov/LAD_EITD,joncedimov,TeX,false,false,false,0,false,false,false,false +blndr/lyst,blndr,Python,false,true,false,0,false,false,false,false +mghmajid/hozoor_ghiab,mghmajid,C#,false,false,false,0,false,false,false,false +griest/pokeplayer,griest,JavaScript,true,false,false,3,true,true,true,false +junioalmeida/slim-framework-swagger-json-and-viewer,junioalmeida,HTML,false,false,false,0,false,false,false,false +kasprus/reversi_ai,kasprus,Python,false,false,false,0,false,false,false,false +cjohnst4/Wedbush-SIBC,cjohnst4,Python,false,false,false,0,false,false,false,false +0x4ndr3/blog_post_csrf_bypass_with_cgihttpserver,0x4ndr3,PHP,false,false,false,0,false,false,false,false +Zipcore/Prophunt-TauntGrenade,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +ristes/wp-2017,ristes,Java,false,false,false,0,false,false,false,false +Kewaii/Store-Roleta,Kewaii,SourcePawn,false,false,false,0,false,false,false,false +914995hb/test-mnm-1,914995hb,C++,false,false,false,0,false,false,false,false +maikeme/generate,maikeme,Go,false,false,false,0,false,false,false,false +StrangeHare/WeatherInCountries,StrangeHare,Kotlin,false,false,false,0,false,false,false,false +tripetto/examples/react,tripetto,TypeScript,true,false,false,1,false,true,false,false +gitlab-com/ci-prometheus-configuration,gitlab-com,,true,false,false,2,false,true,false,false +judahnator/isjudahonfire,judahnator,HTML,true,false,false,1,false,true,false,false +MDA-Courtyard/RespiRate,MDA-Courtyard,Python,false,false,false,0,false,false,false,false +ad-si-2017-2/p2-g4,ad-si-2017-2,HTML,false,false,false,0,false,false,false,false +chvanikoff/mnesia-demo,chvanikoff,Elixir,true,false,false,1,true,false,false,false +novy4/telegram-bot,novy4,Python,true,false,false,3,true,true,true,false +PushTheLimits/Sourcemod/RoundEndEnforcer,PushTheLimits,SourcePawn,true,false,false,1,true,false,false,false +Zipcore/Prophunt-ObserverRules,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +Zipcore/Prophunt-Antighosting,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +JBClion/Evoria,JBClion,JavaScript,false,false,false,0,false,false,false,false +kritsadapk/ost-time-stamp,kritsadapk,JavaScript,false,false,false,0,false,false,false,false +jasontang736/gash,jasontang736,C++,false,false,false,0,false,false,false,false +rekm/DirSurveiller,rekm,C,false,false,false,0,false,false,false,false +StackBricks/ansible-role-template,StackBricks,,false,false,false,0,false,false,false,false +reading-room/www,reading-room,Go,true,false,false,1,true,false,false,false +stevage/mapbox2tangram,stevage,JavaScript,false,false,false,0,false,false,false,false +aurogon/SSW,aurogon,JavaScript,false,false,false,0,false,false,false,false +hcurnor/Angular-Material-Template,hcurnor,JavaScript,false,false,false,0,false,false,false,false +Nudin/flossbrowser,Nudin,Haskell,false,false,false,0,false,false,false,false +BuildStream/bst-external,BuildStream,Python,true,false,false,5,false,true,false,false +karroffel/pum,karroffel,GDScript,false,false,false,0,false,false,false,false +OS_course_sharif_abehnamnia_amohyeddin/OS_Project,OS_course_sharif_abehnamnia_amohyeddin,C,false,false,false,0,false,false,false,false +xjoao/dual6.3.4,xjoao,C#,false,false,false,0,false,false,false,false +maikeme/encrypt,maikeme,Go,false,false,false,0,false,false,false,false +jeroenvisser101/thats-enough,jeroenvisser101,JavaScript,false,false,false,0,false,false,false,false +EnesZ/zadaca,EnesZ,Java,false,false,false,0,false,false,false,false +Spring1944/spring1944,Spring1944,Lua,false,false,false,0,false,false,false,false +zyrthofar/immutable,zyrthofar,Ruby,true,false,false,1,false,true,false,false +hagen666/dbms-impl,hagen666,C++,false,false,false,0,false,false,false,false +yarshastudio/media-manager,yarshastudio,PHP,false,false,false,0,false,false,false,false +revsys/docker-builds,revsys,Shell,false,false,false,0,false,false,false,false +youshoubianer/get-web-icon,youshoubianer,JavaScript,false,false,false,0,false,false,false,false +libertarian-party/party_website,libertarian-party,Ruby,true,false,false,1,false,true,false,false +sjustfly/IISpecs,sjustfly,Ruby,false,false,false,0,false,false,false,false +Starcraft2CVH/Bot,Starcraft2CVH,JupyterNotebook,false,false,false,0,false,false,false,false +quanten/sketchnotes,quanten,,false,false,false,0,false,false,false,false +Kamgor2/gulp-mariadb,Kamgor2,JavaScript,false,false,false,0,false,false,false,false +sethamcbee/nova,sethamcbee,C,false,false,false,0,false,false,false,false +eriveltonguedes/acidentes,eriveltonguedes,HTML,false,false,false,0,false,false,false,false +guiriduro/pyra,guiriduro,Python,true,true,false,8,true,true,false,true +nebogeo/ym2612,nebogeo,C++,false,false,false,0,false,false,false,false +a.elttil/OVF_template,a.elttil,Shell,false,false,false,0,false,false,false,false +atoxiam/GravityGrab,atoxiam,C++,false,false,false,0,false,false,false,false +issuu/3-ProblemaAREAS,issuu,,false,false,false,0,false,false,false,false +phandle/bits-and-bobs,phandle,PHP,false,false,false,0,false,false,false,false +ibcomputing/ibcomputing.gitlab.io,ibcomputing,CSS,true,false,false,1,false,true,false,false +fahimhasan26897846/Doctor_Management_System,fahimhasan26897846,JavaScript,false,false,false,0,false,false,false,false +Tammo0987/T-Cloud,Tammo0987,Java,false,false,false,0,false,false,false,false +mofuss/mofuss,mofuss,R,false,false,false,0,false,false,false,false +bgez/demos/BGEz_LandGen,bgez,Python,false,false,false,0,false,false,false,false +LeoSalemann/iot110-leos,LeoSalemann,Python,false,false,false,0,false,false,false,false +mereoste/HoloChart,mereoste,C#,false,false,false,0,false,false,false,false +holman_dw/shapefile,holman_dw,Rust,false,false,false,0,false,false,false,false +freewat/freewat,freewat,Python,false,false,false,0,false,false,false,false +proxi.cloud/ios-sdk,proxi.cloud,Objective-C,false,false,false,0,false,false,false,false +toni.martincic/Eureka,toni.martincic,JavaScript,true,false,true,1,true,false,false,false +latifa_saee/robotani,latifa_saee,HTML,false,false,false,0,false,false,false,false +evman/environment,evman,Shell,true,false,false,1,true,false,false,false +freedesktop-sdk/json2bst,freedesktop-sdk,Python,true,false,false,4,true,true,false,false +obay/Odoo-Employee-Loans-Module,obay,Python,false,false,false,0,false,false,false,false +uit-sfb/jobmanager,uit-sfb,Java,true,false,true,3,true,true,true,false +eyeo/websites/cms,eyeo,Python,false,false,false,0,false,false,false,false +remram44/liecoding,remram44,Python,false,false,false,0,false,false,false,false +RafaBG/TSQLV4,RafaBG,PLSQL,false,false,false,0,false,false,false,false +nathanfaucett/rs-specs_guided_join,nathanfaucett,Rust,true,false,false,1,false,true,false,false +laboratorio-it/mobile-development/cordova-framework/ballcontrol,laboratorio-it,JavaScript,false,false,false,0,false,false,false,false +laboratorio-it/mobile-development/cordova-framework/calrut,laboratorio-it,JavaScript,false,false,false,0,false,false,false,false +waterkip/webservice-overheidio,waterkip,Perl,true,false,false,1,false,true,false,false +sylvain.desroziers/chps,sylvain.desroziers,C++,false,false,false,0,false,false,false,false +nathanfaucett/rs-specs_sprite,nathanfaucett,Rust,true,false,false,1,false,true,false,false +TestType/SeleniumBot,TestType,C#,false,false,false,0,false,false,false,false +jknix/mrcoolpants17,jknix,Python,false,false,false,0,false,false,false,false +tnir/speedtest-mon,tnir,,false,false,false,0,false,false,false,false +isf-traffic/isf-traffic.gitlab.io,isf-traffic,HTML,true,false,false,3,true,false,true,false +leamsigc/bulma-portfolio,leamsigc,HTML,false,false,false,0,false,false,false,false +xsyntax/PythonMUD,xsyntax,,false,false,false,0,false,false,false,false +yeitmycorrea/my-taller1,yeitmycorrea,PHP,false,false,false,0,false,false,false,false +Nekloth/zgur-flight-monitor,Nekloth,Shell,false,false,false,0,false,false,false,false +cburgard/python-music-tools,cburgard,Python,false,false,false,0,false,false,false,false +DanielBocksteger/BOApplePencilReachability,DanielBocksteger,Swift,false,false,false,0,false,false,false,false +seanwbren/zeroSai,seanwbren,CSS,false,false,false,0,false,false,false,false +raz0ntex/processor-management_lockOS-Project,raz0ntex,C,false,false,false,0,false,false,false,false +Glenans-CDMEB/DOC.moniteurs-Twenty-sixteen-child-theme,Glenans-CDMEB,PHP,false,false,false,0,false,false,false,false +PetrovOleg/Tetris2D,PetrovOleg,,false,false,false,0,false,false,false,false +VV5/climate-change,VV5,Vue,true,false,false,1,false,true,false,false +PetrovOleg/Test2,PetrovOleg,,false,false,false,0,false,false,false,false +TortueMat/simple_lib,TortueMat,Python,true,false,false,2,true,true,false,false +sleyter45/Bipylvo,sleyter45,Python,false,false,false,0,false,false,false,false +Retr0_System/SoftEtherVPN,Retr0_System,C,false,false,false,0,false,false,false,false +zyrthofar/api_errors,zyrthofar,Ruby,true,false,false,1,false,true,false,false +GCinema/NonMainCode/ttt,GCinema,Lua,false,false,false,0,false,false,false,false +mikedupree/node-playground,mikedupree,JavaScript,false,false,false,0,false,false,false,false +aleks001/haproxy18-centos,aleks001,Shell,true,false,false,1,false,true,false,false +weznon/dotfiles2,weznon,Vimscript,false,false,false,0,false,false,false,false +imperial-physics/masters-project_molecular-trap-chip/masters-code/stark-shift-calculator,imperial-physics,Mathematica,false,false,false,0,false,false,false,false +starshell/subnet,starshell,Rust,false,false,false,0,false,false,false,false +catalyst-it/vagrant-lxc,catalyst-it,Ruby,false,false,false,0,false,false,false,false +openchess/openchessdb,openchess,Kotlin,true,false,false,2,true,true,false,false +freshcode-public/i-video-editor,freshcode-public,TypeScript,true,false,false,4,true,true,true,true +mozhdeh.bagheri/mobilephone,mozhdeh.bagheri,C#,false,false,false,0,false,false,false,false +nolith/hapi-helm,nolith,Ruby,false,false,false,0,false,false,false,false +eyeo/websites/help.eyeo.com,eyeo,CSS,true,false,false,2,true,false,true,false +Dragas/Khan-4,Dragas,Kotlin,true,false,false,2,true,true,false,false +christopheGueroult/html-css-js,christopheGueroult,HTML,false,false,false,0,false,false,false,false +flat-galaxy/flattrack,flat-galaxy,Python,true,true,false,1,false,true,false,false +ac-aglensmith/sphud,ac-aglensmith,JavaScript,false,false,false,0,false,false,false,false +rvandegrift/debian-cloud-tests,rvandegrift,Python,false,false,false,0,false,false,false,false +chathika/EMD,chathika,Python,false,false,false,0,false,false,false,false +sumner/offlinemsmtp,sumner,Python,true,false,false,3,true,false,true,false +cour-secu/backend,cour-secu,JavaScript,false,false,false,0,false,false,false,false +xgboost-python-examples/xgboost-regression,xgboost-python-examples,JupyterNotebook,false,false,false,0,false,false,false,false +JGFlores/TesisAleXandra,JGFlores,TeX,false,false,false,0,false,false,false,false +lisp-journey/lisp-journey.gitlab.io,lisp-journey,Makefile,true,false,false,1,false,true,false,false +ccpem/ccpem,ccpem,JavaScript,false,false,false,0,false,false,false,false +DarkIsDude/coffer,DarkIsDude,JavaScript,false,false,false,0,false,false,false,false +Nicoweed/python_crawling,Nicoweed,Python,false,false,false,0,false,false,false,false +takluyver/kartoffel,takluyver,Python,false,false,false,0,false,false,false,false +krassm88/santa,krassm88,HTML,false,false,false,0,false,false,false,false +blocksimple/static-site,blocksimple,HTML,false,false,false,0,false,false,false,false +TownPound/Cyclos/ScottLogic.mobile.react-native/TownPoundCore,TownPound,JavaScript,false,false,false,0,false,false,false,false +LonghornHDTV/Bedwars,LonghornHDTV,Java,false,false,false,0,false,false,false,false +gitlab-escuela-it/pruebas-clase-2,gitlab-escuela-it,,true,false,false,3,true,true,true,false +Dakror/Anal-Mitschrift,Dakror,TeX,false,false,false,0,false,false,false,false +johangm90/cloudmusic-qml,johangm90,QML,false,false,false,0,false,false,false,false +energyincities/python-ehub,energyincities,Python,true,true,false,1,false,true,false,false +doerfli/wo-ist,doerfli,Kotlin,true,false,false,1,true,false,false,false +marens101/mBot-Admin,marens101,C#,false,false,false,0,false,false,false,false +dannyhh/HangMan,dannyhh,Java,false,false,false,0,false,false,false,false +1299657921/webpack_demo,1299657921,JavaScript,false,false,false,0,false,false,false,false +cip-project/cip-core,cip-project,Shell,false,false,false,0,false,false,false,false +libtom/libtomcrypt,libtom,C,false,false,false,0,false,false,false,false +senforsce/skills/api,senforsce,JavaScript,false,false,false,0,false,false,false,false +arm-hpc/benchmarks/coral-2/PENNANT,arm-hpc,C++,false,false,false,0,false,false,false,false +Loaded-commerce/Loaded-CE-7.5,Loaded-commerce,JavaScript,false,false,false,0,false,false,false,false +burke-software/libsodium.js-types,burke-software,TypeScript,false,false,false,0,false,false,false,false +harbottle/omnibus-bolt,harbottle,Ruby,true,false,false,2,true,false,false,true +emanuel/texstudio-darcula-theme,emanuel,,false,false,false,0,false,false,false,false +SummerBulb/The-Natural-Selection,SummerBulb,Scala,false,false,true,0,false,false,false,false +mindstormer619/class-scheduler-bot,mindstormer619,,false,false,false,0,false,false,false,false +paprotsky/todo-list,paprotsky,PHP,false,false,false,0,false,false,false,false +enl/iitc-plugin-telegram-livelocation,enl,JavaScript,false,false,false,0,false,false,false,false +gymboh32/neighborhood,gymboh32,Ada,false,false,false,0,false,false,false,false +Samantha.ai/Samantha.jl,Samantha.ai,Julia,true,false,false,1,false,true,false,false +Samantha.ai/SamanthaTools.jl,Samantha.ai,Julia,false,false,false,0,false,false,false,false +mario.perez/class-recycler-example,mario.perez,Java,false,false,false,0,false,false,false,false +filicmia/Usluge_zasnovane_na_lokaciji,filicmia,R,false,false,false,0,false,false,false,false +cyphercodes/GitlabApp,cyphercodes,TypeScript,true,false,false,1,false,false,true,false +radek.svarz.dataviso/archi_tools,radek.svarz.dataviso,Python,false,true,false,0,false,false,false,false +matsaki95/chipper,matsaki95,C++,false,false,false,0,false,false,false,false +rafaelff/scripts,rafaelff,Shell,true,false,false,1,false,true,false,false +developersGW/FirstAid,developersGW,JavaScript,false,false,false,0,false,false,false,false +fotf-developer-exercises/connect4,fotf-developer-exercises,JavaScript,false,false,false,0,false,false,false,false +Kleinemuehl/SR5_Hausregeln,Kleinemuehl,TeX,false,false,false,0,false,false,false,false +kbenkira/movie-success-prediction,kbenkira,JupyterNotebook,false,false,false,0,false,false,false,false +nipav/Orp,nipav,C,false,false,false,0,false,false,false,false +simon.wolko/my-kotlin-app,simon.wolko,Kotlin,false,false,false,0,false,false,false,false +Allef/Endodiagnose,Allef,JavaScript,false,false,false,0,false,false,false,false +jblarsen/tidal-prediction-python,jblarsen,Python,false,false,false,0,false,false,false,false +ClaudioNeiva/teste-qualidade-cst-2017-2,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +khan019950/chess_java_AI,khan019950,Java,false,false,false,0,false,false,false,false +reverseBitsTech/react-native-programming-tips,reverseBitsTech,,false,false,false,0,false,false,false,false +tillheinzel/METL,tillheinzel,C++,false,false,false,0,false,false,false,false +pcanilho/portfolio,pcanilho,,false,false,false,0,false,false,false,false +ilovedevops/my-project-1,ilovedevops,,true,false,false,3,true,true,true,false +uit-sfb/newpan-frontend,uit-sfb,JavaScript,false,false,false,0,false,false,false,false +honza.vanek/2017-pgrf1-cKF,honza.vanek,Java,false,false,false,0,false,false,false,false +ezdoo/ezdoo_mail_addons,ezdoo,,false,false,false,0,false,false,false,false +cafs/asp.net,cafs,C#,false,false,false,0,false,false,false,false +rosso_pietro/IMDB,rosso_pietro,JavaScript,false,false,false,0,false,false,false,false +prince-ph0en1x/EsolangExpo,prince-ph0en1x,Java,false,false,false,0,false,false,false,false +prince-ph0en1x/automatic-logic-design,prince-ph0en1x,Java,false,false,false,0,false,false,false,false +prince-ph0en1x/fractals,prince-ph0en1x,C++,false,false,false,0,false,false,false,false +devandme/DevAndMeBot,devandme,Java,false,false,true,0,false,false,false,false +jeddey.seifeddine/flightaware,jeddey.seifeddine,PHP,false,false,false,0,false,false,false,false +banamir/algo-for-students,banamir,Java,false,false,false,0,false,false,false,false +PBSC-AdminUNIX/2017/storage,PBSC-AdminUNIX,,false,false,false,0,false,false,false,false +josmig/Java-Curso,josmig,Java,false,false,false,0,false,false,false,false +silentcon/hackernews-kotlin,silentcon,Kotlin,false,false,false,0,false,false,false,false +unalkalkan/dungeon-defense,unalkalkan,C,false,false,false,0,false,false,false,false +anhqq/quanly-khachsan,anhqq,,false,false,false,0,false,false,false,false +odoo-addons/gmail_style_keyboard_navigation,odoo-addons,JavaScript,false,false,false,0,false,false,false,false +KimSumac/BlogKim,KimSumac,HTML,true,false,false,1,false,true,false,false +MisiLica/Husky_Web_Package,MisiLica,HTML,false,false,false,0,false,false,false,false +dutchtoro/voetbalripper_addon,dutchtoro,PHP,false,false,false,0,false,false,false,false +PBSC-AdminUNIX/nagios3,PBSC-AdminUNIX,CSS,false,false,false,0,false,false,false,false +leadchain/lead-chain,leadchain,JavaScript,false,false,false,0,false,false,false,false +J35u5633k/tanium_public,J35u5633k,Python,false,false,false,0,false,false,false,false +marius-rizac/docker-manager,marius-rizac,PHP,true,false,false,2,true,true,false,false +librehs/one.js,librehs,,false,false,false,0,false,false,false,false +officerebel/python_lab,officerebel,Python,false,false,false,0,false,false,false,false +justiono/Kaggle-WTF,justiono,R,false,false,false,0,false,false,false,false +eduardoprado/gstreamer-tutorial2,eduardoprado,Makefile,false,false,false,0,false,false,false,false +ubuntourist/paculator,ubuntourist,Python,false,true,false,0,false,false,false,false +codebook/angular/setup,codebook,,false,false,false,0,false,false,false,false +roger.lista/estilos,roger.lista,HTML,false,false,false,0,false,false,false,false +codebook/fountain/setup,codebook,,false,false,false,0,false,false,false,false +shyerz7/Enduro,shyerz7,JavaScript,false,false,false,0,false,false,false,false +00dani/lemoncurry,00dani,Python,true,false,false,1,false,true,false,false +jianshuanghe/baoxian-project,jianshuanghe,Vue,false,false,false,0,false,false,false,false +codebook/ionic/setup,codebook,CSS,false,false,false,0,false,false,false,false +ravil-mobile/3d-unet-lite,ravil-mobile,Python,false,false,false,0,false,false,false,false +flisboac/uva-sd-trabalho1-item3,flisboac,Java,false,false,true,0,false,false,false,false +dalewking/gmaill-handler,dalewking,Kotlin,false,false,false,0,false,false,false,false +ndevox/nick.sarbicki.com,ndevox,Python,true,true,false,1,true,false,false,false +ttpcodes/DesktopConfiguration,ttpcodes,Shell,false,false,false,0,false,false,false,false +lvictohuygol/myProjectTestAPI,lvictohuygol,JavaScript,false,false,false,0,false,false,false,false +cfmm/dcmproxy,cfmm,C++,true,false,false,1,true,false,false,false +Tjohns2016/my-resume,Tjohns2016,HTML,false,false,false,0,false,false,false,false +tyrspawn/1980sIsrael,tyrspawn,,false,false,false,0,false,false,false,false +brianegan/nuxt-milligram,brianegan,JavaScript,false,false,false,0,false,false,false,false +pablocoronel/nikkan,pablocoronel,PHP,false,false,false,0,false,false,false,false +kogakure/dotfiles,kogakure,Vimscript,false,false,false,0,false,false,false,false +kogakure/gulp-tutorial,kogakure,JavaScript,false,false,false,0,false,false,false,false +kogakure/book-kogakure,kogakure,TeX,false,false,false,0,false,false,false,false +kogakure/font-ingo,kogakure,,false,false,false,0,false,false,false,false +kogakure/website-hugo-hamburg.stefanimhoff.de,kogakure,HTML,false,false,false,0,false,false,false,false +kogakure/website-hugo-kogakure.de,kogakure,CSS,false,false,false,0,false,false,false,false +attila.repassy/springboot-angularjs,attila.repassy,JavaScript,false,false,true,0,false,false,false,false +tjian-darzacq-lab/estimateaxialdetectionrange,tjian-darzacq-lab,Matlab,false,false,false,0,false,false,false,false +kaleabmelkie/meseret,kaleabmelkie,TypeScript,false,false,false,0,false,false,false,false +Nicd/duck-tag,Nicd,Elixir,false,false,false,0,false,false,false,false +jduda/KoloNaukowe2017,jduda,C#,false,false,false,0,false,false,false,false +Mr-Robot/IoT_WeatherMonitoringSystem,Mr-Robot,PHP,false,false,false,0,false,false,false,false +nathanfaucett/rs-rand_num_gen,nathanfaucett,Rust,true,false,false,1,false,true,false,false +redhat-cop/EMEACloudFormsHackathon/automate,redhat-cop,Ruby,false,false,false,0,false,false,false,false +AlexanderLiebrecht/OpenSource-Portfolio,AlexanderLiebrecht,,false,false,false,0,false,false,false,false +socket-programming/java-tls-client-server,socket-programming,Java,false,false,false,0,false,false,false,false +pjotrp/gnu-install-bin,pjotrp,Ruby,false,false,false,0,false,false,false,false +nanodiscord/nano-docs,nanodiscord,,false,false,false,0,false,false,false,false +tp-asi/node,tp-asi,JavaScript,false,false,false,0,false,false,false,false +canderegg/code-review-guide,canderegg,,false,false,false,0,false,false,false,false +Glenans-CDMEB/WWW.moniteurs,Glenans-CDMEB,,false,false,false,0,false,false,false,false +isaackwan-fyp/truffle,isaackwan-fyp,JavaScript,false,false,false,0,false,false,false,false +ebenhoeh/modelbase,ebenhoeh,JupyterNotebook,false,false,false,0,false,false,false,false +joubu/koha-release-notes,joubu,,false,false,false,0,false,false,false,false +pantacor/docs,pantacor,,true,false,false,2,true,false,true,false +vanderhoofen/a-rancher-catalog,vanderhoofen,,false,false,false,0,false,false,false,false +rogerclotet/amicinvisible-server,rogerclotet,Go,true,false,false,2,false,true,true,false +libertarian-party/bylaws,libertarian-party,HTML,false,false,false,0,false,false,false,false +nallaworks/Ibigdata_Aula12,nallaworks,Python,false,false,false,0,false,false,false,false +carlanino/reto1,carlanino,,false,false,false,0,false,false,false,false +sherpa.psx/wepr-frontend-devstack,sherpa.psx,CSS,false,false,false,0,false,false,false,false +ngratnakumar/picVoting,ngratnakumar,JavaScript,false,false,false,0,false,false,false,false +jablitt/symfony-restApi,jablitt,PHP,false,false,false,0,false,false,false,false +openbazaar/openbazaar-desktop,openbazaar,JavaScript,false,false,false,0,false,false,false,false +ikruchkov0/med-reg,ikruchkov0,C#,true,false,false,1,true,false,false,false +seftp/SeFTP,seftp,Go,true,false,false,1,true,false,false,false +1B9R1/scripts,1B9R1,JavaScript,false,false,false,0,false,false,false,false +EchoHackCmd/IDroid,EchoHackCmd,HTML,false,false,false,0,false,false,false,false +theamarant/pMinesweeper,theamarant,Python,false,false,false,0,false,false,false,false +kwiat/zfs-recovery,kwiat,Perl,false,false,false,0,false,false,false,false +AkbarAlam/OpenSpeaker,AkbarAlam,Java,false,false,false,0,false,false,false,false +CLARIN-ERIC/docker-solr,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true +manfred.madelaine/stochastique,manfred.madelaine,Java,false,false,false,0,false,false,false,false +jinfagang/yolo2,jinfagang,JupyterNotebook,false,false,false,0,false,false,false,false +kostaz/playground-golang,kostaz,Go,false,false,false,0,false,false,false,false +raabf/dockertex,raabf,Shell,false,false,false,0,false,false,false,false +pipeline-patterns/django-cloudfoundry,pipeline-patterns,Python,true,true,false,3,false,true,true,false +mtarif/ispconfig-persian,mtarif,CSS,false,false,false,0,false,false,false,false +cellu_cc/TPMS-Paper,cellu_cc,JupyterNotebook,false,false,false,0,false,false,false,false +faustobdls/agenda-ppi,faustobdls,JavaScript,false,false,false,0,false,false,false,false +cbarnhill0/ambient-desktop,cbarnhill0,Python,false,false,false,0,false,false,false,false +do-lagos-meetup/ansible-demo,do-lagos-meetup,Ruby,true,false,false,1,false,false,true,false +do-lagos-meetup/terraform-demo,do-lagos-meetup,HCL,true,false,false,2,false,false,true,false +goern/bn-bruecken,goern,JavaScript,true,false,false,4,false,true,true,true +vitali_LF/AR_Showcase,vitali_LF,C++,false,false,false,0,false,false,false,false +atsaloli/cicd,atsaloli,CSS,true,false,false,1,false,true,false,false +msalas5081/original,msalas5081,,false,false,false,0,false,false,false,false +Labs-Project.SkyFire/Repo1/SkyFireONE,Labs-Project.SkyFire,C++,false,false,false,0,false,false,false,false +otissv/grpahql-guru,otissv,JavaScript,false,false,false,0,false,false,false,false +petervaro/pcd,petervaro,Python,true,true,false,1,false,true,false,false +PorygonZRocks/sudo4droid-magisk,PorygonZRocks,Shell,false,false,false,0,false,false,false,false +cfreksen/llvm--emulator,cfreksen,Python,false,true,false,0,false,false,false,false +iota-foundation/software/libraries/iota.lib.js,iota-foundation,JavaScript,false,false,false,0,false,false,false,false +iota-foundation/software/libraries/iota.lib.java,iota-foundation,Java,false,false,true,0,false,false,false,false +iota-foundation/software/iri,iota-foundation,Java,false,false,true,0,false,false,false,false +6uellerBpanda/check_pve,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false +facil/faux-facil,facil,HTML,false,false,false,0,false,false,false,false +pouya-abbasian/dns-fixer,pouya-abbasian,Shell,false,false,false,0,false,false,false,false +w4tweaks/wiki,w4tweaks,,true,false,false,1,false,true,false,false +TorbenWetter/Microbit-Pong,TorbenWetter,Python,false,false,false,0,false,false,false,false +iceguye/project-j,iceguye,Python,false,false,false,0,false,false,false,false +milan-kupcevic/basez,milan-kupcevic,C,false,false,false,0,false,false,false,false +starshell/question,starshell,Rust,true,false,false,4,true,true,true,false +fs-payphone/backend,fs-payphone,JavaScript,false,false,false,0,false,false,false,false +ayufan/gitlab-development-kit-docker,ayufan,Makefile,false,false,false,0,false,false,false,false +bambootran89/certificates,bambootran89,,false,false,false,0,false,false,false,false +absolutejam-saltstack/salt,absolutejam-saltstack,SaltStack,false,false,false,0,false,false,false,false +Hennsarv/mis-on-klass,Hennsarv,C#,false,false,false,0,false,false,false,false +absolutejam-saltstack/schedule,absolutejam-saltstack,SaltStack,false,false,false,0,false,false,false,false +absolutejam-saltstack/generic,absolutejam-saltstack,SaltStack,false,false,false,0,false,false,false,false +absolutejam-saltstack/orch,absolutejam-saltstack,SaltStack,false,false,false,0,false,false,false,false +absolutejam-saltstack/reactor,absolutejam-saltstack,SaltStack,false,false,false,0,false,false,false,false +gt8/open-source/elixir/bungee,gt8,Elixir,true,false,false,4,false,true,false,false +danielsagi/Flappy_Bird,danielsagi,Python,false,false,false,0,false,false,false,false +FHIR-BY/ehr.platform.support,FHIR-BY,,false,false,false,0,false,false,false,false +abhijitnavale/scripts,abhijitnavale,Shell,false,false,false,0,false,false,false,false +Yannik_Sc/IntelliJ_Unitize,Yannik_Sc,Java,false,false,false,0,false,false,false,false +matheusstutzel/tcp-wireless,matheusstutzel,C++,false,false,false,0,false,false,false,false +t3o/arkanoidFpga,t3o,VHDL,false,false,false,0,false,false,false,false +i-tre-brutti/beholder,i-tre-brutti,Go,true,false,false,2,true,true,false,false +Mike_Thornley/laravel,Mike_Thornley,PHP,false,false,false,0,false,false,false,false +KurtJacobson/LinuxCNC,KurtJacobson,C,false,false,false,0,false,false,false,false +max2max/crm,max2max,JavaScript,false,false,false,0,false,false,false,false +bambootran89/DesignPatterns,bambootran89,Java,false,false,false,0,false,false,false,false +fengxianhua/bbcharts,fengxianhua,JavaScript,false,false,false,0,false,false,false,false +febfeb/mobile-chat,febfeb,JavaScript,false,false,false,0,false,false,false,false +justinpeacock/pi-scripts,justinpeacock,Shell,false,false,false,0,false,false,false,false +ThatScot/ma-project,ThatScot,Java,false,false,false,0,false,false,false,false +Ced2911/fceux-mod,Ced2911,C++,false,false,false,0,false,false,false,false +lievendoclo/project-kali-server,lievendoclo,Kotlin,true,false,false,2,true,false,false,true +fdevjm/bootcamp,fdevjm,JavaScript,false,false,false,0,false,false,false,false +Zittec/Hermes,Zittec,PHP,false,false,false,0,false,false,false,false +fnord-goa/goa18-artwork,fnord-goa,,false,false,false,0,false,false,false,false +fnord-goa/goa18-website,fnord-goa,CSS,false,false,false,0,false,false,false,false +jessieh/animal-forest-bgm,jessieh,JavaScript,false,false,false,0,false,false,false,false +alatiera/OASA-Telematics-API-Wrapper,alatiera,Python,false,false,false,0,false,false,false,false +pdea/FindDuplicates,pdea,Python,false,false,false,0,false,false,false,false +zhanuzak/todo,zhanuzak,PHP,false,false,false,0,false,false,false,false +CLARIN-ERIC/compose_vlo,CLARIN-ERIC,Shell,false,false,false,0,false,false,false,false +LUACourses/Love2D_Skeleton_Mini,LUACourses,Lua,false,false,false,0,false,false,false,false +shimon.karpesh/MusAIcal,shimon.karpesh,JavaScript,false,false,false,0,false,false,false,false +euoles/d-riskalert-api,euoles,,false,false,false,0,false,false,false,false +longlinkislong/gloop2,longlinkislong,Java,false,false,false,0,false,false,false,false +bennyp/math-canvas,bennyp,HTML,true,false,false,1,false,false,false,false +dawehner/elm-jsonapi--example,dawehner,Elm,false,false,false,0,false,false,false,false +mickdekkers/vac-dsl,mickdekkers,TypeScript,false,false,false,0,false,false,false,false +longlinkislong/gloop.vectors,longlinkislong,Java,false,false,false,0,false,false,false,false +yorickpeterse/presentations,yorickpeterse,,false,false,false,0,false,false,false,false +mcheung63/netbeans-minimap,mcheung63,Java,false,false,true,0,false,false,false,false +runouw/rcodec,runouw,Java,false,false,false,0,false,false,false,false +runouw/pkgmgr,runouw,Java,false,false,false,0,false,false,false,false +runouw/renderer,runouw,Java,false,false,false,0,false,false,false,false +PhysikP-Seminar/CNC,PhysikP-Seminar,Python,true,true,false,2,true,true,false,false +waylon531/wayless,waylon531,Rust,true,false,false,2,true,true,false,false +shackra/emacs,shackra,EmacsLisp,false,false,false,0,false,false,false,false +luis-agm/ignosi,luis-agm,JavaScript,false,false,false,0,false,false,false,false +yorickpeterse/dotfiles,yorickpeterse,Vimscript,false,false,false,0,false,false,false,false +yorickpeterse/Server-Tools,yorickpeterse,Ruby,false,false,false,0,false,false,false,false +yorickpeterse/yorickpeterse.com,yorickpeterse,CSS,true,false,false,3,false,false,true,true +EllerMISonline/MIS_515,EllerMISonline,,false,false,false,0,false,false,false,false +MaelleB/Octobus,MaelleB,PHP,false,false,false,0,false,false,false,false +R_Ashh/must-app,R_Ashh,Java,false,false,false,0,false,false,false,false +janderson9182/florp,janderson9182,PHP,false,false,false,0,false,false,false,false +bolchisb/DevOpsTool,bolchisb,Python,false,true,false,0,false,false,false,false +Luuse/foundry/Career,Luuse,JavaScript,false,false,false,0,false,false,false,false +kyle.ketterer/backup_enterprise_pro,kyle.ketterer,C++,false,false,false,0,false,false,false,false +yoongshang/msa_cms,yoongshang,PHP,false,false,false,0,false,false,false,false +Yaraslau_Khamenka/simple-socket-chat,Yaraslau_Khamenka,Java,false,false,false,0,false,false,false,false +oversio/snippets-sublime-text-3,oversio,,false,false,false,0,false,false,false,false +grimrover/testgitcoderay,grimrover,Java,false,false,false,0,false,false,false,false +NikaZhenya/Pecas,NikaZhenya,Ruby,false,false,false,0,false,false,false,false +pss-sa/PyConZA_Roles,pss-sa,Python,false,false,false,0,false,false,false,false +NikaZhenya/ted,NikaZhenya,HTML,false,false,false,0,false,false,false,false +canarduck/flumel,canarduck,Python,true,true,false,2,false,true,true,false +brunobriante/docker-binary,brunobriante,Shell,false,false,false,0,false,false,false,false +ksills-dev/cnt-4004-project,ksills-dev,C++,false,false,false,0,false,false,false,false +Manage-Society/Manage-Society-Framework-php,Manage-Society,PHP,false,false,false,0,false,false,false,false +shadowburn/shadowburn,shadowburn,Elixir,true,false,false,1,false,true,false,false +melisagramajo/phc,melisagramajo,JavaScript,false,false,false,0,false,false,false,false +blazetamareborn/HousePricesRegression,blazetamareborn,Python,false,false,false,0,false,false,false,false +debian/esptool,debian,C,false,false,false,0,false,false,false,false +adron/colligere,adron,Go,false,false,false,0,false,false,false,false +senforsce/skills/platform,senforsce,Smarty,false,false,false,0,false,false,false,false +parthibanchetty/iPhone-Bodybuilding-Apps,parthibanchetty,,false,false,false,0,false,false,false,false +kimlab/jobsubmitter,kimlab,Python,true,false,false,4,true,true,true,false +astronaut4449/Rotor,astronaut4449,Python,false,false,false,0,false,false,false,false +arduino-libraries/stens-timer,arduino-libraries,C++,false,false,false,0,false,false,false,false +besher_alt/information_security_system,besher_alt,C#,false,false,false,0,false,false,false,false +avernois/nossl.eu,avernois,HTML,true,false,false,1,false,false,true,false +jaafilgueiras/project-laravel-base,jaafilgueiras,HTML,false,false,false,0,false,false,false,false +mark.underseth/sandbox,mark.underseth,,true,false,false,1,false,true,false,false +demjangrubic/QSGD,demjangrubic,C++,false,false,false,0,false,false,false,false +moueza/autowired,moueza,Java,true,false,false,1,true,false,false,false +codebook/stencil/setup,codebook,,false,false,false,0,false,false,false,false +dotronglong/casper-mod,dotronglong,CSS,false,false,false,0,false,false,false,false +Megver83/dragora,Megver83,Shell,false,false,false,0,false,false,false,false +shawn_w/kawalib,shawn_w,Scheme,false,false,false,0,false,false,false,false +krig-io/code-standard,krig-io,,false,false,false,0,false,false,false,false +Arigoth/map-makers-tweaks,Arigoth,Java,false,false,false,0,false,false,false,false +van-mronov/bobbin,van-mronov,Elixir,true,false,false,1,true,false,false,false +travkin/pose-tools,travkin,Java,false,false,false,0,false,false,false,false +story-diagrams/storydiagrams,story-diagrams,Java,false,false,true,0,false,false,false,false +sascha-monville/3d_motion_based_audio_synthesizer,sascha-monville,C,false,false,false,0,false,false,false,false +webofmars/meetops,webofmars,HTML,false,false,false,0,false,false,false,false +sudopower/OCR5PDBS3,sudopower,Java,false,false,false,0,false,false,false,false +blazetamareborn/StudentSurveyClustering,blazetamareborn,Python,false,false,false,0,false,false,false,false +lafricain79/konvb,lafricain79,CSS,false,false,false,0,false,false,false,false +kornelski/openmp-rs,kornelski,Rust,true,false,false,1,false,true,false,false +braincoke/blog,braincoke,CSS,false,false,false,0,false,false,false,false +wpmccormick/dlx_simulator,wpmccormick,C,false,false,false,0,false,false,false,false +thelamer/taisun-gateway,thelamer,JavaScript,true,false,false,1,true,false,false,false +rsm-s1tiwari/GeneratingCrimeGraphs,rsm-s1tiwari,R,false,false,false,0,false,false,false,false +goto-ru/ds/school-17.10-spe/monablock,goto-ru,Haskell,false,false,false,0,false,false,false,false +goto-ru/ap/school-2017.10-spb/BEERecommend,goto-ru,Python,false,false,false,0,false,false,false,false +poojadolas/bccommand,poojadolas,C,false,false,false,0,false,false,false,false +zinaliev/testbed,zinaliev,Java,true,false,false,1,false,false,false,false +CLARIN-ERIC/docker-alpine-supervisor-java-tomcat-base,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true +caolong/gitTest,caolong,JavaScript,false,false,false,0,false,false,false,false +markmoheb/dmet502-3dModeling-helper,markmoheb,C++,false,false,false,0,false,false,false,false +metrix-design/jumper,metrix-design,JavaScript,false,false,false,0,false,false,false,false +quantr/toolchain/Assembler,quantr,Java,true,false,true,2,true,true,false,false +janezka/LogitechFFDrivers,janezka,C,false,false,false,0,false,false,false,false +librespacefoundation/pqws/pqws-power-hw,librespacefoundation,HTML,false,false,false,0,false,false,false,false +nidomiro.de/LStreamAPIJacksonBindings,nidomiro.de,Java,false,false,false,0,false,false,false,false +ashumkin/test-encodings,ashumkin,Pascal,false,false,false,0,false,false,false,false +Kosinskiy/Courses_python_1_1,Kosinskiy,Python,false,false,false,0,false,false,false,false +debian/avrdude,debian,C,false,false,false,0,false,false,false,false +IntroPDP/intropdp-ccr,IntroPDP,Shell,false,false,false,0,false,false,false,false +pwmc/gsvgtk,pwmc,HTML,true,false,false,2,true,false,true,false +EdNgulele/KotlinInAction,EdNgulele,Kotlin,false,false,false,0,false,false,false,false +litt-arts-num/tei,litt-arts-num,,false,false,false,0,false,false,false,false +d-kay23/workdir-test,d-kay23,Java,false,false,false,0,false,false,false,false +dvd0101/komorebi,dvd0101,C++,false,false,false,0,false,false,false,false +codebook/yarn/setup,codebook,,false,false,false,0,false,false,false,false +F.Dougher/Dougher-GIS-Python,F.Dougher,Python,false,false,false,0,false,false,false,false +tomsabanov/FRI,tomsabanov,HTML,false,false,false,0,false,false,false,false +nbi/bash-git-toolkit,nbi,,false,false,false,0,false,false,false,false +mvdb/tango,mvdb,Python,false,false,false,0,false,false,false,false +RyDroid/proxy-php,RyDroid,PHP,true,false,false,1,false,false,false,false +thelamer/taisun-dyndns,thelamer,Shell,true,false,false,1,true,false,false,false +thelamer/taisun-lambda,thelamer,Python,false,false,false,0,false,false,false,false +SCoRe-Group/SABNAtk,SCoRe-Group,C++,false,false,false,0,false,false,false,false +thelamer/taisun-guacamole-lite,thelamer,JavaScript,false,false,false,0,false,false,false,false +casette/sauna-project,casette,HTML,true,false,false,2,true,true,false,false +offa/ci-playground,offa,,true,false,false,1,false,true,false,false +offa/docker-images,offa,Shell,true,false,false,6,false,true,false,true +hypertaboo/comenzar-con-vuejs,hypertaboo,HTML,false,false,false,0,false,false,false,false +foxmean/emacs.d,foxmean,EmacsLisp,false,false,false,0,false,false,false,false +dias.augusto/tp-redes,dias.augusto,C++,false,false,false,0,false,false,false,false +yroot/neos/Yroot.Amp,yroot,,false,false,false,0,false,false,false,false +setare.maghari/Kotlin_MVVM,setare.maghari,Kotlin,false,false,false,0,false,false,false,false +jsmanrique/hatstall,jsmanrique,HTML,false,false,false,0,false,false,false,false +cst-public/HEVCBSAnalyzer,cst-public,C,false,false,false,0,false,false,false,false +cst-public/H264BSAnalyzer,cst-public,C,false,false,false,0,false,false,false,false +cst-public/my_live555,cst-public,C++,false,false,false,0,false,false,false,false +cha-node/ng,cha-node,,true,false,false,2,false,false,false,false +cha-node/ng-testplat,cha-node,Shell,true,false,false,3,false,false,false,false +prakash5493/HealthInsurance,prakash5493,,false,false,false,0,false,false,false,false +pygotham/utils,pygotham,Python,false,false,false,0,false,false,false,false +jgcabotd/Practica_1_Numbers,jgcabotd,Java,false,false,false,0,false,false,false,false +raflem/clean_code_roguelike,raflem,Python,false,false,false,0,false,false,false,false +ngs_workshop/Nov2017,ngs_workshop,HTML,false,false,false,0,false,false,false,false +althonos/compiler,althonos,OCaml,true,false,false,1,false,true,false,false +opf/openproject,opf,Ruby,false,false,false,0,false,false,false,false +bhdryrdm/DevF,bhdryrdm,CSS,false,false,false,0,false,false,false,false +imageoptim/cocoa-image,imageoptim,Rust,false,false,false,0,false,false,false,false +zmichaels/asmjs_test,zmichaels,C,false,false,false,0,false,false,false,false +frissdiegurke/ns-matcher,frissdiegurke,JavaScript,false,false,false,0,false,false,false,false +deepakkapiswe/CloudHaskellBeginner,deepakkapiswe,Haskell,false,false,false,0,false,false,false,false +ChristianRazemint/LayneCobain,ChristianRazemint,,false,false,false,0,false,false,false,false +sem1-ITWS-1/ITWS_Lab,sem1-ITWS-1,HTML,false,false,false,0,false,false,false,false +nullifiedcat/xoverlay,nullifiedcat,C,false,false,false,0,false,false,false,false +GrumpyGameDev/fsharp/Gadabout,GrumpyGameDev,F#,false,false,false,0,false,false,false,false +yethiel/RVDocs,yethiel,HTML,true,false,false,1,false,false,true,false +optimisedlabs/slackhook,optimisedlabs,Swift,true,false,false,5,false,false,false,false +Retr0_System/go-ethereum,Retr0_System,Go,false,false,false,0,false,false,false,false +petervaro/fixer,petervaro,D,true,false,false,1,false,true,false,false +romulohpa/test-project,romulohpa,Java,false,false,false,0,false,false,false,false +grotlover2/TheFarm,grotlover2,C#,false,false,false,0,false,false,false,false +AlexRifa/tablebi,AlexRifa,C#,false,false,false,0,false,false,false,false +Antoine-Gelgon/vim-wiki,Antoine-Gelgon,HTML,false,false,false,0,false,false,false,false +AlbertLi/gfwlist,AlbertLi,JavaScript,false,false,false,0,false,false,false,false +andreas-h/ecmwfget,andreas-h,Python,false,false,false,0,false,false,false,false +watercolor-games/discordrpc-dotnet,watercolor-games,C#,false,false,false,0,false,false,false,false +Lukynn22/nodeJsRestApiStarter,Lukynn22,JavaScript,false,false,false,0,false,false,false,false +gitlab-restore/postgres-gprd,gitlab-restore,Shell,false,false,false,0,false,false,false,false +brobobro/keystone-materialize-blog,brobobro,CSS,false,false,false,0,false,false,false,false +MAOKEJU/script.sql,MAOKEJU,,false,false,false,0,false,false,false,false +pH-7/pH7CMS,pH-7,PHP,false,false,false,0,false,false,false,false +p-elements/generator-p-element,p-elements,JavaScript,false,false,false,0,false,false,false,false +pH-7/Link2Payment,pH-7,PHP,false,false,false,0,false,false,false,false +pH-7/MyDreamLife,pH-7,PHP,false,false,false,0,false,false,false,false +lohi/HealthInsurancePremium,lohi,Java,false,false,false,0,false,false,false,false +syahputra/BlockchainToolbox-Eclipse-Update-Site,syahputra,,false,false,false,0,false,false,false,false +commonshost/cache-digest-koel,commonshost,JavaScript,true,false,false,1,false,true,false,false +termoshtt/accel,termoshtt,Rust,false,false,false,0,false,false,false,false +NaisC/owl_escape,NaisC,CSS,false,false,false,0,false,false,false,false +r2robotics/r2robotics_avoidance,r2robotics,C++,false,false,false,0,false,false,false,false +xylok/networkparse,xylok,Python,true,true,false,3,true,true,true,false +PixelExperience/vendor_gapps,PixelExperience,Makefile,false,false,false,0,false,false,false,false +flexget/flexget,flexget,Python,false,true,false,0,false,false,false,false +jcharaoui/gandi-dynamic-dns,jcharaoui,Shell,false,false,false,0,false,false,false,false +pH-7/Image-Unsplash,pH-7,PHP,false,false,false,0,false,false,false,false +pH-7/GoYa-Programming-Language,pH-7,C++,false,false,false,0,false,false,false,false +pH-7/Simple-iPhome-Swift-NotePad,pH-7,Swift,false,false,false,0,false,false,false,false +android_sample_projects/notes_app,android_sample_projects,Java,false,false,false,0,false,false,false,false +thw/hyperdrive-rs,thw,Rust,false,false,false,0,false,false,false,false +mattmatters/microURL,mattmatters,HTML,false,false,false,0,false,false,false,false +drmrvr12/pront,drmrvr12,VisualBasic,false,false,false,0,false,false,false,false +MasterProject/MasterProject,MasterProject,Java,true,false,true,2,true,false,false,false +exadra37-learning/kubernetes/kubernetes-up-and-running-book,exadra37-learning,Shell,false,false,false,0,false,false,false,false +fruits.confits/qt-builder,fruits.confits,QMake,true,false,false,3,true,true,false,true +MAOKEJU/12,MAOKEJU,,false,false,false,0,false,false,false,false +kimbh1594/kimbh,kimbh1594,,false,false,false,0,false,false,false,false +ddd666.dt/channels,ddd666.dt,Python,false,false,false,0,false,false,false,false +jorge.suit/user-auth-jsonrpc,jorge.suit,JavaScript,true,false,false,1,false,true,false,false +wujiaxin/Code_Detection,wujiaxin,,false,false,false,0,false,false,false,false +teymoori/sematec_mondays,teymoori,Java,false,false,false,0,false,false,false,false +offa/plug,offa,C++,true,false,false,2,true,false,false,false +flowalex/ubuntu-app-install-script,flowalex,Shell,false,false,false,0,false,false,false,false +terrasubmersa/terra-submersa-portal,terrasubmersa,Scala,true,false,false,9,true,false,false,false +kbGit/kbde,kbGit,Python,false,true,false,0,false,false,false,false +pbook/to-do-app-mvc-simple,pbook,C#,false,false,false,0,false,false,false,false +devvasavi/SecondGitProject,devvasavi,,false,false,false,0,false,false,false,false +binero/mpw-gtk,binero,Rust,true,false,false,1,false,true,false,false +gis23/search_engine,gis23,Python,true,false,false,3,true,true,true,false +acquiamo/lightning,acquiamo,PHP,false,false,false,0,false,false,false,false +dhsjd3/SCHBD_BloodyPast,dhsjd3,,false,false,false,0,false,false,false,false +NAdamo/metujump01-blog,NAdamo,HTML,true,false,false,1,false,false,true,false +antoine.boutet/TP-Location-Privacy,antoine.boutet,Java,false,false,false,0,false,false,false,false +KuPao/SnakeGame,KuPao,ASP,false,false,false,0,false,false,false,false +stonneau/bezier_COM_traj,stonneau,C++,false,false,false,0,false,false,false,false +islands-wars/guidelines,islands-wars,CSS,true,false,false,1,false,false,true,false +SvqjugJava101/parkingModelingExcercise,SvqjugJava101,Java,false,false,false,0,false,false,false,false +rtiertant/filmotheque,rtiertant,TypeScript,false,false,false,0,false,false,false,false +pidila/checklist-pidila,pidila,JavaScript,true,false,false,1,false,true,false,false +colic.christian/bfh-telematik-c,colic.christian,C,true,false,false,1,true,false,false,false +adbci/marketPlace,adbci,PHP,true,false,false,2,true,true,false,false +anon_digriz/MNIST-paint,anon_digriz,C#,false,false,false,0,false,false,false,false +chrispappas/laravel-ci-cd-demos,chrispappas,PHP,true,false,false,1,false,true,false,false +stephane.arrami/flexbox,stephane.arrami,HTML,true,false,false,1,false,false,true,false +WorldWideDev/TheWall-ReactDjango,WorldWideDev,Python,false,true,false,0,false,false,false,false +leipert/mr-analyse,leipert,Shell,false,false,false,0,false,false,false,false +jlalande/mac-os-setup,jlalande,Shell,false,false,false,0,false,false,false,false +sh4m1l65/hello-modules,sh4m1l65,Java,false,false,false,0,false,false,false,false +phateopera/FS_Assignment_LetTheLeagueCommence,phateopera,C++,false,false,false,0,false,false,false,false +caedes/formation-js-fondamentals-clever-institute,caedes,JavaScript,false,false,false,0,false,false,false,false +ekmek-ve-gul/ekmek-ve-gul-mobile,ekmek-ve-gul,TypeScript,false,false,false,0,false,false,false,false +signal9/chrome_remote,signal9,C++,true,false,false,1,false,true,false,false +k3rni/cldta,k3rni,Clojure,false,false,false,0,false,false,false,false +hesafredrika/ios,hesafredrika,Swift,false,false,false,0,false,false,false,false +hesafredrika/android,hesafredrika,Java,false,false,false,0,false,false,false,false +crajun/parou,crajun,Python,false,false,false,0,false,false,false,false +wyday/turboactivate-go,wyday,Go,false,false,false,0,false,false,false,false +open-source-devex/containers/build,open-source-devex,Shell,false,false,false,0,false,false,false,false +PauloJunior/PITE,PauloJunior,Java,false,false,false,0,false,false,false,false +r2robotics/r2robotics_meca,r2robotics,OpenSCAD,false,false,false,0,false,false,false,false +hyper-expanse/open-source/shifted-semver-increment,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +direded/timetable,direded,HTML,false,false,false,0,false,false,false,false +shilongzhao/simple-zero,shilongzhao,Java,false,false,true,0,false,false,false,false +samsooo/StenC_Compiler,samsooo,C,false,false,false,0,false,false,false,false +toon/lisa,toon,Go,true,false,false,2,false,false,true,false +loppear/social-coop-policies,loppear,,true,false,false,1,false,false,true,false +kendallroth/productivity-tools,kendallroth,JavaScript,false,false,false,0,false,false,false,false +opendevise/opendevise.com,opendevise,CSS,false,false,false,0,false,false,false,false +mataara/drupal-module,mataara,PHP,false,false,false,0,false,false,false,false +jgarr/k8os,jgarr,Makefile,true,false,false,1,false,true,false,false +merilisliis/Muisikratt2,merilisliis,Java,false,false,false,0,false,false,false,false +cafes-ludiques/discourse-hugo,cafes-ludiques,CSS,false,false,false,0,false,false,false,false +wensuman/wv-native-app,wensuman,JavaScript,false,false,false,0,false,false,false,false +nolith/codeclimate-gocyclo,nolith,Go,true,false,false,3,true,true,false,true +artur-scholz/stretchy-client,artur-scholz,Python,false,true,false,0,false,false,false,false +iphukan/nks,iphukan,Java,false,false,false,0,false,false,false,false +des1roer/yii2pet,des1roer,PHP,false,false,false,0,false,false,false,false +jz_42/AstrophysicML,jz_42,,false,false,false,0,false,false,false,false +CollegiumV/ansible-config,CollegiumV,,false,false,false,0,false,false,false,false +Development_Public/API_RESTful_Laravel,Development_Public,PHP,false,false,false,0,false,false,false,false +Chernenkov/1-4-digital-signal-processing,Chernenkov,Kotlin,false,false,false,0,false,false,false,false +msa-son/bbs,msa-son,Java,false,false,true,0,false,false,false,false +msa-daughter/bbs,msa-daughter,CSS,false,false,true,0,false,false,false,false +alexafb2014/SistemaWeb,alexafb2014,Java,false,false,false,0,false,false,false,false +nilenso/relay-ops,nilenso,HTML,true,false,false,3,false,false,false,false +alexafb2014/Ventas,alexafb2014,Java,false,false,false,0,false,false,false,false +Klammt/Sass,Klammt,CSS,false,false,false,0,false,false,false,false +dartika/laravel-gitlab-envoy-deploy,dartika,HTML,true,false,false,2,false,true,true,false +InstitutMaupertuis/image_transport_test,InstitutMaupertuis,CMake,false,false,false,0,false,false,false,false +flazcano/vagrant-itop-debian,flazcano,Shell,false,false,false,0,false,false,false,false +alaneje/FinalMajorProject,alaneje,C#,false,false,false,0,false,false,false,false +ablondin/inf3135-aut2017-tp3-enonce,ablondin,,false,false,false,0,false,false,false,false +flicksolutions/Hessemap,flicksolutions,PHP,false,false,false,0,false,false,false,false +ubuntourist/seminal,ubuntourist,Python,false,false,false,0,false,false,false,false +KaGoMuffex/projetGestionBiblio,KaGoMuffex,Java,false,false,false,0,false,false,false,false +codecandies/24rants,codecandies,HTML,false,false,false,0,false,false,false,false +sam-uq/luqness,sam-uq,C++,true,false,false,3,true,true,false,false +sam-uq/sphinx,sam-uq,C++,true,false,false,4,true,false,true,false +sam-uq/poseidon,sam-uq,Python,false,false,false,0,false,false,false,false +GeovanaRamos/ULAProgramavel,GeovanaRamos,VHDL,false,false,false,0,false,false,false,false +pchmi/front,pchmi,JavaScript,false,false,false,0,false,false,false,false +cactusfluo/ressources,cactusfluo,Shell,false,false,false,0,false,false,false,false +michaelriezler/fairytail,michaelriezler,JavaScript,false,false,false,0,false,false,false,false +tuomashatakka/midi-controlled,tuomashatakka,JavaScript,false,false,false,0,false,false,false,false +AlanBalderasSanchez/MonoGameBasics,AlanBalderasSanchez,C#,false,false,false,0,false,false,false,false +Lingareddy/HelthInsurenceCheck,Lingareddy,Java,false,false,false,0,false,false,false,false +nathannAttendPas/dysapps,nathannAttendPas,HTML,true,false,false,1,false,false,true,false +nhanvu/webpack-configuration-practice,nhanvu,JavaScript,false,false,false,0,false,false,false,false +pmr1/zmach,pmr1,Assembly,false,false,false,0,false,false,false,false +BOSS11/progect_one,BOSS11,,false,false,false,0,false,false,false,false +IvanZotov123456789/AWP,IvanZotov123456789,,false,false,false,0,false,false,false,false +lambdait/mai-schedule-vk,lambdait,Python,true,true,false,1,false,true,false,false +barfoo/quickAP,barfoo,Shell,false,false,false,0,false,false,false,false +lheuristique/maintenance,lheuristique,,false,false,false,0,false,false,false,false +mjgarton/govfs,mjgarton,Go,false,false,false,0,false,false,false,false +hedgenetlab/handnet,hedgenetlab,Python,false,true,false,0,false,false,false,false +chrzrdx/le-journal-de-bord,chrzrdx,,false,false,false,0,false,false,false,false +Toby56/Calcifer-Old,Toby56,Python,true,false,false,1,false,false,true,false +deepin-espanol/deepin-espanol.gitlab.io,deepin-espanol,HTML,true,false,false,2,false,true,true,false +debops/debops,debops,Shell,true,false,false,8,false,true,false,false +samovnick/Training,samovnick,,false,false,false,0,false,false,false,false +metinerk/heal-map-mobile,metinerk,TypeScript,false,false,false,0,false,false,false,false +ckhurewa/pyroot-zen,ckhurewa,Python,true,false,false,2,false,true,true,false +massimilianobocchieri/moviecatalog-restapi,massimilianobocchieri,PHP,false,false,false,0,false,false,false,false +beneivol/trivial-stub-project-backend,beneivol,JavaScript,false,false,false,0,false,false,false,false +Rahul25/Codeigniter,Rahul25,HTML,false,false,false,0,false,false,false,false +localtoast/necromemecon,localtoast,Python,false,false,false,0,false,false,false,false +aminkt/yii2-input-tag-widget,aminkt,CSS,false,false,false,0,false,false,false,false +mateszkom/mouseandcheese,mateszkom,C,false,false,false,0,false,false,false,false +sd1-ec-2017-2/p3-g3,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +sd1-ec-2017-2/p3-g4,sd1-ec-2017-2,JavaScript,false,false,false,0,false,false,false,false +daftaupe/syncthing-rpm,daftaupe,,false,false,false,0,false,false,false,false +daftaupe/hugo-rpm,daftaupe,,false,false,false,0,false,false,false,false +dziki/lb-service-haproxy,dziki,,true,false,false,2,true,false,true,false +ExtropicStudios/trilithon,ExtropicStudios,PHP,true,false,false,1,false,true,false,false +daftaupe/munin-syncthing,daftaupe,Shell,false,false,false,0,false,false,false,false +diegomartincorrea/diegomartincorrea.gitlab.io,diegomartincorrea,HTML,true,false,false,1,false,false,true,false +vladgo/build-nginx,vladgo,Shell,true,false,false,2,false,false,false,false +avanade/dockerdemo,avanade,JavaScript,false,false,false,0,false,false,false,false +steffen_sullivan/AssistIO,steffen_sullivan,JavaScript,false,false,false,0,false,false,false,false +mirrorcoloured/infinitygoggles,mirrorcoloured,C++,false,false,false,0,false,false,false,false +shivrajbisht/gitlab-test,shivrajbisht,Shell,true,false,false,1,false,true,false,false +mystogan/eis,mystogan,HTML,false,false,false,0,false,false,false,false +nilenso/relay-chat.com,nilenso,HTML,true,false,false,1,false,false,true,false +thomas.eblen/Artzy,thomas.eblen,PHP,false,false,false,0,false,false,false,false +rgaiacs/mozilla-science-lab-mini-grant-2018-florianopolis,rgaiacs,,false,false,false,0,false,false,false,false +innotecuk-public/innobuggy,innotecuk-public,Makefile,false,false,false,0,false,false,false,false +alpredoRuben/chtcrud,alpredoRuben,,false,false,false,0,false,false,false,false +Retr0_System/ss-isogeny-software,Retr0_System,C,false,false,false,0,false,false,false,false +rnsell/express-guide-to-better-server-code,rnsell,,false,false,false,0,false,false,false,false +ortax/ros-101,ortax,CMake,false,false,false,0,false,false,false,false +devthoughts/code,devthoughts,Go,false,false,false,0,false,false,false,false +roboticsclub/nico/SnowBot,roboticsclub,Java,false,false,false,0,false,false,false,false +GNULand/Website/kontrast,GNULand,PHP,false,false,false,0,false,false,false,false +hiwijaya/repulsor,hiwijaya,HTML,false,false,false,0,false,false,false,false +Crysys/ROMS,Crysys,JavaScript,false,false,false,0,false,false,false,false +gunnarwolf/seco3,gunnarwolf,TeX,false,false,false,0,false,false,false,false +hdcase/vim-solarized8,hdcase,Vimscript,false,false,false,0,false,false,false,false +chandan777/Healthcare_insurance_chandan,chandan777,,false,false,false,0,false,false,false,false +AtomixSoldier/SQLSimpleAPI,AtomixSoldier,Java,false,false,true,0,false,false,false,false +alvin25/mobile2-project,alvin25,TypeScript,false,false,false,0,false,false,false,false +n11t/tombola,n11t,PHP,true,false,false,3,true,false,false,false +albertgasset/dokuwiki-plugin-codemirror,albertgasset,JavaScript,false,false,false,0,false,false,false,false +dirn/flake8-confusables,dirn,Python,true,false,false,1,false,true,false,false +andreavanzo/aiml_ros,andreavanzo,CMake,false,false,false,0,false,false,false,false +ceta/plutus,ceta,Java,false,false,false,0,false,false,false,false +a.khoma/laradock-magento2,a.khoma,Shell,false,false,false,0,false,false,false,false +LineageOS/infra/builds-ui,LineageOS,Python,true,true,false,3,true,true,true,false +tomasz.zielinski/micro-bank,tomasz.zielinski,TypeScript,false,false,false,0,false,false,false,false +mixingrid/grid,mixingrid,HTML,true,false,false,1,false,false,true,false +nvidia/k8s-device-plugin,nvidia,,false,false,false,0,false,false,false,false +andrea.zanetti1997/prima_prova,andrea.zanetti1997,,false,false,false,0,false,false,false,false +microcalc/presentation,microcalc,TeX,false,false,false,0,false,false,false,false +Retr0_System/external_libsamsung-ipc,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/frameworks_native,Retr0_System,C++,false,false,false,0,false,false,false,false +Retr0_System/SwiftShader,Retr0_System,C++,false,false,false,0,false,false,false,false +Retr0_System/external_mesa3d,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/Android-IMSI-Catcher-Detector,Retr0_System,Java,false,false,false,0,false,false,false,false +thatscloud/pubj,thatscloud,Java,true,false,false,4,true,true,false,true +Retr0_System/freedreno,Retr0_System,C,false,false,false,0,false,false,false,false +johnbrown90210/QuestMaster,johnbrown90210,VisualBasic,false,false,false,0,false,false,false,false +CycleOfTheAbsurd/inf3135-aut2017-tp3,CycleOfTheAbsurd,C,true,false,false,1,true,false,false,false +microcalc/microcalc-first-operation,microcalc,Java,false,false,true,0,false,false,false,false +konyisoft/space-junk,konyisoft,C#,false,false,false,0,false,false,false,false +annaxluo/spikes-dnn-tf,annaxluo,Python,false,false,false,0,false,false,false,false +binpage/_binpage,binpage,JavaScript,false,false,false,0,false,false,false,false +opolat/dropwizard-example,opolat,Java,false,false,true,0,false,false,false,false +famuvie/cirad,famuvie,TeX,false,false,false,0,false,false,false,false +w3farid/inventory,w3farid,JavaScript,false,false,false,0,false,false,false,false +victorm95/express-todo,victorm95,JavaScript,true,false,false,1,false,true,false,false +chrisbelyea/aws_tt-rss,chrisbelyea,,false,false,false,0,false,false,false,false +polku-junction/hack-api,polku-junction,JavaScript,false,false,false,0,false,false,false,false +kflorest/knell-webpage,kflorest,CSS,false,false,false,0,false,false,false,false +ladybirdweb/faveohelpdesk,ladybirdweb,PHP,false,false,false,0,false,false,false,false +Walstork/LaravelStore,Walstork,PHP,false,false,false,0,false,false,false,false +FedeG/django-vue-example,FedeG,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/MediaWiki,Retr0_System,PHP,false,false,false,0,false,false,false,false +fschl/java-thread-sync,fschl,Java,false,false,false,0,false,false,false,false +ilpianista/arch-audit,ilpianista,Rust,true,false,false,1,false,true,false,false +Adolfcoin/Vergeltung,Adolfcoin,C++,false,false,false,0,false,false,false,false +markky21/my-site,markky21,CSS,false,false,false,0,false,false,false,false +RaraCerberus/l4d_port,RaraCerberus,C++,false,false,false,0,false,false,false,false +BOSS11/CS_GO,BOSS11,,false,false,false,0,false,false,false,false +Bublade/mcpluginbase,Bublade,Java,false,false,true,0,false,false,false,false +Tkkg1994/CSC_Selection-N8,Tkkg1994,Shell,false,false,false,0,false,false,false,false +stefanotorresi/php-hello,stefanotorresi,PHP,true,false,false,2,true,true,false,false +hampel-soft/hse/openproject-client,hampel-soft,LabVIEW,false,false,false,0,false,false,false,false +milan-kupcevic/mcu-crc,milan-kupcevic,C,false,false,false,0,false,false,false,false +kid28/testproject,kid28,HTML,false,false,false,0,false,false,false,false +renatosilva94/aerdocesgourmet,renatosilva94,Java,false,false,false,0,false,false,false,false +steffen_sullivan/AssistIO_Computer,steffen_sullivan,JavaScript,false,false,false,0,false,false,false,false +open-source-devex/toolbox,open-source-devex,Shell,true,false,false,1,false,false,false,true +dedicatedcode/stateless-authentication,dedicatedcode,Java,false,false,true,0,false,false,false,false +havk/uptodate,havk,Python,false,true,false,0,false,false,false,false +Barez-Vous/App,Barez-Vous,CSS,false,false,false,0,false,false,false,false +rhenar0/myperso,rhenar0,Lua,false,false,false,0,false,false,false,false +aapjeisbaas/npo-downloader,aapjeisbaas,Shell,false,false,false,0,false,false,false,false +nebulon42/zeyple-docker,nebulon42,Shell,false,false,false,0,false,false,false,false +Nanjolno/MyuuzuBots,Nanjolno,Python,false,false,false,0,false,false,false,false +fauzipadlaw/pemesanan,fauzipadlaw,PHP,false,false,false,0,false,false,false,false +esteves.ifes/Trabalho-Arquitetura,esteves.ifes,SystemVerilog,false,false,false,0,false,false,false,false +HearthProject/Hearth,HearthProject,C#,true,false,false,1,true,false,false,false +dpscience/DDRS4PALS,dpscience,C++,false,false,false,0,false,false,false,false +HillelAutomation/qa_framework,HillelAutomation,Java,false,false,false,0,false,false,false,false +Entropikz/BP_FileBrowser,Entropikz,,false,false,false,0,false,false,false,false +maballo/laravel5-datatable-server-side-processing,maballo,PHP,false,false,false,0,false,false,false,false +mostafa-barmshory/My-First-App,mostafa-barmshory,Java,false,false,false,0,false,false,false,false +ban4er/maket,ban4er,JavaScript,false,false,false,0,false,false,false,false +m.vakili95/hesabdar,m.vakili95,Vue,false,false,false,0,false,false,false,false +evait-security/android-wifi-key-view,evait-security,Java,false,false,false,0,false,false,false,false +evait-security/gpg-chat,evait-security,Ruby,false,false,false,0,false,false,false,false +evait-security/scripts,evait-security,Shell,false,false,false,0,false,false,false,false +evait-security/weeman,evait-security,Python,false,false,false,0,false,false,false,false +evait-security/ClickNRoot,evait-security,C,false,false,false,0,false,false,false,false +evait-security/Sherlock,evait-security,PowerShell,false,false,false,0,false,false,false,false +xapix/clj-soap,xapix,Clojure,true,false,false,1,false,true,false,false +adbci/angularTheorie,adbci,,false,false,false,0,false,false,false,false +adbci/dashboard,adbci,HTML,false,false,false,0,false,false,false,false +adbci/design-pattern,adbci,Java,false,false,false,0,false,false,false,false +adbci/vue-firebase-auth-skeleton,adbci,JavaScript,false,false,false,0,false,false,false,false +adbci/vue-agendaApp,adbci,JavaScript,false,false,false,0,false,false,false,false +adbci/unicornot,adbci,CSS,false,false,false,0,false,false,false,false +adbci/Spring-Hibernate,adbci,Java,false,false,true,0,false,false,false,false +adbci/seaPlace,adbci,,false,false,false,0,false,false,false,false +adbci/netoxygen,adbci,JavaScript,false,false,false,0,false,false,false,false +adbci/jsOOPConcepts,adbci,,false,false,false,0,false,false,false,false +adbci/jenkins,adbci,JavaScript,false,false,false,0,false,false,false,false +adbci/java-spring,adbci,CSS,false,false,true,0,false,false,false,false +adbci/hibernate,adbci,Java,false,false,true,0,false,false,false,false +adbci/ajax,adbci,HTML,false,false,false,0,false,false,false,false +adbci/nodeCIj,adbci,JavaScript,false,false,false,0,false,false,false,false +vandreyd1/test-project-webapp-persistence,vandreyd1,Java,false,false,false,0,false,false,false,false +hminz/unofficial-copperheados,hminz,Shell,false,false,false,0,false,false,false,false +vgg/imcomp,vgg,JavaScript,false,false,false,0,false,false,false,false +irixa.vales/Icom4035_Project1,irixa.vales,Java,false,false,false,0,false,false,false,false +wg.go/gitclone,wg.go,Go,false,false,false,0,false,false,false,false +ArquitecturaSoftware/poker,ArquitecturaSoftware,Erlang,false,false,false,0,false,false,false,false +kerel-fs/satnogs-AzEl-plots,kerel-fs,JupyterNotebook,false,false,false,0,false,false,false,false +eclufsc/eda/ophidian_project_template,eclufsc,CMake,true,false,false,1,true,false,false,false +Tefferson/caronas,Tefferson,Kotlin,false,false,false,0,false,false,false,false +icecream95/mastodon-fortune-bot,icecream95,Shell,true,false,false,1,false,true,false,false +julianvillalbamarquez1020/PICOYPLACAUNO,julianvillalbamarquez1020,,false,false,false,0,false,false,false,false +Techtronix/anope,Techtronix,C++,false,false,false,0,false,false,false,false +Techtronix/inspircd,Techtronix,C++,false,false,false,0,false,false,false,false +debian/simavr,debian,C,false,false,false,0,false,false,false,false +nickferguson.naf/garbage-games-site,nickferguson.naf,JavaScript,false,false,false,0,false,false,false,false +nimbus/django_template,nimbus,Python,false,true,false,0,false,false,false,false +relan/provisioners,relan,,false,false,false,0,false,false,false,false +wolphin/prometheus-export,wolphin,Go,true,false,false,1,true,false,false,false +VictLecl/2Movies1Actor_android,VictLecl,Java,true,false,false,2,true,true,false,false +nkls/memoize-last,nkls,TypeScript,true,false,false,2,false,true,false,true +wolphin/wolphin.fluentd,wolphin,Ruby,true,false,false,1,true,false,false,false +wolphin/wolphin.telegraf,wolphin,Shell,true,false,false,1,true,false,false,false +wolphin/eventpile,wolphin,Go,true,false,false,1,true,false,false,false +wolphin/wolphin.parallel,wolphin,,true,false,false,1,true,false,false,false +nidomiro.de/RxJavaDemoAndroid,nidomiro.de,Java,false,false,false,0,false,false,false,false +wolphin/wolphin.cli,wolphin,Python,true,false,false,1,true,false,false,false +wolphin/wolphin.etl,wolphin,Python,true,false,false,1,true,false,false,false +sylvainar/ebm_pokedex,sylvainar,JavaScript,false,false,false,0,false,false,false,false +wolphin/wolphin.admin,wolphin,JavaScript,true,false,false,2,true,true,false,false +ercom/docker,ercom,Shell,true,false,false,1,true,false,false,false +coder256/HackerNews,coder256,TypeScript,false,false,false,0,false,false,false,false +GGCommunity/WIzards,GGCommunity,C#,false,false,false,0,false,false,false,false +Kirill_Pisarenko/EPAM-RD-NOVEMBER-2017,Kirill_Pisarenko,,false,false,false,0,false,false,false,false +i-tre-brutti/terraformer,i-tre-brutti,Go,true,false,false,2,true,true,false,false +CFTheMaster/Tsumiki-docs,CFTheMaster,,false,false,false,0,false,false,false,false +crowandraven-public/raven-cms,crowandraven-public,PHP,false,false,false,0,false,false,false,false +BartMassey/advent-of-code-2017,BartMassey,Go,false,false,false,0,false,false,false,false +beardedio/terraria,beardedio,Shell,true,false,false,1,true,false,false,false +RonaldoRodrigues/samid,RonaldoRodrigues,JavaScript,false,false,false,0,false,false,false,false +czeidler/fejoa,czeidler,Kotlin,false,false,false,0,false,false,false,false +ubuntu-cm/aventure-libre,ubuntu-cm,,false,false,false,0,false,false,false,false +jonafato/dotfiles,jonafato,Vimscript,false,false,false,0,false,false,false,false +epicdocker/bloonix_server,epicdocker,Smarty,true,false,false,3,true,false,false,true +open-leonix/simpleBlockchain,open-leonix,Python,false,false,false,0,false,false,false,false +Callahan93/headless,Callahan93,Python,true,false,false,3,false,true,true,false +vlasov-y/drive-khai,vlasov-y,HTML,false,false,false,0,false,false,false,false +i-tre-brutti/common,i-tre-brutti,Go,true,false,false,2,true,true,false,false +ozelen/cryptoasset,ozelen,,false,false,false,0,false,false,false,false +reds-public/HEIG-VD-template,reds-public,TeX,false,false,false,0,false,false,false,false +luiz.villa/ownwall,luiz.villa,Python,false,false,false,0,false,false,false,false +whale441/lab,whale441,,false,false,false,0,false,false,false,false +rilis/rilis,rilis,JavaScript,true,false,false,1,false,false,true,false +alphaDev/libTimeSeries,alphaDev,Java,true,false,true,1,false,true,false,false +web3-sh/web3,web3-sh,Shell,true,false,false,1,false,true,false,false +Heroesflorian/SHC_AIVs,Heroesflorian,,false,false,false,0,false,false,false,false +fehim/btc-profit-loss,fehim,PHP,false,false,false,0,false,false,false,false +MDWeb-UASB/musica,MDWeb-UASB,,false,false,false,0,false,false,false,false +hongquan95.tran/IrisProject,hongquan95.tran,Python,false,false,false,0,false,false,false,false +hanoi-pystar/prepare,hanoi-pystar,,false,false,false,0,false,false,false,false +goudcode/ludumdare-40,goudcode,C#,false,false,false,0,false,false,false,false +levara/se_lab6,levara,,false,false,false,0,false,false,false,false +mazsibazsi/SzakdogaNgine,mazsibazsi,PHP,false,false,false,0,false,false,false,false +daansk44/vestacontrolpanelapiclasses,daansk44,PHP,false,false,false,0,false,false,false,false +quanten/https-presentation-bcHL17,quanten,CSS,false,false,false,0,false,false,false,false +claudiocabral/minishell,claudiocabral,C,false,false,false,0,false,false,false,false +open-source-devex/containers/build-packer,open-source-devex,Shell,true,false,false,3,true,true,false,true +b0ggyb33/AOC2017,b0ggyb33,Python,false,false,false,0,false,false,false,false +wiki-ai/editquality,wiki-ai,Makefile,false,false,false,0,false,false,false,false +opentransitmap/public-transport-enabler,opentransitmap,Java,true,false,false,2,true,false,false,false +mayankpatelec/odoo_gitlab_integration,mayankpatelec,Python,false,false,false,0,false,false,false,false +Nayboko/HereOuiGo,Nayboko,PHP,false,false,false,0,false,false,false,false +tvg-coding-dojo/coding-dojo,tvg-coding-dojo,Python,false,false,false,0,false,false,false,false +barrel-db/memstore,barrel-db,Erlang,true,false,false,1,false,true,false,false +sailfishos-examples/qml-camera,sailfishos-examples,QML,false,false,false,0,false,false,false,false +acharron/advent_of_code_2017,acharron,Kotlin,false,false,false,0,false,false,false,false +hernancasla/teco,hernancasla,JavaScript,false,false,false,0,false,false,false,false +pusaka/geni,pusaka,PHP,false,false,false,0,false,false,false,false +Nanjolno/MyuuzuSB,Nanjolno,Python,false,false,false,0,false,false,false,false +parshav1/ionic-push-notification-demo,parshav1,TypeScript,false,false,false,0,false,false,false,false +KelompokB10PPW2017/konekin-enterprise,KelompokB10PPW2017,JavaScript,true,false,false,2,false,true,true,false +jongpieter/gitlab-dotnet,jongpieter,,false,false,false,0,false,false,false,false +Rohit_Kumar_Vinove/IngressHealth-Xamarin,Rohit_Kumar_Vinove,Java,false,false,false,0,false,false,false,false +alireza.infotech/os_project_1,alireza.infotech,Batchfile,false,false,false,0,false,false,false,false +chch/observatory.guide,chch,Shell,false,false,false,0,false,false,false,false +ElephantInCairo/16-Boogle,ElephantInCairo,Ada,false,false,false,0,false,false,false,false +esilvert/LDJAM_40,esilvert,GDScript,false,false,false,0,false,false,false,false +vandecarlos/petcoah,vandecarlos,PHP,false,false,false,0,false,false,false,false +nomekrax/blackops_web_pub,nomekrax,,false,false,false,0,false,false,false,false +draganbabic/st3-preferences,draganbabic,,false,false,false,0,false,false,false,false +let-vogel/advent-of-code-17,let-vogel,Go,false,false,false,0,false,false,false,false +Eggs/opennotes,Eggs,Java,false,false,false,0,false,false,false,false +C0DK/refcoin,C0DK,Python,true,true,false,2,false,false,false,false +Plogbilen/felcius,Plogbilen,JavaScript,false,false,false,0,false,false,false,false +inkscape-board/documents,inkscape-board,HTML,false,false,false,0,false,false,false,false +pcuisinaud/auth-service,pcuisinaud,Java,true,false,true,2,true,true,false,false +jbigler/pathfinder,jbigler,JavaScript,false,false,false,0,false,false,false,false +breithbarbot/web-server-windows,breithbarbot,PHP,false,false,false,0,false,false,false,false +harsh.attray/reactssr,harsh.attray,JavaScript,false,false,false,0,false,false,false,false +covcom/continuous-integration-example,covcom,JavaScript,true,false,false,3,false,false,false,false +drakonka/advent-of-code-2017,drakonka,Go,false,false,false,0,false,false,false,false +seen/angular/seen-elearn,seen,JavaScript,true,false,false,2,false,true,true,false +MrLocoKrang/AvengerC,MrLocoKrang,C#,false,false,false,0,false,false,false,false +goblenus/TeamDev,goblenus,,false,false,false,0,false,false,false,false +datadrivendiscovery/tests-data,datadrivendiscovery,Python,true,false,false,1,true,false,false,false +rpm5-legacy/createrepo_c,rpm5-legacy,C,false,false,false,0,false,false,false,false +rpm5-legacy/libsolv,rpm5-legacy,C,false,false,false,0,false,false,false,false +blendervse/blender-addons,blendervse,Python,false,false,false,0,false,false,false,false +jredmond/ld40,jredmond,Lua,true,false,false,1,false,true,false,false +Arunkumarcs/codeIgniter-local,Arunkumarcs,PHP,false,false,false,0,false,false,false,false +metapensiero/metapensiero.sqlalchemy.asyncpg,metapensiero,Python,true,true,false,2,false,true,false,false +kalamity/emojimemory,kalamity,JavaScript,false,false,false,0,false,false,false,false +reyramos/online-resume,reyramos,CSS,false,false,false,0,false,false,false,false +WeLoveSpigotPlugins/StatsManager,WeLoveSpigotPlugins,Java,false,false,true,0,false,false,false,false +Wenlin/cdlutils,Wenlin,JavaScript,false,false,false,0,false,false,false,false +Wenlin/cdlutils_ui,Wenlin,JavaScript,false,false,false,0,false,false,false,false +moviuro/pass-hibp,moviuro,Shell,false,false,false,0,false,false,false,false +ronaelShef/ahotomaition_genry,ronaelShef,JavaScript,false,false,false,0,false,false,false,false +dasjott/golexa,dasjott,Go,false,false,false,0,false,false,false,false +ChrisJr4Eva87/ChrisJr4Eva87,ChrisJr4Eva87,,false,false,false,0,false,false,false,false +Pyrex-FWI/DeejayPoolBundle,Pyrex-FWI,PHP,true,false,false,1,false,true,false,false +Pyrex-FWI/sapar-id3,Pyrex-FWI,PHP,true,false,false,2,false,false,false,true +Franked/TDD_Study,Franked,C,false,false,false,0,false,false,false,false +kaivan.alimohammadi/wp_experts_02,kaivan.alimohammadi,PHP,false,false,false,0,false,false,false,false +wolphin/wolphin.win,wolphin,Python,true,false,false,2,true,true,false,false +siobox/siobox-api,siobox,C++,false,false,false,0,false,false,false,false +siobox/siobox-api-csharp,siobox,C#,false,false,false,0,false,false,false,false +wurssb/DMPy,wurssb,Python,false,false,false,0,false,false,false,false +ctsdh/lili-elbe-code,ctsdh,HTML,false,false,false,0,false,false,false,false +walberjefferson/e-sic,walberjefferson,HTML,false,false,false,0,false,false,false,false +miguelvps/generic,miguelvps,TypeScript,false,false,false,0,false,false,false,false +ShrekOverflow/trustree,ShrekOverflow,TypeScript,false,false,false,0,false,false,false,false +honor/eureka-feignclient-springboot-example,honor,Java,false,false,false,0,false,false,false,false +gasche/build_path_prefix_map,gasche,OCaml,false,false,false,0,false,false,false,false +ashunter42/urbanScience,ashunter42,JavaScript,false,false,false,0,false,false,false,false +role_unit/role_unit,role_unit,Shell,true,false,false,3,false,false,false,false +manuee/localhosts,manuee,Python,false,false,false,0,false,false,false,false +Elypia/Alexis,Elypia,Java,true,false,false,3,true,true,true,false +Elypia/Elypiai,Elypia,Java,true,false,false,3,true,true,true,false +wifisensing/PicoScenes-Setup,wifisensing,Shell,false,false,false,0,false,false,false,false +Usinouv/mercator,Usinouv,Python,false,false,false,0,false,false,false,false +sebuah-grup/PPWKirito,sebuah-grup,Python,true,true,false,2,false,true,true,false +tranquera/croissant-app,tranquera,Elm,true,false,false,1,false,false,true,false +dennis.aumiller/HeidelCrawlPublic,dennis.aumiller,,false,false,false,0,false,false,false,false +showcheap/adonis-demo,showcheap,JavaScript,true,false,false,1,false,true,false,false +alfredocosio/Academia,alfredocosio,HTML,false,false,false,0,false,false,false,false +nathanfaucett/rs-polygon2,nathanfaucett,Rust,true,false,false,1,false,true,false,false +AISScientificSoftware_Public/AISArchiveDataModel,AISScientificSoftware_Public,C#,false,false,false,0,false,false,false,false +phucanhoang28/caculator,phucanhoang28,Swift,false,false,false,0,false,false,false,false +anon_digriz/opencv-mnist,anon_digriz,C#,false,false,false,0,false,false,false,false +xiangpeng.wu/ThirdProject,xiangpeng.wu,,true,false,false,1,false,true,false,false +tianhanfangyan/kafka-manager,tianhanfangyan,,false,false,false,0,false,false,false,false +bdefrance/tmpUT,bdefrance,HTML,false,false,false,0,false,false,false,false +d8vjork/sit-theme,d8vjork,PHP,false,false,false,0,false,false,false,false +Hajto/wojtas-so-semafory,Hajto,C++,false,false,false,0,false,false,false,false +devap/vihe.org,devap,HTML,false,false,false,0,false,false,false,false +pattonslawofcubesatdesign/knowledge_database,pattonslawofcubesatdesign,,false,false,false,0,false,false,false,false +rikgibson/city-api,rikgibson,Java,false,false,false,0,false,false,false,false +Aniq55/MemeFinder,Aniq55,Python,false,false,false,0,false,false,false,false +venkateshd/blog,venkateshd,HTML,true,false,false,1,false,false,true,false +humanitiesNerd/tributi,humanitiesNerd,Python,false,false,false,0,false,false,false,false +astevencantrell/abstract-binding,astevencantrell,C#,false,false,false,0,false,false,false,false +yenidunya/ai-voice-filter,yenidunya,Python,false,false,false,0,false,false,false,false +encircle360/iri,encircle360,Java,true,false,true,2,true,false,false,false +eQuation/advent-of-code,eQuation,Python,false,false,false,0,false,false,false,false +ZakCodes/neural_network,ZakCodes,,false,false,false,0,false,false,false,false +lvshenbao/ImageSwitcher,lvshenbao,Java,false,false,false,0,false,false,false,false +honor/simple-springmvc-springboot-example,honor,Java,false,false,false,0,false,false,false,false +empurrandojuntos/pushtogether-math,empurrandojuntos,Python,false,true,false,0,false,false,false,false +Jean-Michel/FastForthForMSP430fr5xxx,Jean-Michel,Forth,false,false,false,0,false,false,false,false +Strayer/dotfiles,Strayer,EmacsLisp,false,false,false,0,false,false,false,false +lappis-unb/services/boca,lappis-unb,PHP,false,false,false,0,false,false,false,false +delta-epsilon/csca08-sample-questions,delta-epsilon,TeX,false,false,false,0,false,false,false,false +watercolor-games/website,watercolor-games,C#,false,false,false,0,false,false,false,false +MengZn/gitlab-ci-ansible,MengZn,HTML,true,false,false,5,true,true,true,true +sijmen/Bowl-vase-img-recognition,sijmen,Python,false,false,false,0,false,false,false,false +abinitio/deep_learning_specialization,abinitio,JupyterNotebook,false,false,false,0,false,false,false,false +dsncode/FileManager,dsncode,Java,true,false,true,3,true,true,true,false +vidroidinc/android-ufpr-sem-fio,vidroidinc,Java,false,false,false,0,false,false,false,false +vidroidinc/android-utfprweb-login,vidroidinc,Java,false,false,false,0,false,false,false,false +alinai94/lxh,alinai94,HTML,false,false,false,0,false,false,false,false +femprocomuns/onboarding,femprocomuns,Python,false,true,false,0,false,false,false,false +X99/reinstall.sh,X99,Shell,false,false,false,0,false,false,false,false +noemie-kerroux/open-social-links-in-app,noemie-kerroux,PHP,false,false,false,0,false,false,false,false +flyinprogrammer/curie,flyinprogrammer,Go,false,false,false,0,false,false,false,false +tuxaua/kafka-connect-ftp,tuxaua,Scala,true,false,false,1,false,true,false,false +mc/wgrs,mc,Rust,false,false,false,0,false,false,false,false +xygeng/jaguar,xygeng,Java,true,false,true,1,false,true,false,false +hxyvipno1/SZNY,hxyvipno1,HTML,false,false,true,0,false,false,false,false +tacoprophet/slf4j-esapi,tacoprophet,Java,true,false,true,2,false,true,true,false +tianhanfangyan/celery_pro,tianhanfangyan,Python,false,false,false,0,false,false,false,false +rezazeiny/hamase_sazane_R,rezazeiny,R,false,false,false,0,false,false,false,false +imranreee/AndroidCalculatorAppAutomation,imranreee,HTML,false,false,true,0,false,false,false,false +mikhail.khaliauski/react-spotify-searcher,mikhail.khaliauski,JavaScript,false,false,false,0,false,false,false,false +pwgd/general,pwgd,,false,false,false,0,false,false,false,false +0xDiddi/super-mailman,0xDiddi,JavaScript,false,false,false,0,false,false,false,false +teymoori/sematec_azar,teymoori,Java,false,false,false,0,false,false,false,false +tuc_graphql/core,tuc_graphql,JavaScript,false,false,false,0,false,false,false,false +GETextMining/01FB15ECS006,GETextMining,Python,false,false,false,0,false,false,false,false +honor/simple-springboot-restapi-example-with-swagger,honor,Java,false,false,true,0,false,false,false,false +the-casual-trade-and-fun-server/server-manager,the-casual-trade-and-fun-server,F#,true,false,false,2,true,true,false,false +tophackr/MJV,tophackr,Smarty,false,false,false,0,false,false,false,false +amyasnikov/trace_analyzer,amyasnikov,C,false,false,false,0,false,false,false,false +Chamillard/DemoRest,Chamillard,JavaScript,false,false,false,0,false,false,false,false +JuanjoSalvador/moefy,JuanjoSalvador,Python,false,true,false,0,false,false,false,false +ayekat/karuiwm,ayekat,C,false,false,false,0,false,false,false,false +keithp97219/aoc-2017,keithp97219,,false,false,false,0,false,false,false,false +ElephantInCairo/15-nReines,ElephantInCairo,Java,false,false,false,0,false,false,false,false +linkeddatacenter/wow-template,linkeddatacenter,CSS,false,false,false,0,false,false,false,false +Kantenkugel/spotify-queue,Kantenkugel,JavaScript,false,false,false,0,false,false,false,false +guoliuya/test,guoliuya,Java,false,false,false,0,false,false,false,false +thomas1814/sml,thomas1814,C++,false,false,false,0,false,false,false,false +eQuation/jekyll-website,eQuation,CSS,true,false,false,2,true,false,true,false +fier/DEWHUD,fier,Objective-C,false,false,false,0,false,false,false,false +narisoatianapatricka/hors_piste,narisoatianapatricka,PHP,false,false,false,0,false,false,false,false +ayekat/pacman-hacks,ayekat,Shell,false,false,false,0,false,false,false,false +acando14/trainingJS,acando14,JavaScript,false,false,false,0,false,false,false,false +SolidTux/jsontest,SolidTux,CMake,false,false,false,0,false,false,false,false +acostaj/QSMexplorer,acostaj,C,false,false,false,0,false,false,false,false +pubcro/syntaxerror,pubcro,Shell,false,false,false,0,false,false,false,false +alfonso.venegas/CFDI,alfonso.venegas,Java,false,false,false,0,false,false,false,false +sebdeckers/scotch-api-spoof,sebdeckers,JavaScript,false,false,false,0,false,false,false,false +srijitpaul/Gamma_testers,srijitpaul,C++,false,false,false,0,false,false,false,false +tdball/django-mkdocs,tdball,Python,false,false,false,0,false,false,false,false +archbuild/packages/firefox-nightly,archbuild,Shell,true,false,false,1,false,false,false,false +TroyYang/node-server-demo,TroyYang,JavaScript,false,false,false,0,false,false,false,false +syf1211/WEBNOTE,syf1211,JavaScript,false,false,false,0,false,false,false,false +marius-rizac/ci-registry,marius-rizac,Makefile,false,false,false,0,false,false,false,false +VV5/vietnam-war,VV5,JavaScript,true,false,false,1,false,true,false,false +Common-Lisp/iterate,Common-Lisp,CommonLisp,false,false,false,0,false,false,false,false +boychenko13/colorful,boychenko13,JavaScript,false,false,false,0,false,false,false,false +rikgibson/city-web,rikgibson,JavaScript,false,false,false,0,false,false,false,false +brokenrobot/tplink_smarthome,brokenrobot,C#,false,false,false,0,false,false,false,false +teymoori/trello,teymoori,Java,false,false,false,0,false,false,false,false +francis-fortier/changedetect,francis-fortier,TypeScript,false,false,false,0,false,false,false,false +DenysVuika/adf-content-viewers,DenysVuika,TypeScript,false,false,false,0,false,false,false,false +noeruchan/tuner,noeruchan,PHP,false,false,false,0,false,false,false,false +macaptain/advent-of-code,macaptain,Kotlin,false,false,true,0,false,false,false,false +georg.aures/Reinforcement_Learning_for_Robotics.Project,georg.aures,HTML,false,false,false,0,false,false,false,false +WebKelasB/social-net,WebKelasB,PHP,false,false,false,0,false,false,false,false +golyalpha/galacticity,golyalpha,Python,false,false,false,0,false,false,false,false +acando14/trainingPhp,acando14,PHP,false,false,false,0,false,false,false,false +open-source-devex/terraform-modules/aws/ecs-cluster,open-source-devex,HCL,true,false,false,2,true,false,false,true +rikgibson/city-kubernetes,rikgibson,,false,false,false,0,false,false,false,false +aeroaks/tdd_python,aeroaks,Python,false,false,false,0,false,false,false,false +signatev/url-shortener,signatev,Java,false,false,false,0,false,false,false,false +CloudskyInc/Portfolio,CloudskyInc,CSS,false,false,false,0,false,false,false,false +webarthur/Boicote,webarthur,CSS,false,false,false,0,false,false,false,false +kartavzeff/object-oriented-programming,kartavzeff,C++,false,false,false,0,false,false,false,false +distributopia/masto-world-overview,distributopia,,false,false,false,0,false,false,false,false +Shushan.Manandyan/weatherApp,Shushan.Manandyan,Java,false,false,false,0,false,false,false,false +xamcosta/Anafit,xamcosta,Python,false,false,false,0,false,false,false,false +thelamer/taisun-stacks-website,thelamer,JavaScript,false,false,false,0,false,false,false,false +analytips/ktravel,analytips,Python,false,false,false,0,false,false,false,false +VV5/world-war-two,VV5,JavaScript,true,false,false,1,false,true,false,false +puatham/dev-ops,puatham,Java,false,false,false,0,false,false,false,false +caedes/formation-react-pizza,caedes,JavaScript,false,false,false,0,false,false,false,false +geeklhem/teaching,geeklhem,JupyterNotebook,false,false,false,0,false,false,false,false +alibitek-flutter/flutter-docker-images,alibitek-flutter,,true,false,false,1,true,false,false,false +tjvb/laravel-mail-catchall,tjvb,PHP,true,false,false,2,false,true,false,false +utopia-planitia/gitlab-kubernetes-runner,utopia-planitia,Shell,false,false,false,0,false,false,false,false +marcheing/spn,marcheing,C++,true,false,false,1,true,false,false,false +sanpi/effitask,sanpi,Rust,true,false,false,1,false,true,false,false +mostafa-barmshory/group-tool,mostafa-barmshory,Shell,false,false,false,0,false,false,false,false +Sylhare/integration-tests,Sylhare,,true,false,false,3,true,true,true,false +SimplePLC/SimplePLC_r,SimplePLC,TypeScript,false,false,false,0,false,false,false,false +warfawl/fs2-algorithms,warfawl,Java,false,false,false,0,false,false,false,false +sharpknot/OverHeat,sharpknot,C#,false,false,false,0,false,false,false,false +imsanzaypatel/demo2,imsanzaypatel,,false,false,false,0,false,false,false,false +xqg/TalkingAssistant,xqg,Java,false,false,false,0,false,false,false,false +gt8/open-source/elixir/eidetic-plug,gt8,Elixir,true,false,false,3,true,true,false,false +trt-momondo/tech-talks,trt-momondo,Swift,false,false,false,0,false,false,false,false +retro-coder/microwave64,retro-coder,Assembly,false,false,false,0,false,false,false,false +msobalvarro/Neoux-GTA,msobalvarro,JavaScript,false,false,false,0,false,false,false,false +teymoori/phpfridays,teymoori,HTML,false,false,false,0,false,false,false,false +JohnnyLhz/share,JohnnyLhz,,false,false,false,0,false,false,false,false +norecess464/bunny_tetris,norecess464,C,false,false,false,0,false,false,false,false +uniqx/provi,uniqx,Python,true,false,false,1,false,true,false,false +prakashvishnu08/Book_store,prakashvishnu08,HTML,false,false,false,0,false,false,false,false +ranaterning/book-it,ranaterning,JavaScript,false,false,false,0,false,false,false,false +jbarascut/blog,jbarascut,HTML,true,false,false,1,false,true,false,false +shellyniz/GitlabClientDemo,shellyniz,TypeScript,false,false,false,0,false,false,false,false +chambart/opam-repo,chambart,,false,false,false,0,false,false,false,false +atoxiam/OneDayGameJamCompetetion,atoxiam,C#,false,false,false,0,false,false,false,false +dwthurber/acdmy.io,dwthurber,CSS,false,false,false,0,false,false,false,false +adamzelycz/cms42,adamzelycz,CSS,true,false,false,2,false,false,true,false +pouriya-jahanbakhsh/test,pouriya-jahanbakhsh,,false,false,false,0,false,false,false,false +dietsoda/yail,dietsoda,Java,true,false,true,1,false,false,true,false +comfort-stereo/omnitool,comfort-stereo,TypeScript,false,false,false,0,false,false,false,false +yamada10/100DaysOfCode,yamada10,JupyterNotebook,false,false,false,0,false,false,false,false +acz13/cpp_primer_highlighted,acz13,CSS,false,false,false,0,false,false,false,false +slon/shad-ts,slon,Python,true,true,false,1,false,true,false,false +rexhin/angular-5,rexhin,TypeScript,false,false,false,0,false,false,false,false +rexhin/login-register-mongodb-passportjs,rexhin,JavaScript,false,false,false,0,false,false,false,false +lilo_jp/resources,lilo_jp,,false,false,false,0,false,false,false,false +mattbell87/spin-the-wheel,mattbell87,JavaScript,true,false,false,2,false,true,true,false +r2robotics/r2robotics_simulator,r2robotics,C++,false,false,false,0,false,false,false,false +Ozozuz/SO-2017-GameProject,Ozozuz,C,false,false,false,0,false,false,false,false +Retr0_System/Monero,Retr0_System,C++,false,false,false,0,false,false,false,false +Retr0_System/Vim,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/Rust,Retr0_System,Rust,false,false,false,0,false,false,false,false +FlorestanII/MathLibrary,FlorestanII,Java,true,false,false,2,false,false,false,false +Retr0_System/IPFS,Retr0_System,,false,false,false,0,false,false,false,false +camillebucatcat/epoint,camillebucatcat,HTML,false,false,false,0,false,false,false,false +ftornil/graphes,ftornil,C++,false,false,false,0,false,false,false,false +aminvafaei13/bimito,aminvafaei13,JavaScript,false,false,false,0,false,false,false,false +200ok/hegel,200ok,Ruby,false,false,false,0,false,false,false,false +qf2-pre/users,qf2-pre,Python,false,false,false,0,false,false,false,false +jsonsonson/wily-cli,jsonsonson,JavaScript,true,false,false,4,false,true,false,false +ArtificialAmateur/CIS-175,ArtificialAmateur,Java,false,false,false,0,false,false,false,false +Arasto/provatester,Arasto,Java,false,false,false,0,false,false,false,false +wannadream-dev/HighDream,wannadream-dev,PHP,false,false,false,0,false,false,false,false +Arasto/gitlabinlemningenenn,Arasto,Java,true,false,true,1,false,true,false,false +dingchuandong1/WXreverse,dingchuandong1,Objective-C,false,false,false,0,false,false,false,false +Retr0_System/liboqs,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/openssl-quantum-safe,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/NTRUEncrypt,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/ringlwe,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/PQCrypto-SIDH,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/FYP,Retr0_System,Matlab,false,false,false,0,false,false,false,false +Retr0_System/node-mceliece,Retr0_System,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/BitPunch,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/spot-on,Retr0_System,C++,false,false,false,0,false,false,false,false +Retr0_System/merkletree,Retr0_System,Java,false,false,false,0,false,false,false,false +Retr0_System/merkle-tree,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/secure-block-device,Retr0_System,C,false,false,false,0,false,false,false,false +Retr0_System/bc-java,Retr0_System,Java,false,false,false,0,false,false,false,false +Retr0_System/blockchain-javascript,Retr0_System,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/merkletree-go,Retr0_System,Go,false,false,false,0,false,false,false,false +Retr0_System/LBRY,Retr0_System,Python,false,true,false,0,false,false,false,false +Retr0_System/bitcore-node,Retr0_System,JavaScript,false,false,false,0,false,false,false,false +akuchin/http-demo,akuchin,Java,false,false,false,0,false,false,false,false +Svensson92/RobinSvensson,Svensson92,Java,true,false,true,1,false,true,false,false +codeministry/ipm,codeministry,,false,false,false,0,false,false,false,false +gutigen/yasticonslist,gutigen,,false,false,false,0,false,false,false,false +kannanvm/gnupromo,kannanvm,,false,false,false,0,false,false,false,false +gitlab-pkg/gitlab-gitaly,gitlab-pkg,Makefile,true,false,false,3,true,false,false,true +EthGiving/EthGiving-API,EthGiving,JavaScript,false,false,false,0,false,false,false,false +jonatiger/mampf,jonatiger,HTML,false,false,false,0,false,false,false,false +ajitsonlion/cognitix,ajitsonlion,TypeScript,false,false,false,0,false,false,false,false +Hextaine/Elementalists,Hextaine,Java,false,false,false,0,false,false,false,false +ivan-felavel/30-days-of-code,ivan-felavel,Python,false,false,false,0,false,false,false,false +xapix/cnvrt,xapix,Clojure,true,false,false,1,false,true,false,false +sanchith.hegde/Kadavara-Kustom-Pack-Wallpapers,sanchith.hegde,,false,false,false,0,false,false,false,false +thanbaiks/node-starter,thanbaiks,JavaScript,false,false,false,0,false,false,false,false +iptv-updated/websocket_easy,iptv-updated,Java,false,false,false,0,false,false,false,false +tanphuc2509/webcuoiky,tanphuc2509,PHP,false,false,false,0,false,false,false,false +chetansharma/carwashmi,chetansharma,JavaScript,false,false,false,0,false,false,false,false +gruene_jugend/igeloffice,gruene_jugend,PHP,false,false,false,0,false,false,false,false +gafar264/Swiss,gafar264,HTML,false,false,false,0,false,false,false,false +ccCam/DOOMBRINGER-Text-Maker,ccCam,Python,false,false,false,0,false,false,false,false +driveeach/drivesi,driveeach,HTML,false,false,false,0,false,false,false,false +taichunmin/progit2-zh-tw,taichunmin,CSS,true,false,false,3,true,false,true,true +moorepants/skijumpdesign,moorepants,Python,true,true,false,1,false,true,false,false +caldera-labs/gutenberg-examples/guten-dev,caldera-labs,CSS,false,false,false,0,false,false,false,false +1372143376/www.wxpeng.cn,1372143376,JavaScript,false,false,false,0,false,false,false,false +android-lineageos-kinzie-johnth/lineageos-kinzie-manifests,android-lineageos-kinzie-johnth,Shell,false,false,false,0,false,false,false,false +juupiter/FakeRansom-C3S1,juupiter,C#,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex2-react,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex3-metabox,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex4-embed,caldera-labs,,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex5-theme,caldera-labs,CSS,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex6-events,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +jmarez/biketheftcartography,jmarez,JavaScript,false,false,false,0,false,false,false,false +imbarwinata/wp-custom,imbarwinata,,false,false,false,0,false,false,false,false +kwask/website,kwask,Python,false,true,false,0,false,false,false,false +AmauryG13/ArtificialNeuralNetwork,AmauryG13,Python,false,false,false,0,false,false,false,false +quentin.rillet/cv,quentin.rillet,VisualBasic,true,false,false,2,true,false,true,false +JosunLP/fng_status_plugin,JosunLP,CSS,false,false,false,0,false,false,false,false +AntonyRouaud/deconoel,AntonyRouaud,HTML,false,false,false,0,false,false,false,false +mfalzetta/montparnasse,mfalzetta,,false,false,false,0,false,false,false,false +Oleg-Chernov/voltronshop,Oleg-Chernov,HTML,false,false,false,0,false,false,false,false +fahrenholz/pdo-database-bundle,fahrenholz,PHP,false,false,false,0,false,false,false,false +Neognosis/NgBot,Neognosis,C#,false,false,false,0,false,false,false,false +squad.alert/myford-alexa,squad.alert,Python,false,false,false,0,false,false,false,false +thomasscottterry121/Compiler,thomasscottterry121,C#,true,false,false,1,true,false,false,false +thomas1814/journal,thomas1814,Python,false,false,false,0,false,false,false,false +vilmosnagy/restdea,vilmosnagy,Kotlin,true,false,false,1,true,false,false,false +jordankueh/slackr,jordankueh,Go,true,false,false,2,true,true,false,false +daipham/shopping-cart,daipham,JavaScript,false,false,false,0,false,false,false,false +avinashmx/docker-hugo,avinashmx,HTML,false,false,false,0,false,false,false,false +milanvadher/connectingIdeas,milanvadher,TypeScript,false,false,false,0,false,false,false,false +450541354/test,450541354,,false,false,false,0,false,false,false,false +blenderone/public/oslpy,blenderone,Python,false,false,false,0,false,false,false,false +Ritubh/kubernetes,Ritubh,Ruby,true,false,false,2,true,true,false,false +nemoto/rekey,nemoto,Swift,false,false,false,0,false,false,false,false +bdjnk/js-aoc,bdjnk,JavaScript,true,false,false,1,false,false,true,false +spasscan/konfigurator,spasscan,Python,false,false,false,0,false,false,false,false +IAI-GL3-17-18/TP-SIG-GROUPE-2,IAI-GL3-17-18,JavaScript,true,false,false,1,false,false,true,false +salemgd/salem-gdk,salemgd,C++,false,false,false,0,false,false,false,false +dg0123/ufs,dg0123,Python,false,false,false,0,false,false,false,false +andersjohansson/define-word-thesaurus,andersjohansson,EmacsLisp,false,false,false,0,false,false,false,false +Indexyz/docker-torrent-alpine,Indexyz,,true,false,false,1,true,false,false,false +mkoritala/BbvaCompassAssignment,mkoritala,Java,false,false,false,0,false,false,false,false +srrg-software/srrg2_orazio_core,srrg-software,C,false,false,false,0,false,false,false,false +yethiel/art-gallery,yethiel,,false,false,false,0,false,false,false,false +texaspark/psoco-mes,texaspark,,false,false,false,0,false,false,false,false +infomasternotes/PSS,infomasternotes,TeX,true,false,false,1,false,true,false,false +artdvp/vue-acourse,artdvp,JavaScript,false,false,false,0,false,false,false,false +xygeng/training,xygeng,Java,false,false,false,0,false,false,false,false +kadirsefaunal/peoplang,kadirsefaunal,PHP,false,false,false,0,false,false,false,false +learnercfd/metaLBM,learnercfd,C++,true,false,false,1,false,true,false,false +xunaix/snake_game,xunaix,JavaScript,false,false,false,0,false,false,false,false +snurnitsyn/spbstu-stm32mpu9150-vizualization,snurnitsyn,C#,false,false,false,0,false,false,false,false +thomas1814/space-invaders-game,thomas1814,C,false,false,false,0,false,false,false,false +kontinu/home,kontinu,JavaScript,false,false,false,0,false,false,false,false +coopon/uauto/backend/uauto-backend-python,coopon,Python,false,true,false,0,false,false,false,false +AngelTerrones/V-Algol,AngelTerrones,Assembly,false,false,false,0,false,false,false,false +noella-snippets/Discord.py-Rewrite,noella-snippets,Python,false,false,false,0,false,false,false,false +tx_project/tx3_web_app,tx_project,JavaScript,false,false,false,0,false,false,false,false +zenprotocol/zenwallet,zenprotocol,JavaScript,false,false,false,0,false,false,false,false +zamppe/recs,zamppe,PHP,false,false,false,0,false,false,false,false +dazsmith/fokas-ibvp-lower-order-terms,dazsmith,JupyterNotebook,false,false,false,0,false,false,false,false +andrerfneves/andrenev.es,andrerfneves,JavaScript,false,false,false,0,false,false,false,false +loyke96/fopos,loyke96,C++,false,false,false,0,false,false,false,false +Akshaybhalerao350/wallaper,Akshaybhalerao350,TypeScript,false,false,false,0,false,false,false,false +qui-a-mange-le-graphiste/qui-a-mange-le-graphiste.gitlab.io,qui-a-mange-le-graphiste,HTML,true,false,false,1,false,false,true,false +LubomirR/mutation-of-jb-tools,LubomirR,C++,false,false,false,0,false,false,false,false +vlead-projects/exp-pedagogy,vlead-projects,HTML,false,false,false,0,false,false,false,false +g-dev/form,g-dev,JavaScript,false,false,false,0,false,false,false,false +tomderudder/RTP-REST,tomderudder,JavaScript,false,false,false,0,false,false,false,false +scott.m.campbell11/polaris-systems,scott.m.campbell11,Python,false,true,false,0,false,false,false,false +itayronen/itay-random,itayronen,HTML,false,false,false,0,false,false,false,false +abinitio/artificial_intelligence_for_robotics,abinitio,JupyterNotebook,false,false,false,0,false,false,false,false +scalamock/ScalaMock,scalamock,Scala,false,false,false,0,false,false,false,false +rafaelsvieira/cryptocurrency-analyze,rafaelsvieira,Python,false,false,false,0,false,false,false,false +VV5/magazine-editor,VV5,JavaScript,true,false,false,1,false,true,false,false +laszlobarabas/nodejs-ci-demo,laszlobarabas,JavaScript,true,false,false,3,false,true,true,false +dumbrobot00/simple-cnn-turtlebot2-nav,dumbrobot00,Python,false,false,false,0,false,false,false,false +fluorine/compositor,fluorine,C,true,false,false,1,true,false,false,false +Avris/AltDownloader,Avris,JavaScript,false,false,false,0,false,false,false,false +LongLiveCHIEF/pdk,LongLiveCHIEF,,false,false,false,0,false,false,false,false +estebansanti/ig-bot,estebansanti,Python,false,false,false,0,false,false,false,false +craft-cms-training/crafty-coffee-templates,craft-cms-training,CSS,false,false,false,0,false,false,false,false +TMW2/Docs,TMW2,,false,false,false,0,false,false,false,false +TMW2/evol-all,TMW2,Shell,false,false,false,0,false,false,false,false +bfcarpio/Student-Money-guide,bfcarpio,TeX,true,false,false,1,false,true,false,false +andiramdani/Crud-PHP-OOP,andiramdani,PHP,false,false,false,0,false,false,false,false +mangeshchikane29/Demo,mangeshchikane29,Java,false,false,false,0,false,false,false,false +atuncatunc/hanim-ne-alayim,atuncatunc,JavaScript,true,false,false,1,false,false,true,false +maruilong/springbootrestful,maruilong,Java,false,false,false,0,false,false,false,false +shockwave-fivem/nitro,shockwave-fivem,Lua,false,false,false,0,false,false,false,false +BrunoPincho/Asint-cloud,BrunoPincho,Python,false,false,false,0,false,false,false,false +wincak/threshy,wincak,C++,false,false,false,0,false,false,false,false +mezo/im3,mezo,C++,false,false,false,0,false,false,false,false +NeuroLex-Laboratories/Sage-Parkinsons-Data,NeuroLex-Laboratories,JupyterNotebook,false,false,false,0,false,false,false,false +camelot/kickc,camelot,Java,true,false,true,1,true,false,false,false +CarpenG/my_sublime,CarpenG,PHP,false,false,false,0,false,false,false,false +rtxrulez/demo,rtxrulez,CSS,true,false,false,2,false,true,true,false +disastor/AstorlandHTML,disastor,HTML,true,false,false,1,false,false,true,false +robotmachine/QuickLedger,robotmachine,Python,true,false,false,1,false,false,true,false +hammercui/ThirdPersionController,hammercui,C#,false,false,false,0,false,false,false,false +attila.farago.hu/EV3TreeVisASPApp,attila.farago.hu,JavaScript,true,false,false,1,true,false,false,false +pixikt/pixikt,pixikt,Kotlin,false,false,false,0,false,false,false,false +sarehundoank3/BotEhun,sarehundoank3,,false,false,false,0,false,false,false,false +Dreae/fetch-rs,Dreae,Rust,false,false,false,0,false,false,false,false +sensio.photo/sensio-faas,sensio.photo,TypeScript,false,false,false,0,false,false,false,false +ColinDuquesnoy/Absolute,ColinDuquesnoy,QML,true,false,false,3,true,true,false,false +codedothing/allock,codedothing,C,false,false,false,0,false,false,false,false +LPGD/pyramao,LPGD,,false,false,false,0,false,false,false,false +taboobat/kdm-app,taboobat,JavaScript,false,false,false,0,false,false,false,false +legoktm/semver-checker,legoktm,PHP,true,false,false,1,false,true,false,false +blazeu/gitlab-submission,blazeu,JavaScript,false,false,false,0,false,false,false,false +nbs-it/helpers,nbs-it,JavaScript,false,false,false,0,false,false,false,false +haue_jsj/ad_sell,haue_jsj,,false,false,false,0,false,false,false,false +devap/alexa-slokas,devap,JavaScript,false,false,false,0,false,false,false,false +CreatixEA/dotfiles,CreatixEA,Shell,false,false,false,0,false,false,false,false +smallworldnews/social-first-news-strategy,smallworldnews,JavaScript,true,false,false,2,true,false,false,false +ViDA-NYU/d3m/ta2ta3-stubs,ViDA-NYU,Python,true,true,false,1,true,false,false,false +ilpianista/FeedToot,ilpianista,Ruby,false,false,false,0,false,false,false,false +Oriond/FreeCAD-Steel_Frame,Oriond,Python,false,false,false,0,false,false,false,false +ice-spear-tools/issue-tracker,ice-spear-tools,,false,false,false,0,false,false,false,false +stenote/tally-book,stenote,Vue,false,false,false,0,false,false,false,false +zer0load/zer0load.gitlab.io,zer0load,CSS,true,false,false,1,false,true,false,false +peradnya/balinese-date-java-lib,peradnya,Java,true,false,false,2,true,true,false,false +lybt/lybt,lybt,HTML,true,false,false,1,false,false,true,false +skeleten/dotfiles,skeleten,EmacsLisp,false,false,false,0,false,false,false,false +SinaHBN/messenger,SinaHBN,Python,false,false,false,0,false,false,false,false +islands-wars/research/snippets,islands-wars,JavaScript,false,false,false,0,false,false,false,false +allgaeucoder/get-park-data-koeln,allgaeucoder,,false,false,false,0,false,false,false,false +atoxiam/MarketPLAYce,atoxiam,,false,false,false,0,false,false,false,false +atoxiam/AIUnrealAssessment,atoxiam,,false,false,false,0,false,false,false,false +ehunaja18/Line.bot,ehunaja18,,false,false,false,0,false,false,false,false +Line.bot/Line.bot1,Line.bot,,false,false,false,0,false,false,false,false +rpiguru/RPi_Cloud_download,rpiguru,Python,false,false,false,0,false,false,false,false +rpiguru/rpi_gsm,rpiguru,Python,false,false,false,0,false,false,false,false +rpiguru/RPi_TTS,rpiguru,Roff,false,false,false,0,false,false,false,false +VV5/symbolism,VV5,Vue,true,false,false,1,false,true,false,false +Finwood/rt2,Finwood,TeX,true,false,false,2,true,false,false,false +Line-bot/Linebot,Line-bot,,false,false,false,0,false,false,false,false +eyeo/websites/web.adblockbrowser.org,eyeo,CSS,false,false,false,0,false,false,false,false +akmalseferagic/Prak14-Jqurey,akmalseferagic,CSS,false,false,false,0,false,false,false,false +bagga.atul/my-awesome-project,bagga.atul,,false,false,false,0,false,false,false,false +gtaodiscord/New-Dawn,gtaodiscord,Lua,false,false,false,0,false,false,false,false +kalamity/todolist_db,kalamity,PHP,false,false,false,0,false,false,false,false +miroslav.d.lahoda/p2p-tracker,miroslav.d.lahoda,,false,false,false,0,false,false,false,false +z0x/pnano,z0x,PHP,false,false,false,0,false,false,false,false +DerethForever/ContentEditor,DerethForever,C#,false,false,false,0,false,false,false,false +floscher/gradle-josm-plugin,floscher,Kotlin,true,false,false,3,true,true,true,false +strimi.it/frontend.strimi.it,strimi.it,PHP,false,false,false,0,false,false,false,false +laanekass/TunniDemod4,laanekass,Java,false,false,false,0,false,false,false,false +Kami-Kami/discord.js,Kami-Kami,JavaScript,true,false,false,1,false,true,false,false +ansonmiu0214/hacker-rank,ansonmiu0214,JavaScript,false,false,false,0,false,false,false,false +stablejj/flask_boilerplate,stablejj,CSS,false,false,false,0,false,false,false,false +mpkelly1/OracleSQLdb,mpkelly1,PLSQL,false,false,false,0,false,false,false,false +Avris/Localisator,Avris,PHP,true,false,false,1,false,true,false,false +avergnaud/meetup_janvier,avergnaud,JavaScript,false,false,false,0,false,false,false,false +KillianKemps/kamosocial,KillianKemps,Ruby,false,false,false,0,false,false,false,false +quintenpalmer/lanq,quintenpalmer,Rust,false,false,false,0,false,false,false,false +SoroushSharing/soroushsharing.gitlab.io,SoroushSharing,JavaScript,true,false,false,1,false,true,false,false +prettycoldramen/gradle-maven-comparison,prettycoldramen,Java,true,false,true,4,true,true,false,false +rilis/rili/promise,rilis,C++,true,false,false,3,false,true,false,false +rilis/rili/pattern,rilis,C++,true,false,false,3,false,true,false,false +rilis/rili/test,rilis,C++,true,false,false,3,false,true,false,false +rilis/rili/compatibility,rilis,CMake,true,false,false,2,false,false,false,false +rilis/rili/service/time,rilis,C++,true,false,false,3,false,true,false,false +rilis/rili/service/compute,rilis,C++,true,false,false,3,false,true,false,false +notklaatu/pixabet,notklaatu,,false,false,false,0,false,false,false,false +cmontella/hivemind,cmontella,Rust,true,false,false,1,false,true,false,false +teb2klasa/szablon-prostej-strony-www,teb2klasa,HTML,false,false,false,0,false,false,false,false +Kenoji/Netpro_IoTDeNantokasite,Kenoji,Java,false,false,false,0,false,false,false,false +TOGoS/ProjectNotes2,TOGoS,OpenSCAD,false,false,false,0,false,false,false,false +NEIWAD/BPC-SI,NEIWAD,Java,false,false,true,0,false,false,false,false +islands-wars/hub,islands-wars,Java,true,false,false,2,false,false,true,false +satelligence/classifier,satelligence,Python,true,true,false,3,true,false,false,true +hokyjack/NAO-object-detection,hokyjack,Python,false,false,false,0,false,false,false,false +Tammo0987/Kotlin-Cloud,Tammo0987,Kotlin,false,false,false,0,false,false,false,false +TomasHubelbauer/modern-office-git-diff,TomasHubelbauer,JavaScript,false,false,false,0,false,false,false,false +freedesktop-sdk/infrastructure/infrastructure,freedesktop-sdk,HCL,false,false,false,0,false,false,false,false +rilis/rili/rili,rilis,JavaScript,true,false,false,2,false,false,true,false +peanutbutter144/java-projects,peanutbutter144,Java,false,false,false,0,false,false,false,false +tobiaskoch/gitlab-ci-example-mono,tobiaskoch,C#,true,false,false,2,false,true,true,false +willyspinner/tepuk-nyamuk,willyspinner,HTML,false,false,false,0,false,false,false,false +breithbarbot/tools.sh,breithbarbot,Shell,false,false,false,0,false,false,false,false +catalyst-it/puppet-masterless,catalyst-it,Ruby,false,false,false,0,false,false,false,false +Cartofior28/imageLevelAdjustment,Cartofior28,Java,false,false,false,0,false,false,false,false +LeoSalemann/iot210-leos,LeoSalemann,Python,false,false,false,0,false,false,false,false +freeeim/ken_ai,freeeim,,false,false,false,0,false,false,false,false +AnDwHaT5-Side-Mods/AnotherGymPlugin,AnDwHaT5-Side-Mods,Java,false,false,false,0,false,false,false,false +VV5/wttj,VV5,Vue,true,false,false,1,false,true,false,false +VV5/vatv,VV5,Vue,true,false,false,1,false,true,false,false +sane-project/website,sane-project,HTML,true,false,false,1,false,false,true,false +devlifealways/MDM,devlifealways,JavaScript,false,false,false,0,false,false,false,false +brc-openness/notas,brc-openness,,false,false,false,0,false,false,false,false +huanghe389/appium_parallel_execution,huanghe389,Java,false,false,true,0,false,false,false,false +wtaylor1984/NoteTonBoss,wtaylor1984,HTML,false,false,false,0,false,false,false,false +FiveScoreStudios/Website,FiveScoreStudios,HTML,true,false,false,1,false,false,true,false +comfort-stereo/babblegen-frontend,comfort-stereo,TypeScript,false,false,false,0,false,false,false,false +madcapjake/buncbone,madcapjake,CoffeeScript,true,false,false,1,false,true,false,false +baldwinchang/baldwinchang,baldwinchang,,true,false,false,1,false,true,false,false +agamigo/fead,agamigo,Go,false,false,false,0,false,false,false,false +selfReferentialName/MUKEX,selfReferentialName,C,false,false,false,0,false,false,false,false +axet/android-fbreader,axet,Java,false,false,false,0,false,false,false,false +jeeon/docker/docker-node-ionic-android,jeeon,,true,false,false,2,true,false,false,false +iggdrasil/carroyage,iggdrasil,Python,false,false,false,0,false,false,false,false +anarcat/gameclock,anarcat,Python,false,false,false,0,false,false,false,false +Sublimity-Blockchain/Riggle,Sublimity-Blockchain,Python,false,false,false,0,false,false,false,false +MartinD/master-thesis,MartinD,TypeScript,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-supertenant,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +rpkrawczyk/m8266s,rpkrawczyk,C,false,false,false,0,false,false,false,false +infothrill/python-dyndnsc,infothrill,Python,false,true,false,0,false,false,false,false +axet/android-fbreader-library,axet,Java,false,false,false,0,false,false,false,false +FlorestanII/LanguageManager,FlorestanII,Java,true,false,false,2,false,false,false,false +thelamer/taisun-vdi,thelamer,Shell,true,false,false,1,true,false,false,false +thelamer/taisun-dev,thelamer,Ruby,true,false,false,1,true,false,false,false +kikiwisaka/cashflowKW-API,kikiwisaka,JavaScript,false,false,false,0,false,false,false,false +prince-ph0en1x/QuInE,prince-ph0en1x,Python,false,false,false,0,false,false,false,false +Robert_Ciborowski/Iron-Bears-2018,Robert_Ciborowski,Java,false,false,false,0,false,false,false,false +TheLostLambda/thelostlambda.xyz,TheLostLambda,HTML,false,false,false,0,false,false,false,false +taro-sun/free_kun,taro-sun,Python,false,true,false,0,false,false,false,false +openstreetcraft/openstreetcraft.gitlab.io,openstreetcraft,,false,false,false,0,false,false,false,false +immoChat/immoChatDocs,immoChat,,false,false,false,0,false,false,false,false +lokiverloren/calibrae,lokiverloren,TypeScript,false,false,false,0,false,false,false,false +bauen1/myunix,bauen1,C,true,false,false,1,false,true,false,false +baumrock/kickstart,baumrock,PHP,false,false,false,0,false,false,false,false +MityaSaray/SynonymGame,MityaSaray,JavaScript,false,false,false,0,false,false,false,false +ricklamers/grid-docker,ricklamers,JavaScript,false,false,false,0,false,false,false,false +stuartcrouch/chauffeur-test,stuartcrouch,JavaScript,false,false,false,0,false,false,false,false +hedayat/powerfake,hedayat,C++,false,false,false,0,false,false,false,false +skofgar/jomis-neuralnetwork,skofgar,JavaScript,true,false,false,1,false,false,true,false +ArthurHNL/Senet,ArthurHNL,Java,false,false,false,0,false,false,false,false +daipham/app-google-search,daipham,Ruby,false,false,false,0,false,false,false,false +hishamnajam/forum-archive,hishamnajam,HTML,false,false,false,0,false,false,false,false +clagiordano/marketplaces-data-export,clagiordano,PHP,false,false,false,0,false,false,false,false +kalamity/youMix,kalamity,PHP,false,false,false,0,false,false,false,false +milosz.galazka/openbox-bookmarks-menu,milosz.galazka,Shell,false,false,false,0,false,false,false,false +milosz.galazka/nordvpn-import,milosz.galazka,Shell,false,false,false,0,false,false,false,false +Etshy/bookuto,Etshy,JavaScript,false,false,false,0,false,false,false,false +digiou/drb,digiou,Python,false,true,false,0,false,false,false,false +eighthave/ci-image-git-buildpackage,eighthave,Shell,true,false,false,3,true,true,false,true +Babak371/Tab,Babak371,Lua,false,false,false,0,false,false,false,false +mayermic/smartvineyards-dhms,mayermic,Java,true,false,true,2,true,false,false,false +kent2510/gachbetongnhe,kent2510,,false,false,false,0,false,false,false,false +iic/tams,iic,Java,false,false,false,0,false,false,false,false +iic/tams-ui,iic,CSS,false,false,false,0,false,false,false,false +John1314/TextProofreading,John1314,,false,false,false,0,false,false,false,false +Aboidrees/eaphei,Aboidrees,PHP,false,false,false,0,false,false,false,false +mcepl/CzeB21,mcepl,Makefile,false,false,false,0,false,false,false,false +akash_rawal/dispatch_ng,akash_rawal,C,true,false,false,1,false,true,false,false +oobyrne_tcd/ising-model,oobyrne_tcd,Python,false,false,false,0,false,false,false,false +lauri-huovila/fallout-companion,lauri-huovila,Vue,false,false,false,0,false,false,false,false +pdiveris/aginter,pdiveris,JavaScript,false,false,false,0,false,false,false,false +arcana-bot/arcana,arcana-bot,JavaScript,false,false,false,0,false,false,false,false +protechig/protech-2018,protechig,CSS,true,false,false,1,false,false,false,false +ezarateh/cursoLaravel,ezarateh,PHP,false,false,false,0,false,false,false,false +PienlopiPi/Trionym,PienlopiPi,C++,false,false,false,0,false,false,false,false +Alexjhandler/poltergeist,Alexjhandler,HTML,false,false,false,0,false,false,false,false +nick-sorbie/insuranceUI,nick-sorbie,JavaScript,false,false,false,0,false,false,false,false +IMO_EPOS/Volcanic_Activity_Reports,IMO_EPOS,Python,false,false,false,0,false,false,false,false +r2robotics/r2robotics_gr_description,r2robotics,Python,false,false,false,0,false,false,false,false +teunw/empathy-assignment,teunw,C#,false,false,false,0,false,false,false,false +AOBlockchain/docs.aoblockchain.io,AOBlockchain,,true,false,false,1,false,true,false,false +brokenframe/franca-mqtt,brokenframe,Java,false,false,false,0,false,false,false,false +Potter/led-cube,Potter,C++,false,false,false,0,false,false,false,false +kingDeveloper_21th/react-native-google-places,kingDeveloper_21th,Java,false,false,false,0,false,false,false,false +kubiq/eveblues,kubiq,PHP,true,false,false,1,false,true,false,false +wilocw/sspy,wilocw,JupyterNotebook,false,false,false,0,false,false,false,false +rassouly/prustc,rassouly,OCaml,false,false,false,0,false,false,false,false +mwetoolkit/mwetoolkit3,mwetoolkit,Python,true,false,false,1,false,true,false,false +ladybirdweb/c7-tomcat,ladybirdweb,Shell,false,false,false,0,false,false,false,false +Ciborn/Yanswer,Ciborn,JavaScript,false,false,false,0,false,false,false,false +kodeking/hypnodrama,kodeking,C++,true,false,false,2,true,true,false,false +m27trognondepomme/prj-vfit,m27trognondepomme,C++,false,false,false,0,false,false,false,false +handycodejob/StreamerCoin,handycodejob,,false,false,false,0,false,false,false,false +handycodejob/MyStreamerCoinWallet,handycodejob,JavaScript,true,false,false,1,false,false,true,false +librehealth/radiology/RadAIJournal,librehealth,HTML,false,false,false,0,false,false,false,false +thudoduc/grabbing-weather-js,thudoduc,CSS,false,false,false,0,false,false,false,false +Jaxas/microProjectA_FGC_level_tracker,Jaxas,Java,false,false,false,0,false,false,false,false +kaine119/sccl-dictionary,kaine119,Python,true,false,false,3,false,true,true,false +ozenozkaya/diyabet_analiz,ozenozkaya,Java,false,false,false,0,false,false,false,false +akashk55/angularJs,akashk55,CSS,false,false,false,0,false,false,false,false +Ngenda/learn_gnu_make,Ngenda,Makefile,false,false,false,0,false,false,false,false +Fus10n/Fusion,Fus10n,TypeScript,true,false,false,3,true,false,false,false +treviz/treviz-website,treviz,CSS,false,false,false,0,false,false,false,false +mkhadaffy/Puy,mkhadaffy,Python,false,false,false,0,false,false,false,false +jannik.keye/trump-or-orange-api,jannik.keye,JavaScript,true,false,false,1,false,false,true,false +arcfire/rlite,arcfire,C,true,false,false,1,false,false,false,false +fernando.prass/sql-scripts,fernando.prass,PLSQL,false,false,false,0,false,false,false,false +sumanghimirey/web-scarping,sumanghimirey,PHP,false,false,false,0,false,false,false,false +nd-cse-30341-sp18/project1,nd-cse-30341-sp18,Makefile,false,false,false,0,false,false,false,false +psyphai/VRShooter,psyphai,C#,false,false,false,0,false,false,false,false +luispazosouton/PV-Efficiency-Limits,luispazosouton,Matlab,false,false,false,0,false,false,false,false +coworking-night-hsv/urban-chess-engine,coworking-night-hsv,HTML,false,false,false,0,false,false,false,false +handycodejob/StreamerCoinContracts,handycodejob,JavaScript,false,false,false,0,false,false,false,false +rangerone/Tars,rangerone,C,false,false,false,0,false,false,false,false +nllgg/CiviCRM,nllgg,PHP,false,false,false,0,false,false,false,false +achiminator/PPTXDecomposer,achiminator,Java,false,false,true,0,false,false,false,false +TMW2/clientdata,TMW2,HTML,true,false,false,3,false,true,false,false +IntegerMan/Emergence,IntegerMan,TypeScript,false,false,false,0,false,false,false,false +crowandraven-public/raven-cms-lessons,crowandraven-public,HTML,false,false,false,0,false,false,false,false +chase9/will.do,chase9,Swift,false,false,false,0,false,false,false,false +omento/openvdb-toolkit,omento,Python,false,false,false,0,false,false,false,false +pysqaty/mini-eventer,pysqaty,Java,false,false,false,0,false,false,false,false +kachaloali/automate-cellulaire,kachaloali,CSS,true,false,false,2,false,true,true,false +GlowCraft/AuthAPI,GlowCraft,Java,false,false,true,0,false,false,false,false +kumanna/debian-installer-rdp,kumanna,Shell,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-spa,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +angular-material-home/angular-material-home-help,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +leemacaulay/audiogram,leemacaulay,JavaScript,false,false,false,0,false,false,false,false +kai.richard.koenig/easytainer-cli,kai.richard.koenig,Python,true,true,false,5,false,true,true,false +Aboidrees/KararyArchive,Aboidrees,PHP,false,false,false,0,false,false,false,false +nielsvangijzen/python-milight-api,nielsvangijzen,Python,false,false,false,0,false,false,false,false +julioca1/sojuam,julioca1,,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-theme,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +watercolor-games/project-bofa,watercolor-games,C#,false,false,false,0,false,false,false,false +DBMGE/Maps,DBMGE,JavaScript,true,false,false,1,false,false,false,false +thudoduc/fastfood,thudoduc,HTML,false,false,false,0,false,false,false,false +akshayub/kids-interactive-learning,akshayub,JavaScript,false,false,false,0,false,false,false,false +nurina/OdooCustom,nurina,Python,false,false,false,0,false,false,false,false +dapps/react-voting-dapp,dapps,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/gitpub,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +talyh/kerenim,talyh,,false,false,false,0,false,false,false,false +gogleman/task-mgn,gogleman,Java,false,false,true,0,false,false,false,false +ewdurbin/chalice-github-auth,ewdurbin,Python,false,true,false,0,false,false,false,false +angular-material-home/angular-material-home-language,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +ajwa/3idiots,ajwa,C,false,false,false,0,false,false,false,false +samuel-garratt/soaspec,samuel-garratt,Ruby,true,false,false,2,false,true,true,false +cedricfeyaerts/wp-101-minimal,cedricfeyaerts,PHP,false,false,false,0,false,false,false,false +ng-projects/inventory-app,ng-projects,TypeScript,false,false,false,0,false,false,false,false +luizapozzobon/me_socket_server,luizapozzobon,JavaScript,false,false,false,0,false,false,false,false +suni1212/LinusApp,suni1212,HTML,false,false,false,0,false,false,false,false +suman_c2k/Hackathon16Jan,suman_c2k,JavaScript,false,false,false,0,false,false,false,false +ftibi93/OmdbApp,ftibi93,Kotlin,false,false,false,0,false,false,false,false +offa/docker-images-ci,offa,Shell,true,false,false,1,false,true,false,false +sims1253/ml-voodoo,sims1253,Python,true,true,false,1,false,true,false,false +cjung/cloudforms-demo,cjung,Ruby,false,false,false,0,false,false,false,false +rajeshcht0/ims,rajeshcht0,JavaScript,false,false,false,0,false,false,false,false +islands-wars/research/graylog,islands-wars,Java,true,false,false,1,true,false,false,false +gableroux/gitlab-ci-example-docker,gableroux,,true,false,false,1,true,false,false,false +chinesepeanuts/dotfiles,chinesepeanuts,PHP,false,false,false,0,false,false,false,false +saimunhossain/AngularApp-Github-Profile-Searching,saimunhossain,HTML,false,false,false,0,false,false,false,false +mjmax/ansible-training-public,mjmax,Shell,false,false,false,0,false,false,false,false +eyes_only/bash-scripts-collection,eyes_only,Shell,false,false,false,0,false,false,false,false +eyes_only/python-url-base64-decoder-gui,eyes_only,Python,false,false,false,0,false,false,false,false +leffel/the-question-game,leffel,JavaScript,false,false,false,0,false,false,false,false +juanyordy/ExamenAlgoIII,juanyordy,HTML,false,false,false,0,false,false,false,false +VV5/pineville,VV5,JavaScript,true,false,false,1,false,true,false,false +attila.repassy/angular5-ngx-chart,attila.repassy,JavaScript,false,false,false,0,false,false,false,false +kkaurk/Teosed,kkaurk,JavaScript,false,false,false,0,false,false,false,false +saskialaasik/LiisiSaskiaValiItProjekt,saskialaasik,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-git-flat-archive,TomasHubelbauer,,false,false,false,0,false,false,false,false +jorbencas/StudentsRunKing_DIW,jorbencas,CSS,false,false,false,0,false,false,false,false +noemie-kerroux/skull-web-prototype,noemie-kerroux,HTML,false,false,false,0,false,false,false,false +breadthe-public/folio,breadthe-public,JavaScript,false,false,false,0,false,false,false,false +islands-wars/crochet,islands-wars,,false,false,false,0,false,false,false,false +josepsolerpla/Projecte_MVC_1rDAW,josepsolerpla,PHP,false,false,false,0,false,false,false,false +circle-eh/docker/docker-pocketmine,circle-eh,Makefile,true,false,false,1,true,false,false,false +jibe-b/open-data-analyst,jibe-b,,false,false,false,0,false,false,false,false +taylorzane/SublimePresentationMode,taylorzane,Python,false,false,false,0,false,false,false,false +rich.seviora/project-base,rich.seviora,JavaScript,false,false,false,0,false,false,false,false +welzie/launchcart-class1,welzie,Java,false,false,false,0,false,false,false,false +DBobb/CS4540_SP18_G10,DBobb,C#,false,false,false,0,false,false,false,false +tipyn/macos-setup,tipyn,,false,false,false,0,false,false,false,false +dougalg/vue-in-out,dougalg,JavaScript,true,false,false,1,false,true,false,false +uni10/uni10.gitlab.io,uni10,Ruby,true,false,false,2,false,true,true,false +jtcfrontend/node01,jtcfrontend,JavaScript,false,false,false,0,false,false,false,false +nescience/machine_learning,nescience,Python,false,false,false,0,false,false,false,false +turbo-public/backend-task-patterns,turbo-public,,false,false,false,0,false,false,false,false +wfer88/TestWilliam,wfer88,,false,false,false,0,false,false,false,false +shallawell/cfn-rds-postgres-multi-az-piops,shallawell,,false,false,false,0,false,false,false,false +jordanmurkin/blockathon,jordanmurkin,,false,false,false,0,false,false,false,false +serial-lab/quartet_epcis,serial-lab,Python,true,true,false,3,false,false,false,false +tildestudio/tilde-toolkit,tildestudio,GDScript,false,false,false,0,false,false,false,false +oskopek/irsee.net,oskopek,C#,true,false,false,3,true,true,true,false +QuantumAnon/TexStyle,QuantumAnon,TeX,false,false,false,0,false,false,false,false +elmacko-open-source/node-cryptography,elmacko-open-source,JavaScript,true,false,false,2,false,true,true,false +OpenBrewery/BeerBob_HW,OpenBrewery,,false,false,false,0,false,false,false,false +piratsky-institut/institut,piratsky-institut,HTML,true,false,false,1,false,false,true,false +scotttrinh/number-ranges,scotttrinh,JavaScript,false,false,false,0,false,false,false,false +salfter/zpool-switch,salfter,Python,false,false,false,0,false,false,false,false +pshoniuk/lite-task-manager,pshoniuk,JavaScript,false,false,false,0,false,false,false,false +LibrifyJS/LibrifyJS,LibrifyJS,JavaScript,true,false,false,1,false,false,true,false +torgaiv/spotitfree,torgaiv,C#,false,false,false,0,false,false,false,false +cacukin/prueba,cacukin,,false,false,false,0,false,false,false,false +madhon/Cekstok.com,madhon,HTML,false,false,false,0,false,false,false,false +single_swamm/my_gem,single_swamm,Ruby,false,false,false,0,false,false,false,false +Kailokari/homework,Kailokari,C#,false,false,false,0,false,false,false,false +cardi/auntietuna,cardi,JavaScript,false,false,false,0,false,false,false,false +Gorgonita/DetectionError,Gorgonita,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-spare-time-projects,TomasHubelbauer,,false,false,false,0,false,false,false,false +juanrubio/schibsted-raas,juanrubio,JavaScript,false,false,false,0,false,false,false,false +maxmckenzie/berepublic-infustructure-specification,maxmckenzie,JavaScript,true,false,false,4,true,true,true,true +PresentationsTechniques/GitLab,PresentationsTechniques,CSS,false,false,false,0,false,false,false,false +syondi/Python-Assignments,syondi,Python,false,false,false,0,false,false,false,false +CodeSpiral/MrReerse,CodeSpiral,JavaScript,false,false,false,0,false,false,false,false +mdiehr/skool-kayak,mdiehr,Python,false,false,false,0,false,false,false,false +skaarstein/Rostee,skaarstein,,false,false,false,0,false,false,false,false +GameJam2018/TestPygameMultiplayer,GameJam2018,Python,false,false,false,0,false,false,false,false +devap/VedabaseLookup,devap,Python,false,false,false,0,false,false,false,false +sean.brady/fusionpbx,sean.brady,PHP,false,false,false,0,false,false,false,false +humanitiesNerd/new-qisquiliae,humanitiesNerd,Scheme,false,false,false,0,false,false,false,false +osposweb/osposweb,osposweb,,false,false,false,0,false,false,false,false +chrisLaflamme/helpers-ec2,chrisLaflamme,Ruby,false,false,false,0,false,false,false,false +nightonlypj/vagrant-ansible-centos6,nightonlypj,Shell,false,false,false,0,false,false,false,false +nightonlypj/vagrant-ansible-centos7,nightonlypj,Shell,false,false,false,0,false,false,false,false +nightonlypj/vagrant-box-centos6,nightonlypj,,false,false,false,0,false,false,false,false +nightonlypj/vagrant-box-centos7,nightonlypj,,false,false,false,0,false,false,false,false +ntnsndr/questions,ntnsndr,TeX,true,false,false,2,false,true,true,false +WorkShops2017-2018/workshop-symfony-publique,WorkShops2017-2018,PHP,false,false,false,0,false,false,false,false +brunowonder/Node,brunowonder,Python,false,false,false,0,false,false,false,false +alexmordue/james-c64,alexmordue,C++,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-obscure-js-stuff,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/js-frameworks,TomasHubelbauer,,false,false,false,0,false,false,false,false +game-collab/client/unity-client,game-collab,C#,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-blender,TomasHubelbauer,,false,false,false,0,false,false,false,false +isaacjgonzalez/rss-to-db,isaacjgonzalez,Python,false,false,false,0,false,false,false,false +islands-wars/countdown,islands-wars,HTML,true,false,false,1,false,false,true,false +tiffy321/u45538,tiffy321,C++,false,false,false,0,false,false,false,false +Retr0_System/godot,Retr0_System,C++,false,false,false,0,false,false,false,false +trongle/voide,trongle,C++,false,false,false,0,false,false,false,false +fa81/bga-pi,fa81,PHP,false,false,false,0,false,false,false,false +vinopravin/findmehere,vinopravin,JavaScript,true,false,false,1,false,false,true,false +ikeji/linda,ikeji,Ruby,false,false,false,0,false,false,false,false +orkorba/maybeway,orkorba,PHP,false,false,false,0,false,false,false,false +ykyuen/driving-web-browser-in-go-example,ykyuen,Go,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-music,TomasHubelbauer,JavaScript,false,false,false,0,false,false,false,false +islands-wars/assets,islands-wars,,true,false,false,1,false,false,true,false +tori789/Match3_SDL,tori789,HTML,false,false,false,0,false,false,false,false +notpushkin/semantic-metro,notpushkin,,false,false,false,0,false,false,false,false +ciptamedia/bahasa-tools/IndonesianKataBakuChecker,ciptamedia,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-contracting,TomasHubelbauer,,false,false,false,0,false,false,false,false +phrolov.ivan/frontend-workspace-static,phrolov.ivan,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-secret-management,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-node-ubuntu-vps,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-unity,TomasHubelbauer,,false,false,false,0,false,false,false,false +jimbobz/scb_browser,jimbobz,R,false,false,false,0,false,false,false,false +dagormz/CS4540_Pillars,dagormz,ASP,false,false,false,0,false,false,false,false +ndeakin/Sly,ndeakin,Rust,false,false,false,0,false,false,false,false +LaunchCodeTraining/jquery-open-layers-starter,LaunchCodeTraining,JavaScript,false,false,false,0,false,false,false,false +mukund-kri/org-snippets,mukund-kri,,false,false,false,0,false,false,false,false +rommon/docker,rommon,PHP,true,false,false,1,false,false,false,false +NikitaBliznyuk1/turn-based-rpg,NikitaBliznyuk1,C#,false,false,false,0,false,false,false,false +naortega/Prayer.sh,naortega,Shell,false,false,false,0,false,false,false,false +sponger94/Reboot,sponger94,C#,false,false,false,0,false,false,false,false +arthurpiinheiro/chute-de-iniciante,arthurpiinheiro,JavaScript,false,false,false,0,false,false,false,false +eiko.esipe/eiko,eiko.esipe,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-postmarket-os,TomasHubelbauer,,false,false,false,0,false,false,false,false +angetato/INF2160_H2018_Solutions,angetato,Haskell,false,false,false,0,false,false,false,false +leo.fedyaev/framestamp-gradle-plugin,leo.fedyaev,Groovy,false,false,false,0,false,false,false,false +kimlab/rnapulse,kimlab,Python,false,true,false,0,false,false,false,false +BSD7TechnologyServices/installapplications,BSD7TechnologyServices,Python,false,false,false,0,false,false,false,false +Isidore/mihael-keehl-mockup,Isidore,,false,false,false,0,false,false,false,false +ToxiClaw/CMakeTemplate,ToxiClaw,C++,false,false,false,0,false,false,false,false +bskrtich/dotfiles,bskrtich,Shell,true,false,false,1,false,false,true,false +eighthave/rfp-test,eighthave,Python,true,false,false,1,false,true,false,false +stevenlocke/vagabond,stevenlocke,Python,false,false,false,0,false,false,false,false +atoxiam/PipeDream,atoxiam,Mathematica,false,false,false,0,false,false,false,false +mryan29/cse30341,mryan29,C,false,false,false,0,false,false,false,false +Thduque/calculadora-visual-studio,Thduque,VisualBasic,false,false,false,0,false,false,false,false +ablondin/inf5071-projet-enonce,ablondin,,false,false,false,0,false,false,false,false +sim590/inf3135-labo2-hiver2018,sim590,C,false,false,false,0,false,false,false,false +dmitriy.gnedoy/music-app-server,dmitriy.gnedoy,JavaScript,true,false,false,1,false,true,false,false +dmitriy.gnedoy/music-app-client,dmitriy.gnedoy,JavaScript,false,false,false,0,false,false,false,false +xf-demo/springbootTools,xf-demo,Java,false,false,true,0,false,false,false,false +npegane/PotCom,npegane,Java,false,false,false,0,false,false,false,false +yoshuaNahar/websocket-demo,yoshuaNahar,Java,false,false,false,0,false,false,false,false +rubygems/olx-mecha,rubygems,Ruby,false,false,false,0,false,false,false,false +snehaldangroshiya/treemd,snehaldangroshiya,Go,true,false,false,2,true,true,false,false +axual-training/alertevent-generator,axual-training,Java,true,false,true,3,true,false,true,true +beigebrucewayne/why-databricks,beigebrucewayne,,false,false,false,0,false,false,false,false +antoni.kozielewski/trailPathPlaner,antoni.kozielewski,JavaScript,true,false,false,1,false,false,true,false +Mataway/Zen,Mataway,,false,false,false,0,false,false,false,false +gitlab-pages-demo2/jekyll,gitlab-pages-demo2,CSS,true,false,false,2,false,true,true,false +TomasHubelbauer/bloggo-dotnet,TomasHubelbauer,,false,false,false,0,false,false,false,false +philippe_noel/BETAS,philippe_noel,R,false,false,false,0,false,false,false,false +ice-spear-tools/yaz0-lib,ice-spear-tools,C++,false,false,false,0,false,false,false,false +ablondin/inf2160-hiv2018-tp1-enonce,ablondin,Makefile,false,false,false,0,false,false,false,false +zenport.io/react-assignment,zenport.io,,false,false,false,0,false,false,false,false +umesh-timalsina/cs491-AdvancedPython,umesh-timalsina,Python,false,false,false,0,false,false,false,false +mutualraider/noselves,mutualraider,JavaScript,false,false,false,0,false,false,false,false +systemsengineers/se01-ansible-testing,systemsengineers,Python,false,true,false,0,false,false,false,false +gitlab-cookbooks/gitlab-exporters,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true +gianluca.rigoletti/esercizi-analisi-statistica-dei-ddati,gianluca.rigoletti,JupyterNotebook,false,false,false,0,false,false,false,false +SEG_FAULT/WumpusProject,SEG_FAULT,C#,false,false,false,0,false,false,false,false +thudoduc/grabing-reactjs,thudoduc,JavaScript,false,false,false,0,false,false,false,false +coolcode-selection/admin-frontend,coolcode-selection,CSS,false,false,false,0,false,false,false,false +coolcode-selection/admin-api,coolcode-selection,PHP,false,false,false,0,false,false,false,false +coolcode-selection/api,coolcode-selection,PHP,false,false,false,0,false,false,false,false +coolcode-selection/auto-test,coolcode-selection,PHP,false,false,false,0,false,false,false,false +glancr/mirros_api,glancr,Ruby,true,false,false,2,false,true,false,false +glancr/mirros_display,glancr,Vue,true,false,false,1,false,true,false,false +glancr/mirros_settings,glancr,Vue,true,false,false,2,true,true,false,false +vgrade/android_local_manifests,vgrade,,false,false,false,0,false,false,false,false +MoritzBru/cartography-playground,MoritzBru,JavaScript,true,false,false,1,false,false,true,false +ttldtor/veda,ttldtor,D,false,false,false,0,false,false,false,false +isciences/wsim/wsim_geoserver,isciences,Python,true,true,false,2,true,false,false,true +abich6990/fpga-ghdl-vivado-make,abich6990,Makefile,false,false,false,0,false,false,false,false +csc-492-denim/machine-assisted-data-mining,csc-492-denim,Go,true,false,false,4,false,true,true,false +gt8/open-source/elixir/eidetic-projector-elasticsearch,gt8,Elixir,true,false,false,3,false,true,false,false +agrcrobles/expo-crypto,agrcrobles,JavaScript,false,false,false,0,false,false,false,false +prateekkumarweb/isl,prateekkumarweb,C,false,false,false,0,false,false,false,false +dirn/Stone.vim,dirn,Vimscript,false,false,false,0,false,false,false,false +Yaft/my-js-awesome-list,Yaft,,false,false,false,0,false,false,false,false +sorsasampo/git-muffle,sorsasampo,Shell,false,false,false,0,false,false,false,false +JFoxI/Carden2,JFoxI,Java,false,false,false,0,false,false,false,false +nuga99/Java-Template,nuga99,Java,false,false,false,0,false,false,false,false +shahin718/Joiner1,shahin718,,false,false,false,0,false,false,false,false +luigiCali/Random_Forest_Applied_To_Finance,luigiCali,R,false,false,false,0,false,false,false,false +Valtech-Amsterdam/PowerShell/WakeUpAzureWebApp,Valtech-Amsterdam,PowerShell,true,false,false,2,false,true,false,true +salim_b/shell_scripts,salim_b,Shell,false,false,false,0,false,false,false,false +pahatrop/learn-web,pahatrop,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/youtube-playlist-url,TomasHubelbauer,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/markdown-dom,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +sebdeckers/workshop-http2-jsconfasia2018,sebdeckers,JavaScript,false,false,false,0,false,false,false,false +PushTheLimits/Sourcemod/MagicDice,PushTheLimits,SourcePawn,true,false,false,2,true,false,false,false +thomas.gruber/G4_encryption_source,thomas.gruber,C,false,false,false,0,false,false,false,false +trumpetx/beer-plus-plus,trumpetx,JavaScript,false,false,false,0,false,false,false,false +andresPirona/Rappi,andresPirona,CSS,false,false,false,0,false,false,false,false +SecondMan/test,SecondMan,Perl,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-redis,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-webpack,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +tuanva1/company-event-manager,tuanva1,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-greenkeeper,TomasHubelbauer,,false,false,false,0,false,false,false,false +jryannel/qauto-admin,jryannel,Python,true,true,false,1,false,true,false,false +glancr/mirros_one,glancr,Shell,false,false,false,0,false,false,false,false +shallawell/mycustodian,shallawell,Shell,false,false,false,0,false,false,false,false +shallawell/pack-bees,shallawell,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-docker,TomasHubelbauer,,false,false,false,0,false,false,false,false +minecraft-data/bedrock-assets,minecraft-data,HLSL,false,false,false,0,false,false,false,false +zshulu/Planning_as_SAT,zshulu,C++,false,false,false,0,false,false,false,false +ali_reza/Board_game,ali_reza,C#,false,false,false,0,false,false,false,false +databulle/screamingfrog-python-analysis,databulle,JupyterNotebook,false,false,false,0,false,false,false,false +ali_reza/calculator_c,ali_reza,C#,false,false,false,0,false,false,false,false +sametsirinel/udemy-dersler,sametsirinel,HTML,false,false,false,0,false,false,false,false +ehsaan/tor-status,ehsaan,Python,false,false,false,0,false,false,false,false +esilvert/GGJ2018,esilvert,C#,false,false,false,0,false,false,false,false +janispritzkau/rust-pt,janispritzkau,Rust,false,false,false,0,false,false,false,false +Sumoprojects/sumokoin,Sumoprojects,C++,false,false,false,0,false,false,false,false +matt.mendonca/docker-devops-slides,matt.mendonca,HTML,false,false,false,0,false,false,false,false +emanuel_ungureanu/DltMessageParser,emanuel_ungureanu,C++,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-vagrant,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-rust,TomasHubelbauer,,false,false,false,0,false,false,false,false +itsmycargo/code-styleguides,itsmycargo,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-arduino,TomasHubelbauer,C++,false,false,false,0,false,false,false,false +bgr/GGJ2018,bgr,ShaderLab,false,false,false,0,false,false,false,false +gabrieldissotti/virtualhosts,gabrieldissotti,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-raspi,TomasHubelbauer,,false,false,false,0,false,false,false,false +mujeebcpy/keralagrambot,mujeebcpy,Python,false,true,false,0,false,false,false,false +iamkajal/dev-ats,iamkajal,C#,false,false,false,0,false,false,false,false +PGEcoCar/Workspace_EcoCar,PGEcoCar,C,false,false,false,0,false,false,false,false +RemekGdansk/java-development-basics,RemekGdansk,Java,false,false,false,0,false,false,false,false +jorsol/presentaciones,jorsol,,false,false,false,0,false,false,false,false +thomas1814/contactbook,thomas1814,Python,false,false,false,0,false,false,false,false +chezgi/jekyll,chezgi,CSS,true,false,false,2,false,true,true,false +ramiel/caravaggio,ramiel,JavaScript,true,false,false,2,false,true,true,false +rilis/rili/service/socket,rilis,C++,true,false,false,3,false,true,false,false +TomasHubelbauer/bloggo-3d,TomasHubelbauer,,false,false,false,0,false,false,false,false +Eimert/rhce-lab,Eimert,Shell,false,false,false,0,false,false,false,false +jengkarlong/boxedup,jengkarlong,PHP,false,false,false,0,false,false,false,false +tux255/my-wordpress-docker,tux255,PHP,false,false,false,0,false,false,false,false +raysamram/Install-Party-9,raysamram,,false,false,false,0,false,false,false,false +homer77/mastobot,homer77,Python,false,false,false,0,false,false,false,false +AperiKube/aperisite,AperiKube,CSS,true,false,false,1,true,false,false,false +niklasnisbeth/mpc-internals,niklasnisbeth,CSS,true,false,false,1,false,false,true,false +gitlabci-demo/angular-demo,gitlabci-demo,CSS,true,false,false,2,true,false,true,false +Morriar/inf3143_181_tp1,Morriar,Shell,false,false,false,0,false,false,false,false +islands-wars/docs,islands-wars,JavaScript,false,false,false,0,false,false,false,false +yond1994/Sistema-de-inventario-pagos,yond1994,JavaScript,false,false,false,0,false,false,false,false +bensyverson/miiine,bensyverson,Swift,false,false,false,0,false,false,false,false +juliette-derancourt/qt-to-wasm-example,juliette-derancourt,C++,false,false,false,0,false,false,false,false +yond1994/sistemaclinico-php,yond1994,HTML,false,false,false,0,false,false,false,false +octacian/test,octacian,C++,false,false,false,0,false,false,false,false +inqube_arindam/knack_api,inqube_arindam,JavaScript,false,false,false,0,false,false,false,false +phungvm/GDeal,phungvm,Objective-C,false,false,false,0,false,false,false,false +nathanfaucett/rs-virtual_view,nathanfaucett,Rust,true,false,false,1,false,true,false,false +mikepastula/TheHitchhikersGuideToTheGalaxy,mikepastula,Java,false,false,false,0,false,false,false,false +nekirill/epam-devops-3rd-stream,nekirill,Java,false,false,true,0,false,false,false,false +eduardo-dev/uasb-orm,eduardo-dev,PHP,false,false,false,0,false,false,false,false +vchat/crystaline-bot,vchat,C#,false,false,false,0,false,false,false,false +vgavro/godville_bot,vgavro,Python,false,true,false,0,false,false,false,false +joonatoona/AntiFingerprint,joonatoona,JavaScript,false,false,false,0,false,false,false,false +fs2600/topics,fs2600,,false,false,false,0,false,false,false,false +eyeo/adblockplus/abp2blocklist,eyeo,JavaScript,false,false,false,0,false,false,false,false +FreeMobileOS/platform_system_bt,FreeMobileOS,C++,false,false,false,0,false,false,false,false +dryan517/mogui,dryan517,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/agenda0,TomasHubelbauer,Swift,false,false,false,0,false,false,false,false +rhendric/tap-appveyor,rhendric,JavaScript,true,false,false,1,false,true,false,false +VadVergasov/ulam,VadVergasov,Python,false,false,false,0,false,false,false,false +fboisselier52/spring-profiles,fboisselier52,Java,false,false,true,0,false,false,false,false +katsos/ems-pgp,katsos,JavaScript,false,false,false,0,false,false,false,false +CTN/RUTE,CTN,,false,false,false,0,false,false,false,false +scalemailted/CSCI1583-Lectures-Spring2018,scalemailted,Java,false,false,false,0,false,false,false,false +gherman/No.Comparers,gherman,C#,true,false,false,3,true,true,false,true +davidbittner/linux-utils,davidbittner,Python,false,false,false,0,false,false,false,false +pcarbo/wflow-divvy,pcarbo,HTML,true,false,false,1,false,false,true,false +VV5/verbal-irony,VV5,JavaScript,true,false,false,1,false,true,false,false +Mukobi/PSU-Pozyx-Windows-Dist,Mukobi,,false,false,false,0,false,false,false,false +Neonz27/Sublime-Vapor,Neonz27,Vue,false,false,false,0,false,false,false,false +tcs-poitiers-public-projects/sf-bundle-command,tcs-poitiers-public-projects,PHP,false,false,false,0,false,false,false,false +acoulaud/AxileoAndroid,acoulaud,Java,false,false,false,0,false,false,false,false +thislight/FishID,thislight,Dart,false,false,false,0,false,false,false,false +manu.kroiss/BSc_Stefan_Grossauer_Manuel_Kroiss,manu.kroiss,JavaScript,false,false,false,0,false,false,false,false +electronDLT/kWhackathon,electronDLT,,false,false,false,0,false,false,false,false +dwabtech/vextm-obs-source,dwabtech,C,false,false,false,0,false,false,false,false +tria/cmake-magic,tria,CMake,false,false,false,0,false,false,false,false +saraedum/apps-android-wikivoyage,saraedum,Java,true,false,false,4,true,true,false,false +graphicnetdesign/uacte-conf,graphicnetdesign,CSS,false,false,false,0,false,false,false,false +RosettaCurrency/Whitepaper,RosettaCurrency,TeX,false,false,false,0,false,false,false,false +CerealBusTechBlog/cerealbustechblog.gitlab.io,CerealBusTechBlog,CSS,true,false,false,2,false,true,true,false +pablodiehl/color-poker,pablodiehl,JavaScript,true,false,false,1,false,false,true,false +saraamini/Simplist-html,saraamini,JavaScript,false,false,false,0,false,false,false,false +nyxysfall/writings,nyxysfall,,false,false,false,0,false,false,false,false +atory/blockchain,atory,Go,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-tinkering,TomasHubelbauer,,false,false,false,0,false,false,false,false +daocloud.io/flask-demo,daocloud.io,Python,false,true,false,0,false,false,false,false +cshardeynartey/odoo_opm,cshardeynartey,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-video,TomasHubelbauer,,false,false,false,0,false,false,false,false +rki_bioinformatics/LiveKraken,rki_bioinformatics,C++,false,false,false,0,false,false,false,false +KanaLlama/TAHITI,KanaLlama,PHP,false,false,false,0,false,false,false,false +renart/mini-c,renart,OCaml,false,false,false,0,false,false,false,false +TreeGenes/GTTN-DR,TreeGenes,PHP,false,false,false,0,false,false,false,false +kolorahl/amplitude,kolorahl,Ruby,true,false,false,2,false,true,true,false +minecraft.erilun06/electronGame,minecraft.erilun06,HTML,false,false,false,0,false,false,false,false +gnunicode/haskell-book,gnunicode,,false,false,false,0,false,false,false,false +rilis/rili/xml,rilis,C++,true,false,false,3,false,true,false,false +ttpcodes/mb2thw,ttpcodes,JavaScript,true,false,false,1,false,true,false,false +xtrmz/agileopenfrance_internet,xtrmz,,false,false,false,0,false,false,false,false +snaptravel/full-stack-demo,snaptravel,,false,false,false,0,false,false,false,false +ashishkoirala/Miracle,ashishkoirala,,false,false,false,0,false,false,false,false +rohitshres/dulwa-dotnet,rohitshres,JavaScript,false,false,false,0,false,false,false,false +onerelief/rest-api,onerelief,TypeScript,false,false,false,0,false,false,false,false +fiws/lauter,fiws,JavaScript,false,false,false,0,false,false,false,false +enricos83/PPMAJAL-Expressive-PDDL-Java-Library,enricos83,Java,false,false,false,0,false,false,false,false +enricos83/ENHSP-Public,enricos83,Java,false,false,false,0,false,false,false,false +jbweston/gitlab-ci-tools,jbweston,Python,true,false,false,1,false,true,false,false +TomasHubelbauer/bloggo-reversing,TomasHubelbauer,,false,false,false,0,false,false,false,false +tolvanea/kandi,tolvanea,TeX,false,false,false,0,false,false,false,false +tolvanea/QCA_calc,tolvanea,Python,false,false,false,0,false,false,false,false +puppy-atom/2018-01-30-SMOTE_Evan_Adkins,puppy-atom,JupyterNotebook,false,false,false,0,false,false,false,false +ServicesGrupoCMC/InternalTransfers,ServicesGrupoCMC,Java,false,false,true,0,false,false,false,false +Abhishek_Jha/GitHub_Login_Node_passport,Abhishek_Jha,JavaScript,false,false,false,0,false,false,false,false +cathaldallan/saltypie,cathaldallan,Python,true,true,false,2,false,true,true,false +ownnotif/ownnotif-server-api,ownnotif,Batchfile,true,false,false,1,false,true,false,false +cezarczr/HeroQuest,cezarczr,,false,false,false,0,false,false,false,false +britojq/blog-de-gestion,britojq,HTML,false,false,false,0,false,false,false,false +axk4545/linux-stuff,axk4545,Shell,false,false,false,0,false,false,false,false +kendallroth/kendallroth-site,kendallroth,JavaScript,false,false,false,0,false,false,false,false +alfonsor/FileManagerDemo,alfonsor,C#,false,false,false,0,false,false,false,false +quincarter/PlexConnection,quincarter,Java,false,false,false,0,false,false,false,false +tlsehdgus0212/TensorFlow-Tutorials,tlsehdgus0212,Python,false,false,false,0,false,false,false,false +eracpp/yadm,eracpp,Shell,false,false,false,0,false,false,false,false +antianti/DoorDemo,antianti,,false,false,false,0,false,false,false,false +tuanist/CryptoCoinData,tuanist,Ruby,false,false,false,0,false,false,false,false +ngs_workshop/Mar2018,ngs_workshop,HTML,false,false,false,0,false,false,false,false +nukuul/ClickMe_Fotoapparat,nukuul,Java,false,false,false,0,false,false,false,false +djm.im/jLocalCoin,djm.im,Java,true,false,false,2,true,true,false,false +CommandCrafterHD/level-bot,CommandCrafterHD,Python,false,true,false,0,false,false,false,false +Isidore/tidder-mockup,Isidore,,false,false,false,0,false,false,false,false +enriqueBet/DICOM2GEANT,enriqueBet,Python,false,false,false,0,false,false,false,false +daily-five/plates-components,daily-five,PHP,true,false,false,1,false,true,false,false +ProjetFinEtude2018/ProjetFinEtude,ProjetFinEtude2018,JavaScript,false,false,false,0,false,false,false,false +Alkihis/journalshitstorm,Alkihis,PHP,false,false,false,0,false,false,false,false +woozalia/epigram,woozalia,PHP,false,false,false,0,false,false,false,false +codeneomatrix/poo,codeneomatrix,Java,false,false,false,0,false,false,false,false +rsumner31/automation-showing-hidden-files-on-mac-os,rsumner31,,false,false,false,0,false,false,false,false +mseide-msegui/pcaudiolib,mseide-msegui,C,false,false,false,0,false,false,false,false +skrillexmau/adminPro,skrillexmau,CSS,false,false,false,0,false,false,false,false +JonFry/ADFv1_Python3_JSON_Builder,JonFry,Python,false,false,false,0,false,false,false,false +diongeorge/Tweak,diongeorge,JavaScript,false,false,false,0,false,false,false,false +baumrock/thesis,baumrock,HTML,false,false,false,0,false,false,false,false +consumer-driven-contract-helm-deployment/catalog-service,consumer-driven-contract-helm-deployment,Ruby,true,false,false,6,true,true,false,false +Atiyeh_Norouzi/ColoredKill,Atiyeh_Norouzi,C#,false,false,false,0,false,false,false,false +rei1401/elitebox,rei1401,,false,false,false,0,false,false,false,false +slon/shad-cpp,slon,C++,false,false,false,0,false,false,false,false +hkc33/KADAPT,hkc33,C#,false,false,false,0,false,false,false,false +psyked/JeuBerger,psyked,C#,false,false,false,0,false,false,false,false +lahg/kubernetes-envoyproxy-sds,lahg,Go,false,false,false,0,false,false,false,false +fonorobert/tildecache,fonorobert,C,false,false,false,0,false,false,false,false +Bitergia/devops/indexwarrior,Bitergia,Python,true,true,false,1,false,true,false,false +kerrhau/dotfiles,kerrhau,C,false,false,false,0,false,false,false,false +lansharkconsulting/django/django-reusable-app-template,lansharkconsulting,Python,false,false,false,0,false,false,false,false +tehnokom/siriuso-ios,tehnokom,JavaScript,false,false,false,0,false,false,false,false +BasiliskHill/Partius,BasiliskHill,JavaScript,false,false,false,0,false,false,false,false +VV5/tone-learning,VV5,JavaScript,true,false,false,1,false,true,false,false +Spud/ArmA-Updater,Spud,PowerShell,false,false,false,0,false,false,false,false +louisvv/second-hand.housing.transaction,louisvv,Python,false,false,false,0,false,false,false,false +sorenmat/certgen,sorenmat,Go,true,false,false,2,true,false,true,false +paloha-pres/mlworkflow,paloha-pres,JupyterNotebook,false,false,false,0,false,false,false,false +NathanHand/expressui5,NathanHand,JavaScript,false,false,false,0,false,false,false,false +Arck1/project-teta,Arck1,Python,false,false,false,0,false,false,false,false +TomiCode/nanopi-linux,TomiCode,,false,false,false,0,false,false,false,false +HeinousTugboat/ecstatic-bits,HeinousTugboat,TypeScript,false,false,false,0,false,false,false,false +jarmentor/bacchus,jarmentor,JavaScript,false,false,false,0,false,false,false,false +arezki/JeuDeLaVie,arezki,Java,false,false,false,0,false,false,false,false +LinearMonolithic/game-development-game,LinearMonolithic,C++,false,false,false,0,false,false,false,false +jilliancabral/eoTestSuite,jilliancabral,HTML,false,false,false,0,false,false,false,false +Snipey/SmelteryCMS,Snipey,JavaScript,true,false,false,1,false,true,false,false +whitecrownclown/mindgeek-test,whitecrownclown,JavaScript,false,false,false,0,false,false,false,false +rsumner31/urh,rsumner31,Python,false,false,false,0,false,false,false,false +ttpcodes/szurubooru-docker,ttpcodes,Shell,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-webapis,TomasHubelbauer,HTML,false,false,false,0,false,false,false,false +ikbelnet/docker-in-docker,ikbelnet,,false,false,false,0,false,false,false,false +chiakikame/self-made-tool-list,chiakikame,,false,false,false,0,false,false,false,false +sebdeckers/fastify-tls-keygen,sebdeckers,JavaScript,false,false,false,0,false,false,false,false +remram44/vigilant-steel,remram44,Rust,true,false,false,2,true,false,true,false +gecko.io/geckoEMF,gecko.io,Java,true,false,false,2,true,true,false,false +baldurmen/puppet-xerox,baldurmen,Puppet,true,false,false,1,false,true,false,false +baldurmen/puppet-plymouth,baldurmen,Puppet,true,false,false,1,false,true,false,false +felixab22/wasiconexion,felixab22,HTML,false,false,false,0,false,false,false,false +kjk.designs/fa2018,kjk.designs,CSS,true,false,false,2,false,true,true,false +cathaldallan/codebox,cathaldallan,Python,true,true,false,2,false,true,true,false +amrihanif/PickMeUP,amrihanif,Java,false,false,false,0,false,false,false,false +unlessgames/algwalk,unlessgames,CoffeeScript,true,false,false,1,false,false,true,false +Thijsiez/kwetter,Thijsiez,Kotlin,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-browser-automation,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-blazor,TomasHubelbauer,,false,false,false,0,false,false,false,false +digitaldevelopment/tool_rancher_catalog,digitaldevelopment,,false,false,false,0,false,false,false,false +janmasrovira/phileas,janmasrovira,Haskell,true,false,false,2,true,true,false,false +craigbarnes/lua-sass,craigbarnes,Makefile,true,false,false,1,false,true,false,false +frex21/ows,frex21,Python,false,true,false,0,false,false,false,false +itrac/mctic/sisac,itrac,JavaScript,false,false,false,0,false,false,false,false +WizApps/Maps,WizApps,Java,false,false,false,0,false,false,false,false +WizApps/Billing,WizApps,Java,false,false,false,0,false,false,false,false +WizApps/FlickrGallery,WizApps,Java,false,false,false,0,false,false,false,false +WizApps/Lifecycle,WizApps,Java,false,false,false,0,false,false,false,false +WizApps/Room,WizApps,Java,false,false,false,0,false,false,false,false +ttpcodes/KeyClubInterface,ttpcodes,PHP,false,false,false,0,false,false,false,false +danielstekelenburg/NeuralNetwork,danielstekelenburg,C++,false,false,false,0,false,false,false,false +WizApps/ToDoList,WizApps,Java,false,false,false,0,false,false,false,false +IUTAp/FIRST-AP-PROJECT,IUTAp,C++,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-se,TomasHubelbauer,,false,false,false,0,false,false,false,false +correaa/boost-multi,correaa,C++,true,false,false,1,false,true,false,false +CharlyRamirez/angular4,CharlyRamirez,CSS,false,false,false,0,false,false,false,false +vbgl/nixtrapkgs,vbgl,Nix,false,false,false,0,false,false,false,false +nlamblin/MachineACafe,nlamblin,Java,false,false,false,0,false,false,false,false +jmbaram/acm-jade,jmbaram,Java,false,false,false,0,false,false,false,false +WizApps/RetrofitGitHub,WizApps,Java,false,false,false,0,false,false,false,false +sasol/gitlab-ci-git-tools,sasol,Shell,true,false,false,3,true,true,false,true +eglaar/md-butler,eglaar,Python,false,false,false,0,false,false,false,false +koha-community/qa-test-tools,koha-community,Perl,false,false,false,0,false,false,false,false +WizApps/Sunshine,WizApps,Java,false,false,false,0,false,false,false,false +koha-community/koha-release-notes,koha-community,,false,false,false,0,false,false,false,false +ostrokach-forge/cgal,ostrokach-forge,Shell,true,false,false,3,true,true,true,false +Obminyanyi/js-market,Obminyanyi,HTML,false,false,false,0,false,false,false,false +npolar/sphinx-docs-template,npolar,Python,true,true,false,1,false,true,false,false +TeamSuperAwesome/FAMI,TeamSuperAwesome,JavaScript,false,false,false,0,false,false,false,false +B4dM4n/drive-untrash,B4dM4n,Go,false,false,false,0,false,false,false,false +nerzhul/ncsmsgo,nerzhul,Go,true,false,false,1,true,false,false,false +suchpuppet/puppet-resolvconf,suchpuppet,Ruby,false,false,false,0,false,false,false,false +azahrandani/My_First_Git_Repo,azahrandani,Python,true,false,false,1,false,true,false,false +TomasHubelbauer/bloggo-xi,TomasHubelbauer,,false,false,false,0,false,false,false,false +M.Anani/revision,M.Anani,,false,false,false,0,false,false,false,false +GergelySzekely/t-shirts,GergelySzekely,,false,false,false,0,false,false,false,false +eeronen/reseptisovellus,eeronen,TypeScript,true,false,false,4,true,true,true,false +caldera-labs/gutenberg-examples/ex4-non-enclosing-shortcode,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex4-pre-existing-shortcode,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +gnss-sdr/gnss-sdr,gnss-sdr,C++,true,false,false,4,true,true,true,false +quesog/aos-lecturenotes,quesog,HTML,true,false,false,1,false,false,true,false +caldera-labs/gutenberg-examples/learn-gutenberg-code-blocks,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +benjaminBoboul/MelpoThesis,benjaminBoboul,TeX,false,false,false,0,false,false,false,false +asludds/flaskserver,asludds,Python,true,false,false,1,false,true,false,false +sirius-republic/pedocoin,sirius-republic,JavaScript,false,false,false,0,false,false,false,false +DBCL/solar-system-front,DBCL,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-webrtc,TomasHubelbauer,,false,false,false,0,false,false,false,false +davca7/gcg,davca7,HTML,false,false,false,0,false,false,false,false +WackCrew/PublikWack,WackCrew,Python,false,false,false,0,false,false,false,false +amin.ibr/assest,amin.ibr,CSS,false,false,false,0,false,false,false,false +Aeizzz/blog,Aeizzz,CSS,true,false,false,1,false,true,false,false +paulmonk/dotfiles,paulmonk,Shell,false,false,false,0,false,false,false,false +asynccode/MatheProjekt,asynccode,Java,false,false,true,0,false,false,false,false +cbanga/flyer_contacts,cbanga,Swift,false,false,false,0,false,false,false,false +nobodyinperson/make-utils,nobodyinperson,Makefile,true,false,false,3,true,true,true,false +lansharkconsulting/frontend/ls-vue.js-starter-template,lansharkconsulting,CSS,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex-6-counter,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +Founntain/OsuPlayer,Founntain,C#,false,false,false,0,false,false,false,false +mfairchild365/acbnebraska-theme,mfairchild365,HTML,false,false,false,0,false,false,false,false +TalesofNewerth/ToN-Website,TalesofNewerth,PHP,true,false,false,1,false,true,false,false +olbat/libgen,olbat,Crystal,false,false,false,0,false,false,false,false +salvari/processing_tuto,salvari,TeX,false,false,false,0,false,false,false,false +ryan.zakariudakis/dialogflow-fulfillment-api-v2,ryan.zakariudakis,Kotlin,false,false,true,0,false,false,false,false +molism/pymoco,molism,Python,false,false,false,0,false,false,false,false +Eskildybvik/IntegralBot,Eskildybvik,JavaScript,false,false,false,0,false,false,false,false +micromax.proprietary/yu-yureka-2,micromax.proprietary,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-wsl,TomasHubelbauer,,false,false,false,0,false,false,false,false +jose.lipe/laravel-vue,jose.lipe,PHP,false,false,false,0,false,false,false,false +nescience/scientific_method,nescience,R,false,false,false,0,false,false,false,false +cromir/D-G-G,cromir,,false,false,false,0,false,false,false,false +raspberry-pi-cast/node-omxplayer-raspberry-pi-cast,raspberry-pi-cast,JavaScript,false,false,false,0,false,false,false,false +mvochoa/hackerrank,mvochoa,Go,true,false,false,1,false,false,false,false +omicronns.main/cpp-project-template,omicronns.main,CMake,true,false,false,3,true,true,false,false +curtgrimes/vmix-rest-api,curtgrimes,JavaScript,false,false,false,0,false,false,false,false +ticketDemo/front_end,ticketDemo,TypeScript,false,false,false,0,false,false,false,false +mysm0722/my-jk-gitlab,mysm0722,JavaScript,false,false,false,0,false,false,false,false +iamdanie/react-webpack-redux-lab,iamdanie,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-ops,TomasHubelbauer,,false,false,false,0,false,false,false,false +k33w33/Jython-to-Jar,k33w33,Python,false,false,false,0,false,false,false,false +pbruin/agda-real,pbruin,Agda,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-cs,TomasHubelbauer,,false,false,false,0,false,false,false,false +ohachami/XchangeShip,ohachami,Java,false,false,true,0,false,false,false,false +Lieben/o4bautoconfigandredirect,Lieben,PowerShell,false,false,false,0,false,false,false,false +slon/shad-cpp-lectures,slon,C++,false,false,false,0,false,false,false,false +vbonassies/GoogleAnalytics,vbonassies,JavaScript,false,false,false,0,false,false,false,false +gecko.io/geckoMongoEMF,gecko.io,Java,true,false,false,2,true,true,false,false +cromir/gitlab-discord-webhook,cromir,PHP,false,false,false,0,false,false,false,false +Farenknight/DotNet_todolist_2017,Farenknight,C#,false,false,false,0,false,false,false,false +ilias.redissi/emojis-for-slack,ilias.redissi,JavaScript,true,false,false,1,true,false,false,false +hogart/pillared,hogart,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-ubuntu,TomasHubelbauer,,false,false,false,0,false,false,false,false +willmitchell/secret_runner_aws,willmitchell,Go,true,false,false,3,true,true,true,false +rilis/rili/service/console,rilis,C++,true,false,false,3,false,true,false,false +bliznetz/itmo2018,bliznetz,Shell,false,false,false,0,false,false,false,false +FMPDS/FMPDS,FMPDS,Python,false,false,false,0,false,false,false,false +datev-scc/demos/neo4j-guides,datev-scc,HTML,false,false,false,0,false,false,false,false +pika-lab/blockchain/ether-linda,pika-lab,,false,false,false,0,false,false,false,false +dexikc/S3X_C01n,dexikc,,false,false,false,0,false,false,false,false +druonysus/micra,druonysus,Shell,false,false,false,0,false,false,false,false +shellygobui/studentTeacherPortal,shellygobui,PHP,false,false,false,0,false,false,false,false +pascaldevink/workshop-kubernetes,pascaldevink,HTML,false,false,false,0,false,false,false,false +dcnet/unms,dcnet,,false,false,false,0,false,false,false,false +Erk/rsget,Erk,Rust,true,false,false,1,true,false,false,false +TomasHubelbauer/bloggo-servo,TomasHubelbauer,,false,false,false,0,false,false,false,false +herlufB/racecar,herlufB,TeX,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-wasm,TomasHubelbauer,,false,false,false,0,false,false,false,false +rafelck/OneSimulatorHillClimbing,rafelck,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-kubernetes,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-le,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-git,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-vscode,TomasHubelbauer,,false,false,false,0,false,false,false,false +sik-tests/sik-rest-api-dice,sik-tests,Shell,true,false,false,1,false,true,false,false +TomasHubelbauer/bloggo-windows,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-quantum,TomasHubelbauer,,false,false,false,0,false,false,false,false +axk4545/TigerOS,axk4545,Shell,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-react,TomasHubelbauer,,false,false,false,0,false,false,false,false +darleneeon/journal,darleneeon,Go,false,false,false,0,false,false,false,false +Nowaker/dotfiles-vscode,Nowaker,Shell,false,false,false,0,false,false,false,false +collaborationteam/Boilerplate-SharePoint-Project,collaborationteam,TypeScript,false,false,false,0,false,false,false,false +maxwellbridges/styleguide,maxwellbridges,CSS,true,false,false,1,false,true,false,false +jmacarthur/reprotest-in-buildstream,jmacarthur,,false,false,false,0,false,false,false,false +Silvers_Gw2/Market_Data_Processer,Silvers_Gw2,JavaScript,true,false,false,3,true,true,true,false +vimino/JerboaTTS,vimino,HTML,false,false,false,0,false,false,false,false +luislazaro/DataTicketRecordChart,luislazaro,C#,false,false,false,0,false,false,false,false +eremt/scraper,eremt,JavaScript,false,false,false,0,false,false,false,false +fschuetz04/calendar,fschuetz04,TypeScript,true,false,false,2,true,false,true,false +CharlyRamirez/amadeus,CharlyRamirez,TypeScript,false,false,false,0,false,false,false,false +lyrahgames/spray,lyrahgames,C++,false,false,false,0,false,false,false,false +YohanaGuevara/Practica_4,YohanaGuevara,,false,false,false,0,false,false,false,false +nanocurrency/raiblocks,nanocurrency,C++,true,false,false,2,true,true,false,false +seen/test/frisby-gazmeh-manager,seen,JavaScript,false,false,false,0,false,false,false,false +thibauddauce/formations-laravel,thibauddauce,PHP,false,false,false,0,false,false,false,false +Baasie/continuous-delivery-faas,Baasie,TypeScript,true,false,false,5,true,false,false,true +PPL2018csui/Kelas-C/PPL2018-C3,PPL2018csui,JavaScript,true,false,false,2,false,true,true,false +ben.leland/home-assistant-config,ben.leland,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-phaser,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-ml,TomasHubelbauer,,false,false,false,0,false,false,false,false +PPL2018csui/Kelas-D/PPL2018-D4,PPL2018csui,Java,true,false,false,2,true,true,false,false +PPL2018csui/Kelas-D/PPL2018-D6,PPL2018csui,Java,true,false,false,2,false,true,true,false +amagpiesnest/amagpiesnest.gitlab.io,amagpiesnest,HTML,true,false,false,1,false,false,true,false +fernandoCto/Angular4,fernandoCto,,false,false,false,0,false,false,false,false +canarduck/pays,canarduck,Python,true,true,false,2,false,true,true,false +kofferino/smart-mirror-dashboard,kofferino,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/Galileo,Retr0_System,C++,false,false,false,0,false,false,false,false +mihail.lyaskov/kafka-2-hdfs-pipe,mihail.lyaskov,Shell,false,false,false,0,false,false,false,false +Retr0_System/Edison,Retr0_System,Python,false,false,false,0,false,false,false,false +palanisamy4034/mobilenumValidate,palanisamy4034,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/go-ipfs,Retr0_System,Go,false,false,false,0,false,false,false,false +CyanogenMod13/Kernel,CyanogenMod13,,true,false,false,1,false,true,false,false +Retr0_System/namecoin-core,Retr0_System,C++,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-graphql,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-learning,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-arango,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-powershell,TomasHubelbauer,,false,false,false,0,false,false,false,false +ichlaffterlalu/advprog-lab,ichlaffterlalu,Python,true,false,false,1,false,true,false,false +gitlab-restore/gitlab-production-snapshots,gitlab-restore,Shell,false,false,false,0,false,false,false,false +StellarStorm/DVH_Helper,StellarStorm,Python,true,false,false,1,false,true,false,false +serial-lab/quartet_capture,serial-lab,Python,true,true,false,3,false,false,false,false +Retr0_System/elixir,Retr0_System,Elixir,false,false,false,0,false,false,false,false +allotrope-open-source/shape-editor,allotrope-open-source,Xtend,true,false,false,2,true,false,true,false +allotrope-open-source/adf-validator,allotrope-open-source,Java,true,false,true,2,true,false,true,false +alfonsor/Business_Labs,alfonsor,C#,false,false,false,0,false,false,false,false +Pasu/Advance-Programing,Pasu,Python,true,false,false,1,false,true,false,false +alvinraih/advprog-tutorial,alvinraih,Java,true,false,false,1,false,true,false,false +brianho2004/vuejs-fuelphp-boilerplate,brianho2004,PHP,false,false,false,0,false,false,false,false +cromir/UBlock,cromir,,false,false,false,0,false,false,false,false +camiloYateY2018/FuncionesEjerciciosPython,camiloYateY2018,Python,false,false,false,0,false,false,false,false +pa1007/Awesome-utilities,pa1007,Java,false,false,true,0,false,false,false,false +trosa/dotfiles,trosa,EmacsLisp,false,false,false,0,false,false,false,false +iota-foundation/doc/documentation,iota-foundation,JavaScript,true,false,false,3,false,false,true,false +fluentcodes/Tools,fluentcodes,Java,false,false,true,0,false,false,false,false +TomasHubelbauer/bloggo-chef,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-puppet,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-packer,TomasHubelbauer,,false,false,false,0,false,false,false,false +Pastushyna/TinderApps,Pastushyna,Java,false,false,false,0,false,false,false,false +argaghulamahmad/advprog-tutorial,argaghulamahmad,Java,true,false,false,1,false,true,false,false +broadsword/dev-tools,broadsword,Shell,false,false,false,0,false,false,false,false +iota-foundation/software/powbox/powbox-server,iota-foundation,JavaScript,false,false,false,0,false,false,false,false +jrenelg/rest-client-googlemaps-mobileapp,jrenelg,Java,false,false,false,0,false,false,false,false +AirGateway/consumer-issues,AirGateway,,false,false,false,0,false,false,false,false +alek.exe/open-with-sublime-text,alek.exe,,false,false,false,0,false,false,false,false +fathom/org,fathom,,false,false,false,0,false,false,false,false +rilis/rili/stream,rilis,C++,true,false,false,3,false,true,false,false +Simpom/tare,Simpom,Python,true,false,false,1,false,true,false,false +sree_devi/sri,sree_devi,PHP,false,false,false,0,false,false,false,false +Kaizen5000/PhysicsEngine,Kaizen5000,C,false,false,false,0,false,false,false,false +jnmoal-docker/debian-ansible,jnmoal-docker,Shell,true,false,false,3,true,true,false,true +alfonsor/WebService_Labs,alfonsor,C#,false,false,false,0,false,false,false,false +docteurzoidberg/cpp-adafruit2pc,docteurzoidberg,C,false,false,false,0,false,false,false,false +Reinis24P/master-thesis,Reinis24P,CSS,false,false,false,0,false,false,false,false +nownabe/docker-pub-sub-demo,nownabe,Ruby,false,false,false,0,false,false,false,false +zertex/zxcms,zertex,PHP,false,false,false,0,false,false,false,false +andersjohansson/org-outline-numbering,andersjohansson,EmacsLisp,false,false,false,0,false,false,false,false +r0x.fr/docs,r0x.fr,,true,false,false,1,false,true,false,false +tobias47n9e/wkdr,tobias47n9e,Rust,true,false,false,1,false,true,false,false +JhonatanCuemby/rn-redux-rnavigator,JhonatanCuemby,JavaScript,false,false,false,0,false,false,false,false +fgiraldeau/snap-trivial-qt5,fgiraldeau,CMake,false,false,false,0,false,false,false,false +limethaw/pubscript,limethaw,TeX,false,false,false,0,false,false,false,false +nathanfaucett/rs-virtual_view_dom,nathanfaucett,Rust,true,false,false,1,false,true,false,false +z0x/incremental_dd,z0x,Shell,false,false,false,0,false,false,false,false +MrBlamo/Mr_Blamo_Repo,MrBlamo,Python,false,false,false,0,false,false,false,false +FrostyStar/Shift-bot,FrostyStar,,false,false,false,0,false,false,false,false +dshevchenkoo/color-runner,dshevchenkoo,JavaScript,true,false,false,1,false,false,true,false +pothitos/hands-on-exercise,pothitos,C,true,false,false,2,true,true,false,false +electronStuff/testingStuff,electronStuff,JavaScript,false,false,false,0,false,false,false,false +dziki/rancher-nginx-ssl-proxy,dziki,,true,false,false,1,true,false,false,false +open_data/opern-data_web-app_geojson,open_data,HTML,false,false,false,0,false,false,false,false +leapsight/plum_db,leapsight,Erlang,false,false,false,0,false,false,false,false +SalvatoreLopez/desarrolloweb,SalvatoreLopez,PHP,false,false,false,0,false,false,false,false +ratheeps/php-beginners-source,ratheeps,PHP,false,false,false,0,false,false,false,false +dutchcolonial/sodiumsuiteinstallers,dutchcolonial,Shell,false,false,false,0,false,false,false,false +matthewnielsen/mallard_lite,matthewnielsen,C++,false,false,false,0,false,false,false,false +HaluDeCassia/todoapp-frontend,HaluDeCassia,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-cv,TomasHubelbauer,,false,false,false,0,false,false,false,false +rsumner31/deeplab-public,rsumner31,C++,false,false,false,0,false,false,false,false +zauster/blog,zauster,HTML,true,false,false,1,false,true,false,false +amoghbabu/cprograms,amoghbabu,C,false,false,false,0,false,false,false,false +DanHakimi/BabyJanet,DanHakimi,JavaScript,false,false,false,0,false,false,false,false +TorbenWetter/Mathematastic,TorbenWetter,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-rhaeo,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-npx,TomasHubelbauer,,false,false,false,0,false,false,false,false +athulvis/Masters-Project,athulvis,TeX,false,false,false,0,false,false,false,false +rsumner31/awesome-hacking,rsumner31,,false,false,false,0,false,false,false,false +onerelief/json-server,onerelief,JavaScript,false,false,false,0,false,false,false,false +Keo1711/ChatMode,Keo1711,Java,true,false,true,1,false,true,false,false +TomasHubelbauer/qr-channel,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +Calinou/minetest-builds,Calinou,Shell,true,false,false,1,true,false,false,false +qiaboujaoude/p4k-api,qiaboujaoude,JavaScript,false,false,false,0,false,false,false,false +log1000/tp3,log1000,CSS,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-media,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/pressure-draw,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +metinerk/asdf,metinerk,TypeScript,true,false,false,1,false,false,true,false +convinceme/convinceme_content,convinceme,,false,false,false,0,false,false,false,false +Dumplings/DMDb,Dumplings,JavaScript,false,false,false,0,false,false,false,false +rafaeldelrey/StMiner,rafaeldelrey,Python,false,false,false,0,false,false,false,false +convinceme/convinceme_webapp,convinceme,Ruby,false,false,false,0,false,false,false,false +hard-rox/NURTEX-PointOfSale,hard-rox,C#,false,false,false,0,false,false,false,false +breithbarbot/cropper,breithbarbot,JavaScript,true,false,false,1,false,true,false,false +mdahosanhabib/pondit-php-01,mdahosanhabib,PHP,false,false,false,0,false,false,false,false +pietrom_cp/spring-class,pietrom_cp,Java,true,false,false,2,true,true,false,false +nescience/finance,nescience,R,false,false,false,0,false,false,false,false +Sphirate/pwd-manager-browser-extension,Sphirate,JavaScript,false,false,false,0,false,false,false,false +sglienke/Spring4D,sglienke,Pascal,false,false,false,0,false,false,false,false +fabio05/LEGO-Mindstorms-Roboter,fabio05,Python,false,false,false,0,false,false,false,false +Nkzn/ReVIEW-Template,Nkzn,TeX,true,false,false,1,false,true,false,false +SiLA2/sila_csharp,SiLA2,C#,true,false,false,4,true,true,false,true +frcangussu/vscode,frcangussu,,false,false,false,0,false,false,false,false +TomasHubelbauer/to-do-do,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +transact/node-transact,transact,TypeScript,true,false,false,3,true,true,false,false +OsoBlancoDandN/ThiccCoin,OsoBlancoDandN,,false,false,false,0,false,false,false,false +ysb33rOrg/gradleTest,ysb33rOrg,Groovy,true,false,false,4,true,true,false,true +dirn/stonestyle,dirn,Python,true,false,false,1,false,true,false,false +axk4545/axk4545.gitlab.io,axk4545,CSS,true,false,false,1,false,false,true,false +azzurite/ElectiveActionOrder,azzurite,JavaScript,false,false,false,0,false,false,false,false +fresheyeball/control-iso,fresheyeball,Haskell,true,false,false,1,true,false,false,false +Talibri/stat-tracker,Talibri,JavaScript,false,false,false,0,false,false,false,false +Nohbdy/dark-threshold,Nohbdy,C,false,false,false,0,false,false,false,false +luichan/official-wireshark,luichan,C,true,false,false,2,true,true,false,false +SandraKriemann/Microservice-Picking-Usecase,SandraKriemann,Go,true,false,false,2,true,false,true,false +Erik.Lundstedt/arduino,Erik.Lundstedt,C,false,false,false,0,false,false,false,false +BTSi-Project/stook,BTSi-Project,PHP,false,false,false,0,false,false,false,false +bordeaux-metropole-public/MET-DRUPAL8-MODULES,bordeaux-metropole-public,,false,false,false,0,false,false,false,false +rubenbase/inversional.network,rubenbase,JavaScript,false,false,false,0,false,false,false,false +Creased/docker-demo,Creased,Shell,false,false,false,0,false,false,false,false +edomo/add-ons/core-service,edomo,TypeScript,false,false,false,0,false,false,false,false +johnsona/tools,johnsona,Shell,false,false,false,0,false,false,false,false +benStre/game.py,benStre,Python,false,false,false,0,false,false,false,false +breithbarbot/rocket.chat-theme-blackbort,breithbarbot,,false,false,false,0,false,false,false,false +runStudies/runStudies,runStudies,TypeScript,true,false,false,1,false,true,false,false +breithbarbot/web-projects-homepage,breithbarbot,PHP,false,false,false,0,false,false,false,false +nyxcharon/PassVault,nyxcharon,CSS,true,false,false,2,true,true,false,false +thiarapsy/cathub-api,thiarapsy,JavaScript,false,false,false,0,false,false,false,false +chaddcw/cs460_Code_Examples,chaddcw,C,false,false,false,0,false,false,false,false +ttpcodes/debate.js,ttpcodes,JavaScript,false,false,false,0,false,false,false,false +ttpcodes/debate.js-readers,ttpcodes,JavaScript,true,false,false,1,false,true,false,false +oimosnuud/Oimos,oimosnuud,C,false,false,false,0,false,false,false,false +TomasHubelbauer/net-tree,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +smaresca91/saggiazon,smaresca91,Java,false,false,false,0,false,false,false,false +teb2klasa/przyklad-javascript,teb2klasa,HTML,false,false,false,0,false,false,false,false +rmahmood19/simple-django-blog,rmahmood19,Python,false,false,false,0,false,false,false,false +bits_please/sokoban,bits_please,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-npm,TomasHubelbauer,,false,false,false,0,false,false,false,false +soimort/translate-shell,soimort,Awk,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-til,TomasHubelbauer,,false,false,false,0,false,false,false,false +PoschR/HexConnect,PoschR,C++,false,false,false,0,false,false,false,false +nerdocs/medux/MedUX,nerdocs,Python,false,true,false,0,false,false,false,false +LeBronse/taskers,LeBronse,Rust,true,false,false,1,false,true,false,false +leaflet2268/udemy-blog,leaflet2268,HTML,false,false,false,0,false,false,false,false +Nowaker/aur-robo3t-bin,Nowaker,Shell,false,false,false,0,false,false,false,false +nnps/nnps,nnps,Python,false,false,false,0,false,false,false,false +Lesterpig/upspin-feed,Lesterpig,Go,false,false,false,0,false,false,false,false +xfbs-blog/tracing-linux-macos,xfbs-blog,C,false,false,false,0,false,false,false,false +ar-os/kernel,ar-os,C,false,false,false,0,false,false,false,false +GX40/1.6.1,GX40,,false,false,false,0,false,false,false,false +jacket0/python3-webservice,jacket0,Python,false,true,false,0,false,false,false,false +frodesigns-group/pwa-skeleton-template,frodesigns-group,Vue,false,false,false,0,false,false,false,false +esessoms/nofrils-theme,esessoms,EmacsLisp,false,false,false,0,false,false,false,false +Luuse/foundry/selectric,Luuse,,false,false,false,0,false,false,false,false +pmcpe02/Terminal,pmcpe02,Python,false,false,false,0,false,false,false,false +stormtrooper96/digitalControl,stormtrooper96,TypeScript,false,false,false,0,false,false,false,false +VV5/palmistry,VV5,Vue,true,false,false,1,false,true,false,false +beeit/beepaste/beepaste-backend,beeit,Python,false,false,false,0,false,false,false,false +DBotThePony/DLib,DBotThePony,Lua,true,false,false,1,true,false,false,false +DBotThePony/PPM,DBotThePony,MoonScript,true,false,false,1,true,false,false,false +ntuprobabilitycsie/301,ntuprobabilitycsie,,false,false,false,0,false,false,false,false +monfort/web/mixmeharder,monfort,Python,false,false,false,0,false,false,false,false +lcoremodders/SpeedsterHeroes,lcoremodders,Java,false,false,false,0,false,false,false,false +monfort/embl/dynamix,monfort,JavaScript,false,false,false,0,false,false,false,false +lordtor/was_configure,lordtor,Python,false,false,false,0,false,false,false,false +humingzhe/Linux,humingzhe,Shell,false,false,false,0,false,false,false,false +VirG/Questions,VirG,C#,false,false,false,0,false,false,false,false +libmicrohttpd/libmicrohttpd,libmicrohttpd,C,true,false,false,1,false,true,false,false +hamzaabamboo/ISE-Comprog-Files,hamzaabamboo,Java,false,false,false,0,false,false,false,false +kthprojects/VT18/concurrent/project,kthprojects,HTML,false,false,false,0,false,false,false,false +vinuryrepo/maven,vinuryrepo,,false,false,false,0,false,false,false,false +STRL/STEMsalabim,STRL,C++,true,false,false,2,true,true,false,false +EPFL-LESOPB/energy-potential,EPFL-LESOPB,,false,false,false,0,false,false,false,false +Melsom/UnityWorkshop,Melsom,C#,false,false,false,0,false,false,false,false +ihi/publicProject,ihi,JupyterNotebook,false,false,false,0,false,false,false,false +peradnya/balinese-date-js-lib,peradnya,TypeScript,true,false,false,3,true,true,true,false +tonychang/csp-tws-roads,tonychang,HTML,true,false,false,2,false,true,true,false +kpmoran/OpenTerm-Mac,kpmoran,AppleScript,false,false,false,0,false,false,false,false +kpmoran/NewFile-Mac,kpmoran,AppleScript,false,false,false,0,false,false,false,false +olivergs/guadec-pelican,olivergs,JavaScript,false,false,false,0,false,false,false,false +kpmoran/OmniFocus-Cal-Sync,kpmoran,AppleScript,false,false,false,0,false,false,false,false +Retr0_System/BOINC,Retr0_System,PHP,false,false,false,0,false,false,false,false +yusufcakal/ExpandableTextView,yusufcakal,Kotlin,false,false,false,0,false,false,false,false +pyboulerice/Topple,pyboulerice,C#,false,false,false,0,false,false,false,false +DamienCassou/emacs-ci-docker,DamienCassou,Shell,true,false,false,3,true,false,false,true +iamkrishnamohan/GitRepoSearch,iamkrishnamohan,Java,false,false,false,0,false,false,false,false +protective-h2020-eu/viz/ProtDash-Angular,protective-h2020-eu,TypeScript,false,false,false,0,false,false,false,false +polavieja_lab/idtrackerai,polavieja_lab,HTML,false,false,false,0,false,false,false,false +PrimaryTec/ptec_inventory,PrimaryTec,PowerShell,false,false,false,0,false,false,false,false +Iranium/Iranium,Iranium,PHP,true,false,false,1,false,true,false,false +benzoga33/scanMySite,benzoga33,Perl,false,false,false,0,false,false,false,false +nickvde/Practice_enterprise,nickvde,Java,true,false,false,2,true,true,false,false +femprocomuns/odoo-femprocomuns,femprocomuns,Python,false,false,false,0,false,false,false,false +RiriRK/Devola,RiriRK,JavaScript,false,false,false,0,false,false,false,false +arjun_nair_public_projects/smart_home/smart_switch,arjun_nair_public_projects,,false,false,false,0,false,false,false,false +qalabs/blog/junit5-gradle-template,qalabs,Java,false,false,false,0,false,false,false,false +joewreschnig/emacs-cask-docker-image,joewreschnig,,true,false,false,1,false,true,false,false +maximodleon/advance-css-sass-course,maximodleon,CSS,false,false,false,0,false,false,false,false +isaagar/isaagar.gitlab.io,isaagar,,true,false,false,1,false,true,false,false +sndevs/hub,sndevs,JavaScript,true,false,false,1,false,false,true,false +Dreae/kvasir,Dreae,JavaScript,true,false,false,1,true,false,false,false +schaefer.austin.p/prodyna-task-frontend,schaefer.austin.p,TypeScript,false,false,false,0,false,false,false,false +RomRider/turbo,RomRider,HCL,false,false,false,0,false,false,false,false +earth_explorer/demo,earth_explorer,CSS,false,false,false,0,false,false,false,false +laura_hure/projet_unity_flappy_bullet,laura_hure,C#,false,false,false,0,false,false,false,false +dirn/doozerify,dirn,Python,true,false,false,1,false,true,false,false +MRBT/ASCP,MRBT,C++,false,false,false,0,false,false,false,false +patwarir/extensions,patwarir,C#,false,false,false,0,false,false,false,false +mgyugcha/copernico-theme,mgyugcha,CSS,false,false,false,0,false,false,false,false +branch14/beasts,branch14,Clojure,false,false,false,0,false,false,false,false +badsectorlabs/aws-compress-and-deploy,badsectorlabs,,false,false,false,0,false,false,false,false +antora/docker-antora,antora,,true,false,false,2,true,false,true,false +rcy/touringlist,rcy,JavaScript,false,false,false,0,false,false,false,false +nownabe/example-gRPC-python-test,nownabe,Python,false,true,false,0,false,false,false,false +kalharbi/todo-php-mysql,kalharbi,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-rollup,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +dominik.wojnar/genetic-algorithm,dominik.wojnar,Python,false,false,false,0,false,false,false,false +prepostprint/code-x-01,prepostprint,JavaScript,false,false,false,0,false,false,false,false +ali_reza/c_sharp_paint,ali_reza,C#,false,false,false,0,false,false,false,false +Calinou/hugo.pro,Calinou,HTML,true,false,false,1,true,false,false,false +tristan957/docker-files,tristan957,,false,false,false,0,false,false,false,false +daylight/xi-editor,daylight,Rust,false,false,false,0,false,false,false,false +catalyst-it/catascope,catalyst-it,Python,true,true,false,3,false,true,false,false +samsulhadi/chattkkom,samsulhadi,Python,false,false,false,0,false,false,false,false +gitlab-org/security-products/zaproxy,gitlab-org,Java,true,false,false,1,true,false,false,false +rsumner31/powershell,rsumner31,PowerShell,false,false,false,0,false,false,false,false +piterjov/portfolio,piterjov,JavaScript,false,false,false,0,false,false,false,false +AuP-UBA/arquitecturaDeMicroprocesadores,AuP-UBA,C,false,false,false,0,false,false,false,false +DareData-open-source/event-grammar-etl,DareData-open-source,,false,false,false,0,false,false,false,false +demipel8/bodorrio,demipel8,JavaScript,true,false,false,2,false,true,true,false +badsectorlabs/blog,badsectorlabs,HTML,true,false,false,2,true,false,true,false +pPrus/CrossAndCircle,pPrus,Java,false,false,false,0,false,false,false,false +DareData-open-source/neo4j-path-analysis,DareData-open-source,JupyterNotebook,false,false,false,0,false,false,false,false +pottered-pixel-dungeon/pottered-pixel-dungeon-public,pottered-pixel-dungeon,Java,false,false,false,0,false,false,false,false +openmicroscopy/graduated/omero-dsl,openmicroscopy,Java,false,false,false,0,false,false,false,false +tinyman/prism-network,tinyman,JavaScript,false,false,false,0,false,false,false,false +gabriel.candrade/imersao2018-1,gabriel.candrade,Python,false,false,false,0,false,false,false,false +raphab33/imersao,raphab33,JavaScript,false,false,false,0,false,false,false,false +singleballplay/picam,singleballplay,Python,false,false,false,0,false,false,false,false +sim590/inf2160-solutions,sim590,,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-model,openmicroscopy,Java,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-romio,openmicroscopy,Java,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-common,openmicroscopy,Java,false,false,false,0,false,false,false,false +guild-of-makers/CodeOfConduct,guild-of-makers,,false,false,false,0,false,false,false,false +franicflowsarl/docker-scripts,franicflowsarl,,true,false,false,4,false,false,false,false +sidtrivedi/notepad-app,sidtrivedi,JavaScript,false,false,false,0,false,false,false,false +simonhenin/oaetoolbox,simonhenin,Matlab,false,false,false,0,false,false,false,false +icfoss/lekha-OCR,icfoss,Python,false,false,false,0,false,false,false,false +denarius/chaindata,denarius,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-vulkan,TomasHubelbauer,,false,false,false,0,false,false,false,false +rockbandtech/elixir_phoenix_crud,rockbandtech,Elixir,false,false,false,0,false,false,false,false +imartin/DYMO,imartin,C,false,false,false,0,false,false,false,false +shutgun/update_raspi_kernel,shutgun,Shell,false,false,false,0,false,false,false,false +Jooakim/twbot,Jooakim,HTML,false,false,false,0,false,false,false,false +Jujuu/Simulateur,Jujuu,C,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-parcel,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +nlynch504/Data.Analytics.Portfolio,nlynch504,JupyterNotebook,false,false,false,0,false,false,false,false +omawhite/react-pspfrontend,omawhite,JavaScript,true,false,false,2,true,true,false,false +guicheffer/type-ur-email,guicheffer,JavaScript,false,false,false,0,false,false,false,false +init.d/utility,init.d,Shell,false,false,false,0,false,false,false,false +obob/pymatreader,obob,HTML,true,false,false,1,false,true,false,false +nescience/software_quality,nescience,R,false,false,false,0,false,false,false,false +jbuyo/primerProject,jbuyo,,false,false,false,0,false,false,false,false +juergens/pfycat,juergens,Python,false,true,false,0,false,false,false,false +TomasHubelbauer/bloggo-dokku,TomasHubelbauer,,false,false,false,0,false,false,false,false +ongtk91/ionic-background-geo,ongtk91,TypeScript,false,false,false,0,false,false,false,false +commonshost/manifest,commonshost,JavaScript,true,false,false,1,false,true,false,false +shellygobui/studentTeacherPortalv2,shellygobui,HTML,false,false,false,0,false,false,false,false +gabrielburgazzi/HackBoard,gabrielburgazzi,Ruby,false,false,false,0,false,false,false,false +thanhbka89/demo_gitlab,thanhbka89,,false,false,false,0,false,false,false,false +CaflischLab/SEED,CaflischLab,C++,true,false,false,2,true,true,false,false +leshka/lunodog,leshka,Python,false,false,false,0,false,false,false,false +docker-learning/application,docker-learning,PHP,false,false,false,0,false,false,false,false +pienso/installers,pienso,Shell,false,false,false,0,false,false,false,false +tobias47n9e/wikibase_rs_rocket_example,tobias47n9e,Rust,true,false,false,1,false,true,false,false +gitlab-org/security-products/analyzers/find-sec-bugs,gitlab-org,Go,false,false,false,0,false,false,false,false +minusonestudios/diguin,minusonestudios,Lua,false,false,false,0,false,false,false,false +Zahramaharani/RadioCollor,Zahramaharani,Java,false,false,false,0,false,false,false,false +nomer888/rbxlua-raven,nomer888,Lua,false,false,false,0,false,false,false,false +MendesKing/plain-html,MendesKing,HTML,true,false,false,1,false,false,true,false +matthewnielsen/quick_heat,matthewnielsen,C++,false,false,false,0,false,false,false,false +devprodest/Bludit-plugins,devprodest,PHP,false,false,false,0,false,false,false,false +zauster/riot,zauster,R,true,false,false,1,false,true,false,false +hadar753/node-typescript-angular-auth,hadar753,JavaScript,false,false,false,0,false,false,false,false +greenfox/upvotes,greenfox,JavaScript,true,false,false,3,true,false,true,true +fosimus/shapes,fosimus,JavaScript,false,false,false,0,false,false,false,false +Senik/test,Senik,HTML,false,false,false,0,false,false,false,false +dhimmel/pmc-citation-styles,dhimmel,JupyterNotebook,true,false,false,1,false,true,false,false +nitin.solna/nitin1ci,nitin.solna,,false,false,false,0,false,false,false,false +oddnetworks/oddworks/core,oddnetworks,JavaScript,true,false,false,1,false,true,false,false +nikigan/AwesomeStrings,nikigan,C#,true,false,false,1,true,false,false,false +technomancy/fennel-tiled-tech-demo,technomancy,Lua,false,false,false,0,false,false,false,false +neo-cs/addressbook,neo-cs,CSS,false,false,true,0,false,false,false,false +leroywarnt/ipheader,leroywarnt,Python,false,false,false,0,false,false,false,false +legoktm/wikimedia-gadgets-mirror,legoktm,JavaScript,false,false,false,0,false,false,false,false +dynastini1337/youcoub,dynastini1337,Go,true,false,false,1,false,false,false,false +Alisummer/LyricsJaeger,Alisummer,Java,true,false,false,1,true,false,false,false +MSP_EC/firma-cda,MSP_EC,XSLT,false,false,false,0,false,false,false,false +rogfed/flexbox-layout-romera,rogfed,HTML,false,false,false,0,false,false,false,false +fmrico/CSUROS,fmrico,C++,false,false,false,0,false,false,false,false +creditoo-labs/hiring/hiring-back-end,creditoo-labs,,false,false,false,0,false,false,false,false +kochavaops/devops-mini,kochavaops,,false,false,false,0,false,false,false,false +rink72/terraform-modules,rink72,HCL,false,false,false,0,false,false,false,false +rct14b/Robert-and-Robert,rct14b,HTML,false,false,false,0,false,false,false,false +vcorelab/cloudrepo,vcorelab,Python,false,false,false,0,false,false,false,false +Spacewax/unicorn-blog,Spacewax,PHP,false,false,false,0,false,false,false,false +rlbekkema/mariobot-ts,rlbekkema,TypeScript,true,false,false,2,true,true,false,false +P4E/bi,P4E,PLpgSQL,false,false,false,0,false,false,false,false +certaind/certaind,certaind,Python,false,false,false,0,false,false,false,false +jag1618/Demo,jag1618,CSS,false,false,false,0,false,false,false,false +williamchia/git-merge-2018,williamchia,CSS,true,false,false,1,false,false,true,false +PrajjwalDimri/prajjwaldimri.gitlab.io,PrajjwalDimri,HTML,true,false,false,1,false,false,true,false +davchana/gmail-indian-spam-domains,davchana,,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home-shop,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +aashish12/gitDemo2,aashish12,,false,false,false,0,false,false,false,false +josealberto4444/lector-cart-game-boy,josealberto4444,,false,false,false,0,false,false,false,false +hungpt/what-food-you-choose,hungpt,JavaScript,false,false,false,0,false,false,false,false +corunahacks/OpenPet,corunahacks,JavaScript,false,false,false,0,false,false,false,false +RizkiMufrizal/Heroku-Container,RizkiMufrizal,Kotlin,true,false,false,3,true,false,false,false +drz-openscad/modular-brainfuck-keyboard,drz-openscad,OpenSCAD,false,false,false,0,false,false,false,false +youthweb/fuel-autocomplete-helper,youthweb,PHP,false,false,false,0,false,false,false,false +youthweb/youthweb-api,youthweb,APIBlueprint,false,false,false,0,false,false,false,false +youthweb/php-youthweb-api,youthweb,PHP,false,false,false,0,false,false,false,false +pkats15/eve-spreadsheet,pkats15,JavaScript,false,false,false,0,false,false,false,false +corunahacks/cacharro-libre,corunahacks,,false,false,false,0,false,false,false,false +ShortByte/ShortAPI,ShortByte,Java,false,false,false,0,false,false,false,false +Zilkos/blog,Zilkos,,false,false,false,0,false,false,false,false +infomasternotes/BIO,infomasternotes,TeX,true,false,false,1,false,true,false,false +infomasternotes/SDP,infomasternotes,TeX,true,false,false,1,false,true,false,false +cromir/D-S-S,cromir,,false,false,false,0,false,false,false,false +Retr0_System/panphon,Retr0_System,Python,false,false,false,0,false,false,false,false +AmigaSourcePres/amigasourcepres.gitlab.io,AmigaSourcePres,HTML,true,false,false,1,false,true,false,false +ffrraannkk/reactapella,ffrraannkk,JavaScript,true,false,false,2,false,true,false,false +prasantadutta/saumyajit,prasantadutta,C,false,false,false,0,false,false,false,false +princ.imran/WP_google_font_dynamic,princ.imran,PHP,false,false,false,0,false,false,false,false +kurtbomya/primer,kurtbomya,Python,false,false,false,0,false,false,false,false +yurifbeck/engcivil,yurifbeck,Vue,true,false,false,1,false,false,true,false +cookFans/pinguinKitchen,cookFans,C#,false,false,false,0,false,false,false,false +mdsami/Retrofit,mdsami,Java,false,false,false,0,false,false,false,false +scif/whiskers,scif,Python,false,false,false,0,false,false,false,false +bpel-verification/JBPEL2ISPL,bpel-verification,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/carpenter-brut-tee,TomasHubelbauer,C++,false,false,false,0,false,false,false,false +iamstg.daga/CV_Project_2k18,iamstg.daga,Matlab,false,false,false,0,false,false,false,false +dsa_pevs/homework_1,dsa_pevs,C++,false,false,false,0,false,false,false,false +morenstrat/drupal-runner,morenstrat,JavaScript,true,false,false,1,false,false,true,false +futurodeguatemala/miprimercodigoenhtml,futurodeguatemala,HTML,false,false,false,0,false,false,false,false +dev884/camnager,dev884,Java,false,false,false,0,false,false,false,false +widlundtobias/magma,widlundtobias,C++,false,false,false,0,false,false,false,false +monikaO/OS_task2,monikaO,,false,false,false,0,false,false,false,false +funkycram/humhub-directory_map,funkycram,PHP,false,false,false,0,false,false,false,false +nighat/Laraval_advertisment,nighat,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-webgl,TomasHubelbauer,JavaScript,false,false,false,0,false,false,false,false +ihc385/IHCMercs,ihc385,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-pm,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-graphviz,TomasHubelbauer,,false,false,false,0,false,false,false,false +MobileGameMgr/mobileGameOlaKonrad,MobileGameMgr,,false,false,false,0,false,false,false,false +spiculedata/juju/layer-drillbit,spiculedata,Python,false,false,false,0,false,false,false,false +denials/wikidata-music-infocard,denials,JavaScript,false,false,false,0,false,false,false,false +z0x/ppwt,z0x,Shell,false,false,false,0,false,false,false,false +jlawas/classrecord,jlawas,Java,false,false,false,0,false,false,false,false +jlazo/inventoryFinals,jlazo,Java,false,false,false,0,false,false,false,false +heterosexual/archives/userstyles.org,heterosexual,,false,false,false,0,false,false,false,false +Bakharevich/instarget-cabinet,Bakharevich,CSS,false,false,false,0,false,false,false,false +Sovannarith/SpringBoot_JPA_Hibernate_H2,Sovannarith,Java,false,false,true,0,false,false,false,false +TomasHubelbauer/bloggo-webos,TomasHubelbauer,,false,false,false,0,false,false,false,false +cbrugger/os-workshop,cbrugger,Groovy,false,false,false,0,false,false,false,false +b.urrito/b.ackend,b.urrito,C#,true,false,false,2,true,false,true,false +akalankadesilva/SIM7000-Arduino,akalankadesilva,C++,false,false,false,0,false,false,false,false +dsa_pevs/homework_2,dsa_pevs,C++,false,false,false,0,false,false,false,false +saycle.xyz/general,saycle.xyz,Shell,false,false,false,0,false,false,false,false +Fahmi.Salleh/venvtools,Fahmi.Salleh,Shell,false,false,false,0,false,false,false,false +LordKenzo/ts-node-2,LordKenzo,TypeScript,false,false,false,0,false,false,false,false +daniellagadelha/projetoTeste,daniellagadelha,,false,false,false,0,false,false,false,false +mizaelmr/investirRh,mizaelmr,HTML,false,false,false,0,false,false,false,false +rilis/rili/color,rilis,C++,true,false,false,3,false,true,false,false +imendez/ethereum-posts,imendez,TypeScript,false,false,false,0,false,false,false,false +Kaizen5000/UE4_PhysicsTest,Kaizen5000,C++,false,false,false,0,false,false,false,false +abrahamwill/Assignment-DDP2,abrahamwill,Java,true,false,false,2,true,true,false,false +bimantara/Exploretemanggung,bimantara,HTML,false,false,false,0,false,false,false,false +sigscale/m3ua,sigscale,Erlang,true,false,false,3,true,true,true,false +etnbrd/awesome-freelance-fr,etnbrd,,false,false,false,0,false,false,false,false +langurmonkey/dotfiles,langurmonkey,JavaScript,false,false,false,0,false,false,false,false +EroanMarie/TicTacToe,EroanMarie,Java,false,false,false,0,false,false,false,false +TezexInfo/Go-Client,TezexInfo,Go,false,false,true,0,false,false,false,false +TezexInfo/Javascript-Client,TezexInfo,JavaScript,false,false,false,0,false,false,false,false +xavialex7/Deep-Learning-Templates,xavialex7,Python,false,false,false,0,false,false,false,false +xavialex7/Machine-Learning-Templates,xavialex7,Python,false,false,false,0,false,false,false,false +xavialex7/Object-Detection-Web-Service,xavialex7,Python,false,false,false,0,false,false,false,false +xavialex7/TF-Object-Detection-Use-Cases,xavialex7,Python,false,false,false,0,false,false,false,false +fiot/simple-flask-gateway,fiot,,false,false,false,0,false,false,false,false +Baasie/serverless-faas-function-chaining-js,Baasie,JavaScript,false,false,false,0,false,false,false,false +Xugetsu/2048-Tile-Game,Xugetsu,JavaScript,false,false,false,0,false,false,false,false +stanley_jovel/pupusa-comanda,stanley_jovel,JavaScript,false,false,false,0,false,false,false,false +cirruscreative/cirruscreative,cirruscreative,JavaScript,true,false,false,1,false,false,true,false +qberten/makicade,qberten,Python,false,false,false,0,false,false,false,false +sscherfke/async-channel,sscherfke,Python,false,true,false,0,false,false,false,false +Christiano2810/trading-bot,Christiano2810,Python,false,false,false,0,false,false,false,false +juanolivas/hangman-game,juanolivas,Elixir,false,false,false,0,false,false,false,false +andyfry/zabbix-sync,andyfry,Python,false,false,false,0,false,false,false,false +larsjeh/py-eventsourcing,larsjeh,Python,false,true,false,0,false,false,false,false +whatthedev/polybius-engine,whatthedev,Objective-C,true,false,false,1,true,false,false,false +michaelchu/data_pipeline_backups,michaelchu,,false,false,false,0,false,false,false,false +skullybox/icecookie,skullybox,C++,false,false,false,0,false,false,false,false +gilgil/android-pcap-androideabi-gcc,gilgil,,false,false,false,0,false,false,false,false +TomasHubelbauer/git-comment,TomasHubelbauer,,false,false,false,0,false,false,false,false +ClaireGardent/PT2018_Sentence_Fusion,ClaireGardent,Shell,false,false,false,0,false,false,false,false +viperdev/website-blog,viperdev,CSS,false,false,false,0,false,false,false,false +linceaerian/package-generator,linceaerian,Shell,false,false,false,0,false,false,false,false +maximedenes/coq,maximedenes,OCaml,true,false,false,2,true,true,false,false +triaslucia/Open_Portfolio,triaslucia,,false,false,false,0,false,false,false,false +VNdotfiles/awesome4,VNdotfiles,Lua,false,false,false,0,false,false,false,false +godq/lianjia,godq,Python,true,false,false,1,false,true,false,false +xaldyz/orb-slam-openvx,xaldyz,C++,false,false,false,0,false,false,false,false +Xalendro/yandex-map-viewer-py,Xalendro,Python,false,false,false,0,false,false,false,false +Workshoft/PackagingTutorial,Workshoft,Python,false,true,false,0,false,false,false,false +lyrahgames/sublime_text_3-config,lyrahgames,,false,false,false,0,false,false,false,false +MityaSaray/docker_test_chat,MityaSaray,JavaScript,false,false,false,0,false,false,false,false +killer2alex/KlaTaMa,killer2alex,,false,false,false,0,false,false,false,false +louis1100/ucom-website,louis1100,Ruby,false,false,false,0,false,false,false,false +opensequence/aws-ec2-snapshot-lifecycles,opensequence,PowerShell,false,false,false,0,false,false,false,false +GenealogyCreator/Genealogy,GenealogyCreator,C#,false,false,false,0,false,false,false,false +caedes/formation-js-webpack,caedes,JavaScript,false,false,false,0,false,false,false,false +Wahal/ethical-hacking,Wahal,,false,false,false,0,false,false,false,false +Georgesd/Projet-IHM,Georgesd,C++,false,false,false,0,false,false,false,false +sv_codetest/botxo-comma,sv_codetest,Python,false,false,false,0,false,false,false,false +auto-breakfast/eggs,auto-breakfast,Python,true,true,false,1,false,true,false,false +sv_codetest/botxo-api,sv_codetest,Python,false,false,false,0,false,false,false,false +perrydc/npr-flask,perrydc,HTML,false,false,false,0,false,false,false,false +mbarbry/AbInitioToolkit,mbarbry,,false,false,false,0,false,false,false,false +HokieGeek/nexus-lifecycle-gitlab,HokieGeek,Shell,true,false,false,1,true,false,false,false +triepe/dixie-lees,triepe,HTML,false,false,false,0,false,false,false,false +alevelara/opoapp,alevelara,Kotlin,false,false,false,0,false,false,false,false +oddnetworks/oddworks/ios-tvos-sdk,oddnetworks,Swift,false,false,false,0,false,false,false,false +cameralibre/scuttlebuttoons,cameralibre,,false,false,false,0,false,false,false,false +cmontella/hivemindwebsite,cmontella,JavaScript,true,false,false,1,false,false,true,false +Moonfit/MoonLight,Moonfit,C++,false,false,false,0,false,false,false,false +mech-lang/website,mech-lang,HTML,true,false,false,1,false,false,true,false +gpsd/gpsd,gpsd,C,true,false,false,1,false,false,true,false +jbake-org/jbake,jbake-org,CSS,true,false,false,1,false,true,false,false +hawer.forero/MovilidadAcademica,hawer.forero,HTML,false,false,true,0,false,false,false,false +tarcisioe/ampdup,tarcisioe,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-oss,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-prettier,TomasHubelbauer,,false,false,false,0,false,false,false,false +seangenabe/awesome-kubernetes,seangenabe,,false,false,false,0,false,false,false,false +mrein/project-munsterroll,mrein,HTML,false,false,true,0,false,false,false,false +flisolfsa/flisolfsa.gitlab.io,flisolfsa,CSS,true,false,false,1,false,false,true,false +zcong1993/grpc-server,zcong1993,Go,false,false,false,0,false,false,false,false +james.fruhbauer/versioning-bundle,james.fruhbauer,PHP,false,false,false,0,false,false,false,false +ondrejmisak/alpine-nginx-php,ondrejmisak,Shell,false,false,false,0,false,false,false,false +rsergeant/arctic-fox,rsergeant,Rust,false,false,false,0,false,false,false,false +narokishi/car-rental,narokishi,PHP,false,false,false,0,false,false,false,false +godfreyzubiaga/best-boilerplate,godfreyzubiaga,JavaScript,false,false,false,0,false,false,false,false +mattz7/openrc-in-arch,mattz7,Shell,false,false,false,0,false,false,false,false +wramos/intro-prog-homework,wramos,Python,false,false,false,0,false,false,false,false +aiakos/spatnav,aiakos,JavaScript,false,false,false,0,false,false,false,false +sjmgilburt/creditscorebulletin,sjmgilburt,Python,false,true,false,0,false,false,false,false +norganna-wow/auctioneer/auc-stat-purchased,norganna-wow,Lua,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/auc-stat-ilevel,norganna-wow,Lua,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/auc-util-askprice,norganna-wow,Lua,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/auc-util-searchui,norganna-wow,Lua,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/beancounter,norganna-wow,Lua,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/enchantrix,norganna-wow,Lua,false,false,false,0,false,false,false,false +LinZap/Sentiment_Prediction,LinZap,Python,false,false,false,0,false,false,false,false +daraptoor/Node-JS-PHP-MYSQL-Live-Chat,daraptoor,PHP,false,false,false,0,false,false,false,false +wcsngonion/xiangka,wcsngonion,JavaScript,false,false,false,0,false,false,false,false +roxanagogonea/frida-android,roxanagogonea,Java,false,false,false,0,false,false,false,false +bryce_lau/jira-warn,bryce_lau,Java,false,false,true,0,false,false,false,false +xczhang1/Hack24,xczhang1,Java,false,false,false,0,false,false,false,false +Conor.Green/todo-js,Conor.Green,CSS,false,false,false,0,false,false,false,false +moongill2008/psr,moongill2008,Java,false,false,false,0,false,false,false,false +DenysVuika/medium-dynamic-sidebar,DenysVuika,TypeScript,false,false,false,0,false,false,false,false +ibtehaz/Blood_Bank_Bot,ibtehaz,Python,false,true,false,0,false,false,false,false +barborik.tom25/ipp,barborik.tom25,PHP,false,false,false,0,false,false,false,false +polytonic/Rack-Plugin.xctemplate,polytonic,C++,false,false,false,0,false,false,false,false +alex.gatu/csharp_basic,alex.gatu,C#,false,false,false,0,false,false,false,false +tetraminds/tetraminds-ugadi,tetraminds,HTML,false,false,false,0,false,false,false,false +hyWse/wseLab,hyWse,Java,false,false,false,0,false,false,false,false +team-circadia/crystal-shader,team-circadia,GameMakerLanguage,false,false,false,0,false,false,false,false +s.portebois/terraform-aws-guide,s.portebois,,false,false,false,0,false,false,false,false +aportillo/finance-report,aportillo,Python,false,true,false,0,false,false,false,false +franktcao/FCKinFitter,franktcao,C++,false,false,false,0,false,false,false,false +moongill2008/pfm,moongill2008,Java,false,false,false,0,false,false,false,false +hello-my-world/stock-record,hello-my-world,JavaScript,false,false,false,0,false,false,false,false +KannanKDP/playground,KannanKDP,,false,false,false,0,false,false,false,false +aby.bayu003/myproject,aby.bayu003,Ruby,true,false,false,1,false,true,false,false +tonvantruongbk/kokobay,tonvantruongbk,JavaScript,false,false,false,0,false,false,false,false +turbocoding/uipath-toolkit,turbocoding,,false,false,false,0,false,false,false,false +diogofcunha/martian-robots,diogofcunha,JavaScript,false,false,false,0,false,false,false,false +mlevesquedion/tpglo2005,mlevesquedion,Python,false,false,false,0,false,false,false,false +upe-consulting/npm/ngx/forms,upe-consulting,TypeScript,true,false,false,3,true,true,false,true +mblowfish/mblowfish-core,mblowfish,JavaScript,true,false,false,2,false,true,true,false +GLaDDOS/report-system,GLaDDOS,JavaScript,false,false,false,0,false,false,false,false +HeinousTugboat/travgen,HeinousTugboat,TypeScript,true,false,false,1,false,false,true,false +fosslab2018/1-Familiarization,fosslab2018,,false,false,false,0,false,false,false,false +daut.morina/shopping,daut.morina,JavaScript,false,false,false,0,false,false,false,false +ipolyzos/kubewatch,ipolyzos,Go,false,false,false,0,false,false,false,false +francesco.dalbello/school-register,francesco.dalbello,PowerShell,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-project-ideas,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-vdom,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-petit,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +ipolyzos/minimesos,ipolyzos,Java,false,false,false,0,false,false,false,false +rn-public-repos/qa-automation-coding-challenge,rn-public-repos,,false,false,false,0,false,false,false,false +ipolyzos/dcos-kubernetes-quickstart,ipolyzos,Makefile,false,false,false,0,false,false,false,false +mihbor/sila-hackathon,mihbor,Java,true,false,false,1,true,false,false,false +ryan.zakariudakis/spring-websocket-chat-example,ryan.zakariudakis,Kotlin,false,false,true,0,false,false,false,false +carlosespinoza/poo-inventarios,carlosespinoza,C#,false,false,false,0,false,false,false,false +kable.tv/docker-satis,kable.tv,,true,false,false,2,true,true,false,false +famaf-algo2/ayed2-2018,famaf-algo2,C,false,false,false,0,false,false,false,false +innovsoftware-public/flowcomponents,innovsoftware-public,JavaScript,false,false,false,0,false,false,false,false +redelivre/redelivre,redelivre,PHP,false,false,false,0,false,false,false,false +thejacer87/scoregoals,thejacer87,JavaScript,true,false,false,1,true,false,false,false +TheYves/DotNetCoreMVCTodos,TheYves,C#,false,false,false,0,false,false,false,false +stefanorossiti/SuppaMario,stefanorossiti,Java,false,false,false,0,false,false,false,false +stefanorossiti/DefinetlyNotPacMan,stefanorossiti,Java,false,false,false,0,false,false,false,false +jcgolsilverio/lpbdrepo,jcgolsilverio,,false,false,false,0,false,false,false,false +andrey.g.bagdasarov/simple-rest-API-golang,andrey.g.bagdasarov,Go,false,false,false,0,false,false,false,false +bloggo/bloggo,bloggo,TypeScript,false,false,false,0,false,false,false,false +jnaour/scraping-medecin,jnaour,JupyterNotebook,false,false,false,0,false,false,false,false +fleeit/broker,fleeit,JavaScript,false,false,false,0,false,false,false,false +lokat/HiLive2,lokat,C++,true,false,false,1,false,true,false,false +gitlab-com/gl-infra/butterbot,gitlab-com,Go,true,false,false,2,true,false,false,true +publication_code/deeplearning_filter,publication_code,Python,false,false,false,0,false,false,false,false +fastintegration/fastintegration-interface,fastintegration,JavaScript,false,false,false,0,false,false,false,false +mikegustin/crestron-simpl-plus-snippets,mikegustin,,false,false,false,0,false,false,false,false +m3tti/slurm,m3tti,JavaScript,false,false,false,0,false,false,false,false +brettnak/composify,brettnak,Ruby,false,false,false,0,false,false,false,false +gamedevUlaval/VRProject,gamedevUlaval,,false,false,false,0,false,false,false,false +Ampuero33/Proyecto_Final,Ampuero33,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-puppeteer,TomasHubelbauer,,false,false,false,0,false,false,false,false +frederick.tan/ptem,frederick.tan,C,false,false,false,0,false,false,false,false +jannygodoy1087/taller2.1,jannygodoy1087,,false,false,false,0,false,false,false,false +taichunmin/mp-minioasis-docker,taichunmin,Shell,true,false,false,1,false,false,false,true +TomasHubelbauer/bloggo-aws,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-collaborative-editing,TomasHubelbauer,,false,false,false,0,false,false,false,false +damoebius/codeofwar,damoebius,Haxe,true,false,false,1,true,false,false,false +muping/flower-sale,muping,Java,false,false,true,0,false,false,false,false +TomasHubelbauer/bloggo-radi,TomasHubelbauer,,false,false,false,0,false,false,false,false +SimplePLC/documentation,SimplePLC,TeX,true,false,false,1,false,false,true,false +florian.sureau/babyfoot,florian.sureau,TypeScript,true,false,false,1,true,false,false,false +TomasHubelbauer/bloggo-azure,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-coturn,TomasHubelbauer,,false,false,false,0,false,false,false,false +newebtime/pyrocms/publish_button-extension,newebtime,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-nps,TomasHubelbauer,,false,false,false,0,false,false,false,false +petervmeijgaard/media-server,petervmeijgaard,JavaScript,false,false,false,0,false,false,false,false +kabaretstudio/kabaret.script_view,kabaretstudio,Python,false,false,false,0,false,false,false,false +Sisense-Plugins/mapbox-gl,Sisense-Plugins,JavaScript,false,false,false,0,false,false,false,false +jtcfrontend/node02,jtcfrontend,JavaScript,false,false,false,0,false,false,false,false +pvergain/testflow1,pvergain,Shell,false,false,false,0,false,false,false,false +trosa/iomonad-overlay,trosa,Shell,false,false,false,0,false,false,false,false +TomasHubelbauer/agenda2,TomasHubelbauer,JavaScript,false,false,false,0,false,false,false,false +eyeo/adblockplus/ios-libraries/yajl-dynamic,eyeo,C,false,false,false,0,false,false,false,false +eyeo/adblockplus/ios-libraries/FavIcon,eyeo,Swift,false,false,false,0,false,false,false,false +jsivori/CurriculumVitae,jsivori,JavaScript,true,false,false,1,false,false,true,false +mcepl/pidgin,mcepl,C,false,false,false,0,false,false,false,false +dev_valente/primerRepositorio,dev_valente,CSS,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-flynn,TomasHubelbauer,,false,false,false,0,false,false,false,false +Eviato/archi_supfile,Eviato,HCL,false,false,false,0,false,false,false,false +duduksini/boardgame,duduksini,JavaScript,false,false,false,0,false,false,false,false +Marei/MyPatient,Marei,C#,false,false,false,0,false,false,false,false +iotssl/STM32F103C8_Blinker,iotssl,C,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-deis,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-gitkube,TomasHubelbauer,,false,false,false,0,false,false,false,false +age-agh/age3-tools,age-agh,Java,false,false,false,0,false,false,false,false +nallaworks/pizzaria5,nallaworks,TypeScript,false,false,false,0,false,false,false,false +aapjeisbaas/spot-vpn,aapjeisbaas,,false,false,false,0,false,false,false,false +dasjott/skill-sample-fact,dasjott,Go,false,false,false,0,false,false,false,false +stellaris/irm_sa,stellaris,,false,false,false,0,false,false,false,false +lyovalevon/OFIMATICA,lyovalevon,Python,false,false,false,0,false,false,false,false +camiloYateY2018/Python_Ejercicios_15,camiloYateY2018,Python,false,false,false,0,false,false,false,false +sj1k/grizzbot,sj1k,Python,false,true,false,0,false,false,false,false +NanoSpicer/TFG,NanoSpicer,C#,false,false,false,0,false,false,false,false +msanford1030/array-lang,msanford1030,C,false,false,false,0,false,false,false,false +rituraj/mihe,rituraj,Java,false,false,false,0,false,false,false,false +dhamdani666/learningbatch2,dhamdani666,PHP,false,false,false,0,false,false,false,false +sd1-ec-2018-1/p1-g2,sd1-ec-2018-1,JavaScript,false,false,false,0,false,false,false,false +instytut/redakcja,instytut,JavaScript,false,false,false,0,false,false,false,false +instytut/librarian,instytut,Perl,false,false,false,0,false,false,false,false +leipert-projects/is-gitlab-pretty-yet,leipert-projects,Vue,true,false,false,2,true,false,true,false +pablouhc/forgemods/cablo,pablouhc,Java,true,false,false,2,true,true,false,false +TomasHubelbauer/bloggo-javascript-editors,TomasHubelbauer,,false,false,false,0,false,false,false,false +betulle/paper-list,betulle,,false,false,false,0,false,false,false,false +marcmnc7/guitool,marcmnc7,CSS,false,false,false,0,false,false,false,false +Unbemerkt/ServerSign-Bukkit-Spigot-1_12,Unbemerkt,Java,false,false,false,0,false,false,false,false +LuWaWaSP/T-brain-trendmicro,LuWaWaSP,Python,false,true,false,0,false,false,false,false +KorvinSilver/d3ta-pyqt,KorvinSilver,Python,false,false,false,0,false,false,false,false +rosamarsky/test-task,rosamarsky,PHP,false,false,false,0,false,false,false,false +syed.rifat.ahsan/Terrorism-Information-Management-System,syed.rifat.ahsan,PHP,false,false,false,0,false,false,false,false +mTresk/proprietary_vendor_oneplus,mTresk,Makefile,false,false,false,0,false,false,false,false +NicolasJouanin/bs-pixl-xml,NicolasJouanin,OCaml,false,false,false,0,false,false,false,false +broadsword/server,broadsword,Rust,false,false,false,0,false,false,false,false +amigasourcecodepreservation/designworks,amigasourcecodepreservation,C,false,false,false,0,false,false,false,false +amigasourcecodepreservation/profonts,amigasourcecodepreservation,C,false,false,false,0,false,false,false,false +Gousikan/optimizacionestacionamiento,Gousikan,C++,false,false,false,0,false,false,false,false +42-2/CatCatch/CatCatch,42-2,C#,false,false,false,0,false,false,false,false +juergen.kosel.jk/git-svn-mirror,juergen.kosel.jk,Shell,false,false,false,0,false,false,false,false +SilentTeaCup/congo,SilentTeaCup,Go,true,false,false,2,true,true,false,false +bmallred/namecloud,bmallred,JavaScript,true,false,false,1,false,false,true,false +biramourao/projeto-programacao-ii,biramourao,Java,false,false,true,0,false,false,false,false +mdeken/atelier-ml,mdeken,JupyterNotebook,false,false,false,0,false,false,false,false +davidlaym.com/blog-examples/nodejs_upload_file,davidlaym.com,JavaScript,false,false,false,0,false,false,false,false +camshift/dahua-scanner,camshift,Python,false,true,false,0,false,false,false,false +aklapper/wikimedia-maniphest-triage-helper,aklapper,JavaScript,false,false,false,0,false,false,false,false +aklapper/wikimedia-village-pump-helper,aklapper,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-interactive-tutorials,TomasHubelbauer,,false,false,false,0,false,false,false,false +aklapper/wikimedia-wikis-local-string-overrides,aklapper,Shell,false,false,false,0,false,false,false,false +StaubSauger/StaubSaugerWeb,StaubSauger,HTML,true,false,false,1,false,true,false,false +pganssle/proposals,pganssle,,false,false,false,0,false,false,false,false +broadsword/App,broadsword,JavaScript,false,false,false,0,false,false,false,false +geno.papashvili/server-client,geno.papashvili,Java,false,false,false,0,false,false,false,false +liu.benjamin/dotfiles,liu.benjamin,Shell,false,false,false,0,false,false,false,false +lukett89/gestionale-old,lukett89,TypeScript,false,false,false,0,false,false,false,false +GDARKSOFT/TIS-SATPFG,GDARKSOFT,PHP,false,false,false,0,false,false,false,false +bhavikbhavsar/pki,bhavikbhavsar,Java,false,false,false,0,false,false,false,false +Semama/Wall-E,Semama,Python,false,true,false,0,false,false,false,false +ehsanhajyasini74/bike-sharing-picture-confirmation,ehsanhajyasini74,Python,false,false,false,0,false,false,false,false +kaleabmelkie/meseret-examples,kaleabmelkie,TypeScript,false,false,false,0,false,false,false,false +think-outside-the-game/totg,think-outside-the-game,,false,false,false,0,false,false,false,false +babylonms/babylonms_modules,babylonms,Batchfile,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-unreal,TomasHubelbauer,,false,false,false,0,false,false,false,false +chrisbelyea/packer-pipelines,chrisbelyea,,false,false,false,0,false,false,false,false +InstaffoOpenSource/JavaScript/eslint-config-instaffo,InstaffoOpenSource,JavaScript,true,false,false,1,false,true,false,false +MateuszGrosiak/juju,MateuszGrosiak,JavaScript,false,false,false,0,false,false,false,false +danielpinon/AcaiDeliveryBelem-Entregador,danielpinon,JavaScript,false,false,false,0,false,false,false,false +fiot/fiot-grovepi-sensor-server,fiot,Python,false,false,false,0,false,false,false,false +costrouc/dftfit,costrouc,Python,true,false,false,3,false,true,true,false +cn-ds/ionic-app,cn-ds,TypeScript,true,false,false,1,false,false,true,false +everin/gpi-reveal.js,everin,CSS,false,false,false,0,false,false,false,false +ad-si-2018-1/p1-g3,ad-si-2018-1,JavaScript,false,false,false,0,false,false,false,false +ad-si-2018-1/p1-g5,ad-si-2018-1,JavaScript,false,false,false,0,false,false,false,false +ThomSchlereth/Wholist,ThomSchlereth,Swift,false,false,false,0,false,false,false,false +robfaber/microservices,robfaber,Java,true,false,true,2,true,false,false,false +datadrivendiscovery/sklearn-wrap,datadrivendiscovery,Python,true,true,false,2,true,false,true,false +rki_bioinformatics/PathoLive,rki_bioinformatics,Python,false,false,false,0,false,false,false,false +meesvandongen/adaptivequiz0lauk0,meesvandongen,PHP,false,false,false,0,false,false,false,false +tomschr/docbook-kurs,tomschr,XSLT,true,false,false,1,true,false,false,false +jakschu/imageGallery,jakschu,CSS,false,false,false,0,false,false,false,false +_alexdark/widgetScript,_alexdark,JavaScript,false,false,false,0,false,false,false,false +lordamot/JS0,lordamot,JavaScript,false,false,false,0,false,false,false,false +ElenQ/LearnPython/python-examples,ElenQ,Python,false,false,false,0,false,false,false,false +kimwee/Collision-Avoidance-Simulator,kimwee,C++,false,false,false,0,false,false,false,false +omentes/piscine-php,omentes,PHP,false,false,false,0,false,false,false,false +slime-man/HouseEmoji,slime-man,Python,true,false,false,1,false,true,false,false +Scathach/height_map,Scathach,ASP,false,false,false,0,false,false,false,false +WizApps/Kotlin,WizApps,Kotlin,false,false,false,0,false,false,false,false +taberu.maciej/OGL2018,taberu.maciej,C,false,false,false,0,false,false,false,false +its-public/java-test-for-interview,its-public,Java,false,false,true,0,false,false,false,false +costrouc/lammps-cython,costrouc,Python,true,false,false,3,false,true,true,false +denchyaknow/Survival_Game,denchyaknow,C#,false,false,false,0,false,false,false,false +kruug/LinuxSubredditRules,kruug,,false,false,false,0,false,false,false,false +CryoScythe/Test-project,CryoScythe,,false,false,false,0,false,false,false,false +camshift/screengrab,camshift,C,false,false,false,0,false,false,false,false +danielr1996/pact-mock-service-docker,danielr1996,JavaScript,false,false,false,0,false,false,false,false +Bundyli/wjsSite,Bundyli,JavaScript,false,false,false,0,false,false,false,false +rediguana/IS2,rediguana,JavaScript,false,false,false,0,false,false,false,false +aliendev/testlab,aliendev,HTML,false,false,false,0,false,false,false,false +roshanjain/Deutsche-Challenge,roshanjain,Java,false,false,false,0,false,false,false,false +mohendra316/javacrud,mohendra316,Java,false,false,true,0,false,false,false,false +dusdhkd8/abdt,dusdhkd8,Java,false,false,false,0,false,false,false,false +fathom/fathom-app,fathom,JavaScript,false,false,false,0,false,false,false,false +mgerhardy/docker-debian-slim-file,mgerhardy,,true,false,false,1,false,false,false,false +hectorelgomez1/Python_SGE_DAM_Tarea5.1,hectorelgomez1,Python,false,false,false,0,false,false,false,false +madlabb/madlab,madlabb,Python,false,false,false,0,false,false,false,false +gustavoguerino/tcc,gustavoguerino,TeX,false,false,false,0,false,false,false,false +oer/oer-on-oer-infrastructure,oer,EmacsLisp,true,false,false,1,false,false,true,false +TomasHubelbauer/bloggo-isogit,TomasHubelbauer,,false,false,false,0,false,false,false,false +ayashir/styling,ayashir,CSS,false,false,false,0,false,false,false,false +hudsonmartins/social-media-share-prediction,hudsonmartins,Roff,false,false,false,0,false,false,false,false +DragonetMC/DragonProxy,DragonetMC,Java,false,false,true,0,false,false,false,false +eyeo/adblockplus/abpui/adblockplusui,eyeo,JavaScript,true,false,false,5,true,true,false,false +vgg/vgg_face_search,vgg,Python,false,false,false,0,false,false,false,false +juergen.kosel.jk/wireshark,juergen.kosel.jk,C,true,false,false,2,true,true,false,false +juergen.kosel.jk/s7commwireshark,juergen.kosel.jk,C,false,false,false,0,false,false,false,false +Tagmeh/AutoTID,Tagmeh,VisualBasic,false,false,false,0,false,false,false,false +biotransistor/annotTutorial,biotransistor,Python,false,false,false,0,false,false,false,false +MISLgit/constrained-conv-TIFS2018,MISLgit,Python,false,false,false,0,false,false,false,false +xaamin/forge,xaamin,JavaScript,false,false,false,0,false,false,false,false +srisaiyeegharankidnapillai/to-do-list-app-category,srisaiyeegharankidnapillai,Java,false,false,true,0,false,false,false,false +tkkumaravel/CredMgmtSystem,tkkumaravel,PHP,false,false,false,0,false,false,false,false +andrewkey/deep-learning,andrewkey,JupyterNotebook,false,false,false,0,false,false,false,false +kaleem/am-poc,kaleem,HTML,false,false,false,0,false,false,false,false +Gallesio/STklos,Gallesio,C,false,false,false,0,false,false,false,false +arpecop/iztegli,arpecop,HTML,true,false,false,2,false,true,true,false +narokishi/Banking,narokishi,PHP,false,false,false,0,false,false,false,false +fgiraldeau/unnom,fgiraldeau,JavaScript,true,false,false,1,false,true,false,false +valent1ne/Background-Images-Folder,valent1ne,,false,false,false,0,false,false,false,false +tehnokom/siriuso-im-android,tehnokom,Kotlin,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-gitlab,TomasHubelbauer,,false,false,false,0,false,false,false,false +TheQuack45/LocalML,TheQuack45,C#,false,false,false,0,false,false,false,false +rstacruz/devhints-engine,rstacruz,JavaScript,true,false,false,1,false,true,false,false +Naej/LemonSlidEditor,Naej,Java,false,false,false,0,false,false,false,false +iblech/personal-site,iblech,HTML,false,false,false,0,false,false,false,false +Sabbir4hmed/my_Java_code,Sabbir4hmed,Java,false,false,false,0,false,false,false,false +shevtshov/spalah-j2se-base-032018,shevtshov,Java,false,false,false,0,false,false,false,false +binarioetico/flask-ci-demo,binarioetico,Python,true,true,false,2,false,true,true,false +francoisb/scoutinv,francoisb,Ruby,true,false,false,1,false,true,false,false +gecko32/Trinitycore243,gecko32,C++,false,false,false,0,false,false,false,false +amttmg/IMS,amttmg,Vue,false,false,false,0,false,false,false,false +ramseymcgrath/MEMESERVICES,ramseymcgrath,HTML,true,false,false,2,true,false,true,false +apent-norsk-industriverksted/EPLAN-grunndata,apent-norsk-industriverksted,,false,false,false,0,false,false,false,false +teb2klasa/kalkulator,teb2klasa,JavaScript,false,false,false,0,false,false,false,false +vavyskov/web-gulp,vavyskov,HTML,false,false,false,0,false,false,false,false +ClaudioNeiva/poo20181,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +lyzov/backup-role,lyzov,,false,false,false,0,false,false,false,false +maxlambertini/SWNSectorGeneratorApp,maxlambertini,Dart,false,false,false,0,false,false,false,false +hankchanocd/dotfiles,hankchanocd,Shell,false,false,false,0,false,false,false,false +SABIA/Backend,SABIA,Nim,false,false,false,0,false,false,false,false +robarlandson/ssa-jenkins-pipeline,robarlandson,Groovy,false,false,false,0,false,false,false,false +bgjehu/dummy,bgjehu,Ruby,false,false,false,0,false,false,false,false +ViryaOS/aports-dom0,ViryaOS,,false,false,false,0,false,false,false,false +ViryaOS/imagebuilder,ViryaOS,,false,false,false,0,false,false,false,false +lae/java-stack-source,lae,Java,true,false,true,1,true,false,false,false +emelle/editor,emelle,JavaScript,true,false,false,1,false,false,true,false +Foxtrek_64/DemoBot,Foxtrek_64,C#,false,false,false,0,false,false,false,false +sorsasampo/played,sorsasampo,Python,false,true,false,0,false,false,false,false +bukshuk-sci/spongearea,bukshuk-sci,C#,false,false,false,0,false,false,false,false +gammaLab_ProductionEnv/windows_tensorflow,gammaLab_ProductionEnv,,false,false,false,0,false,false,false,false +mtnygard/m2m.munchen,mtnygard,Ruby,true,false,false,3,true,false,true,false +alexulici94/AIMedicalTriage,alexulici94,JavaScript,false,false,false,0,false,false,false,false +gdevops/tuto_ansible,gdevops,Python,true,true,false,1,false,true,false,false +yaffy/bkey.tech,yaffy,HTML,true,false,false,1,false,false,true,false +Wazzaps/spark-kit-pythonbase,Wazzaps,Python,false,true,false,0,false,false,false,false +arcfire/dropbear,arcfire,C,false,false,false,0,false,false,false,false +gdevops/tuto_documentation,gdevops,Python,true,true,false,1,false,true,false,false +gdevops/tuto_databases,gdevops,Python,true,true,false,1,false,true,false,false +gdevops/tuto_git,gdevops,Shell,true,false,false,1,false,true,false,false +chidumennamdi/_posts,chidumennamdi,Shell,false,false,false,0,false,false,false,false +gdevops/tuto_devops,gdevops,Python,true,true,false,1,false,true,false,false +ecruzolivera/eHSM,ecruzolivera,C++,true,false,false,1,false,true,false,false +lkcamp/subtitles,lkcamp,,false,false,false,0,false,false,false,false +whatthedev/dialogue-node-example,whatthedev,C#,false,false,false,0,false,false,false,false +Kelvinyu1117/Koi_Yuujou,Kelvinyu1117,JavaScript,false,false,false,0,false,false,false,false +tconsky/linkedgames,tconsky,,false,false,false,0,false,false,false,false +xpenia/gamedev/UDSGame,xpenia,C++,false,false,false,0,false,false,false,false +marcel-pfeifer/license-system,marcel-pfeifer,PHP,false,false,false,0,false,false,false,false +lheim/docker-nodeRed-pi,lheim,,false,false,false,0,false,false,false,false +dzamlo/gitlab-ci-rust-test,dzamlo,Rust,true,false,false,2,false,true,false,true +CeciliaAlfonso1991/tp1Progra3,CeciliaAlfonso1991,Java,false,false,false,0,false,false,false,false +shy-docker/dnmp,shy-docker,JavaScript,false,false,false,0,false,false,false,false +ralsina/boxes-book,ralsina,HTML,true,false,false,1,false,false,true,false +hopur-21/ClassScheduling,hopur-21,Java,false,false,false,0,false,false,false,false +webdev.sh/cssminifier.com,webdev.sh,CSS,false,false,false,0,false,false,false,false +Deamos/flask-nginx-rtmp-manager,Deamos,HTML,false,false,false,0,false,false,false,false +kadouche/inf3135-Hiver2018-tp3,kadouche,,false,false,false,0,false,false,false,false +johnjawed/ror,johnjawed,Ruby,true,false,false,9,true,true,false,true +VV5/freevonation,VV5,Vue,true,false,false,1,false,true,false,false +SumNeuron/multitags,SumNeuron,JavaScript,true,false,false,1,false,false,true,false +petza/payment-tracker,petza,Java,false,false,true,0,false,false,false,false +thanapoom.isc/SmilePoint,thanapoom.isc,JavaScript,false,false,false,0,false,false,false,false +jsanjuas/spacedrop,jsanjuas,JavaScript,false,false,false,0,false,false,false,false +k.khairulin/music-box,k.khairulin,Java,false,false,true,0,false,false,false,false +gonzoyumo/ci-templates,gonzoyumo,,false,false,false,0,false,false,false,false +everin/gpi-gitlab,everin,HTML,false,false,false,0,false,false,false,false +ViryaOS/gen-kernel-config-patch,ViryaOS,,false,false,false,0,false,false,false,false +ViryaOS/abuild-builder,ViryaOS,,false,false,false,0,false,false,false,false +ViryaOS/abuild-builder-cross-aarch64,ViryaOS,,false,false,false,0,false,false,false,false +greenmonkey6/CLICurver,greenmonkey6,C++,false,false,false,0,false,false,false,false +pixelbrackets/mattermost-poll,pixelbrackets,PHP,false,false,false,0,false,false,false,false +galileoluna/TPSO1,galileoluna,C,false,false,false,0,false,false,false,false +chris125964/wm2018c,chris125964,JavaScript,false,false,false,0,false,false,false,false +ablondin/inf2160-hiv2018-tp2-enonce,ablondin,Shell,false,false,false,0,false,false,false,false +drutopia-platform/drutopia_host,drutopia-platform,Shell,false,false,false,0,false,false,false,false +guicheffer/GetYourPackage,guicheffer,JavaScript,false,false,false,0,false,false,false,false +aos2/aos2.gitlab.io,aos2,HTML,true,false,false,2,false,false,false,false +webdev.sh/javascript-minifier.com,webdev.sh,JavaScript,false,false,false,0,false,false,false,false +yoge1011/gst2,yoge1011,PHP,false,false,false,0,false,false,false,false +ViryaOS/aports-sdk,ViryaOS,,false,false,false,0,false,false,false,false +webprogrammingUniTN/webproject,webprogrammingUniTN,Java,true,false,true,2,false,true,true,false +Graphics3D/MyLittleSynth,Graphics3D,Java,false,false,true,0,false,false,false,false +ASI16CS042/42.8.python_QT,ASI16CS042,,false,false,false,0,false,false,false,false +datrv4/probemon,datrv4,Python,false,true,false,0,false,false,false,false +milosz.galazka/monthcal,milosz.galazka,PHP,false,false,false,0,false,false,false,false +LukeHowellDev/docker-http-redirects,LukeHowellDev,Go,true,false,false,3,true,true,true,false +AGS-DFWG-Web/ASG4,AGS-DFWG-Web,,false,false,false,0,false,false,false,false +Suki/lehrling,Suki,JavaScript,false,false,false,0,false,false,false,false +johnbrown90210/The_Letter,johnbrown90210,JavaScript,false,false,false,0,false,false,false,false +tunv_ebpf/BPFCollector,tunv_ebpf,Python,false,false,false,0,false,false,false,false +DruDro/fashom,DruDro,HTML,false,false,false,0,false,false,false,false +fiot/browser-flask-pi-USB,fiot,JavaScript,false,false,false,0,false,false,false,false +sergey.kabak95/rewand,sergey.kabak95,CSS,false,false,false,0,false,false,false,false +ecea/blender-vse-shortcuts,ecea,Python,false,false,false,0,false,false,false,false +nemux/CVE-2018-8072,nemux,,false,false,false,0,false,false,false,false +bconway/soak.io,bconway,Ruby,false,false,false,0,false,false,false,false +nickdonnelly/from_int,nickdonnelly,Rust,true,false,false,1,false,false,false,false +plisovyi/BME458_final,plisovyi,C++,false,false,false,0,false,false,false,false +BryanQuigley/ScoutPlane,BryanQuigley,Python,true,false,false,1,false,true,false,false +tclavier/jersey-skeleton,tclavier,Java,true,false,true,2,true,true,false,false +arm-hpc/benchmarks/coral-2/havoqgt,arm-hpc,C++,false,false,false,0,false,false,false,false +noyez_examples/diesel_rs_example_1,noyez_examples,Rust,true,false,false,1,true,false,false,false +mech-lang/notebook,mech-lang,TypeScript,true,false,false,1,false,true,false,false +lorranpego/GeocoderLaravel,lorranpego,PHP,false,false,false,0,false,false,false,false +nitheeshks91/women-project-android,nitheeshks91,Java,false,false,false,0,false,false,false,false +gdevops/tuto_ides,gdevops,Python,true,true,false,1,false,true,false,false +TomasHubelbauer/bloggo-cra,TomasHubelbauer,,false,false,false,0,false,false,false,false +libgit2/libgit2,libgit2,C,false,false,false,0,false,false,false,false +slcu/teamHJ/Costanza,slcu,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-gyp,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-nlp,TomasHubelbauer,,false,false,false,0,false,false,false,false +solaslin/MyLeetCode,solaslin,C++,false,false,false,0,false,false,false,false +protective-h2020-eu/enrichment/TI-trust/trustmodule,protective-h2020-eu,Python,false,true,false,0,false,false,false,false +protective-h2020-eu/enrichment/TI-trust/protective-trustmodule,protective-h2020-eu,Python,false,false,false,0,false,false,false,false +norman.link/flow,norman.link,C++,false,false,false,0,false,false,false,false +Redsamuri/samuri,Redsamuri,,true,false,false,1,false,true,false,false +bsarda/go-customlib,bsarda,Go,false,false,false,0,false,false,false,false +kenjiuno/khkh_xldM,kenjiuno,C#,false,false,false,0,false,false,false,false +JFT/BT-Deps,JFT,CMake,true,false,false,4,true,true,false,true +rhbayuprabowo/rhbayuprabowo.gitlab.io,rhbayuprabowo,HTML,true,false,false,1,false,false,true,false +rhbayuprabowo/summy,rhbayuprabowo,VisualBasic,false,false,false,0,false,false,false,false +slowfish/pdf2html2json,slowfish,HTML,false,false,true,0,false,false,false,false +bemote/bemote,bemote,,false,false,false,0,false,false,false,false +eic/ejana,eic,C++,true,false,false,1,false,true,false,false +hoangkhanhv2/Assigment_AnNinhMang,hoangkhanhv2,Java,false,false,false,0,false,false,false,false +rumpel_freecodecamp/dwap_Nightlife_Coordination_App,rumpel_freecodecamp,JavaScript,false,false,false,0,false,false,false,false +dark0rbit/website,dark0rbit,PHP,false,false,false,0,false,false,false,false +drewgle/jira-to-gitlab-issues,drewgle,TypeScript,false,false,false,0,false,false,false,false +Shauni/lp_mulots_android,Shauni,Kotlin,false,false,false,0,false,false,false,false +rdspry/StarterSampleForMochaChaiReact16,rdspry,JavaScript,false,false,false,0,false,false,false,false +goranf/ARCH-COMP,goranf,Matlab,false,false,false,0,false,false,false,false +ElenQ/fairwire,ElenQ,PHP,false,false,false,0,false,false,false,false +serpro/fatiador,serpro,Java,true,false,true,3,false,true,false,true +oegam/ebmg-integration,oegam,,false,false,false,0,false,false,false,false +flirt/flirt.gitlab.io,flirt,HTML,true,false,false,1,false,false,true,false +mrvik/listas,mrvik,JavaScript,true,false,false,3,true,true,true,false +richardjortega/iot-310a-sp18-slides,richardjortega,,false,false,false,0,false,false,false,false +bpixel-academy/flowable,bpixel-academy,Java,false,false,true,0,false,false,false,false +bokay/jrnl,bokay,Elixir,false,false,false,0,false,false,false,false +sorsasampo/git-sensible,sorsasampo,,false,false,false,0,false,false,false,false +ramseymcgrath/memeservices-kubernetes,ramseymcgrath,,false,false,false,0,false,false,false,false +andrii.stefanyshyn/back_to_the_marshrutka,andrii.stefanyshyn,Kotlin,false,false,false,0,false,false,false,false +acqrdeveloper/portfolioProjects,acqrdeveloper,,false,false,false,0,false,false,false,false +djarif001/index.php,djarif001,,false,false,false,0,false,false,false,false +gdevops/tuto_kubernetes,gdevops,Python,true,true,false,1,false,true,false,false +TomasHubelbauer/bloggo-vfd,TomasHubelbauer,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-gopro,TomasHubelbauer,,false,false,false,0,false,false,false,false +sunetraalex/harp-project-cookiecutter,sunetraalex,HTML,false,false,false,0,false,false,false,false +doerfli/reeper,doerfli,Ruby,true,false,false,2,true,true,false,false +KevinMGranger/emojofy,KevinMGranger,Rust,false,false,false,0,false,false,false,false +ntninja/electroncash-flatpak,ntninja,Shell,false,false,false,0,false,false,false,false +kotlin-lessons/lesson1,kotlin-lessons,Kotlin,false,false,false,0,false,false,false,false +eliseos/elysion,eliseos,TypeScript,false,false,false,0,false,false,false,false +barborik.tom25/its,barborik.tom25,Gherkin,false,false,false,0,false,false,false,false +ahangarha/telegram-group-sanetizer-bot,ahangarha,Python,false,true,false,0,false,false,false,false +spare-time-demos/intime2,spare-time-demos,TypeScript,true,false,false,4,false,true,true,false +Teamexe/Artificial-intelligence-workshop,Teamexe,C++,false,false,false,0,false,false,false,false +upsidedownserver/ud,upsidedownserver,C#,false,false,false,0,false,false,false,false +reak-opensource/phalcon-boilerplate,reak-opensource,PHP,false,false,false,0,false,false,false,false +_jmgg/_dotfiles,_jmgg,Lua,false,false,false,0,false,false,false,false +garywill/pidgin-otr,garywill,C,false,false,false,0,false,false,false,false +horzadome/joomla-extensions,horzadome,PHP,false,false,false,0,false,false,false,false +bearforceii/singleplayer,bearforceii,Python,false,false,false,0,false,false,false,false +dhiles/ng-formly-nativescript,dhiles,TypeScript,false,false,false,0,false,false,false,false +tarek-nawara/simple-vm,tarek-nawara,C,false,false,false,0,false,false,false,false +kylebakerio/hexoblog,kylebakerio,,false,false,false,0,false,false,false,false +to1ne/use-package-hydra,to1ne,EmacsLisp,true,false,false,1,false,true,false,false +to1ne/gross.css,to1ne,HTML,true,false,false,2,false,true,true,false +dark0rbit/scripts,dark0rbit,Go,false,false,false,0,false,false,false,false +fogbound/extraction,fogbound,C#,false,false,false,0,false,false,false,false +falconlogic/baseline,falconlogic,JavaScript,false,false,false,0,false,false,false,false +dark0rbit/laravel-lang,dark0rbit,PHP,false,false,false,0,false,false,false,false +habardeen/labyrinth,habardeen,Python,false,false,false,0,false,false,false,false +ricmaco/dotfiles,ricmaco,,false,false,false,0,false,false,false,false +ricmaco/ricmaco.gitlab.io,ricmaco,HTML,true,false,false,1,false,false,true,false +wodadehencou/env,wodadehencou,JavaScript,false,false,false,0,false,false,false,false +RyzonEnder/GroupModerator,RyzonEnder,,false,false,false,0,false,false,false,false +xraynaud/bandagedcubes_compendium,xraynaud,R,false,false,false,0,false,false,false,false +VictorLamoine/arduino_stm32_ci_test,VictorLamoine,C++,true,false,false,1,true,false,false,false +tmux-python/libtmux,tmux-python,Python,false,false,false,0,false,false,false,false +eperezp1990/jclal-text-examples,eperezp1990,Java,false,false,false,0,false,false,false,false +HarishMSD17/8051Simulator,HarishMSD17,Java,false,false,false,0,false,false,false,false +pramirez1993/ProyectoIA,pramirez1993,C#,false,false,false,0,false,false,false,false +webotones/colab,webotones,,false,false,false,0,false,false,false,false +triplewhy/RRCS,triplewhy,C#,true,false,false,3,true,true,true,false +thiagodebastos_study/eng101x-eportfolio,thiagodebastos_study,JavaScript,true,false,false,1,false,true,false,false +lxkl/lec-basic-math,lxkl,TeX,true,false,false,1,false,true,false,false +raj0929/IPTV_Android_app,raj0929,Java,false,false,false,0,false,false,false,false +dnaf/rEFInd-minimal-black-flat,dnaf,,false,false,false,0,false,false,false,false +cougswin1/kickstarter,cougswin1,JavaScript,false,false,false,0,false,false,false,false +suryaabhi/si-automated,suryaabhi,TypeScript,false,false,false,0,false,false,false,false +louisq/substance,louisq,JavaScript,true,false,false,2,false,false,false,false +regen-network/regen-ledger,regen-network,Go,true,false,false,2,true,true,false,false +TomasHubelbauer/exercising,TomasHubelbauer,,false,false,false,0,false,false,false,false +markanesko/OOS,markanesko,C#,false,false,false,0,false,false,false,false +Erik.Lundstedt/erik.lundstedt.gitlab.io,Erik.Lundstedt,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-nginx,TomasHubelbauer,,false,false,false,0,false,false,false,false +joprotin/symfony/fosuser-implementation-sf3,joprotin,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-omnia,TomasHubelbauer,,false,false,false,0,false,false,false,false +miraviolet/click-bait-ninja,miraviolet,CSS,false,false,false,0,false,false,false,false +simbas/portal,simbas,TypeScript,true,false,false,1,true,false,false,false +machadoluismendes/Comparator,machadoluismendes,Java,false,false,false,0,false,false,false,false +mehalter/mehalter.gitlab.io,mehalter,HTML,false,false,false,0,false,false,false,false +mehalter/mla-latex,mehalter,TeX,false,false,false,0,false,false,false,false +norman.link/thirdparty,norman.link,Python,false,false,false,0,false,false,false,false +LineageOS/charter,LineageOS,,false,false,false,0,false,false,false,false +LineageOS/hudson,LineageOS,,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-pwa,TomasHubelbauer,,false,false,false,0,false,false,false,false +helinl/Gallery,helinl,C#,false,false,false,0,false,false,false,false +LolloneS/Tesi-Triennale,LolloneS,TeX,true,false,false,1,true,false,false,false +truonghoangpham123/SecretCamera,truonghoangpham123,Swift,false,false,false,0,false,false,false,false +bonobows/placebo,bonobows,PHP,true,false,false,2,true,true,false,false +reinboarang/scheme-cr,reinboarang,Crystal,false,false,false,0,false,false,false,false +albanninou/voxelengine,albanninou,C++,false,false,false,0,false,false,false,false +solarcloud7/DiscordBot,solarcloud7,C#,false,false,false,0,false,false,false,false +Wezzer/android-demo-project,Wezzer,Java,false,false,false,0,false,false,false,false +asish11/ABCSocialNetwork,asish11,Java,false,false,true,0,false,false,false,false +costar-astrology/freer-catching,costar-astrology,Haskell,false,false,false,0,false,false,false,false +PYVIE2018/SCIPYWOMEN,PYVIE2018,JupyterNotebook,false,false,false,0,false,false,false,false +chameleoid/telepathy/web,chameleoid,JavaScript,false,false,false,0,false,false,false,false +chameleoid/telepathy/ui,chameleoid,TypeScript,false,false,false,0,false,false,false,false +KieranDevvs/innova,KieranDevvs,Java,false,false,false,0,false,false,false,false +ShashwatNigam99/IT2PROJECT,ShashwatNigam99,Python,false,true,false,0,false,false,false,false +khangtd.09/cjs-devops-exercise,khangtd.09,,false,false,false,0,false,false,false,false +vali-it-201804/vali-it-webapp,vali-it-201804,Java,false,false,true,0,false,false,false,false +KudProject/kernel_xiaomi_msm8953,KudProject,C,false,false,false,0,false,false,false,false +limner/bank-tornadowebserver,limner,Python,false,false,false,0,false,false,false,false +MarcinMozejko/keras-tutorial,MarcinMozejko,JupyterNotebook,false,false,false,0,false,false,false,false +teonite/inspectr-dashboard,teonite,JavaScript,true,false,false,1,true,false,false,false +aplevich/dpic,aplevich,C,false,false,false,0,false,false,false,false +mrc_es/gae_gen,mrc_es,Python,false,true,false,0,false,false,false,false +ph_sjn/disc2work,ph_sjn,HTML,false,false,false,0,false,false,false,false +milosz.galazka/unsplashdoku,milosz.galazka,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-macos,TomasHubelbauer,,false,false,false,0,false,false,false,false +robertstephan789/quickbooks-enterprise-support,robertstephan789,,false,false,false,0,false,false,false,false +cpantojar/heroesapp,cpantojar,TypeScript,false,false,false,0,false,false,false,false +CourtneyFarnsworth/QuizMe,CourtneyFarnsworth,JavaScript,false,false,false,0,false,false,false,false +h2t/kit-mseg/mseg,h2t,Shell,false,false,false,0,false,false,false,false +integer32llc/rustbeltrust2018,integer32llc,CSS,true,false,false,1,false,false,true,false +poornima.thirunavukkarasu/kafka-plugin,poornima.thirunavukkarasu,Java,false,false,true,0,false,false,false,false +davidbittner/raur,davidbittner,Rust,true,false,false,1,false,true,false,false +maetshju/LexicalCharacteristics.jl,maetshju,Julia,true,false,false,1,false,true,false,false +MCSH/NSFW_bot,MCSH,JavaScript,false,false,false,0,false,false,false,false +Luky/devguide,Luky,,false,false,false,0,false,false,false,false +ribomation-courses/edap/edap-project-2018-may,ribomation-courses,,false,false,false,0,false,false,false,false +pilloPl/sfi-credit-cards,pilloPl,Java,false,false,true,0,false,false,false,false +gitlab-org/gitlab-pages-proto,gitlab-org,Ruby,true,false,false,1,false,true,false,false +johnbrown90210/protoparser.js,johnbrown90210,HTML,false,false,false,0,false,false,false,false +rh-emea-ssa-fuse-tutorial/fis-rest-composite,rh-emea-ssa-fuse-tutorial,Java,false,false,false,0,false,false,false,false +chongkong/hello-appointment,chongkong,Python,false,true,false,0,false,false,false,false +ale5000-git/tingle,ale5000-git,Python,false,false,false,0,false,false,false,false +poubus/poubus_com,poubus,Python,false,false,false,0,false,false,false,false +AVranesic/site-ressource-memoire,AVranesic,PHP,false,false,false,0,false,false,false,false +singulared/blog,singulared,HTML,true,false,false,1,true,false,false,false +YARIK228/JuniotIT,YARIK228,Python,false,false,false,0,false,false,false,false +close-pi2/app,close-pi2,JavaScript,false,false,false,0,false,false,false,false +mdzida/Reddit_Java_Selenium_Cucumber,mdzida,Java,false,false,true,0,false,false,false,false +e-sterling/cve-2018-7248,e-sterling,Python,false,true,false,0,false,false,false,false +creditlinks/demo_creditlinks,creditlinks,,false,false,false,0,false,false,false,false +thetechnick/print3r,thetechnick,Go,false,false,false,0,false,false,false,false +kelal/_dev/gerami-demo,kelal,JavaScript,false,false,false,0,false,false,false,false +h2t/kit-mseg/core,h2t,C++,false,false,false,0,false,false,false,false +h2t/kit-mseg/core-ice,h2t,CMake,false,false,false,0,false,false,false,false +h2t/kit-mseg/pli-cpp,h2t,C++,false,false,false,0,false,false,false,false +h2t/kit-mseg/pli-java,h2t,Java,false,false,false,0,false,false,false,false +h2t/kit-mseg/pli-python,h2t,Python,false,false,false,0,false,false,false,false +h2t/kit-mseg/pli-matlab,h2t,Python,false,false,false,0,false,false,false,false +h2t/kit-mseg/mseg-tools,h2t,Python,false,false,false,0,false,false,false,false +h2t/kit-mseg/datasets,h2t,,false,false,false,0,false,false,false,false +h2t/kit-mseg/documentation,h2t,Python,false,false,false,0,false,false,false,false +KDemeul/nebula,KDemeul,Python,true,true,false,3,true,true,true,false +DylanGriffith/dylans-home,DylanGriffith,HTML,true,false,false,1,false,true,false,false +kentarospin98/humanscape-in,kentarospin98,CSS,false,false,false,0,false,false,false,false +micro5k/microg-unofficial-installer,micro5k,Shell,true,false,false,1,true,false,false,false +micro5k/google-sync-addon,micro5k,Shell,true,false,false,1,true,false,false,false +leipert-projects/gitlab-history,leipert-projects,JavaScript,true,false,false,2,true,false,true,false +strategic.zone/docker-nginx-proxy-ssl,strategic.zone,,false,false,false,0,false,false,false,false +OrangeFox/Manifest,OrangeFox,,false,false,false,0,false,false,false,false +ale5000-git/pycompatlayer,ale5000-git,Python,false,false,false,0,false,false,false,false +divyang44811/chatbot-app,divyang44811,JavaScript,false,false,false,0,false,false,false,false +filip.wiechec/dotfiles,filip.wiechec,Shell,false,false,false,0,false,false,false,false +thefreebird777/MovieReview,thefreebird777,HTML,false,false,false,0,false,false,false,false +gitlab-org/security-products/release,gitlab-org,Ruby,true,false,false,2,false,true,false,false +painlessMesh/ESPUnify,painlessMesh,C,true,false,false,1,false,true,false,false +ckhurewa/qhist,ckhurewa,Python,true,true,false,2,false,true,true,false +aguslr/aguslr.gitlab.io,aguslr,HTML,true,false,false,1,false,false,true,false +marijamilcic/ITKonekt,marijamilcic,Java,false,false,true,0,false,false,false,false +MadLittleMods/gitlab-ci-access-main-container-from-service-container,MadLittleMods,JavaScript,true,false,false,2,true,true,false,false +divyang44811/AttritionDemo,divyang44811,R,false,false,false,0,false,false,false,false +Debugg/industrie_revolution,Debugg,,false,false,false,0,false,false,false,false +agomezp/Libreria,agomezp,C#,false,false,false,0,false,false,false,false +daihyun99/GitGround,daihyun99,,false,false,false,0,false,false,false,false +smc/mlmorph,smc,Lex,true,false,false,2,true,true,false,false +coala/bears/non-free-linter-bears,coala,,false,false,false,0,false,false,false,false +pedrohjordao/rs-lox,pedrohjordao,Rust,false,false,false,0,false,false,false,false +hunandika/lumen_api-v5.4,hunandika,PHP,false,false,false,0,false,false,false,false +libreforks/FastHub-Libre,libreforks,Java,false,false,false,0,false,false,false,false +brayanZavala/VIDEO_CHAT_NodeJS,brayanZavala,JavaScript,false,false,false,0,false,false,false,false +sliptype/smartcert,sliptype,JavaScript,false,false,false,0,false,false,false,false +Majd/Airline-Sentiment-Analysis-Twitter,Majd,JupyterNotebook,false,false,false,0,false,false,false,false +fsanches/DVNO-Remake,fsanches,OpenSCAD,false,false,false,0,false,false,false,false +tehnokom/documents/televido,tehnokom,Python,false,false,false,0,false,false,false,false +nifty-site-manager/nsm,nifty-site-manager,C++,false,false,false,0,false,false,false,false +gdevops/config,gdevops,Python,true,true,false,1,false,true,false,false +smet1/new_project_1,smet1,,false,false,false,0,false,false,false,false +kurianbenoy/Curriculum,kurianbenoy,Java,false,false,false,0,false,false,false,false +GithubProxy/pbrt-v3,GithubProxy,C++,false,false,false,0,false,false,false,false +wraugh/defphp,wraugh,PHP,false,false,false,0,false,false,false,false +yilmzfurkan/my-awesome-project,yilmzfurkan,,false,false,false,0,false,false,false,false +moveto-io/wunderlist-to-gitlab,moveto-io,JavaScript,false,false,false,0,false,false,false,false +mephi-ivt/teravt-lab-robot,mephi-ivt,Python,false,false,false,0,false,false,false,false +trinhvietnambk/docs-api,trinhvietnambk,TypeScript,false,false,false,0,false,false,false,false +nickdonnelly/yogi,nickdonnelly,Crystal,true,false,false,2,false,true,false,false +lyrahgames/nobody,lyrahgames,CMake,false,false,false,0,false,false,false,false +tomderudder/CV,tomderudder,HTML,false,false,false,0,false,false,false,false +float.cf/landing,float.cf,CSS,true,false,false,2,true,false,true,false +jgkamat/qutebrowser,jgkamat,Python,false,true,false,0,false,false,false,false +IzzanNurdin/cis-encryption-file,IzzanNurdin,Java,false,false,false,0,false,false,false,false +chromaso/mazochina-mirror-crawl,chromaso,JavaScript,false,false,false,0,false,false,false,false +Raytlty/LeetCode-Review,Raytlty,C++,false,false,false,0,false,false,false,false +AntMar/instaposta,AntMar,C#,false,false,false,0,false,false,false,false +Abhinickz/winpath,Abhinickz,Rust,false,false,false,0,false,false,false,false +arpancj/admin-css,arpancj,CSS,false,false,false,0,false,false,false,false +solovev.george/mvvm-studio-template,solovev.george,FreeMarker,false,false,false,0,false,false,false,false +Silvers_Gw2/Stats_Frontend,Silvers_Gw2,JavaScript,true,false,false,3,true,true,true,false +concrete-angelo-grossi/spring-petclinic-microservices,concrete-angelo-grossi,Java,false,false,false,0,false,false,false,false +Campus-eV/Satzung,Campus-eV,,false,false,false,0,false,false,false,false +larsjarred9/Elementnation,larsjarred9,Java,false,false,false,0,false,false,false,false +samanthaAlison/cordova-plugin-pocketsphinx,samanthaAlison,C++,false,false,false,0,false,false,false,false +erickcalvopina/NuevasTecnicas,erickcalvopina,,false,false,false,0,false,false,false,false +nnadisic/skypatterns-uncertain-tensors,nnadisic,C++,false,false,false,0,false,false,false,false +nicofirst1/nicolo_brandizzi_1643869_nlp18hw1,nicofirst1,Python,false,true,false,0,false,false,false,false +Beksultan/StarWars,Beksultan,Java,true,false,true,2,true,true,false,false +jjatria/Alien-LuaJIT,jjatria,Perl,false,false,false,0,false,false,false,false +erickcalvopina/NTCompras,erickcalvopina,PHP,false,false,false,0,false,false,false,false +mrloveguru/sbpy3,mrloveguru,Python,false,false,false,0,false,false,false,false +AbdellatifSoussi/Echiquier,AbdellatifSoussi,Java,false,false,false,0,false,false,false,false +caedes/workspace,caedes,JavaScript,true,false,false,1,false,true,false,false +officerebel/django_todo,officerebel,JavaScript,false,false,false,0,false,false,false,false +marbu/pylatest-copr,marbu,,true,false,false,1,false,true,false,false +YanZhao1/gitlab_test,YanZhao1,,false,false,false,0,false,false,false,false +citizenFleet/serverless/findBills,citizenFleet,Go,false,false,false,0,false,false,false,false +NickHoB/oaibbu_script,NickHoB,Python,false,false,false,0,false,false,false,false +unylmz/CICD-tst,unylmz,HTML,false,false,true,0,false,false,false,false +cynovg/WG-API,cynovg,Perl,true,false,false,1,false,true,false,false +raimo/RaimoValiIT,raimo,Java,false,false,false,0,false,false,false,false +DevOpsExpert/MiTE,DevOpsExpert,Shell,false,false,false,0,false,false,false,false +Creased/cve-2018-0492,Creased,C,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-me,TomasHubelbauer,,false,false,false,0,false,false,false,false +cloudamatic/mu_demo_platform,cloudamatic,Ruby,true,false,false,3,false,false,false,false +slcu/teamHJ/henrik_aahl/toCategorise,slcu,Python,false,false,false,0,false,false,false,false +monoc44/ns-beans,monoc44,Java,true,false,false,2,true,true,false,false +TomasHubelbauer/isds-puppeteer,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +sibbr/ala-install,sibbr,HTML,false,false,false,0,false,false,false,false +husnain062/php-Jenkins,husnain062,PHP,false,false,false,0,false,false,false,false +Scooby-Dooby-Doo/scan-and-upload-to-artifactory,Scooby-Dooby-Doo,JavaScript,false,false,false,0,false,false,false,false +sujatha123/Sujatha,sujatha123,,false,false,false,0,false,false,false,false +Reimitch/glatex,Reimitch,Python,false,false,false,0,false,false,false,false +falloonalan/MarsRoverProblem,falloonalan,JavaScript,true,false,false,1,false,true,false,false +tskiba/Home,tskiba,JavaScript,false,false,false,0,false,false,false,false +dzaporozhets/test-jupyter,dzaporozhets,JupyterNotebook,false,false,false,0,false,false,false,false +appagile-workshop-examples/ex-atlassian,appagile-workshop-examples,Shell,false,false,false,0,false,false,false,false +LinZap/mahjong_scoreboard,LinZap,JavaScript,false,false,false,0,false,false,false,false +svenhaak/WMTippSpiel,svenhaak,JavaScript,false,false,false,0,false,false,false,false +arcfire/nginx,arcfire,C,false,false,false,0,false,false,false,false +denkmal/archive/denkmal-2014,denkmal,PHP,false,false,false,0,false,false,false,false +aristotelisch/ergasia-python,aristotelisch,Python,false,false,false,0,false,false,false,false +dagerikhl/watcher-in-the-cloud,dagerikhl,TypeScript,true,false,false,1,true,false,false,false +montrealist/box-api-wrapper-demo,montrealist,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/agenda,TomasHubelbauer,TypeScript,false,false,false,0,false,false,false,false +cuddandr/xsLLhFitter,cuddandr,C++,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo,TomasHubelbauer,HTML,false,false,false,0,false,false,false,false +robotmachine/PushText,robotmachine,Python,false,false,false,0,false,false,false,false +novawebdevelopment/standards,novawebdevelopment,,false,false,false,0,false,false,false,false +nuest/rticle-copernicus-demo,nuest,TeX,true,false,false,1,false,false,true,false +madeny/lhttps,madeny,PHP,false,false,false,0,false,false,false,false +commercito/dadata,commercito,PHP,false,false,false,0,false,false,false,false +radenrap/aci-hmvctrik,radenrap,HTML,false,false,false,0,false,false,false,false +LuckyStandard/LuckySTD,LuckyStandard,Makefile,true,false,false,1,true,false,false,false +Kirner/c-tetris,Kirner,C,false,false,false,0,false,false,false,false +c3d/make-it-quick,c3d,Makefile,true,false,false,1,false,true,false,false +daftaupe/peertube-rpm,daftaupe,,false,false,false,0,false,false,false,false +julia.bamoura/Sharecalendar,julia.bamoura,,false,false,false,0,false,false,false,false +Juank01693/Proyecto_GPS,Juank01693,PHP,false,false,false,0,false,false,false,false +theodofilius/puskesmas,theodofilius,Java,false,false,false,0,false,false,false,false +Vaishnavibobde/Apna_Saamaan,Vaishnavibobde,JavaScript,false,false,false,0,false,false,false,false +bhattsameer/Pyblock,bhattsameer,Python,false,true,false,0,false,false,false,false +agjata/InformaticaTeorica,agjata,,false,false,false,0,false,false,false,false +bhattsameer/Whatsapp-Bomber,bhattsameer,Python,false,false,false,0,false,false,false,false +jesusalva/sistema-contabil-basico,jesusalva,PHP,true,false,false,1,false,true,false,false +muuankarski/linux,muuankarski,Shell,false,false,false,0,false,false,false,false +dnk/RightClicker,dnk,C#,false,false,false,0,false,false,false,false +RepositorioDeCultura/Tier1,RepositorioDeCultura,QML,true,false,false,2,true,true,false,false +gibberfish/diaspora-scripts,gibberfish,Python,false,true,false,0,false,false,false,false +vmorenomarin/breeze-blur,vmorenomarin,,false,false,false,0,false,false,false,false +manrok96/My_first_project_on_Unity,manrok96,C#,false,false,false,0,false,false,false,false +denkmal/denkmal-website-admin,denkmal,,true,false,false,2,false,true,true,false +denkmal/denkmal-api,denkmal,TypeScript,true,false,false,2,true,false,false,true +adus159/praca-zaliczeniowa-kalkulator,adus159,,false,false,false,0,false,false,false,false +zeesy/dEARdiary,zeesy,JavaScript,true,false,false,2,false,true,false,false +simplematterpublic/streamliner,simplematterpublic,Java,false,false,true,0,false,false,false,false +jmfallecker/StandardChess.Model,jmfallecker,C#,false,false,false,0,false,false,false,false +kashell/lsp-kawa,kashell,EmacsLisp,false,false,false,0,false,false,false,false +waylon531/lando,waylon531,Rust,true,false,false,3,true,true,true,false +alex.tsarkov/geoip,alex.tsarkov,PHP,false,false,false,0,false,false,false,false +frnck/kotlin-gradle-eclipse,frnck,Kotlin,true,false,false,2,true,true,false,false +eyeo/websites/abp-cws,eyeo,,false,false,false,0,false,false,false,false +jysandilya/demense,jysandilya,Clojure,false,false,false,0,false,false,false,false +kaustav.sanyal/Test_Project,kaustav.sanyal,Go,false,false,false,0,false,false,false,false +matejv/IS-DigiRacun,matejv,C#,false,false,false,0,false,false,false,false +officerebel/weather_App,officerebel,Python,false,false,false,0,false,false,false,false +domingo140372/ApiLaravel,domingo140372,PHP,false,false,false,0,false,false,false,false +mickaelw/henri_potier,mickaelw,TypeScript,true,false,false,1,false,false,false,false +ketiko/art,ketiko,Ruby,true,false,false,1,false,true,false,false +ridermansb/maxmilhas_interview_test,ridermansb,JavaScript,false,false,false,0,false,false,false,false +tomderudder/client,tomderudder,C,false,false,false,0,false,false,false,false +tomderudder/software_unity,tomderudder,ASP,false,false,false,0,false,false,false,false +devnull-42/alpine-dc,devnull-42,Shell,false,false,false,0,false,false,false,false +libredocker/docker-gnuradio,libredocker,,false,false,false,0,false,false,false,false +lalitamarmika88/MyFinance,lalitamarmika88,Java,false,false,false,0,false,false,false,false +siggame/Joueur.cpp,siggame,C++,false,false,false,0,false,false,false,false +mikhailyankelevich/ClothesDatabase,mikhailyankelevich,C++,false,false,false,0,false,false,false,false +fuldaros/Lawnchair2,fuldaros,Java,false,false,false,0,false,false,false,false +frenck/addon-example,frenck,Shell,false,false,false,0,false,false,false,false +tjian-darzacq-lab/SPT_LocAndTrack,tjian-darzacq-lab,Matlab,false,false,false,0,false,false,false,false +n0vember/nocloud,n0vember,Shell,false,false,false,0,false,false,false,false +williamD/williamdonval.com,williamD,JavaScript,false,false,false,0,false,false,false,false +Crawron/wavedistrict-icons,Crawron,,false,false,false,0,false,false,false,false +chongkong/hello-appointment-front,chongkong,TypeScript,false,false,false,0,false,false,false,false +pham-anh/working_time,pham-anh,PHP,false,false,false,0,false,false,false,false +alt-ssb/go-server,alt-ssb,Go,false,false,false,0,false,false,false,false +robteaw/Project_Practice,robteaw,Ruby,false,false,false,0,false,false,false,false +dmitrz/dmitrz.gitlab.io,dmitrz,HTML,true,false,false,1,false,true,false,false +Kissaki/docker-hugo,Kissaki,,true,false,false,2,false,true,true,false +PluginShell/ezTeX,PluginShell,XSLT,false,false,false,0,false,false,false,false +Mayank-Nagpurkar/Movie-Ticket-Booking,Mayank-Nagpurkar,PHP,false,false,false,0,false,false,false,false +nathanfaucett/rs-gmath,nathanfaucett,Rust,true,false,false,1,false,true,false,false +TomasHubelbauer/sdp-ice-qr-pack,TomasHubelbauer,,false,false,false,0,false,false,false,false +mrbig/dotfiles,mrbig,EmacsLisp,false,false,false,0,false,false,false,false +OwlGamingCommunity/docs,OwlGamingCommunity,Python,false,true,false,0,false,false,false,false +milosz.galazka/nextcloud-bookmarks-api-backup,milosz.galazka,Shell,false,false,false,0,false,false,false,false +AGEEI-CdP/SMS,AGEEI-CdP,,false,false,false,0,false,false,false,false +ribomation-courses/edap/cxx-basics-5days,ribomation-courses,C++,false,false,false,0,false,false,false,false +ribomation-courses/edap/git-basics,ribomation-courses,,false,false,false,0,false,false,false,false +ribomation-courses/edap/cxx-unit-tests,ribomation-courses,C++,false,false,false,0,false,false,false,false +ribomation-courses/edap/cxx-threads,ribomation-courses,C++,false,false,false,0,false,false,false,false +ribomation-courses/edap/cxx-systems-programming,ribomation-courses,C,false,false,false,0,false,false,false,false +vladimir-remar/Gandhi.Reload,vladimir-remar,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/gitlab-reactos,TomasHubelbauer,,false,false,false,0,false,false,false,false +mamirul47/Secprogphp,mamirul47,PHP,false,false,false,0,false,false,false,false +chris_nada/astro_dm,chris_nada,C++,false,false,false,0,false,false,false,false +mdanil/flightgear-autopush,mdanil,,false,false,false,0,false,false,false,false +Cacophony/sandbox,Cacophony,,false,false,false,0,false,false,false,false +wpdesk/wp-autoloader,wpdesk,PHP,false,false,false,0,false,false,false,false +wpdesk/wp-basic-requirements,wpdesk,PHP,true,false,false,3,false,true,false,false +MMuArFF/duplicator,MMuArFF,PHP,false,false,false,0,false,false,false,false +fkrull/debian-ostree-compose,fkrull,Shell,false,false,false,0,false,false,false,false +fkrull/deploy-ostree,fkrull,Python,true,false,false,5,true,true,false,true +Niviti/DjangoRestApi,Niviti,Python,false,false,false,0,false,false,false,false +Elypia/Commandler,Elypia,Java,true,false,false,3,true,true,true,false +qalabs/blog/junit5-selenium-gradle-template,qalabs,Java,false,false,false,0,false,false,false,false +qalabs/blog/junit5-selenium-todomvc-example,qalabs,Java,false,false,false,0,false,false,false,false +costrouc/chrisostrouchov.com-polymer-static,costrouc,HTML,true,false,false,3,false,false,true,false +andrewzah/amaranth,andrewzah,Crystal,false,false,false,0,false,false,false,false +MakerTim/FunctionalMaker,MakerTim,Java,true,false,false,2,false,true,true,false +Cacophony/AWS-CLI,Cacophony,Shell,true,false,false,1,true,false,false,false +casievers/NEMD_LAMMPS_Tutorial,casievers,Shell,false,false,false,0,false,false,false,false +ericapisani/guelph-conf-2018,ericapisani,JavaScript,true,false,false,2,false,true,true,false +jgon6/allen_county_address_import,jgon6,HTML,false,false,false,0,false,false,false,false +thudoduc/realtime-chat,thudoduc,PHP,false,false,false,0,false,false,false,false +thudoduc/StudentManagerByPHP,thudoduc,CSS,false,false,false,0,false,false,false,false +MascoteRPi/Rig-Rebooter,MascoteRPi,Go,false,false,false,0,false,false,false,false +guill/docker-tiki,guill,,false,false,false,0,false,false,false,false +anton.koro/testing-html-artifacts,anton.koro,HTML,true,false,false,1,false,false,false,false +DimitriDnt/M2105_PROJET,DimitriDnt,PHP,false,false,false,0,false,false,false,false +gitlab-examples/security/security-reports,gitlab-examples,Java,true,false,false,1,false,true,false,false +Horyus/vortex/vortex,Horyus,TypeScript,false,false,false,0,false,false,false,false +schluss/qr-app,schluss,JavaScript,false,false,false,0,false,false,false,false +luzzu-lab/kurrent,luzzu-lab,Scala,false,false,false,0,false,false,false,false +disastor/gitlab-cucumber-selenium-ci-test-setup,disastor,Gherkin,true,false,false,1,false,true,false,false +hboumedjirek/test02,hboumedjirek,,false,false,false,0,false,false,false,false +galacteek/galacteek,galacteek,Python,false,true,false,0,false,false,false,false +VentureNetwork/VentureBot,VentureNetwork,Java,false,false,true,0,false,false,false,false +e271/parity-poa-network,e271,,false,false,false,0,false,false,false,false +klaglu/dinner-warrior,klaglu,Java,false,false,false,0,false,false,false,false +soa-labs/2018-3,soa-labs,Java,false,false,false,0,false,false,false,false +Breuxi/Alois,Breuxi,Python,false,true,false,0,false,false,false,false +Cacophony/dhelpers,Cacophony,Go,true,false,false,1,false,true,false,false +StellarStorm/NumpyScan,StellarStorm,Python,false,false,false,0,false,false,false,false +mjleitch/maxprime,mjleitch,CSS,false,false,false,0,false,false,false,false +autonomic-roles/backups,autonomic-roles,Shell,false,false,false,0,false,false,false,false +flectra-hq/documentation-user,flectra-hq,CSS,false,false,false,0,false,false,false,false +JaredTan95/k12,JaredTan95,Java,false,false,false,0,false,false,false,false +xusong19960424/global_cnn,xusong19960424,Python,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-chrome,TomasHubelbauer,HTML,false,false,false,0,false,false,false,false +TonyW/Project-Catan,TonyW,Java,false,false,false,0,false,false,false,false +thudoduc/point-reminder,thudoduc,PHP,false,false,false,0,false,false,false,false +hau0004f/shared-ci-scripts,hau0004f,,false,false,false,0,false,false,false,false +rickcanoa/MobileDemo,rickcanoa,C#,false,false,false,0,false,false,false,false +fallenflash/pmsf,fallenflash,PHP,false,false,false,0,false,false,false,false +MehdyDriouech/mise-en-prod,MehdyDriouech,PHP,false,false,false,0,false,false,false,false +steve_junior/vanilla,steve_junior,PHP,false,false,false,0,false,false,false,false +yodaskilledme/lightweight-php-mvc,yodaskilledme,PHP,false,false,false,0,false,false,false,false +warpcom/warpdev-docs,warpcom,,true,false,false,1,false,true,false,false +luizapozzobon/coreography-control,luizapozzobon,TypeScript,false,false,false,0,false,false,false,false +emergingcode/exemplo-inventario,emergingcode,C#,false,false,false,0,false,false,false,false +Titan-C/org-cv,Titan-C,EmacsLisp,true,false,false,1,false,true,false,false +JBou/PowerampCar,JBou,Java,false,false,false,0,false,false,false,false +JuampaHernandez/SelectSalv,JuampaHernandez,PHP,false,false,false,0,false,false,false,false +HorseGO/doa-doa-android,HorseGO,Java,true,false,false,3,true,true,true,false +oalbiez/katas-session,oalbiez,Java,false,false,false,0,false,false,false,false +gitlab-org/security-products/analyzers/common,gitlab-org,Go,true,false,false,1,false,true,false,false +enixjin/corelib,enixjin,TypeScript,false,false,false,0,false,false,false,false +Sparkosis/allthedoc,Sparkosis,PHP,false,false,false,0,false,false,false,false +janderson9182/PatternsRevision,janderson9182,Java,false,false,false,0,false,false,false,false +hologerry/im2txt_demo,hologerry,Python,false,false,false,0,false,false,false,false +Cacophony/Processor,Cacophony,Go,true,false,false,5,false,false,false,false +remram44/cacheflow,remram44,Python,false,false,false,0,false,false,false,false +dogtagpki/pki,dogtagpki,Java,false,false,true,0,false,false,false,false +jiangzhiping/EnhancedConsoleText,jiangzhiping,C++,true,false,false,1,false,true,false,false +maksotron78/Inter-company_Project_Hiring_System,maksotron78,Java,false,false,true,0,false,false,false,false +canderegg/bantam-js,canderegg,HTML,true,false,false,1,false,false,true,false +nettijoe96/raspberry-pi-architecture,nettijoe96,Python,false,false,false,0,false,false,false,false +GRIN-Global/Wizards/GRIN-Global-Genesys,GRIN-Global,C#,false,false,false,0,false,false,false,false +robofei/at-home/dodo_detector_ros,robofei,Python,false,false,false,0,false,false,false,false +mcrp0406/Tallertres,mcrp0406,C#,false,false,false,0,false,false,false,false +publii/webpropaytren,publii,HTML,false,false,false,0,false,false,false,false +superdork/femanon-console,superdork,,false,false,false,0,false,false,false,false +serge2/lab,serge2,Ruby,false,false,false,0,false,false,false,false +CB-ysx/vue-base-project,CB-ysx,JavaScript,false,false,false,0,false,false,false,false +socrates-conference/socrates-admin-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true +rienheuver/ypp-discord-bot,rienheuver,JavaScript,false,false,false,0,false,false,false,false +deejoe/rit-year-of-foss,deejoe,HTML,false,false,false,0,false,false,false,false +jeanhuyg43/MyWorkBackUp,jeanhuyg43,,false,false,false,0,false,false,false,false +sjmgilburt/redditinformationpropagation,sjmgilburt,HTML,false,false,false,0,false,false,false,false +rajarshitiwari/arpack95,rajarshitiwari,Fortran,false,false,false,0,false,false,false,false +eazel7/perritos,eazel7,HTML,false,false,false,0,false,false,false,false +amit_ramanuj1/demoproject,amit_ramanuj1,PHP,false,false,false,0,false,false,false,false +yansch/slack-testbot,yansch,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-nodemon,TomasHubelbauer,,false,false,false,0,false,false,false,false +Ultra_Mej/PCB_LIESSE_IOGS_2018,Ultra_Mej,C++,false,false,false,0,false,false,false,false +vlasyukv11/kyrsova,vlasyukv11,C#,false,false,false,0,false,false,false,false +tobinwalton/Boardello,tobinwalton,JavaScript,false,false,false,0,false,false,false,false +Charoenchitt/Lab01,Charoenchitt,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-typescript,TomasHubelbauer,,false,false,false,0,false,false,false,false +sekitsui/broker-node,sekitsui,JavaScript,false,false,false,0,false,false,false,false +nandawtek/book-sense,nandawtek,JavaScript,true,false,false,1,false,true,false,false +dasime/homehub,dasime,JavaScript,false,false,false,0,false,false,false,false +jhammer/JSynth,jhammer,C++,false,false,false,0,false,false,false,false +TeamCK/LD41,TeamCK,JavaScript,true,false,false,1,false,false,true,false +Numergent/birdshot,Numergent,Clojure,false,false,false,0,false,false,false,false +ayufan-repos/rock64/linux-rootfs,ayufan-repos,Shell,true,false,false,4,true,false,false,true +josesalvador/dotfiles,josesalvador,Vimscript,false,false,false,0,false,false,false,false +jms1989/ubuntu-linux-automation,jms1989,Shell,false,false,false,0,false,false,false,false +AMr10/L-Ro3b,AMr10,CSS,false,false,false,0,false,false,false,false +sparky8251/freshrss,sparky8251,PHP,false,false,false,0,false,false,false,false +Charoenchitt/HomeworkCodeCamp2,Charoenchitt,HTML,false,false,false,0,false,false,false,false +itsfoxbit/foxbot,itsfoxbit,JavaScript,false,false,false,0,false,false,false,false +pinkmaguro/Django-First-Web-Application,pinkmaguro,Python,false,false,false,0,false,false,false,false +huseinzol05/Network-Analysis,huseinzol05,JupyterNotebook,false,false,false,0,false,false,false,false +granitosaurus/minds-cli,granitosaurus,Python,false,false,false,0,false,false,false,false +ohgo/via,ohgo,JavaScript,false,false,false,0,false,false,false,false +Averor/json-mapper,Averor,PHP,true,false,false,1,false,true,false,false +trosa/carnifex,trosa,CommonLisp,false,false,false,0,false,false,false,false +TeaRev/Project-Turn,TeaRev,C#,false,false,false,0,false,false,false,false +tuc_graphql/client,tuc_graphql,,false,false,false,0,false,false,false,false +Lefl1/godot-spacefight,Lefl1,GDScript,false,false,false,0,false,false,false,false +ViniciusSouza147/Unisys,ViniciusSouza147,Java,false,false,false,0,false,false,false,false +jbermudez/inverplux,jbermudez,HTML,false,false,false,0,false,false,false,false +JSiapo/qt.calabera.opengl,JSiapo,Objective-C,false,false,false,0,false,false,false,false +mihoka/www.mihoka.tv,mihoka,JavaScript,false,false,false,0,false,false,false,false +icf-church/events/icf-conference,icf-church,PHP,false,false,false,0,false,false,false,false +Averor/php-ext,Averor,PHP,true,false,false,1,false,true,false,false +epinxteren/ts-eventsourcing,epinxteren,TypeScript,true,false,false,1,false,true,false,false +difocus/api/pdo-crud,difocus,PHP,false,false,false,0,false,false,false,false +balacsoft/java-pos_emu,balacsoft,Java,false,false,false,0,false,false,false,false +Kipixelle/Labyrinth,Kipixelle,Python,false,false,false,0,false,false,false,false +BenCrulis/Fuzzy_Weighted_C-Means,BenCrulis,Java,false,false,false,0,false,false,false,false +syamsulalam/kaca2,syamsulalam,HTML,false,false,false,0,false,false,false,false +ToxiClaw/LAfI,ToxiClaw,TeX,true,false,false,1,false,true,false,false +sufuf3/FAHClient-install,sufuf3,Shell,false,false,false,0,false,false,false,false +sufuf3/kubernetes-hard-way-deploy,sufuf3,,false,false,false,0,false,false,false,false +kukiamarilla/distri-client,kukiamarilla,JavaScript,false,false,false,0,false,false,false,false +granitosaurus/minds-blog_writing-minds-bot,granitosaurus,Python,false,false,false,0,false,false,false,false +share_demo/java_thread_demo,share_demo,Java,false,false,false,0,false,false,false,false +GaelMarcadet/FinalLifeGame,GaelMarcadet,Java,false,false,false,0,false,false,false,false +TLoud/Solovei,TLoud,C++,false,false,false,0,false,false,false,false +0xF61/ssgBuilder,0xF61,CSS,true,false,false,1,false,false,true,false +linkfast-oss/exengine,linkfast-oss,PHP,false,false,false,0,false,false,false,false +richa.singh.2586/Video-Game,richa.singh.2586,Java,false,false,false,0,false,false,false,false +POO_Cenez/Projeto_aula,POO_Cenez,Java,false,false,false,0,false,false,false,false +chengyan/student-management-system,chengyan,Java,false,false,true,0,false,false,false,false +unlessgames/unless_modules,unlessgames,C++,false,false,false,0,false,false,false,false +JustinTimberLake/juyi,JustinTimberLake,Objective-C,false,false,false,0,false,false,false,false +timur-zakriev/CPP_Objective,timur-zakriev,C++,false,false,false,0,false,false,false,false +DragonYunWang/cellphonenumbersplit,DragonYunWang,JavaScript,false,false,false,0,false,false,false,false +batalinux/MICA_project,batalinux,Matlab,false,false,false,0,false,false,false,false +dryymoon/dryymoon-react-boilerplate,dryymoon,HTML,false,false,false,0,false,false,false,false +Gezort/shad-py,Gezort,Python,false,false,false,0,false,false,false,false +datube/workhours,datube,Python,false,false,false,0,false,false,false,false +cocoa1231/ILfsUGD,cocoa1231,,false,false,false,0,false,false,false,false +vali-it-201804/webdemos,vali-it-201804,Java,false,false,true,0,false,false,false,false +precire/showcase-general-functionality,precire,HTML,false,false,false,0,false,false,false,false +sensative/yggio-packages/yggio-api,sensative,JavaScript,false,false,false,0,false,false,false,false +notechain/front-end-generator,notechain,JavaScript,false,false,false,0,false,false,false,false +WizApps/Androidify,WizApps,Kotlin,false,false,false,0,false,false,false,false +DmitriySalnikovDev/UE4ProjectPacker,DmitriySalnikovDev,C#,false,false,false,0,false,false,false,false +masaintmartin/ProjetCyptomonnaie,masaintmartin,Swift,false,false,false,0,false,false,false,false +ALSchwalm/pISO,ALSchwalm,Rust,true,false,false,1,false,true,false,false +PatrickLerner/dotfiles,PatrickLerner,Shell,false,false,false,0,false,false,false,false +gitlab-org/grape-path-helpers,gitlab-org,Ruby,true,false,false,1,false,true,false,false +ugarciacalderon/Creating_and_Distributing_Python_Applications,ugarciacalderon,,false,false,false,0,false,false,false,false +jcreinhold/intensity-normalization,jcreinhold,Python,false,true,false,0,false,false,false,false +JoeyWhite/Apps,JoeyWhite,,false,false,false,0,false,false,false,false +VV5/sound-devices,VV5,Vue,true,false,false,1,false,true,false,false +rsergeant/timber-wolf,rsergeant,Rust,false,false,false,0,false,false,false,false +enstudio/sample/django-enstudio-starter,enstudio,JavaScript,false,false,false,0,false,false,false,false +Jorge_machado/MedicalAppointments,Jorge_machado,C#,false,false,false,0,false,false,false,false +hex4112/VoteChain,hex4112,JavaScript,false,false,true,0,false,false,false,false +kottkrig/subtitler,kottkrig,Elm,false,false,false,0,false,false,false,false +sinpantuflas/pytch,sinpantuflas,,false,false,false,0,false,false,false,false +sudhakar_sk/data_base,sudhakar_sk,,false,false,false,0,false,false,false,false +segp2/NLIDBproject,segp2,Python,false,false,false,0,false,false,false,false +tetiana.satsuk/react-redux-ts-sample,tetiana.satsuk,TypeScript,false,false,false,0,false,false,false,false +submodulos-git/ranger_devicons,submodulos-git,Python,false,false,false,0,false,false,false,false +valera21web/study,valera21web,C#,false,false,false,0,false,false,false,false +SinguDevCrew/support,SinguDevCrew,,false,false,false,0,false,false,false,false +Daym3l/USSD4ETECSA,Daym3l,Java,false,false,false,0,false,false,false,false +marcelorodriguesss/python_faq_coding,marcelorodriguesss,JupyterNotebook,false,false,false,0,false,false,false,false +Cacophony/Worker,Cacophony,Go,true,false,false,5,false,false,false,false +loyke96/p-r-s,loyke96,Python,false,false,false,0,false,false,false,false +yethiel/rvgl_core_assets,yethiel,Python,false,false,false,0,false,false,false,false +ocrensys/sng_web,ocrensys,CSS,false,false,false,0,false,false,false,false +Zerf/ComputerLanguageBenchmarksGame2018Archive,Zerf,HTML,false,false,false,0,false,false,false,false +sd1-ec-2018-1/p2-g2,sd1-ec-2018-1,JavaScript,false,false,false,0,false,false,false,false +DHBW_Karlsruhe/Kuechenmoebelfabrik,DHBW_Karlsruhe,TeX,false,false,false,0,false,false,false,false +waterkip/perl-net-saml2,waterkip,Perl,true,false,false,2,true,true,false,false +TomasHubelbauer/bloggo-iis,TomasHubelbauer,,false,false,false,0,false,false,false,false +wanderb/cicd-demo,wanderb,HTML,false,false,false,0,false,false,false,false +StageBryxx/Ansible,StageBryxx,,false,false,false,0,false,false,false,false +sharonmarynissen/TrumpAnalyser,sharonmarynissen,Java,false,false,false,0,false,false,false,false +spiidey/pihole-shitlist,spiidey,,false,false,false,0,false,false,false,false +glycoinfo/glic,glycoinfo,,false,false,false,0,false,false,false,false +mfranke/ADOL-C4MATLAB,mfranke,C++,false,false,false,0,false,false,false,false +straightlab/flypipe,straightlab,Shell,false,false,false,0,false,false,false,false +KevinRR18/Areas_git,KevinRR18,Python,false,false,false,0,false,false,false,false +jozefhajnala/jhaddins,jozefhajnala,R,true,false,false,5,true,true,true,false +TSnake41/dos9-code,TSnake41,C,false,false,false,0,false,false,false,false +HouseOfBets/SmartHouseOfBets,HouseOfBets,JavaScript,false,false,false,0,false,false,false,false +natron/natron,natron,C++,false,false,false,0,false,false,false,false +hammad038/Dev-React-GCP,hammad038,JavaScript,false,false,false,0,false,false,false,false +erikdstock/nycdsa-components,erikdstock,JavaScript,false,false,false,0,false,false,false,false +davidrolle/f-strings,davidrolle,Clojure,true,false,true,1,false,true,false,false +Axect/axect.gitlab.io,Axect,HTML,true,false,false,1,false,false,true,false +dsandip/metabase-ms,dsandip,,false,false,false,0,false,false,false,false +coala/solar/shortlinks,coala,Shell,true,false,false,1,false,true,false,false +bgorkem/monorepo-trial,bgorkem,JavaScript,false,false,false,0,false,false,false,false +OrangeFox/Devices/mido,OrangeFox,Makefile,false,false,false,0,false,false,false,false +WizApps/FirebaseChat,WizApps,Kotlin,false,false,false,0,false,false,false,false +gitlab-cookbooks/cookbook-design-gitlab-com,gitlab-cookbooks,HTML,false,false,false,0,false,false,false,false +mdeken/color-picker,mdeken,CSS,false,false,false,0,false,false,false,false +n303p4/kitsuchan,n303p4,Python,false,true,false,0,false,false,false,false +clearos/clearfoundation/clearos-framework,clearos,PHP,false,false,false,0,false,false,false,false +clearos/clearfoundation/theme-clearos-admin,clearos,JavaScript,false,false,false,0,false,false,false,false +Laprausan/TrashPandaNet,Laprausan,C#,false,false,false,0,false,false,false,false +galactic0wl/psyduck,galactic0wl,JavaScript,false,false,false,0,false,false,false,false +jhands/factorio-data,jhands,Lua,false,false,false,0,false,false,false,false +jupyterYoda/zoo_analytics,jupyterYoda,,false,false,false,0,false,false,false,false +maygualidaruiz/Dream-Team,maygualidaruiz,Python,false,true,false,0,false,false,false,false +adhenawer/laradep,adhenawer,PHP,true,false,false,1,false,false,false,false +mhamidi/ang2456,mhamidi,TypeScript,false,false,false,0,false,false,false,false +CosmicMedia/CosmicFramework,CosmicMedia,PHP,false,false,false,0,false,false,false,false +acrandal/python-AltIMU-10v5,acrandal,Python,false,false,false,0,false,false,false,false +jhihn/keraseval,jhihn,Python,false,false,false,0,false,false,false,false +luishendrix92/snake,luishendrix92,Elm,false,false,false,0,false,false,false,false +SkyOS/skyos,SkyOS,JavaScript,false,false,false,0,false,false,false,false +drxos/awesome-go-web,drxos,Go,false,false,false,0,false,false,false,false +hypercode/timekiller,hypercode,PHP,false,false,false,0,false,false,false,false +GuillaumeHemmen/penelope,GuillaumeHemmen,Swift,false,false,false,0,false,false,false,false +Oxylibrium/Nest,Oxylibrium,Python,false,true,false,0,false,false,false,false +LocMai/RacingcarPro,LocMai,,false,false,false,0,false,false,false,false +jualvarez/pyarweb,jualvarez,HTML,false,false,false,0,false,false,false,false +imagedb/ansible-lint,imagedb,,true,false,false,4,true,true,false,true +chrom007/BattleFort,chrom007,JavaScript,false,false,false,0,false,false,false,false +MartinFargov/my-tasty-app,MartinFargov,Java,false,false,false,0,false,false,false,false +cristhianluna979797/TrabajoAutonomo1,cristhianluna979797,Java,false,false,false,0,false,false,false,false +mvojacek/execasm,mvojacek,C,true,false,false,1,true,false,false,false +acrandal/cubsat,acrandal,Python,false,true,false,0,false,false,false,false +DansLeRuSH/gimp-tools,DansLeRuSH,,false,false,false,0,false,false,false,false +onofreliscano/UCV,onofreliscano,JavaScript,true,false,false,1,false,false,true,false +mikeslemmer/nodejs_project,mikeslemmer,JavaScript,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-nodejs,TomasHubelbauer,,false,false,false,0,false,false,false,false +litt-arts-num/docker-proust,litt-arts-num,PHP,false,false,false,0,false,false,false,false +LucienD/django_project_basic,LucienD,Python,false,false,false,0,false,false,false,false +tokend/android-application,tokend,Kotlin,false,false,false,0,false,false,false,false +alexisjourdon/PPE4_app,alexisjourdon,C#,false,false,false,0,false,false,false,false +itistmo/adjutora/Core,itistmo,PHP,false,false,false,0,false,false,false,false +frissdiegurke/ecmascript-introduction,frissdiegurke,TeX,false,false,false,0,false,false,false,false +olson.levi/website,olson.levi,HTML,true,false,false,2,false,true,true,false +instil-training/cjug-arrow-2018,instil-training,Kotlin,false,false,false,0,false,false,false,false +Valeness/spacesim,Valeness,HTML,true,false,false,1,false,false,true,false +kimbm/Testers,kimbm,Ruby,true,false,false,1,false,true,false,false +jumasheff/carousel-cookie-cutter,jumasheff,Python,false,false,false,0,false,false,false,false +clauscomputing/mdtp,clauscomputing,Python,false,false,false,0,false,false,false,false +sae13/tor-termux,sae13,Shell,false,false,false,0,false,false,false,false +PRTG/Device-Templates/dell-storage,PRTG,,true,false,false,1,true,false,false,false +CarlBrunius/MPCourse,CarlBrunius,R,false,false,false,0,false,false,false,false +hardwareandsoftware/serialgps,hardwareandsoftware,HTML,false,false,false,0,false,false,false,false +yethiel/re-make,yethiel,,false,false,false,0,false,false,false,false +yethiel/ranch,yethiel,Python,false,false,false,0,false,false,false,false +hyWse/wseGuard,hyWse,Java,false,false,false,0,false,false,false,false +dreinull/oer-db-normalization,dreinull,JavaScript,true,false,false,1,false,true,false,false +atom-synth/waveguide-compiler,atom-synth,C++,false,false,false,0,false,false,false,false +meelisreha/Vali-It-projekt_vale,meelisreha,Java,false,false,false,0,false,false,false,false +GaganGowda89/oops_concept_Java,GaganGowda89,Java,false,false,false,0,false,false,false,false +sjmgilburt/titanicml,sjmgilburt,JupyterNotebook,false,false,false,0,false,false,false,false +ffactory/the-gem,ffactory,GDScript,false,false,false,0,false,false,false,false +dbrattli/NAisParser,dbrattli,F#,true,false,false,2,true,true,false,false +icebird/back,icebird,PHP,false,false,false,0,false,false,false,false +mtnygard/m2m.welcome,mtnygard,Java,false,false,true,0,false,false,false,false +BlackTazz89/tazzdino,BlackTazz89,JavaScript,false,false,false,0,false,false,false,false +ruefo/ruefo.gitlab.io,ruefo,HTML,true,false,false,1,false,true,false,false +phorge-makerspace/phorge-web,phorge-makerspace,CSS,false,false,false,0,false,false,false,false +Azhe403/HTTPWebRequestCS,Azhe403,C#,false,false,false,0,false,false,false,false +abhinavdhasmana/ci_cd_demo,abhinavdhasmana,Shell,true,false,false,2,false,true,true,false +SimonaStoyanova/android-academy-materials,SimonaStoyanova,,false,false,false,0,false,false,false,false +Project-FiFo/gen_fsm_compat,Project-FiFo,Erlang,false,false,false,0,false,false,false,false +truesun/taoyuna,truesun,JavaScript,false,false,false,0,false,false,false,false +dickydb/management,dickydb,JavaScript,false,false,false,0,false,false,false,false +dimonkov/SD3,dimonkov,C++,true,false,false,1,false,true,false,false +alberand/PIL-AutosarOS,alberand,C,false,false,false,0,false,false,false,false +meelisreha/Vali-It-projekt,meelisreha,Java,false,false,true,0,false,false,false,false +albertschwthb/dpro,albertschwthb,HTML,false,false,false,0,false,false,false,false +perfectionist1998/DM,perfectionist1998,Java,false,false,false,0,false,false,false,false +TomasHubelbauer/vsfs-book,TomasHubelbauer,,false,false,false,0,false,false,false,false +bitnomos/akomando,bitnomos,HTML,false,false,false,0,false,false,false,false +frankwoodall/cmder-powerline,frankwoodall,Lua,false,false,false,0,false,false,false,false +BuildStream/nosoftware/alignment,BuildStream,,false,false,false,0,false,false,false,false +pneumatoken/ethereal_faust,pneumatoken,,false,false,false,0,false,false,false,false +socrates-conference/socrates-attendee-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true +dmartinez05/tamu-datalab-metalearning-repo,dmartinez05,,false,false,false,0,false,false,false,false +BrawlDB/backend,BrawlDB,TypeScript,false,false,false,0,false,false,false,false +Balun/introduction-to-java-programming-language,Balun,HTML,false,false,false,0,false,false,false,false +TheCapsLock/fdroid-patched-apps,TheCapsLock,HTML,true,false,false,1,false,true,false,false +norganna-wow/auctioneer/auc-filter-flatoutlier,norganna-wow,Lua,false,false,false,0,false,false,false,false +agaric/find-it,agaric,,false,false,false,0,false,false,false,false +awesome-keto/awesome-keto,awesome-keto,,true,false,false,1,false,true,false,false +mech-lang/server,mech-lang,Rust,true,false,false,1,false,true,false,false +flashingLEDs/brute_spl-t,flashingLEDs,JupyterNotebook,false,false,false,0,false,false,false,false +karelmares/gatsby-plugin-cockpit,karelmares,JavaScript,false,false,false,0,false,false,false,false +marcellmars/letssharebooks,marcellmars,Python,false,false,false,0,false,false,false,false +ouya/node-red-contrib-iota-mam,ouya,JavaScript,false,false,false,0,false,false,false,false +mikegustin/crestron-ui-mockup,mikegustin,CSS,true,false,false,1,false,false,true,false +ook.io/pwned-passwords,ook.io,Shell,false,false,false,0,false,false,false,false +transybao93/giaohangnhanh-shipper-mobile,transybao93,JavaScript,false,false,false,0,false,false,false,false +DragonYunWang/Vue-Finance,DragonYunWang,Vue,false,false,false,0,false,false,false,false +development-incolume/incolumepy.utils,development-incolume,Python,false,true,false,0,false,false,false,false +icebird/front,icebird,JavaScript,false,false,false,0,false,false,false,false +justcauserp/charts,justcauserp,HTML,false,false,false,0,false,false,false,false +Tagmeh/GoToBastion,Tagmeh,VisualBasic,false,false,false,0,false,false,false,false +apoorwanand/jekyll,apoorwanand,CSS,true,false,false,2,false,true,true,false +vali-it-201804/fuelconsumptionapp,vali-it-201804,Java,false,false,true,0,false,false,false,false +wai-te-ata-press/qilin,wai-te-ata-press,HTML,false,false,false,0,false,false,false,false +jalexander8717/msp430f5510-nim,jalexander8717,Nim,false,false,false,0,false,false,false,false +j84guo-python/python-code,j84guo-python,Python,false,false,false,0,false,false,false,false +raj_khan/24hNewsTheme,raj_khan,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-pulumi,TomasHubelbauer,,false,false,false,0,false,false,false,false +m.jolideh/Gravity_C2,m.jolideh,Python,false,false,false,0,false,false,false,false +jindal.manishkumar1/node-todo,jindal.manishkumar1,JavaScript,true,false,false,2,true,true,false,false +shiny-apps/decompose_mass,shiny-apps,R,false,false,false,0,false,false,false,false +Ssummerf/ConvNet1,Ssummerf,Python,false,false,false,0,false,false,false,false +uQA3/firmware_esp32,uQA3,C,true,false,false,2,true,false,false,false +lukecaren/TestingGrounds,lukecaren,C++,false,false,false,0,false,false,false,false +nanocastro/ColorLabFD,nanocastro,C++,false,false,false,0,false,false,false,false +deandre/wtf,deandre,CSS,true,false,false,1,true,false,false,false +AhmadHoghooghi/School-J8IA,AhmadHoghooghi,Java,false,false,false,0,false,false,false,false +haseebeqx/ssh_cert_parser,haseebeqx,Ruby,true,false,false,1,false,true,false,false +aossie/CrowdAlert-Mobile,aossie,JavaScript,true,false,false,4,true,true,false,true +R_packages/chemhelper,R_packages,R,false,false,false,0,false,false,false,false +mluzarreta/eflore-info,mluzarreta,JavaScript,false,false,false,0,false,false,false,false +ablondin/inf3135-ete2018-tp1,ablondin,Shell,false,false,false,0,false,false,false,false +McFy/beta-lineage,McFy,,false,false,false,0,false,false,false,false +mkslack/Area6510,mkslack,Shell,false,false,false,0,false,false,false,false +bobobo1618/Zorro-cTrader-FIX,bobobo1618,C++,false,false,false,0,false,false,false,false +stanstrup-teaching/XCMS-course,stanstrup-teaching,HTML,true,false,false,1,false,false,true,false +MayeGer/Historial-Medico,MayeGer,HTML,false,false,true,0,false,false,false,false +daxiongmao87/rss-mp3-dl,daxiongmao87,Python,false,false,false,0,false,false,false,false +luisfi/robots_moviles,luisfi,Makefile,false,false,false,0,false,false,false,false +zard777/ThreatHunting_v5,zard777,,false,false,false,0,false,false,false,false +tano0697/EJEMPLO,tano0697,Python,false,false,false,0,false,false,false,false +gitlab-org/gitter/realtime-client,gitlab-org,JavaScript,true,false,false,2,true,true,false,false +gitlab-org/gitter/halley,gitlab-org,JavaScript,true,false,false,2,true,true,false,false +yexianming/MaHuaTou,yexianming,Java,false,false,false,0,false,false,false,false +Bushan/docker-aggregator,Bushan,Shell,false,false,false,0,false,false,false,false +nickbatsaras/CS446,nickbatsaras,TeX,false,false,false,0,false,false,false,false +USE-OCL/codegen_plugin,USE-OCL,Java,false,false,false,0,false,false,false,false +quebez/candidates-man,quebez,JavaScript,false,false,false,0,false,false,false,false +sabuhinazarov/user-management-react,sabuhinazarov,JavaScript,false,false,false,0,false,false,false,false +adriapm/FinalProject,adriapm,Java,false,false,false,0,false,false,false,false +easy-code/angular-todo,easy-code,TypeScript,false,false,false,0,false,false,false,false +Chusgome/rc-car-android,Chusgome,JavaScript,false,false,false,0,false,false,false,false +VickySteeves/lis-628-datalibrarianship,VickySteeves,CSS,true,false,false,1,false,false,true,false +abbasi.ehsan1991/MabnaSample,abbasi.ehsan1991,Java,false,false,false,0,false,false,false,false +dgarlitt/urban-gopher,dgarlitt,Go,true,false,false,3,true,true,false,false +samanthaAlison/steveshell,samanthaAlison,C++,false,false,false,0,false,false,false,false +samanthaAlison/pokenstein3d,samanthaAlison,C++,false,false,false,0,false,false,false,false +samanthaAlison/Childes-GUI-Windows,samanthaAlison,C++,false,false,false,0,false,false,false,false +crankykernel/cryptoxscanner,crankykernel,TypeScript,true,false,false,1,false,true,false,false +samanthaAlison/cse335-project-2,samanthaAlison,HTML,false,false,false,0,false,false,false,false +gameblabla/supertuxkart-gcw,gameblabla,C++,false,false,false,0,false,false,false,false +BowserV2/Jazzmyne,BowserV2,JavaScript,false,false,false,0,false,false,false,false +fpsbois/fps2018,fpsbois,C++,false,false,false,0,false,false,false,false +gitlab-org/gitter/faye,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +VV5/writing,VV5,Vue,true,false,false,1,false,true,false,false +wangyin2018/iotks,wangyin2018,,false,false,false,0,false,false,false,false +mickaelw/demo-clean-architecture-backend,mickaelw,TypeScript,true,false,false,2,false,false,false,false +wangyin2018/iotks2,wangyin2018,Shell,false,false,false,0,false,false,false,false +phateopera/BI_YoutubeTrend,phateopera,SQLPL,false,false,false,0,false,false,false,false +castellanogg/my-awesome-project,castellanogg,,false,false,false,0,false,false,false,false +di.ma/Connectivity_from_event_timing_patterns,di.ma,Python,false,false,false,0,false,false,false,false +ducklin5/maze-game-3.0,ducklin5,GDScript,false,false,false,0,false,false,false,false +stephen-biggs-fox/fortunit,stephen-biggs-fox,Python,false,false,false,0,false,false,false,false +dong100136/middlewarerace2018,dong100136,Java,false,false,false,0,false,false,false,false +isat/processo-seletivo,isat,CSS,false,false,false,0,false,false,false,false +hammad038/MERN-Stack,hammad038,JavaScript,false,false,false,0,false,false,false,false +progtest-jiri-gracik/PA2-17-18-semestral,progtest-jiri-gracik,C++,false,false,false,0,false,false,false,false +rifqidmw/PemogramanMobile7,rifqidmw,Java,false,false,false,0,false,false,false,false +gaipa/web-app,gaipa,JavaScript,false,false,false,0,false,false,false,false +jumasheff/open-code-academy,jumasheff,JavaScript,false,false,false,0,false,false,false,false +frnchfrgg-latex/evince-synctex,frnchfrgg-latex,Vimscript,false,false,false,0,false,false,false,false +Cyril31/Sword_Of_Random,Cyril31,Python,false,false,false,0,false,false,false,false +TFSThiagoBR98/Antx,TFSThiagoBR98,C#,true,false,false,1,false,false,true,false +chrisshort/ansible_vagrant_skeleton,chrisshort,,false,false,false,0,false,false,false,false +woopsi/threaded_server,woopsi,Python,false,false,false,0,false,false,false,false +macta/WillowPagerDuty,macta,Smalltalk,true,false,false,2,true,false,true,false +myrdin/myrdin-web,myrdin,HTML,true,false,false,1,false,false,true,false +Piqui/algorithms,Piqui,C,false,false,false,0,false,false,false,false +gkowal/amun-code,gkowal,Fortran,false,false,false,0,false,false,false,false +mus123/Azizu_practice_session1,mus123,PHP,false,false,false,0,false,false,false,false +trustable/gitect,trustable,HTML,true,false,false,3,true,false,false,false +IIT_Salitha/TrainBuzz,IIT_Salitha,Java,false,false,false,0,false,false,false,false +nicolas.gac/TomoGPI_for_Astra,nicolas.gac,Matlab,false,false,false,0,false,false,false,false +wangyin2018/zhuxian,wangyin2018,,false,false,false,0,false,false,false,false +iamrizwan/background-location-attendance,iamrizwan,JavaScript,false,false,false,0,false,false,false,false +omunroe-com/sitemap-bundle,omunroe-com,PHP,true,false,false,2,false,true,false,false +neo-cs_hackerrank/30-days-of-code,neo-cs_hackerrank,Java,false,false,true,0,false,false,false,false +soka/TallerTrello,soka,Batchfile,true,false,false,2,false,true,true,false +sapsan14/Vali-IT-feedback,sapsan14,HTML,false,false,true,0,false,false,false,false +gorgonzola/informeren-dagens-epub,gorgonzola,Python,false,true,false,0,false,false,false,false +pipocavsobake/android-tinder,pipocavsobake,Java,false,false,false,0,false,false,false,false +bramceulemans/filesharer,bramceulemans,PHP,true,false,false,1,false,true,false,false +gitlab-org/security-products/tests/sast,gitlab-org,Ruby,true,false,false,1,false,true,false,false +DSA-SemogaNilaiA/license-plate-recognition,DSA-SemogaNilaiA,JupyterNotebook,false,false,false,0,false,false,false,false +TolaGitLab/PHP-SAMPLE-API,TolaGitLab,PHP,false,false,false,0,false,false,false,false +miraviolet/ultra-violet,miraviolet,CSS,false,false,false,0,false,false,false,false +uspgamedev/grimoire-ars-bellica,uspgamedev,C++,false,false,false,0,false,false,false,false +trosa/42devkit,trosa,EmacsLisp,false,false,false,0,false,false,false,false +trosa/iomonad.el,trosa,EmacsLisp,false,false,false,0,false,false,false,false +trosa/taskmaster,trosa,Elixir,false,false,false,0,false,false,false,false +fuentelibre/Jappy,fuentelibre,HTML,false,false,false,0,false,false,false,false +CriptoCoinsMaker/dogemakerWebApp,CriptoCoinsMaker,PHP,false,false,false,0,false,false,false,false +prudentcircle/docker-lessons,prudentcircle,HTML,false,false,false,0,false,false,false,false +linksys3966/n26-stats-assignment,linksys3966,Java,false,false,true,0,false,false,false,false +wangyin2018/xiaochengxu,wangyin2018,,false,false,false,0,false,false,false,false +wangyin2018/baojing,wangyin2018,,false,false,false,0,false,false,false,false +charts/gitlab-rails,charts,Smarty,true,false,false,2,false,true,false,true +ID4me/identity-agent-prototype,ID4me,HTML,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-firefox,TomasHubelbauer,,false,false,false,0,false,false,false,false +melvinvermeeren/template_cpp,melvinvermeeren,CMake,true,false,false,4,false,true,true,false +jljouannic/laptop-playbook,jljouannic,,false,false,false,0,false,false,false,false +NicolasJouanin/plasma,NicolasJouanin,Scala,false,false,false,0,false,false,false,false +gitpetr/artists,gitpetr,Ruby,false,false,false,0,false,false,false,false +kalil.junior/falacachoeirinha,kalil.junior,Java,false,false,false,0,false,false,false,false +grasmash/official-docs,grasmash,XSLT,false,false,false,0,false,false,false,false +derelanadecube/efc_mod,derelanadecube,Java,false,false,false,0,false,false,false,false +pablo.bc/Proyecto_Grupal,pablo.bc,C,false,false,false,0,false,false,false,false +Open-Interject/Beetle-ETL,Open-Interject,Python,false,false,false,0,false,false,false,false +Solarinas/Kizuna-Zero,Solarinas,Python,false,false,false,0,false,false,false,false +PyNorte-RO/pyro-site,PyNorte-RO,HTML,true,false,false,1,false,true,false,false +PyNorte-RO/pyro-eventos,PyNorte-RO,,false,false,false,0,false,false,false,false +wangyin2018/zishu,wangyin2018,,false,false,false,0,false,false,false,false +iommu/transmute,iommu,C,false,false,false,0,false,false,false,false +raphael.bresson/xk,raphael.bresson,C,false,false,false,0,false,false,false,false +MOBlox/ClaviSUPERNova,MOBlox,HTML,false,false,false,0,false,false,false,false +trosa/42sh,trosa,C,false,false,false,0,false,false,false,false +darkbatcher/femto,darkbatcher,Makefile,false,false,false,0,false,false,false,false +wpdesk/wp-settings,wpdesk,PHP,true,false,false,5,false,true,true,false +RageGroup/VapeMode,RageGroup,C#,false,false,false,0,false,false,false,false +Spittal/terraforming-mars-tools,Spittal,JavaScript,true,false,false,1,true,false,false,false +unity3dx/sprint1,unity3dx,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/total-amiga-assembler,amigasourcecodepreservation,Assembly,false,false,false,0,false,false,false,false +zulfikar2/InThisTogether,zulfikar2,C++,false,false,false,0,false,false,false,false +frissdiegurke/fcfs-events-backend,frissdiegurke,JavaScript,false,false,false,0,false,false,false,false +hard-rox/to-let,hard-rox,HTML,false,false,false,0,false,false,false,false +gHashTag/mw,gHashTag,JavaScript,false,false,false,0,false,false,false,false +Guddiny/WindowHeaterTimer,Guddiny,C,false,false,false,0,false,false,false,false +RinaToWitch/RssReader,RinaToWitch,Kotlin,false,false,false,0,false,false,false,false +logue/NukkitX,logue,Java,false,false,true,0,false,false,false,false +TomasHubelbauer/bloggo-google,TomasHubelbauer,,false,false,false,0,false,false,false,false +aossie/MindTheWord-Desktop,aossie,,false,false,false,0,false,false,false,false +nnadeau/nnadeau.gitlab.io,nnadeau,CSS,true,false,false,1,false,false,true,false +flat-galaxy/edm,flat-galaxy,Python,true,true,false,1,true,false,false,false +carmanaught/plasma-pager,carmanaught,QML,false,false,false,0,false,false,false,false +cda-tech/cda-tech,cda-tech,PHP,false,false,false,0,false,false,false,false +timelord/sklearn_transformers,timelord,Python,true,true,false,1,false,true,false,false +trosa/corewar,trosa,C,false,false,false,0,false,false,false,false +obestwalter/commodorificator,obestwalter,Python,true,false,false,1,false,true,false,false +mightybyte/hexplore,mightybyte,Haskell,false,false,false,0,false,false,false,false +keponk/Twitter2Mastodon-python,keponk,Python,false,true,false,0,false,false,false,false +zelebez6969/sbpy3,zelebez6969,Python,false,true,false,0,false,false,false,false +TomasHubelbauer/bloggo-github,TomasHubelbauer,,false,false,false,0,false,false,false,false +kat.morgan/lxd-router,kat.morgan,Shell,false,false,false,0,false,false,false,false +nkhomitsevich/TestSwiftSample,nkhomitsevich,Swift,false,false,false,0,false,false,false,false +ian.hamilton/ng-chat,ian.hamilton,TypeScript,true,false,false,1,false,true,false,false +voidspiral/imghost,voidspiral,HTML,true,false,false,1,false,false,true,false +hammad038/MERN-Boilerplate,hammad038,JavaScript,false,false,false,0,false,false,false,false +mohdbilal131/kalmanFilter,mohdbilal131,Matlab,false,false,false,0,false,false,false,false +mikhailyankelevich/financeApp2018,mikhailyankelevich,C++,false,false,false,0,false,false,false,false +sklif.85/docker-1,sklif.85,Python,false,false,false,0,false,false,false,false +trabalhos-freelancers/cerealistamoreira-agenda,trabalhos-freelancers,JavaScript,false,false,false,0,false,false,false,false +kmaonchy/kmaonchy.com,kmaonchy,,false,false,false,0,false,false,false,false +cw-andrews/new-guid,cw-andrews,Python,true,true,false,3,false,false,false,false +seanwasere/BPMHeartRateMonitor,seanwasere,HTML,true,false,false,1,false,false,true,false +welance/oss/distill,welance,Go,false,false,false,0,false,false,false,false +munstr707/js_guidelines,munstr707,,false,false,false,0,false,false,false,false +Kaizen5000/OpenGL_App,Kaizen5000,C++,false,false,false,0,false,false,false,false +vladyx18/Multitech-GT,vladyx18,C#,false,false,false,0,false,false,false,false +theamarant/Application-Starter-Tremens-2,theamarant,Java,false,false,false,0,false,false,false,false +yroot/neos/assetsource-unsplash,yroot,,false,false,false,0,false,false,false,false +EltraEden/APRS,EltraEden,Python,true,false,false,1,false,true,false,false +enzanki_ars/stream-graphics,enzanki_ars,HTML,false,false,false,0,false,false,false,false +zdravstvo/organizacija_zdravstevene_sluzbe,zdravstvo,Python,false,false,false,0,false,false,false,false +ravenfeld/Connect-IQ-WatchFace,ravenfeld,Python,false,false,false,0,false,false,false,false +EtherTyper/bloch-sphere,EtherTyper,TypeScript,false,false,false,0,false,false,false,false +osbugtracker/OSBUGTRACKER,osbugtracker,,false,false,false,0,false,false,false,false +matheushmion/siteconfiam,matheushmion,HTML,true,false,false,1,false,false,true,false +allan-fk/instagram-clone,allan-fk,Ruby,false,false,false,0,false,false,false,false +PatOConnor43/unix-mq,PatOConnor43,C,false,false,false,0,false,false,false,false +ramene/hugo,ramene,HTML,true,false,false,1,false,true,false,false +cyphers/stock-market-simulation-game,cyphers,Java,false,false,false,0,false,false,false,false +kspt-templates/report,kspt-templates,TeX,true,false,false,1,false,true,false,false +kspt-templates/presentation,kspt-templates,TeX,false,false,false,0,false,false,false,false +Bewerbungsprojekte/PikeGenerator,Bewerbungsprojekte,C#,false,false,false,0,false,false,false,false +kspt-templates/thesis,kspt-templates,TeX,true,false,false,1,false,true,false,false +SondagesPro/QuestionSettingsType/findUserAgentInfo,SondagesPro,PHP,false,false,false,0,false,false,false,false +munisanath/reactjsweb,munisanath,JavaScript,false,false,false,0,false,false,false,false +cpp14/podstawy,cpp14,C++,false,false,false,0,false,false,false,false +python-learnig/tools,python-learnig,Python,false,false,false,0,false,false,false,false +bmallred/learn-abc,bmallred,JavaScript,true,false,false,1,false,false,true,false +veronikaKochugova/RMITest,veronikaKochugova,Java,false,false,true,0,false,false,false,false +matejv/ServiceCaller-DigiRacun,matejv,C#,false,false,false,0,false,false,false,false +tblyler/kf2-server,tblyler,Go,false,false,false,0,false,false,false,false +grote/briar-reproducer,grote,Python,true,false,false,3,true,true,false,true +jibe-b/eig-open-research-data,jibe-b,,false,false,false,0,false,false,false,false +glaucomachado/ud839_Miwok-Starter-code,glaucomachado,Java,false,false,false,0,false,false,false,false +nguc/SDAP-mpi,nguc,Fortran,false,false,false,0,false,false,false,false +gitlab-org/security-products/analyzers/phpcs-security-audit,gitlab-org,Go,false,false,false,0,false,false,false,false +ElenaShch/ElenaShchProj,ElenaShch,,false,false,false,0,false,false,false,false +kleinebaas/fullrune,kleinebaas,Java,false,false,true,0,false,false,false,false +telkomdev/rafi-business-dashboard,telkomdev,CSS,false,false,false,0,false,false,false,false +connections-crm/dev-back-end,connections-crm,Java,false,false,false,0,false,false,false,false +conversence/hyperknowledge,conversence,HTML,true,false,false,2,true,true,false,false +ISAAKiel/StyleGuide,ISAAKiel,,false,false,false,0,false,false,false,false +pulidovpe/DptoArchivo,pulidovpe,PHP,false,false,false,0,false,false,false,false +pulidovpe/foro-cake,pulidovpe,PHP,false,false,false,0,false,false,false,false +pulidovpe/login-node,pulidovpe,JavaScript,false,false,false,0,false,false,false,false +pulidovpe/mean-01,pulidovpe,TypeScript,false,false,false,0,false,false,false,false +he3labs-public/catapult-server-vagrant,he3labs-public,Shell,false,false,false,0,false,false,false,false +dangavrilin/bootstrap4-starter,dangavrilin,JavaScript,false,false,false,0,false,false,false,false +Trump/comparesum,Trump,C++,false,false,false,0,false,false,false,false +wpdesk/wp-dataset,wpdesk,PHP,true,false,false,5,false,true,true,false +wpdesk/wp-view,wpdesk,PHP,true,false,false,3,false,true,false,false +LouisBruge/tinderStarWar,LouisBruge,JavaScript,false,false,false,0,false,false,false,false +mujeebcpy/malayalam-stardict-data,mujeebcpy,,false,false,false,0,false,false,false,false +Trump/ramblings,Trump,TypeScript,false,false,false,0,false,false,false,false +miljar/studyx-digipolis-trump,miljar,PHP,false,false,false,0,false,false,false,false +feiss/aframe-intro,feiss,HTML,false,false,false,0,false,false,false,false +pongvarid/doing_project,pongvarid,HTML,false,false,false,0,false,false,false,false +bauripalash/bauripalash.gitlab.io,bauripalash,HTML,true,false,false,2,false,true,true,false +OpenCAE/installOpenFOAM,OpenCAE,Shell,false,false,false,0,false,false,false,false +benzoga33/MonBackupMail,benzoga33,Perl,false,false,false,0,false,false,false,false +pallas2018/bookparser,pallas2018,R,false,false,false,0,false,false,false,false +stilles-kaemmerchen/podcast-api-vertx,stilles-kaemmerchen,Java,false,false,true,0,false,false,false,false +inno-olymp-bots/information_bot,inno-olymp-bots,,false,false,false,0,false,false,false,false +sensiolabs-de/php-build,sensiolabs-de,,true,false,false,1,true,false,false,false +chkawrebai/EasyMission,chkawrebai,Java,false,false,true,0,false,false,false,false +eriveltonguedes/violencia,eriveltonguedes,,false,false,false,0,false,false,false,false +Romulo1209/Romulo,Romulo1209,,false,false,false,0,false,false,false,false +eyeo/adblockplus/ios-libraries/RxDataSources,eyeo,Swift,false,false,false,0,false,false,false,false +geek-brains-level-3/lesson1,geek-brains-level-3,Java,false,false,false,0,false,false,false,false +mariadb/server,mariadb,,false,false,false,0,false,false,false,false +eyeo/adblockplus/ios-libraries/RxSwift,eyeo,Swift,false,false,false,0,false,false,false,false +elucent/basil,elucent,C++,false,false,false,0,false,false,false,false +Nunuvin/unix-setup,Nunuvin,Shell,false,false,false,0,false,false,false,false +dallasjohnson/eosdac,dallasjohnson,WebAssembly,false,false,false,0,false,false,false,false +eyeo/adblockplus/ios-libraries/RxSwiftExt,eyeo,Swift,false,false,false,0,false,false,false,false +ChristophS/aws_adfs,ChristophS,Python,true,true,false,2,true,false,false,true +eyeo/adblockplus/ios-libraries/needs-translation,eyeo,JavaScript,false,false,false,0,false,false,false,false +mariadb/ci-test,mariadb,,false,false,false,0,false,false,false,false +laverdaderadroga1/Pedro,laverdaderadroga1,,false,false,false,0,false,false,false,false +horar/qSteepingTimer,horar,CMake,false,false,false,0,false,false,false,false +Dumplings/twitch-bot,Dumplings,JavaScript,false,false,false,0,false,false,false,false +ayufan-repos/rock64/linux-mainline-kernel,ayufan-repos,,true,false,false,1,true,false,false,false +TheLostLambda/thelostrpg,TheLostLambda,CommonLisp,false,false,false,0,false,false,false,false +devlug/devlug-web,devlug,JavaScript,false,false,false,0,false,false,false,false +gdevops/tuto_project,gdevops,Python,true,true,false,1,false,true,false,false +nbbeeken/gb.js,nbbeeken,TypeScript,false,false,false,0,false,false,false,false +solidity_course/timbucks,solidity_course,JupyterNotebook,false,false,false,0,false,false,false,false +packet.ninja/cl-piat,packet.ninja,Ruby,false,false,false,0,false,false,false,false +wildma/WildmaGit,wildma,Java,false,false,false,0,false,false,false,false +peluka_tests/spring_boot_test,peluka_tests,Java,false,false,false,0,false,false,false,false +falko-org/Falko-API,falko-org,Ruby,false,false,false,0,false,false,false,false +lukecaren/GalaxyShooter,lukecaren,C#,false,false,false,0,false,false,false,false +hsigrist/lmla-2018,hsigrist,TeX,false,false,false,0,false,false,false,false +tingsystems/api-feedfancy,tingsystems,Python,false,true,false,0,false,false,false,false +ian.hamilton/ng-ecom,ian.hamilton,TypeScript,false,false,false,0,false,false,false,false +alakotko/unibase-test-task,alakotko,Java,false,false,false,0,false,false,false,false +edgardopanchana/poo-en-android,edgardopanchana,Java,false,false,false,0,false,false,false,false +benjymous/prism,benjymous,C,false,false,false,0,false,false,false,false +Nonot/projet-ppe,Nonot,PHP,false,false,false,0,false,false,false,false +nazmel/test-directory,nazmel,,false,false,false,0,false,false,false,false +tingsystems/web-feedfancy,tingsystems,TypeScript,false,false,false,0,false,false,false,false +andwj/ajbsp,andwj,C++,false,false,false,0,false,false,false,false +python-megapixel/BlogBase,python-megapixel,,false,false,false,0,false,false,false,false +inno-olymp-bots/rate_bot_web,inno-olymp-bots,Python,false,true,false,0,false,false,false,false +inno-olymp-bots/information_bot_web,inno-olymp-bots,Python,false,true,false,0,false,false,false,false +wpdesk/wc-tests,wpdesk,PHP,false,false,false,0,false,false,false,false +sj1k/configui,sj1k,Python,false,true,false,0,false,false,false,false +mimadrid/dotfiles,mimadrid,Shell,false,false,false,0,false,false,false,false +nsonanh/demo-policypal,nsonanh,HTML,false,false,false,0,false,false,false,false +kahw33/FreshieAtUnbabel,kahw33,Python,false,true,false,0,false,false,false,false +dedboi/putain-de-meteo-pwa,dedboi,Vue,false,false,false,0,false,false,false,false +qalabs/javaselenium1,qalabs,Java,false,false,false,0,false,false,false,false +SPUFPR/MatematicaDivertida,SPUFPR,Java,false,false,false,0,false,false,false,false +stanislavpiter/SimpleAPI,stanislavpiter,Pascal,false,false,false,0,false,false,false,false +timvisee/ffsend-api,timvisee,Rust,true,false,false,4,false,true,false,true +kazizi/Board-Game-Android-App,kazizi,Java,false,false,false,0,false,false,false,false +Tjohns/Photo-Album-Showcase,Tjohns,C#,false,false,false,0,false,false,false,false +kanwarpal/Angular-routes,kanwarpal,TypeScript,false,false,false,0,false,false,false,false +fledware/kotlin-statsd-client,fledware,Kotlin,false,false,false,0,false,false,false,false +EnderNightLord-Chromebook/JuiceFileManagerMINIMAL,EnderNightLord-Chromebook,Python,false,false,false,0,false,false,false,false +thinhglory/dienmay,thinhglory,PHP,false,false,false,0,false,false,false,false +strategic.zone/server_ledsAPA102,strategic.zone,Python,false,true,false,0,false,false,false,false +Cybarite/zmq,Cybarite,Rebol,false,false,false,0,false,false,false,false +gmark4212/trat,gmark4212,Python,false,false,false,0,false,false,false,false +jogodavelha_v2/api_jogo,jogodavelha_v2,Java,false,false,true,0,false,false,false,false +cunity/cunit,cunity,C,true,false,false,4,true,true,false,true +CulturaTCC/CulturaWebTCC,CulturaTCC,Ruby,false,false,false,0,false,false,false,false +Marco-TestGroup/main-pc,Marco-TestGroup,,false,false,false,0,false,false,false,false +aalonzolu/drupal-8-docker,aalonzolu,PHP,true,false,false,2,false,true,true,false +jimmy-cedenoc/gestionCuestionarios,jimmy-cedenoc,PHP,false,false,false,0,false,false,false,false +wangqianggithub/sky,wangqianggithub,HTML,false,false,false,0,false,false,false,false +mobigod0/teams-gamification,mobigod0,Java,false,false,false,0,false,false,false,false +pantacor/pantahub-pvr,pantacor,Go,true,false,false,1,true,false,false,false +scantrax/arams_slam_labsession,scantrax,C++,false,false,false,0,false,false,false,false +pwa-minimus/pwa-minimus.gitlab.io,pwa-minimus,HTML,true,false,false,1,false,false,true,false +SPUFPR/PokeAgenda,SPUFPR,Java,false,false,false,0,false,false,false,false +mateusmalveira/codeigniter,mateusmalveira,PHP,false,false,false,0,false,false,false,false +pantacor/pv-platforms/alpine-router,pantacor,Makefile,true,false,false,1,true,false,false,false +gitmate-micro/listen,gitmate-micro,Go,true,false,false,1,true,false,false,false +duncan-small/Tendenci-Blog,duncan-small,HTML,false,false,false,0,false,false,false,false +jogodavelha_v2/ReceiveLogs,jogodavelha_v2,Java,false,false,false,0,false,false,false,false +vbmithr/tezosledger,vbmithr,OCaml,false,false,false,0,false,false,false,false +belinglima/Robocode-Guerra,belinglima,Java,false,false,false,0,false,false,false,false +belinglima/ES2-CodeIgniter,belinglima,PHP,false,false,false,0,false,false,false,false +GoogzGazuli/mo-runes-mod,GoogzGazuli,JavaScript,false,false,false,0,false,false,false,false +codedust/ThreadsVsTasks,codedust,C#,false,false,false,0,false,false,false,false +zbrinsek/bash_setup,zbrinsek,Shell,false,false,false,0,false,false,false,false +codedust/ThreadConcurrency,codedust,C#,false,false,false,0,false,false,false,false +SeikoTheWiz/GuildStatsRoyale,SeikoTheWiz,PHP,false,false,false,0,false,false,false,false +VV5/south-china-sea,VV5,Vue,true,false,false,1,false,true,false,false +xiguaxigua/vuep-magic-patch,xiguaxigua,JavaScript,false,false,false,0,false,false,false,false +reuben.biel/publications,reuben.biel,,false,false,false,0,false,false,false,false +105021108/final_project,105021108,JavaScript,true,false,false,1,false,false,true,false +bag3318/UltimateShucklePokemonFileMaker,bag3318,C#,false,false,false,0,false,false,false,false +Syping/gta5view,Syping,C++,false,false,false,0,false,false,false,false +thauanne/CadastroJava,thauanne,Java,false,false,false,0,false,false,false,false +oofga/java/canvas,oofga,Java,false,false,false,0,false,false,false,false +newbranltd/gulp-server-io,newbranltd,JavaScript,false,false,false,0,false,false,false,false +SpeciesFileGroup/taxonworks,SpeciesFileGroup,Ruby,true,false,false,1,false,true,false,false +aapjeisbaas/hello-container,aapjeisbaas,Python,true,false,false,3,true,true,true,false +newbranltd/generator-rtjs,newbranltd,JavaScript,false,false,false,0,false,false,false,false +xoan/escornabot-ext3d,xoan,OpenSCAD,false,false,false,0,false,false,false,false +xoan/escornabot-extboard,xoan,,false,false,false,0,false,false,false,false +cosmicraysim/cresta,cosmicraysim,C++,false,false,false,0,false,false,false,false +cn1991/spiceX,cn1991,TypeScript,false,false,false,0,false,false,false,false +janlindblom/ruby-timetraveler,janlindblom,Ruby,false,false,false,0,false,false,false,false +EvgeniyTurnaev/spale.io,EvgeniyTurnaev,,false,false,false,0,false,false,false,false +bradwood/pyclibase,bradwood,Python,true,false,false,4,false,false,false,false +mangoosta/articulos-cienciasdedatos,mangoosta,JupyterNotebook,false,false,false,0,false,false,false,false +snehaldangroshiya/alpha-webapp,snehaldangroshiya,JavaScript,false,false,false,0,false,false,false,false +VincentCote/tec-fe-mobile,VincentCote,CSS,false,false,false,0,false,false,false,false +haticeedis/js-search,haticeedis,JavaScript,false,false,false,0,false,false,false,false +PauloBrasiliense/TEACHEIFIT,PauloBrasiliense,CSS,false,false,false,0,false,false,false,false +vladradi/channelstat,vladradi,HTML,true,false,false,2,false,true,true,false +mdbouchard/TogglJiraSync,mdbouchard,Groovy,true,false,false,3,true,false,false,false +kedwinchen/cmd_alias,kedwinchen,Shell,false,false,false,0,false,false,false,false +carlos401/ldapSyncBot,carlos401,Python,false,false,false,0,false,false,false,false +GoRo3/gluchy_tel,GoRo3,C,false,false,false,0,false,false,false,false +cagatay-y/tootle-flatpak,cagatay-y,,true,false,false,1,false,true,false,false +xRegis/EP2_BATALHA_NAVAL,xRegis,Java,false,false,false,0,false,false,false,false +pyguri/UTBM_LO41_Preempting_Death_Star_Lift_To_The_Highest_Ground,pyguri,C,false,false,false,0,false,false,false,false +frissdiegurke/jeopardy,frissdiegurke,JavaScript,false,false,false,0,false,false,false,false +NvH/lp-evaluator,NvH,Java,false,false,true,0,false,false,false,false +beppegg/xchange18-random-salutation,beppegg,Java,false,false,true,0,false,false,false,false +jeffreyhorner/fortnite-replay,jeffreyhorner,JavaScript,false,false,false,0,false,false,false,false +oscar6echo/ipyauth,oscar6echo,JupyterNotebook,true,false,false,1,false,true,false,false +vapordevs/sm,vapordevs,,false,false,false,0,false,false,false,false +renatocf/MAC0350-PROJECT,renatocf,PLpgSQL,false,false,false,0,false,false,false,false +garneck/session-server,garneck,Squirrel,false,false,false,0,false,false,false,false +ningsy1017/react-redux,ningsy1017,JavaScript,false,false,false,0,false,false,false,false +matejv/AndroidApp-DigiRacun,matejv,Java,false,false,false,0,false,false,false,false +yewintnaing44/NativeAudio,yewintnaing44,Java,false,false,false,0,false,false,false,false +vsichka/request-many.npm,vsichka,JavaScript,false,false,false,0,false,false,false,false +mehalter/genome,mehalter,HTML,false,false,false,0,false,false,false,false +roddhjav/pass-audit,roddhjav,Shell,true,false,false,3,false,true,true,false +anissakh/P-ANDROIDE,anissakh,Python,false,false,false,0,false,false,false,false +FragorMagnus/FragorMagnus,FragorMagnus,C#,false,false,false,0,false,false,false,false +rovora/FIFA_ML,rovora,Python,false,false,false,0,false,false,false,false +Samie/IHM,Samie,C#,false,false,false,0,false,false,false,false +anderflash/mirim,anderflash,,false,false,false,0,false,false,false,false +pjranki/nes,pjranki,C++,false,false,false,0,false,false,false,false +pjranki/esp8266-bsides2018-nes,pjranki,C++,false,false,false,0,false,false,false,false +agibuild/StockPlanner,agibuild,,false,false,false,0,false,false,false,false +tamilarasumk/GDoc-Trello-Integration,tamilarasumk,HTML,false,false,false,0,false,false,false,false +darklegacy/bzip2,darklegacy,C,false,false,false,0,false,false,false,false +USE-OCL/use,USE-OCL,Java,false,false,false,0,false,false,false,false +germainmz/StageSIO2018,germainmz,JavaScript,false,false,false,0,false,false,false,false +logicaldoc/logicaldoc-ce-docker,logicaldoc,Shell,false,false,false,0,false,false,false,false +arsouyes/byte-overflow,arsouyes,QML,true,false,false,2,true,false,false,false +redsharpbyte/fets,redsharpbyte,Python,true,true,false,1,false,true,false,false +azli5083/debian8,azli5083,Shell,false,false,false,0,false,false,false,false +foodbook_documents/hub,foodbook_documents,,false,false,false,0,false,false,false,false +argoal/Smarthome2,argoal,C#,false,false,false,0,false,false,false,false +goncalosamuel/auth-provider,goncalosamuel,HTML,false,false,true,0,false,false,false,false +boxbox557/SS-2018-final-project,boxbox557,JavaScript,true,false,false,1,false,false,true,false +cinc/cinc-server,cinc,Lua,false,false,false,0,false,false,false,false +Fabi0Z/GBBF,Fabi0Z,CSS,false,false,false,0,false,false,false,false +cgps/pathogenwatch/roadmap,cgps,,false,false,false,0,false,false,false,false +DavisA/Snake-C-SDL,DavisA,C,false,false,false,0,false,false,false,false +Muninn/ireland-reg-lookup,Muninn,PHP,false,false,false,0,false,false,false,false +matej.plavevski/HackathonFlask,matej.plavevski,Python,true,true,false,1,false,true,false,false +dariusz.dybich/chat,dariusz.dybich,TypeScript,false,false,false,0,false,false,false,false +DearMad/Download_Manager,DearMad,Shell,false,false,false,0,false,false,false,false +Morimasa/TaigaXMLconverter,Morimasa,Python,false,false,false,0,false,false,false,false +bioinformaticsframework/v1,bioinformaticsframework,Go,false,false,false,0,false,false,false,false +juanfgs/yt-browser,juanfgs,Python,false,true,false,0,false,false,false,false +Tazial/YeetBot,Tazial,Python,false,true,false,0,false,false,false,false +louisvv/DesignPattern,louisvv,Java,false,false,false,0,false,false,false,false +7learn-experts/woo.exp,7learn-experts,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-crypto,TomasHubelbauer,,false,false,false,0,false,false,false,false +amisalabir/bsbl-bd.com,amisalabir,PHP,false,false,false,0,false,false,false,false +gitlab-org/security-products/analyzers/security-code-scan,gitlab-org,Go,false,false,false,0,false,false,false,false +brn1337/apkast,brn1337,Shell,false,false,false,0,false,false,false,false +LittleHow/vMME,LittleHow,C,false,false,false,0,false,false,false,false +gaellebs/Framework,gaellebs,C#,false,false,false,0,false,false,false,false +webuild.world/WeBuild.World,webuild.world,TypeScript,true,false,false,2,true,false,true,false +tedbundyjr/cake3-rest-api,tedbundyjr,PHP,false,false,false,0,false,false,false,false +roberto.gallea/laravel-tutorial,roberto.gallea,PHP,false,false,false,0,false,false,false,false +obrimelcodi/web,obrimelcodi,CSS,false,false,false,0,false,false,false,false +BrightOne/dotfiles,BrightOne,Python,false,false,false,0,false,false,false,false +jrswab/archivatory,jrswab,PHP,false,false,false,0,false,false,false,false +BaileyJM02/Avaline,BaileyJM02,CSS,false,false,false,0,false,false,false,false +federico.duca/chatFD_term_linux,federico.duca,C,false,false,false,0,false,false,false,false +brendan/sast-example,brendan,Ruby,true,false,false,1,false,true,false,false +projeto-es/caboabanana,projeto-es,JavaScript,true,false,false,2,false,true,false,false +daygle/node-stratum-pool,daygle,JavaScript,false,false,false,0,false,false,false,false +mtnygard/m2m.router,mtnygard,JavaScript,true,false,false,1,false,true,false,false +khachuy2705/skype_notify,khachuy2705,Python,false,true,false,0,false,false,false,false +unnamedtxt/pricescan-server,unnamedtxt,Python,false,false,false,0,false,false,false,false +skrillexmau/UI-Design,skrillexmau,TypeScript,false,false,false,0,false,false,false,false +hemasudheerb/keerthi-portfolio,hemasudheerb,HTML,false,false,false,0,false,false,false,false +Doyaguillo97/servidor-http,Doyaguillo97,Java,false,false,false,0,false,false,false,false +Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,Orange-OpenSource,Shell,true,false,false,17,false,true,false,false +KBPsystem/ntdc-voiceChat,KBPsystem,JavaScript,false,false,false,0,false,false,false,false +anarcat/presentation-ethics,anarcat,Makefile,false,false,false,0,false,false,false,false +galredan/ToDoList,galredan,TypeScript,false,false,false,0,false,false,false,false +jonas_jostmann/oer-meltdown,jonas_jostmann,EmacsLisp,true,false,false,1,false,false,true,false +Vertana/lolresearchbot,Vertana,C#,true,false,false,9,true,true,false,true +flyingchipmunk_ansible/dotfiles,flyingchipmunk_ansible,,false,false,false,0,false,false,false,false +alemaoec/poc-vue,alemaoec,JavaScript,false,false,false,0,false,false,false,false +orchardandgrove-oss/suser,orchardandgrove-oss,Swift,false,false,false,0,false,false,false,false +dany5639/XeniaHaloTool,dany5639,C#,false,false,false,0,false,false,false,false +abhinav31796/BitMEX_websocket,abhinav31796,Python,false,false,false,0,false,false,false,false +em70/sberbank-test-java,em70,Java,false,false,true,0,false,false,false,false +mshepherd/ludoj-recommender,mshepherd,Python,false,true,false,0,false,false,false,false +mshepherd/ludoj-server,mshepherd,Python,false,false,false,0,false,false,false,false +hgabor47/iecmodul,hgabor47,PHP,false,false,false,0,false,false,false,false +rso_2018_twitter_clone/hydrogen,rso_2018_twitter_clone,Python,true,true,false,3,true,true,false,true +alespejznoch/LsodaCpp,alespejznoch,C++,false,false,false,0,false,false,false,false +zlintz/openwest-2018-externalizing-configs,zlintz,,false,false,false,0,false,false,false,false +mary920130/pico-placa-predictor,mary920130,JavaScript,false,false,false,0,false,false,false,false +ajdeguzman/wifi-irewards,ajdeguzman,Dart,false,false,false,0,false,false,false,false +lyndsysimon/relax,lyndsysimon,Python,false,false,false,0,false,false,false,false +jackorp/jekyll-git-authors,jackorp,Ruby,true,false,false,2,false,true,true,false +ajiro/ajiro.fr,ajiro,HTML,true,false,false,3,true,true,true,false +Ivo1971/ILUStateMachine,Ivo1971,C++,true,false,false,1,false,true,false,false +compiz/ccsm,compiz,Python,false,false,false,0,false,false,false,false +drx-tw/cdws-2.0-team-a,drx-tw,HTML,true,false,false,5,true,true,true,true +drx-tw/cdws-2.0-team-b,drx-tw,HTML,true,false,false,5,true,true,true,true +rodsoares/emplaque-online,rodsoares,PHP,false,false,false,0,false,false,false,false +sudouser2010/pip-template,sudouser2010,Python,false,false,false,0,false,false,false,false +tds-anonymous/maya-math-nodes,tds-anonymous,C++,false,false,false,0,false,false,false,false +correaa/boost-covariant,correaa,C++,false,false,false,0,false,false,false,false +daygle/node-multi-hashing,daygle,C,false,false,false,0,false,false,false,false +tds-anonymous/awesome-vfx,tds-anonymous,,false,false,false,0,false,false,false,false +gitm8/npmpty,gitm8,JavaScript,true,false,false,2,false,true,true,false +Hatscat/bytebeat-sequencer,Hatscat,Elm,true,false,false,1,false,true,false,false +overflyer/ownlinux,overflyer,Shell,false,false,false,0,false,false,false,false +valuer/main,valuer,TypeScript,false,false,false,0,false,false,false,false +DEC05EBA/odhtdb,DEC05EBA,C++,false,false,false,0,false,false,false,false +Selet/SisPetShop,Selet,Java,true,false,false,2,true,true,false,false +TomasHubelbauer/bloggo-wedos,TomasHubelbauer,,false,false,false,0,false,false,false,false +BCable/sqlier,BCable,Shell,false,false,false,0,false,false,false,false +Redrield/SaturnShell,Redrield,Kotlin,true,false,false,2,true,true,false,false +lucidlylogicole/weather_noaa_data,lucidlylogicole,Python,false,false,false,0,false,false,false,false +nodiscc/awesome-selfhosted,nodiscc,JavaScript,false,false,false,0,false,false,false,false +shaarli/Shaarli,shaarli,PHP,false,false,false,0,false,false,false,false +shaarli/python-shaarli-client,shaarli,Python,false,false,false,0,false,false,false,false +shaarli/devtools,shaarli,Python,false,true,false,0,false,false,false,false +shaarli/api-documentation,shaarli,Shell,false,false,false,0,false,false,false,false +ro-mdl-themes/moodle-theme_waxed,ro-mdl-themes,CSS,false,false,false,0,false,false,false,false +ipynb/z3,ipynb,Python,true,false,false,1,false,true,false,false +vannilla/Browsepaper,vannilla,JavaScript,false,false,false,0,false,false,false,false +flyingchipmunk_ansible/cloudflare_ddns,flyingchipmunk_ansible,,false,false,false,0,false,false,false,false +dpeukert/chmi-weather-radar-api,dpeukert,,false,false,false,0,false,false,false,false +Swedneck/geeko-kde-theme,Swedneck,,false,false,false,0,false,false,false,false +Tagmeh/CNTestRemover,Tagmeh,VisualBasic,false,false,false,0,false,false,false,false +pgrangeiro/python-coinmarketcap-client,pgrangeiro,Python,true,false,false,1,false,true,false,false +Apriyanblog29/Xl-DK,Apriyanblog29,Python,false,false,false,0,false,false,false,false +biswasab/ALPM,biswasab,Shell,false,false,false,0,false,false,false,false +narate/openresty,narate,,false,false,false,0,false,false,false,false +TheOuterLinux/BitChuteNotes,TheOuterLinux,Shell,false,false,false,0,false,false,false,false +b0/initials-avatar,b0,Go,false,false,false,0,false,false,false,false +sjugge/ansible-playground,sjugge,Ruby,false,false,false,0,false,false,false,false +sjugge/ansible-role-utilities,sjugge,,false,false,false,0,false,false,false,false +sjugge/aws-helper,sjugge,Python,true,false,false,1,false,true,false,false +sjugge/docker-hugo,sjugge,,false,false,false,0,false,false,false,false +sjugge/docker-playground,sjugge,HTML,false,false,false,0,false,false,false,false +sjugge/dotfiles,sjugge,Shell,false,false,false,0,false,false,false,false +sjugge/python-scaffolding-click,sjugge,Python,false,false,false,0,false,false,false,false +sjugge/vagrant-playground,sjugge,Shell,false,false,false,0,false,false,false,false +bots-garden/bots/q,bots-garden,Kotlin,false,false,true,0,false,false,false,false +nile-dev/TODO,nile-dev,,false,false,false,0,false,false,false,false +choban/chob,choban,Python,false,false,false,0,false,false,false,false +johngian/agoodplace,johngian,Ruby,true,false,false,1,false,true,false,false +Titan-C/org-webcapture,Titan-C,JavaScript,false,false,false,0,false,false,false,false +DavidGriffith/inform6unix,DavidGriffith,C++,false,false,false,0,false,false,false,false +SeraphyBR/DotFiles,SeraphyBR,Shell,false,false,false,0,false,false,false,false +ryan-projecthax/SilkroadLinux,ryan-projecthax,Python,false,false,false,0,false,false,false,false +Ctrl_Null/ArchLinuxUEFI,Ctrl_Null,,false,false,false,0,false,false,false,false +loic.petit/sfvfile,loic.petit,C++,false,false,false,0,false,false,false,false +Sigma-One/PySocketChat,Sigma-One,Python,false,false,false,0,false,false,false,false +Sigma-One/SigmaOne-Nuclear,Sigma-One,Lua,false,false,false,0,false,false,false,false +Sigma-One/SigmaOne-Military,Sigma-One,Lua,false,false,false,0,false,false,false,false +Sigma-One/sigma-one.gitlab.io,Sigma-One,HTML,true,false,false,1,false,false,true,false +duncanduguuid/Aetherforged_Opensource,duncanduguuid,C#,false,false,false,0,false,false,false,false +sadesyllas/bluetooth_sensor_monitor,sadesyllas,Elixir,false,false,false,0,false,false,false,false +hilbert-10/eucys-18,hilbert-10,Isabelle,false,false,false,0,false,false,false,false +illiasse.rifki1/carrevolutest,illiasse.rifki1,JavaScript,false,false,false,0,false,false,false,false +ognarb/example-makefile,ognarb,TeX,false,false,false,0,false,false,false,false +ognarb/rfsview,ognarb,Rust,false,false,false,0,false,false,false,false +ognarb/webnovel-manager,ognarb,Python,false,true,false,0,false,false,false,false +neetsdkasu/mysnippetsforcp,neetsdkasu,Rust,false,false,false,0,false,false,false,false +dword4/hockeystats,dword4,Python,false,false,false,0,false,false,false,false +p4block/Yet-another-Arch-install-guide,p4block,,false,false,false,0,false,false,false,false +maxigaz/manjaro-forum-dark-theme,maxigaz,CSS,false,false,false,0,false,false,false,false +philbooth/pbvi,philbooth,Rust,true,false,false,1,false,true,false,false +dosowisko.net/libsuperderpy,dosowisko.net,C,false,false,false,0,false,false,false,false +muesli/flipdots,muesli,Go,false,false,false,0,false,false,false,false +muesli/gamut,muesli,Go,false,false,false,0,false,false,false,false +muesli/kmeans,muesli,Go,false,false,false,0,false,false,false,false +sumner/dotfiles,sumner,JavaScript,false,false,false,0,false,false,false,false +triska/the-power-of-prolog,triska,HTML,false,false,false,0,false,false,false,false +SchedMD/slurm,SchedMD,C,false,false,false,0,false,false,false,false +debrouxl/tiemu,debrouxl,,false,false,false,0,false,false,false,false +yumh/mymenu,yumh,C,false,false,false,0,false,false,false,false +jacquesherren/smartphysio-webapp,jacquesherren,JavaScript,true,false,false,1,false,false,true,false +mosra/corrade,mosra,C++,false,false,false,0,false,false,false,false +PASSYpw/PASSY,PASSYpw,PHP,false,false,false,0,false,false,false,false +Scrumplex/ScreenshotBASH,Scrumplex,Shell,false,false,false,0,false,false,false,false +kenrestivo/spazradioapp,kenrestivo,Clojure,false,false,false,0,false,false,false,false +GovanifY/kh2mdlx,GovanifY,C++,false,false,false,0,false,false,false,false +GovanifY/kh2vif,GovanifY,C++,false,false,false,0,false,false,false,false +lupine/go-mimedb,lupine,Go,false,false,false,0,false,false,false,false +BoFFire/Kabyle-latin-script,BoFFire,,false,false,false,0,false,false,false,false +Kamiyaa/arclight,Kamiyaa,C,false,false,false,0,false,false,false,false +Kamiyaa/dwm,Kamiyaa,C,false,false,false,0,false,false,false,false +Kamiyaa/dwmstatus,Kamiyaa,C,false,false,false,0,false,false,false,false +Kamiyaa/miemasu_old,Kamiyaa,C,false,false,false,0,false,false,false,false +Kamiyaa/ruiji,Kamiyaa,C,false,false,false,0,false,false,false,false +Kamiyaa/SpyMangler,Kamiyaa,Verilog,false,false,false,0,false,false,false,false +Kamiyaa/systemd-unit-files,Kamiyaa,Makefile,false,false,false,0,false,false,false,false +Kamiyaa/SenpaiBot,Kamiyaa,Python,false,false,false,0,false,false,false,false +BZHDeveloper/mt7610u_wifi_sta_v3002_dpo_20130916,BZHDeveloper,C,false,false,false,0,false,false,false,false +ILMostro/ag-ops,ILMostro,Shell,false,false,false,0,false,false,false,false +Exagone313/dotfiles,Exagone313,Shell,false,false,false,0,false,false,false,false +Exagone313/arch-packages,Exagone313,Shell,false,false,false,0,false,false,false,false +Tardo/Zpg,Tardo,C++,false,false,false,0,false,false,false,false +carmanaught/mpvcontextmenu,carmanaught,Lua,false,false,false,0,false,false,false,false +Celeo/Vee,Celeo,JavaScript,false,false,false,0,false,false,false,false +craftyguy/autolight,craftyguy,Python,false,false,false,0,false,false,false,false +craftyguy/esp-botvac,craftyguy,Python,false,false,false,0,false,false,false,false +purpleidea/mgmt,purpleidea,Go,false,false,false,0,false,false,false,false +somasis/tumblrthemes,somasis,HTML,false,false,false,0,false,false,false,false +No-Agenda/Link-Analysis,No-Agenda,,false,false,false,0,false,false,false,false +veryeasily/veryeasily.gitlab.io,veryeasily,HTML,true,false,false,1,false,false,true,false +hrbrmstr/town-council,hrbrmstr,Python,false,false,false,0,false,false,false,false +hrbrmstr/hrbraddins,hrbrmstr,R,false,false,false,0,false,false,false,false +hrbrmstr/bomr,hrbrmstr,HTML,false,false,false,0,false,false,false,false +chjordan/gator,chjordan,Ruby,false,false,false,0,false,false,false,false +No-Agenda/torrent-archive,No-Agenda,,false,false,false,0,false,false,false,false +litecord/gateway,litecord,Elixir,false,false,false,0,false,false,false,false +litecord/rest-py,litecord,Python,false,true,false,0,false,false,false,false +popitkr/popit_api,popitkr,Go,false,false,false,0,false,false,false,false +tiagoantao/bioinf-python,tiagoantao,OpenEdgeABL,false,false,false,0,false,false,false,false +jquagga/Washboard,jquagga,HTML,true,false,false,1,false,false,true,false +luna/jose,luna,Python,false,true,false,0,false,false,false,false +popitkr/popit_react,popitkr,CSS,false,false,false,0,false,false,false,false +popitkr/popit_searcher,popitkr,Java,false,false,true,0,false,false,false,false +cpulley/dotfiles,cpulley,Shell,false,false,false,0,false,false,false,false +Zerqz/iptables-vpn-kill,Zerqz,Shell,false,false,false,0,false,false,false,false +toaruos/misaka,toaruos,C,false,false,false,0,false,false,false,false +toaruos/toaru-vidplayer,toaruos,C,false,false,false,0,false,false,false,false +HispaGatos/hispagatos.org,HispaGatos,HTML,true,false,false,2,false,true,true,false +aclonegeek/dotfiles,aclonegeek,Shell,false,false,false,0,false,false,false,false +alfiedotwtf/rustify,alfiedotwtf,Shell,false,false,false,0,false,false,false,false +alfiedotwtf/x11-leet,alfiedotwtf,Makefile,false,false,false,0,false,false,false,false +dou4cc/dou4cc_Code,dou4cc,HTML,false,false,false,0,false,false,false,false +nivaca/rainbow-theme,nivaca,,false,false,false,0,false,false,false,false +maasencioh/carta-de-logros,maasencioh,JavaScript,false,false,false,0,false,false,false,false +lans98/num-methods-cpp,lans98,C++,false,false,false,0,false,false,false,false +voidincournic/MeowPak,voidincournic,HTML,false,false,false,0,false,false,false,false +Cynosphere/gitlab2discord,Cynosphere,JavaScript,false,false,false,0,false,false,false,false +perillamint/nx-fwextract,perillamint,Python,false,false,false,0,false,false,false,false +eisterman/MurPy,eisterman,Python,false,false,false,0,false,false,false,false +eisterman/NewGameOfLifeXL,eisterman,TeX,false,false,false,0,false,false,false,false +eisterman/num-integral,eisterman,Rust,false,false,false,0,false,false,false,false +eisterman/Solar-System-Rust,eisterman,Rust,false,false,false,0,false,false,false,false +eisterman/synapse,eisterman,,false,false,false,0,false,false,false,false +aigis_bot/OctoBotLocales,aigis_bot,Python,false,false,false,0,false,false,false,false +deikatsuo/bracer,deikatsuo,Python,false,false,false,0,false,false,false,false +jashankj/admtools,jashankj,Haskell,true,false,false,1,false,true,false,false +jashankj/almondbread,jashankj,JavaScript,false,false,false,0,false,false,false,false +NeoWorkgroup/GDP-8,NeoWorkgroup,C,false,false,false,0,false,false,false,false +jashankj/dotfiles,jashankj,EmacsLisp,false,false,false,0,false,false,false,false +jashankj/spim-simulator,jashankj,C++,false,false,false,0,false,false,false,false +ferreiradaselva/mathc,ferreiradaselva,C,false,false,false,0,false,false,false,false +Acizza/bcnotif,Acizza,Rust,false,false,false,0,false,false,false,false +Acizza/srfinder,Acizza,Rust,false,false,false,0,false,false,false,false +ferreiradaselva/gfw,ferreiradaselva,C,false,false,false,0,false,false,false,false +PoisonNinja/quark,PoisonNinja,Objective-C,false,false,false,0,false,false,false,false +PoisonNinja/Pepper,PoisonNinja,C++,false,false,false,0,false,false,false,false +srnb/discord-intellij,srnb,Java,false,false,false,0,false,false,false,false +ferreiradaselva/monoglyph,ferreiradaselva,C,false,false,false,0,false,false,false,false +ao/PTT-API,ao,Python,false,false,false,0,false,false,false,false +brucezhang1993/PyIrcBot,brucezhang1993,Python,false,false,false,0,false,false,false,false +No-Agenda/NASummaries,No-Agenda,Python,false,false,false,0,false,false,false,false +ruany/LiteBansAPI,ruany,Java,false,false,true,0,false,false,false,false +DavidMckissick/Simple-commit-style-guide,DavidMckissick,,false,false,false,0,false,false,false,false +chusiang/ansible-book-for-it-examples,chusiang,Ruby,false,false,false,0,false,false,false,false +tboox/gbox,tboox,C,false,false,false,0,false,false,false,false +chusiang/gup,chusiang,CSS,true,false,false,1,false,false,true,false +chusiang/note.drx.tw,chusiang,CSS,false,false,false,0,false,false,false,false +chusiang/sm,chusiang,CSS,false,false,false,0,false,false,false,false +chusiang/tuxENV,chusiang,Shell,false,false,false,0,false,false,false,false +chusiang/vimrc,chusiang,Vimscript,false,false,false,0,false,false,false,false +chusiang/wiki.drx.tw,chusiang,HTML,true,false,false,1,false,false,true,false +Karl190/cppRPG,Karl190,C++,false,false,false,0,false,false,false,false +serebit/logkat,serebit,Kotlin,true,false,false,3,true,true,true,false +serebit/autotitan,serebit,Kotlin,true,false,false,1,true,false,false,false +alexm98/itsumi,alexm98,PHP,false,false,false,0,false,false,false,false +bdemirkir/slim-json-view,bdemirkir,PHP,false,false,false,0,false,false,false,false +bitcoinmx/public-private-key-demo,bitcoinmx,JavaScript,false,false,false,0,false,false,false,false +betseg/minestest,betseg,C,true,false,false,1,false,true,false,false +deikatsuo/manuk,deikatsuo,Rust,true,false,false,1,true,false,false,false +jonocarroll/mathpix,jonocarroll,R,true,false,false,1,false,true,false,false +my.hoih/cakeshop,my.hoih,JavaScript,false,false,false,0,false,false,false,false +ceveka/golge-engine,ceveka,C++,false,false,false,0,false,false,false,false +jfaler/Bitcoin-Slot-Machine,jfaler,JavaScript,false,false,false,0,false,false,false,false +jfaler/soup,jfaler,C#,false,false,false,0,false,false,false,false +jfaler/TinderAutoLiker,jfaler,Python,false,false,false,0,false,false,false,false +zxq9/erlmud,zxq9,HTML,false,false,false,0,false,false,false,false +zxq9/example-server,zxq9,Erlang,false,false,false,0,false,false,false,false +zxq9/zuuid,zxq9,Erlang,false,false,false,0,false,false,false,false +zxq9/zomp-doc,zxq9,HTML,false,false,false,0,false,false,false,false +Kendek/syno-router-scripts,Kendek,Shell,false,false,false,0,false,false,false,false +DriesA-Immalle/MIDIProjects,DriesA-Immalle,Processing,false,false,false,0,false,false,false,false +GIS-projects/Belgium-WMS,GIS-projects,,false,false,false,0,false,false,false,false +gaioso/lpic1,gaioso,Shell,true,false,false,2,false,true,true,false +ire4ever1190/app4flask,ire4ever1190,Python,true,true,false,1,false,true,false,false +saranshag/JavaRefresher-Selenium,saranshag,XSLT,false,false,false,0,false,false,false,false +edvorg/emacs-configs,edvorg,EmacsLisp,false,false,false,0,false,false,false,false +edvorg/spray,edvorg,Rust,true,false,false,1,false,true,false,false +kangaroux/flaskrouting,kangaroux,Python,false,true,false,0,false,false,false,false +kangaroux/hamplify,kangaroux,Python,false,false,false,0,false,false,false,false +ruduran/game-of-life,ruduran,Rust,false,false,false,0,false,false,false,false +viewv/math,viewv,,false,false,false,0,false,false,false,false +jaller94/silvy-matrix,jaller94,JavaScript,true,false,false,1,false,true,false,false +kot-zrodlowy/kot-zrodlowy.gitlab.io,kot-zrodlowy,HTML,true,false,false,2,false,true,true,false +miracle091/mudassist,miracle091,C#,false,false,false,0,false,false,false,false +superna9999/linux,superna9999,,false,false,false,0,false,false,false,false +open-source-knihovna/KohaCZ,open-source-knihovna,Perl,false,false,false,0,false,false,false,false +open-source-knihovna/SmartWithdrawals,open-source-knihovna,Perl,false,false,false,0,false,false,false,false +DHSYongJun/python,DHSYongJun,Python,false,false,false,0,false,false,false,false +darkf/seddit,darkf,TypeScript,false,false,false,0,false,false,false,false +Madis0/hidden-settings,Madis0,,false,false,false,0,false,false,false,false +gabmus/ardhue,gabmus,Python,false,false,false,0,false,false,false,false +gabmus/ardhue_core,gabmus,C++,false,false,false,0,false,false,false,false +gabmus/GNOMEPipe,gabmus,Python,false,false,false,0,false,false,false,false +parduscix/iso_duzenleyici,parduscix,Shell,false,false,false,0,false,false,false,false +benjamin.kircher/foo-cpp,benjamin.kircher,C++,false,false,false,0,false,false,false,false +dr.sybren/import-gerber,dr.sybren,Python,false,false,false,0,false,false,false,false +lf_Builds/crunchy,lf_Builds,CSS,false,false,false,0,false,false,false,false +r2p2/stopwatch,r2p2,C++,true,false,false,1,false,true,false,false +r2p2/yagbe,r2p2,C++,false,false,false,0,false,false,false,false +striker.sh/dotfiles,striker.sh,Lua,false,false,false,0,false,false,false,false +psamim/dotfiles,psamim,Shell,false,false,false,0,false,false,false,false +dailyprog/dailyprog.org,dailyprog,HTML,false,false,false,0,false,false,false,false +sivhong.kshrd/SroulTinh,sivhong.kshrd,HTML,false,false,false,0,false,false,false,false +amy-assistant/docs,amy-assistant,,false,false,false,0,false,false,false,false +sulami/sulami.gitlab.io,sulami,Haskell,false,false,false,0,false,false,false,false +iskcrew/isk,iskcrew,Ruby,true,false,false,1,false,true,false,false +finbar-crago/Verilog-SHA256,finbar-crago,Verilog,false,false,false,0,false,false,false,false +finbar-crago/Verilog-UART,finbar-crago,Verilog,false,false,false,0,false,false,false,false +edent/edent.tel,edent,HTML,false,false,false,0,false,false,false,false +markuman/move2gitea,markuman,Python,false,false,false,0,false,false,false,false +sixxie/dunjunz,sixxie,Assembly,false,false,false,0,false,false,false,false +sixxie/cyd,sixxie,Perl,false,false,false,0,false,false,false,false +tavu/perl6-platform,tavu,Perl6,false,false,false,0,false,false,false,false +sixxie/booty,sixxie,Assembly,false,false,false,0,false,false,false,false +sysrpl/codebot.shell,sysrpl,Pascal,false,false,false,0,false,false,false,false +luksamuk/BasicPlatformer,luksamuk,C++,false,false,false,0,false,false,false,false +agrahn/animate,agrahn,TeX,false,false,false,0,false,false,false,false +INdek/discogs-rs,INdek,Rust,false,false,false,0,false,false,false,false +INdek/llang,INdek,Rust,false,false,false,0,false,false,false,false +INdek/LuaNativeObjects,INdek,Lua,false,false,false,0,false,false,false,false +INdek/nom-lua,INdek,Rust,false,false,false,0,false,false,false,false +ShirOS/LunaFramework/Luna-Skeleton,ShirOS,PHP,false,false,false,0,false,false,false,false +flipcoder/FRAG.EXE,flipcoder,C++,false,false,false,0,false,false,false,false +jkj/markov,jkj,C++,false,false,false,0,false,false,false,false +flipcoder/qor,flipcoder,C++,false,false,false,0,false,false,false,false +flipcoder/siege-tools,flipcoder,Python,false,false,false,0,false,false,false,false +flipcoder/vim-cardmode,flipcoder,Vimscript,false,false,false,0,false,false,false,false +flipcoder/bomberoni,flipcoder,Python,false,true,false,0,false,false,false,false +flipcoder/bouncingship,flipcoder,C++,false,false,false,0,false,false,false,false +flipcoder/cardmode,flipcoder,Python,false,false,false,0,false,false,false,false +flipcoder/hacking-in-progress,flipcoder,C++,false,false,false,0,false,false,false,false +flipcoder/gboy,flipcoder,Python,false,true,false,0,false,false,false,false +flipcoder/kit,flipcoder,C++,false,false,false,0,false,false,false,false +flipcoder/microarmy,flipcoder,C++,false,false,false,0,false,false,false,false +flipcoder/qorpse,flipcoder,C++,false,false,false,0,false,false,false,false +souch/cpustats,souch,C,false,false,false,0,false,false,false,false +xpuspus/california_pollution_prediction,xpuspus,JupyterNotebook,false,false,false,0,false,false,false,false +hb9fxx/qrsspig,hb9fxx,C++,true,false,false,7,true,true,false,false +KonradBorowski/enum-map,KonradBorowski,Rust,true,false,false,1,false,true,false,false +ShirOS/LunaFramework/Luna,ShirOS,PHP,true,false,false,1,false,true,false,false +arigato-java/alexa-javabutton,arigato-java,JavaScript,true,false,false,1,false,true,false,false +redhatdemocentral/rhcs-travel-agency-demo,redhatdemocentral,Java,false,false,false,0,false,false,false,false +redhatdemocentral/rhcs-vacation-request-demo,redhatdemocentral,Shell,false,false,false,0,false,false,false,false +redhatdemocentral/rhcs-coolstore-demo,redhatdemocentral,CSS,false,false,false,0,false,false,false,false +redhatdemocentral/ocp-install-demo,redhatdemocentral,Batchfile,false,false,false,0,false,false,false,false +CharoSW/containers-theme,CharoSW,JavaScript,false,false,false,0,false,false,false,false +ultsi-projects/blakkisvuohi,ultsi-projects,JavaScript,true,false,false,1,false,true,false,false +ProjectAir/airMedia,ProjectAir,,false,false,false,0,false,false,false,false +ProjectAir/airDesign,ProjectAir,,false,false,false,0,false,false,false,false +ProjectAir/cqured,ProjectAir,PHP,false,false,false,0,false,false,false,false +ProjectAir/coreFramework,ProjectAir,CSS,false,false,false,0,false,false,false,false +MonkeyLog/BrewStillery,MonkeyLog,Rust,true,false,false,1,false,false,false,false +TheDarkula/citra,TheDarkula,C++,false,false,false,0,false,false,false,false +fieliapm/avsi4comp,fieliapm,Batchfile,false,false,false,0,false,false,false,false +shunonymous/mirmidivi,shunonymous,CMake,false,false,false,0,false,false,false,false +mythos234/SimplKernel-LL-G925F,mythos234,,false,false,false,0,false,false,false,false +vladocar/boilerplate-readme-template,vladocar,,false,false,false,0,false,false,false,false +nimbius/frugal,nimbius,,false,false,false,0,false,false,false,false +abarry/pi-video-replay,abarry,Python,false,false,false,0,false,false,false,false +agaric/chartist-plugin-controlcharts,agaric,JavaScript,false,false,false,0,false,false,false,false +agaric/chartist-plugin-legendary,agaric,HTML,false,false,false,0,false,false,false,false +doctormo/glyphicons-science,doctormo,Python,false,false,false,0,false,false,false,false +michaelallen1966/1804_python_healthcare_wordpress,michaelallen1966,JupyterNotebook,false,false,false,0,false,false,false,false +osiux/org-bash-utils,osiux,Shell,false,false,false,0,false,false,false,false +fhuberts/bndtoolsWorkspace,fhuberts,Shell,false,false,false,0,false,false,false,false +king011/king-go,king011,Go,false,false,false,0,false,false,false,false +philbooth/mixbot,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/FxHey,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/notes-mozlando-2015,philbooth,,false,false,false,0,false,false,false,false +philbooth/notes-renderconf-2016,philbooth,,false,false,false,0,false,false,false,false +philbooth/notes-velocityeu-2013,philbooth,,false,false,false,0,false,false,false,false +philbooth/notes-velocityus-2014,philbooth,,false,false,false,0,false,false,false,false +philbooth/pdfpages,philbooth,Python,false,true,false,0,false,false,false,false +philbooth/please-release-me,philbooth,Shell,false,false,false,0,false,false,false,false +philbooth/css-time.js,philbooth,JavaScript,false,false,false,0,false,false,false,false +philbooth/scrumpy,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/spooks.js,philbooth,JavaScript,false,false,false,0,false,false,false,false +philbooth/surch,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/tryer,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/vagueDate.js,philbooth,JavaScript,false,false,false,0,false,false,false,false +philbooth/vagueTime.js,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/wifi-disguise,philbooth,Shell,false,false,false,0,false,false,false,false +philbooth/www,philbooth,JavaScript,false,false,false,0,false,false,false,false +idzero/python-hands-on,idzero,JupyterNotebook,false,false,false,0,false,false,false,false +konstruktiv/Bixtep,konstruktiv,Shell,false,false,false,0,false,false,false,false +konstruktiv/csv2skos,konstruktiv,Python,false,false,false,0,false,false,false,false +brombinmirko/Football,brombinmirko,Python,false,false,false,0,false,false,false,false +cc-ru/Love2DMapEditor,cc-ru,Lua,false,false,false,0,false,false,false,false +brombinmirko/Telegram-Web-like-Desktop,brombinmirko,CSS,false,false,false,0,false,false,false,false +more-cores/discord-message-builder,more-cores,PHP,true,false,false,1,false,true,false,false +agravgaard/cbctrecon,agravgaard,C++,true,false,false,1,false,true,false,false +ric_harvey/bl_docker_to_production_ecs,ric_harvey,,false,false,false,0,false,false,false,false +leonv024/vulnerability_scanner,leonv024,Lua,false,false,false,0,false,false,false,false +ric_harvey/getAWSdocs,ric_harvey,Python,false,true,false,0,false,false,false,false +sk8geek/JamTimer,sk8geek,Java,false,false,false,0,false,false,false,false +sk8geek/Milly,sk8geek,Java,false,false,false,0,false,false,false,false +sk8geek/PenaltyTimer,sk8geek,Java,false,false,false,0,false,false,false,false +openrail/uk/darwin-nodejs,openrail,JavaScript,false,false,false,0,false,false,false,false +rmcgregor/aio-msgpack-rpc,rmcgregor,Python,true,false,false,3,true,true,true,false +getflights/spectrum,getflights,PHP,false,false,false,0,false,false,false,false +getflights/ember-attribute-validations,getflights,JavaScript,false,false,false,0,false,false,false,false +getflights/ember-field-components,getflights,JavaScript,false,false,false,0,false,false,false,false +getflights/ember-mist-components,getflights,JavaScript,false,false,false,0,false,false,false,false +gregmccoy/GPMDP-PlayerInfo,gregmccoy,Python,false,false,false,0,false,false,false,false +getflights/drupal8-autonumber,getflights,PHP,false,false,false,0,false,false,false,false +Kamiyaa/UTH,Kamiyaa,Python,false,false,false,0,false,false,false,false +Mayccoll/Vagrant-Ansible-Wordpress,Mayccoll,PHP,false,false,false,0,false,false,false,false +rnickson/wykop-gif-to-gfy,rnickson,JavaScript,true,false,false,1,false,true,false,false +peter-/shib-idp-auditlog,peter-,Python,false,false,false,0,false,false,false,false +Wilma456/CCLite,Wilma456,Lua,false,false,false,0,false,false,false,false +gentauro/mlcsp,gentauro,OCaml,false,false,false,0,false,false,false,false +mudar-ca/SnooZy,mudar-ca,Java,true,false,false,1,false,false,true,false +mudar-ca/ParkCatcher,mudar-ca,PHP,false,false,false,0,false,false,false,false +LamboCreeper/MCStatus,LamboCreeper,JavaScript,false,false,false,0,false,false,false,false +mondjunge/Crush-Framework,mondjunge,JavaScript,false,false,false,0,false,false,false,false +bashy/LaraBin,bashy,PHP,false,false,false,0,false,false,false,false +bashy/Laravel-CampaignMonitor,bashy,PHP,false,false,false,0,false,false,false,false +robinherbots/Inputmask,robinherbots,JavaScript,false,false,false,0,false,false,false,false +tstullich/rust-pt,tstullich,Rust,false,false,false,0,false,false,false,false +robinherbots/backbone.adal,robinherbots,JavaScript,false,false,false,0,false,false,false,false +robinherbots/JSDO,robinherbots,JavaScript,false,false,false,0,false,false,false,false +robinherbots/jsdo.adal,robinherbots,JavaScript,false,false,false,0,false,false,false,false +robinherbots/NCDO,robinherbots,C#,false,false,false,0,false,false,false,false +depesz/first_last,depesz,PLpgSQL,false,false,false,0,false,false,false,false +depesz/Pg--Explain,depesz,Perl,false,false,false,0,false,false,false,false +AngelesBroullon/mism,AngelesBroullon,Java,false,false,false,0,false,false,false,false +woblight/MacroTextStop,woblight,Lua,false,false,false,0,false,false,false,false +woblight/ActionMirroringFrame,woblight,Lua,false,false,false,0,false,false,false,false +thakyZ/voidinc-test-page,thakyZ,HTML,false,false,false,0,false,false,false,false +robinherbots/NCDO_ClientGen,robinherbots,JavaScript,false,false,false,0,false,false,false,false +robinherbots/node-swagger-models,robinherbots,JavaScript,false,false,false,0,false,false,false,false +ansraliant/dotfiles,ansraliant,Vimscript,false,false,false,0,false,false,false,false +n9n/apl,n9n,JavaScript,true,false,false,1,false,false,true,false +n9n/k,n9n,,false,false,false,0,false,false,false,false +n9n/vim-apl,n9n,Vimscript,false,false,false,0,false,false,false,false +severinkaderli/atom-reverser,severinkaderli,JavaScript,false,false,false,0,false,false,false,false +Viech/Mantis,Viech,C++,false,false,false,0,false,false,false,false +sijongyeoil/pmVIDEOatHOME,sijongyeoil,PHP,false,false,false,0,false,false,false,false +drakonka/roee,drakonka,Go,false,false,false,0,false,false,false,false +maxlefou/renpyxml,maxlefou,Ren'Py,false,false,false,0,false,false,false,false +spiral6/VelvetBot,spiral6,Python,false,true,false,0,false,false,false,false +jdtaylor/debatepoint,jdtaylor,PHP,false,false,false,0,false,false,false,false +nmud/nmud,nmud,,false,false,false,0,false,false,false,false +nmud/nmud-core,nmud,Java,true,false,false,2,false,false,true,false +jdtaylor/bitcoin-cmake,jdtaylor,C++,false,false,false,0,false,false,false,false +jdtaylor/tuxracer-vr,jdtaylor,C++,false,false,false,0,false,false,false,false +jdtaylor/vlc-vr,jdtaylor,C++,false,false,false,0,false,false,false,false +dwin/goArgonPass,dwin,Go,false,false,false,0,false,false,false,false +ShapManasick/CSRF-Synchronized-Token-Protection,ShapManasick,,false,false,false,0,false,false,false,false +erupcja/uonet-js,erupcja,TypeScript,false,false,false,0,false,false,false,false +julglotain/travis-minikube,julglotain,,false,false,false,0,false,false,false,false +davidjpeacock/shelbot-ii,davidjpeacock,Go,false,false,false,0,false,false,false,false +droidtr/org.droidtr.keyboard,droidtr,Java,false,false,false,0,false,false,false,false +connor41/connor41-etfuturum2,connor41,Java,false,false,false,0,false,false,false,false +Blacksilver/arghelper,Blacksilver,Python,false,false,false,0,false,false,false,false +Blacksilver/wikihelper,Blacksilver,Python,false,false,false,0,false,false,false,false +re-volt/rvio/rvio_tracks,re-volt,,false,false,false,0,false,false,false,false +tspg/TSPGBot,tspg,Java,false,false,false,0,false,false,false,false +Lacaster/Librix,Lacaster,GDScript,false,false,false,0,false,false,false,false +tspg/TSPGIpIntel,tspg,Java,false,false,false,0,false,false,false,false +tspg/tspgirc,tspg,Java,false,false,false,0,false,false,false,false +teyalem/simul,teyalem,Rust,false,false,false,0,false,false,false,false +knilch/cmd2telegram,knilch,Perl,false,false,false,0,false,false,false,false +griest/pokeforge,griest,JavaScript,true,false,false,3,true,true,true,false +maxvel/erl9p,maxvel,Erlang,false,false,false,0,false,false,false,false +custom_components/cloudflare,custom_components,Python,true,false,false,2,true,false,true,false +custom_components/brewdog,custom_components,Python,true,false,false,2,true,false,true,false +anaklusmosGD/AnaklusmosJava,anaklusmosGD,Java,false,false,false,0,false,false,false,false +Montessquio/godir,Montessquio,JavaScript,false,false,false,0,false,false,false,false +mziescha/perl6-DBIx-NamedQueries,mziescha,Perl6,true,false,false,1,false,true,false,false +illiax/telegram-ffbe-bot,illiax,JavaScript,false,false,false,0,false,false,false,false +notpushkin/dokku-monorepo,notpushkin,Shell,false,false,false,0,false,false,false,false +XenGi/docker-transmission-openvpn,XenGi,Shell,false,false,false,0,false,false,false,false +apinephp/http-message,apinephp,PHP,false,false,false,0,false,false,false,false +apinephp/legacy-framework,apinephp,PHP,false,false,false,0,false,false,false,false +XenGi/pac,XenGi,Python,false,false,false,0,false,false,false,false +nullworks/One-in-all-cathook-install,nullworks,,false,false,false,0,false,false,false,false +albalitz/proton-connect,albalitz,Python,false,true,false,0,false,false,false,false +insightgit/JetfuelGameEngine,insightgit,Tcl,false,false,false,0,false,false,false,false +nullworks/libglez,nullworks,C,false,false,false,0,false,false,false,false +nullworks/libxoverlay,nullworks,C,false,false,false,0,false,false,false,false +nullworks/simple-ipc,nullworks,C++,false,false,false,0,false,false,false,false +yohlane/ipconverter,yohlane,Python,false,false,false,0,false,false,false,false +mrrosh/aux-addon,mrrosh,Lua,false,false,false,0,false,false,false,false +mrrosh/pfUI-CustomMedia,mrrosh,Lua,false,false,false,0,false,false,false,false +nullworks/ucccccp,nullworks,C++,false,false,false,0,false,false,false,false +rocket-science/rocket_cms,rocket-science,Ruby,false,false,false,0,false,false,false,false +_leif/macOS_solid_backgrounds_x128,_leif,Swift,false,false,false,0,false,false,false,false +_leif/ProjectDayNight,_leif,Swift,false,false,false,0,false,false,false,false +_leif/SwiftObject,_leif,Swift,false,false,false,0,false,false,false,false +KawaiiGraphics/Kawaii3D,KawaiiGraphics,C++,false,false,false,0,false,false,false,false +Dergan/LiteCode,Dergan,C#,false,false,false,0,false,false,false,false +Dergan/SecureSocketProtocol,Dergan,C#,false,false,false,0,false,false,false,false +hsleisink/balance,hsleisink,PHP,false,false,false,0,false,false,false,false +hsleisink/hisser-server,hsleisink,PHP,false,false,false,0,false,false,false,false +hsleisink/password,hsleisink,PHP,false,false,false,0,false,false,false,false +pgerber/zbase32-rust,pgerber,Rust,true,false,false,1,false,true,false,false +rocket-science/rails_admin_nested_set,rocket-science,JavaScript,false,false,false,0,false,false,false,false +EMC-Framework/EMC-Installer,EMC-Framework,Java,false,false,false,0,false,false,false,false +KawaiiGraphics/Misaka3D,KawaiiGraphics,C++,false,false,false,0,false,false,false,false +Promila71/CodeForces,Promila71,C++,false,false,false,0,false,false,false,false +KawaiiGraphics/KawaiiAssimp,KawaiiGraphics,C++,false,false,false,0,false,false,false,false +KawaiiGraphics/KawaiiFigures3D,KawaiiGraphics,C,false,false,false,0,false,false,false,false +aheger/train-svelte,aheger,CSS,true,false,false,1,false,false,true,false +hroest/msproteomicstools,hroest,Python,false,false,false,0,false,false,false,false +TechnologyClassroom/dice-mechanic-datapacks,TechnologyClassroom,Python,false,false,false,0,false,false,false,false +TechnologyClassroom/bash,TechnologyClassroom,Shell,false,false,false,0,false,false,false,false +TechnologyClassroom/BAT,TechnologyClassroom,Batchfile,false,false,false,0,false,false,false,false +TechnologyClassroom/CuttleMultiplayer,TechnologyClassroom,,false,false,false,0,false,false,false,false +TechnologyClassroom/dice-mechanic-sim,TechnologyClassroom,Python,false,false,false,0,false,false,false,false +TechnologyClassroom/dotfiles,TechnologyClassroom,Lua,false,false,false,0,false,false,false,false +TechnologyClassroom/distro-picker,TechnologyClassroom,JavaScript,false,false,false,0,false,false,false,false +TechnologyClassroom/HardwareTest,TechnologyClassroom,Shell,false,false,false,0,false,false,false,false +TechnologyClassroom/HOSTS,TechnologyClassroom,,false,false,false,0,false,false,false,false +TechnologyClassroom/memtest,TechnologyClassroom,C,false,false,false,0,false,false,false,false +TechnologyClassroom/LinuxTimeline,TechnologyClassroom,Shell,false,false,false,0,false,false,false,false +TechnologyClassroom/minimal,TechnologyClassroom,Shell,false,false,false,0,false,false,false,false +TechnologyClassroom/Puppet,TechnologyClassroom,Puppet,false,false,false,0,false,false,false,false +TechnologyClassroom/Midnight-Riders,TechnologyClassroom,JavaScript,false,false,false,0,false,false,false,false +TechnologyClassroom/nvidia,TechnologyClassroom,Shell,false,false,false,0,false,false,false,false +TechnologyClassroom/Processing,TechnologyClassroom,Processing,false,false,false,0,false,false,false,false +TechnologyClassroom/PXE,TechnologyClassroom,,false,false,false,0,false,false,false,false +TechnologyClassroom/RPi,TechnologyClassroom,,false,false,false,0,false,false,false,false +TechnologyClassroom/RaspberryPiProgrammingWorkshop,TechnologyClassroom,Python,false,false,false,0,false,false,false,false +TechnologyClassroom/rig.py,TechnologyClassroom,C++,false,false,false,0,false,false,false,false +TechnologyClassroom/SetupNotes,TechnologyClassroom,,false,false,false,0,false,false,false,false +TechnologyClassroom/SignIn,TechnologyClassroom,Python,false,false,false,0,false,false,false,false +eliaskosunen/eliaskosunen.gitlab.io,eliaskosunen,HTML,true,false,false,1,false,false,true,false +MoathZ/Vim-Configurations,MoathZ,Vimscript,false,false,false,0,false,false,false,false +dotpointer/mysql-shim,dotpointer,PHP,false,false,false,0,false,false,false,false +Wenceslao1207/TP3ClienteServidor,Wenceslao1207,JavaScript,false,false,false,0,false,false,false,false +shagu/pfUI-toolbox,shagu,PHP,false,false,false,0,false,false,false,false +shagu/ShaguBam,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguChat,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguBoP,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguDelgado,shagu,Lua,false,false,false,0,false,false,false,false +zubozrout/Transport,zubozrout,QML,false,false,false,0,false,false,false,false +shagu/ShaguClock,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguCombat,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguNotify,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguTooltips,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguQuest,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguValue,shagu,Lua,false,false,false,0,false,false,false,false +MHeinrichs/Zorro-LAN-IDE,MHeinrichs,C,false,false,false,0,false,false,false,false +xomachine/NESM,xomachine,Nim,true,false,false,2,false,true,true,false +xomachine/nis,xomachine,Lua,false,false,false,0,false,false,false,false +categulario/karel-vue,categulario,JavaScript,true,false,false,1,true,false,false,false +mrvik/loadlify,mrvik,JavaScript,true,false,false,3,false,true,true,true +zerodogg/ampache-docker,zerodogg,Shell,true,false,false,1,true,false,false,false +arrem/Clam,arrem,Kotlin,true,false,true,3,true,true,true,false +arrem/BorealisVM,arrem,Rust,false,false,false,0,false,false,false,false +zardus/preeny,zardus,C,false,false,false,0,false,false,false,false +8BitRobots/meta-8bitrobots,8BitRobots,BitBake,false,false,false,0,false,false,false,false +flyingchipmunk_ansible/ssh_deploy_key,flyingchipmunk_ansible,,false,false,false,0,false,false,false,false +duudl3/proceduralpass,duudl3,C#,false,false,false,0,false,false,false,false +sniner/ansible-openvpn-server-role,sniner,Shell,false,false,false,0,false,false,false,false +jenx/bacon,jenx,Python,false,true,false,0,false,false,false,false +ryneches/Atlas,ryneches,C++,false,false,false,0,false,false,false,false +jenx/master-thesis,jenx,TeX,false,false,false,0,false,false,false,false +ryneches/dissertation,ryneches,TeX,false,false,false,0,false,false,false,false +ryneches/Erlenmeyer,ryneches,JavaScript,false,false,false,0,false,false,false,false +ryneches/DilutionPlates,ryneches,JavaScript,false,false,false,0,false,false,false,false +ryneches/fishpoo,ryneches,JupyterNotebook,false,false,false,0,false,false,false,false +ryneches/intrinsic-sterility,ryneches,JupyterNotebook,false,false,false,0,false,false,false,false +ryneches/GraphKernels,ryneches,C++,false,false,false,0,false,false,false,false +ryneches/ManyTrees,ryneches,JupyterNotebook,false,false,false,0,false,false,false,false +sbrl/TraceRoutePlus,sbrl,C#,true,false,false,1,true,false,false,false +ryneches/pique,ryneches,Python,false,false,false,0,false,false,false,false +ryneches/Ophidian,ryneches,Python,false,false,false,0,false,false,false,false +ryneches/platform,ryneches,C++,false,false,false,0,false,false,false,false +ryneches/shoephone,ryneches,,false,false,false,0,false,false,false,false +ryneches/Shand,ryneches,JupyterNotebook,false,false,false,0,false,false,false,false +ryneches/SpaceGrowth,ryneches,JupyterNotebook,false,false,false,0,false,false,false,false +ryneches/ulakes,ryneches,HTML,false,false,false,0,false,false,false,false +stefan.zlatinov/FEIT01L004,stefan.zlatinov,JupyterNotebook,false,false,false,0,false,false,false,false +gamecraftCZ/fantasyManager,gamecraftCZ,Java,false,false,false,0,false,false,false,false +jangoknight7/Quake-III-Arena,jangoknight7,C,false,false,false,0,false,false,false,false +GreWeMa/gwm_Crates,GreWeMa,Java,false,false,true,0,false,false,false,false +fnordpipe/configmgmt/ansible-playbook,fnordpipe,Python,false,false,false,0,false,false,false,false +sleibrock/waddler,sleibrock,Rust,false,false,false,0,false,false,false,false +dunstontc/AsyncPatterns,dunstontc,JavaScript,false,false,false,0,false,false,false,false +sebaro/SaveTube,sebaro,JavaScript,false,false,false,0,false,false,false,false +sebaro/LinkTube,sebaro,JavaScript,false,false,false,0,false,false,false,false +ChicagoDataCooperative/contact-cards,ChicagoDataCooperative,,false,false,false,0,false,false,false,false +peter.tasner/ElasticSearchLite,peter.tasner,C#,false,false,false,0,false,false,false,false +jimhester/falsy,jimhester,R,false,false,false,0,false,false,false,false +Melonz/Histacom2,Melonz,C#,false,false,false,0,false,false,false,false +leonklingele/gogs,leonklingele,Go,false,false,false,0,false,false,false,false +firmador/firmador,firmador,Java,false,false,true,0,false,false,false,false +leonklingele/ssh-chat,leonklingele,Go,false,false,false,0,false,false,false,false +7u83/OpenSeSim,7u83,Java,false,false,false,0,false,false,false,false +Salamek/version,Salamek,Python,true,true,false,4,false,true,true,false +bunnylin/buncomp,bunnylin,Pascal,false,false,false,0,false,false,false,false +bunnylin/moonlibs,bunnylin,Pascal,false,false,false,0,false,false,false,false +bunnylin/supersakura,bunnylin,Pascal,false,false,false,0,false,false,false,false +aarynsmith/aarynsmith.gitlab.io,aarynsmith,HTML,false,false,false,0,false,false,false,false +Ch4s3r/SoulManager,Ch4s3r,Kotlin,false,false,false,0,false,false,false,false +MaxdSre/axd-ShellScript,MaxdSre,Shell,false,false,false,0,false,false,false,false +Error1000/OpenGLWrapper,Error1000,C++,false,false,false,0,false,false,false,false +Gahr/hyperdav,Gahr,Rust,true,false,false,1,false,false,false,false +mike01/ifi,mike01,Python,false,false,false,0,false,false,false,false +Rhialto/kermit11,Rhialto,RUNOFF,false,false,false,0,false,false,false,false +Rhialto/kosmon,Rhialto,Assembly,false,false,false,0,false,false,false,false +Rhialto/macro11,Rhialto,C,true,false,false,2,false,false,false,false +mickey16/vam,mickey16,C,false,false,false,0,false,false,false,false +marcanuy/keraban,marcanuy,CSS,false,false,false,0,false,false,false,false +ManfredTremmel/gwt-bean-validators,ManfredTremmel,Java,false,false,true,0,false,false,false,false +ManfredTremmel/gwt-webworker,ManfredTremmel,Java,false,false,true,0,false,false,false,false +rek2/GoEnumerator,rek2,Go,true,false,false,1,true,false,false,false +rek2/GoBot,rek2,Go,false,false,false,0,false,false,false,false +glicOne/DeepLearningTutorials,glicOne,Python,false,false,false,0,false,false,false,false +GravelCZLP/Breakpoint,GravelCZLP,Java,false,false,true,0,false,false,false,false +seandavey/common,seandavey,Java,false,false,false,0,false,false,false,false +seandavey/template,seandavey,CSS,false,false,false,0,false,false,false,false +EugeneLoza/Project-Helena,EugeneLoza,Pascal,false,false,false,0,false,false,false,false +HenryLoenwind/4bit,HenryLoenwind,Java,false,false,false,0,false,false,false,false +glicOne/org-brain,glicOne,EmacsLisp,false,false,false,0,false,false,false,false +softwareperonista/nomeolvides,softwareperonista,Vala,true,false,false,1,true,false,false,false +Pythalex/Mysterimo-,Pythalex,C++,false,false,false,0,false,false,false,false +CraftedCart/smblevelworkshop2,CraftedCart,C++,false,false,false,0,false,false,false,false +moueza/spring-data-springboot,moueza,,false,false,false,0,false,false,false,false +php-mtg/php-mtgjson-com-api,php-mtg,PHP,false,false,false,0,false,false,false,false +gnucap/gnucap,gnucap,C++,false,false,false,0,false,false,false,false +BartWillems/octaaf,BartWillems,Go,true,false,false,2,true,false,true,false +vikserver/vikserver2,vikserver,JavaScript,true,false,false,2,true,true,false,false +vikserver/vshort,vikserver,JavaScript,true,false,false,1,false,true,false,false +jesusdf/clientupdate,jesusdf,Shell,false,false,false,0,false,false,false,false +jcfandino/leveleditor,jcfandino,Scala,true,false,true,1,false,true,false,false +NF6X_Retrocomputing/ibm4341disks,NF6X_Retrocomputing,,false,false,false,0,false,false,false,false +NF6X_MilSurplus/PRT-4A-Fox,NF6X_MilSurplus,C,false,false,false,0,false,false,false,false +NF6X_Retrocomputing/system23,NF6X_Retrocomputing,,false,false,false,0,false,false,false,false +NF6X_Retrocomputing/tu58firmware,NF6X_Retrocomputing,Assembly,false,false,false,0,false,false,false,false +NF6X_Retrocomputing/VAX-11-730-Console-v57,NF6X_Retrocomputing,,false,false,false,0,false,false,false,false +dbeniamine/vizardry,dbeniamine,Vimscript,false,false,false,0,false,false,false,false +felipedacs/php-api-fornecedor-simples,felipedacs,PHP,false,false,false,0,false,false,false,false +lschwiderski/vermintide_2_twitch_integration,lschwiderski,Lua,false,false,false,0,false,false,false,false +felipedacs/slig,felipedacs,PHP,false,false,false,0,false,false,false,false +lu-ci/kyanite,lu-ci,Python,true,false,false,4,true,true,false,true +alaskalinuxuser/S4camera_app,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +null_ptr/pfe1718,null_ptr,Java,false,false,false,0,false,false,false,false +infragravity/sonar-docker,infragravity,Python,false,false,false,0,false,false,false,false +DeJayDev/cubedpay-api,DeJayDev,,false,false,false,0,false,false,false,false +guifi-exo/xrcb.cat,guifi-exo,PHP,false,false,false,0,false,false,false,false +kallisti5/readpe,kallisti5,C,false,false,false,0,false,false,false,false +kallisti5/synergy-haiku,kallisti5,C,false,false,false,0,false,false,false,false +myrdin/bluma-two,myrdin,PHP,false,false,false,0,false,false,false,false +akii0008/lwbot-rewrite,akii0008,JavaScript,true,false,false,1,false,true,false,false +rubencarneiro/gitlab-webapp,rubencarneiro,QML,false,false,false,0,false,false,false,false +EspiDev/Algorithms,EspiDev,C++,false,false,false,0,false,false,false,false +csicar/MensaPlan,csicar,Kotlin,true,false,false,2,true,true,false,false +jpbruyere/vkhelpers,jpbruyere,C,false,false,false,0,false,false,false,false +jpbruyere/vkvg,jpbruyere,C,false,false,false,0,false,false,false,false +7u83-puppet/7u83-mailserver,7u83-puppet,HTML,false,false,false,0,false,false,false,false +mvojacek/spotifymuteads-native,mvojacek,C,true,false,false,1,true,false,false,false +Adarnof/adarnauth-esi,Adarnof,Python,false,false,false,0,false,false,false,false +mnhdrn/MNHDRN,mnhdrn,Python,false,false,false,0,false,false,false,false +CaptainDabsalot/Super.Smash.Brothers.Ultimate.Fighters,CaptainDabsalot,,false,false,false,0,false,false,false,false +threadly/guava_extensions,threadly,Java,false,false,false,0,false,false,false,false +threadly/heapDumpAnalyzer,threadly,Java,false,false,false,0,false,false,false,false +threadly/litesocket_benchmarks,threadly,,false,false,false,0,false,false,false,false +threadly/python-threadly,threadly,Python,false,false,false,0,false,false,false,false +threadly/threadly_benchmarks,threadly,Java,false,false,false,0,false,false,false,false +Energy1011/barcode-scanner,Energy1011,JavaScript,false,false,false,0,false,false,false,false +Energy1011/jekyll-tool-sh,Energy1011,Shell,false,false,false,0,false,false,false,false +Energy1011/monsterpenguin,Energy1011,HTML,true,false,false,2,false,true,true,false +duh-casa/RV-disks,duh-casa,Shell,false,false,false,0,false,false,false,false +b4zz4/ManifestanteXXI,b4zz4,HTML,false,false,false,0,false,false,false,false +NobbZ/exercism-solutions,NobbZ,C++,true,false,false,2,false,true,false,true +grantslatton/valiant,grantslatton,Rust,false,false,false,0,false,false,false,false +michalhosna/docker-dev-proxy,michalhosna,Shell,false,false,false,0,false,false,false,false +mraureliusr/PythonScripts,mraureliusr,Python,false,false,false,0,false,false,false,false +jeanfi/find-duplicate-files,jeanfi,Java,true,false,true,1,false,true,false,false +rvs314/rvs314.gitlab.io,rvs314,HTML,true,false,false,1,false,false,true,false +rvs314/SCPreader,rvs314,Python,false,false,false,0,false,false,false,false +rvs314/snakeAI,rvs314,Python,false,false,false,0,false,false,false,false +obnosim/emergence,obnosim,Eiffel,false,false,false,0,false,false,false,false +obnosim/velours,obnosim,,false,false,false,0,false,false,false,false +lama-corp/ddorn-dictionary,lama-corp,TeX,false,false,false,0,false,false,false,false +tacoda/jaws,tacoda,Rust,true,false,false,1,false,true,false,false +coringao/pokemmo-installer,coringao,Shell,false,false,false,0,false,false,false,false +coringao/jag,coringao,C++,false,false,false,0,false,false,false,false +BrainSalad/ignize,BrainSalad,Go,false,false,false,0,false,false,false,false +psve/cryptagraph,psve,Rust,false,false,false,0,false,false,false,false +fjorden/charthouse,fjorden,CSS,false,false,false,0,false,false,false,false +koraytugay/notebook,koraytugay,,false,false,false,0,false,false,false,false +Sudocode/Frogger,Sudocode,Java,false,false,false,0,false,false,false,false +Zerqz/dotfiles,Zerqz,JavaScript,false,false,false,0,false,false,false,false +bszwajk/Tuna,bszwajk,C,false,false,false,0,false,false,false,false +AbA2L/Taswast,AbA2L,Java,false,false,false,0,false,false,false,false +freecad/FreeCAD,freecad,C++,false,false,false,0,false,false,false,false +Xeom/edil,Xeom,C,true,false,false,2,true,false,false,false +DavidGriffith/uninvited,DavidGriffith,C++,false,false,false,0,false,false,false,false +cosmicchipsocket/superfeather,cosmicchipsocket,Lua,false,false,false,0,false,false,false,false +hackoon/tootstream,hackoon,Python,false,true,false,0,false,false,false,false +admesg/vim-scholarref,admesg,Python,false,false,false,0,false,false,false,false +howardabrams/clojure-exercisms,howardabrams,Clojure,false,false,false,0,false,false,false,false +wyatt8740/IBM3161-font,wyatt8740,,false,false,false,0,false,false,false,false +knuppe/SharpNL,knuppe,C#,false,false,false,0,false,false,false,false +haxe-grig/grig,haxe-grig,,false,false,false,0,false,false,false,false +Monsterovich/HellVsMarines,Monsterovich,,false,false,false,0,false,false,false,false +Monsterovich/QZRcon,Monsterovich,C++,false,false,false,0,false,false,false,false +Monsterovich/soundcloud-group-bot,Monsterovich,Python,false,false,false,0,false,false,false,false +Monsterovich/wine-staging-builds,Monsterovich,,false,false,false,0,false,false,false,false +bharadwaj-raju/cligenerator,bharadwaj-raju,Python,false,false,false,0,false,false,false,false +cwpitts/presentations,cwpitts,Python,false,false,false,0,false,false,false,false +gustavorinaldi/curso-angular2,gustavorinaldi,TypeScript,false,false,false,0,false,false,false,false +gustavorinaldi/developer-roadmap,gustavorinaldi,,false,false,false,0,false,false,false,false +rfranzen/mikrotik-scripts,rfranzen,Rascal,false,false,false,0,false,false,false,false +hnaguski/dots,hnaguski,C,false,false,false,0,false,false,false,false +hnaguski/userChrome.css,hnaguski,CSS,false,false,false,0,false,false,false,false +bhavyanshu/chatbase-php,bhavyanshu,PHP,true,false,false,1,false,true,false,false +RunasSudo/DOSpot,RunasSudo,Python,false,false,false,0,false,false,false,false +lordadamson/Journal,lordadamson,C,false,false,false,0,false,false,false,false +aclonegeek/emacs.d,aclonegeek,EmacsLisp,false,false,false,0,false,false,false,false +AegisFramework/Artemis,AegisFramework,JavaScript,false,false,false,0,false,false,false,false +renatoaguiar/ljof,renatoaguiar,Lua,false,false,false,0,false,false,false,false +renatoaguiar/luaflow,renatoaguiar,C,false,false,false,0,false,false,false,false +conderls/boutpy,conderls,Python,false,false,false,0,false,false,false,false +cwesson/LinkAlert,cwesson,JavaScript,true,false,false,1,true,false,false,false +saltdiscordbot/saltdiscordbot,saltdiscordbot,JavaScript,false,false,false,0,false,false,false,false +fcitx/fcitx-anthy,fcitx,C++,false,false,false,0,false,false,false,false +fcitx/fcitx-chewing,fcitx,C,false,false,false,0,false,false,false,false +fcitx/fcitx-googlepinyin,fcitx,C++,false,false,false,0,false,false,false,false +fcitx/mozc,fcitx,C++,false,false,false,0,false,false,false,false +fcitx/kcm-fcitx,fcitx,C++,false,false,false,0,false,false,false,false +fcitx/fcitx-sunpinyin,fcitx,C++,false,false,false,0,false,false,false,false +MatteoCampinoti94/GnomeTimedBackground,MatteoCampinoti94,Python,false,false,false,0,false,false,false,false +lucidlylogicole/achaos,lucidlylogicole,Python,false,false,false,0,false,false,false,false +lucidlylogicole/bnicer.js,lucidlylogicole,JavaScript,false,false,false,0,false,false,false,false +lucidlylogicole/paddle,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false +lucidlylogicole/pallet,lucidlylogicole,Python,false,false,false,0,false,false,false,false +lucidlylogicole/pywebpage,lucidlylogicole,Python,false,false,false,0,false,false,false,false +lucidlylogicole/randomcolor-py,lucidlylogicole,Python,false,false,false,0,false,false,false,false +lucidlylogicole/scope,lucidlylogicole,JavaScript,false,false,false,0,false,false,false,false +jgkamat/dotfiles,jgkamat,EmacsLisp,true,false,false,1,true,false,false,false +InvisaMage/website,InvisaMage,HTML,false,false,false,0,false,false,false,false +godme85/MiConfiguracion,godme85,Vimscript,false,false,false,0,false,false,false,false +jhosman55/backupsgdrive,jhosman55,Shell,false,false,false,0,false,false,false,false +HiddenShot/Rogue_AP,HiddenShot,Shell,false,false,false,0,false,false,false,false +cunguyendev/star_game,cunguyendev,JavaScript,false,false,false,0,false,false,false,false +Gostavikyi/Home,Gostavikyi,HTML,true,false,false,1,false,false,true,false +wilsonHodgson/froph,wilsonHodgson,,false,false,false,0,false,false,false,false +lansharkconsulting/wagpress/bakerydemo,lansharkconsulting,Python,false,true,false,0,false,false,false,false +powjs/powjs,powjs,JavaScript,false,false,false,0,false,false,false,false +hoolio/ansible,hoolio,,false,false,false,0,false,false,false,false +hkgos/hkgos-project-list,hkgos,,false,false,false,0,false,false,false,false +Twiistrz/Twiistrz-App,Twiistrz,PHP,false,false,false,0,false,false,false,false +bloodflame/dotfiles,bloodflame,HTML,false,false,false,0,false,false,false,false +waringer/Alexa-Wetterochs,waringer,Go,true,false,false,2,true,true,false,false +werm098/kitsune-network,werm098,Python,false,false,false,0,false,false,false,false +TheLostLambda/teamcode,TheLostLambda,Java,false,false,false,0,false,false,false,false +TheLostLambda/dijkstra,TheLostLambda,Rust,false,false,false,0,false,false,false,false +TheLostLambda/ftc_http,TheLostLambda,Rust,false,false,false,0,false,false,false,false +TheLostLambda/glossweeper,TheLostLambda,Haskell,false,false,false,0,false,false,false,false +TheLostLambda/heimdallr,TheLostLambda,HTML,false,false,false,0,false,false,false,false +TheLostLambda/pokestats,TheLostLambda,R,false,false,false,0,false,false,false,false +chucksys/clj-editor,chucksys,Clojure,true,false,false,1,false,true,false,false +spease/dotfiles,spease,Vimscript,false,false,false,0,false,false,false,false +SamWiseS64/thesis-template,SamWiseS64,TeX,false,false,false,0,false,false,false,false +pupjs/pfi,pupjs,JavaScript,false,false,false,0,false,false,false,false +thehumaneffort/rails-5-base,thehumaneffort,Ruby,true,false,false,3,true,false,true,false +iipeace/guider,iipeace,Python,false,false,false,0,false,false,false,false +iipeace/portable,iipeace,,false,false,false,0,false,false,false,false +ZoeyGlobe/zoeyglobe.gitlab.io,ZoeyGlobe,CSS,true,false,false,1,false,false,true,false +reefpirate/finite_stack_machine,reefpirate,GDScript,false,false,false,0,false,false,false,false +xithiox/bullethell,xithiox,JavaScript,false,false,false,0,false,false,false,false +sriram5052/netcore-webapi-jwtauth,sriram5052,C#,false,false,false,0,false,false,false,false +scull7/bs-sql-composer,scull7,OCaml,true,false,false,1,false,true,false,false +scull7/bs-crud-functors,scull7,OCaml,true,false,false,3,true,true,true,false +vitkin/sfdc-email-to-case-agent,vitkin,Java,false,false,true,0,false,false,false,false +totovr/SimpleOpenni,totovr,,false,false,false,0,false,false,false,false +CoTP/Ghostnet,CoTP,Python,false,false,false,0,false,false,false,false +r05323028/ptt_crawler,r05323028,Python,true,true,false,1,false,true,false,false +isqad/ubastation,isqad,JavaScript,true,false,false,1,true,false,false,false +tvo/Nodata,tvo,C#,true,false,false,3,true,true,false,true +CANOXNET/spdynu,CANOXNET,C,false,false,false,0,false,false,false,false +refresher1/glpi-docker-alpine,refresher1,PHP,false,false,false,0,false,false,false,false +CoTP/Fonts,CoTP,Makefile,false,false,false,0,false,false,false,false +pidu/goto-gem,pidu,EmacsLisp,false,false,false,0,false,false,false,false +poolworks/signup,poolworks,,false,false,false,0,false,false,false,false +tiddlywiki.org/dist,tiddlywiki.org,,false,false,false,0,false,false,false,false +Whitchcraft/munin-node-win32,Whitchcraft,,false,false,false,0,false,false,false,false +gchaincl/httplab,gchaincl,Go,false,false,false,0,false,false,false,false +victor-engmark/tilde,victor-engmark,Shell,false,false,false,0,false,false,false,false +firelight.flagboy/test_printf,firelight.flagboy,C,false,false,false,0,false,false,false,false +ultiomos/pokeantiquecrystal,ultiomos,Assembly,false,false,false,0,false,false,false,false +martinfischer/socketchat,martinfischer,Python,false,true,false,0,false,false,false,false +martinfischer/webpystunden3,martinfischer,Python,false,true,false,0,false,false,false,false +ksichien/win-srv-scripts,ksichien,PowerShell,false,false,false,0,false,false,false,false +ksichien/ts-list-organizer,ksichien,TypeScript,true,false,false,2,true,true,false,false +ksichien/rails-ldap-app,ksichien,Ruby,false,false,false,0,false,false,false,false +ksichien/azure-dynamics-scripts,ksichien,PowerShell,false,false,false,0,false,false,false,false +ksichien/ansible-playbooks,ksichien,Ruby,false,false,false,0,false,false,false,false +jeexzee/slipview,jeexzee,PHP,false,false,false,0,false,false,false,false +Dobbias/polynet,Dobbias,C++,false,false,false,0,false,false,false,false +pipocavsobake/goclon,pipocavsobake,Go,false,false,false,0,false,false,false,false +pipocavsobake/understanding,pipocavsobake,JavaScript,false,false,false,0,false,false,false,false +dantleech/p-meter,dantleech,PHP,false,false,false,0,false,false,false,false +BluDotz/FizzBuzz,BluDotz,Verilog,false,false,false,0,false,false,false,false +chandru1991/Selenium_Development_Code,chandru1991,Java,false,false,false,0,false,false,false,false +jeanfi/jeanfi,jeanfi,EmacsLisp,false,false,false,0,false,false,false,false +Dimitriev/slaviq,Dimitriev,,false,false,false,0,false,false,false,false +vala-panel-project/xfce4-sntray-plugin,vala-panel-project,Vala,true,false,false,2,true,false,false,true +vala-panel-project/vala-project-packages,vala-panel-project,Shell,false,false,false,0,false,false,false,false +vala-panel-project/vala-panel-extras,vala-panel-project,Vala,true,false,false,2,true,false,false,true +daftspaniel/np8080,daftspaniel,Dart,false,false,false,0,false,false,false,false +archmirak/b64codec,archmirak,C,false,false,false,0,false,false,false,false +Syping/gta5view-cmd,Syping,C++,true,false,false,1,true,false,false,false +olliver/dtv-scan-tables,olliver,Makefile,false,false,false,0,false,false,false,false +notramo/elvish.kak,notramo,,false,false,false,0,false,false,false,false +thegreatyellow67/Breeze-Serie-for-Righties-Cursors,thegreatyellow67,,false,false,false,0,false,false,false,false +emreorhan/Scrum-Task-Management-with-ReactJS-Express-Server,emreorhan,JavaScript,false,false,false,0,false,false,false,false +slowpokex/angular-mp,slowpokex,TypeScript,true,false,false,2,false,true,false,true +nate-2014jatc/Schematics,nate-2014jatc,,false,false,false,0,false,false,false,false +d_mulenko/ansible_module_snapd,d_mulenko,Python,false,false,false,0,false,false,false,false +olymk2/em,olymk2,EmacsLisp,false,false,false,0,false,false,false,false +Slack06/yadg,Slack06,Python,true,true,false,1,true,false,false,false +Qblolz/TrinityWeb,Qblolz,,false,false,false,0,false,false,false,false +scarabeusiv/openmoo2,scarabeusiv,Python,false,false,false,0,false,false,false,false +scarabeusiv/presentations,scarabeusiv,TeX,true,false,false,1,true,false,false,false +kenigbolo/node-api-server,kenigbolo,JavaScript,false,false,false,0,false,false,false,false +Sveneric/subato,Sveneric,HTML,false,false,false,0,false,false,false,false +zeiot-backup/rpi-cert-manager,zeiot-backup,Makefile,true,false,false,4,true,true,true,false +kilianmichiels/fGMP,kilianmichiels,Python,false,false,false,0,false,false,false,false +Trendzetter/VegetableGardenPlanner,Trendzetter,JavaScript,false,false,false,0,false,false,false,false +AviramAshkenazi/hafifa,AviramAshkenazi,CSS,false,false,false,0,false,false,false,false +Error1000/Box2DWrapper,Error1000,C++,false,false,false,0,false,false,false,false +Error1000/FreeTypeWrapper,Error1000,C,false,false,false,0,false,false,false,false +Error1000/LWJGLWrapper,Error1000,Java,false,false,false,0,false,false,false,false +Error1000/OpenGLWrapperUtils,Error1000,C++,false,false,false,0,false,false,false,false +Error1000/TicTacToe,Error1000,C++,false,false,false,0,false,false,false,false +gratefulfrog/ArduGuitar,gratefulfrog,Python,true,false,false,1,false,false,true,false +gratefulfrog/CameraBox,gratefulfrog,OpenSCAD,false,false,false,0,false,false,false,false +q-quark/urqmdfc,q-quark,C++,false,false,false,0,false,false,false,false +larsfp/rutercli,larsfp,Python,false,true,false,0,false,false,false,false +jessiegouw/be-assessment-2,jessiegouw,CSS,false,false,false,0,false,false,false,false +johannkraus/BisectKmeans,johannkraus,R,false,false,false,0,false,false,false,false +johannkraus/cl-dawg,johannkraus,CommonLisp,false,false,false,0,false,false,false,false +johannkraus/pge,johannkraus,R,false,false,false,0,false,false,false,false +johannkraus/TrackMixMocl,johannkraus,Objective-C,false,false,false,0,false,false,false,false +simcav/simcav,simcav,Python,false,false,false,0,false,false,false,false +simcav/simcav.gitlab.io,simcav,CSS,true,false,false,1,false,false,true,false +sharov.grigory/3DEM-conventions,sharov.grigory,Python,false,false,false,0,false,false,false,false +Jeffrey28/apollo,Jeffrey28,C++,false,false,false,0,false,false,false,false +sharov.grigory/EMAN,sharov.grigory,Shell,false,false,false,0,false,false,false,false +sharov.grigory/other,sharov.grigory,Shell,false,false,false,0,false,false,false,false +sharov.grigory/scipion,sharov.grigory,C++,false,false,false,0,false,false,false,false +m4dengi/open-steamworks,m4dengi,C++,false,false,false,0,false,false,false,false +PisiLinux/contrib,PisiLinux,Shell,false,false,false,0,false,false,false,false +instil-training/nidc-arrow-2018,instil-training,Kotlin,false,false,false,0,false,false,false,false +PisiLinux/deutsche.webseite.io,PisiLinux,CSS,false,false,false,0,false,false,false,false +PisiLinux/developer.pisilinux.io,PisiLinux,HTML,false,false,false,0,false,false,false,false +PisiLinux/pardususer.de,PisiLinux,Python,false,false,false,0,false,false,false,false +enfiskutensykkel/ssd-gpu-dma,enfiskutensykkel,C,false,false,false,0,false,false,false,false +kaizhou/crypto_draft,kaizhou,C++,false,false,false,0,false,false,false,false +wxwilcke/mrgcn,wxwilcke,Python,false,false,false,0,false,false,false,false +clockwork53/Distance_Calculator,clockwork53,Java,false,false,false,0,false,false,false,false +raccoon4x/universenot,raccoon4x,PHP,false,false,false,0,false,false,false,false +denk_mal/bash_scripts,denk_mal,Shell,false,false,false,0,false,false,false,false +khaledhosny/emacs,khaledhosny,EmacsLisp,true,false,false,1,false,true,false,false +pidus/dotfiles,pidus,Shell,false,false,false,0,false,false,false,false +Splitblue/FunctionalSizing,Splitblue,Groovy,false,false,false,0,false,false,false,false +CoTP/openbox-themes-collection,CoTP,,false,false,false,0,false,false,false,false +yumingchang/vgg-training,yumingchang,JupyterNotebook,false,false,false,0,false,false,false,false +urbanware-org/salomon,urbanware-org,Shell,false,false,false,0,false,false,false,false +Way2CU/Caracal,Way2CU,PHP,false,false,false,0,false,false,false,false +hmmr/aghermann,hmmr,C++,false,false,false,0,false,false,false,false +CoTP/gtk-themes-collection,CoTP,CSS,false,false,false,0,false,false,false,false +C-Bouthoorn/cortex-bot,C-Bouthoorn,Go,false,false,false,0,false,false,false,false +CoTP/almighty-dotfiles,CoTP,C,false,false,false,0,false,false,false,false +stgpetrovic/slonix,stgpetrovic,Lua,false,false,false,0,false,false,false,false +jasperro/dotfiles,jasperro,CSS,false,false,false,0,false,false,false,false +jamestomasino/burrow,jamestomasino,Shell,false,false,false,0,false,false,false,false +jamestomasino/dotfiles,jamestomasino,Shell,false,false,false,0,false,false,false,false +TeslasToaster/PythonZeldaClone,TeslasToaster,Python,false,false,false,0,false,false,false,false +CoTP/my-dotfiles,CoTP,Shell,false,false,false,0,false,false,false,false +rdi-eg/wfile,rdi-eg,C++,true,false,false,2,true,true,false,false +archanpatkar/Tachyon,archanpatkar,Kotlin,false,false,false,0,false,false,false,false +rdi-eg/rdi_utils,rdi-eg,C++,true,false,false,2,true,true,false,false +3beol/libhangul,3beol,Objective-C,false,false,false,0,false,false,false,false +benedikt.stuhrmann/toybox,benedikt.stuhrmann,PHP,false,false,false,0,false,false,false,false +pi-iuselinux-lt/ui-youtube-dl,pi-iuselinux-lt,C++,false,false,false,0,false,false,false,false +Strattegic/tablegamers,Strattegic,PHP,false,false,false,0,false,false,false,false +nwmitchell/zendesk-downloader,nwmitchell,Python,true,true,false,3,true,true,false,false +pi-iuselinux-lt/openssl-cpp-string-api,pi-iuselinux-lt,C++,false,false,false,0,false,false,false,false +derSchabi/OpenHitboxStreams,derSchabi,Java,false,false,false,0,false,false,false,false +derSchabi/SVG-redirect,derSchabi,Java,false,false,false,0,false,false,false,false +Serg-Norseman/ChemLab,Serg-Norseman,Java,false,false,false,0,false,false,false,false +Serg-Norseman/AFRollupDR,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/BSLib,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/AFBitmaskDR,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/GKCommunicator,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/NorseWorld-Ragnarok,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/PIToolkit,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/SCADATools,Serg-Norseman,C#,false,false,false,0,false,false,false,false +Serg-Norseman/ZRLib,Serg-Norseman,C#,false,false,false,0,false,false,false,false +CoTP/conkies,CoTP,Python,false,false,false,0,false,false,false,false +matejlatin/Gutenberg,matejlatin,CSS,false,false,false,0,false,false,false,false +gravadigital/generator-baucis,gravadigital,JavaScript,false,false,false,0,false,false,false,false +lerneaen_hydra/ssy130_dspkit,lerneaen_hydra,C,false,false,false,0,false,false,false,false +CoTP/collector,CoTP,Python,false,false,false,0,false,false,false,false +django-android/simplelicenseview,django-android,Kotlin,false,false,false,0,false,false,false,false +zakariasnl/opendc-android,zakariasnl,Kotlin,false,false,false,0,false,false,false,false +alexdaichendt/LandLord,alexdaichendt,Java,false,false,true,0,false,false,false,false +alexdaichendt/RhinoVaro,alexdaichendt,Java,false,false,true,0,false,false,false,false +teknopaul/usbkbd2,teknopaul,C,false,false,false,0,false,false,false,false +CoTP/pyddos,CoTP,Python,false,false,false,0,false,false,false,false +HiKey960-Car/HiKey960-Car,HiKey960-Car,,false,false,false,0,false,false,false,false +11101011/src,11101011,C,false,false,false,0,false,false,false,false +11101011/phaseFieldFoam,11101011,C++,false,false,false,0,false,false,false,false +11101011/test.case,11101011,C++,false,false,false,0,false,false,false,false +11101011/Docker,11101011,Shell,false,false,false,0,false,false,false,false +lucenaproject/lucena.py,lucenaproject,Python,true,true,false,1,false,true,false,false +Procristancho/cryptongo,Procristancho,Python,false,false,false,0,false,false,false,false +CoTP/cursor-themes,CoTP,,false,false,false,0,false,false,false,false +Altenius/LibreTuner,Altenius,C++,false,false,false,0,false,false,false,false +lvidarte/sliding-puzzle,lvidarte,Python,false,false,false,0,false,false,false,false +vzaa/cmk,vzaa,Rust,false,false,false,0,false,false,false,false +vzaa/yuvdiff,vzaa,Rust,false,false,false,0,false,false,false,false +vzaa/vimconf,vzaa,Vimscript,false,false,false,0,false,false,false,false +vzaa/pyperf,vzaa,Python,false,false,false,0,false,false,false,false +vzaa/imgquant,vzaa,Rust,false,false,false,0,false,false,false,false +SamB440/ForcePack,SamB440,Java,false,false,false,0,false,false,false,false +pgampe/authenticator,pgampe,PHP,true,false,false,2,false,true,false,true +CoTP/arch-builder,CoTP,Shell,false,false,false,0,false,false,false,false +HilmiZul/esp,HilmiZul,Python,false,false,false,0,false,false,false,false +renatoaguiar/middleclass,renatoaguiar,Lua,false,false,false,0,false,false,false,false +johanbluecreek/Genetic_DE_solver,johanbluecreek,Julia,false,false,false,0,false,false,false,false +nanocastro/Repo_maca,nanocastro,C++,false,false,false,0,false,false,false,false +Donaldp/blade,Donaldp,PHP,false,false,false,0,false,false,false,false +PisiLinux/pisido,PisiLinux,C++,false,false,false,0,false,false,false,false +guram.duka/mpreorders,guram.duka,JavaScript,false,false,false,0,false,false,false,false +bmvv/FLICRR,bmvv,Python,false,false,false,0,false,false,false,false +hsleisink/firetable,hsleisink,PHP,false,false,false,0,false,false,false,false +lansharkconsulting/django/lanshark-django-xhtml2pdf,lansharkconsulting,HTML,false,false,false,0,false,false,false,false +Maks-s/random-things,Maks-s,Lua,false,false,false,0,false,false,false,false +ExiledNarwal28/android-sqlite-example,ExiledNarwal28,Java,false,false,false,0,false,false,false,false +ExiledNarwal28/bash-example-file-server,ExiledNarwal28,Shell,false,false,false,0,false,false,false,false +ExiledNarwal28/bash-example-oop,ExiledNarwal28,Shell,false,false,false,0,false,false,false,false +ExiledNarwal28/dji-mobile-sdk-example,ExiledNarwal28,Java,false,false,false,0,false,false,false,false +ExiledNarwal28/dotfiles,ExiledNarwal28,JavaScript,false,false,false,0,false,false,false,false +ExiledNarwal28/vb-example-products-db,ExiledNarwal28,VisualBasic,false,false,false,0,false,false,false,false +lansharkconsulting/public/barchart-ondemand-client-python,lansharkconsulting,Python,false,true,false,0,false,false,false,false +datasciencemom/DS_Python,datasciencemom,JupyterNotebook,false,false,false,0,false,false,false,false +JuliaGPU/CUDAapi.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false +JuliaGPU/CuArrays.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false +JuliaGPU/GPUArrays.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false +JuliaGPU/CUDAdrv.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false +RajeshPatkarInstitute/Panim,RajeshPatkarInstitute,Python,false,false,false,0,false,false,false,false +spease/LISPircbot,spease,CommonLisp,false,false,false,0,false,false,false,false +juliensimon/mxnetworkshop,juliensimon,JupyterNotebook,false,false,false,0,false,false,false,false +SpoonSauce/post-commander,SpoonSauce,Python,false,false,false,0,false,false,false,false +lansharkconsulting/frontend/vue-enterprise-boilerplate,lansharkconsulting,JavaScript,false,false,false,0,false,false,false,false +archanpatkar/Kmitter,archanpatkar,Kotlin,false,false,false,0,false,false,false,false +fatihacet/vue-spa,fatihacet,Vue,true,false,false,1,false,true,false,false +lbischof/openshift3-elk,lbischof,Shell,false,false,false,0,false,false,false,false +jamesgeorge007/Crypto-App,jamesgeorge007,JavaScript,false,false,false,0,false,false,false,false +jamesgeorge007/Maze-Runner,jamesgeorge007,Python,false,false,false,0,false,false,false,false +jamesgeorge007/Catch-It,jamesgeorge007,Python,false,false,false,0,false,false,false,false +jamesgeorge007/Skills-Hub,jamesgeorge007,Vue,false,false,false,0,false,false,false,false +user2589/ghd,user2589,Python,false,true,false,0,false,false,false,false +divnyi/Placeholders,divnyi,Swift,false,false,false,0,false,false,false,false +CJWeemee/woa,CJWeemee,JavaScript,false,false,false,0,false,false,false,false +krishkumar/createml-playgrounds,krishkumar,Swift,false,false,false,0,false,false,false,false +LinxGem33/IP-Finder,LinxGem33,JavaScript,false,false,false,0,false,false,false,false +Way2CU/Closure-Compiler,Way2CU,PHP,false,false,false,0,false,false,false,false +cppocl/unit_test_framework,cppocl,C++,false,false,false,0,false,false,false,false +the29a/DVR-tools,the29a,Python,false,false,false,0,false,false,false,false +lansharkconsulting/public/pyenv-installer,lansharkconsulting,Shell,false,false,false,0,false,false,false,false +Kerrung1/my-awesome-project,Kerrung1,,false,false,false,0,false,false,false,false +ShevT/proprietary_vendor_samsung_exynos5420,ShevT,Makefile,false,false,false,0,false,false,false,false +ShevT/twrp_samsung_lt03xx,ShevT,Makefile,false,false,false,0,false,false,false,false +ShevT/twrp_xiaomi_sagit,ShevT,Makefile,false,false,false,0,false,false,false,false +lansharkconsulting/public/pipsi,lansharkconsulting,Python,false,false,false,0,false,false,false,false +bsara/eslint-config-bsara,bsara,JavaScript,false,false,false,0,false,false,false,false +ShevT/twrp_xiaomi_gemini,ShevT,Makefile,false,false,false,0,false,false,false,false +ShevT/device_samsung_lt033g_eos,ShevT,C,false,false,false,0,false,false,false,false +Gejr/FocusLock-Website,Gejr,CSS,false,false,false,0,false,false,false,false +Gejr/Mike-Wazowski-Bot,Gejr,JavaScript,false,false,false,0,false,false,false,false +eratosthene/kmpc,eratosthene,Python,false,false,false,0,false,false,false,false +McTwist/Support_EventScript,McTwist,C#,false,false,false,0,false,false,false,false +shaack/bootstrap-input-spinner,shaack,JavaScript,false,false,false,0,false,false,false,false +lansharkconsulting/public/cc-django-rest,lansharkconsulting,Python,false,false,false,0,false,false,false,false +zombiebot/atmosphere,zombiebot,Lua,false,false,false,0,false,false,false,false +zombiebot/skylayer,zombiebot,Lua,false,false,false,0,false,false,false,false +cezhunter/Iterator_Playbook_Components,cezhunter,,false,false,false,0,false,false,false,false +lansharkconsulting/public/cc-django-vue,lansharkconsulting,Python,false,true,false,0,false,false,false,false +lansharkconsulting/public/cc-django,lansharkconsulting,Python,false,true,false,0,false,false,false,false +zombiebot/happy_weather,zombiebot,Lua,false,false,false,0,false,false,false,false +zombiebot/happy_weather_api,zombiebot,Lua,false,false,false,0,false,false,false,false +zombiebot/weather_pack,zombiebot,Lua,false,false,false,0,false,false,false,false +rchain/rchain,rchain,Scala,false,false,false,0,false,false,false,false +lucidogen/lucidogen,lucidogen,JavaScript,false,false,false,0,false,false,false,false +shaack/Inboxinator,shaack,JavaScript,false,false,false,0,false,false,false,false +katyukha/odoo-helper-scripts,katyukha,Shell,true,false,false,4,true,true,true,false +fhuberts/nmealib,fhuberts,C,false,false,false,0,false,false,false,false +lansharkconsulting/public/cc-djangopackage,lansharkconsulting,Python,false,false,false,0,false,false,false,false +neurotec/gen_c_server,neurotec,C,false,false,false,0,false,false,false,false +neurotec/plivoframework,neurotec,Python,false,false,false,0,false,false,false,false +neurotec/tiny_cdr,neurotec,HTML,false,false,false,0,false,false,false,false +neurotec/xerlrpc,neurotec,Erlang,false,false,false,0,false,false,false,false +neurotec/mod_bcg729,neurotec,C,false,false,false,0,false,false,false,false +hnel/ttef,hnel,C,false,false,false,0,false,false,false,false +Mis012/openSMART,Mis012,C,false,false,false,0,false,false,false,false +alaskalinuxuser/app_critical_velocity,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +alaskalinuxuser/app_hourglass,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +alaskalinuxuser/app_JustChess,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +alaskalinuxuser/app_justcraigslist,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +alaskalinuxuser/app_ship_capt_crew,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +wavexx/rest2web,wavexx,Python,false,false,false,0,false,false,false,false +alaskalinuxuser/Kernel_Tweaks,alaskalinuxuser,C,false,false,false,0,false,false,false,false +jvburnes/node9,jvburnes,C,false,false,false,0,false,false,false,false +wooden-stairs/pine,wooden-stairs,,false,false,false,0,false,false,false,false +wooden-stairs/oak,wooden-stairs,,false,false,false,0,false,false,false,false +rbrian/fioscheck,rbrian,CoffeeScript,false,false,false,0,false,false,false,false +rbrian/flowfree,rbrian,CoffeeScript,false,false,false,0,false,false,false,false +rbrian/HandyNotes_Achievements,rbrian,Lua,false,false,false,0,false,false,false,false +rbrian/pophttpd,rbrian,Go,false,false,false,0,false,false,false,false +wooden-stairs/beech,wooden-stairs,,false,false,false,0,false,false,false,false +remikz/guides,remikz,C++,false,false,false,0,false,false,false,false +Nohus/AdventOfCode2017,Nohus,Kotlin,false,false,false,0,false,false,false,false +lansharkconsulting/django/ls-django-treeadmin,lansharkconsulting,JavaScript,false,false,false,0,false,false,false,false +EventGhost/EventGhost,EventGhost,Python,false,false,false,0,false,false,false,false +raatiniemi/sonar-objective-c,raatiniemi,Java,true,false,false,3,true,true,true,false +Capuno/Farfetch,Capuno,C++,false,false,false,0,false,false,false,false +romainhk/plan10,romainhk,Python,false,true,false,0,false,false,false,false +romkaaa/api,romkaaa,Python,false,false,false,0,false,false,false,false +Dwaris/InfoLK,Dwaris,HTML,false,false,false,0,false,false,false,false +laurih/matid,laurih,Python,true,true,false,1,false,true,false,false +sciter-sdk/go-sciter,sciter-sdk,Go,false,false,false,0,false,false,false,false +jdtaylor/dendron,jdtaylor,C++,false,false,false,0,false,false,false,false +sciter-sdk/rust-sciter,sciter-sdk,Rust,false,false,false,0,false,false,false,false +sciter-sdk/pysciter,sciter-sdk,Python,false,false,false,0,false,false,false,false +sciter-sdk/SciDe,sciter-sdk,Pascal,false,false,false,0,false,false,false,false +davidjpeacock/ansible-role-containerized-undercloud-validations,davidjpeacock,Python,false,false,false,0,false,false,false,false +aethyx/opensource,aethyx,PHP,false,false,false,0,false,false,false,false +aethyx/femen,aethyx,Java,false,false,false,0,false,false,false,false +Illegalkiwi/hctpl-support-system,Illegalkiwi,Python,false,false,false,0,false,false,false,false +jonlegarrea/hyperbash,jonlegarrea,Shell,false,false,false,0,false,false,false,false +jonlegarrea/howtostxt,jonlegarrea,Python,false,false,false,0,false,false,false,false +RikoDEV/rikodev-filters,RikoDEV,,false,false,false,0,false,false,false,false +TW3/dbxf,TW3,C,false,false,false,0,false,false,false,false +bztsrc/osz,bztsrc,C,false,false,false,0,false,false,false,false +aethyx/ps3linux,aethyx,C,false,false,false,0,false,false,false,false +umbrella-software/jag,umbrella-software,C#,false,false,false,0,false,false,false,false +rafabasso/dotfiles,rafabasso,Vimscript,false,false,false,0,false,false,false,false +Bettehem/AndroidTools,Bettehem,Java,false,false,false,0,false,false,false,false +janvv/janban,janvv,JavaScript,true,false,false,1,false,false,true,false +frankiezafe/SoftSkin,frankiezafe,C++,false,false,false,0,false,false,false,false +admicos/urlmirror,admicos,Python,false,true,false,0,false,false,false,false +antikdede/archinstall,antikdede,Shell,false,false,false,0,false,false,false,false +fdorado985/Apple-Slope,fdorado985,Swift,false,false,false,0,false,false,false,false +alinex/node-portal-client,alinex,Vue,false,false,false,0,false,false,false,false +lansharkconsulting/django/django-twilio-sms,lansharkconsulting,Python,false,false,false,0,false,false,false,false +charalambos/P2C-Clustering,charalambos,C++,false,false,false,0,false,false,false,false +mschmidl/speedtest,mschmidl,Python,false,false,false,0,false,false,false,false +bugbiteme/catalog-spring-boot,bugbiteme,Java,false,false,true,0,false,false,false,false +bugbiteme/gateway-vertx,bugbiteme,Java,false,false,true,0,false,false,false,false +bugbiteme/inventory-wildfly-swarm,bugbiteme,Java,false,false,true,0,false,false,false,false +bugbiteme/web-nodejs,bugbiteme,JavaScript,false,false,false,0,false,false,false,false +Bergiu/MyRcs,Bergiu,PHP,false,false,false,0,false,false,false,false +BergiuTelegram/GreetingBot,BergiuTelegram,Python,false,false,false,0,false,false,false,false +BergiuTelegram/TgWeatherBot,BergiuTelegram,Python,false,false,false,0,false,false,false,false +paul-nechifor/manjaro-dotfiles,paul-nechifor,Shell,false,false,false,0,false,false,false,false +4m1g0/oshwdem,4m1g0,HTML,false,false,false,0,false,false,false,false +lansharkconsulting/django/django_cropper,lansharkconsulting,JavaScript,false,false,false,0,false,false,false,false +zub2/octave-somfy,zub2,Matlab,false,false,false,0,false,false,false,false +zub2/somfy-tools,zub2,C++,true,false,false,2,true,true,false,false +jeanfi/pnews,jeanfi,Java,true,false,true,2,false,false,false,false +Monkeypac/dotfiles,Monkeypac,Shell,false,false,false,0,false,false,false,false +lansharkconsulting/django/lanshark-django-database-email-backend,lansharkconsulting,Python,false,false,false,0,false,false,false,false +ytobi/handy,ytobi,C,false,false,false,0,false,false,false,false +lansharkconsulting/wagpress/wagpress-base,lansharkconsulting,Python,false,false,false,0,false,false,false,false +lansharkconsulting/wagpress/wagpress-meethub,lansharkconsulting,Python,false,true,false,0,false,false,false,false +lansharkconsulting/wagpress/wagpress-menus,lansharkconsulting,Python,false,false,false,0,false,false,false,false +gramework/gramework,gramework,Go,false,false,false,0,false,false,false,false +lansharkconsulting/wagpress/wagpress-portfolio,lansharkconsulting,Python,false,true,false,0,false,false,false,false +malevon/cursojavascript,malevon,HTML,false,false,false,0,false,false,false,false +gvelchuru/gruvbox,gvelchuru,Vimscript,false,false,false,0,false,false,false,false +venture-api/gate,venture-api,JavaScript,true,false,false,2,false,true,true,false +gvelchuru/oh-my-zsh,gvelchuru,Shell,false,false,false,0,false,false,false,false +ivoanjo/persistent-dmnd,ivoanjo,Ruby,true,false,false,1,false,true,false,false +foreo-workshop/first-project,foreo-workshop,HTML,false,false,false,0,false,false,false,false +WCTD/TeamGen,WCTD,Python,false,false,false,0,false,false,false,false +grahnen/dotfiles,grahnen,EmacsLisp,false,false,false,0,false,false,false,false +pionierwerk/konformitaet,pionierwerk,Lua,false,false,false,0,false,false,false,false +jfecher/ante,jfecher,C++,false,false,false,0,false,false,false,false +runecasters/reg2gpp,runecasters,PHP,false,false,false,0,false,false,false,false +universalapps/WallsHub,universalapps,,false,false,false,0,false,false,false,false +sdalu/ruby-ble,sdalu,Ruby,false,false,false,0,false,false,false,false +VanessaE/dreambuilder_modpack,VanessaE,Lua,false,false,false,0,false,false,false,false +fcojgodoy/wp-comment-policy-checkbox,fcojgodoy,PHP,false,false,false,0,false,false,false,false +mithrandirn/hottoe,mithrandirn,Vala,false,false,false,0,false,false,false,false +sn1k/wpfBehaviourTreeViewer,sn1k,C#,false,false,false,0,false,false,false,false +matmen/fbot,matmen,JavaScript,false,false,false,0,false,false,false,false +vith/dotfiles,vith,Shell,false,false,false,0,false,false,false,false +otaviocomp/verilog,otaviocomp,Verilog,false,false,false,0,false,false,false,false +uuid-rs/uuid,uuid-rs,Rust,false,false,false,0,false,false,false,false +lyle/_dotfiles,lyle,Python,false,false,false,0,false,false,false,false +edson_arthur/Workshop_betha,edson_arthur,,false,false,false,0,false,false,false,false +notaku/dotfiles,notaku,Shell,false,false,false,0,false,false,false,false +gitchar/clj-biosequence,gitchar,Clojure,false,false,false,0,false,false,false,false +token0/antishit_hosts,token0,,false,false,false,0,false,false,false,false +token0/uygroa,token0,Shell,false,false,false,0,false,false,false,false +Danno131313/dfile-rs,Danno131313,Rust,false,false,false,0,false,false,false,false +Danno131313/django-dashboard,Danno131313,JavaScript,false,false,false,0,false,false,false,false +Danno131313/egyptian-war,Danno131313,Rust,false,false,false,0,false,false,false,false +Danno131313/MEAN-tasklist,Danno131313,JavaScript,false,false,false,0,false,false,false,false +Danno131313/SafeDrive,Danno131313,Kotlin,false,false,false,0,false,false,false,false +warriorg/cron,warriorg,Go,false,false,false,0,false,false,false,false +rafaelalejo/anum_01_18,rafaelalejo,JupyterNotebook,false,false,false,0,false,false,false,false +nedopc/sdk,nedopc,C,false,false,false,0,false,false,false,false +WiseWill/react-basic-components,WiseWill,JavaScript,false,false,false,0,false,false,false,false +FiveYellowMice/sedosipe,FiveYellowMice,Vue,false,false,false,0,false,false,false,false +ruibaby/halo,ruibaby,Java,false,false,true,0,false,false,false,false +wisecenterexchange/blog,wisecenterexchange,CSS,false,false,false,0,false,false,false,false +gapolli/the-coding-train,gapolli,JavaScript,false,false,false,0,false,false,false,false +caikelun/libsvx,caikelun,C,false,false,false,0,false,false,false,false +jacquesherren/smartphysio-android,jacquesherren,Java,true,false,false,2,true,true,false,false +caikelun/PermissionBase,caikelun,ASP,false,false,false,0,false,false,false,false +daque/viare,daque,D,false,false,false,0,false,false,false,false +caikelun/xHook,caikelun,C,false,false,false,0,false,false,false,false +nickpop/CustomUpdate,nickpop,Shell,false,false,false,0,false,false,false,false +calvintam236/miningcore-ui,calvintam236,CSS,false,false,false,0,false,false,false,false +rodrigondec/gmail-signature,rodrigondec,HTML,true,false,false,1,false,false,true,false +lmartinking/Quik,lmartinking,Haxe,false,false,false,0,false,false,false,false +lmartinking/TomatoTimer,lmartinking,C++,false,false,false,0,false,false,false,false +jer_emi/learning-rl,jer_emi,JupyterNotebook,false,false,false,0,false,false,false,false +oskarwiksten/andors-trail,oskarwiksten,Java,false,false,false,0,false,false,false,false +nigelcunningham/service_links,nigelcunningham,PHP,false,false,false,0,false,false,false,false +VLX/TheCryOfDeath,VLX,C#,false,false,false,0,false,false,false,false +Ciro-Rubiano/GDA-3K5-TN,Ciro-Rubiano,,false,false,false,0,false,false,false,false +mhuber84/klickibunti-deployment,mhuber84,PHP,true,false,false,11,false,false,false,false +Qiongloo/python-learn,Qiongloo,,false,false,false,0,false,false,false,false +tylerhenthorn/zek_tor_bridge,tylerhenthorn,,false,false,false,0,false,false,false,false +protesilaos/tempus-themes,protesilaos,Vimscript,false,false,false,0,false,false,false,false +protesilaos/dotfiles,protesilaos,Shell,false,false,false,0,false,false,false,false +spongeboburu/cnwn,spongeboburu,C,false,false,false,0,false,false,false,false +aurelien.chabot/cv,aurelien.chabot,Python,true,false,false,3,false,false,true,false +tron5/ArchiveBackPacker,tron5,PHP,false,false,false,0,false,false,false,false +porkostomus/4clojure-Unkoaned,porkostomus,Clojure,false,false,false,0,false,false,false,false +mattcontet/environment,mattcontet,Makefile,false,false,false,0,false,false,false,false +f2e-practice/todolist,f2e-practice,Vue,true,false,false,2,false,false,true,false +ronalde/transip-api-ddns,ronalde,Shell,false,false,false,0,false,false,false,false +kaili/qdkim,kaili,C++,false,false,false,0,false,false,false,false +Epse/keepmood,Epse,Dart,false,false,false,0,false,false,false,false +alpinebits/rtapp-201710,alpinebits,JavaScript,false,false,false,0,false,false,false,false +robinherbots/GlobalSauce,robinherbots,C#,false,false,false,0,false,false,false,false +Pascal3366/QuiEmu,Pascal3366,C++,false,false,false,0,false,false,false,false +thyseus/yii2-user,thyseus,PHP,false,false,false,0,false,false,false,false +mkourim/browser-suspender,mkourim,Shell,false,false,false,0,false,false,false,false +mkourim/cfme-testcases,mkourim,Python,true,true,false,3,false,true,true,false +archmac/packages,archmac,Shell,true,false,false,2,true,false,false,false +SeppPenner/cgeo,SeppPenner,Java,false,false,false,0,false,false,false,false +SeppPenner/file-dialogs,SeppPenner,Java,false,false,false,0,false,false,false,false +SeppPenner/loraserver,SeppPenner,Go,false,false,false,0,false,false,false,false +SeppPenner/ToastNotifications,SeppPenner,C#,false,false,false,0,false,false,false,false +SeppPenner/xmr-stak,SeppPenner,C++,false,false,false,0,false,false,false,false +tianxue/Y2X,tianxue,HTML,false,false,false,0,false,false,false,false +bitabe/my-test-flask,bitabe,Python,false,false,false,0,false,false,false,false +ayys/lekhak,ayys,C,false,false,false,0,false,false,false,false +Semaga/first_project,Semaga,,false,false,false,0,false,false,false,false +murchik/AlphaDecay,murchik,JavaScript,false,false,false,0,false,false,false,false +murchik/django-smelly-tokens,murchik,Python,true,false,false,1,false,true,false,false +AKGD/sharepoint-snippets,AKGD,JavaScript,false,false,false,0,false,false,false,false +tannhausser/awesome-python,tannhausser,Python,false,false,false,0,false,false,false,false +JamesTKirk/Youtube-Downloader,JamesTKirk,JavaScript,false,false,false,0,false,false,false,false +fmax/dotfiles,fmax,Vimscript,false,false,false,0,false,false,false,false +fmax/link_aggregation,fmax,C++,false,false,false,0,false,false,false,false +fmax/navi,fmax,Python,false,false,false,0,false,false,false,false +matteyeux/sysnet,matteyeux,C,false,false,false,0,false,false,false,false +jeff830266/guessMe,jeff830266,JavaScript,false,false,false,0,false,false,false,false +VileLasagna/learningcmakelearning,VileLasagna,,false,false,false,0,false,false,false,false +VileLasagna/qG13d,VileLasagna,QML,false,false,false,0,false,false,false,false +VileLasagna/qmakeandroidclang,VileLasagna,C++,false,false,false,0,false,false,false,false +VileLasagna/toyBrot,VileLasagna,C++,false,false,false,0,false,false,false,false +VileLasagna/WarpDrive,VileLasagna,C++,false,false,false,0,false,false,false,false +TitanHero/termux-float,TitanHero,Java,false,false,false,0,false,false,false,false +TitanHero/termux-styling,TitanHero,Java,false,false,false,0,false,false,false,false +jdesodt/rqlite-disco-express,jdesodt,JavaScript,true,false,false,2,true,true,false,false +jdesodt/seneca-rqlite-store,jdesodt,JavaScript,true,false,false,2,true,true,false,false +murchik/django-coreapi-client,murchik,Python,false,false,false,0,false,false,false,false +antonionardella/tezos-vps-node,antonionardella,,false,false,false,0,false,false,false,false +FenomenosdeWamos/OficialWamos,FenomenosdeWamos,HTML,false,false,false,0,false,false,false,false +borisFournier/symfony4,borisFournier,HTML,false,false,false,0,false,false,false,false +h4xrk1m/slinkie,h4xrk1m,Python,true,false,false,1,false,true,false,false +thuehn/RegMon,thuehn,R,false,false,false,0,false,false,false,false +JuliaGPU/CLBLAS.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false +JuliaGPU/CLFFT.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false +kipar/nonoengine,kipar,Pascal,false,false,false,0,false,false,false,false +madlabsapp/pyrocms/creative-theme,madlabsapp,JavaScript,false,false,false,0,false,false,false,false +q-quark/rootplots,q-quark,Python,false,false,false,0,false,false,false,false +bimlas/vim-high,bimlas,Vimscript,false,false,false,0,false,false,false,false +lightning-nfc-terminal/lnt-firmware,lightning-nfc-terminal,C,false,false,false,0,false,false,false,false +lightning-nfc-terminal/lnt-server,lightning-nfc-terminal,,false,false,false,0,false,false,false,false +lightning-nfc-terminal/lnt-mobile,lightning-nfc-terminal,,false,false,false,0,false,false,false,false +pceuropa/yii2-forms,pceuropa,JavaScript,false,false,false,0,false,false,false,false +8sync/mors,8sync,C,false,false,false,0,false,false,false,false +hesperos/avr_Libpca,hesperos,C,false,false,false,0,false,false,false,false +simbd/Scripts_divers,simbd,Shell,false,false,false,0,false,false,false,false +SalemBongo/crawler_binance,SalemBongo,Python,false,true,false,0,false,false,false,false +daberlin/sap-reposrc-decompressor,daberlin,C++,true,false,false,2,true,true,false,false +toby3d/telegraph,toby3d,Go,true,false,false,2,false,true,false,false +Teuniz/EDFbrowser,Teuniz,C++,false,false,false,0,false,false,false,false +bob6664569/blockfolio-api-client,bob6664569,JavaScript,true,false,false,1,false,true,false,false +espectalll/espectalll.gitlab.io,espectalll,HTML,false,false,false,0,false,false,false,false +antiX-Linux/user-management-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/add-desktop-antix,antiX-Linux,Shell,false,false,false,0,false,false,false,false +antiX-Linux/add-start-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/add-key-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/set-screen-blank-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/mouse-cc-antix,antiX-Linux,Shell,false,false,false,0,false,false,false,false +antiX-Linux/wallpaper-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/desktop-session-antix,antiX-Linux,Shell,false,false,false,0,false,false,false,false +antiX-Linux/ds-mouse-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +antiX-Linux/group-management-antix,antiX-Linux,Python,false,false,false,0,false,false,false,false +VanessaE/plantlife_modpack,VanessaE,Lua,false,false,false,0,false,false,false,false +VanessaE/moretrees,VanessaE,Lua,false,false,false,0,false,false,false,false +zachpodbielniak/PodNet,zachpodbielniak,C,false,false,false,0,false,false,false,false +VanessaE/biome_lib,VanessaE,Lua,false,false,false,0,false,false,false,false +gorlapraveen/brightness_bashshell_script,gorlapraveen,Shell,false,false,false,0,false,false,false,false +dreamchip/arria10som-uboot,dreamchip,C,false,false,false,0,false,false,false,false +Lmy0217/MedicalImaging,Lmy0217,Python,false,true,false,0,false,false,false,false +gidcs/shadowsocks,gidcs,Python,false,false,false,0,false,false,false,false +yusefkarim/beaglebone-projects,yusefkarim,C,false,false,false,0,false,false,false,false +JoaoHickmann/FixIt,JoaoHickmann,Java,false,false,false,0,false,false,false,false +gidcs/proxy_ctl,gidcs,Shell,false,false,false,0,false,false,false,false +chestm007/linux_thermaltake_riing,chestm007,Python,false,false,false,0,false,false,false,false +lislis/open-air-cinema-berlin,lislis,Python,false,false,false,0,false,false,false,false +level.2/Dice,level.2,PHP,false,false,false,0,false,false,false,false +level.2/Maphper,level.2,PHP,false,false,false,0,false,false,false,false +moodlenet/project/architecture,moodlenet,,false,false,false,0,false,false,false,false +joshg253/snes9x-gx,joshg253,C++,false,false,false,0,false,false,false,false +tejaswigowda/iot-car,tejaswigowda,C++,false,false,false,0,false,false,false,false +DcZipPL/BigFileDownloader,DcZipPL,C#,false,false,false,0,false,false,false,false +DcZipPL/FlihtMessenger,DcZipPL,C#,false,false,false,0,false,false,false,false +Wolfereign/nixos-configs,Wolfereign,Shell,false,false,false,0,false,false,false,false +fawcio/design_patters_examples,fawcio,C++,true,false,false,1,true,false,false,false +gornostay25/routerscan,gornostay25,Python,false,false,false,0,false,false,false,false +SetBased/Stratum/php-stratum,SetBased,PHP,false,false,false,0,false,false,false,false +reggermont/scripts,reggermont,Shell,false,false,false,0,false,false,false,false +reggermont/README.md,reggermont,,false,false,false,0,false,false,false,false +ada-chem/ada_core,ada-chem,Python,false,true,false,0,false,false,false,false +ragnar_lodbrok/meow-sql,ragnar_lodbrok,C++,false,false,false,0,false,false,false,false +uxbh/ztdns,uxbh,Go,false,false,false,0,false,false,false,false +soxrok2212/reaver,soxrok2212,C,false,false,false,0,false,false,false,false +GT-engine/Voxel-Based-Cone-Tracing,GT-engine,C++,false,false,false,0,false,false,false,false +Exagone313/nothl,Exagone313,C,false,false,false,0,false,false,false,false +m00dawg/FilmLog,m00dawg,JavaScript,true,false,false,1,false,true,false,false +kajackdfw/raspibox,kajackdfw,C++,false,false,false,0,false,false,false,false +0xBACE/pleroma-imgrep.py,0xBACE,Python,false,false,false,0,false,false,false,false +heurekus/LibreOffice-code-snippets,heurekus,VisualBasic,false,false,false,0,false,false,false,false +heurekus/Busch-2090-Projects,heurekus,C,false,false,false,0,false,false,false,false +heurekus/Nibbler-4-Bit-CPU-experiments,heurekus,Assembly,false,false,false,0,false,false,false,false +heurekus/ddns-inwx-ipv6,heurekus,Shell,false,false,false,0,false,false,false,false +heurekus/Mobile-Block-Hosts-List,heurekus,Shell,false,false,false,0,false,false,false,false +mezantrop/svcstats.py,mezantrop,Python,false,false,false,0,false,false,false,false +mojtaba8286/azmoon,mojtaba8286,TeX,false,false,false,0,false,false,false,false +Zeitheron/ExpandedEquivalence,Zeitheron,Java,false,false,false,0,false,false,false,false +DragonForge/HammerCore,DragonForge,Java,false,false,false,0,false,false,false,false +gun1x/razer_keyboard_config,gun1x,Python,false,false,false,0,false,false,false,false +slaiyer/rip-up,slaiyer,Shell,false,false,false,0,false,false,false,false +slaiyer/bash_utils,slaiyer,Shell,false,false,false,0,false,false,false,false +volair/volaircoin,volair,JavaScript,false,false,false,0,false,false,false,false +nnd1288/chat-vgql,nnd1288,JavaScript,false,false,false,0,false,false,false,false +Faeris95/GoKeylogger,Faeris95,Go,false,false,false,0,false,false,false,false +Faeris95/YoutubeToMp3-PythonGUI,Faeris95,Python,false,false,false,0,false,false,false,false +Faeris95/SteganoPy3,Faeris95,Python,false,false,false,0,false,false,false,false +urbanware-org/qadrsc,urbanware-org,Shell,false,false,false,0,false,false,false,false +nizovn/meta-qt5,nizovn,PHP,false,false,false,0,false,false,false,false +nizovn/qt5-webos-sdk,nizovn,C,false,false,false,0,false,false,false,false +Strit/arm-profiles,Strit,Scheme,false,false,false,0,false,false,false,false +crescentrose/php-docker-benchmark,crescentrose,PHP,false,false,false,0,false,false,false,false +urbanware-org/inhibit,urbanware-org,Shell,false,false,false,0,false,false,false,false +FritsHoogland/prometheus_node_exp_grafana_install,FritsHoogland,,false,false,false,0,false,false,false,false +solarliner/terrainlib,solarliner,Python,true,false,false,1,false,true,false,false +bashrc2/freedombone,bashrc2,Shell,true,false,false,4,true,true,true,false +Jenazads/Numerical-Analysis,Jenazads,Python,false,false,false,0,false,false,false,false +Jenazads/ComputerScience_UNI,Jenazads,Java,false,false,false,0,false,false,false,false +urbanware-org/brille,urbanware-org,Python,false,false,false,0,false,false,false,false +urbanware-org/remorse,urbanware-org,Python,false,false,false,0,false,false,false,false +FriendlyLinuxPlayers/flip.earth,FriendlyLinuxPlayers,Go,false,false,false,0,false,false,false,false +FriendlyLinuxPlayers/flip.placeholder,FriendlyLinuxPlayers,HTML,false,false,false,0,false,false,false,false +bashrc2/LKMPG,bashrc2,HTML,false,false,false,0,false,false,false,false +urbanware-org/qadssh,urbanware-org,Shell,false,false,false,0,false,false,false,false +woblight/Strategos,woblight,,false,false,false,0,false,false,false,false +jebster/pagekit/slideshow-widget,jebster,JavaScript,false,false,false,0,false,false,false,false +urbanware-org/honeypot-wasp,urbanware-org,PHP,false,false,false,0,false,false,false,false +urbanware-org/honeypot-hornet,urbanware-org,PHP,false,false,false,0,false,false,false,false +Dica-Developer/vim-jdb,Dica-Developer,Vimscript,false,false,false,0,false,false,false,false +urbanware-org/erfr,urbanware-org,Python,false,false,false,0,false,false,false,false +paolobenve/myphotoshare,paolobenve,JavaScript,false,false,false,0,false,false,false,false +nickmertin/pipeline,nickmertin,C++,false,false,false,0,false,false,false,false +Komputronika/LedControl,Komputronika,C++,false,false,false,0,false,false,false,false +carymrobbins/scalaz-deriving,carymrobbins,Scala,true,false,false,2,true,false,true,false +wolframroesler/snippets,wolframroesler,,false,false,false,0,false,false,false,false +miceuz/ble-soil-moisture-sensor,miceuz,C,false,false,false,0,false,false,false,false +miceuz/i2c-moisture-sensor,miceuz,C,false,false,false,0,false,false,false,false +miceuz/PlantWateringAlarm,miceuz,JupyterNotebook,false,false,false,0,false,false,false,false +miceuz/rs485-moist-sensor,miceuz,C,false,false,false,0,false,false,false,false +crowzero/macos-socks-proxy,crowzero,Shell,false,false,false,0,false,false,false,false +wdullaer/vplayer,wdullaer,Kotlin,true,false,false,1,false,false,false,true +frozenfoxx/frozenfoxx.gitlab.io,frozenfoxx,CSS,true,false,false,2,false,true,true,false +jdr195/dotfiles,jdr195,Vimscript,false,false,false,0,false,false,false,false +keyvalue/hpt,keyvalue,Rust,false,false,false,0,false,false,false,false +usmonovsardor7770/inter,usmonovsardor7770,CSS,false,false,false,0,false,false,false,false +iandesj/snippets,iandesj,,false,false,false,0,false,false,false,false +SalvatoreLopez/jfreechart-java,SalvatoreLopez,Java,false,false,false,0,false,false,false,false +tairatcliff/EUC-Automation,tairatcliff,HTML,false,false,false,0,false,false,false,false +xdrixxyz/pepperoni,xdrixxyz,JavaScript,true,false,false,1,false,false,true,false +bradleycwojcik/java-text-euchre,bradleycwojcik,Java,false,false,false,0,false,false,false,false +plopgrizzly/adi/stick,plopgrizzly,Rust,false,false,false,0,false,false,false,false +dfffffff/newlib-6809,dfffffff,C,false,false,false,0,false,false,false,false +dfffffff/gcc6809,dfffffff,,false,false,false,0,false,false,false,false +global-asp/gsn-audio,global-asp,,false,false,false,0,false,false,false,false +CharlyRamirez/storeAngular4,CharlyRamirez,HTML,false,false,false,0,false,false,false,false +apenketh-opensource/ansible-vultr-automation,apenketh-opensource,Shell,false,false,false,0,false,false,false,false +spack/spack,spack,Python,false,false,false,0,false,false,false,false +dynomite567/docker-plex-beta-armhf,dynomite567,,true,false,false,1,true,false,false,false +dirn/TODO.vim,dirn,Vimscript,false,false,false,0,false,false,false,false +Nohus/Apathy,Nohus,Kotlin,false,false,false,0,false,false,false,false +ahr96/BattleTanks,ahr96,Java,false,false,false,0,false,false,false,false +SetBased/ABC-Framework/php-abc,SetBased,PHP,false,false,false,0,false,false,false,false +jianshuanghe/my-react-redux,jianshuanghe,JavaScript,false,false,false,0,false,false,false,false +SetBased/php-abc-babel,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-babel-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-blob-store,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-blob-store-blob,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-canonical-hostname-resolver,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-canonical-hostname-resolver-http-host,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-canonical-hostname-resolver-static,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-company,SetBased,,false,false,false,0,false,false,false,false +SetBased/php-abc-company-resolver,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-company-resolver-third-level,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-company-resolver-uni,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-config-vault,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-config-vault-plain-file,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-console,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-error-logger,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-error-logger-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-exception,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-form,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-form-louver,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-form-raw,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-helper-blob-download,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-helper-password,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-html,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-http-header,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-language-resolver,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-language-resolver-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-lock-entity,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-lock-entity-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-lock-named,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-lock-named-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-login-handler,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-login-handler-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-login-requirement,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-login-requirement-oauth2-league,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/ABC-Framework/php-abc-mail-back,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-mail-front,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-mail-message,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-obfuscator,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-obfuscator-core,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/php-abc-page-core,SetBased,PHP,false,false,false,0,false,false,false,false +loxal/muctool,loxal,HTML,true,false,false,2,false,false,false,false +maisonChaves/bussola,maisonChaves,C++,false,false,false,0,false,false,false,false +kitanata/TourneyMan,kitanata,JavaScript,false,false,false,0,false,false,false,false +forksociety/AhaEvent,forksociety,JavaScript,false,false,false,0,false,false,false,false +ameer00/advanced-kubernetes-workshop,ameer00,Shell,false,false,false,0,false,false,false,false +Kaizeras/paysafe-training,Kaizeras,TypeScript,false,false,false,0,false,false,false,false +monero-outreach/Contribute,monero-outreach,,false,false,false,0,false,false,false,false +biclub1024/crazycoin,biclub1024,,false,false,false,0,false,false,false,false +jinan5694/hello-gitlab,jinan5694,,false,false,false,0,false,false,false,false +J.sitthipol/KTBDorm,J.sitthipol,Kotlin,false,false,false,0,false,false,false,false +concello-santiago-de-compostela/scq-mount,concello-santiago-de-compostela,Shell,false,false,false,0,false,false,false,false +diecienove/python4dicom,diecienove,Python,false,false,false,0,false,false,false,false +Zyrophr/dotfiles,Zyrophr,Vimscript,false,false,false,0,false,false,false,false +waywrong/BreezySLAM,waywrong,C,false,false,false,0,false,false,false,false +duncan-bayne/heroku-app-clozure-common-lisp,duncan-bayne,CommonLisp,true,false,false,1,false,true,false,false +olymk2/emacs-digitalocean,olymk2,EmacsLisp,false,false,false,0,false,false,false,false +codingJWilliams/Assassin,codingJWilliams,Python,true,false,false,1,false,false,true,false +rjbs91/AC_Game,rjbs91,Java,false,false,false,0,false,false,false,false +my.hoih/Game_Star,my.hoih,JavaScript,false,false,false,0,false,false,false,false +Poly_Rueda/scheduling-app-ray,Poly_Rueda,Vue,true,false,false,1,false,false,true,false +nk2580/declarative-bootsrap,nk2580,CSS,false,false,false,0,false,false,false,false +jbouter/dotfiles,jbouter,Vimscript,false,false,false,0,false,false,false,false +AEngine/OmniSITE,AEngine,PHP,false,false,false,0,false,false,false,false +laundmo/PixelCanvasBot,laundmo,Python,false,false,false,0,false,false,false,false +fmatosqg/amazingWallpapersFlutter,fmatosqg,Dart,false,false,false,0,false,false,false,false +congard/jogl-examples,congard,Java,false,false,false,0,false,false,false,false +truthy/truth-runner,truthy,JavaScript,false,false,false,0,false,false,false,false +TitanHero/rainbowstream,TitanHero,Python,false,false,false,0,false,false,false,false +VaanRatsbane/DrakLab,VaanRatsbane,C#,false,false,false,0,false,false,false,false +hammad038/Cheatsheets,hammad038,,false,false,false,0,false,false,false,false +lfiolhais/hs,lfiolhais,Rust,false,false,false,0,false,false,false,false +urbanware-org/nasty-aliases,urbanware-org,Shell,false,false,false,0,false,false,false,false +urbanware-org/paval,urbanware-org,Python,false,false,false,0,false,false,false,false +urbanware-org/clap,urbanware-org,Python,false,false,false,0,false,false,false,false +OpMonTeam/OpMon,OpMonTeam,C++,false,false,false,0,false,false,false,false +cclark31415/owf-build,cclark31415,JavaScript,false,false,false,0,false,false,false,false +yiitk/yiitk,yiitk,PHP,false,false,false,0,false,false,false,false +itukikikuti/XLibrary11,itukikikuti,C++,true,false,false,1,false,true,false,false +prodigasistemas/ggas,prodigasistemas,Java,false,false,false,0,false,false,false,false +giuseppeurso-eu/java-utilities,giuseppeurso-eu,Java,false,false,false,0,false,false,false,false +giuseppeurso-eu/spring-mvc,giuseppeurso-eu,Java,false,false,false,0,false,false,false,false +aryzing/test,aryzing,,false,false,false,0,false,false,false,false +Aloso/1337-dame-spiel,Aloso,JavaScript,false,false,false,0,false,false,false,false +jgkamat/jgkamat.gitlab.io,jgkamat,EmacsLisp,true,false,false,1,false,false,true,false +fanLi_319/KeepHome,fanLi_319,,false,false,false,0,false,false,false,false +idlemoor/BadNews,idlemoor,Shell,false,false,false,0,false,false,false,false +yaoandy107/NtutScrapy,yaoandy107,Python,false,false,false,0,false,false,false,false +jnfaerch/skillsupp,jnfaerch,Ruby,false,false,false,0,false,false,false,false +jnfaerch/elevator-dash,jnfaerch,Ruby,false,false,false,0,false,false,false,false +jnfaerch/cargo-dash,jnfaerch,Ruby,false,false,false,0,false,false,false,false +vertikar/straya-coin,vertikar,C++,false,false,false,0,false,false,false,false +jabranham/mixed-pitch,jabranham,EmacsLisp,true,false,false,1,false,true,false,false +jabranham/pandoc-a-grad-student-guide,jabranham,TeX,false,false,false,0,false,false,false,false +Alvin9999/PAC,Alvin9999,JavaScript,false,false,false,0,false,false,false,false +biovm/biovm.gitlab.io,biovm,HTML,true,false,false,1,false,true,false,false +jnfaerch/google-chart,jnfaerch,HTML,false,false,false,0,false,false,false,false +NeonSpectrum/NWH,NeonSpectrum,JavaScript,false,false,false,0,false,false,false,false +vasanthdeveloper/vasanthdeveloper.gitlab.io,vasanthdeveloper,HTML,true,false,false,1,false,false,true,false +fuzzy8/arduino-light-board,fuzzy8,C++,false,false,false,0,false,false,false,false +Swapnil273/my-library,Swapnil273,JavaScript,true,false,false,1,false,false,true,false +estinet/gFeatures,estinet,Java,true,false,false,1,false,true,false,false +guzmansalv/reddit-subdomains,guzmansalv,,false,false,false,0,false,false,false,false +GSC_Developers/SmartContracts,GSC_Developers,,false,false,false,0,false,false,false,false +KatHamer/HackWM,KatHamer,Python,false,true,false,0,false,false,false,false +nunodonato/ngdb,nunodonato,,false,false,false,0,false,false,false,false +xergio/xrg.es,xergio,JavaScript,false,false,false,0,false,false,false,false +ciferkey/soup-bot,ciferkey,Python,false,true,false,0,false,false,false,false +permana.sidiq/intro-sample-di-dagger2,permana.sidiq,Java,false,false,false,0,false,false,false,false +MaxCoin/maxcoin-qt,MaxCoin,C++,false,false,false,0,false,false,false,false +solarus-games/zmosdx-soluce,solarus-games,HTML,false,false,false,0,false,false,false,false +solarus-games/graphic-design,solarus-games,,false,false,false,0,false,false,false,false +solarus-games/learn-solarus,solarus-games,,false,false,false,0,false,false,false,false +Ma_124/build.py,Ma_124,Python,true,true,false,1,false,false,true,false +solarus-games/spcom,solarus-games,C#,false,false,false,0,false,false,false,false +bytehackr/awesome-devsecops,bytehackr,,false,false,false,0,false,false,false,false +bytehackr/Awesome-Hacking-Resources,bytehackr,,false,false,false,0,false,false,false,false +bytehackr/awesome-raspberrypi,bytehackr,,false,false,false,0,false,false,false,false +bytehackr/awesome-scalability,bytehackr,,false,false,false,0,false,false,false,false +runhyve/vm-webhooks,runhyve,Shell,false,false,false,0,false,false,false,false +alitux/GDPT,alitux,Python,false,false,false,0,false,false,false,false +Jarbay/Electra,Jarbay,Python,false,true,false,0,false,false,false,false +abiproject/abilaunch,abiproject,Python,true,true,false,1,false,true,false,false +torbmol/pairlock,torbmol,Rust,false,false,false,0,false,false,false,false +Ayron/dragonsunited_minecraft_installer,Ayron,C,false,false,false,0,false,false,false,false +willmac321/EnigmaSolver,willmac321,Java,false,false,false,0,false,false,false,false +willmac321/PuzzleCube,willmac321,Java,false,false,false,0,false,false,false,false +Kamcuk/STM32Cube_FW,Kamcuk,Shell,false,false,false,0,false,false,false,false +hexgearinc/seven-sun-downs,hexgearinc,CSS,true,false,false,1,false,true,false,false +MariusVonHassel/profdice-frontend,MariusVonHassel,JavaScript,false,false,false,0,false,false,false,false +Matrixcoffee/transformat,Matrixcoffee,Python,false,false,false,0,false,false,false,false +Matrixcoffee/UnRedactBot,Matrixcoffee,Python,false,false,false,0,false,false,false,false +Matrixcoffee/urllib-requests-adapter,Matrixcoffee,Python,false,false,false,0,false,false,false,false +Matrixcoffee/jenkins-dl,Matrixcoffee,Shell,false,false,false,0,false,false,false,false +metalriders/P3BB,metalriders,HTML,false,false,false,0,false,false,false,false +gitlab-org/gitter/docs,gitlab-org,,false,false,false,0,false,false,false,false +serp-api/google-search-results-golang,serp-api,Go,false,false,false,0,false,false,false,false +serp-api/google-search-results-java,serp-api,Java,false,false,false,0,false,false,false,false +serp-api/google-search-results-nodejs,serp-api,JavaScript,false,false,false,0,false,false,false,false +serp-api/google-search-results-php,serp-api,PHP,false,false,false,0,false,false,false,false +serp-api/google-search-results-python,serp-api,Python,false,true,false,0,false,false,false,false +serp-api/google-search-results-ruby,serp-api,Ruby,false,false,false,0,false,false,false,false +k3oni/zfsrep,k3oni,Shell,false,false,false,0,false,false,false,false +philmd/qemu,philmd,C,true,false,false,1,false,true,false,false +ArthurSonzogni/WebNeural,ArthurSonzogni,C++,false,false,false,0,false,false,false,false +bigapplepy/yak-bak,bigapplepy,Python,true,true,false,2,false,true,false,false +RariumUnlimited/RariumUiFramework,RariumUnlimited,C++,false,false,false,0,false,false,false,false +stuart-ellis/aws-ansible-config,stuart-ellis,Python,false,false,false,0,false,false,false,false +stuart-ellis/aws-jumpstart-ec2,stuart-ellis,Python,false,false,false,0,false,false,false,false +stuart-ellis/aws-terraform-config,stuart-ellis,HCL,false,false,false,0,false,false,false,false +stuart-ellis/button,stuart-ellis,Python,false,false,false,0,false,false,false,false +svanheulen/misc_mh_patches,svanheulen,Assembly,false,false,false,0,false,false,false,false +svanheulen/mhxqe,svanheulen,JavaScript,false,false,false,0,false,false,false,false +pantacor/pantahub-www,pantacor,JavaScript,true,false,false,2,true,false,true,false +gargolito/splunk-hec-forwarder,gargolito,Python,false,false,false,0,false,false,false,false +svanheulen/mhef,svanheulen,Python,false,false,false,0,false,false,false,false +svanheulen/mhff,svanheulen,Python,false,false,false,0,false,false,false,false +svanheulen/mhqs,svanheulen,Python,false,false,false,0,false,false,false,false +svanheulen/mhsc,svanheulen,C,false,false,false,0,false,false,false,false +svanheulen/mhx_data_manager,svanheulen,C,false,false,false,0,false,false,false,false +svanheulen/mhx_quest_importer,svanheulen,C,false,false,false,0,false,false,false,false +aiss2eleim/notnamed,aiss2eleim,Python,false,false,false,0,false,false,false,false +morlin/pymath2d,morlin,Python,false,false,false,0,false,false,false,false +severinkaderli/pandoc-docker,severinkaderli,,false,false,false,0,false,false,false,false +psyhomb/heketi,psyhomb,,false,false,false,0,false,false,false,false +psyhomb/k8s-deployer,psyhomb,Python,false,true,false,0,false,false,false,false +sezzh/python3-oop-concepts,sezzh,Python,false,false,false,0,false,false,false,false +Kartoffelsaft/Painting-a-hypercube,Kartoffelsaft,Python,false,false,false,0,false,false,false,false +Kartoffelsaft/TerminalGameTest,Kartoffelsaft,C++,false,false,false,0,false,false,false,false +willDepalme/css-icons,willDepalme,CSS,false,false,false,0,false,false,false,false +chriscox/FasterFuzzer,chriscox,C++,false,false,false,0,false,false,false,false +ChaoticEnigma/h264-roi,ChaoticEnigma,C++,false,false,false,0,false,false,false,false +ChaoticEnigma/libchaos,ChaoticEnigma,C++,true,false,false,2,true,true,false,false +ChaoticEnigma/openocd-ht32,ChaoticEnigma,C,false,false,false,0,false,false,false,false +ChaoticEnigma/reassemble,ChaoticEnigma,C++,false,false,false,0,false,false,false,false +ChaoticEnigma/yaptlytoti,ChaoticEnigma,C++,false,false,false,0,false,false,false,false +ChaoticEnigma/zparcel,ChaoticEnigma,C++,false,false,false,0,false,false,false,false +pok3r-custom/ChibiOS,pok3r-custom,C,false,false,false,0,false,false,false,false +pok3r-custom/ChibiOS-Contrib,pok3r-custom,C,false,false,false,0,false,false,false,false +pok3r-custom/pok3rconf,pok3r-custom,C++,true,false,false,2,true,true,false,false +pok3r-custom/pok3rtool,pok3r-custom,C++,true,false,false,2,true,true,false,false +pok3r-custom/pok3r_re_firmware,pok3r-custom,Assembly,false,false,false,0,false,false,false,false +pok3r-custom/qmk_pok3r,pok3r-custom,C,true,false,false,1,true,false,false,false +pok3r-custom/tmk_core,pok3r-custom,C,false,false,false,0,false,false,false,false +pok3r-custom/tmk_pok3r,pok3r-custom,C,false,false,false,0,false,false,false,false +pok3r-custom/vortex-keyboards,pok3r-custom,,false,false,false,0,false,false,false,false +ojwb/lloconv,ojwb,C++,false,false,false,0,false,false,false,false +psimyn/catbot,psimyn,,false,false,false,0,false,false,false,false +wilsondin/PyToMD5,wilsondin,Python,false,false,false,0,false,false,false,false +m3ch_mania/userscripts,m3ch_mania,JavaScript,false,false,false,0,false,false,false,false +tigew/dotfiles,tigew,Shell,false,false,false,0,false,false,false,false +codemonkeylabs/structured-cli,codemonkeylabs,Haskell,false,false,false,0,false,false,false,false +RootDark712/matematica_cta1,RootDark712,Perl,false,false,false,0,false,false,false,false +clickable/clickable-gitlab-ci-test,clickable,CMake,true,false,false,1,false,true,false,false +mech-lang/syntax,mech-lang,Rust,false,false,false,0,false,false,false,false +Evolutionzz/device_xiaomi_mido,Evolutionzz,C++,false,false,false,0,false,false,false,false +kurtbomya/python-class-example,kurtbomya,Python,false,false,false,0,false,false,false,false +SetBased/php-rijksregisternummer,SetBased,PHP,false,false,false,0,false,false,false,false +SetBased/py-enarksh-lib,SetBased,Python,false,false,false,0,false,false,false,false +SetBased/ETLT/py-etlt,SetBased,Python,false,false,false,0,false,false,false,false +SetBased/ETLT/py-etlt-mysql,SetBased,Python,false,false,false,0,false,false,false,false +SetBased/py-kerapu,SetBased,Python,false,false,false,0,false,false,false,false +Lamina/py-stratum,Lamina,Python,false,false,false,0,false,false,false,false +Lamina/py-stratum-mssql,Lamina,Python,false,false,false,0,false,false,false,false +Lamina/py-stratum-pgsql,Lamina,Python,false,false,false,0,false,false,false,false +SimplySublime/rice,SimplySublime,Vimscript,false,false,false,0,false,false,false,false +AndroidOpenCode/aplayer,AndroidOpenCode,Java,false,false,false,0,false,false,false,false +xonvanetta/gerish,xonvanetta,Go,true,false,false,2,true,true,false,false +zeropaper/fiha,zeropaper,JavaScript,true,false,false,2,false,true,true,false +nate-2014jatc/Reinstanced-Schematics,nate-2014jatc,,false,false,false,0,false,false,false,false +eidheim/desktop-stream,eidheim,C++,false,false,false,0,false,false,false,false +Lamina/php-stratum-samples,Lamina,PHP,false,false,false,0,false,false,false,false +Lamina/py-stratum-mysql,Lamina,Python,false,false,false,0,false,false,false,false +obilaniu/Benzina,obilaniu,C,false,false,false,0,false,false,false,false +obilaniu/libcrcfast,obilaniu,C,false,false,false,0,false,false,false,false +obilaniu/libpfc,obilaniu,C,false,false,false,0,false,false,false,false +obilaniu/Zvit,obilaniu,Python,false,false,false,0,false,false,false,false +obilaniu/Nauka,obilaniu,Python,false,false,false,0,false,false,false,false +obilaniu/GradOverride,obilaniu,Python,false,false,false,0,false,false,false,false +obilaniu/Sich,obilaniu,C,false,false,false,0,false,false,false,false +ssornpet/BasicDjango,ssornpet,,false,false,false,0,false,false,false,false +VeillaultAdrien/TPSecurite,VeillaultAdrien,CSS,false,false,false,0,false,false,false,false +vah.id/data-structure-js,vah.id,JavaScript,false,false,false,0,false,false,false,false +gkrishnaks/auto-deploy-webextensions,gkrishnaks,JavaScript,true,false,false,1,false,false,false,false +Lamasaurus/LudumDare41,Lamasaurus,GDScript,false,false,false,0,false,false,false,false +magiovyliner/harbin-project,magiovyliner,PHP,false,false,false,0,false,false,false,false +hectorj/test-nix-gitlab-ci,hectorj,Nix,true,false,false,1,true,false,false,false +turbosuper/IN2-Teil2,turbosuper,C,false,false,false,0,false,false,false,false +urbanware-org/byteweiser,urbanware-org,Python,false,false,false,0,false,false,false,false +gitm8/monkey-config,gitm8,TypeScript,false,false,false,0,false,false,false,false +c8js/cycle,c8js,JavaScript,false,false,false,0,false,false,false,false +zjw88282740/pwn-firewall,zjw88282740,C,true,false,false,1,true,false,false,false +1974892005/openvideo,1974892005,PHP,false,false,false,0,false,false,false,false +TomasHubelbauer/bloggo-obs,TomasHubelbauer,,false,false,false,0,false,false,false,false +EnigmaXS/enigma-machine,EnigmaXS,PHP,false,false,false,0,false,false,false,false +cgduncan7/fiestival,cgduncan7,JavaScript,false,false,false,0,false,false,false,false +NicolasDerumigny/microbench,NicolasDerumigny,C,false,false,false,0,false,false,false,false +nullworks/cathook-ci-docker,nullworks,,false,false,false,0,false,false,false,false +reactos/reactos,reactos,C,false,false,false,0,false,false,false,false +bridgesense/xdebugbox,bridgesense,,false,false,false,0,false,false,false,false +jckimble/go-health,jckimble,Go,true,false,false,1,false,true,false,false +iv.gavryushin/combinatorics,iv.gavryushin,C,false,false,false,0,false,false,false,false +vojtaklos/pickathing,vojtaklos,JavaScript,false,false,false,0,false,false,false,false +estinet/EstiConsole,estinet,Go,true,false,false,1,false,true,false,false +estinet/ClioteSky,estinet,Go,true,false,false,1,false,true,false,false +estinet/gFeaturesBungee,estinet,Java,true,false,false,1,false,true,false,false +noyez_examples/actix_example,noyez_examples,Rust,false,false,false,0,false,false,false,false +rbarcante/termRant,rbarcante,Go,false,false,false,0,false,false,false,false +agrianius/mt_queue,agrianius,C++,false,false,false,0,false,false,false,false +StarUI/shadowsocks-libev,StarUI,C,false,false,false,0,false,false,false,false +StarUI/googlehosts,StarUI,Rascal,false,false,false,0,false,false,false,false +psachin/psachin.gitlab.io,psachin,CSS,true,false,false,1,false,true,false,false +StarUI/free-programming-books-zh_CN,StarUI,JavaScript,false,false,false,0,false,false,false,false +Charlie27/SistemaGestionCine,Charlie27,,false,false,false,0,false,false,false,false +Deblandero/joutra,Deblandero,PHP,false,false,false,0,false,false,false,false +kittydoor/dotfiles,kittydoor,Python,false,false,false,0,false,false,false,false +hajidalakhtar/profil,hajidalakhtar,JavaScript,true,false,false,1,false,false,true,false +mypaint-devs/mypaint,mypaint-devs,Python,false,false,false,0,false,false,false,false +qash/dotfiles,qash,Shell,false,false,false,0,false,false,false,false +statscloud.io/statscloud.io-nodejs-client,statscloud.io,JavaScript,true,false,false,1,true,false,false,false +Tuuux/galaxie,Tuuux,Shell,false,false,false,0,false,false,false,false +Tuuux/galaxie-libquinoxe,Tuuux,Python,false,true,false,0,false,false,false,false +Tuuux/GalaxieDrakeCLI,Tuuux,Python,true,true,false,1,false,true,false,false +Tuuux/galaxie-bob,Tuuux,Python,true,true,false,1,false,true,false,false +intr0/intr0.gitlab.io,intr0,HTML,true,false,false,1,false,false,true,false +goncalosamuel/cgi-auth-client,goncalosamuel,Java,false,false,true,0,false,false,false,false +geoffreyp/django-cook,geoffreyp,Python,false,true,false,0,false,false,false,false +kookma/TiddlyShow,kookma,HTML,false,false,false,0,false,false,false,false +dslackw/pysed,dslackw,Python,false,true,false,0,false,false,false,false +dslackw/USBdev,dslackw,Python,false,true,false,0,false,false,false,false +aeremeev/saturna,aeremeev,TypeScript,true,false,false,1,false,true,false,false +estinet/EstiSite,estinet,,false,false,false,0,false,false,false,false +d3fc0n4/free-social-sharing-firefox,d3fc0n4,JavaScript,false,false,false,0,false,false,false,false +cloudnativewales/dockeronwindows,cloudnativewales,HTML,true,false,false,1,false,true,false,false +zlintz/openwest-2108-docker-dev-prod,zlintz,,false,false,false,0,false,false,false,false +luis11989/programacionivb,luis11989,JavaScript,false,false,false,0,false,false,false,false +Giovan1/apollo,Giovan1,C++,false,false,false,0,false,false,false,false +harkwell/khallware,harkwell,Java,false,false,true,0,false,false,false,false +WillDaSilva/smug,WillDaSilva,Python,false,true,false,0,false,false,false,false +bzim/trampoline-rs,bzim,Rust,false,false,false,0,false,false,false,false +harkwell/kotlin-poc,harkwell,Kotlin,false,false,false,0,false,false,false,false +harkwell/java-poc,harkwell,Java,false,false,false,0,false,false,false,false +harkwell/recipes,harkwell,Java,false,false,true,0,false,false,false,false +harkwell/merit,harkwell,Java,false,false,false,0,false,false,false,false +harkwell/lisp-poc,harkwell,Scheme,false,false,false,0,false,false,false,false +harkwell/ruby-poc,harkwell,Ruby,false,false,false,0,false,false,false,false +harkwell/golang-poc,harkwell,Go,false,false,false,0,false,false,false,false +harkwell/roy,harkwell,Java,false,false,true,0,false,false,false,false +harkwell/nurse_metrics,harkwell,Java,false,false,true,0,false,false,false,false +harkwell/boxes,harkwell,Java,false,false,true,0,false,false,false,false +harkwell/decently,harkwell,Java,false,false,true,0,false,false,false,false +klevstul/NoCountryRedirect,klevstul,JavaScript,false,false,false,0,false,false,false,false +notaku/DonationRotation,notaku,Shell,false,false,false,0,false,false,false,false +homework-manager/hwm-frontend,homework-manager,JavaScript,false,false,false,0,false,false,false,false +mort96/gauges,mort96,C,false,false,false,0,false,false,false,false +dgvncsz0f/dot,dgvncsz0f,EmacsLisp,false,false,false,0,false,false,false,false +kienan/puppet-alternc,kienan,Puppet,true,false,false,2,false,true,true,false +cookedsteak/daoone-forum,cookedsteak,Shell,false,false,false,0,false,false,false,false +marcos-abs/curso-de-asp.net,marcos-abs,C#,false,false,false,0,false,false,false,false +marcos-abs/hackerhank,marcos-abs,C#,false,false,false,0,false,false,false,false +marcos-abs/ShortcutExporter,marcos-abs,C#,false,false,false,0,false,false,false,false +marcos-abs/xamarin-forms-page-transitions,marcos-abs,C#,false,false,false,0,false,false,false,false +k33g/k33g.gitlab.io,k33g,JavaScript,true,false,false,1,false,true,false,false +spiidey/useful-shit,spiidey,Python,false,false,false,0,false,false,false,false +SalvatoreLopez/ejemplo-quiz,SalvatoreLopez,JavaScript,false,false,false,0,false,false,false,false +jedore/django_learning,jedore,Python,false,false,false,0,false,false,false,false +Baw-Dev/Baw-Service,Baw-Dev,CSS,false,false,false,0,false,false,false,false +hariprasadraja/golang-examples,hariprasadraja,Go,false,false,false,0,false,false,false,false +metsatron/brzeemacs,metsatron,EmacsLisp,false,false,false,0,false,false,false,false +metsatron/extensions-seamonkey,metsatron,JavaScript,false,false,false,0,false,false,false,false +probono/gs-plugin-appimage,probono,C,true,false,false,1,false,true,false,false +jordirc-demos/rabbit,jordirc-demos,Python,false,false,false,0,false,false,false,false +yangjz1125/libjconfig,yangjz1125,Java,false,false,false,0,false,false,false,false +peterbillam/miditools,peterbillam,HTML,false,false,false,0,false,false,false,false +peterbillam/postscriptlib,peterbillam,PostScript,false,false,false,0,false,false,false,false +nmud/archive/nmud-content,nmud,JavaScript,false,false,false,0,false,false,false,false +cn-ds/moz-readability-node,cn-ds,JavaScript,false,false,false,0,false,false,false,false +aa900031/react-native-transfrom-view,aa900031,TypeScript,false,false,false,0,false,false,false,false +hyperclock/sandstorm,hyperclock,PHP,false,false,false,0,false,false,false,false +axelsommerfeldt/endfloat,axelsommerfeldt,TeX,false,false,false,0,false,false,false,false +zclassic/zclassic,zclassic,C++,false,false,false,0,false,false,false,false +hzxie/voj,hzxie,Java,false,false,false,0,false,false,false,false +statscloud.io/statscloud.io-nodejs-example,statscloud.io,JavaScript,false,false,false,0,false,false,false,false +oddcoder/GP_Template,oddcoder,TeX,true,false,false,1,false,true,false,false +satisfiability01/mios,satisfiability01,Haskell,true,false,false,1,true,false,false,false +atareao/gnulinuxvalencia.org,atareao,PHP,false,false,false,0,false,false,false,false +peer23peer/PIDcircuitTikZ,peer23peer,TeX,false,false,false,0,false,false,false,false +nickw1/mapthepaths,nickw1,JavaScript,false,false,false,0,false,false,false,false +ludeeus/HA-AIO-Installer,ludeeus,Shell,false,false,false,0,false,false,false,false +mhnaderi/JTanks,mhnaderi,Java,false,false,false,0,false,false,false,false +michael0703/Python-FbClubManage,michael0703,TeX,false,false,false,0,false,false,false,false +earvinpiamonte/freelancer-com-helper,earvinpiamonte,HTML,false,false,false,0,false,false,false,false +rastersoft/fbzx,rastersoft,C,false,false,false,0,false,false,false,false +rastersoft/panther_launcher,rastersoft,Vala,false,false,false,0,false,false,false,false +rastersoft/terminus,rastersoft,Vala,false,false,false,0,false,false,false,false +Elypia/Huggy,Elypia,PHP,true,false,false,1,false,false,true,false +jD91mZM2/cargo-patch,jD91mZM2,Rust,false,false,false,0,false,false,false,false +chetanraj/my-investments-react,chetanraj,JavaScript,false,false,false,0,false,false,false,false +shnarazk/haskell/PDP11,shnarazk,Haskell,true,false,false,2,true,true,false,false +JasonHuZS/my-emacs-config,JasonHuZS,EmacsLisp,false,false,false,0,false,false,false,false +NoFoxDevelopment/gruvbox-idea,NoFoxDevelopment,Shell,false,false,false,0,false,false,false,false +garyparrot/bunch-of-code,garyparrot,C,false,false,false,0,false,false,false,false +paniclater/nand-to-lambda-workshop,paniclater,HTML,false,false,false,0,false,false,false,false +ykyuen/docker-boatswain,ykyuen,Shell,true,false,false,1,true,false,false,false +tanerozguner/personalwebsite,tanerozguner,CSS,false,false,false,0,false,false,false,false +antiX-Linux/iphone-antix,antiX-Linux,,false,false,false,0,false,false,false,false +Chedi/CapsNet-Keras,Chedi,Python,false,false,false,0,false,false,false,false +glsk/wpgen,glsk,Java,false,false,false,0,false,false,false,false +StonedMoose/manual-testing-manager,StonedMoose,Java,true,false,false,6,true,true,true,false +yuki_is_bored/ms,yuki_is_bored,Roff,false,false,false,0,false,false,false,false +moueza/lesMacDonaldsDeNantes,moueza,JavaScript,true,false,false,3,true,true,true,false +ydkn/rails-menu-manager,ydkn,Ruby,true,false,false,4,true,true,false,false +ydkn/redmine_airbrake_backend,ydkn,Ruby,true,false,false,4,true,true,false,false +ydkn/logged,ydkn,Ruby,true,false,false,1,false,true,false,false +ydkn/jquery-watcher,ydkn,CoffeeScript,true,false,false,3,true,false,false,false +ydkn/capistrano-logtail,ydkn,Ruby,true,false,false,3,true,false,false,false +ydkn/auto_locale,ydkn,Ruby,true,false,false,3,true,false,false,false +mwiget/bgp-unnumbered,mwiget,Shell,false,false,false,0,false,false,false,false +AlexTurpb/sample-blog,AlexTurpb,Ruby,false,false,false,0,false,false,false,false +ihkawiss/bachelor-thesis,ihkawiss,PLpgSQL,true,false,false,2,true,true,false,false +rendaw/java-coroutines,rendaw,Java,false,false,true,0,false,false,false,false +gluaxspeed/Gen2D-Game-Engine,gluaxspeed,C++,false,false,false,0,false,false,false,false +gluaxspeed/spreader,gluaxspeed,HTML,false,false,false,0,false,false,false,false +gluaxspeed/cs546-cloud-markdown,gluaxspeed,JavaScript,false,false,false,0,false,false,false,false +gluaxspeed/go-psql-react-redux-boilerplate,gluaxspeed,JavaScript,false,false,false,0,false,false,false,false +ps97/dotfiles,ps97,Shell,false,false,false,0,false,false,false,false +dordsor21/AdvSwearBlock,dordsor21,Java,false,false,true,0,false,false,false,false +alexdemari/pyplate,alexdemari,Python,true,true,false,2,false,true,true,false +subsurface_hackathon_GeoARt/GeoARt_iOS,subsurface_hackathon_GeoARt,Swift,false,false,false,0,false,false,false,false +aevri/lfs-bst,aevri,Shell,false,false,false,0,false,false,false,false +retiform/freetrain,retiform,C#,false,false,false,0,false,false,false,false +peterwittek/bibpain,peterwittek,Python,false,false,false,0,false,false,false,false +ismaelvsqz/bcra-api,ismaelvsqz,JavaScript,false,false,false,0,false,false,false,false +ismaelvsqz/bcra-cotization,ismaelvsqz,JavaScript,false,false,false,0,false,false,false,false +peterwittek/Somoclu.jl,peterwittek,Julia,false,false,false,0,false,false,false,false +diegogangl/reflow,diegogangl,Python,false,false,false,0,false,false,false,false +koraytugay/programming-challenges-python,koraytugay,Python,false,false,false,0,false,false,false,false +koraytugay/programming-challenges-java,koraytugay,Java,false,false,false,0,false,false,false,false +br3wster/acme-tiny,br3wster,Python,false,false,false,0,false,false,false,false +pedrob/ARDUINO_DHT11_LCD,pedrob,C++,false,false,false,0,false,false,false,false +pedrob/Arduino-Weather-Station,pedrob,C++,false,false,false,0,false,false,false,false +kelmes/ubports-tinder,kelmes,,false,false,false,0,false,false,false,false +ArashMaleki1377/testAlaki,ArashMaleki1377,Java,false,false,false,0,false,false,false,false +brandondyer64/ViavSite,brandondyer64,JavaScript,false,false,false,0,false,false,false,false +tj_v_debs/dd-helper,tj_v_debs,Shell,false,false,false,0,false,false,false,false +arigato-java/gactions-javabutton,arigato-java,JavaScript,false,false,false,0,false,false,false,false +MunifTanjim/gitlab-api-routes,MunifTanjim,JavaScript,false,false,false,0,false,false,false,false +Dobrinov/crypto-dynamics,Dobrinov,PHP,false,false,false,0,false,false,false,false +Fabish/steam-devices,Fabish,,false,false,false,0,false,false,false,false +iotssl/simple_Node_STM32F103C8,iotssl,C++,false,false,false,0,false,false,false,false +Distil621/ReactTDD,Distil621,,false,false,false,0,false,false,false,false +matheus23/flatawesome,matheus23,JavaScript,false,false,false,0,false,false,false,false +CuzImOlli/MyCommands,CuzImOlli,Java,false,false,true,0,false,false,false,false +oxford-data/yieldcurve,oxford-data,HTML,true,false,false,1,false,false,true,false +psachin/emacs.d,psachin,TeX,false,false,false,0,false,false,false,false +olivercoleman/musicdb,olivercoleman,JavaScript,false,false,false,0,false,false,false,false +forthy42/thinking-forth,forthy42,TeX,true,false,false,1,true,false,false,false +aashishsatya/Automatic-Theorem-Prover,aashishsatya,Python,false,false,false,0,false,false,false,false +aashishsatya/Optiplex,aashishsatya,Python,false,false,false,0,false,false,false,false +nicoty/else-Heart.Break,nicoty,,false,false,false,0,false,false,false,false +pyvelepor/game-to-framework,pyvelepor,JavaScript,false,false,false,0,false,false,false,false +aceteam.kaist/ACE-Molecule,aceteam.kaist,C++,true,false,false,3,true,true,false,false +mdomlop/snapman,mdomlop,Python,false,false,false,0,false,false,false,false +ncc1988/friclicli,ncc1988,C,false,false,false,0,false,false,false,false +jenx/rectify,jenx,Python,true,false,false,2,false,true,true,false +tijunoi/FriendlyPlaces,tijunoi,Java,false,false,false,0,false,false,false,false +codesupport/resources,codesupport,,false,false,false,0,false,false,false,false +deliberatespeed/front-end-project-week,deliberatespeed,JavaScript,false,false,false,0,false,false,false,false +va1entin/nixos-config,va1entin,Nix,false,false,false,0,false,false,false,false +nivaca/dotemacs,nivaca,EmacsLisp,false,false,false,0,false,false,false,false +arduinoenigma/ArduinoEnigmaEngineAndUhr,arduinoenigma,C++,false,false,false,0,false,false,false,false +arduinoenigma/ArduinoNanoSinclairScientificCalculator,arduinoenigma,C++,false,false,false,0,false,false,false,false +arduinoenigma/USBHostExternalLampField,arduinoenigma,C++,false,false,false,0,false,false,false,false +gruenwald/parameter-hierarchy,gruenwald,TeX,false,false,false,0,false,false,false,false +dein0s/pfUI-addonbuttons,dein0s,Lua,false,false,false,0,false,false,false,false +pdemange/FireSpoof,pdemange,Python,false,false,false,0,false,false,false,false +pashinin.com/frontend,pashinin.com,Vue,true,false,false,2,true,false,true,false +pashinin.com/docs,pashinin.com,Makefile,true,false,false,2,false,false,true,true +vhp1360/Linux,vhp1360,,false,false,false,0,false,false,false,false +layl/rrterm,layl,Rust,false,false,false,0,false,false,false,false +Cokoyomonoto/Password-generator,Cokoyomonoto,,false,false,false,0,false,false,false,false +michael.sanders/swift-playground-mode,michael.sanders,EmacsLisp,false,false,false,0,false,false,false,false +drydenp/ZFS-wait-for-volumes,drydenp,Makefile,false,false,false,0,false,false,false,false +jonocarroll/dash,jonocarroll,R,false,false,false,0,false,false,false,false +theswiftdev/custom-transitions,theswiftdev,Swift,false,false,false,0,false,false,false,false +theswiftdev/how-to-run-swift-on-linux,theswiftdev,Swift,false,false,false,0,false,false,false,false +theswiftdev/networking-for-appleos,theswiftdev,Swift,false,false,false,0,false,false,false,false +theswiftdev/macos-launch-at-login-app,theswiftdev,Swift,false,false,false,0,false,false,false,false +theswiftdev/swift-framework-templates,theswiftdev,Swift,false,false,false,0,false,false,false,false +tludewig/ESP32-Arduino-Info,tludewig,C++,false,false,false,0,false,false,false,false +ludeeus/toolbox,ludeeus,Shell,false,false,false,0,false,false,false,false +junquera/toc-toc-ssh,junquera,Python,true,true,false,2,false,true,true,false +pentest-tools/PayloadsAllTheThings,pentest-tools,Python,false,false,false,0,false,false,false,false +pragle/invoice_pdf,pragle,Java,false,false,true,0,false,false,false,false +crwmike/dotfiles,crwmike,EmacsLisp,false,false,false,0,false,false,false,false +Bettehem/telegram-cli-git,Bettehem,Shell,false,false,false,0,false,false,false,false +DannyWolff/avatar-logo-file,DannyWolff,,false,false,false,0,false,false,false,false +davidrolle/clj-cukes,davidrolle,Clojure,true,false,false,1,false,true,false,false +martinpiz097/muplayer,martinpiz097,Java,false,false,true,0,false,false,false,false +Shinobi-Systems/AskShinobi,Shinobi-Systems,JavaScript,false,false,false,0,false,false,false,false +hendisantika/spring-boot-kotlin-sample,hendisantika,Kotlin,true,false,true,2,true,false,true,false +kjm517/IT_5014_LIBROS,kjm517,JavaScript,false,false,false,0,false,false,false,false +marcos-abs/StoreOfBuild,marcos-abs,C#,false,false,false,0,false,false,false,false +candrews301/NodeMCU-8266-relay-control-tcp-server-and-client,candrews301,Python,false,false,false,0,false,false,false,false +stratact/portix,stratact,Rust,false,false,false,0,false,false,false,false +eq1/corenlp-docker,eq1,,false,false,false,0,false,false,false,false +eq1/pynlp,eq1,Python,false,true,false,0,false,false,false,false +eq1/docker-jenkins-nginx,eq1,Shell,false,false,false,0,false,false,false,false +pionize/express-es6,pionize,JavaScript,false,false,false,0,false,false,false,false +pionize/express-es6-coreui,pionize,CSS,false,false,false,0,false,false,false,false +code21032/android-jetpack-mvvm-navigation-sample,code21032,Kotlin,false,false,false,0,false,false,false,false +code21032/android-mvvm-java-sample,code21032,Java,false,false,false,0,false,false,false,false +brombinmirko/Telegram_UnifiedBanBot,brombinmirko,Python,false,false,false,0,false,false,false,false +skateboard1991/AudioRecord,skateboard1991,Kotlin,false,false,false,0,false,false,false,false +Archman-OS/archman-packages,Archman-OS,HTML,false,false,false,0,false,false,false,false +CptS/ltw2018-plakat-konfigurator,CptS,Vue,true,false,false,2,false,false,false,false +femiaremu88/Jojo_Farms,femiaremu88,HTML,false,false,false,0,false,false,false,false +ogulabs/CGSL,ogulabs,Swift,false,false,false,0,false,false,false,false +ogulabs/ogulabs,ogulabs,Swift,true,false,false,1,false,true,false,false +devscola/perseidas,devscola,HTML,true,false,false,1,false,false,true,false +aftnet/LibRetriX,aftnet,C#,false,false,false,0,false,false,false,false +maxlefou/TrueLove2,maxlefou,Ren'Py,false,false,false,0,false,false,false,false +epici/wavelets,epici,Java,false,false,false,0,false,false,false,false +npm-microservices/division-service,npm-microservices,JavaScript,false,false,false,0,false,false,false,false +ramvishvas/python_pattern,ramvishvas,Python,false,false,false,0,false,false,false,false +UNEnvironmentEconomy/CE-Indicators,UNEnvironmentEconomy,JupyterNotebook,false,false,false,0,false,false,false,false +UNEnvironmentEconomy/smum,UNEnvironmentEconomy,JavaScript,false,false,false,0,false,false,false,false +juliensimon/johnnypi,juliensimon,Python,false,false,false,0,false,false,false,false +VisualTuber/Parappa-The-Rapper-3,VisualTuber,C#,false,false,false,0,false,false,false,false +keepit-study/keepit-words,keepit-study,Python,false,false,false,0,false,false,false,false +zenprotocol/zen.js,zenprotocol,TypeScript,false,false,false,0,false,false,false,false +dreamchip/arria10som-linux,dreamchip,,false,false,false,0,false,false,false,false +arts2artsnumeriques/toolbox,arts2artsnumeriques,HTML,false,false,false,0,false,false,false,false +yanlinnthor/yanlinnthor.gitlab.io,yanlinnthor,HTML,true,false,false,1,false,true,false,false +android4682/life-discordbot,android4682,Java,false,false,false,0,false,false,false,false +SunyataZero/well-being-diary,SunyataZero,Python,true,true,false,2,false,true,true,false +seanhuai/resources,seanhuai,,false,false,false,0,false,false,false,false +ESP-Project/esp_tools,ESP-Project,PLpgSQL,false,false,false,0,false,false,false,false +arquolo/kerasify,arquolo,C++,true,false,false,3,true,true,false,false +LUI-3/website/docs,LUI-3,Smarty,false,false,false,0,false,false,false,false +bluehotdog/lunch-with-me-backend,bluehotdog,Elixir,true,false,false,4,true,true,false,false +andylpjr/ads-seek-web,andylpjr,Vue,false,false,false,0,false,false,false,false +parallelcoin/parallelcoin,parallelcoin,C,false,false,false,0,false,false,false,false +andylpjr/ads-seek-api,andylpjr,TypeScript,false,false,false,0,false,false,false,false +atomix-io/atomix,atomix-io,Java,false,false,true,0,false,false,false,false +martensoderberg/wambot,martensoderberg,Python,true,false,false,4,false,true,true,false +dkj3/FPV_Arduino,dkj3,C++,false,false,false,0,false,false,false,false +hassbian/repository,hassbian,,false,false,false,0,false,false,false,false +LibraryGenesis/exodus,LibraryGenesis,CSS,true,false,false,1,false,false,true,false +wontfix/dots,wontfix,Objective-C,false,false,false,0,false,false,false,false +nvidia/video-codec-sdk,nvidia,,false,false,false,0,false,false,false,false +dougbeney/vagrant-wordpress,dougbeney,,false,false,false,0,false,false,false,false +LKD70/tweetybot,LKD70,JavaScript,false,false,false,0,false,false,false,false +disastor/alpha-blog,disastor,Ruby,false,false,false,0,false,false,false,false +daniagudelos/algorithms,daniagudelos,Java,false,false,false,0,false,false,false,false +fclaude/raspberry_bell,fclaude,Python,false,false,false,0,false,false,false,false +softsim/blank_usim_programmer,softsim,Python,false,false,false,0,false,false,false,false +Ryaan/Ryan,Ryaan,,false,false,false,0,false,false,false,false +navdy-hackers/Navdy-MapDownloader,navdy-hackers,Java,true,false,false,2,true,false,false,false +Trump/lotterwinner,Trump,C++,false,false,false,0,false,false,false,false +PEGeoffroy/projet-cours-simplon,PEGeoffroy,,false,false,false,0,false,false,false,false +USE-OCL/XMI_plugin,USE-OCL,Java,false,false,false,0,false,false,false,false +itwookie/LoopbackIPC,itwookie,,false,false,false,0,false,false,false,false +essembeh/script-utils,essembeh,Shell,false,false,false,0,false,false,false,false +essembeh/dotfiles,essembeh,Shell,false,false,false,0,false,false,false,false +aashishsatya/JuliaTutorial,aashishsatya,JupyterNotebook,false,false,false,0,false,false,false,false +Sybit-Education/Coding-Camp-2018,Sybit-Education,,false,false,false,0,false,false,false,false +dansiviter/cito,dansiviter,Java,true,false,true,4,true,true,true,true +staltz/xstream-sample,staltz,TypeScript,false,false,false,0,false,false,false,false +liweiliang/webpack-demos,liweiliang,JavaScript,false,false,false,0,false,false,false,false +1995sd/Cloud,1995sd,C#,false,false,false,0,false,false,false,false +wiltonlazary/afwall,wiltonlazary,Java,false,false,false,0,false,false,false,false +wiltonlazary/kotlin-multiplatform-recipes,wiltonlazary,Kotlin,false,false,false,0,false,false,false,false +the-snowwhite/QtQuickVcp,the-snowwhite,C++,false,false,false,0,false,false,false,false +BenjaminDobell/zxing-cpp,BenjaminDobell,C++,false,false,false,0,false,false,false,false +wranvaud/siteadb,wranvaud,PHP,false,false,false,0,false,false,false,false +j.marchini/nap,j.marchini,Python,false,true,false,0,false,false,false,false +ismaelga/alberto,ismaelga,OCaml,false,false,false,0,false,false,false,false +BENYAM1N/Simpsons-Face-Detection,BENYAM1N,Python,false,false,false,0,false,false,false,false +ad-si-2018-1/p3-g4,ad-si-2018-1,JavaScript,false,false,false,0,false,false,false,false +igi0/openmoneybox,igi0,C++,false,false,false,0,false,false,false,false +swe_toast/untappd_homeassistant,swe_toast,Python,false,false,false,0,false,false,false,false +DominoTree/rs-ipfix,DominoTree,Rust,false,false,false,0,false,false,false,false +MTIpython/MTIpython,MTIpython,Python,true,true,false,1,false,true,false,false +hassbian/repository-dev,hassbian,,false,false,false,0,false,false,false,false +Ferb/LoginBootstrapCodeigniterMySQL,Ferb,PHP,false,false,false,0,false,false,false,false +muhaaliss/muhaaliss.gitlab.io,muhaaliss,CSS,true,false,false,2,false,true,true,false +BENYAM1N/Bozonghereh-ICPC-TEAM,BENYAM1N,HTML,false,false,false,0,false,false,false,false +BENYAM1N/Facial-Emotion-Recegnition,BENYAM1N,Python,false,false,false,0,false,false,false,false +DynamicDonkey/GWLTPL,DynamicDonkey,,false,false,false,0,false,false,false,false +VoltarCH/GalaxyImager,VoltarCH,Python,false,false,false,0,false,false,false,false +aryansharma//Employee_management_portal,aryansharma,Python,false,false,false,0,false,false,false,false +09jwater/Needle,09jwater,TypeScript,true,false,false,3,true,true,false,false +MegaCode18/xBlocks,MegaCode18,JavaScript,false,false,false,0,false,false,false,false +DavidHerreroJimenez/MoviesSample,DavidHerreroJimenez,Kotlin,false,false,false,0,false,false,false,false +DrRoach/templator,DrRoach,PHP,false,false,false,0,false,false,false,false +kaymmm/intro-to-gis-demo,kaymmm,,false,false,false,0,false,false,false,false +tobias1012/SerialWeight,tobias1012,Python,false,false,false,0,false,false,false,false +DAn_RoB/FABALCOOP,DAn_RoB,JavaScript,false,false,false,0,false,false,false,false +ydkmlt84/DarkerNZBget,ydkmlt84,CSS,false,false,false,0,false,false,false,false +anjanatiha/Intelligent-Chatbot,anjanatiha,Python,false,false,false,0,false,false,false,false +anjanatiha/Distributed-Machine-Learning-for-Big-Data,anjanatiha,Python,false,true,false,0,false,false,false,false +anjanatiha/Movie-Recommendation-Engine,anjanatiha,C++,false,false,false,0,false,false,false,false +anjanatiha/Movie-Revenue-Rating-Prediction-System,anjanatiha,JupyterNotebook,false,false,false,0,false,false,false,false +anjanatiha/Research-Survey-Papers,anjanatiha,TeX,false,false,false,0,false,false,false,false +anjanatiha/Restaurant-Recommendation-System,anjanatiha,TeX,false,false,false,0,false,false,false,false +anjanatiha/Web-Retrieval-Engine,anjanatiha,JupyterNotebook,false,false,false,0,false,false,false,false +fhightower/page-monitor,fhightower,Python,false,false,false,0,false,false,false,false +fdorado985/Android-Slope,fdorado985,Java,false,false,false,0,false,false,false,false +lf_Builds/Reactive/starzle,lf_Builds,JavaScript,false,false,false,0,false,false,false,false +Object_Impermanence/Crouching_Politician_Hidden_Power,Object_Impermanence,GDScript,false,false,false,0,false,false,false,false +T4di5/go-ethereum-code-analysis,T4di5,,false,false,false,0,false,false,false,false +persian-tex/xepersian,persian-tex,TeX,false,false,false,0,false,false,false,false +persian-tex/bidi,persian-tex,TeX,false,false,false,0,false,false,false,false +J-C-B/zxfer,J-C-B,Shell,false,false,false,0,false,false,false,false +toolsweet/toolsweet,toolsweet,JavaScript,true,false,false,1,false,true,false,false +poovarasanvasudevan/webRTC-android-demo-and-Server,poovarasanvasudevan,Java,false,false,false,0,false,false,false,false +douaneapp/douane-dkms,douaneapp,C,true,false,false,2,true,false,false,false +douaneapp/douane-dbus,douaneapp,C++,false,false,false,0,false,false,false,false +douaneapp/douane-daemon,douaneapp,C++,false,false,false,0,false,false,false,false +douaneapp/douane-configurator,douaneapp,Python,false,false,false,0,false,false,false,false +hello-vip/main,hello-vip,,false,false,false,0,false,false,false,false +alantrick/django-agenda,alantrick,Python,true,true,false,2,false,true,true,false +dolmitos/symfony-datatables-bundle,dolmitos,PHP,false,false,false,0,false,false,false,false +tianxiaosi/baseApp_OC,tianxiaosi,Objective-C,false,false,false,0,false,false,false,false +hemanth22/MyJavaLearning,hemanth22,Java,true,false,false,2,true,true,false,false +hammad.fauz/SharepointPlus,hammad.fauz,JavaScript,false,false,false,0,false,false,false,false +hammad.fauz/sp-rest-proxy,hammad.fauz,TypeScript,false,false,false,0,false,false,false,false +three11/gitlab-pages-vuepress,three11,JavaScript,true,false,false,1,false,true,false,false +bestmethod/go-acp,bestmethod,Go,true,false,false,1,true,false,false,false +nsingareddy/Gitlabproj,nsingareddy,Java,false,false,true,0,false,false,false,false +pivorak-summer-course-2018/lecture-2-samples,pivorak-summer-course-2018,Ruby,false,false,false,0,false,false,false,false +ayan-b/plagiarism,ayan-b,Python,false,true,false,0,false,false,false,false +tst2005/awesome-awesomeness,tst2005,Ruby,false,false,false,0,false,false,false,false +tst2005/ljsyscall,tst2005,Lua,false,false,false,0,false,false,false,false +tst2005/strung.lua,tst2005,Lua,false,false,false,0,false,false,false,false +jaymoulin/docker-torrench,jaymoulin,Makefile,true,false,false,1,true,false,false,false +NifTK/NiftyNet,NifTK,Python,true,false,false,5,false,false,false,false +artanicus/python-cozify,artanicus,Python,false,true,false,0,false,false,false,false +fredatgithub/mui,fredatgithub,C#,false,false,false,0,false,false,false,false +fredatgithub/Tasks.Show,fredatgithub,C#,false,false,false,0,false,false,false,false +fredatgithub/WPFToMobile,fredatgithub,C#,false,false,false,0,false,false,false,false +dreamchip/arria10som-manifest,dreamchip,,false,false,false,0,false,false,false,false +Grumpy-Leopard/gog-connect-notifier,Grumpy-Leopard,JavaScript,false,false,false,0,false,false,false,false +S2Marina/ilhaDasPalavras,S2Marina,Java,false,false,false,0,false,false,false,false +jul2040/chiptune,jul2040,Python,false,false,false,0,false,false,false,false +ecolefrancodanoise/arduino-efd,ecolefrancodanoise,C++,false,false,false,0,false,false,false,false +kmaris/wtf,kmaris,Shell,false,false,false,0,false,false,false,false +mkoterx/general,mkoterx,Java,false,false,false,0,false,false,false,false +cadmus-group/python_demo,cadmus-group,JupyterNotebook,false,false,false,0,false,false,false,false +ev9/ssh_multi,ev9,Python,false,true,false,0,false,false,false,false +softplan-lab-justica/public/ci-templates,softplan-lab-justica,,false,false,false,0,false,false,false,false +keronos/infusion,keronos,CSS,true,false,false,1,false,false,true,false +Ezor/DCSWorld,Ezor,Objective-C,false,false,false,0,false,false,false,false +jakesys/aws,jakesys,Shell,true,false,false,4,true,true,false,false +sumner/sumnerevans.com,sumner,HTML,true,false,false,1,false,false,true,false +revolunet/test-cypress,revolunet,JavaScript,true,false,false,3,true,true,true,false +a.clark/phpDocBlocks,a.clark,,false,false,false,0,false,false,false,false +ohboi/tg.d,ohboi,D,true,false,false,2,false,true,false,false +zubozrout/OSMScout-ubuntu,zubozrout,C++,false,false,false,0,false,false,false,false +oriko32/abrus-solid-dark-blue,oriko32,CSS,false,false,false,0,false,false,false,false +zedtux/awesome-focus-music,zedtux,,false,false,false,0,false,false,false,false +zedtux/ezdz-rails,zedtux,Ruby,false,false,false,0,false,false,false,false +LasseF-H/Dotfiles,LasseF-H,Shell,false,false,false,0,false,false,false,false +ruslanskorb/RSKImageCropper,ruslanskorb,Objective-C,false,false,false,0,false,false,false,false +jeffersonsimaogoncalves/cakephp-app-template,jeffersonsimaogoncalves,PHP,false,false,false,0,false,false,false,false +ismaelvsqz/blockchain-and-bitcoin-resources-es,ismaelvsqz,,false,false,false,0,false,false,false,false +dreamchip/arria10som-build-config,dreamchip,,false,false,false,0,false,false,false,false +gwenf/autorenter-api-aspnetcore,gwenf,C#,false,false,false,0,false,false,false,false +escalantedanny/Login_codeigniter,escalantedanny,HTML,false,false,false,0,false,false,false,false +ehmoranb/zrep,ehmoranb,Shell,false,false,false,0,false,false,false,false +linuxprogramking/LinuxToolkit,linuxprogramking,,false,false,false,0,false,false,false,false +precisionui/precisionui,precisionui,C,false,false,false,0,false,false,false,false +farmboy0/ashita-addons,farmboy0,Lua,false,false,false,0,false,false,false,false +doctorfree/Cryptocurrency,doctorfree,Shell,false,false,false,0,false,false,false,false +atul-mourya/datavisualizer,atul-mourya,JavaScript,true,false,false,1,false,false,true,false +tst2005/luajit-lang-toolkit,tst2005,Lua,false,false,false,0,false,false,false,false +tst2005/lpeglj,tst2005,Lua,false,false,false,0,false,false,false,false +Ptomaine/nstd,Ptomaine,C++,false,false,false,0,false,false,false,false +dmeiners/sonarqube-prometheus-exporter,dmeiners,Java,false,false,true,0,false,false,false,false +jtfrey/opa2slurm,jtfrey,C,false,false,false,0,false,false,false,false +12C27/WC2018,12C27,,false,false,false,0,false,false,false,false +bookchin/gitty,bookchin,JavaScript,true,false,false,2,false,true,false,false +bookchin/granax,bookchin,JavaScript,true,false,false,2,false,true,true,false +daancode/sfml-ext,daancode,C++,false,false,false,0,false,false,false,false +gaui/semantic-ui-boilerplate,gaui,JavaScript,false,false,false,0,false,false,false,false +serql/parser,serql,ANTLR,false,false,false,0,false,false,false,false +andrefelipecl/Angular,andrefelipecl,TypeScript,false,false,false,0,false,false,false,false +st0ff3r/esp-open-sdk,st0ff3r,Makefile,false,false,false,0,false,false,false,false +st0ff3r/MeterLogger,st0ff3r,C,false,false,false,0,false,false,false,false +st0ff3r/MeterLoggerImpulsePCB,st0ff3r,,false,false,false,0,false,false,false,false +st0ff3r/MeterLoggerWeb,st0ff3r,JavaScript,false,false,false,0,false,false,false,false +higkoohk/Mash,higkoohk,Python,true,false,false,3,true,true,true,false +XMasud/laravel-vue,XMasud,PHP,false,false,false,0,false,false,false,false +mosorio19/Android-Spotify-MVP,mosorio19,Java,false,false,false,0,false,false,false,false +frissdiegurke/vuepress-theme-portfolio,frissdiegurke,Vue,false,false,false,0,false,false,false,false +harkwell/devops-poc,harkwell,Shell,false,false,false,0,false,false,false,false +markwetter/mc-wrap,markwetter,Rust,true,false,false,1,true,false,false,false +custom_components/root,custom_components,Shell,true,false,false,1,false,false,true,false +Tech_Advancer/retirement-calculator,Tech_Advancer,PHP,true,false,false,1,false,true,false,false +NullRoz007/Rasputin,NullRoz007,JavaScript,false,false,false,0,false,false,false,false +amtlib-dot-dll/Remmina,amtlib-dot-dll,C,false,false,false,0,false,false,false,false +gioxa/imagebuilder,gioxa,Shell,true,false,false,4,false,true,false,false +cwolter97/botchan,cwolter97,JavaScript,false,false,false,0,false,false,false,false +gioxa/oc-runner/buildimage,gioxa,Shell,true,false,false,4,true,true,false,false +kazmokey/spamchanges,kazmokey,Python,false,false,false,0,false,false,false,false +lphk92/ThreeLittlePigs,lphk92,Python,false,false,false,0,false,false,false,false +seanvree/homepage,seanvree,CSS,false,false,false,0,false,false,false,false +seanvree/Weather,seanvree,CSS,false,false,false,0,false,false,false,false +HaeckDesign/get-social-icon-set,HaeckDesign,CSS,false,false,false,0,false,false,false,false +hyjorc1/RefactoringDetection,hyjorc1,,false,false,false,0,false,false,false,false +agriconnect/embedded/esp32-serial-forward,agriconnect,C++,false,false,false,0,false,false,false,false +dgo2001/DeltaX,dgo2001,,false,false,false,0,false,false,false,false +pondercode/PracticeDraw1,pondercode,Java,false,false,false,0,false,false,false,false +Xorl63/Web3D_project,Xorl63,,false,false,false,0,false,false,false,false +dreamchip/meta-dreamchip-arria10som,dreamchip,BitBake,false,false,false,0,false,false,false,false +nyker510/book-clustering,nyker510,JupyterNotebook,true,false,false,1,false,true,false,false +squad-lcv/systemd-advanced,squad-lcv,Shell,false,false,false,0,false,false,false,false +contwo/jump,contwo,TypeScript,false,false,false,0,false,false,false,false +Novator/Pandora,Novator,Ruby,false,false,false,0,false,false,false,false +antonionardella/boschxdkmqttiotamam,antonionardella,JavaScript,false,false,false,0,false,false,false,false +earvinpiamonte/html5-template,earvinpiamonte,JavaScript,false,false,false,0,false,false,false,false +ellsclytn/waas,ellsclytn,TypeScript,true,false,false,1,false,true,false,false +wanghui0705/chromium,wanghui0705,,false,false,false,0,false,false,false,false +epfl-sti/gitlab-docker,epfl-sti,HTML,false,false,false,0,false,false,false,false +RTbecard/BASH_Scripts,RTbecard,Shell,false,false,false,0,false,false,false,false +RTbecard/ezPSD,RTbecard,R,true,false,false,1,false,true,false,false +ChameleonScales/Blender-individual-icons,ChameleonScales,,false,false,false,0,false,false,false,false +linuxlite/litesources,linuxlite,Shell,false,false,false,0,false,false,false,false +aahmet/blog,aahmet,JavaScript,false,false,false,0,false,false,false,false +teh.jimisdam/JD_LibC,teh.jimisdam,C,false,false,false,0,false,false,false,false +trabalhos-unb/trab4-grafos,trabalhos-unb,C++,false,false,false,0,false,false,false,false +keyage/SPZRoguelike,keyage,C#,false,false,false,0,false,false,false,false +lingtan/wpf-currency-textbox,lingtan,C#,false,false,false,0,false,false,false,false +RTbecard/vim_config,RTbecard,Vimscript,false,false,false,0,false,false,false,false +trustgit/nodebot,trustgit,JavaScript,true,false,false,1,false,true,false,false +opencf/opencf,opencf,PHP,true,false,false,1,false,true,false,false +lansharkconsulting/public/flask-rules,lansharkconsulting,Python,false,false,false,0,false,false,false,false +pablodebiase/Bitcoin-BIP38-PrivateKey-Decrypt,pablodebiase,Python,false,false,false,0,false,false,false,false +fgallaire/copyleft,fgallaire,CSS,false,false,false,0,false,false,false,false +seanlilmateus/gpx_converter,seanlilmateus,Kotlin,false,false,false,0,false,false,false,false +simple-direct-democracy/website,simple-direct-democracy,Ruby,true,false,false,2,false,true,true,false +demotive/ccg-payment,demotive,,false,false,false,0,false,false,false,false +demotive/death-certification-reforms,demotive,JavaScript,false,false,false,0,false,false,false,false +demotive/death-data-structure,demotive,,false,false,false,0,false,false,false,false +demotive/design,demotive,HTML,false,false,false,0,false,false,false,false +demotive/general-medical-practices,demotive,Python,false,false,false,0,false,false,false,false +demotive/general-medical-practitioners,demotive,Python,false,false,false,0,false,false,false,false +demotive/gp-lookup,demotive,Ruby,false,false,false,0,false,false,false,false +demotive/land-registry-prototype,demotive,JavaScript,false,false,false,0,false,false,false,false +demotive/meo-process,demotive,,false,false,false,0,false,false,false,false +demotive/nhs-alpha-prototypes,demotive,HTML,false,false,false,0,false,false,false,false +demotive/register-with-a-gp-prototypes,demotive,HTML,false,false,false,0,false,false,false,false +FileMaker_Projects/Interacting_with_Google_Map_API,FileMaker_Projects,,false,false,false,0,false,false,false,false +adleatherwood/DrivenDb,adleatherwood,C#,true,false,false,3,true,true,false,true +meltano/melt,meltano,JavaScript,false,false,false,0,false,false,false,false +adleatherwood/DelegateDI,adleatherwood,C#,true,false,false,3,true,true,false,true +adleatherwood/ModelingExercises,adleatherwood,F#,false,false,false,0,false,false,false,false +stemid/ansible-siptrack,stemid,,false,false,false,0,false,false,false,false +ucsd-prp/k8s_portal,ucsd-prp,Go,false,false,false,0,false,false,false,false +aurorafossorg/utils/supershell,aurorafossorg,Shell,false,false,false,0,false,false,false,false +ecolefrancodanoise/3d-printing-efd,ecolefrancodanoise,OpenSCAD,false,false,false,0,false,false,false,false +Bauke/styles,Bauke,CSS,false,false,false,0,false,false,false,false +jandcmoore/OpenFTA,jandcmoore,C,false,false,false,0,false,false,false,false +crates.rs/lazyonce,crates.rs,Rust,false,false,false,0,false,false,false,false +afzalhmd14/scripts-ubuntu-debian,afzalhmd14,Shell,false,false,false,0,false,false,false,false +MundoBuaz/v19,MundoBuaz,PHP,false,false,false,0,false,false,false,false +SunyataZero/trees,SunyataZero,Python,true,true,false,1,false,true,false,false +KOLANICH/Transportr,KOLANICH,Java,false,false,false,0,false,false,false,false +crates.rs/render_readme,crates.rs,Rust,false,false,false,0,false,false,false,false +WikiLove/disney-heroes-battle-mode-hack,WikiLove,,false,false,false,0,false,false,false,false +djiamnot/SATIE4godot-example,djiamnot,,false,false,false,0,false,false,false,false +geoadmin-opensource/django-tilestache,geoadmin-opensource,Python,false,true,false,0,false,false,false,false +geoadmin-opensource/django-workflow-fsm,geoadmin-opensource,Python,true,true,false,1,false,true,false,false +geoadmin-opensource/django-common-models,geoadmin-opensource,Python,true,true,false,1,false,true,false,false +geoadmin-opensource/django-file-context,geoadmin-opensource,Python,true,true,false,1,false,true,false,false +huangfubin/SSM-crud,huangfubin,Java,false,false,false,0,false,false,false,false +hostedprometheus/hostedprometheus,hostedprometheus,Go,true,false,false,2,true,true,false,false +ktsepelev/rabbitmq-mailer-golang,ktsepelev,Go,true,false,false,3,true,true,true,false +yttriumtyclief/thinkbase,yttriumtyclief,HTML,true,false,false,2,false,true,true,false +johnchen902/autotest,johnchen902,Python,false,false,false,0,false,false,false,false +codenegaar/TarnaEchoBot,codenegaar,QMake,false,false,false,0,false,false,false,false +Jackminh/python-basic,Jackminh,Python,false,false,false,0,false,false,false,false +prepatent/USCIIIIII-CODE,prepatent,,false,false,false,0,false,false,false,false +CompSciMaj13/open-seat-notifier,CompSciMaj13,Python,false,true,false,0,false,false,false,false +jehoshaphatbc/presto-express,jehoshaphatbc,HTML,false,false,false,0,false,false,false,false +www.hohee/NodeJSTest,www.hohee,JavaScript,true,false,false,2,false,false,false,false +rzn/media-orchestra,rzn,,false,false,false,0,false,false,false,false +lee_b/openpump,lee_b,OpenSCAD,false,false,false,0,false,false,false,false +biancode/node-red-contrib-iiot-opcua,biancode,JavaScript,true,false,false,1,false,true,false,false +Quirksmode/universal-react-redux-boilerplate,Quirksmode,CSS,false,false,false,0,false,false,false,false +commonshost/sherlock,commonshost,JavaScript,true,false,false,1,false,true,false,false +Dashon-Hawkins/BOOK-JS-You-Dont-Know-JS,Dashon-Hawkins,,false,false,false,0,false,false,false,false +donfaq/reinforcement-learning-classes,donfaq,Python,false,true,false,0,false,false,false,false +velvetyne/Happy-Times-at-the-IKOB,velvetyne,,false,false,false,0,false,false,false,false +huongnv/code101-web,huongnv,HTML,false,false,false,0,false,false,false,false +caleoasin312/laravel,caleoasin312,PHP,false,false,false,0,false,false,false,false +AccessNowHelpline/A-First-Look-at-Digital-Security,AccessNowHelpline,,false,false,false,0,false,false,false,false +AccessNowHelpline/community-documentation,AccessNowHelpline,HTML,true,false,false,1,false,false,true,false +fschuetz04/markethon,fschuetz04,JavaScript,false,false,false,0,false,false,false,false +marcos-abs/xamarin-forms-interfaces,marcos-abs,C#,false,false,false,0,false,false,false,false +cap_3786_ri/2018_fall/course,cap_3786_ri,JupyterNotebook,false,false,false,0,false,false,false,false +movciari/mtg-sdk-python,movciari,Python,false,false,false,0,false,false,false,false +crates.rs/cargo_author,crates.rs,Rust,false,false,false,0,false,false,false,false +flib99/i3-workspace-names,flib99,Python,true,true,false,1,false,true,false,false +geoadmin-opensource/django-chaos-features,geoadmin-opensource,Python,false,true,false,0,false,false,false,false +ChrisAnd/maze,ChrisAnd,Java,false,false,true,0,false,false,false,false +osgames/conquests,osgames,C++,false,false,false,0,false,false,false,false +FaridHosman/react360-demo,FaridHosman,JavaScript,false,false,false,0,false,false,false,false +flyingchipmunk_ansible/magicmirror,flyingchipmunk_ansible,,false,false,false,0,false,false,false,false +talon540/web-development/Talon-540-Service-Website-2019,talon540,HTML,false,false,false,0,false,false,false,false +weightbrains/weightbrains,weightbrains,CoffeeScript,false,false,false,0,false,false,false,false +jigsanches/huffmancode,jigsanches,C,false,false,false,0,false,false,false,false +groni/xfce,groni,Python,false,false,false,0,false,false,false,false +LinuxEdu/CZ/A1,LinuxEdu,,false,false,false,0,false,false,false,false +xagafinelle/intro-to-programming,xagafinelle,Python,false,false,false,0,false,false,false,false +MundoBuaz/DPL,MundoBuaz,,false,false,false,0,false,false,false,false +smondet/comk,smondet,OCaml,false,false,false,0,false,false,false,false +cschalkwijk/couscous-kbd,cschalkwijk,OpenSCAD,false,false,false,0,false,false,false,false +padawanphysicist/docprompt,padawanphysicist,Python,false,false,false,0,false,false,false,false +tjian-darzacq-lab/write_4dn_spt_format_matlab,tjian-darzacq-lab,Matlab,false,false,false,0,false,false,false,false +RaitaroH/Import-All-Deepdark,RaitaroH,CSS,false,false,false,0,false,false,false,false +RaitaroH/YouTube-DeepDark,RaitaroH,CSS,false,false,false,0,false,false,false,false +nukdotcom/predictable_universe,nukdotcom,,false,false,false,0,false,false,false,false +iwalrus/lora-weather-station,iwalrus,Python,false,false,false,0,false,false,false,false +ohachami/cardano-wallet-api,ohachami,Java,false,false,false,0,false,false,false,false +osarrat/odoo,osarrat,,false,false,false,0,false,false,false,false +TheDarkula/code-artistry,TheDarkula,HTML,true,false,false,1,false,true,false,false +jsenin/vimrc,jsenin,Vimscript,false,false,false,0,false,false,false,false +uptimeventures/gatsby-source-rss,uptimeventures,JavaScript,true,false,false,1,false,true,false,false +HackerHappyHour/hiera-metastring,HackerHappyHour,Ruby,false,false,false,0,false,false,false,false +larrypolk/ApexTestingUtility,larrypolk,Apex,false,false,false,0,false,false,false,false +whitchapman/clojure-lambda-calculus,whitchapman,Clojure,false,false,false,0,false,false,false,false +whitchapman/clojure-sudoku-solver,whitchapman,Clojure,false,false,false,0,false,false,false,false +nguyenduy.android/WorldCup,nguyenduy.android,C#,false,false,false,0,false,false,false,false +MadScientist_gc/Game-CC2,MadScientist_gc,C++,false,false,false,0,false,false,false,false +rajas.devel/gitignore,rajas.devel,,false,false,false,0,false,false,false,false +brno32/math-game,brno32,Python,true,true,false,1,false,true,false,false +labnol/apps-script-starter,labnol,JavaScript,false,false,false,0,false,false,false,false +tcool/cl-collider-tutorial,tcool,CommonLisp,false,false,false,0,false,false,false,false +AbdullahRagb/Gimp-Dark-Theme-v3,AbdullahRagb,,false,false,false,0,false,false,false,false +Az-21/learning-latex,Az-21,TeX,false,false,false,0,false,false,false,false +keosidara/robotframework-excel-xls-libary,keosidara,Python,false,false,false,0,false,false,false,false +ice-spear-tools/ice-spear,ice-spear-tools,JavaScript,false,false,false,0,false,false,false,false +ncrmro/shwarzchild,ncrmro,TypeScript,false,false,false,0,false,false,false,false +wahomekevin/web-starter-default,wahomekevin,JavaScript,false,false,false,0,false,false,false,false +her0/tmdrv,her0,Python,false,false,false,0,false,false,false,false +limecta/gif-in-console,limecta,C#,false,false,false,0,false,false,false,false +ltouati/hiphop-php,ltouati,C++,false,false,false,0,false,false,false,false +david-daly/vue-electron-pomodoro-tracker,david-daly,JavaScript,false,false,false,0,false,false,false,false +tigefa/ubuntu-bionic,tigefa,Python,true,false,false,1,true,false,false,false +bauripalash/fossurl,bauripalash,HTML,false,false,false,0,false,false,false,false +Kirito.sh/GearAppModCompability,Kirito.sh,Shell,false,false,false,0,false,false,false,false +wirekit/zsocket,wirekit,Go,false,false,false,0,false,false,false,false +davidvalachovic/piston,davidvalachovic,Rust,false,false,false,0,false,false,false,false +endlesscodegroup/rpginventory/rpginventory,endlesscodegroup,Java,false,false,false,0,false,false,false,false +keithwberry/wetty,keithwberry,JavaScript,true,false,false,3,true,true,false,true +Nevexo/robonev,Nevexo,Python,false,false,false,0,false,false,false,false +ylzat/javaproject,ylzat,Java,true,false,true,2,true,true,false,false +MOBlox/Game,MOBlox,,false,false,false,0,false,false,false,false +SleepySpaceSoftworks/WormholeEngine,SleepySpaceSoftworks,C++,false,false,false,0,false,false,false,false +chait408/ArrangeIP,chait408,Python,false,false,false,0,false,false,false,false +andre146/rpi2-fancontroller,andre146,C,false,false,false,0,false,false,false,false +raingloom/aardwolf,raingloom,Rust,false,false,false,0,false,false,false,false +JEhlers/CONRH2AH,JEhlers,C++,false,false,false,0,false,false,false,false +eronlloyd/polevision,eronlloyd,JupyterNotebook,false,false,false,0,false,false,false,false +SunyataZero/mindful-listening-sangha,SunyataZero,,false,false,false,0,false,false,false,false +ALGPHELLO/android_kernel_condor_gnsz6753_66_n,ALGPHELLO,,false,false,false,0,false,false,false,false +blender_port_tools/rigging_collapse_bones,blender_port_tools,Python,false,false,false,0,false,false,false,false +agostini.tech/DADependencyInjection,agostini.tech,Swift,false,false,false,0,false,false,false,false +rafik.harzi/All_In_One_Network_Tools,rafik.harzi,Python,false,true,false,0,false,false,false,false +marcos-abs/xamarin-forms-avancado,marcos-abs,C#,false,false,false,0,false,false,false,false +OpenPlaygroundMap/OpenPlaygroundMap,OpenPlaygroundMap,JavaScript,true,false,false,4,true,true,true,true +elliotbouvier/workshop-git,elliotbouvier,JavaScript,true,false,false,4,true,true,false,false +gaangaritav/paper-summaries,gaangaritav,,false,false,false,0,false,false,false,false +jahbini/halvalla,jahbini,CoffeeScript,false,false,false,0,false,false,false,false +janecekt/guitar-song-book-editor,janecekt,Java,false,false,true,0,false,false,false,false +jobinson99/il,jobinson99,EmacsLisp,false,false,false,0,false,false,false,false +swe-nrb/demo-infopack-rollbeskrivningar,swe-nrb,JavaScript,true,false,false,4,true,false,true,false +C-PyLx/xCracker,C-PyLx,Python,false,false,false,0,false,false,false,false +loicpirez/TrinityCore_3.3.5a_NPCBots,loicpirez,C++,false,false,false,0,false,false,false,false +m8f-toolbox/target-spy,m8f-toolbox,Shell,false,false,false,0,false,false,false,false +ComposePress/cli,ComposePress,PHP,false,false,false,0,false,false,false,false +ComposePress/core,ComposePress,PHP,true,false,false,1,false,true,false,false +amathew/yoginth.ml,amathew,HTML,true,false,false,1,false,true,false,false +wilkart/gridcoin-plateaux,wilkart,CSS,false,false,false,0,false,false,false,false +Mek101/Fujitsu-RAID-Zabbix-SNMPv2,Mek101,,false,false,false,0,false,false,false,false +shnarazk/haskell/discord-haskell,shnarazk,Haskell,false,false,false,0,false,false,false,false +theseconddennis/linux-speedrun-timer,theseconddennis,Python,false,false,false,0,false,false,false,false +gorlapraveen/gsm-gps-tracker,gorlapraveen,C++,false,false,false,0,false,false,false,false +barsoosayque/a-tale-about-tail,barsoosayque,Lua,true,false,false,1,false,true,false,false +huyqut-interview/cpp/leetcode,huyqut-interview,C++,false,false,false,0,false,false,false,false +gunawan.pad/terbilang.indonesia.text.audio.js,gunawan.pad,JavaScript,false,false,false,0,false,false,false,false +thebrahminator/hippo-dg,thebrahminator,Python,false,true,false,0,false,false,false,false +AlexKost70/wwtbam,AlexKost70,Python,false,false,false,0,false,false,false,false +opencams/opencams,opencams,Python,false,false,false,0,false,false,false,false +osamabinomar/stompAndroid,osamabinomar,Java,false,false,false,0,false,false,false,false +pedroruizf/arduino,pedroruizf,C++,false,false,false,0,false,false,false,false +joshburkart/gpscale,joshburkart,Python,true,true,false,1,false,true,false,false +agaric/documentation,agaric,Python,false,false,false,0,false,false,false,false +dusty.p/Geeksbot,dusty.p,Python,false,false,false,0,false,false,false,false +mdaffin/scribe,mdaffin,Rust,true,false,false,2,true,true,false,false +JohnBlood/project-trident,JohnBlood,HTML,true,false,false,1,false,true,false,false +HolyDragonProject/android_bootable_recovery,HolyDragonProject,C,false,false,false,0,false,false,false,false +kaashif/decomp,kaashif,HTML,true,false,false,1,false,false,true,false +crates.rs/categories,crates.rs,Rust,false,false,false,0,false,false,false,false +napperley/openfaas-weather-sample,napperley,C,false,false,false,0,false,false,false,false +jeffrey-xiao/codeforces-pdf,jeffrey-xiao,,false,false,false,0,false,false,false,false +jeffrey-xiao/extended-collections-rs,jeffrey-xiao,Rust,false,false,false,0,false,false,false,false +jeffrey-xiao/kademlia-dht-rs,jeffrey-xiao,Rust,false,false,false,0,false,false,false,false +flyingchipmunk_ansible/amazondash,flyingchipmunk_ansible,Shell,false,false,false,0,false,false,false,false +skickar/SHA1cracker,skickar,Python,false,true,false,0,false,false,false,false +uzluisf/ENIGMA-Machine,uzluisf,Perl6,false,false,false,0,false,false,false,false +yefengchun/beg-hibernate-4ed,yefengchun,Java,false,false,true,0,false,false,false,false +DavidOC/GodotJam062018,DavidOC,GDScript,false,false,false,0,false,false,false,false +rosecode-contributors/rose-bush-cms,rosecode-contributors,,false,false,false,0,false,false,false,false +rosecode-contributors/community-details,rosecode-contributors,,false,false,false,0,false,false,false,false +OpenAPITools/openapi-generator,OpenAPITools,HTML,false,false,true,0,false,false,false,false +pums974/openfoam-coria,pums974,C++,false,false,false,0,false,false,false,false +NguWarKhin/myFirstPrj,NguWarKhin,Java,false,false,false,0,false,false,false,false +sharadkpathak20/youtube-player-react,sharadkpathak20,JavaScript,false,false,false,0,false,false,false,false +kLabz/haxe-apollo,kLabz,Haxe,false,false,false,0,false,false,false,false +osgames/antichess,osgames,Java,false,false,false,0,false,false,false,false +yohanyanev/QT_Game,yohanyanev,Makefile,false,false,false,0,false,false,false,false +osgames/attal,osgames,C++,false,false,false,0,false,false,false,false +osgames/civilwar,osgames,C++,false,false,false,0,false,false,false,false +charliehoward/NorthPointInstaller,charliehoward,PowerShell,false,false,false,0,false,false,false,false +osgames/gm-tools,osgames,C++,false,false,false,0,false,false,false,false +osgames/lincity,osgames,C,false,false,false,0,false,false,false,false +osgames/metalmech,osgames,PHP,false,false,false,0,false,false,false,false +osgames/pizza-business,osgames,C++,false,false,false,0,false,false,false,false +osgames/planets,osgames,Java,false,false,false,0,false,false,false,false +jD91mZM2/dotfiles,jD91mZM2,Nix,false,false,false,0,false,false,false,false +osgames/rogueclone,osgames,C,false,false,false,0,false,false,false,false +osgames/theclans,osgames,C,false,false,false,0,false,false,false,false +osgames/tuxracer,osgames,C,false,false,false,0,false,false,false,false +osgames/xconq,osgames,C,false,false,false,0,false,false,false,false +sebastianhutter/urt-server,sebastianhutter,Shell,true,false,false,1,true,false,false,false +hendrixflp/go-labs,hendrixflp,Go,false,false,false,0,false,false,false,false +triploide/dh-2018-1b,triploide,PHP,false,false,false,0,false,false,false,false +shaunlee0/payment-forecast-api,shaunlee0,Java,false,false,true,0,false,false,false,false +shaunlee0/payment-forecast-web,shaunlee0,CSS,false,false,false,0,false,false,false,false +TheChosenEvilOne/Mindustry,TheChosenEvilOne,Java,true,false,false,1,true,false,false,false +earvinpiamonte/codeigniter-3.1.8-template,earvinpiamonte,PHP,false,false,false,0,false,false,false,false +osgames/machinations,osgames,C++,false,false,false,0,false,false,false,false +matpaq/gesco,matpaq,PHP,false,false,false,0,false,false,false,false +osgames/galaxyng,osgames,C,false,false,false,0,false,false,false,false +osgames/skrupel,osgames,PHP,false,false,false,0,false,false,false,false +wasp-project/open-source/ng-golden-layout,wasp-project,TypeScript,false,false,false,0,false,false,false,false +osgames/uwadv,osgames,C++,false,false,false,0,false,false,false,false +brancengregory/brancengregory.gitlab.io,brancengregory,HTML,true,false,false,1,false,false,true,false +osgames/wargamer,osgames,C++,false,false,false,0,false,false,false,false +osgames/zangband,osgames,C,false,false,false,0,false,false,false,false +dickoa/humanitarian-datasci-pres,dickoa,HTML,true,false,false,1,false,true,false,false +osgames/blitzkrieg,osgames,Java,false,false,false,0,false,false,false,false +sclee0620/pandas_exercises,sclee0620,JupyterNotebook,false,false,false,0,false,false,false,false +shinkei/pomodoro,shinkei,Shell,false,false,false,0,false,false,false,false +nystrome/sciit,nystrome,Python,true,true,false,2,false,false,false,false +shnarazk/haskell/haskell-on-heroku,shnarazk,Haskell,true,false,false,2,true,false,true,false +maciejt.nowak/gitlab-api-compare,maciejt.nowak,,false,false,false,0,false,false,false,false +JaviLoEs/ProyectoDW,JaviLoEs,JavaScript,false,false,false,0,false,false,false,false +mdmm/p1,mdmm,JavaScript,false,false,false,0,false,false,false,false +arma3-server-tools/modmanager,arma3-server-tools,Python,true,true,false,1,true,false,false,false +doijunior/001-toolbox-intro,doijunior,HTML,false,false,false,0,false,false,false,false +joprotin/docker/apache,joprotin,Shell,true,false,false,1,false,false,false,true +xanio/awesome-creative-coding,xanio,,false,false,false,0,false,false,false,false +xanio/awesome-osint,xanio,,false,false,false,0,false,false,false,false +clivejo/solus,clivejo,,true,false,false,1,false,false,true,false +ahhh/YARA,ahhh,,false,false,false,0,false,false,false,false +sat-metalab/metalab-ugens,sat-metalab,C++,false,false,false,0,false,false,false,false +frozenfoxx/util,frozenfoxx,Shell,false,false,false,0,false,false,false,false +camshift/cambreaker-vstarcam-poc,camshift,Python,false,false,false,0,false,false,false,false +frozenfoxx/gym-schemaverse,frozenfoxx,Python,false,true,false,0,false,false,false,false +osgames/mercenarycommander,osgames,Java,false,false,false,0,false,false,false,false +HolyDragonProject/android_kernel_oneplus_msm8996,HolyDragonProject,,false,false,false,0,false,false,false,false +zookid/datacity-wptheme,zookid,CSS,false,false,false,0,false,false,false,false +dylnmc/vim-ultisnippets,dylnmc,Vimscript,false,false,false,0,false,false,false,false +_DAK/ezTaxi,_DAK,Lua,false,false,false,0,false,false,false,false +_DAK/chopshop,_DAK,,false,false,false,0,false,false,false,false +Xcalizorz/ManjaroUpdate,Xcalizorz,Shell,false,false,false,0,false,false,false,false +sorabh2008/my-first-react-app,sorabh2008,JavaScript,false,false,false,0,false,false,false,false +Bifurcar/JornadasSedes,Bifurcar,Java,false,false,false,0,false,false,false,false +tahoma-robotics/bear-simulation,tahoma-robotics,Java,false,false,true,0,false,false,false,false +jlwtformer/dotfiles,jlwtformer,Shell,false,false,false,0,false,false,false,false +josevillarreal/todo,josevillarreal,JavaScript,false,false,false,0,false,false,false,false +yuyang339/PRML-Solution-Manual,yuyang339,,false,false,false,0,false,false,false,false +kdeleteme/Hectic-old,kdeleteme,Dart,true,false,false,1,false,true,false,false +yuyang339/Distributed_Systems_6.824,yuyang339,Go,false,false,false,0,false,false,false,false +yuyang339/Elements_of_statistical_learning_solution,yuyang339,,false,false,false,0,false,false,false,false +yuyang339/Machine-learning-Stanford-Ng,yuyang339,Matlab,false,false,false,0,false,false,false,false +Conejo12/symfony-simple-cqrs,Conejo12,PHP,false,false,false,0,false,false,false,false +aolko/emerald,aolko,,false,false,false,0,false,false,false,false +b0urn3/ansible-training,b0urn3,,false,false,false,0,false,false,false,false +deftware/electronirc,deftware,CSS,false,false,false,0,false,false,false,false +pietrom_cp/signalr-class,pietrom_cp,JavaScript,false,false,false,0,false,false,false,false +1303110335/test-java,1303110335,Java,false,false,true,0,false,false,false,false +wolverian/ii,wolverian,Makefile,false,false,false,0,false,false,false,false +fagnerbto/mapbiogas,fagnerbto,Java,false,false,true,0,false,false,false,false +Jarli01/xenorchestra_installer,Jarli01,Shell,false,false,false,0,false,false,false,false +Jarli01/xenorchestra_updater,Jarli01,Shell,false,false,false,0,false,false,false,false +osgames/dragon-hunt,osgames,Python,false,false,false,0,false,false,false,false +DontEatSoapDudley/roguelikedev_challenge,DontEatSoapDudley,C++,false,false,false,0,false,false,false,false +gvuksa/praksa,gvuksa,C#,false,false,false,0,false,false,false,false +eddy14u/node-server-vscode,eddy14u,TypeScript,false,false,false,0,false,false,false,false +damienbelard/PocIconChange,damienbelard,Kotlin,false,false,false,0,false,false,false,false +slcny/systems-working-group,slcny,,false,false,false,0,false,false,false,false +sergioperez/homework-openshift-advanced-deployment,sergioperez,Shell,false,false,false,0,false,false,false,false +jonkrone/Form-Funnel,jonkrone,JavaScript,false,false,false,0,false,false,false,false +aman3991/FeedHungry,aman3991,HTML,false,false,false,0,false,false,false,false +mrsarayra/UNO_counter_CLI,mrsarayra,C++,false,false,false,0,false,false,false,false +jvincentl/Pyno,jvincentl,Python,false,false,false,0,false,false,false,false +LAB42/BRC-ebay-portal,LAB42,PHP,false,false,false,0,false,false,false,false +alaskalinuxuser/qt_course,alaskalinuxuser,Makefile,false,false,false,0,false,false,false,false +edisonjwa/shadowsocksr-1,edisonjwa,Python,false,false,false,0,false,false,false,false +wahomekevin/website-sonos,wahomekevin,CSS,true,false,false,2,true,false,true,false +udiboy1209-suckless/dwm,udiboy1209-suckless,C,false,false,false,0,false,false,false,false +mkalygin/parcel-boilerplate,mkalygin,HTML,false,false,false,0,false,false,false,false +joshuadoss/baseline,joshuadoss,JavaScript,false,false,false,0,false,false,false,false +adleatherwood/ezrep,adleatherwood,Go,true,false,false,3,true,true,false,true +agaric/patternlibrary,agaric,HTML,false,false,false,0,false,false,false,false +pointcache/ECS,pointcache,C#,false,false,false,0,false,false,false,false +oscgeeks/zagelOSC/zagelOSC_Web,oscgeeks,PHP,false,false,false,0,false,false,false,false +nul.one/fusecry,nul.one,Python,false,false,false,0,false,false,false,false +ggerman/configuration,ggerman,Vimscript,false,false,false,0,false,false,false,false +ggerman/eoswebdevelopment,ggerman,Ruby,false,false,false,0,false,false,false,false +ggerman/fizzbuzz,ggerman,Ruby,false,false,false,0,false,false,false,false +ggerman/twitter,ggerman,Ruby,false,false,false,0,false,false,false,false +ggerman/visitortracking,ggerman,Go,false,false,false,0,false,false,false,false +foxoman/pdftoword,foxoman,QML,false,false,false,0,false,false,false,false +gsanhueza/ArchISOMaker,gsanhueza,Shell,false,false,false,0,false,false,false,false +azernyc/Books,azernyc,,false,false,false,0,false,false,false,false +Nitrovert/MBTI,Nitrovert,HTML,false,false,false,0,false,false,false,false +butala/pyrsss,butala,Python,false,true,false,0,false,false,false,false +chaynHQ/soul-medicine,chaynHQ,Ruby,true,false,false,1,false,true,false,false +osgames/tbots,osgames,C++,false,false,false,0,false,false,false,false +osgames/civil,osgames,Python,false,false,false,0,false,false,false,false +mrzeznic/learn_python,mrzeznic,Python,false,false,false,0,false,false,false,false +osgames/aplanetsrevenge,osgames,Python,false,false,false,0,false,false,false,false +Claymore-nodevfee/Claymore-nodevfee,Claymore-nodevfee,Batchfile,false,false,false,0,false,false,false,false +oliver.nakoinz/MOSAICnet2018,oliver.nakoinz,HTML,false,false,false,0,false,false,false,false +osde8info/pardot-api-schemas,osde8info,,false,false,false,0,false,false,false,false +leangjia/cqrlog,leangjia,Pascal,false,false,false,0,false,false,false,false +leangjia/git-po-zh_CN,leangjia,,false,false,false,0,false,false,false,false +leangjia/lnmp,leangjia,Shell,false,false,false,0,false,false,false,false +endlesscodegroup/inspector,endlesscodegroup,Kotlin,true,false,false,2,true,false,true,false +teckchun/webview-gps-tracker,teckchun,Java,false,false,false,0,false,false,false,false +lovefishcat/tsnode-example,lovefishcat,TypeScript,false,false,false,0,false,false,false,false +saxopublish/saxo-currencies,saxopublish,Python,false,false,false,0,false,false,false,false +msunith/pda,msunith,Shell,false,false,false,0,false,false,false,false +kira-pyred/kira,kira-pyred,C,false,false,false,0,false,false,false,false +Xavier59/bitmex-orderbook,Xavier59,JavaScript,false,false,false,0,false,false,false,false +iSauron/Utils,iSauron,C++,false,false,false,0,false,false,false,false +zach-brennan/LaTeX-Resume,zach-brennan,TeX,true,false,false,2,true,false,true,false +ThunthepS/Joe_Ensource_Demo,ThunthepS,JavaScript,false,false,false,0,false,false,false,false +PierreFaniel/react-social-cards,PierreFaniel,JavaScript,false,false,false,0,false,false,false,false +vaadim/serare,vaadim,Shell,false,false,false,0,false,false,false,false +SpaceTimi/bonda,SpaceTimi,C#,false,false,false,0,false,false,false,false +SpaceTimi/timi_shared,SpaceTimi,C#,false,false,false,0,false,false,false,false +uzluisf/piensaperl6,uzluisf,TeX,true,false,false,2,true,false,true,false +cmaisonneuve/puppet-koha,cmaisonneuve,Puppet,false,false,false,0,false,false,false,false +Arziel/Z-S-Overview-Generator,Arziel,,false,false,false,0,false,false,false,false +synterest/Nextotel,synterest,Python,false,true,false,0,false,false,false,false +kisters/kisters.water.time_series,kisters,Python,false,true,true,0,false,false,false,false +Warning_Developments/Ajedrez,Warning_Developments,C++,false,false,false,0,false,false,false,false +Seeny/Movie-Page,Seeny,HTML,false,false,false,0,false,false,false,false +datube/dt-build,datube,Shell,false,false,false,0,false,false,false,false +SamB440/Schematics-Extended,SamB440,Java,false,false,false,0,false,false,false,false +datube/stm,datube,Python,false,false,false,0,false,false,false,false +congard/libcm,congard,Java,false,false,false,0,false,false,false,false +kunzisoft/KeePassDX,kunzisoft,Java,false,false,false,0,false,false,false,false +egabancho/invenio-s3,egabancho,Python,false,false,false,0,false,false,false,false +Nohus/dotfiles,Nohus,Makefile,false,false,false,0,false,false,false,false +m2ikr23/appgeo,m2ikr23,TypeScript,false,false,false,0,false,false,false,false +Prosp3r/openipc-firmware,Prosp3r,Shell,false,false,false,0,false,false,false,false +Roffild/RoffildLibrary,Roffild,MQL5,false,false,false,0,false,false,false,false +Xavier59/bitmex-plus,Xavier59,JavaScript,false,false,false,0,false,false,false,false +zeen3/uuidgen4,zeen3,TypeScript,true,false,false,1,false,false,true,false +abyss.club/abyss,abyss.club,Shell,false,false,false,0,false,false,false,false +highway900/operata_test,highway900,Go,true,false,false,4,true,true,true,true +wilsondin/Numbers2Maps,wilsondin,,false,false,false,0,false,false,false,false +Eco-Tec/FrosTool,Eco-Tec,Python,false,false,false,0,false,false,false,false +newroseji/laravel,newroseji,PHP,true,false,false,2,false,true,true,false +aerosuidae/logicarts,aerosuidae,Lua,false,false,false,0,false,false,false,false +NoooneyDude/COMPSCIDiscordBot,NoooneyDude,JavaScript,false,false,false,0,false,false,false,false +yuanliu9/QANet-pytorch,yuanliu9,Python,false,true,false,0,false,false,false,false +SantaGitHub/Svarka,SantaGitHub,Java,false,false,false,0,false,false,false,false +navitia/mimirsbrunn,navitia,Rust,false,false,false,0,false,false,false,false +qeesung/91porn,qeesung,Java,false,false,false,0,false,false,false,false +sprat/debpack,sprat,Shell,true,false,false,2,true,true,false,false +kalpeshshimpi/ssh-test,kalpeshshimpi,CSS,false,false,false,0,false,false,false,false +osgames/digitalalovestory,osgames,Python,false,false,false,0,false,false,false,false +osgames/murderpd,osgames,C++,false,false,false,0,false,false,false,false +boxtron/MySQL-PHP-Connect,boxtron,PHP,false,false,false,0,false,false,false,false +HanBnrd/WorkloadBCI,HanBnrd,Python,false,false,false,0,false,false,false,false +anshulpatel25/notary-meetup,anshulpatel25,Shell,false,false,false,0,false,false,false,false +Arghnews/red_black_tree,Arghnews,C++,false,false,false,0,false,false,false,false +b_fritz/generator-es6-servicies,b_fritz,JavaScript,false,false,false,0,false,false,false,false +b_fritz/sitePresentation,b_fritz,JavaScript,false,false,false,0,false,false,false,false +barsoosayque/dotfiles,barsoosayque,Python,false,false,false,0,false,false,false,false +nathanbakhuijzen/dotfiles,nathanbakhuijzen,Vimscript,false,false,false,0,false,false,false,false +ramahisyam/Aksara,ramahisyam,Java,false,false,false,0,false,false,false,false +ArthurJordao/docusaurus-example,ArthurJordao,JavaScript,true,false,false,1,false,true,false,false +edomo/add-ons/automation-service,edomo,TypeScript,false,false,false,0,false,false,false,false +gokussjx/MusicHitAnalyzer,gokussjx,Python,false,true,false,0,false,false,false,false +chrysn/efr32xg1,chrysn,Makefile,false,false,false,0,false,false,false,false +PierreFaniel/react-weather,PierreFaniel,JavaScript,false,false,false,0,false,false,false,false +vincentdavy/soundcloud-extractor,vincentdavy,Go,true,false,false,5,true,true,false,true +xyli/SICP-learning-notes,xyli,Racket,false,false,false,0,false,false,false,false +planport/smart-contracts,planport,JavaScript,false,false,false,0,false,false,false,false +OogieM/LambTrackerManualScrivener,OogieM,HTML,false,false,false,0,false,false,false,false +OogieM/LambTrackerMobile,OogieM,Java,false,false,false,0,false,false,false,false +dgetsman/CPURecord,dgetsman,Java,false,false,false,0,false,false,false,false +dgetsman/DANT2a,dgetsman,C#,false,false,false,0,false,false,false,false +dgetsman/DOCshell,dgetsman,JavaScript,false,false,false,0,false,false,false,false +dgetsman/MinTone,dgetsman,Java,false,false,false,0,false,false,false,false +dgetsman/RAS,dgetsman,Java,false,false,false,0,false,false,false,false +dgetsman/sol-cosmology,dgetsman,POV-RaySDL,false,false,false,0,false,false,false,false +jquarre/pyfluidsynth3,jquarre,Python,false,false,false,0,false,false,false,false +pyfluid/pyfluidutils,pyfluid,Python,false,false,false,0,false,false,false,false +crates.rs/style,crates.rs,HTML,false,false,false,0,false,false,false,false +binitghimire/Bouncing-Oli,binitghimire,HTML,false,false,false,0,false,false,false,false +xorhash/nsd,xorhash,C,false,false,false,0,false,false,false,false +mlwong/resume,mlwong,TeX,false,false,false,0,false,false,false,false +Dennovin/kqb,Dennovin,Python,false,true,false,0,false,false,false,false +midraed/SOCmap-ARG-code,midraed,R,false,false,false,0,false,false,false,false +elputorei/Pinyator,elputorei,PHP,false,false,false,0,false,false,false,false +GabrielHs/ghs-vscode-theme,GabrielHs,,false,false,false,0,false,false,false,false +verdeyen/genesys-power,verdeyen,Python,false,false,false,0,false,false,false,false +jeanfi/ubuntu-desktop,jeanfi,Shell,true,false,false,1,false,false,false,false +JuampaHernandez/Clinica,JuampaHernandez,C#,false,false,false,0,false,false,false,false +fabianoss-public/spring-boot-batch,fabianoss-public,Java,false,false,true,0,false,false,false,false +drom/jtag,drom,JavaScript,true,false,false,1,false,true,false,false +modding-legacy/Glacidus,modding-legacy,Java,true,false,false,1,false,true,false,false +Mirocow/yii2-dockerfile,Mirocow,,false,false,false,0,false,false,false,false +boaromayo/EoD-noncanon,boaromayo,Lua,false,false,false,0,false,false,false,false +sijie.long/experiment,sijie.long,,false,false,false,0,false,false,false,false +nitrohorse/mullvad-connectivity-checker,nitrohorse,JavaScript,false,false,false,0,false,false,false,false +BluePsion/mycroft-skills,BluePsion,HTML,false,false,false,0,false,false,false,false +awl/vscode-grails,awl,TypeScript,false,false,false,0,false,false,false,false +frozenfoxx/docker-zandronum,frozenfoxx,Shell,true,false,false,1,true,false,false,false +stalin1996/noticiasapp,stalin1996,CSS,false,false,false,0,false,false,false,false +earvinpiamonte/atom,earvinpiamonte,CSS,false,false,false,0,false,false,false,false +dejawu/kythera,dejawu,JavaScript,false,false,false,0,false,false,false,false +sleepfighter/dotfiles,sleepfighter,Shell,false,false,false,0,false,false,false,false +fuentelibre/rapydscriptify-ng,fuentelibre,JavaScript,false,false,false,0,false,false,false,false +m3ch_mania/mangadex-modtools,m3ch_mania,JavaScript,false,false,false,0,false,false,false,false +md5hashtag/deleteTweet,md5hashtag,Python,false,false,false,0,false,false,false,false +m3ch_mania/mangadex-externallookup,m3ch_mania,JavaScript,false,false,false,0,false,false,false,false +oneillr/gaddis,oneillr,Java,false,false,false,0,false,false,false,false +CLARIN-ERIC/compose_compreg,CLARIN-ERIC,,false,false,false,0,false,false,false,false +manish.indshine/OcclusionAnalysis,manish.indshine,Python,false,false,false,0,false,false,false,false +osgames/spicetrade,osgames,Java,false,false,false,0,false,false,false,false +ToTheFarWest/DOM-Bot,ToTheFarWest,JavaScript,false,false,false,0,false,false,false,false +earvinpiamonte/sublime-text-3-packages-user,earvinpiamonte,,false,false,false,0,false,false,false,false +wavexx/python-x.el,wavexx,EmacsLisp,false,false,false,0,false,false,false,false +wavexx/mu4e-jump-to-list.el,wavexx,EmacsLisp,false,false,false,0,false,false,false,false +wavexx/gnus-desktop-notify.el,wavexx,EmacsLisp,false,false,false,0,false,false,false,false +nearffxx/tools,nearffxx,,false,false,false,0,false,false,false,false +allotrope-open-source/osee-server,allotrope-open-source,JavaScript,false,false,true,0,false,false,false,false +muXxer/docker-iota-hercules,muXxer,Shell,false,false,false,0,false,false,false,false +osgames/orient,osgames,C#,false,false,false,0,false,false,false,false +halderm/terraform-digitalocean,halderm,HCL,false,false,false,0,false,false,false,false +VincentTam/dotfiles,VincentTam,Shell,false,false,false,0,false,false,false,false +Slemgrim/blender-my-data,Slemgrim,Python,false,false,false,0,false,false,false,false +coppercoder/project-euler,coppercoder,Python,false,false,false,0,false,false,false,false +ThatsMiguel/TweetDeck_CSS_Customization,ThatsMiguel,CSS,false,false,false,0,false,false,false,false +osgames/bmtactics,osgames,JavaScript,false,false,false,0,false,false,false,false +cjvnjde/psychopathy,cjvnjde,JavaScript,false,false,false,0,false,false,false,false +joielechong/AgendaCalendarView,joielechong,Java,false,false,false,0,false,false,false,false +ggresillion/DiscordSoundBoard,ggresillion,TypeScript,false,false,false,0,false,false,false,false +forell/EastAPOLO-Userstyles,forell,CSS,false,false,false,0,false,false,false,false +michael.santos/everl,michael.santos,C,false,false,false,0,false,false,false,false +michael.santos/perc,michael.santos,Erlang,false,false,false,0,false,false,false,false +michael.santos/seds,michael.santos,Erlang,false,false,false,0,false,false,false,false +michael.santos/verx,michael.santos,Erlang,false,false,false,0,false,false,false,false +scaphilo/koalixcrm,scaphilo,Python,false,true,false,0,false,false,false,false +IntelieChallenge/event-store,IntelieChallenge,C++,true,false,false,2,true,true,false,false +osgames/pymapper,osgames,Python,false,false,false,0,false,false,false,false +brianr852/EventManager,brianr852,Java,false,false,false,0,false,false,false,false +S0rn0/react-app-starter,S0rn0,TypeScript,false,false,false,0,false,false,false,false +killea/indeep,killea,JavaScript,false,false,false,0,false,false,false,false +whom/plausible-file-generator,whom,Rust,false,false,false,0,false,false,false,false +niltonvasques/ufbathesis,niltonvasques,TeX,false,false,false,0,false,false,false,false +kid424/zhao,kid424,Python,false,false,false,0,false,false,false,false +xHALOIDx/Project_Login_Animate,xHALOIDx,Java,false,false,false,0,false,false,false,false +jordirc-demos/flask,jordirc-demos,Python,false,false,false,0,false,false,false,false +gevmel/riimages-api,gevmel,PHP,false,false,false,0,false,false,false,false +mikhailnov/hunspell-ru,mikhailnov,Python,false,false,false,0,false,false,false,false +fR4a/ACL4SSR,fR4a,,false,false,false,0,false,false,false,false +AlexTurpb/bankonrails,AlexTurpb,Ruby,false,false,false,0,false,false,false,false +probot-contest/papers,probot-contest,,false,false,false,0,false,false,false,false +yaoya_totan/UnamedBot,yaoya_totan,Java,false,false,true,0,false,false,false,false +feisherli/AwesomeQRCode,feisherli,Java,false,false,false,0,false,false,false,false +gevmel/riimages-ios-application,gevmel,Objective-C,false,false,false,0,false,false,false,false +yatin2410/CodeForces_HackingPhase,yatin2410,Python,false,false,false,0,false,false,false,false +mrpydha/santri,mrpydha,PHP,false,false,false,0,false,false,false,false +osgames/gwiz,osgames,C,false,false,false,0,false,false,false,false +B3h3m0th/UnixCentric,B3h3m0th,C,false,false,false,0,false,false,false,false +actondev/org-mode-ci,actondev,Shell,true,false,false,1,false,true,false,false +mhaluska/zabbix-rundeck-otrs,mhaluska,Shell,false,false,false,0,false,false,false,false +belka/java-study,belka,Java,false,false,false,0,false,false,false,false +osgames/koboldsquest2,osgames,Python,false,false,false,0,false,false,false,false +njam/ttn-experiments,njam,JavaScript,true,false,false,2,true,false,false,true +cscutcher/cscutcher.github.io,cscutcher,HTML,false,false,false,0,false,false,false,false +manuross619/Befluent,manuross619,PHP,false,false,false,0,false,false,false,false +Prophesians/swivel-chrome,Prophesians,JavaScript,false,false,false,0,false,false,false,false +tosmi/clojure,tosmi,Clojure,false,false,false,0,false,false,false,false +jaymoulin/docker-ddgr,jaymoulin,Makefile,true,false,false,1,true,false,false,false +jaymoulin/docker-google-music-downloader,jaymoulin,Makefile,true,false,false,1,true,false,false,false +jaymoulin/docker-googler,jaymoulin,Makefile,true,false,false,1,true,false,false,false +A-Sam/cplusplus_training_ws,A-Sam,Makefile,false,false,false,0,false,false,false,false +Th3Adventurous/AdventCoin,Th3Adventurous,C++,false,false,false,0,false,false,false,false +pruicr/colors,pruicr,JavaScript,false,false,false,0,false,false,false,false +pruicr/svnup,pruicr,JavaScript,false,false,false,0,false,false,false,false +klausnascimento/CRUD-PHP,klausnascimento,CSS,false,false,false,0,false,false,false,false +sehnem/pynmet,sehnem,Python,true,false,false,1,false,true,false,false +WikiLove/giants-war-hack-crystals,WikiLove,,false,false,false,0,false,false,false,false +debjyoti.88/cr_setup,debjyoti.88,JavaScript,false,false,false,0,false,false,false,false +hantz/qotifly,hantz,C++,false,false,false,0,false,false,false,false +mrpudn/mrpudn.gitlab.io,mrpudn,Ruby,true,false,false,2,false,true,true,false +cyberscape/maxwell/mx-web,cyberscape,,false,false,false,0,false,false,false,false +jrjr1/paw.js,jrjr1,JavaScript,false,false,false,0,false,false,false,false +joonatoona/BetterInput,joonatoona,C,false,false,false,0,false,false,false,false +yas.nakajima/adc2018python,yas.nakajima,JupyterNotebook,false,false,false,0,false,false,false,false +vojta_vogo/vok,vojta_vogo,,false,false,false,0,false,false,false,false +angular-material-dashboard/angular-material-dashboard-sdp,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +Thebothack/Phantom,Thebothack,Python,false,false,false,0,false,false,false,false +ivan-tat/retroplayer,ivan-tat,C,false,false,false,0,false,false,false,false +osgames/umbra,osgames,Python,false,false,false,0,false,false,false,false +semla/secret-key-to-bitcoin-address-balance,semla,TypeScript,true,false,false,2,false,true,true,false +orioks/android-app,orioks,Kotlin,true,false,false,2,true,false,true,false +justli/npm-download-count,justli,JavaScript,false,false,false,0,false,false,false,false +justli/vue-step,justli,Vue,false,false,false,0,false,false,false,false +defnotarobot/poncilibot,defnotarobot,Python,false,true,false,0,false,false,false,false +patrick-gell/elastic-location-grafana,patrick-gell,Go,false,false,false,0,false,false,false,false +alangecker/trichter-events,alangecker,,false,false,false,0,false,false,false,false +femtopixel/docker-kompose,femtopixel,Makefile,true,false,false,1,true,false,false,false +formschema/components/elementui,formschema,JavaScript,false,false,false,0,false,false,false,false +logi-ce/docker-tsung,logi-ce,Makefile,true,false,false,1,true,false,false,false +cisl407/classroom/pdp11-server,cisl407,Haskell,true,false,false,2,true,false,true,false +Ninikaita/nnaamapeiko,Ninikaita,C,false,false,false,0,false,false,false,false +joshuacooper/dwm,joshuacooper,C,false,false,false,0,false,false,false,false +jamgo/commonscloud-nextcloud,jamgo,Shell,false,false,false,0,false,false,false,false +jamgo/commonscloud-machine,jamgo,Shell,false,false,false,0,false,false,false,false +jamgo/commonscloud-discourse,jamgo,Shell,false,false,false,0,false,false,false,false +jamgo/commonscloud-phabricator,jamgo,Shell,false,false,false,0,false,false,false,false +_Floydian/Hosts,_Floydian,Batchfile,false,false,false,0,false,false,false,false +joshuacooper/st,joshuacooper,C,false,false,false,0,false,false,false,false +kekc/kapoosta,kekc,Makefile,false,false,false,0,false,false,false,false +VincentTam/vincenttam.gitlab.io,VincentTam,HTML,true,false,false,1,false,true,false,false +ThomasAuriel/HTML-Handbook,ThomasAuriel,JavaScript,false,false,false,0,false,false,false,false +frontpagetech/Zuckerbot,frontpagetech,,false,false,false,0,false,false,false,false +jbollman/ansible-workstation-config,jbollman,Shell,false,false,false,0,false,false,false,false +mfaisalkhatri/JsonFileReader,mfaisalkhatri,Java,false,false,true,0,false,false,false,false +NWNRavenloft/web-tools-frontend,NWNRavenloft,JavaScript,false,false,false,0,false,false,false,false +noschinl/locus-poi-db,noschinl,JupyterNotebook,false,false,false,0,false,false,false,false +landrash/homeassistant-config,landrash,,false,false,false,0,false,false,false,false +ctuffli/lxtools,ctuffli,Shell,false,false,false,0,false,false,false,false +peter-veres/timesheet-reports,peter-veres,HTML,false,false,false,0,false,false,false,false +osgames/devana,osgames,PHP,false,false,false,0,false,false,false,false +gitzup/deployster,gitzup,Python,true,true,false,1,false,true,false,false +soul2016/resistor,soul2016,JavaScript,false,false,false,0,false,false,false,false +mauriciocapua/web3-2018-01_trabalhofinal,mauriciocapua,Java,false,false,false,0,false,false,false,false +just-python/website,just-python,HTML,true,false,false,1,false,true,false,false +MarkO/_tcpser-v2,MarkO,C,false,false,false,0,false,false,false,false +aguinaldoa80/Time,aguinaldoa80,Pascal,false,false,false,0,false,false,false,false +HaeckDesign/triangle-ghost-theme,HaeckDesign,CSS,false,false,false,0,false,false,false,false +vstconsulting/polemarch-docker,vstconsulting,Python,true,true,false,2,false,true,false,false +MarkO/_tcpser-v2-fz,MarkO,C,false,false,false,0,false,false,false,false +aspyrine/ansible-roles,aspyrine,Shell,false,false,false,0,false,false,false,false +dnguy078/lulus,dnguy078,Go,false,false,false,0,false,false,false,false +kesslerdev/generator-skimia,kesslerdev,JavaScript,true,false,false,3,true,true,true,false +yo5bdm/sonerie-scoala,yo5bdm,C++,false,false,false,0,false,false,false,false +Noah-Heil/phren,Noah-Heil,Go,false,false,false,0,false,false,false,false +starbelly/hydro,starbelly,Erlang,true,false,false,1,false,true,false,false +osgames/duelcommander,osgames,C,false,false,false,0,false,false,false,false +pierredenis/veille-technologique-dev,pierredenis,,false,false,false,0,false,false,false,false +neurochaintech/simulator,neurochaintech,CMake,false,false,false,0,false,false,false,false +osgames/kursk,osgames,C++,false,false,false,0,false,false,false,false +osgames/slaygame,osgames,Java,false,false,false,0,false,false,false,false +hlissner/emacs-doom-themes,hlissner,EmacsLisp,false,false,false,0,false,false,false,false +techern/Orpheus/Orpheus-Server,techern,Java,false,false,false,0,false,false,false,false +mickro/steam-lr,mickro,Shell,false,false,false,0,false,false,false,false +RebornOS/mycroft,RebornOS,Shell,false,false,false,0,false,false,false,false +libre_hackerman/TER,libre_hackerman,Java,false,false,false,0,false,false,false,false +PierreFaniel/react-calculator,PierreFaniel,JavaScript,true,false,false,1,false,false,true,false +Infesiron/sven,Infesiron,HTML,false,false,false,0,false,false,false,false +xTeare/PathOfExile-Trade-Overlay,xTeare,C#,false,false,false,0,false,false,false,false +vitorAlves/vim.files,vitorAlves,Vimscript,false,false,false,0,false,false,false,false +vitorAlves/i3.files,vitorAlves,Shell,false,false,false,0,false,false,false,false +vitaliikobrin/CloudStat,vitaliikobrin,Java,false,false,false,0,false,false,false,false +Tim-S/asterixjs,Tim-S,TypeScript,true,false,false,3,true,true,true,false +Dee666/Calculator,Dee666,,false,false,false,0,false,false,false,false +Warning_Developments/TaTeTi,Warning_Developments,Makefile,false,false,false,0,false,false,false,false +NikolayS/docker-postgres-sqitch,NikolayS,,true,false,false,1,false,true,false,false +Descent098/100DaysOfPython,Descent098,Python,false,false,false,0,false,false,false,false +kylefelipe/apostila_qgis,kylefelipe,,false,false,false,0,false,false,false,false +smbale/angular-google-maps-native,smbale,JavaScript,false,false,false,0,false,false,false,false +jonfinley/FinFlix,jonfinley,Shell,false,false,false,0,false,false,false,false +camshift/dahua-dvr-snap,camshift,Python,false,false,false,0,false,false,false,false +eryshev/cryptocurrencies.monitoring.with.prometheus,eryshev,HTML,true,false,false,1,false,false,true,false +osgames/watomic,osgames,Pascal,false,false,false,0,false,false,false,false +hassbian/hassbian-scripts,hassbian,Shell,true,false,false,3,true,true,true,false +saydulk/school-management-system,saydulk,HTML,false,false,false,0,false,false,false,false +cecflit/swimming,cecflit,,false,false,false,0,false,false,false,false +petoknm/bcd,petoknm,Rust,false,false,false,0,false,false,false,false +pdiemi/mibrary,pdiemi,Python,true,false,false,1,false,true,false,false +alejoska77R/Proyecto_actualizado,alejoska77R,HTML,false,false,false,0,false,false,false,false +luksamuk/sonic-lisp,luksamuk,CommonLisp,false,false,false,0,false,false,false,false +codesigntheory/rapnet,codesigntheory,Python,false,false,false,0,false,false,false,false +Jaun6ui/DeezLoader-Android,Jaun6ui,C,false,false,false,0,false,false,false,false +qlmlove/interview_python,qlmlove,Shell,false,false,false,0,false,false,false,false +ryo33/combine-section-reducers,ryo33,JavaScript,false,false,false,0,false,false,false,false +ryo33/phoenix-channel-client,ryo33,Elixir,false,false,false,0,false,false,false,false +ryo33/Yayaka19,ryo33,JavaScript,false,false,false,0,false,false,false,false +yayaka/yayaka.org,yayaka,CSS,false,false,false,0,false,false,false,false +HotFusionMan/horse-registry,HotFusionMan,,false,false,false,0,false,false,false,false +timpamungkas/bfi-los-doc,timpamungkas,,false,false,false,0,false,false,false,false +ibnuda/RealWorldTM,ibnuda,Haskell,false,false,false,0,false,false,false,false +kr17apoorva/GitHub-Readme-WebCrawler,kr17apoorva,Python,false,false,false,0,false,false,false,false +osgames/worldofheroes,osgames,Python,false,false,false,0,false,false,false,false +WonderfulPlatform/Wonderful_Face_Recognition,WonderfulPlatform,Java,false,false,false,0,false,false,false,false +chevdor/oss-starter-template,chevdor,JavaScript,true,false,false,3,true,true,false,false +muuankarski/worldcup2018_data,muuankarski,R,false,false,false,0,false,false,false,false +gabiluca.mx.gitlab/adonis-marko,gabiluca.mx.gitlab,JavaScript,false,false,false,0,false,false,false,false +dmpop/photo-funnel,dmpop,Shell,false,false,false,0,false,false,false,false +tc-newsletter/newsletter-templates,tc-newsletter,HTML,false,false,false,0,false,false,false,false +dmpop/highrise,dmpop,Shell,false,false,false,0,false,false,false,false +panickervinod/awesome-electron,panickervinod,,false,false,false,0,false,false,false,false +panickervinod/node-gitlab,panickervinod,JavaScript,false,false,false,0,false,false,false,false +panickervinod/rusty-blockparser,panickervinod,Rust,false,false,false,0,false,false,false,false +osgames/dragon-history,osgames,Pascal,false,false,false,0,false,false,false,false +florian0/entity-explorer,florian0,C++,false,false,false,0,false,false,false,false +florian0/navmesh-explorer,florian0,C++,false,false,false,0,false,false,false,false +florian0/MiniBillingServer,florian0,C#,false,false,false,0,false,false,false,false +freetux/freetux.gitlab.io,freetux,HTML,true,false,false,1,false,false,true,false +c_pouzat/RR_MOOC,c_pouzat,HTML,false,false,false,0,false,false,false,false +florian0/quickstart,florian0,C++,false,false,false,0,false,false,false,false +ditokp/Free-Linux-Gaming,ditokp,,false,false,false,0,false,false,false,false +TheGamecraft/c-cms,TheGamecraft,HTML,true,false,false,2,true,false,true,false +algogr/HourglassQml,algogr,QML,false,false,false,0,false,false,false,false +gkrupa/lab-kube,gkrupa,Shell,false,false,false,0,false,false,false,false +VERTORIO/scenario,VERTORIO,Lua,false,false,false,0,false,false,false,false +remram44/unix-at,remram44,Python,true,false,false,2,false,false,false,false +casprine/afradio,casprine,CSS,false,false,false,0,false,false,false,false +attakei/yagura,attakei,Python,true,true,false,4,false,true,false,false +redhat-cop/EMEACloudFormsHackathon/DRO_AWS_ELB,redhat-cop,Ruby,false,false,false,0,false,false,false,false +openschoolmaps/OpenSchoolMaps.ch,openschoolmaps,QML,true,false,false,2,true,false,false,false +pyfluid/pyfluidweb,pyfluid,HTML,false,false,false,0,false,false,false,false +alexcarrascob/ReportesContabilidad,alexcarrascob,SQLPL,false,false,false,0,false,false,false,false +kian00sh/playlist-duplicator,kian00sh,Python,false,true,false,0,false,false,false,false +abundantgeeks/hcl-api-examples,abundantgeeks,PHP,false,false,false,0,false,false,false,false +alexcarrascob/rep-cont-web,alexcarrascob,JavaScript,false,false,false,0,false,false,false,false +trabalho-de-redes-open-box/projeto-open-box,trabalho-de-redes-open-box,Click,false,false,false,0,false,false,false,false +Senzuwow/GryllsGlow,Senzuwow,Lua,false,false,false,0,false,false,false,false +cbray/autoMEGA,cbray,C++,true,false,false,2,true,false,true,false +ScarletMcLearn/Java-Simple-Hotel-Management,ScarletMcLearn,Java,false,false,false,0,false,false,false,false +kkarissj/jetpack-kotlin-sample,kkarissj,Kotlin,false,false,false,0,false,false,false,false +yakopov/nhshackday-text-tracker,yakopov,Kotlin,false,false,false,0,false,false,false,false +Zamion101/ZamiAPI,Zamion101,Java,false,false,true,0,false,false,false,false +tsaiDavid/virtual-dom-hash,tsaiDavid,TypeScript,false,false,false,0,false,false,false,false +tanukitalks/tanukitalks.gitlab.io,tanukitalks,CSS,true,false,false,2,false,true,true,false +sovardkcompany/sovahostcontainer-fronend,sovardkcompany,,false,false,false,0,false,false,false,false +osgames/openrpgmaker,osgames,C++,false,false,false,0,false,false,false,false +SpaceTimi/timi_shared_server,SpaceTimi,PHP,false,false,false,0,false,false,false,false +SpaceTimi/bonda_server,SpaceTimi,PHP,false,false,false,0,false,false,false,false +colonista/guia-administradores-sistemas,colonista,,false,false,false,0,false,false,false,false +florian0/dump-file-reader,florian0,C++,false,false,false,0,false,false,false,false +2DU/openNAMU,2DU,,false,false,false,0,false,false,false,false +shikhir-arora/karma-simple,shikhir-arora,JavaScript,false,false,false,0,false,false,false,false +GieselaDev/Giesela,GieselaDev,Python,false,false,false,0,false,false,false,false +ksupro1/krawlerManga,ksupro1,Java,false,false,false,0,false,false,false,false +pwgd/platform-coop-governance,pwgd,,false,false,false,0,false,false,false,false +ARHEIO/screenshot-comparer,ARHEIO,JavaScript,false,false,false,0,false,false,false,false +OpenNuvoton/NuMicro-M0-Family/NUC121BSP,OpenNuvoton,C,false,false,false,0,false,false,false,false +aloisiobilck/descomplicando-k8s-a3,aloisiobilck,,false,false,false,0,false,false,false,false +meishijiemeimei/electron-toolkit,meishijiemeimei,Vue,false,false,false,0,false,false,false,false +meishijiemeimei/Sentinel,meishijiemeimei,ActionScript,false,false,false,0,false,false,false,false +JinHengyu/electron,JinHengyu,C++,false,false,false,0,false,false,false,false +robot-head/ytv-toolbox,robot-head,TypeScript,false,false,false,0,false,false,false,false +rioadvancement/openio-sdk-rust,rioadvancement,Rust,false,false,false,0,false,false,false,false +volviq/cmake-testing,volviq,C++,true,false,false,1,true,false,false,false +camshift/camurl,camshift,C#,false,false,false,0,false,false,false,false +energinet/eds/ckanext-eds,energinet,CSS,false,false,false,0,false,false,false,false +shubhamagarwal3010/LetThingsSpeak,shubhamagarwal3010,Java,true,false,false,1,true,false,false,false +energinet/eds/eds-ckan,energinet,Python,false,false,false,0,false,false,false,false +osgames/dungeoncrawl,osgames,C++,false,false,false,0,false,false,false,false +JasMich.de/testapp,JasMich.de,PHP,false,false,false,0,false,false,false,false +ivladdalvi/goss-stig,ivladdalvi,,false,false,false,0,false,false,false,false +tezos/opam-repository,tezos,Shell,true,false,false,1,true,false,false,false +fredericnoel/SFMureaux1,fredericnoel,PHP,false,false,false,0,false,false,false,false +Eusebeia/document,Eusebeia,Python,false,false,false,0,false,false,false,false +AndyF_UKHO/python-unit-testing-01,AndyF_UKHO,Python,false,false,false,0,false,false,false,false +kostistsaprailis/usda-food-database-importer,kostistsaprailis,PLpgSQL,false,false,false,0,false,false,false,false +mt1022/RDAN,mt1022,,false,false,false,0,false,false,false,false +rnickson/wykop-v2-js,rnickson,TypeScript,true,false,false,1,false,true,false,false +theswiftdev/playgrounds,theswiftdev,Swift,false,false,false,0,false,false,false,false +alexbel/vim-config,alexbel,Vimscript,false,false,false,0,false,false,false,false +sureshkumar.bv/reportGen,sureshkumar.bv,Go,false,false,false,0,false,false,false,false +WilliamBD/TicTacToeAI,WilliamBD,Java,false,false,false,0,false,false,false,false +DSTAPIS/GemCore,DSTAPIS,Lua,false,false,false,0,false,false,false,false +Overflwn/LuaComputers,Overflwn,C++,false,false,false,0,false,false,false,false +Marcstee/redstee-endpoint,Marcstee,JavaScript,false,false,false,0,false,false,false,false +Humanlights/ChaseDown-SDK,Humanlights,C#,false,false,false,0,false,false,false,false +erickolivares/six-axis,erickolivares,PHP,false,false,false,0,false,false,false,false +christiangroleau/docker-guide,christiangroleau,Python,false,false,false,0,false,false,false,false +bruciemoose/rota-idris,bruciemoose,Idris,false,false,false,0,false,false,false,false +mazoea-team/docker-valgrind,mazoea-team,Shell,false,false,false,0,false,false,false,false +art-solopov/classy_filter,art-solopov,Ruby,false,false,false,0,false,false,false,false +openscribe/openscribe,openscribe,C++,false,false,false,0,false,false,false,false +ouzarf/test,ouzarf,JupyterNotebook,false,false,false,0,false,false,false,false +luckystoned/bennus,luckystoned,CSS,false,false,false,0,false,false,false,false +llhe/mace,llhe,C++,true,false,false,5,true,true,false,false +EdenProject/Engine,EdenProject,QMake,false,false,false,0,false,false,false,false +Polygrammatic/UnityRestApi,Polygrammatic,C#,false,false,false,0,false,false,false,false +llhe/mace-models,llhe,,true,false,false,2,false,false,false,true +1B9R1/formatJSON,1B9R1,JavaScript,false,false,false,0,false,false,false,false +fgallaire/wsgiserver,fgallaire,Python,false,false,false,0,false,false,false,false +StHakurei/Think-In-JAVA,StHakurei,HTML,false,false,false,0,false,false,false,false +tonybian/devops,tonybian,Shell,false,false,false,0,false,false,false,false +GuyInGrey/Andromeda,GuyInGrey,C#,false,false,false,0,false,false,false,false +octanian/imgur-upload-bot,octanian,Python,false,true,false,0,false,false,false,false +DFDS/Autobots/blaster,DFDS,,false,false,false,0,false,false,false,false +1B9R1/colourConsole,1B9R1,JavaScript,false,false,false,0,false,false,false,false +nicolas.poste/message-manager,nicolas.poste,Java,true,false,true,3,true,true,true,false +nicolas.poste/process-manager,nicolas.poste,Java,true,false,true,3,true,true,true,false +webpunks-wordpress/hello-webchuck,webpunks-wordpress,PHP,false,false,false,0,false,false,false,false +osgames/phaosrpg,osgames,PHP,false,false,false,0,false,false,false,false +wunderlins/protohand,wunderlins,C,false,false,false,0,false,false,false,false +riovir/vue-basics-workshop,riovir,JavaScript,false,false,false,0,false,false,false,false +Ev3ryDay1sL3gDay/gnowdb,Ev3ryDay1sL3gDay,Clojure,false,false,false,0,false,false,false,false +hvdvlies/epub,hvdvlies,Objective-C,false,false,false,0,false,false,false,false +Ev3ryDay1sL3gDay/Need_For_Shit,Ev3ryDay1sL3gDay,Python,false,false,false,0,false,false,false,false +redmic-project/gis/geoserver,redmic-project,Shell,true,false,false,1,false,true,false,false +camshift/RTSPbrute,camshift,Python,false,true,false,0,false,false,false,false +sj1k/impd,sj1k,Python,true,true,false,2,false,true,true,false +nikoladze/ahoi,nikoladze,Python,false,false,false,0,false,false,false,false +koen028/synology-download-station-center,koen028,JavaScript,false,false,false,0,false,false,false,false +anilkumarsoma/esptool,anilkumarsoma,Python,false,false,false,0,false,false,false,false +n0r1sk/injector,n0r1sk,Go,false,false,false,0,false,false,false,false +osgames/aatraders,osgames,PHP,false,false,false,0,false,false,false,false +vurpo/matrix-dialogflow,vurpo,Python,false,true,false,0,false,false,false,false +mpharoah/code-review-manager-windows,mpharoah,C#,false,false,false,0,false,false,false,false +SeniorJuniorAdmin/AdminNotes,SeniorJuniorAdmin,C++,false,false,false,0,false,false,false,false +mjos/sha3-avr,mjos,Assembly,false,false,false,0,false,false,false,false +glenveegee/PDBeCIF,glenveegee,Python,true,true,false,3,false,true,false,false +volpe262/dbot,volpe262,Python,false,false,false,0,false,false,false,false +keyage/SPZNovel,keyage,C#,false,false,false,0,false,false,false,false +mausy5043/uss_cygnus,mausy5043,Shell,true,false,false,2,false,true,false,false +jroitgrund/discogs-clone,jroitgrund,TypeScript,false,false,false,0,false,false,false,false +digitalbias/my_nerves_gadget,digitalbias,JavaScript,false,false,false,0,false,false,false,false +Arnaudv6/lizzy,Arnaudv6,Python,false,false,false,0,false,false,false,false +Kysio/JavaQuarium,Kysio,Java,false,false,false,0,false,false,false,false +vinodh-thimmisetty/spring-boot-websocket,vinodh-thimmisetty,Java,false,false,true,0,false,false,false,false +vuorre/bayesplan,vuorre,TeX,false,false,false,0,false,false,false,false +jeremiecook/snips-skill-mpc,jeremiecook,Python,false,true,false,0,false,false,false,false +Timur.Bahadir/CppColors,Timur.Bahadir,C++,false,false,false,0,false,false,false,false +psposito/otrhcal,psposito,Perl,false,false,false,0,false,false,false,false +dark0dave/NBclassifier,dark0dave,Scala,true,false,false,1,true,false,false,false +dark0dave/reversible-human-readable-id,dark0dave,JavaScript,true,false,false,1,false,true,false,false +dark0dave/rss_feed,dark0dave,,true,false,false,1,false,true,false,false +nuke-group/preferencesManager,nuke-group,Python,true,false,false,1,false,true,false,false +sehraf/pyshare,sehraf,Python,false,false,false,0,false,false,false,false +Tango-DNNbench/Tango,Tango-DNNbench,Objective-C,false,false,false,0,false,false,false,false +biomassives-deployment-management-toolkit/hemingway2,biomassives-deployment-management-toolkit,HTML,false,false,false,0,false,false,false,false +PoroCYon/vondehi,PoroCYon,Assembly,false,false,false,0,false,false,false,false +jul2040/TuxMod,jul2040,Java,false,false,false,0,false,false,false,false +usebosespeakers/Name.com,usebosespeakers,JavaScript,false,false,false,0,false,false,false,false +qrlk/githelper.lua,qrlk,Lua,false,false,false,0,false,false,false,false +StempunkDev/Steampunk_Game,StempunkDev,,false,false,false,0,false,false,false,false +osgames/crimson,osgames,C++,false,false,false,0,false,false,false,false +Yagiza/QmlInterface,Yagiza,QML,false,false,false,0,false,false,false,false +Yagiza/QmlModelTest,Yagiza,C++,false,false,false,0,false,false,false,false +osgames/xarchon,osgames,C,false,false,false,0,false,false,false,false +jdb-walter/rs-pbrt-test-scenes,jdb-walter,Makefile,false,false,false,0,false,false,false,false +EmreSoner/tetris,EmreSoner,Python,false,false,false,0,false,false,false,false +synchronicity-iot/synchronicity-data-models-old,synchronicity-iot,Python,false,false,false,0,false,false,false,false +poinck/lampe,poinck,Vala,false,false,false,0,false,false,false,false +poinck/ocelot,poinck,C,false,false,false,0,false,false,false,false +pilhuhn/jfs2018,pilhuhn,Java,false,false,true,0,false,false,false,false +yusufaisal/HalalLocal,yusufaisal,JavaScript,false,false,false,0,false,false,false,false +uxm/smart-framework,uxm,PHP,false,false,false,0,false,false,false,false +uxm/smart-framework-modules,uxm,JavaScript,false,false,false,0,false,false,false,false +nathamanath/kafka_docker_image,nathamanath,Shell,false,false,false,0,false,false,false,false +nathamanath/zookeeper_docker_image,nathamanath,Makefile,false,false,false,0,false,false,false,false +griest/generator-griest,griest,JavaScript,true,false,false,2,true,false,true,false +goto-ru/ds/distributed-music-storage,goto-ru,Haskell,false,false,false,0,false,false,false,false +antoine-amara/mongodb-playground-upload,antoine-amara,Shell,false,false,false,0,false,false,false,false +kubic-ci/ci3,kubic-ci,Python,true,false,false,1,false,true,false,false +Arrygon/SparkFun_BME280_Arduino_Library,Arrygon,C++,false,false,false,0,false,false,false,false +bbiczo/aimartcpconfig,bbiczo,,false,false,false,0,false,false,false,false +gtahackers/gtasa-sandbox,gtahackers,C++,false,false,false,0,false,false,false,false +fhightower/html-to-json,fhightower,HTML,true,false,false,1,false,true,false,false +mas.abbe/AwiLelang,mas.abbe,CSS,false,false,false,0,false,false,false,false +renerocksai/sublimeless_zk,renerocksai,Python,false,false,false,0,false,false,false,false +NearNihil/MugiBot,NearNihil,Python,false,true,false,0,false,false,false,false +microbolts/chrome-extension,microbolts,JavaScript,false,false,false,0,false,false,false,false +luckeyproductions/heXon,luckeyproductions,C++,false,false,false,0,false,false,false,false +stangomes/MoviesAndroidArchitecture,stangomes,Java,false,false,false,0,false,false,false,false +RobinHoodPT/PortfolioProjects,RobinHoodPT,Java,false,false,false,0,false,false,false,false +Alirezababaei/speaker.Arduino,Alirezababaei,C,false,false,false,0,false,false,false,false +coisa/gitlab-ci-sandbox,coisa,Shell,true,false,false,8,true,true,true,false +nsk99/renovare,nsk99,PHP,false,false,false,0,false,false,false,false +yunity/ukuvota,yunity,F#,true,false,false,5,true,true,false,true +HLT0/tiny-shell,HLT0,C,false,false,false,0,false,false,false,false +inp/DnDiscord,inp,Python,false,true,false,0,false,false,false,false +simonknapen/LLP_workshop_LBNL,simonknapen,C++,false,false,false,0,false,false,false,false +anthonyalexander/ProyectoActualizadoSQLITE,anthonyalexander,Java,false,false,false,0,false,false,false,false +CaptainGector/lisp_zork-like,CaptainGector,CommonLisp,false,false,false,0,false,false,false,false +KennethZheng/PythonAlphaTrader,KennethZheng,Python,false,false,false,0,false,false,false,false +hamed.masafi/QML-Samples,hamed.masafi,C++,false,false,false,0,false,false,false,false +microbolts/lib,microbolts,JavaScript,false,false,false,0,false,false,false,false +PowerOlive/shadowsocks-go,PowerOlive,Go,false,false,false,0,false,false,false,false +PowerOlive/shadowsocks-windows,PowerOlive,C#,false,false,false,0,false,false,false,false +PowerOlive/shadowsocks-qt5,PowerOlive,C++,false,false,false,0,false,false,false,false +revas-io/revas.app-blog,revas-io,,false,false,false,0,false,false,false,false +temps9/lecjoa,temps9,Java,false,false,false,0,false,false,false,false +postmarketOS/gps-nokia-n900,postmarketOS,C,false,false,false,0,false,false,false,false +microbolts/netflix,microbolts,JavaScript,false,false,false,0,false,false,false,false +jdesodt/easy-log-watcher,jdesodt,JavaScript,true,false,false,2,true,true,false,false +microbolts/engine,microbolts,JavaScript,false,false,false,0,false,false,false,false +tuanbinh_tran/creative,tuanbinh_tran,HTML,false,false,false,0,false,false,false,false +iicolsandersii/DriverDownload,iicolsandersii,PowerShell,false,false,false,0,false,false,false,false +AtteLynx/bt-desktop,AtteLynx,JavaScript,true,false,false,3,true,false,false,false +john-nanney/iptabs_ruby,john-nanney,Ruby,false,false,false,0,false,false,false,false +john-nanney/pushd.vim,john-nanney,Vimscript,false,false,false,0,false,false,false,false +john-nanney/multiserver,john-nanney,C,false,false,false,0,false,false,false,false +sonecudo/CDC,sonecudo,C,false,false,false,0,false,false,false,false +RolandDeschain19/Bacon2D,RolandDeschain19,C++,false,false,false,0,false,false,false,false +RolandDeschain19/qml-box2d,RolandDeschain19,C++,false,false,false,0,false,false,false,false +braindemons/aurelia-template,braindemons,JavaScript,false,false,false,0,false,false,false,false +devluke/swerve,devluke,Kotlin,false,false,false,0,false,false,false,false +amosmoses/psypg,amosmoses,Python,false,false,false,0,false,false,false,false +theumod/umod-pages,theumod,HTML,false,false,false,0,false,false,false,false +concordgroup/ConcordServer,concordgroup,,false,false,false,0,false,false,false,false +natanaeljr/esp32-MPU-driver,natanaeljr,C++,false,false,false,0,false,false,false,false +diegosparente/my-nvim-config,diegosparente,Vimscript,false,false,false,0,false,false,false,false +f3n/vorstand/organisation,f3n,,false,false,false,0,false,false,false,false +keithwberry/worldtime-crystal,keithwberry,Makefile,true,false,false,2,true,false,false,true +bonnee/fancontrol,bonnee,C++,false,false,false,0,false,false,false,false +Sold/SGCP,Sold,Lua,false,false,false,0,false,false,false,false +nicholastay/nyadesu,nicholastay,JavaScript,false,false,false,0,false,false,false,false +gloomy-ghost/politiscales-zh_CN,gloomy-ghost,HTML,false,false,false,0,false,false,false,false +guzart/sirkit,guzart,Vue,true,false,false,1,false,false,true,false +krzysztofwojnar/Od_zera_do_zuomiarza_groszowek,krzysztofwojnar,TypeScript,false,false,false,0,false,false,false,false +ziliangpeng/naoshima,ziliangpeng,Python,false,false,false,0,false,false,false,false +liamdawson/provision-linux-machine,liamdawson,Python,false,false,false,0,false,false,false,false +chicken231/eat-a-py,chicken231,Python,false,true,false,0,false,false,false,false +turion/enigmanix,turion,Nix,false,false,false,0,false,false,false,false +Mysi/cardgame,Mysi,Python,false,false,false,0,false,false,false,false +manalejandro/tplink-bulb-web,manalejandro,JavaScript,false,false,false,0,false,false,false,false +HoraApps/Liz,HoraApps,Java,false,false,false,0,false,false,false,false +TriSuliPras/e-learning-elementary-school,TriSuliPras,HTML,false,false,false,0,false,false,false,false +alosarjos/steam-provider,alosarjos,TypeScript,true,false,false,2,false,true,true,false +b0/megolm,b0,Go,false,false,false,0,false,false,false,false +miznokruge/workshop-cake-1,miznokruge,PHP,false,false,false,0,false,false,false,false +kesslerdev/kore-platform,kesslerdev,JavaScript,false,false,false,0,false,false,false,false +emacsomancer/emacs-history,emacsomancer,EmacsLisp,false,false,false,0,false,false,false,false +michelle.lunoza118/Saccharine-RubyProject,michelle.lunoza118,Ruby,false,false,false,0,false,false,false,false +michelle.lunoza118/Simple-WebDesign,michelle.lunoza118,Ruby,false,false,false,0,false,false,false,false +dimkard/torch,dimkard,QML,false,false,false,0,false,false,false,false +interscity/cep-handler/cep-cataloger,interscity,Ruby,true,false,true,1,true,false,false,false +DavidKubik/Photovoltaic_Module_Optimizer,DavidKubik,Python,false,false,false,0,false,false,false,false +sywesk/spotify-cmd,sywesk,Go,false,false,false,0,false,false,false,false +juan.rodriguez/SalesforceConnect,juan.rodriguez,JavaScript,false,false,false,0,false,false,false,false +m3ch_mania/ebjhooker,m3ch_mania,JavaScript,false,false,false,0,false,false,false,false +powerutil/powerutil,powerutil,Assembly,false,false,false,0,false,false,false,false +trackmastersteve/alienfx,trackmastersteve,Python,false,true,false,0,false,false,false,false +trackmastersteve/scripts,trackmastersteve,Shell,false,false,false,0,false,false,false,false +stobbsm/update-qownnotes-flatpak,stobbsm,Go,false,false,false,0,false,false,false,false +tdhcuong/data_science_with_python_course1,tdhcuong,JupyterNotebook,false,false,false,0,false,false,false,false +kulukami/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials,kulukami,Python,false,false,false,0,false,false,false,false +maxencecolmant/E-commerce-website,maxencecolmant,CSS,false,false,false,0,false,false,false,false +joielechong/Go-Playground,joielechong,Go,false,false,false,0,false,false,false,false +powerutil/powerunit,powerutil,Assembly,false,false,false,0,false,false,false,false +dilawar/Resonance2018,dilawar,TeX,true,false,false,1,false,true,false,false +prashere/git-parser,prashere,Python,false,false,false,0,false,false,false,false +mjbaig/flappy-neebu,mjbaig,Kotlin,false,false,false,0,false,false,false,false +IceHe/applescript,IceHe,AppleScript,false,false,false,0,false,false,false,false +IceHe/blog,IceHe,HTML,false,false,false,0,false,false,false,false +IceHe/mac-conf,IceHe,Shell,false,false,false,0,false,false,false,false +oaivyftu/minicms,oaivyftu,Vue,false,false,false,0,false,false,false,false +custom_components/untapped,custom_components,Python,true,false,false,1,true,false,false,false +SavenkovIgor/TermGraph,SavenkovIgor,C++,false,false,false,0,false,false,false,false +frozenfoxx/docker-desktop,frozenfoxx,,false,false,false,0,false,false,false,false +KSHRD-BLOCKCHAIN/KSHRD-BLOCKCHAIN-NETWORK,KSHRD-BLOCKCHAIN,Go,false,false,false,0,false,false,false,false +olanguage/olang,olanguage,Go,true,false,false,1,true,false,false,false +trustable/distros/overview,trustable,,true,false,false,2,false,false,false,false +maverick-magang/nls-forum,maverick-magang,CSS,false,false,false,0,false,false,false,false +TrebleSketch/AIE-GameProduction,TrebleSketch,C#,false,false,false,0,false,false,false,false +Hertux/Trabajo-Final,Hertux,,false,false,false,0,false,false,false,false +vladimir18/find-the-pair,vladimir18,JavaScript,true,false,false,4,true,true,true,true +cwanylisek/turysta,cwanylisek,HTML,false,false,false,0,false,false,false,false +razonyang/yii2-log,razonyang,PHP,false,false,false,0,false,false,false,false +PresentationsTechniques/Impression3D,PresentationsTechniques,Ruby,true,false,false,1,false,false,true,false +codefx/CodeFxBookStore,codefx,C#,false,false,false,0,false,false,false,false +wiktorek140/twittnuker,wiktorek140,Kotlin,false,false,false,0,false,false,false,false +doddzycodes/DCEngine,doddzycodes,C++,false,false,false,0,false,false,false,false +custom_components/rpi_power,custom_components,Python,false,false,false,0,false,false,false,false +rgcalsaverini/iff-iat,rgcalsaverini,JavaScript,true,false,false,2,true,true,false,false +abbaszadeh/_uploadResume,abbaszadeh,Java,false,false,true,0,false,false,false,false +openmicroscopy/incubator/docker-dev-compose,openmicroscopy,Python,false,false,false,0,false,false,false,false +SalemBongo/math,SalemBongo,Python,false,false,false,0,false,false,false,false +raja.haingo/simplon_haingo,raja.haingo,,false,false,false,0,false,false,false,false +MakerTim/voidblock-modded,MakerTim,Java,false,false,false,0,false,false,false,false +milan44/statistics,milan44,JavaScript,true,false,false,1,false,true,false,false +QuasarApp/QtDeployer,QuasarApp,C++,false,false,false,0,false,false,false,false +NebulousLabs/writeaheadlog,NebulousLabs,Go,true,false,false,2,false,true,false,false +QuasarApp/Hanoi-Towers,QuasarApp,QML,false,false,false,0,false,false,false,false +ibnuda/real-world-conduit,ibnuda,Haskell,false,false,false,0,false,false,false,false +TASVideos/BizHawk,TASVideos,C++,false,false,false,0,false,false,false,false +Paccos/mensa-thumb-bot,Paccos,Python,true,true,false,3,false,true,true,false +Rayman2TAS/JustAWiki,Rayman2TAS,,false,false,false,0,false,false,false,false +cr3ux53c/acmicpc,cr3ux53c,C++,false,false,false,0,false,false,false,false +tdkiran/uiprototype,tdkiran,TypeScript,false,false,false,0,false,false,false,false +mkobar/VideoCMS,mkobar,PHP,false,false,false,0,false,false,false,false +mkobar/VirtuallyAGenome,mkobar,C++,false,false,false,0,false,false,false,false +mkobar/vr-hackathon-MIT,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/VRMemoryPalace,mkobar,C#,false,false,false,0,false,false,false,false +mkobar/simpleAR2,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/ng-crud-app2,mkobar,HTML,false,false,false,0,false,false,false,false +mkobar/ionic2-presents,mkobar,,false,false,false,0,false,false,false,false +mkobar/ionic-presents,mkobar,JavaScript,false,false,false,0,false,false,false,false +FascinatedBox/lily-docs,FascinatedBox,JavaScript,true,false,false,1,false,false,true,false +dgolembiewski/simple-java-maven-app,dgolembiewski,Java,false,false,true,0,false,false,false,false +elioangels/sinsay,elioangels,JavaScript,false,false,false,0,false,false,false,false +gonder2/Windows,gonder2,C#,false,false,false,0,false,false,false,false +kivlor/awesome-electronics,kivlor,,false,false,false,0,false,false,false,false +gutoglup/CarFlow,gutoglup,Swift,true,false,false,1,true,false,false,false +igorkafka/SGO,igorkafka,TypeScript,false,false,false,0,false,false,false,false +slitheen/slitheen-client,slitheen,C,false,false,false,0,false,false,false,false +slitheen/slifox,slitheen,,false,false,false,0,false,false,false,false +dnl76935/GoT_Word2Vec_Model,dnl76935,Python,false,false,false,0,false,false,false,false +cschram/drawgaiden,cschram,TypeScript,false,false,false,0,false,false,false,false +Ethik69/UbuntuCleaner,Ethik69,Shell,false,false,false,0,false,false,false,false +sgimeno/faceless,sgimeno,JavaScript,false,false,false,0,false,false,false,false +Stream.Wang/XHWNMP,Stream.Wang,,false,false,false,0,false,false,false,false +gjedeer/tuntox,gjedeer,C,false,false,false,0,false,false,false,false +cryptsetup/LUKS2-docs,cryptsetup,TeX,false,false,false,0,false,false,false,false +PhilipTung/fsfs-zh,PhilipTung,TeX,false,false,false,0,false,false,false,false +PhilipTung/hosts,PhilipTung,Shell,false,false,false,0,false,false,false,false +ce1011/ict-mc-ans,ce1011,JavaScript,true,false,false,1,false,false,true,false +nmanhha47/Hawee-Thao,nmanhha47,PHP,false,false,false,0,false,false,false,false +Metivier/imie-sowesign,Metivier,PHP,false,false,false,0,false,false,false,false +slitheen/slitheen-relay,slitheen,C,false,false,false,0,false,false,false,false +alex.rohleder/a2,alex.rohleder,Vue,false,false,false,0,false,false,false,false +AndLydakis/imu_link,AndLydakis,Python,false,false,false,0,false,false,false,false +NetaLabTek/Arduimesp,NetaLabTek,Makefile,false,false,false,0,false,false,false,false +osgames/sharpkonquest,osgames,C#,false,false,false,0,false,false,false,false +absassi/asap_app_console,absassi,CMake,true,false,false,1,true,false,false,false +mkobar/Aro,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/CrowdtiltOpen,mkobar,Ruby,false,false,false,0,false,false,false,false +mkobar/DappMetrics,mkobar,,false,false,false,0,false,false,false,false +mkobar/Embiggen,mkobar,C#,false,false,false,0,false,false,false,false +mkobar/Firepoker,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/Hackatown,mkobar,Java,false,false,false,0,false,false,false,false +mkobar/hackIllinois,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/Hike,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/hotspot,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/InstaOke,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/ionic-demo-resort-app,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/ionic2-go,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/magicStudio,mkobar,,false,false,false,0,false,false,false,false +mkobar/MIT-AV-VR-Hackathon-2016,mkobar,Apex,false,false,false,0,false,false,false,false +mkobar/PhonePay,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/public-images,mkobar,,false,false,false,0,false,false,false,false +mkobar/reinvent2013-js-blog-demo,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/sofitn,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/v2,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/vdhApp,mkobar,JavaScript,false,false,false,0,false,false,false,false +mkobar/so.cial.ninja,mkobar,JavaScript,false,false,false,0,false,false,false,false +bilalbox/panos_tester,bilalbox,Python,true,true,false,1,true,false,false,false +openpowerlifting/img2csv,openpowerlifting,Rust,false,false,false,0,false,false,false,false +mattwr18/countries-tor-activities,mattwr18,HTML,false,false,false,0,false,false,false,false +jaredfholgate/DropBoxFileSorter.Go,jaredfholgate,Go,true,false,false,1,false,false,false,false +koyagami/tokencop,koyagami,Python,false,false,false,0,false,false,false,false +alexbuzzbee/strings-good,alexbuzzbee,C,false,false,false,0,false,false,false,false +netify.ai/public/netify-agent,netify.ai,C++,false,false,false,0,false,false,false,false +krichter/qt,krichter,,false,false,false,0,false,false,false,false +lunamalis/servers/aetersum,lunamalis,JavaScript,false,false,false,0,false,false,false,false +jeanmorais/sonar-maven-ci-example,jeanmorais,Java,true,false,true,2,true,false,false,false +faelwar/faelwar.github.io,faelwar,CSS,false,false,false,0,false,false,false,false +christopherm99/piThermostatServer,christopherm99,Go,false,false,false,0,false,false,false,false +ponpon/_git-flow-test,ponpon,,false,false,false,0,false,false,false,false +dougbeney/Clarifier,dougbeney,Python,false,false,false,0,false,false,false,false +altispeed/osticket-telegram-bot,altispeed,Python,false,false,false,0,false,false,false,false +tony2037/Zos,tony2037,C++,false,false,false,0,false,false,false,false +bbtai/microservice,bbtai,Java,false,false,false,0,false,false,false,false +PhamTruong/app_demo_android,PhamTruong,Java,false,false,false,0,false,false,false,false +SovietVallhund/MinimalistHUD,SovietVallhund,Lua,false,false,false,0,false,false,false,false +havoc/hottop,havoc,Go,false,false,false,0,false,false,false,false +singtel_shijian/digital-java-code-assignment-v1,singtel_shijian,,false,false,false,0,false,false,false,false +eliseo_martinez93/AniAppUNOFFICIAL,eliseo_martinez93,Swift,false,false,false,0,false,false,false,false +rustom04/PDF-LGU,rustom04,JavaScript,false,false,false,0,false,false,false,false +daktak/pebble_uqm_watchface,daktak,C,true,false,false,1,true,false,false,false +TomasHubelbauer/bloggo-slack,TomasHubelbauer,,false,false,false,0,false,false,false,false +TheNonexistent/influx,TheNonexistent,Python,false,false,false,0,false,false,false,false +ajason41/joyride,ajason41,JavaScript,true,false,false,1,false,false,true,false +gserv.me/salt,gserv.me,SaltStack,false,false,false,0,false,false,false,false +gserv.me/compose,gserv.me,,false,false,false,0,false,false,false,false +Metal65/bash_DB,Metal65,Shell,false,false,false,0,false,false,false,false +Ethik69/BashDB,Ethik69,Shell,false,false,false,0,false,false,false,false +webmaicon/sorterica,webmaicon,PHP,true,false,false,2,false,false,false,false +elioangels/sassy-fibonacciness,elioangels,CSS,false,false,false,0,false,false,false,false +mdspersian/testproject,mdspersian,PHP,false,false,false,0,false,false,false,false +shudonghao/matplotlib2tikz,shudonghao,Python,false,false,false,0,false,false,false,false +scottchayaa/scottchayaa.gitlab.io,scottchayaa,CSS,true,false,false,1,false,true,false,false +pa1007/Compta_Help,pa1007,Java,false,false,false,0,false,false,false,false +fflow/flexflow,fflow,Cuda,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-grafana-json-datasource,openmicroscopy,Python,true,true,false,2,false,true,false,false +alaah/dead-cells-corrupted-mode,alaah,Haxe,false,false,false,0,false,false,false,false +IT-Playground/DockerTemplates,IT-Playground,,false,false,false,0,false,false,false,false +SynorisTech/shippingapi,SynorisTech,JavaScript,false,false,false,0,false,false,false,false +lucidlylogicole/slate,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false +Matrixcoffee/matrixcoffee.gitlab.io,Matrixcoffee,Python,true,false,false,1,false,false,true,false +hack-init/meet-synker,hack-init,Go,false,false,false,0,false,false,false,false +fbn/_dotfiles,fbn,CSS,false,false,false,0,false,false,false,false +merlodicus/jenkins-docker,merlodicus,Groovy,true,false,false,2,true,false,false,false +permana.sidiq/simple-android-architecture,permana.sidiq,Java,false,false,false,0,false,false,false,false +256/Underbot,256,Go,false,false,false,0,false,false,false,false +remram44/dockerimage,remram44,Python,true,false,false,1,false,true,false,false +spmoreno/awesome,spmoreno,,false,false,false,0,false,false,false,false +IkwhanChang/jquery.qrctl,IkwhanChang,HTML,false,false,false,0,false,false,false,false +IkwhanChang/twitter-trend-analyzer,IkwhanChang,JavaScript,false,false,false,0,false,false,false,false +jgkamat/flourgrinder,jgkamat,CommonLisp,false,false,false,0,false,false,false,false +Sacules/fancy-dwm,Sacules,C,false,false,false,0,false,false,false,false +lishiyu/maps,lishiyu,HTML,false,false,false,0,false,false,false,false +lishiyu/Notepad,lishiyu,C++,false,false,false,0,false,false,false,false +raksodiano/Emacs,raksodiano,EmacsLisp,false,false,false,0,false,false,false,false +GloriousEggroll/leagueoflegends-linux,GloriousEggroll,Shell,false,false,false,0,false,false,false,false +intr0/A-New-Declaration-of-Independence,intr0,HTML,true,false,false,1,false,false,true,false +borlum/le-tour-optimizer,borlum,Python,false,false,false,0,false,false,false,false +songlang1994/react-native-demo,songlang1994,JavaScript,false,false,false,0,false,false,false,false +mlfcobo/hackathon,mlfcobo,Python,false,false,false,0,false,false,false,false +LoganBarnes/tom-the-tool,LoganBarnes,TypeScript,true,false,false,2,false,true,true,false +EthicHub/zeppelin-solidity,EthicHub,JavaScript,false,false,false,0,false,false,false,false +thekitchenagency/swiss-post-labels,thekitchenagency,PHP,true,false,false,1,false,true,false,false +neatori18/ShinobiDocker,neatori18,Shell,false,false,false,0,false,false,false,false +Aragami1408/drgnzsearch,Aragami1408,CSS,true,false,false,9,true,true,false,true +mohamed.hashem/Competitive-Programming,mohamed.hashem,C++,false,false,false,0,false,false,false,false +moodlenet/clients/contacts-import,moodlenet,JavaScript,true,false,false,1,false,false,true,false +gserv.me/InfoBot,gserv.me,Python,true,true,false,2,true,true,false,false +gserv.me/Smithy,gserv.me,Python,false,true,false,0,false,false,false,false +Respuit/LinuxGobernorScript,Respuit,Shell,false,false,false,0,false,false,false,false +mohamed.hashem/UVa-Solutions,mohamed.hashem,C++,false,false,false,0,false,false,false,false +olaris/olaris-react,olaris,JavaScript,true,false,false,1,true,false,false,false +finite-loop/flutils,finite-loop,Python,true,false,false,1,false,true,false,false +widgetic/widget-design-system,widgetic,,false,false,false,0,false,false,false,false +trobador/vim,trobador,Vimscript,false,false,false,0,false,false,false,false +crosstool-ng/crosstool-ng,crosstool-ng,Shell,false,false,false,0,false,false,false,false +Tuuux/galaxie-little-alice,Tuuux,Python,false,true,false,0,false,false,false,false +ChrisVega/Geiger-Boy-v2,ChrisVega,C++,false,false,false,0,false,false,false,false +spring_framework/spring-mvc-example-1,spring_framework,Java,false,false,true,0,false,false,false,false +redxaxder/runed,redxaxder,PureScript,false,false,false,0,false,false,false,false +Andr_Rot/auth-serv-1,Andr_Rot,Java,false,false,true,0,false,false,false,false +uiuc-cs-ksp/GMAT,uiuc-cs-ksp,C++,false,false,false,0,false,false,false,false +link0ff/emacs-init,link0ff,EmacsLisp,false,false,false,0,false,false,false,false +SisenseJS/angular6-sample,SisenseJS,TypeScript,false,false,false,0,false,false,false,false +costrouc/knoxpy-fizzbuzz-complete,costrouc,Python,true,false,false,3,false,true,true,false +RonanHenry/HelloWord,RonanHenry,C#,false,false,false,0,false,false,false,false +bluetechgirl/raspi-watch,bluetechgirl,Python,false,false,false,0,false,false,false,false +MasterOfTheTiger/openbibles,MasterOfTheTiger,JavaScript,false,false,false,0,false,false,false,false +schultzca/awesome-torch,schultzca,,false,false,false,0,false,false,false,false +schultzca/awesome-computer-vision,schultzca,,false,false,false,0,false,false,false,false +yanghj0033/A,yanghj0033,Objective-C,false,false,false,0,false,false,false,false +perceval62/CStrCipher,perceval62,C,false,false,false,0,false,false,false,false +chee-fanclub/kralfred,chee-fanclub,JavaScript,false,false,false,0,false,false,false,false +fengshaun/redcarpet,fengshaun,JavaScript,false,false,false,0,false,false,false,false +mikeyjkmo/nameko-payee-notifier,mikeyjkmo,Python,true,false,false,1,false,true,false,false +skylineone044/drnim-cli,skylineone044,Python,false,false,false,0,false,false,false,false +kkalass/awesome-machine-learning,kkalass,Python,false,false,false,0,false,false,false,false +zola.zeng/File,zola.zeng,,false,false,false,0,false,false,false,false +RSAGEN/rsagen,RSAGEN,C++,false,false,false,0,false,false,false,false +kRITZCREEK/gol-rs,kRITZCREEK,Rust,false,false,false,0,false,false,false,false +jznf/pydata-berlin-2018,jznf,,false,false,false,0,false,false,false,false +shekeru/high-throughput-relay,shekeru,Elixir,false,false,false,0,false,false,false,false +neatori18/ShinobiHelm,neatori18,Smarty,false,false,false,0,false,false,false,false +vexera/documentation,vexera,,false,false,false,0,false,false,false,false +AndroG0d/fp-toolbox,AndroG0d,CSS,false,false,false,0,false,false,false,false +dmpop/natsukashii,dmpop,CSS,false,false,false,0,false,false,false,false +lduros/quartet-ui-plugins-boilerplate,lduros,JavaScript,true,false,false,2,false,true,false,false +kit-ty-kate/ocamldap,kit-ty-kate,OCaml,false,false,false,0,false,false,false,false +tkint/MiniDAO,tkint,Java,true,false,true,3,true,true,true,false +LeMilliard/DecisionTree,LeMilliard,Java,true,false,true,3,true,true,true,false +ankur2106/GALE,ankur2106,CSS,false,false,false,0,false,false,false,false +nicolas.hainaux/cotinga,nicolas.hainaux,Python,false,false,false,0,false,false,false,false +p4block/coreboot-x230,p4block,Shell,false,false,false,0,false,false,false,false +gke-deploy-patterns/pipelines/cli,gke-deploy-patterns,Go,true,false,false,1,false,false,false,true +striker.sh/opentyrian-psvita,striker.sh,C,false,false,false,0,false,false,false,false +jimdigriz/portier-nginx,jimdigriz,Lua,false,false,false,0,false,false,false,false +teozkr/sbt-lockfile,teozkr,Scala,true,false,false,3,true,true,true,false +giovaneroggen/pock,giovaneroggen,Java,false,false,false,0,false,false,false,false +nlabbe/gold,nlabbe,JavaScript,true,false,false,3,true,true,false,true +ldm5180/bitcoin,ldm5180,C++,false,false,false,0,false,false,false,false +fahrenheit/community/jquery-canvas-area-draw,fahrenheit,JavaScript,false,false,false,0,false,false,false,false +The_Blackguarde/youtube_time_waste,The_Blackguarde,Python,false,false,false,0,false,false,false,false +btashton/ultra96-notes,btashton,,false,false,false,0,false,false,false,false +itea-js-adv-07-2018/Lesson_1,itea-js-adv-07-2018,JavaScript,false,false,false,0,false,false,false,false +WantingAI47/eecgToactivcation,WantingAI47,Python,false,false,false,0,false,false,false,false +magnus.odman/audentes,magnus.odman,Python,true,true,false,1,false,false,false,false +freddieptf/manga-scraper,freddieptf,Go,true,false,false,2,true,true,false,false +freddieptf/MyManga,freddieptf,Java,false,false,false,0,false,false,false,false +kloe/hello-world,kloe,Python,false,false,false,0,false,false,false,false +nikoskalai/Password-Master,nikoskalai,Java,false,false,false,0,false,false,false,false +nutzlosimall/pulse,nutzlosimall,HTML,false,false,false,0,false,false,false,false +rbstrachan/awesome-python-duplicate,rbstrachan,Python,false,false,false,0,false,false,false,false +fswb/fswb.gitlab.io,fswb,HTML,true,false,false,1,false,false,true,false +fatec-sl-2018/face,fatec-sl-2018,PHP,false,false,false,0,false,false,false,false +U53R/2048_backend,U53R,Java,false,false,false,0,false,false,false,false +angusmfdotcom/HelloBuild,angusmfdotcom,ShaderLab,true,false,false,1,true,false,false,false +maximelenormand/KML-movie-Python,maximelenormand,Python,false,false,false,0,false,false,false,false +rubiconbot/shardmanager,rubiconbot,,false,false,false,0,false,false,false,false +rubiconbot/Conventions,rubiconbot,,false,false,false,0,false,false,false,false +aligntop/symfony-tick,aligntop,PHP,false,false,false,0,false,false,false,false +jalopezsuarez/LinuxServer,jalopezsuarez,,false,false,false,0,false,false,false,false +YoshiRulz/TRESS,YoshiRulz,Ruby,false,false,false,0,false,false,false,false +sinclair2/easygg,sinclair2,Shell,true,false,false,1,false,true,false,false +sky-kun/marsch-cmd,sky-kun,HTML,true,false,false,1,true,false,false,false +0xdec/base16-rofi,0xdec,HTML,false,false,false,0,false,false,false,false +tim241/doom-launcher,tim241,Shell,false,false,false,0,false,false,false,false +Joshek/discordarc,Joshek,Python,false,false,false,0,false,false,false,false +adamhsparks/setup_macOS_for_R,adamhsparks,,false,false,false,0,false,false,false,false +mrpudn/ds,mrpudn,Ruby,false,false,false,0,false,false,false,false +adamhsparks/GRID,adamhsparks,R,false,false,false,0,false,false,false,false +cosban/vermin,cosban,Go,false,false,false,0,false,false,false,false +edelweiss-linux/backend,edelweiss-linux,Python,true,true,false,4,false,true,true,false +itihas/mn-notes,itihas,HTML,false,false,false,0,false,false,false,false +Irihan/contents,Irihan,HTML,false,false,false,0,false,false,false,false +Alecaddd/nerdcontinuity,Alecaddd,JavaScript,false,false,false,0,false,false,false,false +adamhsparks/AHSparks_CV,adamhsparks,TeX,false,false,false,0,false,false,false,false +adamhsparks/theme.usq,adamhsparks,R,false,false,false,0,false,false,false,false +TaylorPremo/Deluge-Rainmeter-Skin,TaylorPremo,Lua,false,false,false,0,false,false,false,false +TaylorPremo/Discord_Theme,TaylorPremo,CSS,false,false,false,0,false,false,false,false +rvy-2018/ukrainian-exercise-git,rvy-2018,Python,false,false,false,0,false,false,false,false +crunchy234/docker-aws-scripts,crunchy234,Shell,false,false,false,0,false,false,false,false +leejh1987/research_machinlearning,leejh1987,Scilab,false,false,false,0,false,false,false,false +Neziaa/Avalon,Neziaa,Java,false,false,false,0,false,false,false,false +Noukkis/Ditui,Noukkis,JavaScript,false,false,false,0,false,false,false,false +rakenodiax/rust-client,rakenodiax,Rust,true,false,false,1,false,true,false,false +Monsterovich/conky-glow,Monsterovich,Lua,false,false,false,0,false,false,false,false +nscau/nscau,nscau,Go,false,false,false,0,false,false,false,false +novellum/dotfiles,novellum,Lua,false,false,false,0,false,false,false,false +salouri/IBM-Blockchain-Course,salouri,Shell,false,false,false,0,false,false,false,false +pesathem/fun,pesathem,Shell,false,false,false,0,false,false,false,false +simshadows/random-unity-miniprojects,simshadows,C#,false,false,false,0,false,false,false,false +hmahdavi/dogmer,hmahdavi,,false,false,false,0,false,false,false,false +forell/dotfiles,forell,Vimscript,false,false,false,0,false,false,false,false +forell/forell-gtk,forell,CSS,false,false,false,0,false,false,false,false +edelweiss-linux/artwork,edelweiss-linux,,false,false,false,0,false,false,false,false +ngxa/utils,ngxa,TypeScript,true,false,false,6,true,true,true,true +wastl/DockeredWordPress,wastl,,false,false,false,0,false,false,false,false +ShitalSB/Portfolio,ShitalSB,HTML,false,false,false,0,false,false,false,false +ttyelud/dots,ttyelud,CSS,false,false,false,0,false,false,false,false +bit-byte/glitchHome,bit-byte,HTML,true,false,false,2,false,true,true,false +wGalleti/openComodoro,wGalleti,Vue,false,false,false,0,false,false,false,false +twin-opensource/flutter-connect-api-101,twin-opensource,Makefile,false,false,false,0,false,false,false,false +open-sourceress/violet,open-sourceress,Python,false,true,false,0,false,false,false,false +allenagk/GPSTracker,allenagk,Java,false,false,false,0,false,false,false,false +gnaar/gear,gnaar,Python,true,false,false,1,false,true,false,false +hieu.vo/testJavaApp,hieu.vo,Java,true,false,true,3,true,false,true,false +shopcook/ShopCook,shopcook,JavaScript,false,false,false,0,false,false,false,false +TheNonexistent/xiv,TheNonexistent,C++,false,false,false,0,false,false,false,false +Jeanet11/exo_hebergement_service,Jeanet11,,false,false,false,0,false,false,false,false +jahrik/arm-elasticsearch,jahrik,Shell,false,false,false,0,false,false,false,false +dial-once/node-cache-manager-redis,dial-once,JavaScript,false,false,false,0,false,false,false,false +drim-consulting/public/devops/git-flow-ci-cd,drim-consulting,TypeScript,true,false,false,2,true,false,true,false +desmovalvo/semanticMediator-ng,desmovalvo,Python,false,false,false,0,false,false,false,false +sincorchetes/lampy,sincorchetes,Shell,false,false,false,0,false,false,false,false +9h41/fabb,9h41,,false,false,false,0,false,false,false,false +0xBACE/plebianbot,0xBACE,Python,false,false,false,0,false,false,false,false +tranngochanh/fe-09-07-2018,tranngochanh,HTML,false,false,false,0,false,false,false,false +Tinywan/notes,Tinywan,JavaScript,false,false,false,0,false,false,false,false +Tinywan/annie,Tinywan,Go,false,false,false,0,false,false,false,false +iVOID/hosts,iVOID,HTML,true,false,false,1,false,false,true,false +Jmvzla/GolPuntoDventa,Jmvzla,,false,false,false,0,false,false,false,false +JuampaHernandez/Resources,JuampaHernandez,CSS,false,false,false,0,false,false,false,false +frozenfoxx/docker-schemaverse,frozenfoxx,Shell,false,false,false,0,false,false,false,false +anishghimire/new-college-magazine,anishghimire,PHP,false,false,false,0,false,false,false,false +datube/vimrc,datube,Vimscript,false,false,false,0,false,false,false,false +hrbrmstr/dshield,hrbrmstr,R,false,false,false,0,false,false,false,false +TheCarlosCastilla/conwaysgameoflife,TheCarlosCastilla,C#,false,false,false,0,false,false,false,false +TheCarlosCastilla/odin-server,TheCarlosCastilla,Ruby,false,false,false,0,false,false,false,false +maszhin/parse_server_dart,maszhin,Dart,false,false,false,0,false,false,false,false +atomfrede/micronaut-beer,atomfrede,Java,true,false,false,2,true,true,false,false +prosign/server,prosign,Go,true,false,false,2,true,true,false,false +madhead/packt4free,madhead,Kotlin,false,false,false,0,false,false,false,false +rdsintl/gigeex,rdsintl,C,false,false,false,0,false,false,false,false +rahasia/Plugins,rahasia,Java,false,false,false,0,false,false,false,false +ebaneo/Countries-States-Cities-database,ebaneo,,false,false,false,0,false,false,false,false +frozenfoxx/puppet-roles-profiles,frozenfoxx,Puppet,false,false,false,0,false,false,false,false +rahasia/Quests,rahasia,,false,false,false,0,false,false,false,false +frozenfoxx/docker-schemaverse-visualizer,frozenfoxx,PHP,false,false,false,0,false,false,false,false +mattwelke/ml-net-test-junk-food,mattwelke,C#,false,false,false,0,false,false,false,false +nazarmx/odbc-futures,nazarmx,Rust,true,false,false,3,true,true,true,false +GucciPrada/SLAMRecon,GucciPrada,C++,false,false,false,0,false,false,false,false +gitlab-com/marketing/product-marketing,gitlab-com,,false,false,false,0,false,false,false,false +izzur-zuhri/alberstin,izzur-zuhri,JavaScript,false,false,false,0,false,false,false,false +veselin.k/neovim-config,veselin.k,Vimscript,false,false,false,0,false,false,false,false +mrf-todo/mrf-todo-flask-backend,mrf-todo,Python,false,true,false,0,false,false,false,false +barbra-group/socks,barbra-group,Go,false,false,false,0,false,false,false,false +osgames/lechemindeladam,osgames,C++,false,false,false,0,false,false,false,false +doctorlloyd/Admin-Shop-smart,doctorlloyd,Java,false,false,false,0,false,false,false,false +doctorlloyd/Shop-smart,doctorlloyd,Java,false,false,false,0,false,false,false,false +gappan/terraform-provider-jira,gappan,Go,true,false,false,2,true,true,false,false +blackcoin/blackcoin-legacy,blackcoin,C++,false,false,false,0,false,false,false,false +michzuerch/locateipaddress,michzuerch,Java,false,false,true,0,false,false,false,false +Angel.AMG/Punto.de.venta,Angel.AMG,C#,false,false,false,0,false,false,false,false +lacsed/clDES,lacsed,C++,true,false,false,1,false,true,false,false +JuampaHernandez/NodeJsMySqlSession,JuampaHernandez,CSS,false,false,false,0,false,false,false,false +sira313/oranchelo-remix,sira313,,false,false,false,0,false,false,false,false +MatteoCampinoti94/FAAPI,MatteoCampinoti94,Python,false,false,false,0,false,false,false,false +meetprizm/setup,meetprizm,,false,false,false,0,false,false,false,false +BENYAM1N/Coordinate-Detection,BENYAM1N,Python,false,false,false,0,false,false,false,false +contracode/vimrc,contracode,Vimscript,false,false,false,0,false,false,false,false +mertkahyaoglu/zeplin-challenge,mertkahyaoglu,JavaScript,true,false,false,1,false,true,false,false +jl459k/iot-django,jl459k,Python,false,false,false,0,false,false,false,false +icaroraci/tooldoce,icaroraci,C,false,false,false,0,false,false,false,false +KyrahAbattoir/KyrahGame,KyrahAbattoir,C#,false,false,false,0,false,false,false,false +HWdTech-puplic/middleware,HWdTech-puplic,Kotlin,false,false,false,0,false,false,false,false +rts_nepal/embedded/lwIP_mbedtls_mqtt_c,rts_nepal,C,false,false,false,0,false,false,false,false +ragibishrak1481/machine_learning_notebooks,ragibishrak1481,JupyterNotebook,false,false,false,0,false,false,false,false +mrf-todo/mrf-todo-vue-frontend,mrf-todo,JavaScript,false,false,false,0,false,false,false,false +flegastelois/glpi,flegastelois,PHP,false,false,false,0,false,false,false,false +termux4me/Nethunter-In-Termux,termux4me,Shell,false,false,false,0,false,false,false,false +termux4me/termux-exec,termux4me,C,false,false,false,0,false,false,false,false +shaghayegh8788/giftzone,shaghayegh8788,,false,false,false,0,false,false,false,false +maythingyan/TechnoBravo1,maythingyan,PHP,false,false,false,0,false,false,false,false +ditokp/dokumentasi-rpg-paper-maker-indonesia,ditokp,,false,false,false,0,false,false,false,false +IceHe/lib,IceHe,CSS,true,false,false,1,false,false,false,false +las2mile/scrcpy-android,las2mile,Java,false,false,false,0,false,false,false,false +MaxIV/test-runner,MaxIV,,true,false,false,1,false,true,false,false +Eudaimonstro/Steves-Rules-of-Order,Eudaimonstro,JavaScript,true,false,false,1,false,true,false,false +cartolab/geomove_pipelines,cartolab,Python,false,false,false,0,false,false,false,false +ohboi/d,ohboi,D,false,false,false,0,false,false,false,false +Rajkale99/rk_kernel,Rajkale99,C,false,false,false,0,false,false,false,false +xnaas/websites,xnaas,HTML,false,false,false,0,false,false,false,false +Dominik.Katszer/microservices-tutorial,Dominik.Katszer,Java,false,false,false,0,false,false,false,false +icfoss/OpenIoT/ttn-gw-monitor,icfoss,Shell,false,false,false,0,false,false,false,false +koha-community/git-bz,koha-community,Python,false,false,false,0,false,false,false,false +USSRM/API,USSRM,Rust,true,false,false,1,false,true,false,false +adaedra/derpy,adaedra,TypeScript,true,false,false,2,true,true,false,false +katyukha/odoo-rpc-client,katyukha,Python,true,true,false,3,false,false,false,false +afratul-taohid/FoodMap,afratul-taohid,Java,false,false,false,0,false,false,false,false +gravely/wp-updates-notifier,gravely,PHP,false,false,false,0,false,false,false,false +wapdc/compliance-case-tracking/case-tracking,wapdc,JavaScript,false,false,false,0,false,false,false,false +pjasiak/clicka-msg,pjasiak,Python,false,false,false,0,false,false,false,false +mjleitch/typescript-starter,mjleitch,TypeScript,false,false,false,0,false,false,false,false +mraureliusr/IceCreamBot,mraureliusr,Python,false,true,false,0,false,false,false,false +mgorley/mac_changer,mgorley,Python,false,false,false,0,false,false,false,false +gnextia/gnextia,gnextia,JavaScript,false,false,false,0,false,false,false,false +charts/deploy-image-helm-base,charts,Shell,true,false,false,1,true,false,false,false +ivanchenoweth/desarrollo-de-aplicaciones,ivanchenoweth,Java,false,false,false,0,false,false,false,false +albertalexandrov/avito_flat,albertalexandrov,Python,false,true,false,0,false,false,false,false +braxtons12/Ftk,braxtons12,C++,false,false,false,0,false,false,false,false +arnedesmedt/vue-ads-pagination,arnedesmedt,JavaScript,false,false,false,0,false,false,false,false +yfgeek/yfgeek.github.io,yfgeek,HTML,false,false,false,0,false,false,false,false +maxleroy/ForeverAlonePong,maxleroy,JavaScript,false,false,false,0,false,false,false,false +kenyanerd/python101,kenyanerd,,false,false,false,0,false,false,false,false +ehsaan/quotes-ui,ehsaan,JavaScript,false,false,false,0,false,false,false,false +kdeleteme/Hectic,kdeleteme,Kotlin,false,false,false,0,false,false,false,false +jorgesanux/Matrix-Frame,jorgesanux,C,false,false,false,0,false,false,false,false +fogity/squared-cool,fogity,Haskell,false,false,false,0,false,false,false,false +simshadows/random-programming-exercises,simshadows,C,false,false,false,0,false,false,false,false +devinrodez/coding-dojo,devinrodez,JavaScript,false,false,false,0,false,false,false,false +noreplyme/gitlab-review-nowrap,noreplyme,CSS,false,false,false,0,false,false,false,false +ditokp/dokumentasi-fgmk-indonesia,ditokp,,false,false,false,0,false,false,false,false +slon/shad-cpp0,slon,C++,false,false,false,0,false,false,false,false +custom_components/hassbian_config,custom_components,Python,true,false,false,2,true,false,true,false +happycodingsarl/resource-space,happycodingsarl,PHP,false,false,false,0,false,false,false,false +debuglevel/greeting-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true +denchyaknow/Ultra_Map_Generator,denchyaknow,C#,false,false,false,0,false,false,false,false +jurelou/trust,jurelou,JavaScript,true,false,false,2,true,false,true,false +miltonlab/tfc-hpc-r,miltonlab,R,false,false,false,0,false,false,false,false +renanalan/hackathon-iteris,renanalan,Java,false,false,false,0,false,false,false,false +fresh-dev-department/lookaround,fresh-dev-department,C,false,false,false,0,false,false,false,false +tcs_dev_bookManagement/bookManagement,tcs_dev_bookManagement,HTML,false,false,false,0,false,false,false,false +boaromayo/ur-prinz,boaromayo,Ruby,false,false,false,0,false,false,false,false +The-Real-TechLord/apkstudio,The-Real-TechLord,C++,false,false,false,0,false,false,false,false +The-Real-TechLord/magnetissimo,The-Real-TechLord,Elixir,false,false,false,0,false,false,false,false +The-Real-TechLord/how2exploit_binary,The-Real-TechLord,C,false,false,false,0,false,false,false,false +epfl-dojo/docker.apache,epfl-dojo,PHP,false,false,false,0,false,false,false,false +gefersom/qumlplay,gefersom,,false,false,false,0,false,false,false,false +sysulion_code/standard,sysulion_code,C,false,false,false,0,false,false,false,false +jrab66/ECSL-ansible,jrab66,Ruby,false,false,false,0,false,false,false,false +fablab-pernes/atelier-kicad,fablab-pernes,,false,false,false,0,false,false,false,false +pklinken/earmouse,pklinken,HTML,false,false,false,0,false,false,false,false +congard/hmw-generator,congard,Java,false,false,false,0,false,false,false,false +tomvidm/ssml,tomvidm,C++,true,false,false,1,false,true,false,false +IronLions/Interna/Core,IronLions,PHP,true,false,false,1,false,true,false,false +nnj-rhug/NNJ-RHUG,nnj-rhug,,false,false,false,0,false,false,false,false +m3hr24d/docker-symfony,m3hr24d,Shell,true,false,false,1,false,false,true,false +uspgamedev/super-umbrella,uspgamedev,GDScript,false,false,false,0,false,false,false,false +Dopamin/ZarinpalGate,Dopamin,C#,false,false,false,0,false,false,false,false +brb3/pass-rb,brb3,Ruby,false,false,false,0,false,false,false,false +fybwid/Kirana-Jaya-Website,fybwid,Ruby,false,false,false,0,false,false,false,false +fybwid/ruby-on-rails-bootstrap,fybwid,Ruby,false,false,false,0,false,false,false,false +toys-projects/lazy-url-shorter,toys-projects,Python,false,true,false,0,false,false,false,false +peerpeel.dev/website,peerpeel.dev,CSS,false,false,false,0,false,false,false,false +lanzer/zomg,lanzer,Groovy,false,false,false,0,false,false,false,false +yoginth/avm,yoginth,HTML,false,false,false,0,false,false,false,false +BruceAnda/guigushi,BruceAnda,Kotlin,false,false,false,0,false,false,false,false +rockettpw/seo/markup-sitemap,rockettpw,PHP,false,false,false,0,false,false,false,false +andrsaz84/hack,andrsaz84,Vue,false,false,false,0,false,false,false,false +cclloyd1/docker-compose-wrapper,cclloyd1,Python,false,false,false,0,false,false,false,false +korinets-name/korinets-name.gitlab.io,korinets-name,JavaScript,true,false,false,1,false,false,true,false +JustVita/QMaterialDesign,JustVita,Java,false,false,false,0,false,false,false,false +Rophil/qml-fontawesome-5,Rophil,JavaScript,false,false,false,0,false,false,false,false +phwl/syq-cifar10,phwl,Python,false,false,false,0,false,false,false,false +robert_curran/ngx-simple-logger,robert_curran,TypeScript,false,false,false,0,false,false,false,false +srezvilla/la-ruta-burger-app-ios,srezvilla,Swift,false,false,false,0,false,false,false,false +lawrenceagles/cleanblogger-theme,lawrenceagles,JavaScript,false,false,false,0,false,false,false,false +Peresunko/climatic-trends,Peresunko,R,false,false,false,0,false,false,false,false +loicschoen222/raspberry,loicschoen222,,false,false,false,0,false,false,false,false +lucas75/teste-1290380912,lucas75,,false,false,false,0,false,false,false,false +a.g-h/MyCrypt,a.g-h,Java,false,false,false,0,false,false,false,false +blaineam/WinkWeb,blaineam,JavaScript,false,false,false,0,false,false,false,false +blaineam/Holiday.js,blaineam,JavaScript,false,false,false,0,false,false,false,false +blaineam/GWebsiteSnapper,blaineam,JavaScript,false,false,false,0,false,false,false,false +blaineam/fileflyme,blaineam,PHP,false,false,false,0,false,false,false,false +FeldiDeveloper/CommandPlusPlus,FeldiDeveloper,Java,false,false,false,0,false,false,false,false +dannop/xablau2,dannop,Ruby,false,false,false,0,false,false,false,false +joelwallis/at-voice123,joelwallis,JavaScript,false,false,false,0,false,false,false,false +uben0/klibrary,uben0,C++,false,false,false,0,false,false,false,false +nd4pa/homesuite-ansible,nd4pa,Smarty,false,false,false,0,false,false,false,false +rvy-2018/rvs-custom-desktop-configs,rvy-2018,Shell,false,false,false,0,false,false,false,false +gavz/AMSI_bypass,gavz,XSLT,false,false,false,0,false,false,false,false +yuyang339/ConwaysGameOfLife,yuyang339,C++,false,false,false,0,false,false,false,false +plouc/gitlab-ci-helper,plouc,Go,false,false,false,0,false,false,false,false +katrinleinweber/md2ics,katrinleinweber,,false,false,false,0,false,false,false,false +mlterpstra/dotfiles,mlterpstra,Prolog,false,false,false,0,false,false,false,false +beyondbitcoin/wlsjs,beyondbitcoin,JavaScript,true,false,false,1,true,false,false,false +MurphyHsieh/practice-nba-web,MurphyHsieh,JavaScript,false,false,false,0,false,false,false,false +coteafs/config,coteafs,Java,true,false,false,3,true,true,false,false +hop23typhu/fullstack-graphql,hop23typhu,JavaScript,true,false,false,1,false,true,false,false +bsarda/cookbooks,bsarda,PowerShell,false,false,false,0,false,false,false,false +ohboi/goinsu,ohboi,D,true,false,false,2,true,true,false,false +vanous/wotbot-dashboard,vanous,HTML,false,false,false,0,false,false,false,false +slon/shad-os,slon,C,false,false,false,0,false,false,false,false +spicydog/url-shortener,spicydog,Go,false,false,false,0,false,false,false,false +lboklin/godot-haskell-test,lboklin,Haskell,false,false,false,0,false,false,false,false +ypirka/HerokuTest,ypirka,Java,false,false,true,0,false,false,false,false +MikeModder/SSMT-Reloaded,MikeModder,JavaScript,false,false,false,0,false,false,false,false +florenzo-42/push_swap,florenzo-42,C,false,false,false,0,false,false,false,false +lucidlylogicole/pristine,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false +nowayout/detect_evil-ssdp,nowayout,Python,false,false,false,0,false,false,false,false +Al-Demon/ps_integralces,Al-Demon,PHP,false,false,false,0,false,false,false,false +CourtneyGosselin/GameShow,CourtneyGosselin,Java,false,false,false,0,false,false,false,false +argee/Angular-Component-Library,argee,CSS,false,false,false,0,false,false,false,false +orangecoloured/boc,orangecoloured,JavaScript,false,false,false,0,false,false,false,false +michaelallen1966/00_python_snippets_and_recipes,michaelallen1966,HTML,false,false,false,0,false,false,false,false +to1ne/debut,to1ne,Makefile,true,false,false,1,false,true,false,false +aead/aBindings,aead,Lua,false,false,false,0,false,false,false,false +spease/WeaverForumSoftware,spease,Python,true,true,false,1,false,true,false,false +rubiconbot/RubiconPlugin,rubiconbot,Java,false,false,true,0,false,false,false,false +uspcodelab/projects/hacknizer/module-template-old,uspcodelab,JavaScript,false,false,false,0,false,false,false,false +stavros/wemos-breakout-shield,stavros,,false,false,false,0,false,false,false,false +inko-lang/abuse,inko-lang,,false,false,false,0,false,false,false,false +caleb-ukle/shop-the-fridge,caleb-ukle,TypeScript,true,false,false,1,false,false,true,false +thecodechef/vue-test,thecodechef,,true,false,false,1,false,true,false,false +joneshf/purescript-run-parser,joneshf,PureScript,false,false,false,0,false,false,false,false +recosense-plugins/retailsense-plugins,recosense-plugins,PHP,false,false,false,0,false,false,false,false +Bekka/reseau,Bekka,Python,false,false,false,0,false,false,false,false +xdc.one/todo,xdc.one,TypeScript,false,false,false,0,false,false,false,false +wdblckmma/aaa,wdblckmma,,true,false,false,1,false,true,false,false +boardcrew/instalador,boardcrew,Scala,true,false,false,1,true,false,false,false +dirsky/blog,dirsky,CSS,false,false,false,0,false,false,false,false +Plaque-fcc/kitsune,Plaque-fcc,HTML,false,false,false,0,false,false,false,false +dzaporozhets/mvn-example,dzaporozhets,Java,true,false,true,1,false,true,false,false +iamfaith/java-1,iamfaith,Shell,false,false,false,0,false,false,false,false +joielechong/belajar-go-dengan-tes,joielechong,Go,true,false,false,2,false,true,true,false +eryi/travelcloud-antd,eryi,TypeScript,false,false,false,0,false,false,false,false +NeonSpectrum/TnT,NeonSpectrum,JavaScript,false,false,false,0,false,false,false,false +uspcodelab/projects/hacknizer/api-gateway,uspcodelab,JavaScript,false,false,false,0,false,false,false,false +Miri01/Deep_Reinforcement_Learning_for_Beginners,Miri01,JupyterNotebook,false,false,false,0,false,false,false,false +yetopen/zimbra-live-sync,yetopen,Shell,false,false,false,0,false,false,false,false +shivgupt/makerkeeper,shivgupt,JavaScript,false,false,false,0,false,false,false,false +denges/i3-timetracker,denges,C,false,false,false,0,false,false,false,false +DevMutants/RichFashionUK,DevMutants,,false,false,false,0,false,false,false,false +frozenfoxx/rpi-redis,frozenfoxx,Shell,false,false,false,0,false,false,false,false +parallelcoin/duo,parallelcoin,Go,false,false,false,0,false,false,false,false +frozenfoxx/docker-vuln-bind,frozenfoxx,Shell,false,false,false,0,false,false,false,false +eddor/shopshare,eddor,JavaScript,false,false,false,0,false,false,false,false +metsatron/BeOS-r5-GTK,metsatron,CSS,false,false,false,0,false,false,false,false +ateather/aws-deploy-devops,ateather,JavaScript,false,false,false,0,false,false,false,false +trpg-helper/trpg-helper-front,trpg-helper,TypeScript,false,false,false,0,false,false,false,false +BelfkihYouness/autotile,BelfkihYouness,C#,false,false,false,0,false,false,false,false +afroemming/xkcd-password-gen,afroemming,Python,false,false,false,0,false,false,false,false +mtotodev05/JFoenix,mtotodev05,Java,false,false,false,0,false,false,false,false +Pacodastre/iris,Pacodastre,,false,false,false,0,false,false,false,false +mexus/take-some-rs,mexus,Rust,true,false,false,1,false,true,false,false +frontierdevelopmentlab/astrobiology/inara,frontierdevelopmentlab,JupyterNotebook,false,false,false,0,false,false,false,false +fluidnumerics/SELF-Fluids,fluidnumerics,Fortran,false,false,false,0,false,false,false,false +Kasyamba/dynamic-web,Kasyamba,Go,false,false,false,0,false,false,false,false +RoarkeRandall/protoc-gen-twirp_csharp,RoarkeRandall,Go,false,false,false,0,false,false,false,false +jackasterisk/optibot,jackasterisk,JavaScript,false,false,false,0,false,false,false,false +budairi/kasir,budairi,HTML,false,false,false,0,false,false,false,false +thiagotrennepohl/gourmet-game,thiagotrennepohl,Go,true,false,false,2,false,true,false,false +odinjv/contador,odinjv,Python,false,true,false,0,false,false,false,false +lokiproject/loki,lokiproject,C++,false,false,false,0,false,false,false,false +MidoriApp/backend,MidoriApp,PHP,true,false,false,1,false,true,false,false +thecodechef/vue-cli-plugin-editorconfig,thecodechef,JavaScript,true,false,false,1,false,true,false,false +plouc/go-gitlab-client,plouc,Go,false,false,false,0,false,false,false,false +ThunthepS/2018_cesiumapplication_simstadtdemo,ThunthepS,JavaScript,false,false,false,0,false,false,false,false +juadelman40/adm-config-repo,juadelman40,,false,false,false,0,false,false,false,false +bootstrapcollaboration/crossing-equations,bootstrapcollaboration,Python,false,false,false,0,false,false,false,false +fvafrcu/fakemake,fvafrcu,R,true,false,false,4,true,true,true,false +devbugchecker/nfephp,devbugchecker,PHP,false,false,false,0,false,false,false,false +Mikazuki/Robock,Mikazuki,C#,false,false,false,0,false,false,false,false +EduardoRodrigues94/angular-starter-project,EduardoRodrigues94,JavaScript,false,false,false,0,false,false,false,false +Demiture/dawn,Demiture,CSS,false,false,false,0,false,false,false,false +kon.xen/Gallery_CMS,kon.xen,JavaScript,false,false,false,0,false,false,false,false +s.safari/AP_Project,s.safari,C++,false,false,false,0,false,false,false,false +npadmana/hdf5-chapel,npadmana,C,false,false,false,0,false,false,false,false +pedro-stanaka/rn-todo,pedro-stanaka,JavaScript,false,false,false,0,false,false,false,false +jtkick/Auburn,jtkick,Python,false,false,false,0,false,false,false,false +fradelg/kn-slam,fradelg,C++,false,false,false,0,false,false,false,false +uade-music-player/uade,uade-music-player,Assembly,false,false,false,0,false,false,false,false +gitlab-org/gitter/node-gitter,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +Rolando_Velazquez/Landing,Rolando_Velazquez,CSS,false,false,false,0,false,false,false,false +ghostwan/robotkit,ghostwan,Kotlin,false,false,false,0,false,false,false,false +spezi77/vendor_googleapps,spezi77,Makefile,false,false,false,0,false,false,false,false +paulostation/FEED_RSSNEWSROBOT,paulostation,PHP,false,false,false,0,false,false,false,false +lkcamp/lkcamp_org,lkcamp,,false,false,false,0,false,false,false,false +mjleitch/rollup-starter-app,mjleitch,JavaScript,false,false,false,0,false,false,false,false +Thalhalla/docker-7DaysToDie,Thalhalla,Makefile,false,false,false,0,false,false,false,false +cqwo/baseos,cqwo,Java,false,false,true,0,false,false,false,false +angreal/article-template,angreal,CSS,false,false,false,0,false,false,false,false +Ao7378/Bitcoin,Ao7378,C++,false,false,false,0,false,false,false,false +mogilny/binary_cifar10,mogilny,Python,false,false,false,0,false,false,false,false +JayBigGuy10/MPT-Release,JayBigGuy10,Python,false,false,false,0,false,false,false,false +bootstrapcollaboration/conformal-blocks,bootstrapcollaboration,TeX,false,false,false,0,false,false,false,false +myoganugraha/WisataKu,myoganugraha,Java,false,false,false,0,false,false,false,false +ForgxttenSoul/sqlite3fs,ForgxttenSoul,JavaScript,false,false,false,0,false,false,false,false +jwcha/my-interactive-coding-challenges,jwcha,Python,false,true,false,0,false,false,false,false +protocube-world/CPIT2-WebAPI-Talk,protocube-world,Vue,false,false,false,0,false,false,false,false +zhxhcoder/XButton,zhxhcoder,Java,false,false,false,0,false,false,false,false +DawidvC/voat-container,DawidvC,C#,false,false,false,0,false,false,false,false +ctfer/ctfer,ctfer,,false,false,false,0,false,false,false,false +ncrmro/preon,ncrmro,TypeScript,true,false,false,1,false,true,false,false +harkwell/angular-poc,harkwell,HTML,false,false,false,0,false,false,false,false +cloudigrade/images/test-container,cloudigrade,,true,false,false,2,false,true,true,false +HaeckDesign/ultra,HaeckDesign,HTML,false,false,false,0,false,false,false,false +TommyLemon/APIJSON,TommyLemon,Java,false,false,false,0,false,false,false,false +TommyLemon/Android-ZBLibrary,TommyLemon,Java,false,false,false,0,false,false,false,false +TommyLemon/APIJSONAuto,TommyLemon,JavaScript,false,false,false,0,false,false,false,false +zhupingqi/RuiJi.Net,zhupingqi,C#,false,false,false,0,false,false,false,false +kkopper/oraclejdk-gradle,kkopper,,true,false,false,4,true,false,true,false +zachbresser/chbresser-public,zachbresser,Python,false,true,false,0,false,false,false,false +thecodechef/vue-cli-plugin-vuepress,thecodechef,JavaScript,false,false,false,0,false,false,false,false +ribamar-org/ribamar,ribamar-org,JavaScript,true,false,false,3,false,true,true,false +avcaliani/spring-boot,avcaliani,Java,false,false,false,0,false,false,false,false +avcaliani/python,avcaliani,Python,false,false,false,0,false,false,false,false +avcaliani/java,avcaliani,Java,false,false,false,0,false,false,false,false +avcaliani/angular,avcaliani,TypeScript,false,false,false,0,false,false,false,false +jordanstreet/drewski-sim,jordanstreet,Matlab,false,false,false,0,false,false,false,false +keepingoner/pygame-projects,keepingoner,Python,false,false,false,0,false,false,false,false +j.j.wisniewski92/ArenaGame,j.j.wisniewski92,,false,false,false,0,false,false,false,false +tmqa5/autoMaven,tmqa5,Java,false,false,true,0,false,false,false,false +palashg7563/twitter-clone,palashg7563,JavaScript,false,false,false,0,false,false,false,false +Make-Munich/SaBoT,Make-Munich,Python,false,true,false,0,false,false,false,false +kleak/chrome.dart,kleak,Dart,false,false,false,0,false,false,false,false +pothitos/C_Pipeline,pothitos,C,true,false,false,3,true,true,false,false +RobinEklund/React_express_startpack,RobinEklund,JavaScript,false,false,false,0,false,false,false,false +marcosalm/react-boillerplate,marcosalm,JavaScript,false,false,false,0,false,false,false,false +uxvrob/CDL2018-Hackathon,uxvrob,JupyterNotebook,false,false,false,0,false,false,false,false +Solije/nc450-python-api,Solije,Python,false,true,false,0,false,false,false,false +jcvining/Realized-Regetti,jcvining,JupyterNotebook,false,false,false,0,false,false,false,false +mogilny/regetti_challenge,mogilny,Python,false,false,false,0,false,false,false,false +szhan/rst,szhan,Python,false,false,false,0,false,false,false,false +georgiy.kuznecov/vue-startup,georgiy.kuznecov,JavaScript,false,false,false,0,false,false,false,false +principia-discordia/principia,principia-discordia,,false,false,false,0,false,false,false,false +faridb/TorSwitch,faridb,JavaScript,false,false,false,0,false,false,false,false +finestructure/bitrise-trigger,finestructure,Python,true,false,false,3,true,true,false,true +kdave/btrfs-devel,kdave,C,false,false,false,0,false,false,false,false +nct_tso_public/pretrain_tc,nct_tso_public,Python,false,false,false,0,false,false,false,false +harbottle/docker-wix,harbottle,C,true,false,false,1,true,false,false,false +KRypt0n/_Enfesto-Auth,KRypt0n,PHP,false,false,false,0,false,false,false,false +johannes.altmanninger/gitlab-refactoring-demo,johannes.altmanninger,Java,false,false,true,0,false,false,false,false +camiloYateY2018/laravel-ecommerce-example,camiloYateY2018,PHP,false,false,false,0,false,false,false,false +camiloYateY2018/Python_3_Total,camiloYateY2018,Python,false,false,false,0,false,false,false,false +DrewMcArthur/lstn,DrewMcArthur,TypeScript,false,false,false,0,false,false,false,false +sehacker/inverter_configuration_tool,sehacker,C#,false,false,false,0,false,false,false,false +Fozzie/FormulaOne,Fozzie,JavaScript,false,false,false,0,false,false,false,false +emacchi/tripleo-standalone-edge,emacchi,Shell,false,false,false,0,false,false,false,false +mcmaster_forum/hseloginapp,mcmaster_forum,JavaScript,false,false,false,0,false,false,false,false +FishBus/Fill4Me,FishBus,Lua,false,false,false,0,false,false,false,false +purpuranc/eai-final-project,purpuranc,Python,false,false,false,0,false,false,false,false +elioclerics/flesh,elioclerics,JavaScript,false,false,false,0,false,false,false,false +opsforge/anvil,opsforge,Shell,false,false,false,0,false,false,false,false +opsforge/splunk-light,opsforge,Shell,false,false,false,0,false,false,false,false +Rinoahu/caffe,Rinoahu,C++,false,false,false,0,false,false,false,false +Rinoahu/tensorflow-zh,Rinoahu,TeX,false,false,false,0,false,false,false,false +stationgroup/gpg-agent-forward,stationgroup,Shell,false,false,false,0,false,false,false,false +ralphembree/AspectRatio,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/loqdisc,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/Loquitor,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/Loquitor-Heroku,ralphembree,Python,false,true,false,0,false,false,false,false +ralphembree/memint,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/mintmenu-helper,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/py2048,ralphembree,Python,false,false,false,0,false,false,false,false +ralphembree/SquareUp,ralphembree,Python,false,false,false,0,false,false,false,false +kudotnet/dotnetfun,kudotnet,C#,true,false,false,1,false,true,false,false +jl8n/ovpn-profile-generator,jl8n,Python,false,false,false,0,false,false,false,false +dannop/teste,dannop,,false,false,false,0,false,false,false,false +shnarazk/haskell/glossat,shnarazk,Haskell,false,false,false,0,false,false,false,false +yktceshi/testdata,yktceshi,Java,false,false,false,0,false,false,false,false +novvum/open-source/mui-components,novvum,JavaScript,false,false,false,0,false,false,false,false +brightdanielt/SmartphoneRadar,brightdanielt,Java,false,false,false,0,false,false,false,false +kittiphongaum/KeepWordTeachV2,kittiphongaum,Java,false,false,true,0,false,false,false,false +apdevboost/RN-MutliSelection,apdevboost,JavaScript,false,false,false,0,false,false,false,false +vovchik33/js-react-redux,vovchik33,JavaScript,false,false,false,0,false,false,false,false +cminhtruong/capstone-project,cminhtruong,,false,false,false,0,false,false,false,false +cminhtruong/just-for-fun,cminhtruong,Java,false,false,false,0,false,false,false,false +cminhtruong/MyReader,cminhtruong,Java,false,false,false,0,false,false,false,false +cminhtruong/SunshineToday,cminhtruong,Java,false,false,false,0,false,false,false,false +rapidhaskell2018/ws1,rapidhaskell2018,Haskell,true,false,false,3,true,true,false,false +ZissiTheBee/Ernst,ZissiTheBee,Java,true,false,false,2,true,true,false,false +Roxedus/Rox-cogs,Roxedus,Python,false,false,false,0,false,false,false,false +cagla.cetinoz/deneme,cagla.cetinoz,,false,false,false,0,false,false,false,false +maju6406/puppetlabs-ntp,maju6406,Ruby,false,false,false,0,false,false,false,false +serdaroglu92/Pot_System_eX,serdaroglu92,C#,false,false,false,0,false,false,false,false +hrbrmstr/roto.athena,hrbrmstr,R,false,false,false,0,false,false,false,false +m2i-formation-ete-2018-groupe-4/fil-rouge-site-e-commerce,m2i-formation-ete-2018-groupe-4,,false,false,false,0,false,false,false,false +MatthiasHu/master-thesis,MatthiasHu,TeX,false,false,false,0,false,false,false,false +cresset/flare-python-pyflare,cresset,Python,false,false,false,0,false,false,false,false +cresset/flare-python-developer,cresset,Python,false,false,false,0,false,false,false,false +fhightower-tc/unstructured-indicator-importer,fhightower-tc,JavaScript,false,false,false,0,false,false,false,false +vincentdavy/replay-api,vincentdavy,Go,true,false,false,4,true,true,false,true +p0r3c3k/testing,p0r3c3k,,false,false,false,0,false,false,false,false +SuperChocaGames/RunAgain,SuperChocaGames,,false,false,false,0,false,false,false,false +yvsssantosh/django-on-k8s,yvsssantosh,,false,false,false,0,false,false,false,false +thecodechef/sublime-graphql-pro,thecodechef,,false,false,false,0,false,false,false,false +hrbrmstr/roto.s3,hrbrmstr,R,false,false,false,0,false,false,false,false +revooms/gistblog,revooms,HTML,false,false,false,0,false,false,false,false +sekitsui/client-java,sekitsui,Java,false,false,true,0,false,false,false,false +HexerBeta/MNIST_AI,HexerBeta,Python,false,true,false,0,false,false,false,false +textbros/textbros,textbros,C++,false,false,false,0,false,false,false,false +_wli/medium-editor,_wli,JavaScript,false,false,false,0,false,false,false,false +eduardobc88/reactive-cms,eduardobc88,Vue,false,false,false,0,false,false,false,false +zxhaaa/kuaizu-api,zxhaaa,TypeScript,false,false,false,0,false,false,false,false +surfane-public/web-server,surfane-public,Java,false,false,true,0,false,false,false,false +TrinhDinhPhuc/ctci-solutions,TrinhDinhPhuc,Python,false,false,false,0,false,false,false,false +fadhiilrachman/line-py,fadhiilrachman,Python,false,true,false,0,false,false,false,false +0xF61/MAOYYK2018,0xF61,HTML,true,false,false,1,false,false,true,false +marijanal/PrvaGrupa,marijanal,JavaScript,false,false,false,0,false,false,false,false +lpireyn/cmcm,lpireyn,Shell,true,false,false,1,false,true,false,false +unibitlabs1/Project-Nebula,unibitlabs1,CSS,false,false,false,0,false,false,false,false +actualdragon/warui,actualdragon,Python,false,false,false,0,false,false,false,false +sushmaganapuram/myWorld,sushmaganapuram,,false,false,false,0,false,false,false,false +Pedinpsy/judicializacao-saude,Pedinpsy,HTML,false,false,false,0,false,false,false,false +thrasymache/rwsh,thrasymache,C++,false,false,false,0,false,false,false,false +Exagone313/etbloat,Exagone313,C,false,false,false,0,false,false,false,false +bla6/firefox-safari-appearance,bla6,CSS,false,false,false,0,false,false,false,false +cleider87/weather,cleider87,JavaScript,true,false,false,3,false,false,false,false +leglesslamb/Atomas,leglesslamb,Java,false,false,false,0,false,false,false,false +leglesslamb/MarkMan,leglesslamb,Python,false,false,false,0,false,false,false,false +leglesslamb/Photerpret,leglesslamb,Python,false,false,false,0,false,false,false,false +shintaku-group/shintaku,shintaku-group,JavaScript,false,false,false,0,false,false,false,false +dbandstra/oxid,dbandstra,,false,false,false,0,false,false,false,false +codesections/personal,codesections,HTML,true,false,false,1,false,false,true,false +Dobbie03/ArchLabs-dARK,Dobbie03,CSS,false,false,false,0,false,false,false,false +svsamipillai/gitlab-hw,svsamipillai,HTML,true,false,false,2,true,false,true,false +alfiedotwtf/devbox,alfiedotwtf,Makefile,false,false,false,0,false,false,false,false +mrezamuhtadi/project_beta,mrezamuhtadi,,false,false,false,0,false,false,false,false +mjbaig/robot_run,mjbaig,Elixir,false,false,false,0,false,false,false,false +Error1000/libhand,Error1000,Python,false,false,false,0,false,false,false,false +unibitlabs1/wallet,unibitlabs1,JavaScript,false,false,false,0,false,false,false,false +akash.thomas/Java_training,akash.thomas,Java,false,false,true,0,false,false,false,false +200ok/talks,200ok,Clojure,false,false,false,0,false,false,false,false +dsp_blackhat/repo,dsp_blackhat,PHP,false,false,false,0,false,false,false,false +Calinou/clr,Calinou,Nim,true,false,false,2,true,false,true,false +timkrief/minimal,timkrief,CSS,false,false,false,0,false,false,false,false +timkrief/deezerPlaylistExportScript,timkrief,JavaScript,false,false,false,0,false,false,false,false +r-russo/audio_synthesis,r-russo,Python,false,false,false,0,false,false,false,false +subham.tiwari186/so-you-want-an-internship,subham.tiwari186,,false,false,false,0,false,false,false,false +Kampi/TychusFindlay,Kampi,Python,false,true,false,0,false,false,false,false +strburst/pelican-site,strburst,HTML,true,false,false,1,false,true,false,false +rubendibattista/ovh-dynhost,rubendibattista,Python,false,false,false,0,false,false,false,false +hoodieak/SIO,hoodieak,,false,false,false,0,false,false,false,false +lee-pai-long/boom,lee-pai-long,Python,false,true,false,0,false,false,false,false +AASAAM/ubuntu-overssh-reinstallation,AASAAM,Shell,false,false,false,0,false,false,false,false +solifugo/TweetPro,solifugo,Java,false,false,false,0,false,false,false,false +lvml/mpv-plugin-excerpt,lvml,Lua,false,false,false,0,false,false,false,false +Vatril/VatsVNLibEditor,Vatril,TypeScript,false,false,false,0,false,false,false,false +tm-sfml/SFML-Game-Engine,tm-sfml,C++,false,false,false,0,false,false,false,false +iot-devices/mypiip,iot-devices,Python,false,false,false,0,false,false,false,false +royhodge/wallet,royhodge,JavaScript,false,false,false,0,false,false,false,false +mmx4452/molloyRPi,mmx4452,C++,false,false,false,0,false,false,false,false +aqeebimtiaz/aqeeb-imtiaz-harun,aqeebimtiaz,PHP,false,false,false,0,false,false,false,false +conghuy997/mock-project,conghuy997,JavaScript,false,false,false,0,false,false,false,false +codesigntheory/django-postgresql-rgb-colorfield,codesigntheory,JavaScript,false,false,false,0,false,false,false,false +PyMX/pythondaymx2018,PyMX,CSS,false,false,false,0,false,false,false,false +puneet.mish.ra/Launchpad_SQL_Queries,puneet.mish.ra,,false,false,false,0,false,false,false,false +zredalmeria/openZmeter,zredalmeria,C,false,false,false,0,false,false,false,false +primedio/delivery-primedioandroid,primedio,Java,false,false,false,0,false,false,false,false +pothitos/CPP_Pipeline,pothitos,C++,true,false,false,3,true,true,false,false +surfane-public/db-script,surfane-public,PLpgSQL,false,false,false,0,false,false,false,false +Ahemadali/test-proj-HBT,Ahemadali,,false,false,false,0,false,false,false,false +fimas/sis-brevstandard,fimas,,false,false,false,0,false,false,false,false +reivilibre/opencm3_usbhid_rust,reivilibre,Rust,false,false,false,0,false,false,false,false +PHP-Coders/NeleBotWebHookInstaller,PHP-Coders,PHP,false,false,false,0,false,false,false,false +guywithnose/codeGym,guywithnose,Go,false,false,false,0,false,false,false,false +je-cspantoja/whats_app_chat_api-python,je-cspantoja,Python,true,true,false,1,false,true,false,false +rh-emea-ssa-fuse-tutorial/fis-soap-full-transform,rh-emea-ssa-fuse-tutorial,Java,false,false,true,0,false,false,false,false +vinillo/aws-s3-nodejs,vinillo,CSS,false,false,false,0,false,false,false,false +jolupameister/dotfiles,jolupameister,Shell,false,false,false,0,false,false,false,false +gitlab-org/backstage-changelog,gitlab-org,CSS,true,false,false,1,false,true,false,false +bankwing/k8s,bankwing,,false,false,false,0,false,false,false,false +frozenfoxx/docker-puppet,frozenfoxx,,false,false,false,0,false,false,false,false +terorie/rip-spielaffe,terorie,Python,false,false,false,0,false,false,false,false +hyper-expanse/open-source/configuration-packages/gitlab-config,hyper-expanse,JavaScript,true,false,false,1,false,true,false,false +hrbrmstr/drill-html-tools,hrbrmstr,Java,false,false,true,0,false,false,false,false +anited/publish,anited,Python,true,true,false,1,false,true,false,false +institutovinci/impresora--matid3d-verde,institutovinci,C,false,false,false,0,false,false,false,false +deskbottom/js-euler,deskbottom,JavaScript,false,false,false,0,false,false,false,false +bazil.kamaev/UniExamples,bazil.kamaev,Java,false,false,false,0,false,false,false,false +CaffeinatedChimp/Initial_Token_Offer_Template,CaffeinatedChimp,,false,false,false,0,false,false,false,false +ArunaGamage/NotificationListenerServiceDemo,ArunaGamage,Java,false,false,false,0,false,false,false,false +CaptainGector/Xonotic-RE,CaptainGector,Python,false,false,false,0,false,false,false,false +chipss/discord-bot,chipss,JavaScript,false,false,false,0,false,false,false,false +objectia/api-docs,objectia,JavaScript,true,false,false,1,false,true,false,false +quibaritaenperdresatrompe/trombinoscope,quibaritaenperdresatrompe,,false,false,false,0,false,false,false,false +willianpaixao/dotfiles,willianpaixao,Shell,false,false,false,0,false,false,false,false +CodeBabel/hello-world,CodeBabel,Python,true,true,false,1,false,false,false,false +shukerov/myblog,shukerov,CSS,true,false,false,1,false,true,false,false +nbbeeken/dashmips,nbbeeken,Python,false,false,false,0,false,false,false,false +wanderb/utiv,wanderb,Python,false,false,false,0,false,false,false,false +isabellesandow/unity4j-meme-generator,isabellesandow,CSS,true,false,false,1,false,false,true,false +jimenisimo/Android_APP,jimenisimo,Java,false,false,false,0,false,false,false,false +grrow1ey/klay,grrow1ey,PHP,false,false,false,0,false,false,false,false +Vitzeno/Game-Engine,Vitzeno,Java,false,false,false,0,false,false,false,false +maksim.dadzerkin/go-build-example,maksim.dadzerkin,Go,true,false,false,2,true,true,false,false +Matrixcoffee/extract-web-to-org,Matrixcoffee,Python,false,false,false,0,false,false,false,false +lgbtplus/youth-bot-java,lgbtplus,Java,true,false,true,1,false,true,false,false +jrtomsic/switch-homebrew,jrtomsic,Shell,false,false,false,0,false,false,false,false +mcmaster_forum/hsewebapp,mcmaster_forum,JavaScript,false,false,false,0,false,false,false,false +anvalencia/UsefulSQLScripts,anvalencia,SQLPL,false,false,false,0,false,false,false,false +BerkeleyTrue/vue-todomvc,BerkeleyTrue,Vue,false,false,false,0,false,false,false,false +dazi/streaming-signage,dazi,PHP,false,false,false,0,false,false,false,false +astian-os/astore-app,astian-os,Vala,false,false,false,0,false,false,false,false +246overclocked/vex2018,246overclocked,C,false,false,false,0,false,false,false,false +kimlab/uniparc_xml_parser,kimlab,Python,true,false,false,3,true,true,true,false +nomins/larva,nomins,JavaScript,false,false,false,0,false,false,false,false +datto/engineering/spacewalk-debian-client-packages,datto,Shell,true,false,false,2,true,false,false,false +yls/corm_c,yls,Python,false,true,false,0,false,false,false,false +miolivc/flask-instagram,miolivc,Python,false,false,false,0,false,false,false,false +rbx-cone/cone-plugin,rbx-cone,Lua,true,false,false,1,false,true,false,false +frozenfoxx/grinder,frozenfoxx,Python,false,false,false,0,false,false,false,false +MasterChief-John-117/Firefox-Youtube-NoPolymer,MasterChief-John-117,JavaScript,false,false,false,0,false,false,false,false +chammerling87/dsafch,chammerling87,Java,false,false,true,0,false,false,false,false +andy.ami/Store,andy.ami,HTML,false,false,false,0,false,false,false,false +centerorbit/depcharge,centerorbit,Go,true,false,false,4,true,true,false,true +mvenezia/knative-helloworld-go,mvenezia,Go,false,false,false,0,false,false,false,false +flora-portal/flora-portal.gitlab.io-old,flora-portal,HTML,true,false,false,2,true,false,true,false +BENYAM1N/Text-Classification,BENYAM1N,Python,false,false,false,0,false,false,false,false +fresh-dev-department/vtbanbot,fresh-dev-department,Go,false,false,false,0,false,false,false,false +dbandstra/zig-comptime-pcx,dbandstra,,false,false,false,0,false,false,false,false +gnaar/piste,gnaar,Python,true,false,false,1,false,true,false,false +gnaar/powder,gnaar,JavaScript,true,false,false,1,false,true,false,false +gnaar/edge,gnaar,JavaScript,true,false,false,1,false,true,false,false +macprzepiora/grails-push-notifications,macprzepiora,CSS,false,false,false,0,false,false,false,false +guanguans/shadowsocks-manage-system,guanguans,PHP,false,false,false,0,false,false,false,false +liberime/liberime,liberime,C,false,false,false,0,false,false,false,false +anju.david/Training-Seed-Project,anju.david,JavaScript,false,false,false,0,false,false,false,false +HerrDierk/ArtworkLinux,HerrDierk,,false,false,false,0,false,false,false,false +tloki/SummerOfCode2018,tloki,TeX,false,false,false,0,false,false,false,false +morimekta/providence,morimekta,Java,true,false,true,2,false,false,false,false +mvenezia/knative-helloworld-go-config,mvenezia,,false,false,false,0,false,false,false,false +nmuller/champagne,nmuller,,false,false,false,0,false,false,false,false +MCForge/MinecraftForge,MCForge,Java,false,false,false,0,false,false,false,false +keshavashiya/nnn,keshavashiya,C,false,false,false,0,false,false,false,false +badam1/api-jwt-frontend,badam1,JavaScript,false,false,false,0,false,false,false,false +nleva/cuisines_registry,nleva,Java,false,false,false,0,false,false,false,false +vician/yubilock,vician,Shell,false,false,false,0,false,false,false,false +nekr0s/judge-problems,nekr0s,Java,false,false,false,0,false,false,false,false +favez/core,favez,PHP,false,false,false,0,false,false,false,false +whitehack/nest-starter-study,whitehack,JavaScript,false,false,false,0,false,false,false,false +deejtonks/RawM,deejtonks,Java,false,false,true,0,false,false,false,false +phyohtetarkar/github-jobs,phyohtetarkar,Kotlin,true,false,false,1,true,false,false,false +nerones/pdf-signature,nerones,PHP,true,false,false,1,false,true,false,false +dbal0/MathUVue,dbal0,TypeScript,false,false,false,0,false,false,false,false +InstitutMaupertuis/graph_rviz_plugin,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +aslamazlu/AnyDLBot,aslamazlu,Python,false,true,false,0,false,false,false,false +willianpaixao/willianpaixao.gitlab.io,willianpaixao,,true,false,false,1,false,true,false,false +Zenith-Public/Framework,Zenith-Public,JavaScript,false,false,false,0,false,false,false,false +daurnimator/lua-http,daurnimator,Lua,false,false,false,0,false,false,false,false +Tuii/rpg,Tuii,GDScript,false,false,false,0,false,false,false,false +ser/beton,ser,Python,false,true,false,0,false,false,false,false +esrifrance-public/orionpy/orionpy,esrifrance-public,Python,false,true,false,0,false,false,false,false +James_Mueller/RPGerman-RageMP,James_Mueller,,false,false,false,0,false,false,false,false +Chernobyl/_XFilter,Chernobyl,C#,false,false,false,0,false,false,false,false +jochembroekhoff/motorscript-compiler,jochembroekhoff,Java,true,false,true,3,true,false,false,false +TheGoldenSnorlax/HMG,TheGoldenSnorlax,Python,false,false,false,0,false,false,false,false +eclufsc/videocoding/satd_4_8_rtl_description,eclufsc,Verilog,false,false,false,0,false,false,false,false +xaander1/torrent-sites-extensions,xaander1,HTML,false,false,false,0,false,false,false,false +ChrisV_G/NetflixApisWithSpringData,ChrisV_G,Java,false,false,false,0,false,false,false,false +frontierdevelopmentlab/space-resources/mapstery,frontierdevelopmentlab,Python,false,false,false,0,false,false,false,false +hrbrmstr/drill-url-tools,hrbrmstr,Java,false,false,true,0,false,false,false,false +chemvi/chemnet_public,chemvi,JupyterNotebook,false,false,false,0,false,false,false,false +gnaar/off-piste,gnaar,Python,true,false,false,1,false,true,false,false +sarpdev/asyncbot,sarpdev,Python,false,true,false,0,false,false,false,false +toys-projects/Apache-Local-Domain,toys-projects,Python,false,true,false,0,false,false,false,false +kerel-fs/sat-polarplot.js,kerel-fs,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/gitter/gitter-marked,gitlab-org,HTML,true,false,false,2,true,true,false,false +Cyprias/SkunkRequire,Cyprias,JavaScript,false,false,false,0,false,false,false,false +Cyprias/SkunkSuite,Cyprias,JavaScript,false,false,false,0,false,false,false,false +Cyprias/SkunkShims,Cyprias,JavaScript,false,false,false,0,false,false,false,false +pothitos/Python_Pipeline,pothitos,Python,true,false,false,3,true,true,false,false +Cyprias/ScriptLauncher,Cyprias,JavaScript,false,false,false,0,false,false,false,false +theendcomplete/raspberry-pi4j-samples,theendcomplete,Java,false,false,false,0,false,false,false,false +jpbruyere/vgperf,jpbruyere,C,false,false,false,0,false,false,false,false +uoou/ytp,uoou,Shell,false,false,false,0,false,false,false,false +FlushHip/AdvancedDataStructure,FlushHip,C++,false,false,false,0,false,false,false,false +schiotz/NeuralNetwork_HRTEM,schiotz,JupyterNotebook,false,false,false,0,false,false,false,false +Moini/ink_extensions,Moini,,false,false,false,0,false,false,false,false +shutdown57/devdiaries.ml,shutdown57,Python,false,false,false,0,false,false,false,false +nmuller/champagne-dev,nmuller,JavaScript,false,false,false,0,false,false,false,false +nssy/blocks-bot,nssy,Python,false,false,false,0,false,false,false,false +daxm/Cisco-SDA-Setup-Notes,daxm,Python,false,true,false,0,false,false,false,false +11joselu/shot-me-app,11joselu,JavaScript,false,false,false,0,false,false,false,false +cryocaustik/ethminer-pynb,cryocaustik,JupyterNotebook,false,false,false,0,false,false,false,false +gjs-guide/gjs-guide.gitlab.io,gjs-guide,,true,false,false,1,false,true,false,false +YoshiRulz/VexilLogos,YoshiRulz,JavaScript,true,false,true,1,false,false,true,false +charlenopires/gitpratica,charlenopires,,false,false,false,0,false,false,false,false +interscity/dataflow-mapper,interscity,Java,false,false,false,0,false,false,false,false +hammad038/authentication-api,hammad038,JavaScript,false,false,false,0,false,false,false,false +luacas/DeezLoader-Android,luacas,C,false,false,false,0,false,false,false,false +ianalexan/GPS.js,ianalexan,JavaScript,false,false,false,0,false,false,false,false +gnaar/patrol,gnaar,,false,false,false,0,false,false,false,false +nickbrisebois12/Roguelike,nickbrisebois12,C++,false,false,false,0,false,false,false,false +newbare/KubernetesMicroservices,newbare,Java,false,false,false,0,false,false,false,false +amoghbabu/API_Server,amoghbabu,JavaScript,false,false,false,0,false,false,false,false +daurnimator/docker-hererocks,daurnimator,Shell,true,false,false,1,false,true,false,false +phyohtetarkar/FlexPOS,phyohtetarkar,Kotlin,false,false,false,0,false,false,false,false +bmosqueda/curso-taller-MEVN,bmosqueda,JavaScript,false,false,false,0,false,false,false,false +DstroiD/Stream-Multiplayer-Shooter,DstroiD,,false,false,false,0,false,false,false,false +jitendra_idl/E-Buy,jitendra_idl,HTML,false,false,false,0,false,false,false,false +nebulax/nebase,nebulax,C,false,false,false,0,false,false,false,false +nebulax/srun,nebulax,C,false,false,false,0,false,false,false,false +MrLinuxFish/dotfiles,MrLinuxFish,Shell,false,false,false,0,false,false,false,false +robotics_club/Dromeas,robotics_club,C++,false,false,false,0,false,false,false,false +WayneWang12/ali-resource,WayneWang12,Java,false,false,false,0,false,false,false,false +le2_lineage/android_system_sepolicy,le2_lineage,C,false,false,false,0,false,false,false,false +le2_lineage/android_frameworks_base,le2_lineage,,false,false,false,0,false,false,false,false +le2_lineage/android_build,le2_lineage,Makefile,false,false,false,0,false,false,false,false +devlug/devel/devTuxBot,devlug,Tcl,false,false,false,0,false,false,false,false +freeacs/freeacs,freeacs,Java,false,false,true,0,false,false,false,false +to1source-open-source/jsonqltools,to1source-open-source,JavaScript,true,false,false,1,false,false,true,false +le2_lineage/android_packages_apps_Settings,le2_lineage,Java,false,false,false,0,false,false,false,false +dsp_blackhat/dsp_blackhat_vagrant,dsp_blackhat,Ruby,false,false,false,0,false,false,false,false +IIHGSII/Gestor,IIHGSII,Java,false,false,false,0,false,false,false,false +jgxvx/cilician,jgxvx,PHP,true,false,false,1,false,true,false,false +codenegaar/TarnaNote,codenegaar,QML,false,false,false,0,false,false,false,false +hrbrmstr/ooni,hrbrmstr,R,false,false,false,0,false,false,false,false +LCaraccio/tes-lib,LCaraccio,Shell,true,false,false,3,false,true,true,false +liqiannice/mina-test,liqiannice,Java,false,false,true,0,false,false,false,false +TronFortyTwo/Hal,TronFortyTwo,C++,false,false,false,0,false,false,false,false +pbrunschwig/thunderbird-encryption-example,pbrunschwig,JavaScript,false,false,false,0,false,false,false,false +cn-ds/web-app,cn-ds,CSS,true,false,false,1,false,false,true,false +lanthier/py-dungeon-crawler,lanthier,Python,false,false,false,0,false,false,false,false +alaminmahamud/awesome-c,alaminmahamud,,false,false,false,0,false,false,false,false +neptuneandback/furlog-3d,neptuneandback,Rust,false,false,false,0,false,false,false,false +tecnoprofe/bootstrap_template,tecnoprofe,,false,false,false,0,false,false,false,false +ryanaghdam/stoneham.town,ryanaghdam,HTML,true,false,false,1,false,false,true,false +nonchip/steam_workaround_fsoverflow,nonchip,C,false,false,false,0,false,false,false,false +jrejosue/DeezLoader-Android,jrejosue,C,false,false,false,0,false,false,false,false +Exagone313/rnm-ng,Exagone313,Lua,false,false,false,0,false,false,false,false +agostini.tech/ATEdgeWeightedDigraph,agostini.tech,Swift,false,false,false,0,false,false,false,false +netikras/dev_rant_linux,netikras,Shell,false,false,false,0,false,false,false,false +rygoo/raven,rygoo,Go,true,false,false,2,true,false,false,false +LUI-3/components/messages,LUI-3,CSS,false,false,false,0,false,false,false,false +nmg/log-domain-filter,nmg,PostScript,false,false,false,0,false,false,false,false +1stDim/LiveComFramework,1stDim,Python,false,false,false,0,false,false,false,false +daktak/pebble-phone-batt-bar,daktak,C,true,false,false,1,true,false,false,false +ifwang/shadowsocks,ifwang,Python,false,false,false,0,false,false,false,false +iotssl/seniorsensor,iotssl,C++,false,false,false,0,false,false,false,false +maguohao2017/kaoqin,maguohao2017,Java,false,false,false,0,false,false,false,false +Rebhu_Computing/open-source/xarango,Rebhu_Computing,Elixir,false,false,false,0,false,false,false,false +nguyenduyquang06/practice-pronouce-using-bingapi,nguyenduyquang06,C#,false,false,false,0,false,false,false,false +nguyenduyquang06/blink-detect_haarcascade,nguyenduyquang06,C++,false,false,false,0,false,false,false,false +mexus/and-then2,mexus,Rust,true,false,false,1,false,true,false,false +mestafin/hc,mestafin,Go,false,false,false,0,false,false,false,false +majortom9/raspberrypi_cookbook_ed2,majortom9,Python,false,false,false,0,false,false,false,false +pikatrack/docker-deploy,pikatrack,,false,false,false,0,false,false,false,false +codecentricnl/summercourse-ci-cd,codecentricnl,Java,true,false,false,1,false,true,false,false +necheffa/amtt,necheffa,Go,false,false,false,0,false,false,false,false +tinkererr/ember,tinkererr,Java,true,false,true,1,false,true,false,false +lvidarte/learning-python,lvidarte,JupyterNotebook,false,false,false,0,false,false,false,false +apastuhov/i18next-tui,apastuhov,TypeScript,true,false,false,3,true,true,true,false +janardhansharma/assessmentz,janardhansharma,,false,false,false,0,false,false,false,false +XBagon/force_remove,XBagon,Rust,true,false,false,1,false,true,false,false +idrisgm/sistem-informasi-desa,idrisgm,HTML,false,false,false,0,false,false,false,false +OogieM/lambtrackerqueries_text_files,OogieM,,false,false,false,0,false,false,false,false +cegal/MOE,cegal,Python,true,false,false,2,false,false,false,false +dpredster/rosariosis,dpredster,PHP,false,false,false,0,false,false,false,false +astian-os/calamares-install,astian-os,QML,false,false,false,0,false,false,false,false +aquarthur/urlscan-io,aquarthur,Python,false,true,false,0,false,false,false,false +lyrahgames/latex_utilities,lyrahgames,TeX,false,false,false,0,false,false,false,false +vstconsulting/polemarch-ansible,vstconsulting,Python,true,false,false,3,false,true,false,true +dplanella/qreator,dplanella,Python,false,false,false,0,false,false,false,false +kikiChuang/Java-interview-questions,kikiChuang,HTML,false,false,false,0,false,false,false,false +kikiChuang/made-in-taiwan,kikiChuang,JavaScript,false,false,false,0,false,false,false,false +mszegedy/miniambrose,mszegedy,Python,false,false,false,0,false,false,false,false +tomderudder/mime,tomderudder,TypeScript,false,false,false,0,false,false,false,false +AnimusDesign/KotlinIMDBDemo,AnimusDesign,Kotlin,false,false,false,0,false,false,false,false +cryocaustik/ethminer,cryocaustik,JavaScript,false,false,false,0,false,false,false,false +sethbergman/node-express-demo,sethbergman,JavaScript,true,false,false,9,true,true,false,true +mnsanghvi/grgit,mnsanghvi,Groovy,false,false,false,0,false,false,false,false +jnda/FlashAlert,jnda,Kotlin,true,false,false,1,true,false,false,false +codenegaar/TarnaUSBStudio,codenegaar,C++,false,false,false,0,false,false,false,false +thanhns/luxury-hotel-huyen-intern,thanhns,,false,false,false,0,false,false,false,false +gavinwilkinson-ct/collatz,gavinwilkinson-ct,Haskell,false,false,false,0,false,false,false,false +michaeldong/demo-public,michaeldong,,false,false,false,0,false,false,false,false +gilou/_windlogger_digital,gilou,,false,false,false,0,false,false,false,false +gilou/_windlogger_shield,gilou,,false,false,false,0,false,false,false,false +DoS-Project/project_making,DoS-Project,,true,false,false,1,false,true,false,false +jacktheclicker/hugo,jacktheclicker,Go,false,false,false,0,false,false,false,false +7learn-experts/LaraCMS,7learn-experts,PHP,false,false,false,0,false,false,false,false +charts/components/gitlab-operator,charts,Go,true,false,false,2,true,true,false,false +Ganapathy16/webpage,Ganapathy16,HTML,false,false,false,0,false,false,false,false +L-4/love-arcade,L-4,Lua,false,false,false,0,false,false,false,false +keyage/SPZSoundGame,keyage,C#,false,false,false,0,false,false,false,false +staltz/estimate-progress,staltz,JavaScript,false,false,false,0,false,false,false,false +EmmaMkb/ClearOSWebFileManager,EmmaMkb,PHP,false,false,false,0,false,false,false,false +elioangels/branciao,elioangels,Shell,false,false,false,0,false,false,false,false +drummyfish/Arduboy_TD,drummyfish,C++,false,false,false,0,false,false,false,false +lgwilliams/freesia,lgwilliams,Python,false,false,false,0,false,false,false,false +ycabral/nodejs-boilerplate,ycabral,JavaScript,false,false,false,0,false,false,false,false +fhightower/ioc-utility,fhightower,Python,true,false,false,1,false,true,false,false +smartpartrol/seismic-vision-search,smartpartrol,JupyterNotebook,false,false,false,0,false,false,false,false +lemonlary/the-flash,lemonlary,C++,false,false,false,0,false,false,false,false +adolfoflores34632/DeezLoader-Android,adolfoflores34632,C,false,false,false,0,false,false,false,false +aespanhol5/301-comercio-cassandra,aespanhol5,Java,false,false,true,0,false,false,false,false +nd-cse-30341-fa18/cse-30341-fa18-website,nd-cse-30341-fa18,CSS,true,false,false,1,false,true,false,false +sat-metalab/slaps,sat-metalab,C++,false,false,false,0,false,false,false,false +TheLostLambda/project-loki,TheLostLambda,Rust,false,false,false,0,false,false,false,false +rDany/synthetic-data,rDany,JavaScript,false,false,false,0,false,false,false,false +fidencio.garrido/clinic-demo,fidencio.garrido,JavaScript,false,false,false,0,false,false,false,false +oksarein3110/RefillMyBottle,oksarein3110,Java,false,false,false,0,false,false,false,false +lleaff/madge-watch-gui,lleaff,JavaScript,false,false,false,0,false,false,false,false +laJaqueria/LaJaqueria,laJaqueria,HTML,false,false,false,0,false,false,false,false +mastour-anas/Python101,mastour-anas,,false,false,false,0,false,false,false,false +srrg-software/srrg2_scripts,srrg-software,Shell,false,false,false,0,false,false,false,false +jeth.xxiii/wayne-airlines,jeth.xxiii,CSS,false,false,true,0,false,false,false,false +syno3/BabyMux,syno3,Python,false,false,false,0,false,false,false,false +syno3/Python-programming-exercises,syno3,,false,false,false,0,false,false,false,false +syno3/termux-packages,syno3,Shell,false,false,false,0,false,false,false,false +gnaar/gear-ci-base,gnaar,,true,false,false,1,true,false,false,false +CLARIN-ERIC/compose_fluent_kibana,CLARIN-ERIC,Shell,false,false,false,0,false,false,false,false +gfoss/phygital-site,gfoss,CSS,true,false,false,2,false,true,true,false +examus/envjson,examus,Python,false,false,false,0,false,false,false,false +techembassy/react-morse,techembassy,JavaScript,false,false,false,0,false,false,false,false +ejakait/kagglehouseprices,ejakait,JupyterNotebook,false,false,false,0,false,false,false,false +fairy08/DetCal,fairy08,JavaScript,false,false,false,0,false,false,false,false +lboklin/Ghaskelly,lboklin,Haskell,false,false,false,0,false,false,false,false +LUI-3/components/base,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/buttons,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/buttons-extras,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/forms-extras,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/forms-validator,LUI-3,JavaScript,false,false,false,0,false,false,false,false +LUI-3/components/icons-fontawesome,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/icons-fontawesome-5,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/labels,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/pagebars,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/phone-navbar,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/tables,LUI-3,CSS,false,false,false,0,false,false,false,false +LUI-3/components/tablesorter,LUI-3,JavaScript,false,false,false,0,false,false,false,false +LUI-3/components/tabs,LUI-3,CSS,false,false,false,0,false,false,false,false +lboklin/Ghaskelly-template,lboklin,Haskell,false,false,false,0,false,false,false,false +andreqbs/ads_ling_prog_2,andreqbs,,false,false,false,0,false,false,false,false +Quintulius/update_nextcloud,Quintulius,Python,false,false,false,0,false,false,false,false +robarros/hubot-base,robarros,CoffeeScript,false,false,false,0,false,false,false,false +assess4osf/OSFtEsT,assess4osf,,false,false,false,0,false,false,false,false +frank_ak/formation_PMP,frank_ak,,true,false,false,1,false,false,true,false +Hesamkaveh/sansi_reactjs,Hesamkaveh,JavaScript,false,false,false,0,false,false,false,false +publiclab/plots2,publiclab,Ruby,true,false,false,1,false,true,false,false +archipel-somoco/archipel-app,archipel-somoco,JavaScript,false,false,false,0,false,false,false,false +archipel-somoco/archipel-ui,archipel-somoco,JavaScript,false,false,false,0,false,false,false,false +laurentbachelier/weboob,laurentbachelier,Python,true,false,false,3,true,true,true,false +sulsj/JgiRqcReadqc,sulsj,Python,false,false,false,0,false,false,false,false +lemonlary/tilemap-creator,lemonlary,C++,false,false,false,0,false,false,false,false +flora-portal/botanical-name-renderer,flora-portal,JavaScript,false,false,false,0,false,false,false,false +enzanki_ars/rocket-league-replay-analysis,enzanki_ars,Python,false,false,false,0,false,false,false,false +c410-f3r/mop,c410-f3r,Rust,true,false,false,1,false,true,false,false +AngelicLoki/gw2-auto-arc-updater,AngelicLoki,Batchfile,false,false,false,0,false,false,false,false +akibisuto/direkuta,akibisuto,Rust,true,false,false,3,true,true,false,false +100Aubergines/GamePrototype,100Aubergines,C#,false,false,false,0,false,false,false,false +frowzyispenguin/frowzy-music-player,frowzyispenguin,Python,false,false,false,0,false,false,false,false +teyalem/autolink,teyalem,Rust,false,false,false,0,false,false,false,false +subtledev/Mellisuga,subtledev,JavaScript,false,false,false,0,false,false,false,false +subtledev/pg-aura,subtledev,JavaScript,false,false,false,0,false,false,false,false +johnae/spook,johnae,MoonScript,false,false,false,0,false,false,false,false +johnae/ljsyscall,johnae,Lua,false,false,false,0,false,false,false,false +quibaritaenperdresatrompe/sdiscount,quibaritaenperdresatrompe,JavaScript,false,false,false,0,false,false,false,false +williamlrvs/C,williamlrvs,C,false,false,false,0,false,false,false,false +crave/meepwnctf2018-esor,crave,TeX,true,false,false,1,false,true,false,false +openlabasti/simcaa,openlabasti,JavaScript,false,false,false,0,false,false,false,false +willianpaixao/awesome-bjj,willianpaixao,,true,false,false,1,false,true,false,false +chin123/chin123.gitlab.io,chin123,HTML,true,false,false,1,false,false,true,false +ambrevar/hsync,ambrevar,Go,false,false,false,0,false,false,false,false +aalhour/TypeFunc,aalhour,,false,false,false,0,false,false,false,false +gregdhaem/my_project_trappes_symfony4_trng,gregdhaem,HTML,false,false,false,0,false,false,false,false +Madis0/Firefox-tweaks,Madis0,JavaScript,true,false,false,1,false,false,true,false +congvm.it/Surveillance-System,congvm.it,Python,false,false,false,0,false,false,false,false +amigasourcecodepreservation/computers-and-chaos-amiga-edition,amigasourcecodepreservation,Roff,false,false,false,0,false,false,false,false +valera540/Minesweeper,valera540,Java,false,false,false,0,false,false,false,false +kuhl/makelatex,kuhl,Python,false,false,false,0,false,false,false,false +Enc/rogue-in-the-dark,Enc,Rust,false,false,false,0,false,false,false,false +samsartor/dynpool,samsartor,Rust,true,false,false,2,false,true,true,false +Yonder-Dynamics/misc/wiki-home,Yonder-Dynamics,,true,false,false,1,false,false,true,false +iProgramme/spider,iProgramme,Python,false,false,false,0,false,false,false,false +cosban/persistence,cosban,Go,true,false,false,2,true,true,false,false +maulidyadwi/kalkulator,maulidyadwi,Java,false,false,false,0,false,false,false,false +rnjane/bookstore,rnjane,HTML,false,false,false,0,false,false,false,false +hosco/ops-deploy-kubernetes,hosco,Shell,true,false,false,1,true,false,false,false +14wnrkim/tapestry,14wnrkim,TypeScript,false,false,false,0,false,false,false,false +deepset-ai/open-source/glove-embeddings-de,deepset-ai,C,true,false,false,1,true,false,false,false +jarey/pdf.js,jarey,JavaScript,false,false,false,0,false,false,false,false +reinhardt.zundorf/wf-blown-away-by-books,reinhardt.zundorf,CSS,false,false,false,0,false,false,false,false +vrresto/il2ge,vrresto,C++,true,false,false,1,true,false,false,false +rgerardi/ansible_advanced_openstack,rgerardi,,false,false,false,0,false,false,false,false +bryceschober/conan-cpputest,bryceschober,Python,true,false,false,1,false,true,false,false +satisfiability01/splr,satisfiability01,Rust,true,false,false,1,true,false,false,false +lucasrthompson/Sonic-Bot-In-OpenAI-and-NEAT,lucasrthompson,Python,false,false,false,0,false,false,false,false +Coman-Packages/coman-ros-pkg,Coman-Packages,C++,false,false,false,0,false,false,false,false +oyk18_blokzincir/ballot,oyk18_blokzincir,,false,false,false,0,false,false,false,false +Coman-Packages/coman-orocos-pkg,Coman-Packages,C++,false,false,false,0,false,false,false,false +judahnator/json-manipulator,judahnator,PHP,true,false,false,2,false,false,false,false +lfiolhais/AdeptSim,lfiolhais,Rust,true,false,false,2,true,false,false,false +lfiolhais/adapt-mem-adept,lfiolhais,Rust,false,false,false,0,false,false,false,false +lfiolhais/Adept,lfiolhais,Scala,false,false,false,0,false,false,false,false +lfiolhais/Adept-TestFiles,lfiolhais,Assembly,false,false,false,0,false,false,false,false +smartpartrol/pdf-abstract-extractor,smartpartrol,Python,false,false,false,0,false,false,false,false +hnickisch/gpml-matlab,hnickisch,Matlab,false,false,false,0,false,false,false,false +Idean/idean-ng-charts,Idean,TypeScript,true,false,false,2,false,false,false,false +JOSM/docker-library,JOSM,Shell,true,false,false,1,true,false,false,false +Senzuwow/GryllsComboSounds,Senzuwow,Lua,false,false,false,0,false,false,false,false +alcaravanosu/exchangesve,alcaravanosu,,false,false,false,0,false,false,false,false +triplef/FazChanges,triplef,,false,false,false,0,false,false,false,false +discord-russian-contribution/discord-ru-docs,discord-russian-contribution,JavaScript,false,false,false,0,false,false,false,false +BerkeleyTrue/ghanima,BerkeleyTrue,,false,false,false,0,false,false,false,false +Sacules/dotfiles,Sacules,Perl,false,false,false,0,false,false,false,false +dheu/dotto,dheu,Python,false,false,false,0,false,false,false,false +thejsguys/donejs-user-media-selector,thejsguys,JavaScript,false,false,false,0,false,false,false,false +connor41/blog,connor41,Go,false,false,false,0,false,false,false,false +zopo803/python-tetris,zopo803,Python,false,false,false,0,false,false,false,false +oyk18_blokzincir/Diploma,oyk18_blokzincir,,false,false,false,0,false,false,false,false +ollesv/jobs-sendify,ollesv,JavaScript,false,false,false,0,false,false,false,false +squeakymouse-packages/squeakymouse-descr,squeakymouse-packages,Python,false,false,false,0,false,false,false,false +aleks001/haproxy19-centos,aleks001,Shell,true,false,false,1,false,true,false,false +glts/spexsd,glts,Clojure,false,false,false,0,false,false,false,false +alucard86/ebook-news-reader,alucard86,Kotlin,false,false,false,0,false,false,false,false +gregdhaem/LeCampusLesMureauxPostSoutenance,gregdhaem,PHP,false,false,false,0,false,false,false,false +straysh/WcCoin,straysh,JavaScript,false,false,false,0,false,false,false,false +raffaeldutra/raffaeldutra.github.io,raffaeldutra,HTML,true,false,false,2,true,false,true,false +MikhaelPA/Number2TextBahasaWPF,MikhaelPA,C#,false,false,false,0,false,false,false,false +jrsosadev/Greeter,jrsosadev,Java,false,false,false,0,false,false,false,false +HosteBin/yshalsager,HosteBin,,false,false,false,0,false,false,false,false +mehalter/backup-script,mehalter,Shell,false,false,false,0,false,false,false,false +kingnguyen/tinyerp-mobile,kingnguyen,C#,false,false,false,0,false,false,false,false +concreted0g/FOS_Engine_design,concreted0g,,false,false,false,0,false,false,false,false +TacoTheDank/SCR,TacoTheDank,Java,false,false,false,0,false,false,false,false +WMEScripts/WME-Wal-overlay,WMEScripts,JavaScript,false,false,false,0,false,false,false,false +Hakulaku/Poster-Resize-Plex,Hakulaku,Python,false,false,false,0,false,false,false,false +perfectimprints/amp-pages,perfectimprints,HTML,false,false,false,0,false,false,false,false +project601/project601-imagebuiler,project601,,false,false,false,0,false,false,false,false +project601/archBuilder,project601,Shell,false,false,false,0,false,false,false,false +ummels/www.ummels.de,ummels,HTML,true,false,false,2,true,false,false,false +sang01091997/docker-apache-php,sang01091997,,false,false,false,0,false,false,false,false +webdevops/Dockerfile,webdevops,Shell,false,false,false,0,false,false,false,false +just-a-guy/rclone-on-steroids,just-a-guy,Python,false,false,false,0,false,false,false,false +zsaleeba/persist,zsaleeba,C++,false,false,false,0,false,false,false,false +s.fuchs/prophane,s.fuchs,Python,true,false,false,1,false,true,false,false +Silver-Core/StrictPseudoCode,Silver-Core,Python,false,false,false,0,false,false,false,false +safish/racing,safish,JavaScript,false,false,false,0,false,false,false,false +Error1000/PaperInstaller,Error1000,Python,false,false,false,0,false,false,false,false +4shian20/wordpress_laravel,4shian20,PHP,false,false,false,0,false,false,false,false +dvdkon/jrutil,dvdkon,F#,false,false,false,0,false,false,false,false +benthin/cpe_cve_analyzer,benthin,Python,false,false,false,0,false,false,false,false +jokon/graphics_project,jokon,C++,false,false,false,0,false,false,false,false +dagistan/angular5-springBoot-mongoDB,dagistan,TypeScript,false,false,false,0,false,false,false,false +ectucker/ld42,ectucker,Dart,true,false,false,1,true,false,false,false +413x4/penhttpd,413x4,Python,false,false,false,0,false,false,false,false +ondasempre/Salesforce-Marketing-Cloud-Developer-Edition-Recipes,ondasempre,,false,false,false,0,false,false,false,false +Znoj-Mobile/diplomka,Znoj-Mobile,HTML,false,false,false,0,false,false,false,false +jwentwistle/chaos,jwentwistle,JavaScript,false,false,false,0,false,false,false,false +kivik/due-process,kivik,Ren'Py,false,false,false,0,false,false,false,false +concept10/resin-node-red,concept10,JavaScript,false,false,false,0,false,false,false,false +ahmeddaw/Mammoth,ahmeddaw,Kotlin,false,false,false,0,false,false,false,false +plopgrizzly/adi/asi_opengl,plopgrizzly,Rust,false,false,false,0,false,false,false,false +Macfanatic/ansible-letsEncryptForJSS,Macfanatic,Shell,false,false,false,0,false,false,false,false +plopgrizzly/adi/awi,plopgrizzly,Rust,false,false,false,0,false,false,false,false +GhastFilms/PieBot,GhastFilms,C++,true,false,false,1,true,false,false,false +gabrielxavier/docker-compose-grafana-monitoring,gabrielxavier,,false,false,false,0,false,false,false,false +databuildersh/br.com.databuilder.med,databuildersh,,false,false,false,0,false,false,false,false +xess777/veligosha,xess777,JavaScript,false,false,false,0,false,false,false,false +XDOSC/WIFI,XDOSC,,false,false,false,0,false,false,false,false +Spctrl/pleroma_ynh,Spctrl,Shell,false,false,false,0,false,false,false,false +autolife/development/infrastructure,autolife,HCL,false,false,false,0,false,false,false,false +vicenteyuen/saas-bi-utils,vicenteyuen,Go,false,false,false,0,false,false,false,false +OpenCoop/docs,OpenCoop,HTML,false,false,false,0,false,false,false,false +OpenCoop/website-OCE,OpenCoop,JavaScript,false,false,false,0,false,false,false,false +blockimmo-ch/blockimmo-contracts,blockimmo-ch,JavaScript,false,false,false,0,false,false,false,false +sklif.85/ft_darkly,sklif.85,Python,false,false,false,0,false,false,false,false +xyzs996/miwifi-ss,xyzs996,Shell,false,false,false,0,false,false,false,false +xyzs996/transmission,xyzs996,Shell,false,false,false,0,false,false,false,false +hexLucifer/ColourPicker,hexLucifer,Java,false,false,false,0,false,false,false,false +MisterEz/brain-app,MisterEz,JavaScript,false,false,false,0,false,false,false,false +shebinleovincent/pdf2html,shebinleovincent,JavaScript,false,false,false,0,false,false,false,false +emekgozluklu/OYYK2018-Blockchain,emekgozluklu,,false,false,false,0,false,false,false,false +shubham.prakash/udacity-pixel-art-maker-project,shubham.prakash,JavaScript,false,false,false,0,false,false,false,false +jacobcoughenour/pluginiconcreator,jacobcoughenour,JavaScript,false,false,false,0,false,false,false,false +necheffa/myrdrand,necheffa,C,false,false,false,0,false,false,false,false +necheffa/pgalloc,necheffa,C,false,false,false,0,false,false,false,false +redelmann/almundo_challenge,redelmann,JupyterNotebook,false,false,false,0,false,false,false,false +tribers-webstudio/trb_social,tribers-webstudio,CSS,false,false,false,0,false,false,false,false +bpkennedy/star-wars-shockball,bpkennedy,JavaScript,false,false,false,0,false,false,false,false +coringao/runescape,coringao,Roff,false,false,false,0,false,false,false,false +akj2995/fandom,akj2995,Java,false,false,false,0,false,false,false,false +Rochambeau/mtwaypoints,Rochambeau,Lua,false,false,false,0,false,false,false,false +simonbreiter/color-name,simonbreiter,JavaScript,true,false,false,3,true,true,true,false +Senzuwow/GryllsUnitFrames,Senzuwow,Lua,false,false,false,0,false,false,false,false +csmsuweb/webprotemp,csmsuweb,PHP,false,false,false,0,false,false,false,false +jovana95/ChatBotApp,jovana95,JavaScript,false,false,false,0,false,false,false,false +josselinMorau/echec,josselinMorau,Python,false,false,false,0,false,false,false,false +alfarer/Ejercicios_EPED,alfarer,Java,false,false,false,0,false,false,false,false +ramsondon/pybabel-express,ramsondon,JavaScript,false,false,false,0,false,false,false,false +SurendraTamang/LinuxLearning,SurendraTamang,,false,false,false,0,false,false,false,false +SITTV/sittv.gitlab.io,SITTV,CSS,true,false,false,2,false,false,false,false +ozkan32/Prometheus-Alertmanager-Grafana-NodeExporter,ozkan32,Shell,false,false,false,0,false,false,false,false +usherbrooke/igl-601/demo-gitlab,usherbrooke,JavaScript,true,false,false,2,true,true,false,false +aaxsh/simple-amazon-scraper,aaxsh,Python,false,true,false,0,false,false,false,false +uhh_templates/uhhposter,uhh_templates,TeX,false,false,false,0,false,false,false,false +3MI/SoftwareDesignProject,3MI,Python,true,true,false,1,false,true,false,false +MarcusJohnson91/OVIA,MarcusJohnson91,C,false,false,false,0,false,false,false,false +tiagotriques/S04ICC2,tiagotriques,C,false,false,false,0,false,false,false,false +JoHoelken/estimator,JoHoelken,Java,false,false,true,0,false,false,false,false +avipedia78/fgccfl-congress-manual,avipedia78,TeX,false,false,false,0,false,false,false,false +badbounty/dvcw,badbounty,JavaScript,false,false,false,0,false,false,false,false +felixab22/adminpro,felixab22,CSS,false,false,false,0,false,false,false,false +fenrirunbound/pipeline-queue,fenrirunbound,Go,true,false,false,2,true,false,false,true +dminca/psql-cluster,dminca,Shell,false,false,false,0,false,false,false,false +ColoradoSchoolOfMines/acm-planning,ColoradoSchoolOfMines,,false,false,false,0,false,false,false,false +PhilippHeuer/war3-data,PhilippHeuer,Objective-J,false,false,false,0,false,false,false,false +arjunvnair/ParfA,arjunvnair,Java,false,false,false,0,false,false,false,false +the_usk/libuctest,the_usk,C,true,false,false,1,true,false,false,false +vuthede/crawling_dictionary,vuthede,JupyterNotebook,false,false,false,0,false,false,false,false +OllieZheng/COMP388_NLP_ML,OllieZheng,JupyterNotebook,false,false,false,0,false,false,false,false +silvercorp/startup,silvercorp,,false,false,false,0,false,false,false,false +onewhosaynope/sex_in_nine,onewhosaynope,,false,false,false,0,false,false,false,false +tue-umphy/python3-sensemapi,tue-umphy,Python,true,false,false,3,false,true,true,false +littleblue/silvereye,littleblue,,false,false,false,0,false,false,false,false +matthias-weiss/musicala,matthias-weiss,Java,false,false,false,0,false,false,false,false +JelF/monad_router,JelF,Ruby,true,false,false,2,false,true,false,false +victorlapin/usage-stats,victorlapin,Kotlin,true,false,false,1,true,false,false,false +wereoctopus/fantasy_character_generator,wereoctopus,Python,false,false,false,0,false,false,false,false +testapp-system/testapp-backend,testapp-system,PHP,false,false,false,0,false,false,false,false +McKimm/mckimm.gitlab.io,McKimm,Shell,false,false,false,0,false,false,false,false +codrhackr/java-algorithms,codrhackr,Java,false,false,false,0,false,false,false,false +IsidroMar95/library-epca,IsidroMar95,PHP,false,false,false,0,false,false,false,false +blyzer/HeeP.BaseArchitecture,blyzer,C#,false,false,false,0,false,false,false,false +joprotin/symfony/custom-user-management-sf4,joprotin,PHP,true,false,false,1,false,false,false,true +Nkekev/Superbeat-Xonic-Extended,Nkekev,,false,false,false,0,false,false,false,false +Dxc123/GitlabTestDemo,Dxc123,Objective-C,true,false,false,4,true,false,true,false +cosmicApotheosis/web3-calendar,cosmicApotheosis,JavaScript,false,false,false,0,false,false,false,false +Whitecity10/webpro61sec1,Whitecity10,PHP,false,false,false,0,false,false,false,false +BlakeB415/Base-CosmicFramework-App,BlakeB415,PHP,false,false,false,0,false,false,false,false +myominn/AlphaFramework,myominn,PHP,false,false,false,0,false,false,false,false +michaelsboost/michaelsboost.gitlab.io,michaelsboost,HTML,false,false,false,0,false,false,false,false +DrCherry/photography,DrCherry,HTML,true,false,false,1,false,false,true,false +jeth.xxiii/wayne-airlines-registry,jeth.xxiii,Java,false,false,true,0,false,false,false,false +jeth.xxiii/wayne-airlines-api,jeth.xxiii,Java,false,false,true,0,false,false,false,false +jeth.xxiii/wayne-airlines-security-auth,jeth.xxiii,Java,false,false,true,0,false,false,false,false +jeth.xxiii/wayne-airlines-zuul-server,jeth.xxiii,Java,false,false,true,0,false,false,false,false +sysulion_code/RM_Trainning_Tasks,sysulion_code,,false,false,false,0,false,false,false,false +le2_lineage/android,le2_lineage,,false,false,false,0,false,false,false,false +maike.me/youtube-dlmp3.com,maike.me,Go,false,false,false,0,false,false,false,false +projet_ci_sll/Projet_CI,projet_ci_sll,Java,false,false,true,0,false,false,false,false +maike.me/octo.social,maike.me,,false,false,false,0,false,false,false,false +singhshyam/Parainfia-EEG,singhshyam,QML,false,false,false,0,false,false,false,false +custom_components/wienerlinien,custom_components,Python,true,false,false,2,true,false,true,false +Collective68/Collective68,Collective68,HTML,true,false,false,1,false,false,true,false +auberginelinux/gats,auberginelinux,Shell,false,false,false,0,false,false,false,false +nd-cse-30341-fa18/cse-30341-fa18-assignments,nd-cse-30341-fa18,Python,true,false,false,1,false,true,false,false +justynclark/modernfrontend.io,justynclark,JavaScript,false,false,false,0,false,false,false,false +PublicMagicWeb/mgTourOfHeroes,PublicMagicWeb,,false,false,false,0,false,false,false,false +PublicMagicWeb/ngTourOfHeroes,PublicMagicWeb,TypeScript,false,false,false,0,false,false,false,false +p8n/verso,p8n,JavaScript,true,false,false,1,false,true,false,false +hrbrmstr/homebrewanalytics,hrbrmstr,R,false,false,false,0,false,false,false,false +benjymous/nominal,benjymous,JavaScript,false,false,false,0,false,false,false,false +charles.gargasson/PstreeCheck,charles.gargasson,Python,false,false,false,0,false,false,false,false +crumdev/pci_review_script,crumdev,Python,true,true,false,1,false,true,false,false +michelsantos10/game-question-service,michelsantos10,Java,true,false,true,1,true,false,false,false +kazimuth/carbon-credits-demo,kazimuth,TypeScript,false,false,false,0,false,false,false,false +visomi.dev/vue-bulma,visomi.dev,Vue,false,false,false,0,false,false,false,false +Eduwzin/slime-defense,Eduwzin,GDScript,false,false,false,0,false,false,false,false +tubowen/hahaha,tubowen,HTML,false,false,false,0,false,false,false,false +cryogenweb/cryogenweb.gitlab.io,cryogenweb,HTML,true,false,false,1,false,false,true,false +jinnysaw/saas-project-app,jinnysaw,Ruby,false,false,false,0,false,false,false,false +ArthurYu/phpc,ArthurYu,Rust,false,false,false,0,false,false,false,false +ankit-mirror/gnu/glibc,ankit-mirror,C,false,false,false,0,false,false,false,false +AndLydakis/visual_odometry,AndLydakis,C++,false,false,false,0,false,false,false,false +matwong/hometoapi,matwong,JavaScript,false,false,false,0,false,false,false,false +LarsR/3dmonitor,LarsR,Go,false,false,false,0,false,false,false,false +amunizp/c4ad-hugo,amunizp,HTML,true,false,false,1,false,true,false,false +mschleeweiss/eslint-plugin-ui5,mschleeweiss,JavaScript,false,false,false,0,false,false,false,false +Kartoffelsaft/SDLGameTest,Kartoffelsaft,C++,false,false,false,0,false,false,false,false +simeunovics/triangle,simeunovics,JavaScript,true,false,false,1,false,true,false,false +GeneralKenobee/Thesis-Title-Generator,GeneralKenobee,HTML,true,false,false,1,false,false,true,false +Talibri/DiscordBot,Talibri,Python,false,false,false,0,false,false,false,false +keybase_ua/rules,keybase_ua,,false,false,false,0,false,false,false,false +clebloas/jds,clebloas,Java,false,false,true,0,false,false,false,false +zygoon/fedora29,zygoon,Makefile,false,false,false,0,false,false,false,false +amdgpu/docs/amdgpu-install,amdgpu,CSS,false,false,false,0,false,false,false,false +gorbatova/yolo,gorbatova,JavaScript,false,false,false,0,false,false,false,false +dhbmarcos/wault,dhbmarcos,JavaScript,false,false,false,0,false,false,false,false +gmbarrera/seminario_lenguajes,gmbarrera,Python,false,true,false,0,false,false,false,false +Magrini/pds2018_emj,Magrini,CSS,false,false,false,0,false,false,false,false +autoferrit/writingco.de,autoferrit,HTML,false,false,false,0,false,false,false,false +topicos-computacao-I-rodrigo/Magma1,topicos-computacao-I-rodrigo,HTML,false,false,false,0,false,false,false,false +jow-ct/heise-rss,jow-ct,Dart,false,false,false,0,false,false,false,false +YinSena/html,YinSena,,false,false,false,0,false,false,false,false +arham.anwar/cordova-plugin-mockchecker,arham.anwar,Java,false,false,false,0,false,false,false,false +maike.me/maike.me,maike.me,HTML,true,false,false,1,false,true,false,false +ShakedHazon/LearnReact,ShakedHazon,JavaScript,true,false,false,1,false,false,true,false +Nifou/Minetrucs,Nifou,JavaScript,false,false,false,0,false,false,false,false +gavz/BurpExtension-WhatsApp-Decryption-CheckPoint,gavz,Python,false,false,false,0,false,false,false,false +gavz/AntiDebug,gavz,C#,false,false,false,0,false,false,false,false +gavz/java-stager,gavz,Java,false,false,true,0,false,false,false,false +gavz/UnstoppableService,gavz,C#,false,false,false,0,false,false,false,false +fathom/contracts,fathom,JavaScript,true,false,false,3,false,true,true,false +tuc_graphql/plugins,tuc_graphql,JavaScript,false,false,false,0,false,false,false,false +Manza13/C-SOCKETS,Manza13,C,false,false,false,0,false,false,false,false +Manza13/Jueves,Manza13,Python,false,true,false,0,false,false,false,false +Manza13/Ransomware.py,Manza13,Python,false,false,false,0,false,false,false,false +tekmason/fusionpbx-issues,tekmason,,false,false,false,0,false,false,false,false +Cliplicht/cakeguard,Cliplicht,C++,false,false,false,0,false,false,false,false +NextHendrix/NumberwangBot,NextHendrix,Haskell,false,false,false,0,false,false,false,false +SirRandall/SuperMarioMakerBot,SirRandall,Python,false,false,false,0,false,false,false,false +NotMarek/raspi-telegram-bot,NotMarek,,false,false,false,0,false,false,false,false +ryvnf/explosions,ryvnf,Lua,false,false,false,0,false,false,false,false +ldjam/writespace,ldjam,Lua,true,false,false,2,true,false,true,false +Myzh/audio-visualizer,Myzh,JavaScript,true,false,false,1,false,false,true,false +DalmeGNU/gnusocial.network-es,DalmeGNU,HTML,false,false,false,0,false,false,false,false +elioclerics/icarus,elioclerics,JavaScript,false,false,false,0,false,false,false,false +GatewayBit/sfml-mines,GatewayBit,C++,false,false,false,0,false,false,false,false +GatewayBit/SFML-Pong,GatewayBit,C++,false,false,false,0,false,false,false,false +GatewayBit/TextAdvEngine,GatewayBit,Java,false,false,false,0,false,false,false,false +StructByLightning/stax,StructByLightning,JavaScript,false,false,false,0,false,false,false,false +ajth/interactive-coding-challenges,ajth,Python,false,true,false,0,false,false,false,false +ajth/jrnl,ajth,Python,false,false,false,0,false,false,false,false +gp-examples/tokenize/tokenize_nodejs,gp-examples,JavaScript,false,false,false,0,false,false,false,false +uspgamedev/cuttingedge-screensaver,uspgamedev,GDScript,false,false,false,0,false,false,false,false +daque/libdaque,daque,D,false,false,false,0,false,false,false,false +protist/pacolog,protist,Shell,false,false,false,0,false,false,false,false +Ilovenjoylife/pyauto-1,Ilovenjoylife,Python,false,false,false,0,false,false,false,false +drachlyznardh/cadenaz,drachlyznardh,Python,false,false,false,0,false,false,false,false +Kage-Yami/exapunks-solutions,Kage-Yami,,false,false,false,0,false,false,false,false +biorobgrp/coman-ros-pkg,biorobgrp,C++,false,false,false,0,false,false,false,false +Error1000/automatron9000,Error1000,Batchfile,false,false,false,0,false,false,false,false +SekhmetDesign/ACCM1,SekhmetDesign,,false,false,false,0,false,false,false,false +SekhmetDesign/ACCM2,SekhmetDesign,,false,false,false,0,false,false,false,false +SekhmetDesign/handh,SekhmetDesign,,false,false,false,0,false,false,false,false +flatiron-dc/wedding_invitation,flatiron-dc,HTML,true,false,false,1,false,false,true,false +centerorbit/release-github,centerorbit,PHP,true,false,false,2,true,false,false,false +ScyDev/Critically-Entangled,ScyDev,GDScript,false,false,false,0,false,false,false,false +ccCam/LDJam42,ccCam,GDScript,false,false,false,0,false,false,false,false +IDF31/idf31.gitlab.io,IDF31,HTML,true,false,false,1,false,false,true,false +nknowles88/angular-starter,nknowles88,Shell,false,false,false,0,false,false,false,false +HS_Aalen_RN/Aalener_Optik-Formelrechner,HS_Aalen_RN,Java,false,false,false,0,false,false,false,false +Sulumbek/CloudAddressBook,Sulumbek,Java,false,false,false,0,false,false,false,false +savagemike/docker-wp,savagemike,,false,false,false,0,false,false,false,false +chozorho/conquest,chozorho,C++,false,false,false,0,false,false,false,false +HackWarsOnline/jury,HackWarsOnline,CSS,false,false,false,0,false,false,false,false +daygle/node-multi-hashing-full,daygle,C,false,false,false,0,false,false,false,false +Req/ltp,Req,HTML,false,false,false,0,false,false,false,false +prokopyl/classy-vuex,prokopyl,TypeScript,false,false,false,0,false,false,false,false +msenell/TBDBYK2018,msenell,Java,false,false,false,0,false,false,false,false +karuppiah7890/gitlab-ci-console-colors,karuppiah7890,JavaScript,true,false,false,1,false,true,false,false +himanshu9/discovery-token,himanshu9,JavaScript,false,false,false,0,false,false,false,false +open-archives-data-rescue/climate-data-rescue,open-archives-data-rescue,Ruby,true,false,false,1,true,false,false,false +tatkins/myconfig,tatkins,Vimscript,false,false,false,0,false,false,false,false +onnoowl/rustone,onnoowl,Rust,false,false,false,0,false,false,false,false +sixteenbitsystems/gbz-setup,sixteenbitsystems,Shell,false,false,false,0,false,false,false,false +yogonza524/info-asistencia,yogonza524,Java,false,false,true,0,false,false,false,false +Dwood023/Blog,Dwood023,JavaScript,false,false,false,0,false,false,false,false +romeroyonatan/truco,romeroyonatan,CSS,true,false,false,1,false,false,true,false +john1984/chat-app,john1984,JavaScript,false,false,false,0,false,false,false,false +mildlyparallel/0NFS,mildlyparallel,Shell,false,false,false,0,false,false,false,false +admicos/LD42,admicos,GDScript,false,false,false,0,false,false,false,false +CoalZombik/CDAR,CoalZombik,C#,true,false,false,1,true,false,false,false +hugomarquez/programacionWeb,hugomarquez,JavaScript,false,false,false,0,false,false,false,false +kirbo/cozify-rest-api-client,kirbo,TypeScript,true,false,false,4,true,true,false,true +bpkennedy/da-big-boss,bpkennedy,JavaScript,false,false,false,0,false,false,false,false +ColoradoSchoolOfMines/acm-officer-resources,ColoradoSchoolOfMines,Python,true,true,false,1,false,false,true,false +cpsc659-bim/assignments/f18-assignments,cpsc659-bim,Python,false,false,false,0,false,false,false,false +camiloYateY2018/Programcion_Avanzada_Ejercicios,camiloYateY2018,Java,false,false,false,0,false,false,false,false +quanticasoft/mssqlmanager,quanticasoft,Pascal,false,false,false,0,false,false,false,false +hieyou1/MIMR,hieyou1,JavaScript,false,false,false,0,false,false,false,false +dbx-apj/node-scripts,dbx-apj,JavaScript,false,false,false,0,false,false,false,false +exsgo/expresso-lang,exsgo,C#,false,false,false,0,false,false,false,false +DatacenterSec/NomadCluster,DatacenterSec,Ruby,true,false,false,2,false,false,false,false +fethalen/phylopypruner,fethalen,Python,false,false,false,0,false,false,false,false +earvinpiamonte/codeigniter-3.1.9-template,earvinpiamonte,PHP,false,false,false,0,false,false,false,false +monu.mehata/Stripe-Connect,monu.mehata,PHP,false,false,false,0,false,false,false,false +chengli.zou/clzblog,chengli.zou,HTML,false,false,true,0,false,false,false,false +NickHoB/CORD_Automation,NickHoB,Shell,false,false,false,0,false,false,false,false +seelts/wetransferbot,seelts,JavaScript,false,false,false,0,false,false,false,false +rdodin/nuxctl_readme,rdodin,,false,false,false,0,false,false,false,false +BramMulder/Recommendation_Algorithms_Revised,BramMulder,C#,false,false,false,0,false,false,false,false +BramMulder/Processing-Java,BramMulder,Processing,false,false,false,0,false,false,false,false +BramMulder/K-Means_Algorithm,BramMulder,C#,false,false,false,0,false,false,false,false +BramMulder/Forecasting-SES-DES,BramMulder,C#,false,false,false,0,false,false,false,false +BramMulder/DataAnalysis_Algorithms,BramMulder,C#,false,false,false,0,false,false,false,false +eforstner/schachinger-bestellplattform-server,eforstner,Java,false,false,true,0,false,false,false,false +therm0m1x/tm5-sources,therm0m1x,C,false,false,false,0,false,false,false,false +phinicota/godoit,phinicota,Go,true,false,false,2,true,true,false,false +michelsantos10/game-shell,michelsantos10,Java,false,false,true,0,false,false,false,false +transybao93/basic-docker,transybao93,,false,false,false,0,false,false,false,false +Lexinek/nette-camp-deployer,Lexinek,PHP,true,false,false,3,true,true,true,false +mech-lang/mech,mech-lang,Rust,true,false,false,1,false,true,false,false +enginerd/backend,enginerd,Go,false,false,false,0,false,false,false,false +nothingismagick/quasar-starter-ssr-pwa-jest-cypress,nothingismagick,JavaScript,false,false,false,0,false,false,false,false +veloren/site,veloren,CSS,false,false,false,0,false,false,false,false +JuampaHernandez/FlotaVehicular-Desktop,JuampaHernandez,Java,false,false,false,0,false,false,false,false +umichcreative/static-starter-kit,umichcreative,JavaScript,false,false,false,0,false,false,false,false +hstefan/unix-utils,hstefan,Rust,false,false,false,0,false,false,false,false +zieone/website,zieone,CSS,true,false,false,1,false,true,false,false +BlackEdder/karmawarrior,BlackEdder,D,false,false,false,0,false,false,false,false +Jrahme/smart-mark,Jrahme,Vimscript,false,false,false,0,false,false,false,false +link2xt/pwsafe-rs,link2xt,Rust,true,false,false,1,false,true,false,false +catafesta/scrum,catafesta,,false,false,false,0,false,false,false,false +pedromaia02/ns3_DM_CSAT,pedromaia02,Python,false,false,false,0,false,false,false,false +jackobrien22/jackobrien22.gitlab.io,jackobrien22,CSS,true,false,false,1,false,false,true,false +mech-lang/assets,mech-lang,CSS,false,false,false,0,false,false,false,false +krushnaarengarajan/DLVR-CEN17006,krushnaarengarajan,JupyterNotebook,false,false,false,0,false,false,false,false +iShah/test,iShah,,false,false,false,0,false,false,false,false +WorldBrain/memex-root-server,WorldBrain,TypeScript,true,false,false,4,true,false,true,false +WorldBrain/direct-linking-backend,WorldBrain,CSS,false,false,false,0,false,false,false,false +gitlab-org/async-retrospectives,gitlab-org,Ruby,true,false,false,2,false,true,false,false +pandark/rustlings,pandark,Rust,false,false,false,0,false,false,false,false +michelsantos10/kafka-example,michelsantos10,Java,false,false,true,0,false,false,false,false +ilya.filippov/gitlab_docker,ilya.filippov,Shell,false,false,false,0,false,false,false,false +IvanSanchez/Leaflet.RepeatedMarkers,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +NexusPieX/build,NexusPieX,Makefile,false,false,false,0,false,false,false,false +NexusPieX/device_lge_bullhead-kernel,NexusPieX,,false,false,false,0,false,false,false,false +NexusPieX/device_lge_bullhead-vendorimage,NexusPieX,Makefile,false,false,false,0,false,false,false,false +NexusPieX/frameworks_av,NexusPieX,C++,false,false,false,0,false,false,false,false +NexusPieX/manifest,NexusPieX,,false,false,false,0,false,false,false,false +NexusPieX/vendor_lge,NexusPieX,Makefile,false,false,false,0,false,false,false,false +NexusPieX/frameworks_base,NexusPieX,Java,false,false,false,0,false,false,false,false +arigato-java/hubot-javabutton,arigato-java,CoffeeScript,false,false,false,0,false,false,false,false +Volobuev/ks-book-shelf,Volobuev,TypeScript,true,false,false,1,false,true,false,false +larsyunker/unithandler,larsyunker,Python,false,true,false,0,false,false,false,false +Mrtops/Simple-Programs,Mrtops,JavaScript,false,false,false,0,false,false,false,false +cloud.yantra.oss/microservice-patterns-cqrs,cloud.yantra.oss,Scala,false,false,false,0,false,false,false,false +c88lopez/whatToDo,c88lopez,,false,false,false,0,false,false,false,false +cypress-io/cypress-example-kitchensink,cypress-io,HTML,true,false,false,2,true,true,false,false +xavialex7/object-detection,xavialex7,Python,false,false,false,0,false,false,false,false +xavialex7/danger-prevention,xavialex7,Python,false,false,false,0,false,false,false,false +jddarcy/jdk,jddarcy,Java,false,false,false,0,false,false,false,false +alaskalinuxuser/android_bootanimations,alaskalinuxuser,,false,false,false,0,false,false,false,false +ikem-krueger/code_snippets,ikem-krueger,Python,false,false,false,0,false,false,false,false +ikem-krueger/ebooks,ikem-krueger,,false,false,false,0,false,false,false,false +ikem-krueger/grub-boot-manager,ikem-krueger,Python,false,false,false,0,false,false,false,false +ikem-krueger/gtk-user-dirs-update,ikem-krueger,Python,false,false,false,0,false,false,false,false +ikem-krueger/grive2tray,ikem-krueger,Python,false,false,false,0,false,false,false,false +ikem-krueger/xbm-editor,ikem-krueger,Python,false,false,false,0,false,false,false,false +c.chamandana/KinetiX,c.chamandana,C#,false,false,false,0,false,false,false,false +kazizi/Walking-School-Bus-Android-Application,kazizi,Java,false,false,false,0,false,false,false,false +uta-gi/uta-pns,uta-gi,C#,false,false,false,0,false,false,false,false +coreynwops/decred-dev-docs,coreynwops,HTML,true,false,false,3,false,true,true,false +JoaGC/DeezLoader-Android,JoaGC,C,false,false,false,0,false,false,false,false +luishck/librecademy,luishck,Ruby,true,false,false,1,false,true,false,false +VanessaE/led_marquee,VanessaE,Lua,false,false,false,0,false,false,false,false +ColemanWord/golang-webdev,ColemanWord,Go,false,false,false,0,false,false,false,false +huang1991/iosched,huang1991,Kotlin,false,false,false,0,false,false,false,false +dosuken123/JUnit-test-reports,dosuken123,HTML,true,false,false,1,false,true,false,false +Jurabek/Restaurant-App,Jurabek,C#,false,false,false,0,false,false,false,false +michelsantos10/game-service,michelsantos10,Java,false,false,true,0,false,false,false,false +SaxOpilatov/ts-starter,SaxOpilatov,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/security-products/demos/protobuf,gitlab-org,C++,false,false,false,0,false,false,false,false +X3n0m0rph59/precached,X3n0m0rph59,Rust,true,false,false,1,false,true,false,false +X3n0m0rph59/precached-gui,X3n0m0rph59,Rust,true,false,false,1,false,true,false,false +pcnuness/vagrant/zabbix,pcnuness,,false,false,false,0,false,false,false,false +link0ff/emacs-wincows,link0ff,EmacsLisp,false,false,false,0,false,false,false,false +codecarrot/logchimp/logchimp-starter-kit,codecarrot,Ruby,false,false,false,0,false,false,false,false +oleg.balunenko/coursera,oleg.balunenko,Go,false,false,false,0,false,false,false,false +oleg.balunenko/leetcode_problems,oleg.balunenko,Go,false,false,false,0,false,false,false,false +oleg.balunenko/interview_tasks,oleg.balunenko,Go,false,false,false,0,false,false,false,false +oleg.balunenko/logs-converter,oleg.balunenko,Go,true,false,false,3,true,true,false,false +oleg.balunenko/testing_scripts,oleg.balunenko,Shell,false,false,false,0,false,false,false,false +objectia/help-center,objectia,CSS,true,false,false,1,false,true,false,false +stonecompass/rustgameengine,stonecompass,Rust,false,false,false,0,false,false,false,false +odilon11/analyse,odilon11,,false,false,false,0,false,false,false,false +eelz/LeapFrog,eelz,Python,false,false,false,0,false,false,false,false +rnxpyke/rustf_ck,rnxpyke,Rust,false,false,false,0,false,false,false,false +Kastrati/Funkstation,Kastrati,C,false,false,false,0,false,false,false,false +scripters.ar/ArduinoBasico,scripters.ar,,false,false,false,0,false,false,false,false +YottaDB/DBMS/YDBOcto,YottaDB,C,true,false,false,4,true,true,false,true +link0ff/emacs-ee,link0ff,EmacsLisp,false,false,false,0,false,false,false,false +raphael.medeiros.alves/estrutura,raphael.medeiros.alves,Python,false,false,false,0,false,false,false,false +kodakduck/AutonomousDrivingCookbook,kodakduck,JupyterNotebook,false,false,false,0,false,false,false,false +fabiotk/ImageboardBrasil,fabiotk,PHP,false,false,false,0,false,false,false,false +eQuation/util-scripts,eQuation,Shell,false,false,false,0,false,false,false,false +lishiyu/ILRuntime,lishiyu,C#,false,false,false,0,false,false,false,false +InduprasadSR/Hybrid-Robot-Framework,InduprasadSR,RobotFramework,false,false,false,0,false,false,false,false +mobilitylabsmadrid/reactive_context/examples_utilities/observe_collection,mobilitylabsmadrid,Python,false,false,false,0,false,false,false,false +bobbijvoet/timesheetx,bobbijvoet,,false,false,false,0,false,false,false,false +cartr/macrodcl,cartr,Rust,true,false,false,1,false,true,false,false +m03geek/fastify-status,m03geek,JavaScript,true,false,false,3,false,true,false,true +incomprehensibleaesthetics/gitlab-cli-reports,incomprehensibleaesthetics,Python,false,false,false,0,false,false,false,false +slcu/teamHJ/niklas/DiffEqParameters.jl,slcu,Julia,false,false,false,0,false,false,false,false +luiz740/IC_PerineWeb,luiz740,HTML,false,false,false,0,false,false,false,false +MatCox/DSY,MatCox,Java,false,false,false,0,false,false,false,false +sohaibazed/contrail-gatewayless-forwarding,sohaibazed,Shell,false,false,false,0,false,false,false,false +networkAutomation/Ansible_Cumulus,networkAutomation,Ruby,false,false,false,0,false,false,false,false +networkAutomation/django_fullstack,networkAutomation,Python,false,false,false,0,false,false,false,false +networkAutomation/mac_address_finder,networkAutomation,Python,false,false,false,0,false,false,false,false +Federico87/networkAutomation,Federico87,Python,false,false,false,0,false,false,false,false +networkAutomation/network_device_configurator,networkAutomation,Python,false,false,false,0,false,false,false,false +networkAutomation/ASA_acl_configurator,networkAutomation,Python,false,false,false,0,false,false,false,false +networkAutomation/SRX_policy_configurator,networkAutomation,Python,false,false,false,0,false,false,false,false +networkAutomation/pip_custom_modules,networkAutomation,Python,false,false,false,0,false,false,false,false +networkAutomation/API_miscellaneous,networkAutomation,Python,false,false,false,0,false,false,false,false +singh1114/drones,singh1114,Python,false,true,false,0,false,false,false,false +AdmiralSpaceKraken/HotlineMiamiClone,AdmiralSpaceKraken,C#,false,false,false,0,false,false,false,false +skarva/bcr,skarva,GDScript,false,false,false,0,false,false,false,false +daddy366/android_packages_apps_Stk,daddy366,Java,false,false,false,0,false,false,false,false +SoHigh/Nergigante,SoHigh,JavaScript,true,false,false,9,true,true,false,true +Keano95/BurrritoBuster,Keano95,Java,false,false,false,0,false,false,false,false +data-mayotte/inventaire-donnees-ouvertes-mayotte,data-mayotte,Shell,false,false,false,0,false,false,false,false +dacl010818/ProyectoX,dacl010818,,false,false,false,0,false,false,false,false +lae/intellij-actions-tree,lae,Kotlin,true,false,false,1,true,false,false,false +kisphp/bash-tool,kisphp,Shell,false,false,false,0,false,false,false,false +NecroMan/gulp-builder,NecroMan,JavaScript,false,false,false,0,false,false,false,false +networkAutomation/python_juniper_miscellaneous,networkAutomation,Python,false,false,false,0,false,false,false,false +nganntk123/Project_MP,nganntk123,CSS,false,false,false,0,false,false,false,false +networkAutomation/python_cisco_miscellaneous,networkAutomation,Python,false,false,false,0,false,false,false,false +pcdavid/pcdavid.gitlab.io,pcdavid,HTML,true,false,false,1,false,true,false,false +koltyakov/modern-web-parts-provisioning-example,koltyakov,PowerShell,false,false,false,0,false,false,false,false +woprrr/symfony-4-skeleton-docker,woprrr,PHP,false,false,false,0,false,false,false,false +tlsgmddhr/IlSukEJo,tlsgmddhr,JavaScript,false,false,false,0,false,false,false,false +waltspence/vue-admin,waltspence,Vue,false,false,false,0,false,false,false,false +ktoley/my-parent-project,ktoley,,false,false,false,0,false,false,false,false +samsamlausam/Script,samsamlausam,Lua,false,false,false,0,false,false,false,false +codesadd/scb-vuejs,codesadd,Vue,false,false,false,0,false,false,false,false +obiknows/traefik-control,obiknows,,false,false,false,0,false,false,false,false +unitekerala/unitekerala-webapp,unitekerala,PHP,false,false,false,0,false,false,false,false +james.regis/k8s-ansible,james.regis,,false,false,false,0,false,false,false,false +ad-si-2018-2/p1-g1,ad-si-2018-2,JavaScript,false,false,false,0,false,false,false,false +ModernisingMedicalMicrobiology/groupBug,ModernisingMedicalMicrobiology,Python,true,true,false,1,false,true,false,false +gavz/Inception,gavz,Python,false,false,false,0,false,false,false,false +gavz/Invoke-NeutralizeAV,gavz,PowerShell,false,false,false,0,false,false,false,false +ItSANgo/presentationFreeWnn20180818,ItSANgo,,false,false,false,0,false,false,false,false +amjedd/AndroidGitLab,amjedd,,false,false,false,0,false,false,false,false +swap-exchange/swap-exchange,swap-exchange,Java,false,false,false,0,false,false,false,false +hrbrmstr/rrecog,hrbrmstr,R,false,false,false,0,false,false,false,false +Docker-Public/docker-postgis,Docker-Public,PLpgSQL,false,false,false,0,false,false,false,false +ripper234/hanoi,ripper234,TypeScript,false,false,false,0,false,false,false,false +Prodigy4Him/bootstrap_website,Prodigy4Him,JavaScript,false,false,false,0,false,false,false,false +enom/huntersnotes,enom,TypeScript,false,false,false,0,false,false,false,false +yoginth/playground,yoginth,,false,false,false,0,false,false,false,false +skickar/NodeMCUWiFiLinkMonitor,skickar,C++,false,false,false,0,false,false,false,false +JuliaCN/JuliaZH.jl,JuliaCN,Julia,true,false,false,1,false,false,true,false +yoginth/unipad,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/leapyear,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/yeardays,yoginth,Python,false,false,false,0,false,false,false,false +haibuai3/DataScience,haibuai3,JupyterNotebook,false,false,false,0,false,false,false,false +semilattice/snowflake,semilattice,Lua,true,false,false,1,false,false,true,false +CCT-0424/RecursividadeI,CCT-0424,C++,false,false,false,0,false,false,false,false +Niloc37/vim-config,Niloc37,Vimscript,false,false,false,0,false,false,false,false +CCT-0424/RecursividadeII,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/ListaEncadeadaSimplesI,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/ListaEncadeadaSimplesII,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/PonteirosEVariaveisI,CCT-0424,C++,false,false,false,0,false,false,false,false +king011/book,king011,,false,false,false,0,false,false,false,false +mapcontrib/design,mapcontrib,,false,false,false,0,false,false,false,false +willianpaixao/spoon,willianpaixao,Shell,true,false,false,1,false,false,false,false +CCT-0424/RecursividadeIII,CCT-0424,C++,false,false,false,0,false,false,false,false +julia-pub/Aux.jl,julia-pub,Julia,true,false,false,1,false,true,false,false +aemc/demo/demo-k8s-cluster,aemc,Python,false,false,false,0,false,false,false,false +r2robotics/r2robotics_main,r2robotics,C++,false,false,false,0,false,false,false,false +j3a-solutions/bs-xstream,j3a-solutions,C++,false,false,false,0,false,false,false,false +CCT-0424/SelectionSort,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/InsertionSort,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/BubbleSort,CCT-0424,C++,false,false,false,0,false,false,false,false +bot-development-group/mystery-house-game,bot-development-group,Python,false,false,false,0,false,false,false,false +CCT-0424/quicksort,CCT-0424,C++,false,false,false,0,false,false,false,false +CCT-0424/somarecursiva,CCT-0424,C++,false,false,false,0,false,false,false,false +andrevona/Pi03,andrevona,Java,false,false,false,0,false,false,false,false +CCT-0424/mergeSort,CCT-0424,C++,false,false,false,0,false,false,false,false +4aiur/DiscordForMHW,4aiur,C#,false,false,false,0,false,false,false,false +adrianodsv/WebLawyer,adrianodsv,CSS,false,false,false,0,false,false,false,false +CCT-0424/imprimirRecursivamente,CCT-0424,C++,false,false,false,0,false,false,false,false +dgetsman/treehugger,dgetsman,Python,false,false,false,0,false,false,false,false +hrbrmstr/scala-splash,hrbrmstr,Scala,false,false,false,0,false,false,false,false +kazimuth/brine,kazimuth,Rust,false,false,false,0,false,false,false,false +tuanist/GoodReadOnPredictiveModelling,tuanist,Python,false,false,false,0,false,false,false,false +amigasourcecodepreservation/amiga-images-sounds-and-animation,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +Thydaduong/parking-lot,Thydaduong,CSS,false,false,false,0,false,false,false,false +SuperBLT/HashLib,SuperBLT,Lua,false,false,false,0,false,false,false,false +thekelvinliu/rollup-plugin-static-site,thekelvinliu,JavaScript,false,false,false,0,false,false,false,false +hoaiduc18/API_Angular,hoaiduc18,JavaScript,false,false,false,0,false,false,false,false +Triiuark/dnd-character-sheet,Triiuark,JavaScript,false,false,false,0,false,false,false,false +nicolaspanel/TrainingSpeech,nicolaspanel,Python,true,false,false,1,false,true,false,false +antonpettersson/iusnews,antonpettersson,TypeScript,false,false,false,0,false,false,false,false +NexusPieX/vendor_nexuspiex,NexusPieX,Makefile,false,false,false,0,false,false,false,false +B3th4/SolidityBiddings,B3th4,JavaScript,false,false,false,0,false,false,false,false +UnityCourse/GalagaZ,UnityCourse,C#,false,false,false,0,false,false,false,false +UnityCourse/Unity_Skeleton,UnityCourse,C#,false,false,false,0,false,false,false,false +tejaswigowda/ame394-fall2018,tejaswigowda,C++,false,false,false,0,false,false,false,false +causley1985/hardware,causley1985,,false,false,false,0,false,false,false,false +Vukan-Markovic/Pop-Balloon,Vukan-Markovic,Java,false,false,false,0,false,false,false,false +jKEeY/chartPrice,jKEeY,Vue,false,false,false,0,false,false,false,false +Vukan-Markovic/Book-trading-club,Vukan-Markovic,TypeScript,false,false,false,0,false,false,false,false +Vukan-Markovic/OOP-Paint,Vukan-Markovic,Java,false,false,false,0,false,false,false,false +Vukan-Markovic/Book-evaluator,Vukan-Markovic,Python,false,true,false,0,false,false,false,false +Vukan-Markovic/Store,Vukan-Markovic,C#,false,false,false,0,false,false,false,false +usu-amr/usu-amr.gitlab.io,usu-amr,CSS,true,false,false,1,false,false,true,false +thelinuxguy/openlp,thelinuxguy,Python,false,false,false,0,false,false,false,false +cs1331/cs1331.gitlab.io,cs1331,Java,true,false,false,1,false,true,false,false +stagg54/Actor_Tester,stagg54,LabVIEW,false,false,false,0,false,false,false,false +lyndsysimon/columnist,lyndsysimon,Python,true,false,false,1,false,true,false,false +SomDeBoaArte/sampleSelector,SomDeBoaArte,C++,false,false,false,0,false,false,false,false +amir_habibzadeh/react-persian,amir_habibzadeh,JavaScript,false,false,false,0,false,false,false,false +amir_habibzadeh/react-persian-datepicker,amir_habibzadeh,JavaScript,false,false,false,0,false,false,false,false +youcefsourani/arfedora_clear_windows_password,youcefsourani,Python,false,false,false,0,false,false,false,false +lishiyu/mono,lishiyu,C#,false,false,false,0,false,false,false,false +billykwok/opera,billykwok,JavaScript,false,false,false,0,false,false,false,false +rutgerbrf/horarium,rutgerbrf,Kotlin,false,false,false,0,false,false,false,false +TheRMaverick/Freifunk-Karte,TheRMaverick,JavaScript,false,false,false,0,false,false,false,false +m/m.gitlab.io,m,CSS,true,false,false,1,false,true,false,false +binarymist/mocksse,binarymist,JavaScript,true,false,false,1,false,true,false,false +FileMaker_Projects/Windows_Watermark_PDF,FileMaker_Projects,,false,false,false,0,false,false,false,false +sd1-ec-2018-2/p1-g1,sd1-ec-2018-2,JavaScript,false,false,false,0,false,false,false,false +ritwik24/web-session,ritwik24,,false,false,false,0,false,false,false,false +bot-development-group/questionnaire-bass-darki,bot-development-group,Python,false,false,false,0,false,false,false,false +deepset-ai/open-source/word2vec-embeddings-de,deepset-ai,Python,true,true,false,1,true,false,false,false +admicos/urlproxy-rs,admicos,Rust,false,false,false,0,false,false,false,false +gordiy_rushynets/Orpro,gordiy_rushynets,Python,false,false,false,0,false,false,false,false +Noughmad/ptree,Noughmad,Rust,true,false,false,1,false,true,false,false +ElvisPiedade/projeto-tads,ElvisPiedade,Python,false,true,false,0,false,false,false,false +unicen/Web2/LiveCoding2018/Bolivar/02-RoutePrettyURL,unicen,PHP,false,false,false,0,false,false,false,false +biorobgrp/wiki,biorobgrp,,false,false,false,0,false,false,false,false +gitote/git-module,gitote,Go,true,false,false,1,true,false,false,false +willhoward/food,willhoward,HTML,false,false,false,0,false,false,false,false +stanwood/blog,stanwood,,false,false,false,0,false,false,false,false +rit-scg/rit-scg.gitlab.io,rit-scg,CSS,true,false,false,1,false,true,false,false +jeanquero/webDescuentoPeru,jeanquero,CSS,false,false,false,0,false,false,false,false +edwingamedev/Day3,edwingamedev,JavaScript,true,false,false,1,false,false,true,false +dextel2/gulpjs-boilerplate,dextel2,JavaScript,false,false,false,0,false,false,false,false +sleepless-se/django-uwsgi-nginx-https,sleepless-se,,false,false,false,0,false,false,false,false +riccardoferrari/MyPass,riccardoferrari,HTML,false,false,false,0,false,false,false,false +riccardoferrari/SnakePy,riccardoferrari,Python,false,true,false,0,false,false,false,false +conorH221/ClientPanel,conorH221,TypeScript,false,false,false,0,false,false,false,false +diamondburned/ging-banter-forefront-collab,diamondburned,,false,false,false,0,false,false,false,false +marcelosanto/projetodefilmes2,marcelosanto,,false,false,false,0,false,false,false,false +vitronic/vitacora,vitronic,PHP,false,false,false,0,false,false,false,false +pkmajiwala-dev/Feature-To-CSV,pkmajiwala-dev,,false,false,false,0,false,false,false,false +Mikelog/docker_test,Mikelog,Shell,false,false,false,0,false,false,false,false +lo_extensions/lo-page-numbering,lo_extensions,Python,false,false,false,0,false,false,false,false +luke.n.owens/hyperledger_meetup,luke.n.owens,Python,false,false,false,0,false,false,false,false +Chenille33/old-site,Chenille33,PHP,false,false,false,0,false,false,false,false +BDAg/octopus_project,BDAg,HTML,false,false,false,0,false,false,false,false +matzaremba/BattleCity-GBA,matzaremba,C++,false,false,false,0,false,false,false,false +Ning33/Max33,Ning33,,false,false,false,0,false,false,false,false +umichcreative/drupal-starter-kit,umichcreative,PHP,false,false,false,0,false,false,false,false +better-coding.com/templates/javafx-spring-boot-gradle,better-coding.com,Java,false,false,false,0,false,false,false,false +thealik/clcalc,thealik,JavaScript,true,false,false,3,true,true,true,false +themusictank/themusictank.com,themusictank,PHP,false,false,false,0,false,false,false,false +redes2018/DilsonJunior,redes2018,,false,false,false,0,false,false,false,false +redes2018/YasminHeinze,redes2018,,false,false,false,0,false,false,false,false +Liferenko/poehali_info,Liferenko,JavaScript,true,false,false,2,false,true,false,false +ccCam/MatrixNotifyBot,ccCam,Python,false,false,false,0,false,false,false,false +OpenSource02/4kHosting,OpenSource02,,false,false,false,0,false,false,false,false +Gejr/FocusLock-Revamped,Gejr,HTML,false,false,false,0,false,false,false,false +Crysys/World-Cup,Crysys,C#,false,false,false,0,false,false,false,false +poldelgado/gbmtbpreteam,poldelgado,PHP,false,false,false,0,false,false,false,false +afzp99/personal-environment,afzp99,Python,false,false,false,0,false,false,false,false +mazmrini/preferences,mazmrini,EmacsLisp,false,false,false,0,false,false,false,false +hanghao/demo,hanghao,,false,false,false,0,false,false,false,false +msh1011/CAI,msh1011,JavaScript,true,false,false,1,false,true,false,false +eric3u/VideoCodecKit,eric3u,Objective-C,false,false,false,0,false,false,false,false +nguyenduyquang06/server_api_weatherequest,nguyenduyquang06,JavaScript,false,false,false,0,false,false,false,false +BlaadFrost/Human-Evolution,BlaadFrost,PHP,false,false,false,0,false,false,false,false +miyazaki-mba/test-first-project,miyazaki-mba,,false,false,false,0,false,false,false,false +yenhi/docker-nginx_php_oci_pdo,yenhi,PHP,false,false,false,0,false,false,false,false +foxmr/meetroomfun,foxmr,Java,false,false,true,0,false,false,false,false +gitote/gitignore,gitote,,false,false,false,0,false,false,false,false +yuwan694/ipmc,yuwan694,C,false,false,false,0,false,false,false,false +Niklan/seo_pager,Niklan,PHP,false,false,false,0,false,false,false,false +onesolutions/mycms,onesolutions,JavaScript,false,false,false,0,false,false,false,false +Ethan.Bi/nginx-banIP-dynamically,Ethan.Bi,Lua,false,false,false,0,false,false,false,false +rucuriousyet/syncrony,rucuriousyet,JavaScript,false,false,false,0,false,false,false,false +ksad/Dev-Tools,ksad,Shell,false,false,false,0,false,false,false,false +hex-usr/bsnes-mcfly,hex-usr,C++,false,false,false,0,false,false,false,false +keyage/SPZEscapeGame,keyage,C#,false,false,false,0,false,false,false,false +dein0s_wow_vanilla/pfUI-managems,dein0s_wow_vanilla,Lua,false,false,false,0,false,false,false,false +sixteenbitsystems/pi-safe-shutdown,sixteenbitsystems,Shell,false,false,false,0,false,false,false,false +macans/pdf-book,macans,,false,false,false,0,false,false,false,false +BDAg/storm-project,BDAg,JavaScript,false,false,false,0,false,false,false,false +ericschott25/CSE3353_Repo_setup_project,ericschott25,C++,false,false,false,0,false,false,false,false +DFDS/Autobots/samples-pipeline-dotnet,DFDS,C#,true,false,false,5,true,true,true,true +custom_components/versions,custom_components,Python,true,false,false,2,true,false,true,false +mergetb/tech/sled,mergetb,Go,true,false,false,4,true,false,false,false +BlockSharp/BlockSharp,BlockSharp,C#,true,false,false,2,true,false,true,false +codelibre/ome-files-view,codelibre,C++,false,false,false,0,false,false,false,false +idrago/cssPublic,idrago,JavaScript,true,false,false,1,false,false,true,false +CORTEZ.MASTER/app-user01,CORTEZ.MASTER,Java,false,false,false,0,false,false,false,false +numzero/libluabox,numzero,C,false,false,false,0,false,false,false,false +SuperFola/Zavtrak,SuperFola,C,false,false,false,0,false,false,false,false +grigorye/SimulatorRecorder,grigorye,Swift,true,false,false,1,true,false,false,false +mapcontrib/mapcontrib.next,mapcontrib,JavaScript,false,false,false,0,false,false,false,false +alistairgray42/msqbstats,alistairgray42,Python,false,false,false,0,false,false,false,false +jacksonhmt/pfs-documentacao,jacksonhmt,,false,false,false,0,false,false,false,false +alelec/jupyter_micropython_remote,alelec,Python,true,false,false,1,false,false,true,false +SumNeuron/cookie-cutter-rollup-vue,SumNeuron,JavaScript,true,false,false,1,false,false,true,false +HanBnrd/fNIRSProcessing,HanBnrd,Python,false,false,false,0,false,false,false,false +tskiba/ReactJS,tskiba,TypeScript,false,false,false,0,false,false,false,false +sys-fiuba/julia/SySTools.jl,sys-fiuba,Julia,true,false,false,1,false,true,false,false +dein0s_wow_vanilla/ItemRack,dein0s_wow_vanilla,Lua,false,false,false,0,false,false,false,false +lo_extensions/l10n-utility,lo_extensions,Python,false,true,false,0,false,false,false,false +Unstack/tekashi-psychosis,Unstack,Shell,false,false,false,0,false,false,false,false +mavignau/JefeInformatica,mavignau,HTML,false,false,false,0,false,false,false,false +dennerkrans/xanadocious,dennerkrans,Vue,false,false,false,0,false,false,false,false +zer0active/fluree/flureedb-docker,zer0active,,false,false,false,0,false,false,false,false +lokiproject/loki-network,lokiproject,C++,true,false,false,1,true,false,false,false +deepset-ai/open-source/fasttext-embeddings-de,deepset-ai,Shell,true,false,false,1,true,false,false,false +vickyjackson/ichoose-app,vickyjackson,Java,true,false,true,2,true,false,false,false +walter.paquete/kiko-framework,walter.paquete,PHP,false,false,false,0,false,false,false,false +tomabolt/flask-starter-aws-elastic-beanstalk,tomabolt,Shell,true,false,false,2,false,true,true,false +iba-aes/webcie/website,iba-aes,PHP,true,false,false,3,true,true,true,false +Simon3150/nodjs-netflix,Simon3150,HTML,false,false,false,0,false,false,false,false +rich4rd.macwan/mousemapper,rich4rd.macwan,C,false,false,false,0,false,false,false,false +oofga/cpp/classe_carro_cpp,oofga,C++,false,false,false,0,false,false,false,false +apero/emacs.d,apero,EmacsLisp,false,false,false,0,false,false,false,false +AlexL777/Bolt-Service-Rostock,AlexL777,,true,false,false,1,false,false,true,false +alexbuzzbee/tinyrt,alexbuzzbee,Rust,false,false,false,0,false,false,false,false +BDAg/TrackerDeVeiculo,BDAg,TypeScript,false,false,false,0,false,false,false,false +training-microservices-2018-01/docs,training-microservices-2018-01,,false,false,false,0,false,false,false,false +training-microservices-2018-01/discovery-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +emacsLispSQL/auto-in-function,emacsLispSQL,,false,false,false,0,false,false,false,false +fanguloa/scripts_odoo11,fanguloa,Shell,false,false,false,0,false,false,false,false +ronald-chun/hello-gitlab-heroku,ronald-chun,TypeScript,true,false,false,1,false,true,false,false +software-engg/car-parking-portal,software-engg,,false,false,false,0,false,false,false,false +training-microservices-2018-01/banking-api,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +jhli/PDC_summer_school,jhli,C,false,false,false,0,false,false,false,false +targetflow/admission-campaign-analyzer,targetflow,,false,false,false,0,false,false,false,false +targetflow/BlinkToPy3,targetflow,JupyterNotebook,false,false,false,0,false,false,false,false +angular-graphql-golang/graphql-golang,angular-graphql-golang,Go,false,false,false,0,false,false,false,false +Szmok/Genetic-Inheritance-System,Szmok,Python,true,true,false,1,false,true,false,false +vegus/admincorpibex,vegus,JavaScript,false,false,false,0,false,false,false,false +jacktheclicker/ruby-pardot,jacktheclicker,Ruby,false,false,false,0,false,false,false,false +dodihidayatullah/awesome-flutter,dodihidayatullah,,false,false,false,0,false,false,false,false +unicen/Web2/Practicos/PhotoAlbum,unicen,PHP,false,false,false,0,false,false,false,false +unicen/Web2/Practicos/Figuras,unicen,PHP,false,false,false,0,false,false,false,false +yun-demo/demo-validation,yun-demo,Java,false,false,true,0,false,false,false,false +Stypox/gl-abstractions,Stypox,C++,false,false,false,0,false,false,false,false +Thomas_U/Heat-transfer_model_with_Phase_Changing_Material,Thomas_U,,false,false,false,0,false,false,false,false +Ejemplogit/ProFlores,Ejemplogit,,false,false,false,0,false,false,false,false +Codyj110/pinion,Codyj110,TypeScript,false,false,false,0,false,false,false,false +devsAnthares/anthares,devsAnthares,,false,false,false,0,false,false,false,false +mzdonline/vehicle_signal_specification,mzdonline,Python,false,false,false,0,false,false,false,false +urbanslug/sniff,urbanslug,HTML,false,false,false,0,false,false,false,false +stacksmith/cl-fm,stacksmith,CommonLisp,false,false,false,0,false,false,false,false +BDAg/Agrometeorologia,BDAg,JavaScript,false,false,false,0,false,false,false,false +tuerbot/tuerbot,tuerbot,Python,true,false,false,1,false,true,false,false +santiblanko/dscore,santiblanko,R,false,false,false,0,false,false,false,false +kheob/nestjs-test,kheob,TypeScript,false,false,false,0,false,false,false,false +alyptik/neomutt,alyptik,C,false,false,false,0,false,false,false,false +rajeshmsr/py,rajeshmsr,Python,false,false,false,0,false,false,false,false +purpleteam-labs/purpleteam,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false +osu-wine/osu-wineprefix,osu-wine,,false,false,false,0,false,false,false,false +gitote/chardet,gitote,Go,false,false,false,0,false,false,false,false +gitote/cron,gitote,Go,false,false,false,0,false,false,false,false +ikkist/gocctx,ikkist,Go,false,false,false,0,false,false,false,false +gitote/go-gitote-client,gitote,Go,false,false,false,0,false,false,false,false +gitote/go-libravatar,gitote,Go,false,false,false,0,false,false,false,false +gitote/minwinsvc,gitote,Go,false,false,false,0,false,false,false,false +gitote/bindata,gitote,,false,false,false,0,false,false,false,false +cravacuore/rawRSS,cravacuore,JavaScript,true,false,false,13,true,true,false,true +a-chernov/epm_test,a-chernov,C,true,false,false,2,true,true,false,false +zeen3/ripsters,zeen3,JavaScript,true,false,false,1,false,false,true,false +rmapbda/montager,rmapbda,Python,false,false,false,0,false,false,false,false +adelkhafizova/mipt-stats,adelkhafizova,CSS,true,false,false,1,false,false,true,false +Stypox/into-space-remake,Stypox,C++,false,false,false,0,false,false,false,false +ZSCDumin/litemall,ZSCDumin,Java,false,false,true,0,false,false,false,false +fatmatto/express-health-checks,fatmatto,JavaScript,false,false,false,0,false,false,false,false +maletil/LibreFactu,maletil,PHP,false,false,false,0,false,false,false,false +PaulBrownMagic/OptiTruckPredict,PaulBrownMagic,HTML,true,false,false,1,false,true,false,false +InnerPieceOSS/SmartBodyLite,InnerPieceOSS,C++,false,false,false,0,false,false,false,false +celtudson/BeatGame,celtudson,Haxe,false,false,false,0,false,false,false,false +neonox31/podcast-server,neonox31,HTML,true,false,true,2,true,true,false,false +maheshhegde/blog,maheshhegde,HTML,true,false,false,1,false,true,false,false +karlux/TP1_progra3,karlux,Java,false,false,false,0,false,false,false,false +nerdocs/gdaps,nerdocs,Python,false,true,false,0,false,false,false,false +hrbrmstr/worldtilegrid,hrbrmstr,R,true,false,false,1,false,true,false,false +kenwhiston/firebase-ml,kenwhiston,Java,false,false,false,0,false,false,false,false +Kamiyaa/alsanotify,Kamiyaa,C,false,false,false,0,false,false,false,false +jrswab/curator-helper,jrswab,PHP,false,false,false,0,false,false,false,false +franjmartin21/MySmartKeyChain,franjmartin21,Kotlin,false,false,false,0,false,false,false,false +kanisiuskenneth/vretino-android,kanisiuskenneth,Java,false,false,false,0,false,false,false,false +princebilly/Exploring-features-of-php,princebilly,PHP,false,false,false,0,false,false,false,false +jimsy/huia,jimsy,Rust,true,false,false,1,false,true,false,false +zenprotocol/zen-oracle,zenprotocol,F#,false,false,false,0,false,false,false,false +Vorlonsoft/AndroidRate,Vorlonsoft,Java,false,false,false,0,false,false,false,false +Vorlonsoft/EasyDokkaPlugin,Vorlonsoft,Gradle,false,false,false,0,false,false,false,false +Vorlonsoft/GradleMavenPush,Vorlonsoft,Gradle,false,false,false,0,false,false,false,false +petre.tudor/web-things,petre.tudor,JavaScript,false,false,false,0,false,false,false,false +myst3m/kikori,myst3m,Clojure,false,false,false,0,false,false,false,false +carter0624/flutter-eventBus,carter0624,Makefile,false,false,false,0,false,false,false,false +Lucidiot/python-usda,Lucidiot,Python,true,true,false,2,false,true,true,false +BDAg/Hyperdeep,BDAg,TypeScript,false,false,false,0,false,false,false,false +unicen/Web2/LiveCoding2018/Tandil/livecoding,unicen,PHP,false,false,false,0,false,false,false,false +andreykm/workdate,andreykm,JavaScript,false,false,false,0,false,false,false,false +vladyx18/Software_de_Evaluacion,vladyx18,Java,false,false,false,0,false,false,false,false +usu-amr/open-source/sw/p2/submarine,usu-amr,CSS,false,false,false,0,false,false,false,false +hex-usr/nSide,hex-usr,C++,false,false,false,0,false,false,false,false +training-microservices-2018-01/rekening-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +training-microservices-2018-01/pembayaran-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +super.hero523/Nearme-Ionic,super.hero523,HTML,false,false,false,0,false,false,false,false +clear-code/lua-web-driver,clear-code,Lua,true,false,false,2,false,true,true,false +SeocraftNetwork/NPC-API,SeocraftNetwork,Java,false,false,true,0,false,false,false,false +Bonadeo007/Test,Bonadeo007,,false,false,false,0,false,false,false,false +gun1x/vagrant-files,gun1x,Ruby,false,false,false,0,false,false,false,false +DayLv/fuping,DayLv,JavaScript,false,false,false,0,false,false,false,false +bimlas/tw5-asciidoctor,bimlas,JavaScript,true,false,false,1,false,true,false,false +usernameisalreadytaken4/python-otus,usernameisalreadytaken4,JupyterNotebook,false,false,false,0,false,false,false,false +training-microservices-2018-01/auth-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +TheFSilver/MiaouShop,TheFSilver,Ruby,false,false,false,0,false,false,false,false +aammf/2018/aammf-badge-2018,aammf,C,false,false,false,0,false,false,false,false +Turtle-Sec/RTFM_PENTEST_Guide,Turtle-Sec,,false,false,false,0,false,false,false,false +swagmac/example-minecraft-project,swagmac,Java,false,false,false,0,false,false,false,false +pupjs/pupjs,pupjs,JavaScript,true,false,false,4,true,true,true,false +VincentTam/beautifulhugo,VincentTam,HTML,false,false,false,0,false,false,false,false +coopon/uauto/backend/map-preparation,coopon,Shell,false,false,false,0,false,false,false,false +cjvnjde_template/webpack_html_sass_template,cjvnjde_template,JavaScript,true,false,false,2,false,false,false,true +c4g/draco/libdraco_ue4,c4g,C#,true,false,false,3,true,false,true,false +vanessaserafim/academia-despo,vanessaserafim,Java,false,false,false,0,false,false,false,false +WMEScripts/WME-send-to-slack-benelux-public,WMEScripts,,false,false,false,0,false,false,false,false +super.hero523/BulkMessenger,super.hero523,,false,false,false,0,false,false,false,false +heurekus/C64-Geos-Programming,heurekus,C,false,false,false,0,false,false,false,false +MrFry/IRCCoinBot,MrFry,JavaScript,false,false,false,0,false,false,false,false +SamB440/HexRPG,SamB440,Java,false,false,true,0,false,false,false,false +Bosi/docker-compose-collection,Bosi,Shell,true,false,false,1,false,false,false,false +super.hero523/WebScraping,super.hero523,Python,false,false,false,0,false,false,false,false +diegocarvalho426/think-before-speak,diegocarvalho426,JupyterNotebook,false,false,false,0,false,false,false,false +freundchen/spring-boot-and-react,freundchen,JavaScript,true,false,true,3,true,false,true,false +loyke96/tourist-info,loyke96,Java,false,false,false,0,false,false,false,false +rdococ/digitouch,rdococ,Lua,false,false,false,0,false,false,false,false +claeysg/neovim-dotfiles,claeysg,Vimscript,false,false,false,0,false,false,false,false +openlp/web-remote,openlp,TypeScript,true,false,false,1,false,true,false,false +h2mm/bike,h2mm,Lua,false,false,false,0,false,false,false,false +gavz/pe_to_shellcode,gavz,C++,false,false,false,0,false,false,false,false +browndj3/ig_bot,browndj3,Python,false,false,false,0,false,false,false,false +osm-ui/react,osm-ui,JavaScript,true,false,false,3,true,false,false,false +nvidia1997/ACME-Ltd,nvidia1997,JavaScript,false,false,false,0,false,false,false,false +hzc27180129/php-swoole-websocket,hzc27180129,PHP,false,false,false,0,false,false,false,false +Sterophonick/Chirpys-Adventure,Sterophonick,Assembly,false,false,false,0,false,false,false,false +Sterophonick/ES-Theme-Homebrew,Sterophonick,,false,false,false,0,false,false,false,false +Sterophonick/Mother2GbaTranslation,Sterophonick,C#,false,false,false,0,false,false,false,false +super.hero523/oh3sharecode,super.hero523,TypeScript,false,false,false,0,false,false,false,false +Req/raidgroups,Req,Ruby,true,false,false,1,false,true,false,false +Sumaid/shell,Sumaid,C,false,false,false,0,false,false,false,false +super.hero523/Sioc-Node,super.hero523,JavaScript,false,false,false,0,false,false,false,false +gislab/website,gislab,HTML,false,false,false,0,false,false,false,false +nattr443/ProjectDev,nattr443,,false,false,false,0,false,false,false,false +recalbox/website,recalbox,,true,false,false,2,true,true,false,false +dikiy4eburator/archiso,dikiy4eburator,Shell,false,false,false,0,false,false,false,false +dev_urandom/nanotodon,dev_urandom,C,false,false,false,0,false,false,false,false +MattTaylor/RevitPurgeUnused,MattTaylor,VisualBasic,false,false,false,0,false,false,false,false +librehs/sninterrupt,librehs,JavaScript,false,false,false,0,false,false,false,false +emilie/crossfit-games-metrics,emilie,JupyterNotebook,false,false,false,0,false,false,false,false +bordeaux-metropole-public/MET-RESA-MOD,bordeaux-metropole-public,PHP,false,false,false,0,false,false,false,false +debug.bucket/Paradox-Modding-Resources,debug.bucket,AutoHotkey,false,false,false,0,false,false,false,false +xojo/XojoDojo,xojo,Xojo,false,false,false,0,false,false,false,false +gentauro/mfk-hackerrank,gentauro,,false,false,false,0,false,false,false,false +ekwus/ALoRa,ekwus,C#,false,false,false,0,false,false,false,false +xlight2007/doggy,xlight2007,JavaScript,false,false,false,0,false,false,false,false +Mmonteroh/fe-ssc-test,Mmonteroh,CSS,false,false,false,0,false,false,false,false +eZangeneh/Persian_Optical_Letter_Recognition,eZangeneh,Makefile,false,false,false,0,false,false,false,false +eZangeneh/Persian_Optical_Letters_Recognition,eZangeneh,Makefile,false,false,false,0,false,false,false,false +opendatahub/spark-ansible,opendatahub,Shell,false,false,false,0,false,false,false,false +unicen/Web2/LiveCoding2018/Bolivar/EjemploTareas,unicen,PHP,false,false,false,0,false,false,false,false +hassio-addons/addon-tautulli,hassio-addons,Shell,false,false,false,0,false,false,false,false +Vinipac/projeto-trainee-ecomp,Vinipac,HTML,false,false,false,0,false,false,false,false +avatarwebforall/LoveCode,avatarwebforall,,false,false,false,0,false,false,false,false +CDAGaming/CraftPresence,CDAGaming,Java,true,false,false,1,false,true,false,false +cajen/chrome-plugin,cajen,JavaScript,false,false,false,0,false,false,false,false +brandonlabs/vue-pomodoro-with-webhooks,brandonlabs,JavaScript,false,false,false,0,false,false,false,false +ruanpie/Pyrlang,ruanpie,Python,false,true,false,0,false,false,false,false +qezz/tg-sed-bot,qezz,Rust,true,false,false,2,true,true,false,false +alourenco/MobileShadowRendering,alourenco,Java,false,false,false,0,false,false,false,false +yuriramalhopinheiro/algamoney-api,yuriramalhopinheiro,Java,false,false,true,0,false,false,false,false +tmkn/wagtail-storages,tmkn,Python,true,false,false,2,false,true,false,false +purpleteam-labs/purpleteam-logger,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false +Naozen/login,Naozen,Java,false,false,false,0,false,false,false,false +DataSystemsTech/CT-10,DataSystemsTech,,false,false,false,0,false,false,false,false +floss-pa/LinuxWeek,floss-pa,,false,false,false,0,false,false,false,false +mraza007/csnotes,mraza007,,false,false,false,0,false,false,false,false +Harmon758/Harmonbot,Harmon758,Python,false,true,false,0,false,false,false,false +IR2018Group4/ProgrammingAssignments,IR2018Group4,Java,false,false,false,0,false,false,false,false +super.hero523/Sportsrush-Vue,super.hero523,Vue,false,false,false,0,false,false,false,false +training-devops-201801/belajar-devops,training-devops-201801,Java,true,false,true,2,false,false,true,false +purpleteam-labs/purpleteam-orchestrator,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false +purpleteam-labs/purpleteam-app-scanner,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false +purpleteam-labs/purpleteam-server-scanner,purpleteam-labs,,false,false,false,0,false,false,false,false +purpleteam-labs/purpleteam-tls-checker,purpleteam-labs,,false,false,false,0,false,false,false,false +softworks-club/websites/SoftWorks.club,softworks-club,,false,false,false,0,false,false,false,false +softworks-club/archlinux/pakmirrors,softworks-club,Shell,false,false,false,0,false,false,false,false +Felecarp/ball-game,Felecarp,Python,false,false,false,0,false,false,false,false +PowerOlive/aurutils,PowerOlive,Shell,false,false,false,0,false,false,false,false +AlTy/advtools_exercise,AlTy,JupyterNotebook,false,false,false,0,false,false,false,false +justindonnaruma/awesome-lighting,justindonnaruma,,false,false,false,0,false,false,false,false +osgames/h-world,osgames,C++,false,false,false,0,false,false,false,false +Liklei/CloudMusic,Liklei,JavaScript,false,false,false,0,false,false,false,false +biotransistor/bokehheat,biotransistor,HTML,false,false,false,0,false,false,false,false +saimunhossain/laravel-vue-app,saimunhossain,PHP,false,false,false,0,false,false,false,false +sleibrock/rootkicker,sleibrock,Racket,false,false,false,0,false,false,false,false +andrew.n.sutton/fall-18-comp,andrew.n.sutton,C++,false,false,false,0,false,false,false,false +utk-robotics/rip,utk-robotics,C++,false,false,false,0,false,false,false,false +jcebidanes/alurapic,jcebidanes,TypeScript,false,false,false,0,false,false,false,false +mexus/sedregex,mexus,Rust,true,false,false,1,false,true,false,false +Error1000/MWH,Error1000,HTML,false,false,false,0,false,false,false,false +pmercado12/tutorial-git-lab,pmercado12,JavaScript,true,false,false,1,false,false,true,false +ClementLin/ZWaveBrowser,ClementLin,Java,true,false,false,2,true,true,false,false +gperdomor/vapor-response-time,gperdomor,Swift,true,false,false,1,false,true,false,false +mnair69/android_kernel_xiaomi_msm8953,mnair69,C,false,false,false,0,false,false,false,false +mnair69/android_vendor_xiaomi_msm8953-common,mnair69,Makefile,false,false,false,0,false,false,false,false +mnair69/android_device_xiaomi_tissot,mnair69,C++,false,false,false,0,false,false,false,false +mnair69/android_vendor_xiaomi_tissot,mnair69,Makefile,false,false,false,0,false,false,false,false +mnair69/android_device_xiaomi_msm8953-common,mnair69,C++,false,false,false,0,false,false,false,false +icostin/bodog,icostin,Python,false,false,false,0,false,false,false,false +fj2746/FirstProject,fj2746,,false,false,false,0,false,false,false,false +buoyantair/react-lightning-web,buoyantair,JavaScript,false,false,false,0,false,false,false,false +yuwan694/jump,yuwan694,Shell,false,false,false,0,false,false,false,false +flectra-hq/aeroo_reports,flectra-hq,Python,false,true,false,0,false,false,false,false +flectra-hq/aeroolib,flectra-hq,Python,false,false,false,0,false,false,false,false +alexandru.placinta/hype-mode,alexandru.placinta,JavaScript,false,false,false,0,false,false,false,false +SchoolOrchestration/libs/microservicetool,SchoolOrchestration,Python,true,true,false,3,false,true,true,true +AaronErhardt/Vino,AaronErhardt,C++,false,false,false,0,false,false,false,false +FlightChain2/FlightChainAPI,FlightChain2,TypeScript,true,false,false,3,true,false,true,false +FlightChain2/FlightChainUI,FlightChain2,TypeScript,true,false,false,2,true,false,false,false +Ekkehardt/tuxedo-keyboard,Ekkehardt,C,false,false,false,0,false,false,false,false +SEM3-Africa/SEM3-Network-project,SEM3-Africa,,false,false,false,0,false,false,false,false +SEM3-Africa/SEM3-Config-FIles,SEM3-Africa,Python,false,false,false,0,false,false,false,false +Cyprias/ScriptManager,Cyprias,JavaScript,false,false,false,0,false,false,false,false +matthieu.labas/docker-petalinux,matthieu.labas,Shell,false,false,false,0,false,false,false,false +Modanung/TiNA,Modanung,Python,false,false,false,0,false,false,false,false +rawkode/laraconeu-2018-docker-talk,rawkode,Makefile,false,false,false,0,false,false,false,false +danielsob/speedtest,danielsob,HTML,false,false,false,0,false,false,false,false +abhchand/stable-matching,abhchand,Ruby,true,false,false,1,false,true,false,false +mikaelhadler/vuejs-unit,mikaelhadler,JavaScript,false,false,false,0,false,false,false,false +erkansivas35/electron-vue-currency-app,erkansivas35,Vue,false,false,false,0,false,false,false,false +akshaycm/dogecash,akshaycm,C++,false,false,false,0,false,false,false,false +Polkabot/polkabot-plugin-blocthday,Polkabot,JavaScript,true,false,false,2,true,false,false,false +dylanneve1/DylansS7OreoROM,dylanneve1,Shell,false,false,false,0,false,false,false,false +cleiton-limapin/tcc-final,cleiton-limapin,JupyterNotebook,false,false,false,0,false,false,false,false +WebFreak001/server-utils,WebFreak001,D,false,false,false,0,false,false,false,false +ap6yc/MEDICOM,ap6yc,TeX,true,false,false,3,false,false,false,false +merauluka/dashboard,merauluka,PHP,false,false,false,0,false,false,false,false +embiem/embiem-website,embiem,JavaScript,false,false,false,0,false,false,false,false +SleepyInstructor/Langara-CPSC2030-001-CourseExamples,SleepyInstructor,HTML,false,false,false,0,false,false,false,false +aa900031/nestjs-command,aa900031,TypeScript,false,false,false,0,false,false,false,false +philliprognerud/SE165-Cabana,philliprognerud,CSS,false,false,false,0,false,false,false,false +igrep/papers-notes,igrep,,false,false,false,0,false,false,false,false +potyl/aws-ssh-proxy,potyl,Python,false,false,false,0,false,false,false,false +training-devops-201801/materi-training,training-devops-201801,,false,false,false,0,false,false,false,false +ty-test-dev/cake3-test,ty-test-dev,PHP,true,false,false,1,false,true,false,false +eryi/travelcloud-antd-react-min,eryi,JavaScript,false,false,false,0,false,false,false,false +benlau/medium-articles,benlau,C++,false,false,false,0,false,false,false,false +skycoin-dev/ci-dashboard,skycoin-dev,Go,false,false,false,0,false,false,false,false +Tecnonucleous/pwa,Tecnonucleous,Haxe,false,false,false,0,false,false,false,false +CMosmueller/GeoQuiz,CMosmueller,HTML,false,false,false,0,false,false,false,false +ehsaan/PlazaPolice,ehsaan,JavaScript,false,false,false,0,false,false,false,false +alaskalinuxuser/HD_compile_android_nougat_videos,alaskalinuxuser,,false,false,false,0,false,false,false,false +doanythingfordethklok/elm-model-example,doanythingfordethklok,Elm,false,false,false,0,false,false,false,false +ISIS3510_201820_Team2/WIKI,ISIS3510_201820_Team2,,false,false,false,0,false,false,false,false +malice/system-design-primer,malice,Python,false,false,false,0,false,false,false,false +localg-host/website,localg-host,JavaScript,true,false,false,2,true,false,true,false +rtatnet2/rtacloud-project,rtatnet2,,false,false,false,0,false,false,false,false +iblech/bb,iblech,Haskell,true,false,false,1,false,false,true,false +andrew.womeldorf/Foldstack.vim,andrew.womeldorf,Python,false,false,false,0,false,false,false,false +arielton_nunes_fate/GitADSFate,arielton_nunes_fate,,false,false,false,0,false,false,false,false +vlad2ts/JavaRMI,vlad2ts,Java,false,false,false,0,false,false,false,false +delian66/empty_nginx_site_with_php7_front_controller,delian66,Shell,false,false,false,0,false,false,false,false +skmon43/cotmes-calc,skmon43,C#,false,false,false,0,false,false,false,false +florenzo-42/dotfiles,florenzo-42,Vimscript,false,false,false,0,false,false,false,false +sydstall/portfolio-update,sydstall,CSS,false,false,false,0,false,false,false,false +whatisaphone/rlbot-rust,whatisaphone,Rust,true,false,false,1,false,false,false,false +imbarwinata/asisten-web-front,imbarwinata,,false,false,false,0,false,false,false,false +0x1d/illucat,0x1d,JavaScript,true,false,false,2,true,false,false,true +ayana/errors,ayana,JavaScript,false,false,false,0,false,false,false,false +josiekate/cs373,josiekate,CSS,true,false,false,2,false,true,true,false +dave.bell/alarm,dave.bell,JavaScript,true,false,false,3,true,false,true,false +JacobHeater/node-system-restore,JacobHeater,TypeScript,false,false,false,0,false,false,false,false +JacobHeater/winrestorator,JacobHeater,C#,false,false,false,0,false,false,false,false +sgrigorov/masterless,sgrigorov,Python,false,false,false,0,false,false,false,false +kieselguhr/reon-android,kieselguhr,Java,false,false,false,0,false,false,false,false +float.cf/broadcaster,float.cf,JavaScript,true,false,false,2,true,false,true,false +claviux/alfresco-runner,claviux,Shell,false,false,false,0,false,false,false,false +VincentTam/test-hugo-staticman,VincentTam,,true,false,false,1,false,true,false,false +DanielWhitston/pip_test_1,DanielWhitston,Ruby,true,false,false,1,false,true,false,false +aurorafossorg/apps/tuna,aurorafossorg,D,true,false,false,9,true,true,false,true +nshibalov/golang-test-rest,nshibalov,Go,false,false,false,0,false,false,false,false +robin.hundt/police-pr-search,robin.hundt,JupyterNotebook,false,false,false,0,false,false,false,false +CedricQ/testProj,CedricQ,C++,true,false,false,1,true,false,false,false +cape-diff/ideas,cape-diff,,false,false,false,0,false,false,false,false +aalonzolu/hugo-sustain,aalonzolu,HTML,false,false,false,0,false,false,false,false +adventuscalendar/prrepo,adventuscalendar,Shell,true,false,false,2,false,false,false,false +adventuscalendar/utils/docker-prototool,adventuscalendar,,true,false,false,3,false,false,false,false +Zevfer/pnh-bot,Zevfer,HTML,false,false,false,0,false,false,false,false +termer/rwby-images,termer,,false,false,false,0,false,false,false,false +madicine6/eBashBot,madicine6,Shell,false,false,false,0,false,false,false,false +lseem/cact,lseem,C,false,false,false,0,false,false,false,false +gperdomor/vapor-request-id,gperdomor,Swift,true,false,false,1,false,true,false,false +diegocrzt/panambi,diegocrzt,JavaScript,false,false,false,0,false,false,false,false +the-alchemist-codes/Database,the-alchemist-codes,C#,false,false,false,0,false,false,false,false +JavaCafe01/RoboticsRegister,JavaCafe01,Java,false,false,false,0,false,false,false,false +frame-interpolator/interpolator,frame-interpolator,Python,false,false,false,0,false,false,false,false +ornous/lab/api,ornous,JavaScript,false,false,false,0,false,false,false,false +frame-interpolator/interpolator-interface,frame-interpolator,JavaScript,false,false,false,0,false,false,false,false +leroywarnt/sdlc,leroywarnt,Python,true,true,false,3,false,true,false,true +cleanlabpos77/program-laundry-berbasis-software,cleanlabpos77,,false,false,false,0,false,false,false,false +xiccc/ddb,xiccc,Java,false,false,false,0,false,false,false,false +SleepyInstructor/Langara-CPSC1045-006-Assignments,SleepyInstructor,JavaScript,false,false,false,0,false,false,false,false +Miltop/TravelHen,Miltop,C#,false,false,false,0,false,false,false,false +p8n/amd64,p8n,Rust,false,false,false,0,false,false,false,false +nNvNn/h2646tomp4,nNvNn,C++,false,false,false,0,false,false,false,false +Honeyluck/Ben_10,Honeyluck,Java,false,false,false,0,false,false,false,false +scips/jira-notify-osd,scips,,false,false,false,0,false,false,false,false +timvisee/cant-touch-this-project,timvisee,CSS,true,false,false,1,false,false,true,false +GregoireF/CERMICUM,GregoireF,TeX,false,false,false,0,false,false,false,false +metalwings/minimalistic-goshko,metalwings,CSS,false,false,false,0,false,false,false,false +erik.pope/tictactoe,erik.pope,C++,false,false,false,0,false,false,false,false +camiloYateY2018/DataAnalist,camiloYateY2018,Python,false,false,false,0,false,false,false,false +testifyqa.eulerproblems.java/08.LargestProductInSeries,testifyqa.eulerproblems.java,Java,false,false,false,0,false,false,false,false +malikariful/ml_dataset,malikariful,,false,false,false,0,false,false,false,false +cccheck-mate/cccheck-mate,cccheck-mate,,false,false,false,0,false,false,false,false +btaskaya/kaos,btaskaya,Makefile,false,false,false,0,false,false,false,false +AVBIO/local,AVBIO,JavaScript,false,false,false,0,false,false,false,false +opleidinsdag-t4t/oefening-3,opleidinsdag-t4t,C#,false,false,false,0,false,false,false,false +cccheck-mate/server,cccheck-mate,Rust,true,false,false,1,false,true,false,false +pac85/teslabot2.0,pac85,Rust,false,false,false,0,false,false,false,false +Zevfer/factionorio,Zevfer,Lua,false,false,false,0,false,false,false,false +twistoy.wang/MyConf,twistoy.wang,Vimscript,false,false,false,0,false,false,false,false +liangna/Btime_mis,liangna,,false,false,false,0,false,false,false,false +SquidAEH37/curious-squid,SquidAEH37,Shell,false,false,false,0,false,false,false,false +BDAg/AgriculturaFamiliarOrganica,BDAg,JavaScript,false,false,false,0,false,false,false,false +JSiapo/Lambda-Calculo,JSiapo,Python,false,false,false,0,false,false,false,false +mbedsys/citbx4gitlab,mbedsys,Shell,true,false,false,2,true,true,false,false +WarpedRealities/Nomad-vore-game,WarpedRealities,Java,false,false,false,0,false,false,false,false +whf5566/APIManager,whf5566,Objective-C,false,false,false,0,false,false,false,false +matt-lindsay/folder-poller,matt-lindsay,JavaScript,true,false,false,1,false,true,false,false +rarenet/dfak,rarenet,HTML,true,false,false,2,true,false,false,false +Fuzhidada/uitest,Fuzhidada,Java,false,false,true,0,false,false,false,false +TheNetJedi/hosts-generator,TheNetJedi,JavaScript,false,false,false,0,false,false,false,false +eritikass/tpt-2018-2,eritikass,JavaScript,true,false,false,4,false,true,true,true +dudi/simple-maven-dep,dudi,Java,true,false,true,2,false,true,true,false +ValleyDiscord/website,ValleyDiscord,HTML,false,false,false,0,false,false,false,false +krmit/htsit-site-4,krmit,HTML,false,false,false,0,false,false,false,false +salvadordf/OldCEF4Delphi,salvadordf,Pascal,false,false,false,0,false,false,false,false +salvadordf/CEF4Delphi,salvadordf,Pascal,false,false,false,0,false,false,false,false +kaili.arnus/bronapp,kaili.arnus,HTML,false,false,false,0,false,false,false,false +aspics/TP_LaTeX,aspics,TeX,false,false,false,0,false,false,false,false +Dom_YSK/Tamsiphon,Dom_YSK,,false,false,false,0,false,false,false,false +luis190991/demo-git,luis190991,JavaScript,false,false,false,0,false,false,false,false +301402/demo-git,301402,JavaScript,false,false,false,0,false,false,false,false +sportive-dash/dashboard-api,sportive-dash,Ruby,false,false,false,0,false,false,false,false +irenepixel/labPPW,irenepixel,HTML,true,false,false,2,false,true,true,false +kawangkwok/bikegen,kawangkwok,Python,false,false,false,0,false,false,false,false +victor.stella96/marcador-truco,victor.stella96,CSS,false,false,false,0,false,false,false,false +leifgellersen/gravity,leifgellersen,Python,false,false,false,0,false,false,false,false +VidgarVii/PMS,VidgarVii,Ruby,false,false,false,0,false,false,false,false +Vayned/Sellfie,Vayned,JavaScript,false,false,false,0,false,false,false,false +peels/Senado/Transportacion,peels,C#,false,false,false,0,false,false,false,false +solomondg/ModSimPy,solomondg,JupyterNotebook,false,false,false,0,false,false,false,false +Matrixcoffee/MatrixToyBots,Matrixcoffee,Python,false,false,false,0,false,false,false,false +EpitechContent/epitech-emacs,EpitechContent,EmacsLisp,false,false,false,0,false,false,false,false +michaeldrotar/clicker-heroes-2-berserker,michaeldrotar,ActionScript,false,false,false,0,false,false,false,false +ksible21/julia-seminar,ksible21,Julia,false,false,false,0,false,false,false,false +elazkani/rundeck-resources,elazkani,Python,true,false,false,1,false,true,false,false +intellisrc/intellibox,intellisrc,Groovy,false,false,false,0,false,false,false,false +georgematthewl/story9-ppw,georgematthewl,Python,true,true,false,2,false,true,true,false +kishannareshpal/PrazosAndroid,kishannareshpal,Java,false,false,false,0,false,false,false,false +tjansse/quantum-pynamics,tjansse,Python,false,false,false,0,false,false,false,false +monetha/reputation-contracts,monetha,JavaScript,true,false,false,1,false,true,false,false +ninuxorg/docker/ansible-centos,ninuxorg,,true,false,false,3,true,true,false,true +swergas/swergas-belenios-ci,swergas,OCaml,true,false,false,3,false,false,false,false +alaskalinuxuser/HD_Compile_Android_Oreo_Videos,alaskalinuxuser,,false,false,false,0,false,false,false,false +alaskalinuxuser/HD_Android_Compile_Upgrade_MN_Videos,alaskalinuxuser,,false,false,false,0,false,false,false,false +fempter/reaction-speed-test,fempter,Python,false,false,false,0,false,false,false,false +HanBnrd/fNIRSLearning,HanBnrd,JupyterNotebook,false,false,false,0,false,false,false,false +sravan4990/apigility,sravan4990,PHP,false,false,false,0,false,false,false,false +go_commons/OSE/D3D-printer,go_commons,,false,false,false,0,false,false,false,false +librespacefoundation/gr-leo,librespacefoundation,C++,true,false,false,2,false,false,false,false +ditdanai/Gitlab-CICD-AWS_EKS,ditdanai,,false,false,false,0,false,false,false,false +ArchLabsLinux/docs,ArchLabsLinux,Python,false,false,false,0,false,false,false,false +john1984/angular-node-shopping-cart,john1984,TypeScript,false,false,false,0,false,false,false,false +Baby-AC/expenses-tracker-backend,Baby-AC,JavaScript,true,false,false,1,false,false,true,false +flatiron-dc/learning-git2,flatiron-dc,HTML,true,false,false,1,false,false,true,false +jjustin25/Leaflet.MovingMarker,jjustin25,JavaScript,false,false,false,0,false,false,false,false +Android518-2018/lab03-skeleton-code,Android518-2018,Java,false,false,false,0,false,false,false,false +apifie/nodems/node-microservice,apifie,JavaScript,true,false,false,1,false,true,false,false +danintel/sawtooth-faq,danintel,,false,false,false,0,false,false,false,false +prahaladbelavadi/Awesome-Hacking,prahaladbelavadi,,false,false,false,0,false,false,false,false +prahaladbelavadi/awesome-hacking-1,prahaladbelavadi,,false,false,false,0,false,false,false,false +YoEight/eventsource-api-hs,YoEight,Haskell,false,false,false,0,false,false,false,false +gamearians/Games-list,gamearians,,true,false,false,1,false,false,true,false +xiaomi-sdm845/android_device_xiaomi_beryllium,xiaomi-sdm845,Makefile,false,false,false,0,false,false,false,false +maestre3d/NightLifeX,maestre3d,C#,false,false,false,0,false,false,false,false +maltelau/cogsci-methods-3-assignments,maltelau,,false,false,false,0,false,false,false,false +joielechong/NumberProgressBar,joielechong,Java,false,false,false,0,false,false,false,false +danielkocot/applicationlifeycleintelligence,danielkocot,R,false,false,false,0,false,false,false,false +Korsarro/citadelles-project,Korsarro,Java,false,false,false,0,false,false,false,false +shaktiproject/software/shakti-linux,shaktiproject,Makefile,true,false,false,1,false,true,false,false +opleidinsdag-t4t/oefening-4,opleidinsdag-t4t,C#,false,false,false,0,false,false,false,false +kollo/calcvac,kollo,C,false,false,false,0,false,false,false,false +Gnuxie/cl-postpump,Gnuxie,CommonLisp,false,false,false,0,false,false,false,false +bitoftrust/bitoftrust.gitlab.io,bitoftrust,CSS,true,false,false,1,false,true,false,false +Pixel2ROM-P/device/lge/bullhead-vendorimage,Pixel2ROM-P,Makefile,false,false,false,0,false,false,false,false +velvetyne/compagnon,velvetyne,,false,false,false,0,false,false,false,false +ninuxorg/docker/ansible-ubuntu,ninuxorg,Shell,true,false,false,3,true,true,false,true +fatmatto/jaeger-auto,fatmatto,JavaScript,false,false,false,0,false,false,false,false +fdorado985/Swift-Coding-Challenges,fdorado985,Swift,false,false,false,0,false,false,false,false +Giancarlo210896/InputIB,Giancarlo210896,Shell,false,false,false,0,false,false,false,false +ninuxorg/docker/ansible-debian,ninuxorg,Shell,true,false,false,3,true,true,false,true +ninuxorg/docker/ansible-fedora,ninuxorg,,true,false,false,3,true,true,false,true +thepiercingarrow/microbot,thepiercingarrow,JavaScript,true,false,false,1,false,false,true,false +Samspecial/Quickteller_Homepage,Samspecial,HTML,false,false,false,0,false,false,false,false +enrique444/test-matematicas-ajuste,enrique444,HTML,false,false,false,0,false,false,false,false +thejacer87/commerce_equiv_weight,thejacer87,PHP,false,false,false,0,false,false,false,false +mgi/gpm/gpm,mgi,LabVIEW,true,false,false,2,true,false,true,false +ssellars/public-gpu-test,ssellars,,false,false,false,0,false,false,false,false +calvinf/Bible-API-Thing,calvinf,Ruby,false,false,false,0,false,false,false,false +Roomproject/Roomproject,Roomproject,HTML,false,false,false,0,false,false,false,false +Doxdrum/Aff_NV,Doxdrum,TeX,false,false,false,0,false,false,false,false +KageKirin/kagekirin.gitlab.io,KageKirin,Makefile,true,false,false,2,false,true,true,false +layangankertas/slackbuildku,layangankertas,Shell,false,false,false,0,false,false,false,false +priyadarshan/scripts,priyadarshan,Shell,false,false,false,0,false,false,false,false +ahmad.sharif.abc/todoList-webApp,ahmad.sharif.abc,JavaScript,false,false,false,0,false,false,false,false +blockchain2.0/bitcoinwallet,blockchain2.0,JavaScript,false,false,false,0,false,false,false,false +lechenghhh/RapidAndroid,lechenghhh,Java,false,false,false,0,false,false,false,false +alwayson/notice,alwayson,JavaScript,false,false,false,0,false,false,false,false +krivenkop/ran-presa-carry,krivenkop,PHP,false,false,false,0,false,false,false,false +duongdangthanh01/nodejs-04,duongdangthanh01,,false,false,false,0,false,false,false,false +vijai/MCS-Controller,vijai,Java,true,false,false,1,true,false,false,false +freckles-io/freckles,freckles-io,HTML,true,false,false,2,false,true,false,true +OriginalMattJ/BitnamiNP,OriginalMattJ,Python,false,false,false,0,false,false,false,false +thomas_herbeth/VNDBA,thomas_herbeth,Kotlin,false,false,false,0,false,false,false,false +thecececollins/JSS_Scripts,thecececollins,Shell,false,false,false,0,false,false,false,false +KevinRoebert/pixarkmanager,KevinRoebert,Shell,false,false,false,0,false,false,false,false +sebastianscatularo/coding-interview-university,sebastianscatularo,,false,false,false,0,false,false,false,false +farca9/ing-sw-2018,farca9,,false,false,false,0,false,false,false,false +Notify.me/me.notify.issues,Notify.me,,false,false,false,0,false,false,false,false +adrianlemess/starwars-project,adrianlemess,TypeScript,true,false,false,4,true,true,true,false +wjwzshehe/itcast,wjwzshehe,HTML,false,false,false,0,false,false,false,false +gitHubwhl562916378/matrix,gitHubwhl562916378,C++,false,false,false,0,false,false,false,false +jnewberry0502/TuringMachineEmulator,jnewberry0502,C++,false,false,false,0,false,false,false,false +PseudoNet/BatteryBank,PseudoNet,,false,false,false,0,false,false,false,false +jahrik/arm-jenkins,jahrik,,false,false,false,0,false,false,false,false +tiny6996/bjj,tiny6996,,false,false,false,0,false,false,false,false +mapcode.mind/Clean_Light,mapcode.mind,HTML,false,false,false,0,false,false,false,false +kisphp/installers,kisphp,Shell,false,false,false,0,false,false,false,false +jamadazi/build_timestamp,jamadazi,Rust,false,false,false,0,false,false,false,false +gitpitch/the-template,gitpitch,CSS,false,false,false,0,false,false,false,false +OpenCAE/template_OpenCAE_journal_and_symposium,OpenCAE,TeX,false,false,false,0,false,false,false,false +TheArces/Project-list,TheArces,PHP,false,false,false,0,false,false,false,false +F3l1XQu1ll/SimpleMathsTrainer,F3l1XQu1ll,Java,false,false,false,0,false,false,false,false +morimekta/io-util,morimekta,Java,true,false,true,2,false,false,false,false +morimekta/diff-util,morimekta,Java,true,false,true,2,false,false,false,false +xalmat/zfs-on-debian,xalmat,,false,false,false,0,false,false,false,false +morimekta/console-util,morimekta,Java,true,false,true,2,false,false,false,false +morimekta/testing-util,morimekta,Java,true,false,true,2,false,false,false,false +superchain/superchainpy,superchain,Python,true,true,false,1,false,false,false,false +0xBACE/logpye,0xBACE,Python,false,false,false,0,false,false,false,false +ghabbw/PROG2018,ghabbw,C,false,false,false,0,false,false,false,false +jic/ircbot,jic,Java,false,false,false,0,false,false,false,false +Zeloid/keeper,Zeloid,JavaScript,false,false,false,0,false,false,false,false +ClarkHenry/dotemacs,ClarkHenry,EmacsLisp,false,false,false,0,false,false,false,false +yoginth/practical,yoginth,Java,false,false,false,0,false,false,false,false +istrocode/bajkolator,istrocode,Kotlin,false,false,false,0,false,false,false,false +axe-org/demo-ground,axe-org,Objective-C,false,false,false,0,false,false,false,false +imohacsi/playground-hyperdepth,imohacsi,Python,false,false,false,0,false,false,false,false +ttiwa/webapp,ttiwa,HTML,false,false,false,0,false,false,false,false +eLeCtrOssSnake/GMOD-MRE-Food-Mod,eLeCtrOssSnake,Lua,false,false,false,0,false,false,false,false +subspaced/subspaced,subspaced,Makefile,false,false,false,0,false,false,false,false +opennota/check,opennota,Go,true,false,false,2,true,true,false,false +opennota/re2dfa,opennota,Go,true,false,false,2,true,true,false,false +opennota/screengen,opennota,Go,true,false,false,2,true,true,false,false +opennota/yo,opennota,,false,false,false,0,false,false,false,false +custom_components/uptimerobot,custom_components,Python,true,false,false,2,true,false,true,false +axe-org/demo-test,axe-org,Objective-C,false,false,false,0,false,false,false,false +Bluebat/Planner,Bluebat,,false,false,false,0,false,false,false,false +competitive-programming/stanfordacm,competitive-programming,HTML,false,false,false,0,false,false,false,false +competitive-programming/INSAacm,competitive-programming,Python,false,false,false,0,false,false,false,false +trackmastersteve/shell,trackmastersteve,Python,false,false,false,0,false,false,false,false +Demivan/ge-wine,Demivan,Shell,false,false,false,0,false,false,false,false +eLeCtrOssSnake/GMOD-Magic-Carpets,eLeCtrOssSnake,Lua,true,false,false,1,false,true,false,false +matuzalemmuller/tcc-engtelecom,matuzalemmuller,HCL,false,false,false,0,false,false,false,false +Wopliieee/Horror-Game,Wopliieee,,false,false,false,0,false,false,false,false +fwalk/yaml2env-web,fwalk,HTML,false,false,false,0,false,false,false,false +Xynnect/AugmentedWindowsInstallation,Xynnect,HTML,false,false,false,0,false,false,false,false +Xynnect/MarkdownRumianaCV,Xynnect,HTML,true,false,false,1,false,false,true,false +Xynnect/MLRSS,Xynnect,Python,false,true,false,0,false,false,false,false +BurkHufnagel/learningloop,BurkHufnagel,JavaScript,true,false,false,9,true,true,false,true +jic/irclib,jic,Java,false,false,false,0,false,false,false,false +duudl3/vortex-btc,duudl3,Java,false,false,true,0,false,false,false,false +maos20008/3D-Terrain-Generation,maos20008,C++,false,false,false,0,false,false,false,false +maos20008/Geomapping-with-Unity-Mapbox,maos20008,C#,false,false,false,0,false,false,false,false +maos20008/HoloLens-Xbox-Controller,maos20008,C#,false,false,false,0,false,false,false,false +maos20008/HMAC,maos20008,Go,false,false,false,0,false,false,false,false +maos20008/Library-System-Android,maos20008,Java,false,false,false,0,false,false,false,false +maos20008/Marauder-Wolves,maos20008,C#,false,false,false,0,false,false,false,false +maos20008/Virtual-Photographer,maos20008,Python,false,false,false,0,false,false,false,false +maos20008/Xbox-controller-plugin,maos20008,C++,false,false,false,0,false,false,false,false +maos20008/Text-to-Speech-Android,maos20008,Java,false,false,false,0,false,false,false,false +bunnyblue/AndroidSDKMirror,bunnyblue,HTML,true,false,false,1,true,false,false,false +kehongpeng/ana,kehongpeng,TypeScript,false,false,false,0,false,false,false,false +MiZeAT/GetKB57796VMS,MiZeAT,PowerShell,false,false,false,0,false,false,false,false +vikram1565/Python,vikram1565,JupyterNotebook,false,false,false,0,false,false,false,false +moodlenet/clients/react,moodlenet,TypeScript,true,false,false,1,false,true,false,false +TuDooou/Biny,TuDooou,PHP,false,false,false,0,false,false,false,false +jp.saballegue/schooly,jp.saballegue,JavaScript,false,false,false,0,false,false,false,false +cip-playground/edgex-cip/meta-edgex-cip,cip-playground,Shell,false,false,false,0,false,false,false,false +eh5/libldac,eh5,C,false,false,false,0,false,false,false,false +timvisee/cant-touch-this,timvisee,Rust,true,false,false,3,true,true,false,false +lucj/sophia.events,lucj,CSS,true,false,false,4,true,true,true,false +mkourim/pytest-polarion-collect,mkourim,Python,false,false,false,0,false,false,false,false +Aeon_Horos/android_kernel_lge_bullhead,Aeon_Horos,C,false,false,false,0,false,false,false,false +deepglance/dgexamples,deepglance,QML,false,false,false,0,false,false,false,false +elziojr/jhipster-playground-registry,elziojr,Java,true,false,true,3,true,false,true,true +hrbrmstr/curlparse,hrbrmstr,C++,true,false,false,1,false,true,false,false +alelain/atti-snake,alelain,JavaScript,true,false,false,1,false,false,true,false +Ma_124/dotfiles,Ma_124,Shell,false,false,false,0,false,false,false,false +osgames/monstrosity,osgames,Python,false,false,false,0,false,false,false,false +JanChris/samal,JanChris,PHP,false,false,false,0,false,false,false,false +Vinarnt/kotlin-discord-bot,Vinarnt,Kotlin,false,false,false,0,false,false,false,false +osgames/mars,osgames,C++,false,false,false,0,false,false,false,false +osgames/dark-oberon,osgames,C++,false,false,false,0,false,false,false,false +charliemaiors/ansible-shinobi,charliemaiors,,false,false,false,0,false,false,false,false +alaskalinuxuser/HD_Compile_TWRP,alaskalinuxuser,,false,false,false,0,false,false,false,false +osgames/boson,osgames,C++,false,false,false,0,false,false,false,false +chrisnp/blockchain,chrisnp,JavaScript,false,false,false,0,false,false,false,false +zlig/flask-app,zlig,HTML,false,false,false,0,false,false,false,false +bitingbytes/onion-engine,bitingbytes,C++,true,false,false,3,true,true,true,false +savrus/shad-os-materials,savrus,TeX,false,false,false,0,false,false,false,false +xorhim/core-java-basic,xorhim,Java,false,false,false,0,false,false,false,false +uspcodelab/projects/hacknizer/pwa,uspcodelab,JavaScript,false,false,false,0,false,false,false,false +osgames/blacknova,osgames,PHP,false,false,false,0,false,false,false,false +osgames/deity,osgames,Python,false,false,false,0,false,false,false,false +osgames/dungeonmap,osgames,C++,false,false,false,0,false,false,false,false +osgames/eos-game,osgames,Python,false,false,false,0,false,false,false,false +uspcodelab/projects/hacknizer/hackathon-pwa,uspcodelab,JavaScript,false,false,false,0,false,false,false,false +osgames/freetrain,osgames,C#,false,false,false,0,false,false,false,false +Trilarion/cuda_sandbox,Trilarion,C++,false,false,false,0,false,false,false,false +Trilarion/tasky,Trilarion,PHP,false,false,false,0,false,false,false,false +Trilarion/omnitux2,Trilarion,Python,false,false,false,0,false,false,false,false +Trilarion/jlokalize,Trilarion,Java,false,false,false,0,false,false,false,false +popindavibe/peertube-install-no-certbot,popindavibe,,false,false,false,0,false,false,false,false +osgames/avanor,osgames,C++,false,false,false,0,false,false,false,false +osgames/howc,osgames,Python,false,false,false,0,false,false,false,false +osgames/rpdungeon,osgames,Pascal,false,false,false,0,false,false,false,false +osgames/sge2d,osgames,C,false,false,false,0,false,false,false,false +tetratech/PluggedInPortal,tetratech,C#,false,false,false,0,false,false,false,false +martinezcesarmonkey15/grafos_amplitud_profundidad,martinezcesarmonkey15,Java,false,false,false,0,false,false,false,false +Zacmenezes/gmsus-services,Zacmenezes,Java,false,false,true,0,false,false,false,false +charalambos/SkeletonCode,charalambos,C++,false,false,false,0,false,false,false,false +pgcalixto/ecommerce-app,pgcalixto,JavaScript,false,false,false,0,false,false,false,false +ubcuas/Smurf,ubcuas,Python,true,false,false,2,true,false,true,false +haoict/searchable-book-fullstack,haoict,JavaScript,true,false,false,1,true,false,false,false +puttipong.wongrak/webpack-react-setup-example,puttipong.wongrak,JavaScript,false,false,false,0,false,false,false,false +osgames/glest,osgames,C++,false,false,false,0,false,false,false,false +osgames/armies,osgames,C++,false,false,false,0,false,false,false,false +osgames/xforceffd,osgames,Pascal,false,false,false,0,false,false,false,false +traverse-opensource/backend,traverse-opensource,JavaScript,false,false,false,0,false,false,false,false +osgames/crownandcutlass,osgames,C++,false,false,false,0,false,false,false,false +osgames/jewelhunt,osgames,Java,false,false,false,0,false,false,false,false +osgames/ura-game,osgames,C++,false,false,false,0,false,false,false,false +HeavyLightStudios/HLSWebComponents/Heavy-Navbar,HeavyLightStudios,TypeScript,true,false,false,3,true,true,true,false +philstollery/bristol-ki-aikido,philstollery,HTML,true,false,false,1,false,true,false,false +osgames/jquest,osgames,Java,false,false,false,0,false,false,false,false +osgames/low,osgames,C++,false,false,false,0,false,false,false,false +luukgrefte/choco-autoinstalller,luukgrefte,Batchfile,false,false,false,0,false,false,false,false +osgames/endlessdungeons,osgames,C,false,false,false,0,false,false,false,false +osgames/spaceopera,osgames,Java,false,false,false,0,false,false,false,false +Trilarion/civil,Trilarion,Python,false,true,false,0,false,false,false,false +osgames/radakan,osgames,Python,false,false,false,0,false,false,false,false +networkAutomation/python_miscellaneous,networkAutomation,Python,false,false,false,0,false,false,false,false +thomas_tabbaza_courses/ga2_1819,thomas_tabbaza_courses,,false,false,false,0,false,false,false,false +eval/otarta,eval,Clojure,true,false,true,2,false,false,false,true +danieldan0/sandboccs,danieldan0,C#,false,false,false,0,false,false,false,false +mosaic-mfg/canvas-plugin,mosaic-mfg,CSS,false,false,false,0,false,false,false,false +luxish/cv-luxish,luxish,JavaScript,true,false,false,1,false,false,true,false +baschdel/brute-force_equation_solver,baschdel,Lua,false,false,false,0,false,false,false,false +tlonny/redux-inline,tlonny,JavaScript,false,false,false,0,false,false,false,false +usu-amr/open-source/electrical/modular-electronics,usu-amr,,false,false,false,0,false,false,false,false +DmyMi/ita-jenkins-playground,DmyMi,Groovy,false,false,false,0,false,false,false,false +eLeCtrOssSnake/GMOD-Component-C4,eLeCtrOssSnake,Lua,false,false,false,0,false,false,false,false +ld18bari/linuxday,ld18bari,CSS,true,false,false,1,false,false,true,false +rgreen13/pthreads-and-timing,rgreen13,C++,false,false,false,0,false,false,false,false +tinchoabbate/eko14-sc-audit-101,tinchoabbate,JavaScript,false,false,false,0,false,false,false,false +hgjkant/utcc,hgjkant,Java,false,false,false,0,false,false,false,false +TrevorJTClarke/noblankimg-fe,TrevorJTClarke,JavaScript,false,false,false,0,false,false,false,false +Timdx/giweb-lab1,Timdx,,false,false,false,0,false,false,false,false +Oglaigh/compilador-pl-0,Oglaigh,Java,false,false,false,0,false,false,false,false +amigasourcecodepreservation/program-design-techniques-for-the-amiga,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/mastering-amiga-programming-secrets,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +wangningkai/lablog,wangningkai,HTML,false,false,false,0,false,false,false,false +osgames/fujo,osgames,Python,false,false,false,0,false,false,false,false +osgames/lost-sky,osgames,Python,false,false,false,0,false,false,false,false +osgames/goblin-camp,osgames,C++,false,false,false,0,false,false,false,false +kirmanak/useless-script,kirmanak,Shell,false,false,false,0,false,false,false,false +kilik/tools/mysql-filter-dump,kilik,PHP,true,false,false,1,true,false,false,false +hoplasoftware-training/events,hoplasoftware-training,,false,false,false,0,false,false,false,false +malbareda/Bomberman2,malbareda,Java,false,false,false,0,false,false,false,false +unrealpugs/PugApi,unrealpugs,Java,false,false,false,0,false,false,false,false +rtat.net/my-app-project,rtat.net,,false,false,false,0,false,false,false,false +MaxDolet/filestore-dolet,MaxDolet,,false,false,false,0,false,false,false,false +ablu/mana_elixir,ablu,Elixir,true,false,false,1,false,true,false,false +chsjr1996/project_tg,chsjr1996,PHP,false,false,false,0,false,false,false,false +StanleyOsegueda/modelo-retailer,StanleyOsegueda,,false,false,false,0,false,false,false,false +Niklan/media_oembed_providers_url_ui,Niklan,,false,false,false,0,false,false,false,false +usu-amr/open-source/mech/mechanical,usu-amr,,false,false,false,0,false,false,false,false +codeifly/datadumpanalyzer,codeifly,C#,false,false,false,0,false,false,false,false +uspcodelab/projects/hacknizer/design-system,uspcodelab,JavaScript,false,false,false,0,false,false,false,false +mariyana/beer-me,mariyana,HTML,false,false,false,0,false,false,false,false +targetflow/emise,targetflow,,false,false,false,0,false,false,false,false +CumulusNetworks/evpn-to-the-host,CumulusNetworks,Shell,false,false,false,0,false,false,false,false +GhodBase/runscene,GhodBase,GDScript,false,false,false,0,false,false,false,false +fabioduran/programacion-i,fabioduran,Python,false,false,false,0,false,false,false,false +flora-portal/flora-portal,flora-portal,Python,false,false,false,0,false,false,false,false +andrei1058/citizensserverselector,andrei1058,Java,false,false,false,0,false,false,false,false +fdorado985/ios12-masterclass,fdorado985,Swift,false,false,false,0,false,false,false,false +Septinnia/sequential_search,Septinnia,Java,false,false,false,0,false,false,false,false +donatocardoso/snake-game,donatocardoso,JavaScript,true,false,false,1,false,false,true,false +wagner.rua/analiseprojetosistemas,wagner.rua,Python,false,false,false,0,false,false,false,false +BenOrcha/projet_innovation,BenOrcha,,false,false,false,0,false,false,false,false +hito87/my-cw-exercises,hito87,Python,false,false,false,0,false,false,false,false +jgortmaker1/cg-architectuur,jgortmaker1,,false,false,false,0,false,false,false,false +dheu/leaf,dheu,C,false,false,false,0,false,false,false,false +wuxinli1025/driveJ,wuxinli1025,Java,false,false,false,0,false,false,false,false +InuitViking/GothicDemo,InuitViking,PHP,false,false,false,0,false,false,false,false +InuitViking/parkeringsafgift,InuitViking,PHP,false,false,false,0,false,false,false,false +InuitViking/redir.php,InuitViking,PHP,false,false,false,0,false,false,false,false +samucaguimaraes/konsig,samucaguimaraes,PHP,false,false,false,0,false,false,false,false +hosweetim/timx-site,hosweetim,TypeScript,true,false,false,5,true,true,true,false +metalx1000/3d-game-studio-projects,metalx1000,wdl,false,false,false,0,false,false,false,false +Filipalberius/computer,Filipalberius,Java,false,false,false,0,false,false,false,false +jfontaine31/pymongo-test,jfontaine31,Python,false,true,false,0,false,false,false,false +Trilarion/worldbuilder,Trilarion,VisualBasic,false,false,false,0,false,false,false,false +murnux/HappyBot,murnux,Go,false,false,false,0,false,false,false,false +Naraka/ctf,Naraka,,false,false,false,0,false,false,false,false +malbareda/m06-acces-a-dades,malbareda,Java,false,false,false,0,false,false,false,false +ehsaan/ehsaan.me,ehsaan,HTML,true,false,false,1,false,false,true,false +ericrprates/app-test,ericrprates,PHP,false,false,false,0,false,false,false,false +1MansiS/JavaCrypto,1MansiS,Java,true,false,false,1,true,false,false,false +rusdmonkey/helpservices,rusdmonkey,Kotlin,false,false,false,0,false,false,false,false +fiveop/krautschluessel,fiveop,Java,true,false,false,1,true,false,false,false +rgreen13/pthreads-i,rgreen13,C++,false,false,false,0,false,false,false,false +emilianogfcm/imagechallenge,emilianogfcm,Java,false,false,false,0,false,false,false,false +AnakiKaiver297/cardinal,AnakiKaiver297,Python,false,true,false,0,false,false,false,false +Lyocz/Keto,Lyocz,Java,false,false,false,0,false,false,false,false +Monsterovich/itogg,Monsterovich,C,false,false,false,0,false,false,false,false +openrail/uk/stomp-client-nodejs,openrail,JavaScript,true,false,false,3,true,true,true,false +CySlider/zfs-snapshot-list,CySlider,Shell,false,false,false,0,false,false,false,false +zieone/comic,zieone,CSS,true,false,false,2,false,true,true,false +nai309/monkeysort,nai309,C,false,false,false,0,false,false,false,false +dylanbstorey/maev,dylanbstorey,Python,true,false,false,3,false,false,false,true +xeroxIRC/xeroxIRC.github.io,xeroxIRC,HTML,false,false,false,0,false,false,false,false +nisar6062/mytaxi-server-applicant-test-18,nisar6062,Java,false,false,true,0,false,false,false,false +imnii/portfolio,imnii,JavaScript,false,false,false,0,false,false,false,false +pibigstar/Mybatis,pibigstar,Java,true,false,true,3,true,true,true,false +maalni/crunchysync,maalni,TypeScript,true,false,false,1,false,false,false,false +ufox32_t/LCD-Image-Converter,ufox32_t,C,false,false,false,0,false,false,false,false +pengziyang/awesome-programming-books,pengziyang,,false,false,false,0,false,false,false,false +iOSLearningCollections/collectionviewslistgriddance,iOSLearningCollections,,false,false,false,0,false,false,false,false +ivanada89/apuntes-pw-78,ivanada89,HTML,false,false,false,0,false,false,false,false +synchronicity-iot/synchronicity-data-models,synchronicity-iot,Python,false,false,false,0,false,false,false,false +Danillojdp/angular-tour-of-heroes,Danillojdp,TypeScript,false,false,false,0,false,false,false,false +Sumaid/supermario,Sumaid,Python,false,true,false,0,false,false,false,false +Sumaid/eventmanager,Sumaid,HTML,false,false,false,0,false,false,false,false +Sumaid/graphic-calculator,Sumaid,JavaScript,false,false,false,0,false,false,false,false +wldhx-gnunet/workshop,wldhx-gnunet,Shell,false,false,false,0,false,false,false,false +neuromutant/vue_picture_upload,neuromutant,Vue,false,false,false,0,false,false,false,false +Sumaid/personal-website,Sumaid,HTML,false,false,false,0,false,false,false,false +Sumaid/space-invaders,Sumaid,Python,false,false,false,0,false,false,false,false +aptrust/container-registry,aptrust,,false,false,false,0,false,false,false,false +cromefire/_preact-boot,cromefire,TypeScript,false,false,false,0,false,false,false,false +n0r1sk/docker-volume-glusterfs,n0r1sk,Go,true,false,false,1,true,false,false,false +Bruno_Oliveira_Dev/agendabotfatec,Bruno_Oliveira_Dev,JavaScript,false,false,false,0,false,false,false,false +JeffLabonte/Internet-Of-Anything,JeffLabonte,Shell,false,false,false,0,false,false,false,false +Dog2puppy/Roblox-Ads,Dog2puppy,,true,false,false,1,false,true,false,false +acanthae/ivy-and-ocean,acanthae,,false,false,false,0,false,false,false,false +tdillon/wig,tdillon,Java,true,false,false,2,true,false,true,false +ComputerOnFire/brickaddress,ComputerOnFire,HTML,false,false,false,0,false,false,false,false +zzz-i2p/slim-rails,zzz-i2p,Ruby,false,false,false,0,false,false,false,false +mckel/racketdb,mckel,Java,false,false,false,0,false,false,false,false +echocat/echocat.org,echocat,Go,true,false,false,2,true,false,true,false +morimekta/providence-idea-plugin,morimekta,Java,false,false,false,0,false,false,false,false +fredriklarsen/AirBrush,fredriklarsen,Kotlin,true,false,false,3,true,false,true,false +vinicius/_medio,vinicius,PHP,false,false,false,0,false,false,false,false +Acklen/glee2,Acklen,TypeScript,true,false,false,4,true,true,true,false +velocidex/go-ntfs,velocidex,Go,false,false,false,0,false,false,false,false +Morriar/inf3135-laboratoires,Morriar,C,false,false,false,0,false,false,false,false +pkuyken/hexmap-generator,pkuyken,Go,true,false,false,2,true,true,false,false +mainlabwsu/mcl,mainlabwsu,PHP,false,false,false,0,false,false,false,false +prd/rescue-team,prd,,false,false,false,0,false,false,false,false +mightbemaybeme/nicovideo-dl,mightbemaybeme,Python,false,false,false,0,false,false,false,false +senselesslogic/moviebot,senselesslogic,TypeScript,false,false,false,0,false,false,false,false +vt2018/programming,vt2018,Java,false,false,false,0,false,false,false,false +dantoac/hugo-theme-massively,dantoac,CSS,false,false,false,0,false,false,false,false +codefestderhackerz/codefest,codefestderhackerz,Java,false,false,true,0,false,false,false,false +codefestderhackerz/testpackage,codefestderhackerz,Java,false,false,true,0,false,false,false,false +nllgg/kern,nllgg,,false,false,false,0,false,false,false,false +fritz4/talkingmaps,fritz4,CSS,false,false,false,0,false,false,false,false +iaros/ed3s,iaros,JupyterNotebook,false,false,false,0,false,false,false,false +major_ocelot/lewd-backend,major_ocelot,Python,false,false,false,0,false,false,false,false +major_ocelot/harbour-lewd,major_ocelot,,false,false,false,0,false,false,false,false +amy-assistant/api,amy-assistant,JavaScript,false,false,false,0,false,false,false,false +amy-assistant/amy-assistant.gitlab.io,amy-assistant,CSS,true,false,false,1,false,false,true,false +Rayhaan-Bhikha/calculator,Rayhaan-Bhikha,Java,false,false,false,0,false,false,false,false +DanielPetrica/client,DanielPetrica,Go,false,false,false,0,false,false,false,false +amy-assistant/graphics,amy-assistant,CSS,true,false,false,1,false,false,true,false +spdev55/prettyorder,spdev55,PHP,false,false,false,0,false,false,false,false +dbohdan/hosts,dbohdan,Tcl,true,false,false,1,false,true,false,false +wum2017/calcul-de-conges,wum2017,HTML,false,false,false,0,false,false,false,false +reggermont/docker-kernel-builder,reggermont,Makefile,false,false,false,0,false,false,false,false +shya1984/apache-groovy-course,shya1984,Groovy,false,false,false,0,false,false,false,false +shya1984/dashing-jenkins_job,shya1984,JavaScript,false,false,false,0,false,false,false,false +shya1984/jenkins-build-monitor-plugin,shya1984,Java,false,false,false,0,false,false,false,false +shya1984/maven-project,shya1984,Java,false,false,true,0,false,false,false,false +midori-mate/problems,midori-mate,Python,false,false,false,0,false,false,false,false +neuralserver/nflash,neuralserver,Java,false,false,true,0,false,false,false,false +Scrumplex/motd,Scrumplex,Shell,false,false,false,0,false,false,false,false +uilianries/native-floripa,uilianries,CMake,true,false,false,3,false,true,true,false +piratpartiet-se/sluta-snoka,piratpartiet-se,HTML,false,false,false,0,false,false,false,false +jsonsonson/in-command,jsonsonson,JavaScript,true,false,false,4,false,true,false,false +GoingDev/goingworking,GoingDev,PHP,false,false,false,0,false,false,false,false +ghost-in-the-zsh/makesecret,ghost-in-the-zsh,Python,false,false,false,0,false,false,false,false +kd/_my-ansible-tutorial,kd,,false,false,false,0,false,false,false,false +random_projects/thepoty,random_projects,Go,false,false,false,0,false,false,false,false +archipel-somoco/archipel-core,archipel-somoco,JavaScript,false,false,false,0,false,false,false,false +amigasourcecodepreservation/benchmark-modula-2-documentation,amigasourcecodepreservation,Modula-2,false,false,false,0,false,false,false,false +midori-mate/bilingual,midori-mate,,false,false,false,0,false,false,false,false +multicloud-openstack-k8s/app,multicloud-openstack-k8s,HTML,true,false,false,9,true,true,false,true +MaxIV/web-maxiv-tangogql,MaxIV,JavaScript,true,false,false,2,true,false,true,false +ceta/greenfood,ceta,Java,false,false,false,0,false,false,false,false +mashytski/alexandra,mashytski,JavaScript,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/slackline,gitlab-com,JavaScript,false,false,false,0,false,false,false,false +fufuhu/hands_on_sample,fufuhu,Python,true,false,false,2,true,true,false,false +avs-applications/miniscrum,avs-applications,JavaScript,false,false,false,0,false,false,false,false +jritchey/adsf,jritchey,,false,false,false,0,false,false,false,false +Sterophonick/systembioses,Sterophonick,,false,false,false,0,false,false,false,false +homescreen.rocks/lanpartyscreen-beamer,homescreen.rocks,TypeScript,true,false,false,1,true,false,false,false +neetsdkasu/genmmstub,neetsdkasu,Java,false,false,false,0,false,false,false,false +nuclearpaws/mvvmarchitecturelearning,nuclearpaws,C#,false,false,false,0,false,false,false,false +morimekta/idltool,morimekta,Java,true,false,true,2,false,false,false,true +l.w.jasons/SWProxy,l.w.jasons,Python,false,true,false,0,false,false,false,false +OmarChaparro/omarupp1,OmarChaparro,PHP,false,false,false,0,false,false,false,false +Ikaheishi/sanitized,Ikaheishi,Python,false,false,false,0,false,false,false,false +huzhongyin/ZYPermission,huzhongyin,,false,false,false,0,false,false,false,false +alcedo-atthis/source,alcedo-atthis,C++,false,false,false,0,false,false,false,false +abduljamiasi2014/testapp,abduljamiasi2014,HTML,true,false,false,1,false,false,true,false +diggan/archiveteam-infra,diggan,JavaScript,true,false,false,3,true,false,true,false +alping/kep-code-club,alping,Python,false,false,false,0,false,false,false,false +cashid/identity-manager,cashid,JavaScript,false,false,false,0,false,false,false,false +danielgaston/converse,danielgaston,Objective-C,true,false,false,1,true,false,false,false +jeefo/yapb-readme,jeefo,,false,false,false,0,false,false,false,false +networklab-kmitl/auto-authen-kmitl,networklab-kmitl,Python,false,true,false,0,false,false,false,false +gitlab-com/marketing/community-relations/general,gitlab-com,,false,false,false,0,false,false,false,false +Lbates1/lbatesleveldesign,Lbates1,C#,false,false,false,0,false,false,false,false +danielgaston/conversespec,danielgaston,Ruby,false,false,false,0,false,false,false,false +bachtungvantung/gitlab-ce,bachtungvantung,Ruby,true,false,false,6,true,true,false,false +jactry/chromium,jactry,,false,false,false,0,false,false,false,false +itapplication.net/NewTab,itapplication.net,HTML,false,false,false,0,false,false,false,false +Akash1604/adeesh,Akash1604,,false,false,false,0,false,false,false,false +monetha/reputation-go-sdk,monetha,Go,true,false,false,1,false,true,false,false +keyage/spzdaifugo,keyage,C#,false,false,false,0,false,false,false,false +jean-christophe-manciot/dr,jean-christophe-manciot,,false,false,false,0,false,false,false,false +jean-christophe-manciot/drive,jean-christophe-manciot,,false,false,false,0,false,false,false,false +Yutsa/beerapi,Yutsa,Java,false,false,true,0,false,false,false,false +rgreen13/pthreads-ii,rgreen13,C++,false,false,false,0,false,false,false,false +alaskalinuxuser/HD_GitHub_GitLab,alaskalinuxuser,,false,false,false,0,false,false,false,false +Aggroo/vrouls-spel,Aggroo,C#,false,false,false,0,false,false,false,false +college-attendance/attend-server,college-attendance,JavaScript,false,false,false,0,false,false,false,false +ga-epd-it/geco,ga-epd-it,JavaScript,false,false,false,0,false,false,false,false +TerrahKnight/ctf_writeups,TerrahKnight,,false,false,false,0,false,false,false,false +scion-scxml/test-framework,scion-scxml,XSLT,false,false,false,0,false,false,false,false +mightbemaybeme/pornhub-dl,mightbemaybeme,Python,false,false,false,0,false,false,false,false +DreenDex/translations-helper,DreenDex,Java,false,false,true,0,false,false,false,false +ThinkingBig/UnderTest/undertest,ThinkingBig,C#,false,false,false,0,false,false,false,false +debanypaolaa/codllege,debanypaolaa,HTML,false,false,false,0,false,false,false,false +rgreen13/pthreads-template,rgreen13,C++,false,false,false,0,false,false,false,false +rgreen13/pthreads-busy-waiting-example,rgreen13,C++,false,false,false,0,false,false,false,false +Valeness/silverblaze,Valeness,HTML,false,false,false,0,false,false,false,false +yamot47/registration-form,yamot47,,false,false,false,0,false,false,false,false +pusatkarpetjid77/pusat-karpet-masjid,pusatkarpetjid77,,false,false,false,0,false,false,false,false +thomas-adnum/murder-case-ist,thomas-adnum,,false,false,false,0,false,false,false,false +thomas-adnum/quote-game-ist,thomas-adnum,,false,false,false,0,false,false,false,false +phygitalproject/phygitalproject.gitlab.io,phygitalproject,CSS,true,false,false,2,false,true,true,false +AdderROM-gz/manifest,AdderROM-gz,,false,false,false,0,false,false,false,false +lewishamhomes/lh-datamodel,lewishamhomes,C#,false,false,false,0,false,false,false,false +HiPhish/guile-msgpack,HiPhish,Scheme,false,false,false,0,false,false,false,false +amiloradovsky/symbolic-dynamics,amiloradovsky,Coq,false,false,false,0,false,false,false,false +vkulish/airlinehyperledgersample,vkulish,JavaScript,false,false,false,0,false,false,false,false +et4te/ocaml-dalek,et4te,Rust,false,false,false,0,false,false,false,false +gopherburrow/mux,gopherburrow,Go,true,false,false,1,false,true,false,false +cubik612/cviko_1,cubik612,Python,false,false,false,0,false,false,false,false +gopherburrow/proxyheaders,gopherburrow,Go,true,false,false,1,false,true,false,false +1stthomas/ffhs-aufgaben-dua,1stthomas,Java,false,false,false,0,false,false,false,false +gopherburrow/csrfcookie,gopherburrow,Go,true,false,false,1,false,true,false,false +andreaTP/sbtcli,andreaTP,Scala,false,false,false,0,false,false,false,false +abhra0897/MSP430-CC1101-Energia-Library,abhra0897,C++,false,false,false,0,false,false,false,false +Noody/ip-tool,Noody,C#,false,false,false,0,false,false,false,false +GuardianOfCookies/python-cheatsheat,GuardianOfCookies,,false,false,false,0,false,false,false,false +petronetto/interactive-coding-challenges,petronetto,Python,false,true,false,0,false,false,false,false +dustyweb/polapub,dustyweb,,false,false,false,0,false,false,false,false +chrisforrence/design-system-components,chrisforrence,Vue,false,false,false,0,false,false,false,false +witdnvn/hangout-service,witdnvn,,false,false,false,0,false,false,false,false +morrikan/dat-image-exporter,morrikan,C#,false,false,false,0,false,false,false,false +nguyennh0104/tram-huong-tu-nhien,nguyennh0104,,false,false,false,0,false,false,false,false +linakitty/dnscrypt-proxy-self-service,linakitty,,false,false,false,0,false,false,false,false +pothitos/Java_Pipeline,pothitos,Java,true,false,false,2,true,true,false,false +dnet-dev/anuvys-os,dnet-dev,,false,false,false,0,false,false,false,false +ApacheWang/algorithm,ApacheWang,,false,false,false,0,false,false,false,false +Yooyeon/kisti,Yooyeon,Python,false,false,false,0,false,false,false,false +pavelpolv-dev/calendar,pavelpolv-dev,JavaScript,false,false,false,0,false,false,false,false +liv/public/unity-ipa-debugger,liv,C#,false,false,false,0,false,false,false,false +MarkTremblay/ufc-poo,MarkTremblay,Java,false,false,false,0,false,false,false,false +nyanloutre/nixos-config,nyanloutre,Nix,false,false,false,0,false,false,false,false +Nooka10/local-food,Nooka10,HTML,true,false,false,4,true,true,true,true +tref/drupal-kubernetes-builder,tref,,true,false,false,1,true,false,false,false +geartzen9/drinkz,geartzen9,Dart,false,false,false,0,false,false,false,false +clickable/ut-app-python-cmake-template,clickable,CMake,false,false,false,0,false,false,false,false +cedric/Freshermeat,cedric,Python,false,false,false,0,false,false,false,false +bosscha/alma-calibrator,bosscha,JupyterNotebook,false,false,false,0,false,false,false,false +hex-usr/higan-libretro,hex-usr,C++,false,false,false,0,false,false,false,false +perswayable/bot,perswayable,JavaScript,true,false,false,1,false,false,true,false +karlalan//Fundamental_Programming/,karlalan,JavaScript,false,false,false,0,false,false,false,false +dangakun/pwaproject,dangakun,JavaScript,false,false,false,0,false,false,false,false +jeremyz/gdx-boardgame,jeremyz,Java,false,false,false,0,false,false,false,false +Nanopro/rslview,Nanopro,JavaScript,false,false,false,0,false,false,false,false +MachiavelliG2G/antimalware-organizer,MachiavelliG2G,JavaScript,false,false,false,0,false,false,false,false +codingmama/lolbox,codingmama,PHP,false,false,false,0,false,false,false,false +rDany/eckr-demo,rDany,JupyterNotebook,false,false,false,0,false,false,false,false +dysania/mendax,dysania,Go,false,false,false,0,false,false,false,false +agaric/drupal/redirect_404,agaric,,false,false,false,0,false,false,false,false +ametzger/dotfiles,ametzger,EmacsLisp,false,false,false,0,false,false,false,false +coringao/roadfighter,coringao,C++,false,false,false,0,false,false,false,false +mario2018/taskone,mario2018,,false,false,false,0,false,false,false,false +alxnophis/yu,alxnophis,Kotlin,true,false,false,2,true,true,false,false +haik0925/playground,haik0925,C,false,false,false,0,false,false,false,false +dunossauro/batatinhas,dunossauro,Python,true,false,false,1,false,true,false,false +konniskatt/pyconio,konniskatt,Python,false,false,false,0,false,false,false,false +anggaranothing/svencoop-semiclip,anggaranothing,AngelScript,false,false,false,0,false,false,false,false +ihatelainchan_alot/tattletale,ihatelainchan_alot,Python,false,false,false,0,false,false,false,false +RLesur/pulpdown,RLesur,CSS,true,false,false,1,false,false,true,false +maos20008/Remote-Image-Upload,maos20008,Swift,false,false,false,0,false,false,false,false +maos20008/Smart-Mirror-App,maos20008,Python,false,false,false,0,false,false,false,false +FlatBuffersX/flatbufferx,FlatBuffersX,Java,true,false,false,1,true,false,false,false +toonaive0618/guile-zmq,toonaive0618,Shell,true,false,false,1,false,true,false,false +happycodingsarl/civicrm-core-for-drupal,happycodingsarl,PHP,false,false,false,0,false,false,false,false +tribute-coop/alpha-open,tribute-coop,,false,false,false,0,false,false,false,false +dstieghorst/SimpleWMS,dstieghorst,Java,false,false,false,0,false,false,false,false +rusben/smx-m08-uf5,rusben,HTML,true,false,false,1,false,false,true,false +1513495/soccer-star,1513495,Python,false,false,false,0,false,false,false,false +patnws_pp/myschool,patnws_pp,HTML,false,false,false,0,false,false,false,false +interscity/health-dashboard/datahealth-api,interscity,Ruby,true,false,false,2,false,true,false,false +sailfishos-porters-ci/cancro-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false +ezio84/android-gapps,ezio84,Shell,false,false,false,0,false,false,false,false +sailfishos-porters-ci/mido-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false +pbriar/White-Rock-College,pbriar,PHP,false,false,false,0,false,false,false,false +swittenberger/stellarisowo,swittenberger,Python,false,false,false,0,false,false,false,false +sailfishos-porters-ci/onyx-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false +FredericGuilbault/gerboise,FredericGuilbault,JavaScript,false,false,false,0,false,false,false,false +Shyroe/NoyadePython,Shyroe,Python,false,false,false,0,false,false,false,false +districted/web-client,districted,TypeScript,true,false,false,6,false,false,false,false +districted/auth-server,districted,Java,true,false,false,6,true,true,false,false +districted/district-command-service,districted,Java,true,false,false,6,true,true,false,false +districted/district-query-service,districted,Java,true,false,false,6,true,true,false,false +districted/configuration,districted,Shell,false,false,false,0,false,false,false,false +districted/docs,districted,,false,false,false,0,false,false,false,false +districted/api-gateway,districted,Java,true,false,false,6,true,true,false,false +districted/configuration-server,districted,Java,true,false,false,6,true,true,false,false +districted/discovery-server,districted,Java,true,false,false,6,true,true,false,false +districted/feedback-service,districted,Java,true,false,false,6,true,true,false,false +districted/docker-stacks,districted,Shell,false,false,false,0,false,false,false,false +districted/message-command-service,districted,Java,true,false,false,6,true,true,false,false +districted/message-query-service,districted,Java,true,false,false,6,true,true,false,false +districted/media-read-service,districted,Java,true,false,false,6,true,true,false,false +districted/media-write-service,districted,Java,true,false,false,6,true,true,false,false +districted/profile-command-service,districted,Java,true,false,false,6,true,true,false,false +districted/profile-query-service,districted,Java,true,false,false,6,true,true,false,false +fdorado985/hws-slope,fdorado985,Swift,false,false,false,0,false,false,false,false +smew/factorio-clock,smew,Python,false,false,false,0,false,false,false,false +sporkd/dotfiles,sporkd,Vimscript,false,false,false,0,false,false,false,false +districted/notification-service,districted,Java,true,false,false,6,true,true,false,false +osgames/uaf,osgames,C++,false,false,false,0,false,false,false,false +coreynwops/puppetapply,coreynwops,Ruby,false,false,false,0,false,false,false,false +fesiqp/fessh,fesiqp,Go,false,false,false,0,false,false,false,false +ahashki/Mvc,ahashki,C#,false,false,false,0,false,false,false,false +angristan/openvpn-install,angristan,Shell,false,false,false,0,false,false,false,false +josephdeveloper/template_flask,josephdeveloper,HTML,false,false,false,0,false,false,false,false +stands_ryo/dotfiles,stands_ryo,Vimscript,false,false,false,0,false,false,false,false +cdaza/netlogo-distribuido,cdaza,NetLogo,false,false,false,0,false,false,false,false +quan-na/cabage.el,quan-na,EmacsLisp,false,false,false,0,false,false,false,false +Techie001/my-pure-php-api,Techie001,PHP,false,false,false,0,false,false,false,false +Aexol/graphql-editor,Aexol,TypeScript,true,false,false,2,true,true,false,false +athas/fut-gitlab,athas,,false,false,false,0,false,false,false,false +goauth/dex,goauth,Python,true,true,false,3,true,true,true,false +7learn-experts/php2.exp,7learn-experts,PHP,false,false,false,0,false,false,false,false +Sept18/javawebapp,Sept18,Java,false,false,false,0,false,false,false,false +k33g/generate-prometheus-data,k33g,JavaScript,false,false,false,0,false,false,false,false +inyutin/golang-pairing-cryptography-implementation,inyutin,Go,false,false,false,0,false,false,false,false +lishiyu/download,lishiyu,,false,false,false,0,false,false,false,false +gioxa/odagrun/website,gioxa,HTML,true,false,false,4,true,false,false,true +mayankjohri/faqsonpythonautomationframework,mayankjohri,Python,false,false,false,0,false,false,false,false +uxrt/uxrt-toplevel,uxrt,Makefile,false,false,false,0,false,false,false,false +jorgecarleitao/schemaflow,jorgecarleitao,Python,true,true,false,3,false,true,true,false +Lepardo/SimpleWebSpider-Android,Lepardo,Java,true,false,false,2,true,true,false,false +happycodingsarl/civicrm-library-for-drupal,happycodingsarl,JavaScript,false,false,false,0,false,false,false,false +rc183/cortanux,rc183,JavaScript,false,false,false,0,false,false,false,false +Lepardo/chestrucon,Lepardo,Awk,true,false,false,1,true,false,false,false +Lepardo/simplewebspider,Lepardo,Java,true,false,true,3,true,true,true,false +DylanGriffith/gitlab-lightning,DylanGriffith,Elixir,false,false,false,0,false,false,false,false +alapatinarendra91/carwash,alapatinarendra91,Java,false,false,false,0,false,false,false,false +amigasourcecodepreservation/amiga-a1200-insider-guide,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/mastering-amigados,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/mastering-amigados-3-tutorial,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/mastering-the-amiga,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/spiele-programmierung-in-assembler,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/total-amiga-workbench,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +danii1/proyecto-awesome,danii1,,false,false,false,0,false,false,false,false +agostini.tech/atenigma,agostini.tech,Swift,false,false,false,0,false,false,false,false +ipapi/ip-address-location-api,ipapi,,false,false,false,0,false,false,false,false +Dony434/admingym,Dony434,HTML,false,false,false,0,false,false,false,false +reza-id/kotlin,reza-id,Kotlin,false,false,false,0,false,false,false,false +andy37/churchapi,andy37,,false,false,false,0,false,false,false,false +iagrant/dotfiles,iagrant,Shell,false,false,false,0,false,false,false,false +rbuer2007/ideas,rbuer2007,Java,true,false,true,1,false,true,false,false +OctoNezd/autogram,OctoNezd,Python,true,true,false,2,true,true,false,false +ar-/open-defence-original,ar-,Java,false,false,false,0,false,false,false,false +Danjitru/dotsandstuff,Danjitru,Shell,false,false,false,0,false,false,false,false +girchi/api.girchi.ge,girchi,PHP,false,false,false,0,false,false,false,false +Devps-Research/issue-tracker,Devps-Research,,false,false,false,0,false,false,false,false +JoseXS/xsrepo,JoseXS,,false,false,false,0,false,false,false,false +tales/sourceoftales,tales,Lua,false,false,false,0,false,false,false,false +patricksangian/telkom-backend-patricksangian,patricksangian,Python,false,false,false,0,false,false,false,false +oalnoman/cse360,oalnoman,Java,false,false,false,0,false,false,false,false +mkoterx/algo,mkoterx,Java,false,false,false,0,false,false,false,false +onebit/cursokamevue,onebit,,false,false,false,0,false,false,false,false +ehemsley/hyper-ecs,ehemsley,Lua,false,false,false,0,false,false,false,false +obachar46/wphelper,obachar46,PHP,false,false,false,0,false,false,false,false +intaeryoo/cs373-idb,intaeryoo,JavaScript,false,false,false,0,false,false,false,false +fwalk/gitea-spk,fwalk,Shell,false,false,false,0,false,false,false,false +ahmad_fauzan458/story,ahmad_fauzan458,JavaScript,true,false,false,1,false,false,true,false +2ndkauboy/gitlab-ci-git-deploy,2ndkauboy,,true,false,false,3,true,true,false,true +numenra/Thesis,numenra,PostScript,false,false,false,0,false,false,false,false +jaysonnutt/gruvbox,jaysonnutt,Vimscript,false,false,false,0,false,false,false,false +rockettpw/seo/jumplinks-one,rockettpw,PHP,false,false,false,0,false,false,false,false +fablabnapoli/EngraveCube,fablabnapoli,Python,false,true,false,0,false,false,false,false +nieper/nu-scheme,nieper,Scheme,false,false,false,0,false,false,false,false +inacap/androidholamundoapr4da2018,inacap,Java,false,false,false,0,false,false,false,false +zzz-i2p/my-awesome-project,zzz-i2p,Ruby,false,false,false,0,false,false,false,false +ios-dev-in-wa/ios2409wa-g66,ios-dev-in-wa,Swift,false,false,false,0,false,false,false,false +ns-unina/dsp-for-students,ns-unina,Ruby,false,false,false,0,false,false,false,false +zzz-i2p/app-rails,zzz-i2p,Ruby,false,false,false,0,false,false,false,false +yerqueri/curexmi,yerqueri,Java,false,false,false,0,false,false,false,false +AleksandarGit/calculator,AleksandarGit,Java,false,false,true,0,false,false,false,false +Mrtops/Introduction-to-Java-Programming,Mrtops,Java,false,false,false,0,false,false,false,false +mygnu/spark_post,mygnu,Rust,true,false,false,1,true,false,false,false +tedbundyjr/kodi-repo2,tedbundyjr,Python,false,false,false,0,false,false,false,false +foss4/persian-glossary,foss4,,false,false,false,0,false,false,false,false +waltercool/cloudmusic,waltercool,Java,false,false,false,0,false,false,false,false +olvap/esperando,olvap,Ruby,false,false,false,0,false,false,false,false +HarrySystems/dotfiles,HarrySystems,Vimscript,false,false,false,0,false,false,false,false +frozenfoxx/terraform-vsphere-ddns,frozenfoxx,Shell,false,false,false,0,false,false,false,false +fillipetrojan/aulacolaborativa,fillipetrojan,Java,false,false,false,0,false,false,false,false +mariobot/visitantes,mariobot,C#,false,false,false,0,false,false,false,false +numenra/rhab,numenra,R,false,false,false,0,false,false,false,false +Space-Ed/while-compiler-tests,Space-Ed,Java,false,false,false,0,false,false,false,false +Hurds/python-book,Hurds,HTML,true,false,false,2,false,true,true,false +juarmos11/sales,juarmos11,JavaScript,false,false,false,0,false,false,false,false +Hurds/C-Book,Hurds,CSS,true,false,false,2,false,true,true,false +183921850560/test,183921850560,,false,false,false,0,false,false,false,false +sterrk/editable-texts,sterrk,JavaScript,false,false,false,0,false,false,false,false +lifranc/dotfiles,lifranc,CSS,false,false,false,0,false,false,false,false +varnishcache/varnish-cache,varnishcache,C,false,false,false,0,false,false,false,false +projectmanagementteam8/project-management-team-8,projectmanagementteam8,,false,false,false,0,false,false,false,false +latex-template/thesis,latex-template,TeX,true,false,false,1,true,false,false,false +WonderWondels/project-5-6-staff-presence,WonderWondels,C++,false,false,false,0,false,false,false,false +musikhuber/vertretungsplan,musikhuber,PHP,false,false,false,0,false,false,false,false +anhtuan016/pokerserver,anhtuan016,Java,false,false,false,0,false,false,false,false +flakroup/flakessentials,flakroup,C#,false,false,false,0,false,false,false,false +Marenz/noway,Marenz,Rust,false,false,false,0,false,false,false,false +tape09/MultiAgent_A2,tape09,Python,false,false,false,0,false,false,false,false +TollStudios/justanothernetworklib,TollStudios,C#,true,false,false,3,true,true,false,false +leggettc18/fundwarrior,leggettc18,Rust,true,false,false,1,true,false,false,false +arteeh/nome,arteeh,,false,false,false,0,false,false,false,false +LukinhaPPH/baixa_livros,LukinhaPPH,Python,false,false,false,0,false,false,false,false +vowo/vowobackend,vowo,Go,false,false,false,0,false,false,false,false +cleiton-limapin/boilerplate,cleiton-limapin,Python,false,false,false,0,false,false,false,false +lehin/rak439-wifi-arduino-shield,lehin,C++,false,false,false,0,false,false,false,false +loki1211/warframe-alexa-skill,loki1211,Python,false,false,false,0,false,false,false,false +louisgrasset/git-moji,louisgrasset,JavaScript,false,false,false,0,false,false,false,false +AaronVelasco93/programas_cyp_2018-i,AaronVelasco93,C,false,false,false,0,false,false,false,false +freedom99/TensorFlow-Tutorials,freedom99,JupyterNotebook,false,false,false,0,false,false,false,false +yoyoispig/jason_siiva,yoyoispig,Python,false,false,false,0,false,false,false,false +miximitor/mvpn,miximitor,C++,false,false,false,0,false,false,false,false +erickentry/android-frp-boilerplate,erickentry,Kotlin,false,false,false,0,false,false,false,false +CalvinKris/rabbitpay,CalvinKris,Java,false,false,true,0,false,false,false,false +LaOtraRed/chef-archivos-config,LaOtraRed,Python,false,false,false,0,false,false,false,false +instil-training/kotlinconf-workshop-2018,instil-training,Kotlin,false,false,false,0,false,false,false,false +brudolp/firefox-css-gtk,brudolp,CSS,false,false,false,0,false,false,false,false +tubtech/ts/ci,tubtech,TypeScript,true,false,false,5,true,true,true,false +B0om/enhanced-skribbl.io,B0om,JavaScript,false,false,false,0,false,false,false,false +diamondburned/go-nhentai,diamondburned,Go,true,false,false,1,true,false,false,false +ajeetdsouza/nerdfonts-python,ajeetdsouza,Shell,false,false,false,0,false,false,false,false +uspgo/uspgo-db,uspgo,,false,false,false,0,false,false,false,false +nulldatamap/datalog-ordbog,nulldatamap,,false,false,false,0,false,false,false,false +c57fr/c57,c57fr,PHP,true,false,false,1,false,false,true,false +joseporto/carbon-vue,joseporto,JavaScript,true,false,false,3,false,true,false,true +Sumaid/webscraper,Sumaid,Python,false,false,false,0,false,false,false,false +doronbehar/contain-ebay,doronbehar,JavaScript,false,false,false,0,false,false,false,false +miraviolet/client-records,miraviolet,HTML,false,false,false,0,false,false,false,false +leopardm/dnd,leopardm,Python,true,true,false,2,false,false,false,true +JillMikeJames/cosc236lab2,JillMikeJames,,false,false,false,0,false,false,false,false +gl-retrospectives/monitor,gl-retrospectives,,false,false,false,0,false,false,false,false +jpfreeley/enron-sna,jpfreeley,Scala,false,false,false,0,false,false,false,false +darinamanda/ppwlab,darinamanda,CSS,true,false,false,2,false,true,true,false +gkaklas/ubo-stackexchange-annoyances,gkaklas,Shell,false,false,false,0,false,false,false,false +AmadeusSalieri/exogpu,AmadeusSalieri,JavaScript,false,false,false,0,false,false,false,false +bandaa/carrecognizer,bandaa,Python,false,true,false,0,false,false,false,false +sarsyifa/ppw-syifa,sarsyifa,CSS,true,false,false,1,false,false,true,false +briani99/server,briani99,HTML,false,false,false,0,false,false,false,false +serphacker/webace,serphacker,Java,true,false,true,4,true,true,true,false +JoaoMathUFC/codigos_poo,JoaoMathUFC,Java,false,false,false,0,false,false,false,false +jakzodiac/personal-blog,jakzodiac,,false,false,false,0,false,false,false,false +icc-ub/public/music_scpid,icc-ub,Python,false,true,false,0,false,false,false,false +gooseekee-software/scrum-docs,gooseekee-software,,false,false,false,0,false,false,false,false +Bobo69/project-budget-management,Bobo69,TypeScript,false,false,false,0,false,false,false,false +burdickjp/diamondShiftKnob,burdickjp,nesC,false,false,false,0,false,false,false,false +burdickjp/viseJaws,burdickjp,,false,false,false,0,false,false,false,false +klancasterprof/cocoon-example,klancasterprof,Ruby,false,false,false,0,false,false,false,false +enrinal/asd-2018,enrinal,C++,false,false,false,0,false,false,false,false +soybarbanegra/stumpwm-wallpapers,soybarbanegra,CommonLisp,false,false,false,0,false,false,false,false +burdickjp/burdickjp.gitlab.io,burdickjp,Ruby,true,false,false,2,false,true,true,false +hexLucifer/hexlucifer.gitlab.io,hexLucifer,CSS,true,false,false,1,false,false,true,false +jD91mZM2/midi-calculator,jD91mZM2,Rust,false,false,false,0,false,false,false,false +fabianorocha.info/moodle-atto_alignjustify,fabianorocha.info,PHP,false,false,false,0,false,false,false,false +asawada729/idb-project,asawada729,Python,false,true,false,0,false,false,false,false +gorbatova/pokedex,gorbatova,JavaScript,false,false,false,0,false,false,false,false +olaf.gottschalk/volldaneben,olaf.gottschalk,C#,false,false,false,0,false,false,false,false +oleh.kurachenko/JS-BuyList,oleh.kurachenko,CSS,false,false,false,0,false,false,false,false +raspberryShake-public/raspShake-SD-img,raspberryShake-public,,false,false,false,0,false,false,false,false +gtrias/genar-radio,gtrias,JavaScript,true,false,false,2,false,true,true,false +Ands203/clase_git,Ands203,C,false,false,false,0,false,false,false,false +siteslave/kk-web,siteslave,TypeScript,false,false,false,0,false,false,false,false +netfarm.gq/netfarm-docs,netfarm.gq,CSS,false,false,false,0,false,false,false,false +evagtgd-gamagora/ia/unity-djkstra-momie,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +evagtgd-gamagora/ia/unity-astar-momie,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +pabloleanca/acuario,pabloleanca,Java,false,false,false,0,false,false,false,false +samebuckeyeguy/samplepkg,samebuckeyeguy,Python,false,false,false,0,false,false,false,false +SanchayanMaity/computer-science,SanchayanMaity,,false,false,false,0,false,false,false,false +webwirtschaft/structured-content,webwirtschaft,PHP,true,false,false,1,false,true,false,false +daafuku/bot-control,daafuku,Go,false,false,false,0,false,false,false,false +deejcunningham/skill-score,deejcunningham,Python,false,true,false,0,false,false,false,false +deejcunningham/exavaulttransfer,deejcunningham,C#,false,false,false,0,false,false,false,false +zimmalex/git-lab-create-react-app,zimmalex,JavaScript,true,false,false,1,false,false,true,false +theradrils/projectAll,theradrils,PHP,false,false,false,0,false,false,false,false +450255266/code,450255266,CSS,false,false,false,0,false,false,false,false +IT-Berater/twmindmapgenerator,IT-Berater,HTML,true,false,true,2,false,false,false,false +eedo369/search-engine-exercise3-eedo,eedo369,Python,false,true,false,0,false,false,false,false +evagtgd-gamagora/calculs-graphiques/geom-maillage,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +jpulik/Peek,jpulik,Swift,false,false,false,0,false,false,false,false +yahyaHb/lets,yahyaHb,,false,false,false,0,false,false,false,false +evagtgd-gamagora/calculs-graphiques/synthese-image,evagtgd-gamagora,C++,false,false,false,0,false,false,false,false +a.g-h/server,a.g-h,Java,false,false,false,0,false,false,false,false +mike-koch/hitman-maps,mike-koch,,true,false,false,3,false,false,false,false +Alvaro18/pokemondamvi,Alvaro18,Java,false,false,false,0,false,false,false,false +agushcha/sbertask,agushcha,HTML,false,false,false,0,false,false,false,false +Mishio595/disml,Mishio595,OCaml,true,false,false,2,true,false,true,false +Bormoglot/matrix-multiplication-by-cuda,Bormoglot,,false,false,false,0,false,false,false,false +ci-and-cd/maven-build,ci-and-cd,Shell,true,false,true,5,true,true,false,true +waylon531/zeebbot,waylon531,Rust,false,false,false,0,false,false,false,false +jorgemurta/docker-for-laravel,jorgemurta,PHP,true,false,false,2,true,true,false,false +scalist/rten,scalist,C#,false,false,false,0,false,false,false,false +dark_rotations/dark_addon,dark_rotations,Lua,true,false,false,1,false,true,false,false +CircuitLord/creators-camera,CircuitLord,C#,false,false,false,0,false,false,false,false +osu-nrsg/hpx-radar-server,osu-nrsg,C++,false,false,false,0,false,false,false,false +peiyi/from-my-garden,peiyi,Python,false,true,false,0,false,false,false,false +dgrine/setup,dgrine,Vimscript,false,false,false,0,false,false,false,false +Zhu-Ying-Zhang/rest,Zhu-Ying-Zhang,Java,false,false,false,0,false,false,false,false +ursfassler/public-money-public-code,ursfassler,TeX,false,false,false,0,false,false,false,false +dgrine/Argo,dgrine,C++,false,false,false,0,false,false,false,false +bohendo/alchemy,bohendo,JavaScript,false,false,false,0,false,false,false,false +ertantoker/tutorials/spring-boot-security-jwt-example,ertantoker,Java,false,false,false,0,false,false,false,false +cashid/demos,cashid,JavaScript,false,false,false,0,false,false,false,false +omniait/universityrepo,omniait,JavaScript,false,false,false,0,false,false,false,false +Werwi/CloudFlareAPI,Werwi,PHP,false,false,false,0,false,false,false,false +hrbrmstr/unsound,hrbrmstr,R,false,false,false,0,false,false,false,false +bluedevil/radasmprojects,bluedevil,Smarty,false,false,false,0,false,false,false,false +citizenkevin/citizen-billberry-hugo-theme,citizenkevin,CSS,false,false,false,0,false,false,false,false +gioxa/build-images/build-rpmbuild-ruby,gioxa,,true,false,false,3,true,true,false,false +ofte/code,ofte,JavaScript,false,false,false,0,false,false,false,false +mauriciofrivera/mblackjack,mauriciofrivera,Python,false,false,false,0,false,false,false,false +JohnPirate/image-editor,JohnPirate,JavaScript,true,false,false,1,false,true,false,false +nikko.miu/jest-simple-summary,nikko.miu,JavaScript,true,false,false,2,false,true,true,false +arbitrix/winlog,arbitrix,Rust,false,false,false,0,false,false,false,false +sequence-point/open-source/libirina,sequence-point,C++,true,false,false,1,false,false,false,false +spare-time-demos/project-template,spare-time-demos,Java,true,false,false,3,false,true,false,false +gioxa/rpm-build/ruby,gioxa,,true,false,false,2,true,false,true,false +OdinSQL/veritas-coding-exercise,OdinSQL,Go,false,false,false,0,false,false,false,false +chinhdd/python_course_1,chinhdd,JupyterNotebook,false,false,false,0,false,false,false,false +breakhack/test-first-react,breakhack,JavaScript,false,false,false,0,false,false,false,false +tdhcuong/data_science_with_python_course2,tdhcuong,JupyterNotebook,false,false,false,0,false,false,false,false +vchennapalli/Quora-question-pairs,vchennapalli,Python,false,false,false,0,false,false,false,false +ashishcw/FaRim-GTA-V-Mod-ScriptHook,ashishcw,C#,false,false,false,0,false,false,false,false +DjSlash/dotfiles,DjSlash,Shell,false,false,false,0,false,false,false,false +dominik.zarzecki/simple-database,dominik.zarzecki,Rust,false,false,false,0,false,false,false,false +JamieRobertsonGames/daydream-demo,JamieRobertsonGames,C#,false,false,false,0,false,false,false,false +asnelt/derandom,asnelt,Java,false,false,false,0,false,false,false,false +sgrine/setup,sgrine,Vimscript,false,false,false,0,false,false,false,false +surajnanavare/aavishkar2k18,surajnanavare,CSS,false,false,false,0,false,false,false,false +oliverjessner/vscode-to-textmate,oliverjessner,,false,false,false,0,false,false,false,false +LamboCreeper/apple-music-library-contents-list-generator,LamboCreeper,AppleScript,false,false,false,0,false,false,false,false +jopohl/sdrsignals,jopohl,,false,false,false,0,false,false,false,false +mikeludemann/helperFunctions,mikeludemann,JavaScript,false,false,false,0,false,false,false,false +DragonForge/baubles-shulker-boxes,DragonForge,Java,false,false,false,0,false,false,false,false +hrbrmstr/indialights,hrbrmstr,R,false,false,false,0,false,false,false,false +scrambledrk/dotpoint-spatial,scrambledrk,Haxe,false,false,false,0,false,false,false,false +dmytrish/language-incubator,dmytrish,Haskell,false,false,false,0,false,false,false,false +senatecjr/siteoficial,senatecjr,PHP,false,false,false,0,false,false,false,false +mek-manager/core-client,mek-manager,,true,false,false,2,true,true,false,false +jrswab/hotbox,jrswab,Shell,false,false,false,0,false,false,false,false +gavz/Cheatsheet-God,gavz,,false,false,false,0,false,false,false,false +fdorado985/game-slope,fdorado985,C#,false,false,false,0,false,false,false,false +artemtkachuk/MomsPersonalBot,artemtkachuk,JavaScript,false,false,false,0,false,false,false,false +_utfpr/pesquisa/selenium-transform,_utfpr,,false,false,false,0,false,false,false,false +stamping/stamping.io,stamping,PHP,false,false,false,0,false,false,false,false +christopher50/laravel-actividad2,christopher50,PHP,false,false,false,0,false,false,false,false +Timdx/giweb-lab2,Timdx,HTML,true,false,false,1,false,false,true,false +danghoanggeo/gins,danghoanggeo,Python,false,false,false,0,false,false,false,false +aswinshenoy/inctf-from-bs4,aswinshenoy,HTML,true,false,false,1,false,false,true,false +mtishauser/leadership-track-pipeline,mtishauser,Python,true,true,false,2,false,false,true,false +arubertoson/cpp-cmake-skeleton,arubertoson,CMake,false,false,false,0,false,false,false,false +greentech/gtaportfolioandroid,greentech,Kotlin,false,false,false,0,false,false,false,false +MatteoPierro/location-promotion-service,MatteoPierro,JavaScript,false,false,false,0,false,false,false,false +diamondburned/yaru-openbox,diamondburned,,false,false,false,0,false,false,false,false +zackfalcon/dashboard-epitech,zackfalcon,JavaScript,true,false,false,4,false,false,false,false +pilhuhn/ece2018-mp,pilhuhn,Java,false,false,true,0,false,false,false,false +franjmartin21/mysmartlocker,franjmartin21,Kotlin,true,false,false,1,true,false,false,false +louisgrasset/emojis-table,louisgrasset,JavaScript,false,false,false,0,false,false,false,false +Bobses/prometheus,Bobses,,false,false,false,0,false,false,false,false +codeneomatrix/fundamentos,codeneomatrix,Java,false,false,false,0,false,false,false,false +donot/track,donot,,false,false,false,0,false,false,false,false +moofishies/ansible-repo,moofishies,,false,false,false,0,false,false,false,false +tuxcrafting/neon,tuxcrafting,D,false,false,false,0,false,false,false,false +lytedev/elixir_gameserver,lytedev,Elixir,true,false,false,2,true,true,false,false +fuxproject/bitmin,fuxproject,Python,false,false,false,0,false,false,false,false +virtual_microscope_projects/virtual-microscope,virtual_microscope_projects,Java,false,false,false,0,false,false,false,false +rajeshprasanth/SolarAlgorithms,rajeshprasanth,Fortran,false,false,false,0,false,false,false,false +rodrigopa/sorteio-instagram,rodrigopa,PHP,false,false,false,0,false,false,false,false +bubthegreat/kbk,bubthegreat,C,false,false,false,0,false,false,false,false +metal-crow/darksoulsremastered-ida-db,metal-crow,,false,false,false,0,false,false,false,false +humoyun/youvr-cli,humoyun,JavaScript,false,false,false,0,false,false,false,false +gorlapraveen/TheLearningDocumentationProject,gorlapraveen,,false,false,false,0,false,false,false,false +rxh5/codefest-final-round,rxh5,Java,false,false,false,0,false,false,false,false +rtat.net/rtacloud-project.appspot.com,rtat.net,,false,false,false,0,false,false,false,false +gioxa/build-images/centos7-ruby-node,gioxa,Shell,true,false,false,4,true,true,false,true +nguyenvothanhkhang/flask,nguyenvothanhkhang,Python,false,false,false,0,false,false,false,false +bertrand.simon/poo_cpp_iogs,bertrand.simon,HTML,false,false,false,0,false,false,false,false +donodanar35/myandroid,donodanar35,Kotlin,false,false,false,0,false,false,false,false +Nudin/wdfs,Nudin,Python,false,false,false,0,false,false,false,false +unrealjose/unrealspacepvp,unrealjose,,false,false,false,0,false,false,false,false +oprakashpatna/dark-mode-chrome,oprakashpatna,,false,false,false,0,false,false,false,false +cserpell/inf477,cserpell,JupyterNotebook,false,false,false,0,false,false,false,false +agostini.tech/atpromisekit,agostini.tech,Swift,false,false,false,0,false,false,false,false +ivanradosavljevic/sing-wp-2018,ivanradosavljevic,CSS,false,false,false,0,false,false,false,false +adrianrobotka/moth-server,adrianrobotka,C,true,false,false,2,false,false,false,false +trka-lazybones/docker-traefik-certbot,trka-lazybones,Shell,false,false,false,0,false,false,false,false +alaskalinuxuser/hd_kernelmodification64,alaskalinuxuser,,false,false,false,0,false,false,false,false +skillcamp/slackbot,skillcamp,Shell,false,false,false,0,false,false,false,false +qitar888/sdml-1-link-prediction,qitar888,Python,false,false,false,0,false,false,false,false +multicloud-openstack-k8s/clusters,multicloud-openstack-k8s,HCL,true,false,false,4,false,true,false,false +cedrickrause/cmn-tls,cedrickrause,TypeScript,true,false,false,2,false,true,true,false +ETechEmbeddedSystemDiploma/batch1-e-tech-embedded-system-diploma-,ETechEmbeddedSystemDiploma,C,false,false,false,0,false,false,false,false +unixispower/retroflag-picase,unixispower,Shell,false,false,false,0,false,false,false,false +dat-zines/scrycast-zine-template,dat-zines,JavaScript,false,false,false,0,false,false,false,false +salifm/javafiledownloader,salifm,Java,false,false,false,0,false,false,false,false +minshall/election2018,minshall,,false,false,false,0,false,false,false,false +nickdaly/cs736-p2,nickdaly,TeX,true,false,false,2,false,true,true,false +davidkay/msrc-node-express-api,davidkay,JavaScript,false,false,false,0,false,false,false,false +davidkay/msrc-go-gin-api,davidkay,Go,false,false,false,0,false,false,false,false +davidkay/msrc-django-api,davidkay,Python,false,true,false,0,false,false,false,false +davidkay/msrc-aspnetcore-api,davidkay,C#,false,false,false,0,false,false,false,false +b0/libqtolm,b0,C++,true,false,false,2,true,true,false,false +See2/dnd_app,See2,JavaScript,false,false,false,0,false,false,false,false +nbtdev/megamek,nbtdev,Java,false,false,false,0,false,false,false,false +rcmz0/libfivepy,rcmz0,Python,false,false,false,0,false,false,false,false +FullStacker/learningnodejs,FullStacker,JavaScript,true,false,false,1,false,true,false,false +lorenzo.fabbri92sm/biological-data-mining,lorenzo.fabbri92sm,HTML,false,false,false,0,false,false,false,false +flectra-community/devops/oca2fc,flectra-community,Python,true,true,false,1,false,true,false,false +patrickalima98/nwjs-with-vue,patrickalima98,JavaScript,false,false,false,0,false,false,false,false +AleksandarGit/cateringassistent,AleksandarGit,Java,false,false,true,0,false,false,false,false +neyugndn/clientsrc,neyugndn,JavaScript,false,false,false,0,false,false,false,false +amigasourcecodepreservation/amigados-a-dabhand-guide,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/mastering-amigados-3-reference,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +amigasourcecodepreservation/little-blue-workbench-2.0-book,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +SER401_Team8/educational-augmented-reality,SER401_Team8,Java,true,false,false,2,true,true,false,false +amigasourcecodepreservation/grafik-in-assembler-aud-dem-amiga,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +luxish/node-seed,luxish,JavaScript,true,false,false,1,true,false,false,false +oleh.kurachenko/KMA_OOP_Preprocessing,oleh.kurachenko,C++,false,false,false,0,false,false,false,false +LAE0206/web-services,LAE0206,,false,false,false,0,false,false,false,false +mbarkhau/lib3to6,mbarkhau,Python,true,false,false,2,true,true,false,false +oleh.kurachenko/KMA_InformationRetrieval_Dictionary_Python3,oleh.kurachenko,Python,false,false,false,0,false,false,false,false +makeorg/platform/front-accessible,makeorg,JavaScript,false,false,false,0,false,false,false,false +YannikW/whooplights,YannikW,C++,false,false,false,0,false,false,false,false +tichman27/scp-foundation-19,tichman27,,false,false,false,0,false,false,false,false +wisniew/performance-script,wisniew,Shell,false,false,false,0,false,false,false,false +tabos/tvguide,tabos,C,true,false,false,1,false,true,false,false +ibriz/icon-dice-roll,ibriz,HTML,false,false,false,0,false,false,false,false +NiestrojMateusz/node-mc-hw1,NiestrojMateusz,JavaScript,false,false,false,0,false,false,false,false +arabakevin/complete_application_react_rails,arabakevin,Ruby,false,false,false,0,false,false,false,false +antora/antora-asciidoctor-extensions,antora,JavaScript,false,false,false,0,false,false,false,false +2sim/searx,2sim,Python,false,true,false,0,false,false,false,false +2sim/WLinux,2sim,C++,false,false,false,0,false,false,false,false +Skalman/river-rss,Skalman,Rust,true,false,false,2,true,false,true,false +Nohus/fastshot,Nohus,C++,false,false,false,0,false,false,false,false +dansanti/facturacion_electronica,dansanti,,false,false,false,0,false,false,false,false +AirsoftC2/airsoftc2_embedded,AirsoftC2,Python,false,false,false,0,false,false,false,false +CourtneyGosselin/logo,CourtneyGosselin,HTML,false,false,false,0,false,false,false,false +geekodour/checkmk_local_checks,geekodour,Shell,false,false,false,0,false,false,false,false +TrevorJTClarke/truffle-demo-dapp,TrevorJTClarke,JavaScript,false,false,false,0,false,false,false,false +dozzzer/zamytka.com,dozzzer,HTML,false,false,false,0,false,false,false,false +BlackEdder/caldavwarrior,BlackEdder,D,false,false,false,0,false,false,false,false +saman.ahmadi/laravel-class-shopak,saman.ahmadi,PHP,false,false,false,0,false,false,false,false +kacper.duda/c-programs,kacper.duda,C++,false,false,false,0,false,false,false,false +nnsmgsone/gaea,nnsmgsone,Go,false,false,false,0,false,false,false,false +mydocge/shared,mydocge,Go,false,false,false,0,false,false,false,false +m-k88/invidious-embed,m-k88,JavaScript,false,false,false,0,false,false,false,false +dozzzer/matangareonmy6bg.onion,dozzzer,HTML,false,false,false,0,false,false,false,false +Stari89/coinpals,Stari89,JavaScript,false,false,false,0,false,false,false,false +RafaNardo/trocadelivros,RafaNardo,JavaScript,false,false,false,0,false,false,false,false +oleh.kurachenko/JS-Pizza,oleh.kurachenko,JavaScript,false,false,false,0,false,false,false,false +aaster23/lonis-flashcards,aaster23,JavaScript,false,false,false,0,false,false,false,false +oleh.kurachenko/AxelrodModel4,oleh.kurachenko,Python,false,false,false,0,false,false,false,false +rabsil/ssd,rabsil,TeX,false,false,false,0,false,false,false,false +teox/petalinux-tools-docker,teox,Shell,false,false,false,0,false,false,false,false +oleh.kurachenko/cv-skills-updator,oleh.kurachenko,JavaScript,true,false,false,1,false,false,false,false +testifyqa.eulerproblems.javascript/problem1.multiplesof3and5,testifyqa.eulerproblems.javascript,JavaScript,false,false,false,0,false,false,false,false +epfl-sti/passport-tequila,epfl-sti,JavaScript,false,false,false,0,false,false,false,false +ntninja/zsh-config,ntninja,Shell,false,false,false,0,false,false,false,false +aucs/ctf,aucs,Shell,false,false,false,0,false,false,false,false +trollodel/ArgoAPI,trollodel,Python,false,false,false,0,false,false,false,false +fierce-katie/cmc-parallel-batcher-2016,fierce-katie,TeX,false,false,false,0,false,false,false,false +CedricGoby/newsletter-fablab,CedricGoby,,false,false,false,0,false,false,false,false +wiesepapetristan/random_code,wiesepapetristan,Java,false,false,false,0,false,false,false,false +akori/tenjinr,akori,Python,true,false,false,1,false,true,false,false +trollodel/html2py,trollodel,Python,false,false,false,0,false,false,false,false +xavierbaude/hello-world,xavierbaude,Shell,true,false,false,2,true,false,false,true +pascalwilbrink/test-toolkit,pascalwilbrink,TypeScript,false,false,false,0,false,false,false,false +mctf/quals-2018/reverse-hard,mctf,,false,false,false,0,false,false,false,false +Hesh/go2flow6,Hesh,,false,false,false,0,false,false,false,false +grigorye/URLHelperApp,grigorye,Swift,true,false,false,1,true,false,false,false +okeddie/bropenstack,okeddie,Shell,false,false,false,0,false,false,false,false +bagofmandms/gridkit-gamelib,bagofmandms,C++,false,false,false,0,false,false,false,false +ZoeyGlobe/vibrancecli-nvidia,ZoeyGlobe,Shell,false,false,false,0,false,false,false,false +fogity/python37-decompiler,fogity,Haskell,false,false,false,0,false,false,false,false +jorbencas/android_simarro_2018,jorbencas,Java,false,false,false,0,false,false,false,false +newebtime/pyrocms/agency-theme,newebtime,CSS,false,false,false,0,false,false,false,false +snesjhon/snesjhon.gitlab.io,snesjhon,CSS,true,false,false,1,false,true,false,false +richjyoung/challenges,richjyoung,JavaScript,true,false,false,2,true,true,false,false +xeroxIRC/figserv,xeroxIRC,Python,false,false,false,0,false,false,false,false +ncnharry/blog_with_php_twlp,ncnharry,JavaScript,false,false,false,0,false,false,false,false +Voker57/mkvpn,Voker57,Shell,false,false,false,0,false,false,false,false +deposer/deposer,deposer,Python,false,true,false,0,false,false,false,false +louisgrasset/menu-crous-lyon,louisgrasset,JavaScript,false,false,false,0,false,false,false,false +mmaximo/cmc10-strategy,mmaximo,C++,false,false,false,0,false,false,false,false +Alreschas/test_project,Alreschas,,false,false,false,0,false,false,false,false +abaykan/awesome,abaykan,,false,false,false,0,false,false,false,false +abaykan/Awesome-Hacking,abaykan,,false,false,false,0,false,false,false,false +abaykan/awesome-pentest,abaykan,,false,false,false,0,false,false,false,false +ryanpavlik/cxxgraph,ryanpavlik,C++,true,false,false,3,true,true,true,false +aanriot/django-resale,aanriot,Python,false,false,false,0,false,false,false,false +ericzhang.buaa/ai-cha-2018,ericzhang.buaa,Python,false,false,false,0,false,false,false,false +panthus/elm-intro,panthus,JavaScript,false,false,false,0,false,false,false,false +ercanersoy/media-other-files,ercanersoy,HTML,false,false,false,0,false,false,false,false +luckeyproductions/AmazingUrho,luckeyproductions,C++,false,false,false,0,false,false,false,false +outamaa/mini-wasm,outamaa,HTML,false,false,false,0,false,false,false,false +goozbach-presentation/vault,goozbach-presentation,Ruby,false,false,false,0,false,false,false,false +mbarkhau/straitjacket,mbarkhau,Python,true,false,false,2,true,true,false,false +sequence-point/open-source/libunittest,sequence-point,C++,true,false,false,1,false,false,false,false +JuampaHernandez/tarea-evaluada,JuampaHernandez,JavaScript,false,false,false,0,false,false,false,false +PalouseRobosub/Software/robosub,PalouseRobosub,C++,true,false,false,1,false,true,false,false +madicine6/shellbot,madicine6,Shell,false,false,false,0,false,false,false,false +deposer/composer,deposer,,false,false,false,0,false,false,false,false +adelriosantiago/voluntary-work-webpage,adelriosantiago,,false,false,false,0,false,false,false,false +jonathanGuzman/ibm-recognition,jonathanGuzman,JavaScript,true,false,false,1,false,false,false,true +oleh.kurachenko/jetbrains-filetemplates-sync,oleh.kurachenko,Python,true,false,false,1,false,true,false,false +dgrine/Pandas-Cookbook,dgrine,JupyterNotebook,false,false,false,0,false,false,false,false +corunahacks/2018/qas,corunahacks,,false,false,false,0,false,false,false,false +corunahacks/2018/matrix-hacks,corunahacks,,false,false,false,0,false,false,false,false +collectif-conscience/collectif,collectif-conscience,,false,false,false,0,false,false,false,false +miloszgodlewski/first_project_teb,miloszgodlewski,,false,false,false,0,false,false,false,false +guoyunhe/acgdb,guoyunhe,PHP,false,false,false,0,false,false,false,false +N-Lang/N-Lang,N-Lang,C,true,false,false,1,false,true,false,false +drupal-beginner/twig-functions,drupal-beginner,PHP,false,false,false,0,false,false,false,false +Stypox/mp3-player,Stypox,Python,false,false,false,0,false,false,false,false +Fifal/pia,Fifal,JavaScript,true,false,false,1,true,false,false,false +abhas/io,abhas,CSS,false,false,false,0,false,false,false,false +let-me-help/letmehelp-backend,let-me-help,Python,true,false,false,1,false,true,false,false +opentracing-workshop/spring-petclinic-kubernetes,opentracing-workshop,Java,true,false,true,4,true,false,true,true +ivanxwwu/tttt,ivanxwwu,C++,false,false,false,0,false,false,false,false +merrickluo/fehstats,merrickluo,Ruby,true,false,false,1,true,false,false,false +dishitpala/analytic,dishitpala,Python,false,false,false,0,false,false,false,false +Szumigalski/tas-computer-hardware-warehouse,Szumigalski,C#,false,false,false,0,false,false,false,false +kentarospin98/ghostywillbeback,kentarospin98,JavaScript,false,false,false,0,false,false,false,false +Toxer/toxer-desktop,Toxer,QML,false,false,false,0,false,false,false,false +mbarkhau/bootstrapit,mbarkhau,Shell,false,false,false,0,false,false,false,false +herber523/scylladb-k8s,herber523,Python,true,false,false,1,false,false,false,false +marsextraterrestrials/phantom,marsextraterrestrials,,false,false,false,0,false,false,false,false +yasper84/JVidDL3,yasper84,Swift,false,false,false,0,false,false,false,false +fperson/limbo_copy_nodrm,fperson,,false,false,false,0,false,false,false,false +afourmy/eNMS,afourmy,Python,false,true,false,0,false,false,false,false +afourmy/flask-gentelella,afourmy,HTML,false,false,false,0,false,false,false,false +afourmy/pyNMS,afourmy,Python,false,false,false,0,false,false,false,false +afourmy/pyGISS,afourmy,Python,false,false,false,0,false,false,false,false +afourmy/pyEarth,afourmy,Python,false,true,false,0,false,false,false,false +afourmy/pyTSP,afourmy,Python,false,true,false,0,false,false,false,false +guoyunhe/electron-rpmbuild,guoyunhe,HTML,false,false,false,0,false,false,false,false +doronbehar/fzfshortcuts,doronbehar,Python,false,false,false,0,false,false,false,false +NikaZhenya/pecas-docs,NikaZhenya,HTML,false,false,false,0,false,false,false,false +halfcab123/phishex,halfcab123,HTML,false,false,false,0,false,false,false,false +huhn/piri-web,huhn,Vue,true,false,false,2,true,false,false,true +mcomisso/Adafruit_Python_DHT,mcomisso,C,false,false,false,0,false,false,false,false +TeeFirefly/rk3308-linux,TeeFirefly,,false,false,false,0,false,false,false,false +MidGe48/cryptopad,MidGe48,Go,false,false,false,0,false,false,false,false +iisafriyanti/mynewdjango,iisafriyanti,Python,true,true,false,1,false,false,true,false +avfall98/summit-demo,avfall98,HTML,false,false,false,0,false,false,false,false +thengOS/coming-soon-website,thengOS,CSS,true,false,false,1,false,false,true,false +tcherivan/ice-db,tcherivan,JavaScript,true,false,false,2,false,true,false,false +ID4me/id4me-rp-client-python,ID4me,Python,true,true,false,2,false,true,true,false +debuglevel/monitoring-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true +pichet.plu/react-lifecycle,pichet.plu,JavaScript,false,false,false,0,false,false,false,false +yuwan694/mdkrx,yuwan694,JupyterNotebook,false,false,false,0,false,false,false,false +M2UCP/ti,M2UCP,C,false,false,false,0,false,false,false,false +SynamaticsMediaStudio/synx-mail,SynamaticsMediaStudio,PHP,false,false,false,0,false,false,false,false +SnejUgal/tbot,SnejUgal,Rust,true,false,false,2,false,true,false,false +duonghnh/example,duonghnh,,false,false,false,0,false,false,false,false +web3j/web3j,web3j,Java,true,false,false,3,true,true,true,false +ilcine/ilcine,ilcine,HTML,false,false,false,0,false,false,false,false +hotfury/asynchronous,hotfury,JavaScript,false,false,false,0,false,false,false,false +archang31/gitlab-project-base,archang31,,false,false,false,0,false,false,false,false +dit341/android-template,dit341,Java,false,false,false,0,false,false,false,false +ryo33/cizen-echo,ryo33,Elixir,false,false,false,0,false,false,false,false +iam2anangel/es6-katas,iam2anangel,JavaScript,false,false,false,0,false,false,false,false +coffeedigital/selfhost,coffeedigital,JavaScript,false,false,false,0,false,false,false,false +zmichaels/cpp-reference-projects,zmichaels,,false,false,false,0,false,false,false,false +mlb0029/ListaCompra,mlb0029,CSS,false,false,false,0,false,false,false,false +Novysedlak/simple-multi-currency-for-woocommerce,Novysedlak,JavaScript,false,false,false,0,false,false,false,false +nshipman/fail2ban-slack-notification,nshipman,Python,false,true,false,0,false,false,false,false +whowe/scripting,whowe,Shell,false,false,false,0,false,false,false,false +marion-deveaud/python-web-apps,marion-deveaud,CSS,true,false,false,1,false,false,true,false +kossowski/portfolio-2018,kossowski,CSS,false,false,false,0,false,false,false,false +kakkea/bgn,kakkea,JavaScript,false,false,false,0,false,false,false,false +honewatson/matrix-ssjs,honewatson,JavaScript,false,false,false,0,false,false,false,false +kiwiki/atlas,kiwiki,TypeScript,false,false,false,0,false,false,false,false +frobware/gopass,frobware,Go,false,false,false,0,false,false,false,false +datadrivendiscovery/simple-ta3,datadrivendiscovery,Vue,true,false,false,1,true,false,false,false +manzanoivan/ClubAlgoritmiaESCOMBasicos,manzanoivan,C++,false,false,false,0,false,false,false,false +JamesTeague/ubiquitous-train,JamesTeague,JavaScript,false,false,false,0,false,false,false,false +maestre3d/mean-spotyapp,maestre3d,JavaScript,false,false,false,0,false,false,false,false +OriginalS-tz/cplusplustutorial,OriginalS-tz,Shell,false,false,false,0,false,false,false,false +LeonardoRue/testing,LeonardoRue,HTML,false,false,false,0,false,false,false,false +ferock/public-files,ferock,,false,false,false,0,false,false,false,false +limira-rs/simi-cli,limira-rs,Rust,false,false,false,0,false,false,false,false +visti_how/nrfdfu_ng,visti_how,C,false,false,false,0,false,false,false,false +E3-PPW-1/storytugas1,E3-PPW-1,JavaScript,true,false,false,3,false,true,true,true +IceHe/linux-conf,IceHe,Shell,false,false,false,0,false,false,false,false +chadaeun/kr-stack-pointer-demo,chadaeun,C,false,false,false,0,false,false,false,false +ognarb/docugen,ognarb,,true,false,false,1,false,false,false,false +FCOO/ncgrow,FCOO,Python,false,false,false,0,false,false,false,false +newebtime/pyrocms/repeatering-field_type,newebtime,PHP,false,false,false,0,false,false,false,false +Dev-Team-BSMH/warcalc,Dev-Team-BSMH,PHP,false,false,false,0,false,false,false,false +ilcine/ilcine.gitlab.io,ilcine,HTML,true,false,false,1,false,false,true,false +AcerWang1/scdDiagram,AcerWang1,C#,false,false,false,0,false,false,false,false +tp-ppw/tp1_ppw_2018_2019_1,tp-ppw,Python,true,true,false,2,false,true,true,false +AqilCont/rfasqls,AqilCont,JavaScript,false,false,false,0,false,false,false,false +opensuse42.3/linux-basic/linux-starter,opensuse42.3,Ruby,false,false,false,0,false,false,false,false +btc_simon/bitmex-api-dashboard,btc_simon,JavaScript,true,false,false,1,false,false,true,false +jmoreir1/horarios-ifpb,jmoreir1,PHP,false,false,false,0,false,false,false,false +zwinde/newcoder_huawei,zwinde,Python,false,false,false,0,false,false,false,false +ramin-salmanpour/advance,ramin-salmanpour,Java,false,false,false,0,false,false,false,false +amigasourcecodepreservation/arexx-cookbook,amigasourcecodepreservation,,false,false,false,0,false,false,false,false +Marwanla/html-,Marwanla,PHP,false,false,false,0,false,false,false,false +ghrosema/gestion-de-estudiantes-didactico,ghrosema,Java,false,false,false,0,false,false,false,false +demizexp/hl2-revamped-src,demizexp,,false,false,false,0,false,false,false,false +jhonystein/app-mongo-node,jhonystein,CSS,false,false,false,0,false,false,false,false +cam17b/drogue-detection-,cam17b,Matlab,false,false,false,0,false,false,false,false +ghostwriter-deb/ghostwriter-deb,ghostwriter-deb,C++,true,false,false,1,false,true,false,false +quentinnorbert0/uqam,quentinnorbert0,HTML,false,false,false,0,false,false,false,false +FarrasHakim/a5,FarrasHakim,JavaScript,true,false,false,2,false,true,true,false +ideen/revy-framework-package,ideen,,false,false,false,0,false,false,false,false +crane-game/controller-arduino,crane-game,C++,true,false,false,1,false,true,false,false +danisanben/udemy_cpp_11,danisanben,C++,false,false,false,0,false,false,false,false +farhad.jalali/star-wars-jexia,farhad.jalali,TypeScript,false,false,false,0,false,false,false,false +dwang5/PyEwald,dwang5,Python,false,false,false,0,false,false,false,false +fuchsia/fuchsia.gitlab.io,fuchsia,HTML,true,false,false,1,false,true,false,false +Isolario/isocore,Isolario,C,false,false,false,0,false,false,false,false +engalar/docker-android,engalar,,true,false,false,1,true,false,false,false +apent-norsk-industriverksted/risiko-maskin,apent-norsk-industriverksted,Python,false,false,false,0,false,false,false,false +Khiyara/ppw-lab-2,Khiyara,HTML,true,false,false,2,false,true,true,false +worldtok/blog-website-source-code-,worldtok,,false,false,false,0,false,false,false,false +Lord-Sig/armada2019,Lord-Sig,JavaScript,false,false,false,0,false,false,false,false +wpsmartcare/wp-book,wpsmartcare,PHP,false,false,false,0,false,false,false,false +dmi777/testhub,dmi777,,false,false,false,0,false,false,false,false +speter52/fraccalc,speter52,Java,false,false,false,0,false,false,false,false +71circles/frontend-test,71circles,HTML,false,false,false,0,false,false,false,false +hallowatcher/pickem,hallowatcher,TypeScript,false,false,false,0,false,false,false,false +MROrellana/bash_functions.sh,MROrellana,Shell,false,false,false,0,false,false,false,false +Captainjamason/rpg-bot,Captainjamason,JavaScript,false,false,false,0,false,false,false,false +IgorPolyakov/try_uchi_ru,IgorPolyakov,Ruby,true,false,false,1,false,true,false,false +fayze/identicapi,fayze,CSS,false,false,false,0,false,false,false,false +LPDW/plateforme-docker,LPDW,,false,false,false,0,false,false,false,false +logan.dunbar/ros-kinetic-tiago-nvidia,logan.dunbar,Shell,false,false,false,0,false,false,false,false +2heoh/casino,2heoh,Go,true,false,false,1,false,true,false,false +gunnarwolf/seco3_tex,gunnarwolf,TeX,false,false,false,0,false,false,false,false +sofreeus/aghi2gitlab,sofreeus,,true,false,false,3,true,true,true,false +nberend/saecon-todolist,nberend,JavaScript,false,false,false,0,false,false,false,false +abelbartolomeweb/showcarouselimages,abelbartolomeweb,Python,false,false,false,0,false,false,false,false +ccorp2002/monsters-and-might,ccorp2002,Python,false,false,false,0,false,false,false,false +MaheshBangaru/maheshenterprise,MaheshBangaru,,false,false,false,0,false,false,false,false +thefinn93/piston-go,thefinn93,Go,true,false,false,3,true,false,true,false +faneder/awesome-interview-questions,faneder,,false,false,false,0,false,false,false,false +TsvetelinKostadinv/CrusadersGauntlet,TsvetelinKostadinv,Java,false,false,false,0,false,false,false,false +Dp-142WebUI/syncforms,Dp-142WebUI,TypeScript,false,false,false,0,false,false,false,false +wanghui0705/xwalk,wanghui0705,C++,false,false,false,0,false,false,false,false +smart-campus-ateith/management,smart-campus-ateith,,false,false,false,0,false,false,false,false +braneproject/Bitcoin.jl,braneproject,Julia,true,false,false,2,false,true,true,false +seastarmanager/captcha-recognition,seastarmanager,Python,false,false,false,0,false,false,false,false +piedcipher/spinner-checker,piedcipher,Java,false,false,false,0,false,false,false,false +uralsezer/grafana-chord-panel,uralsezer,JavaScript,false,false,false,0,false,false,false,false +uralsezer/grafana,uralsezer,TypeScript,false,false,false,0,false,false,false,false +quandoo-recruitment/senior-android-engineer,quandoo-recruitment,Java,true,false,false,2,true,true,false,false +m3m3nto/zorbalinux,m3m3nto,Shell,true,false,false,1,false,true,false,false +AlbertoLanaro/snakeann,AlbertoLanaro,Python,false,false,false,0,false,false,false,false +perla.maciel/tweet-txt-to-mysql,perla.maciel,Java,false,false,false,0,false,false,false,false +Knoth/kaffeekarte,Knoth,JavaScript,false,false,false,0,false,false,false,false +Vonstrab/algav,Vonstrab,Python,false,false,false,0,false,false,false,false +LucienZ/research_method_1_a_d,LucienZ,Rebol,false,false,false,0,false,false,false,false +aahmet/react-sample,aahmet,JavaScript,false,false,false,0,false,false,false,false +eic/ejpm,eic,Python,false,true,false,0,false,false,false,false +tyler-in/kingmaker-mod-loader,tyler-in,C#,false,false,false,0,false,false,false,false +valentinaloreto/abrazos-y-cafes,valentinaloreto,Ruby,false,false,false,0,false,false,false,false +port22/visbsd,port22,CSS,false,false,false,0,false,false,false,false +dexpi/public-verificator,dexpi,,false,false,false,0,false,false,false,false +chs71371/storybook,chs71371,TypeScript,false,false,false,0,false,false,false,false +warisarawanking37/projectteam4,warisarawanking37,,false,false,false,0,false,false,false,false +fdorado985/design-slope,fdorado985,,false,false,false,0,false,false,false,false +null-git/zfs-bash-tools,null-git,Shell,false,false,false,0,false,false,false,false +gl-retrospectives/verify,gl-retrospectives,,false,false,false,0,false,false,false,false +maplewf/jumpball,maplewf,ShaderLab,false,false,false,0,false,false,false,false +brendancain99/sager_class_01,brendancain99,Python,false,false,false,0,false,false,false,false +mdimo/mdimo.gitlab.io,mdimo,CSS,true,false,false,1,false,true,false,false +Vladimire87/vsGoogleAutocomplete,Vladimire87,JavaScript,false,false,false,0,false,false,false,false +philbooth/unicode-bom,philbooth,Rust,true,false,false,2,false,true,false,false +spinzer0/dotfiles,spinzer0,Shell,false,false,false,0,false,false,false,false +mamotromico/guia-de-sobrevivencia,mamotromico,GDScript,false,false,false,0,false,false,false,false +inivation/caer,inivation,C,true,false,false,2,true,false,true,false +inivation/flashy,inivation,Java,false,false,false,0,false,false,false,false +tavurth/ekoapp,tavurth,JavaScript,false,false,false,0,false,false,false,false +ragibishrak1481/human_atlas_kaggle,ragibishrak1481,JupyterNotebook,false,false,false,0,false,false,false,false +apartment1/jakir,apartment1,CSS,true,false,false,1,false,false,true,false +iprods-os/guild,iprods-os,Go,true,false,false,3,true,false,false,true +nilspickert/luatex-read-exif,nilspickert,Lua,false,false,false,0,false,false,false,false +sergiocrespotoubes/androidroomcodelab,sergiocrespotoubes,Java,false,false,false,0,false,false,false,false +vitaliikobrin/trellocardcreator,vitaliikobrin,Java,false,false,false,0,false,false,false,false +rodlie/powerkit,rodlie,C++,false,false,false,0,false,false,false,false +cornerstone_vancouver/wadp411/projects,cornerstone_vancouver,CSS,true,false,false,1,false,true,false,false +shipsahoy/m/aa/awesomo,shipsahoy,Clojure,false,false,false,0,false,false,false,false +BolajiAyodeji/hello-world,BolajiAyodeji,,false,false,false,0,false,false,false,false +etsu-ninja-pirates/health-data-system,etsu-ninja-pirates,Python,false,true,false,0,false,false,false,false +bademo/ecosim-csharp,bademo,C#,false,false,false,0,false,false,false,false +Alexander.Watzinger/OpenAtlas,Alexander.Watzinger,Python,false,false,false,0,false,false,false,false +faya/happy-trigger-phaser-3,faya,TypeScript,true,false,false,1,false,false,true,false +ivangsm/flaskrpigpio,ivangsm,Python,false,false,false,0,false,false,false,false +Sergey1996/other,Sergey1996,,false,false,false,0,false,false,false,false +dtjm/linky,dtjm,Go,true,false,false,1,false,true,false,false +hev/hev-rinput,hev,C,true,false,false,1,false,true,false,false +bachp2/tfr,bachp2,C++,false,false,false,0,false,false,false,false +jvande42b/rtc-tools-meta,jvande42b,Python,false,true,false,0,false,false,false,false +HeLuchao/vue2-element-touzi-admin,HeLuchao,JavaScript,false,false,false,0,false,false,false,false +nlkhang.it/gococms,nlkhang.it,JavaScript,false,false,false,0,false,false,false,false +myfirsthtmlpage/myfirsthtmlpage,myfirsthtmlpage,JavaScript,false,false,false,0,false,false,false,false +mmccarry/compose-control,mmccarry,Python,false,true,false,0,false,false,false,false +epireyn/spigothelper,epireyn,Java,false,false,false,0,false,false,false,false +nghthawk/czz,nghthawk,CSS,false,false,false,0,false,false,false,false +titibandit/acs_stream_layout,titibandit,JavaScript,false,false,false,0,false,false,false,false +melmac-team/melmac-translate,melmac-team,,false,false,false,0,false,false,false,false +qipsius/qipsius-one,qipsius,,false,false,false,0,false,false,false,false +ajostergaard/saleor,ajostergaard,Python,false,true,false,0,false,false,false,false +alexwbc/phd-beat,alexwbc,GDScript,false,false,false,0,false,false,false,false +fhomolka/discordmemebot,fhomolka,Python,false,false,false,0,false,false,false,false +ArchiveSys/Web-Catalogue/archive-system-front-end,ArchiveSys,JavaScript,false,false,false,0,false,false,false,false +joecharamut/fcw-rpg,joecharamut,C,false,false,false,0,false,false,false,false +elzerp/wp,elzerp,Shell,false,false,false,0,false,false,false,false +antt1995/allianceauth-docker,antt1995,Python,false,false,false,0,false,false,false,false +MaryChelo/data_science_from_scratch,MaryChelo,JupyterNotebook,true,false,false,1,false,false,true,false +mbabich/cl-chess,mbabich,CommonLisp,false,false,false,0,false,false,false,false +ImYen/Metasploit_termux,ImYen,Ruby,false,false,false,0,false,false,false,false +Kechko/taskemail,Kechko,Java,false,false,false,0,false,false,false,false +wsiekiera/data-science-bootcamp,wsiekiera,Python,false,false,false,0,false,false,false,false +mord0d/cm,mord0d,Shell,false,false,false,0,false,false,false,false +NikosAlexandris/tygrass,NikosAlexandris,,false,false,false,0,false,false,false,false +hvoss49/xindex,hvoss49,Lua,false,false,false,0,false,false,false,false +kaf_ka/rsyncui,kaf_ka,JavaScript,false,false,false,0,false,false,false,false +targetflow/vacancies-parser,targetflow,Java,false,false,false,0,false,false,false,false +allthethings/deployments/spinnaker,allthethings,Shell,true,false,true,4,false,false,false,false +wstucco/scenic-color-cycling,wstucco,Elixir,false,false,false,0,false,false,false,false +bouda1/nat-english,bouda1,Rust,false,false,false,0,false,false,false,false +oleh.kurachenko/e-olymp,oleh.kurachenko,C++,false,false,false,0,false,false,false,false +luiztoni/geeky,luiztoni,,false,false,true,0,false,false,false,false +L-4/lua_options,L-4,Lua,false,false,false,0,false,false,false,false +Monash-UGIE/camelot,Monash-UGIE,JavaScript,false,false,false,0,false,false,false,false +fdorado985/udemy-slope,fdorado985,Swift,false,false,false,0,false,false,false,false +DirtyUnicorns/android_prebuilts_clang_host_linux-x86,DirtyUnicorns,C++,false,false,false,0,false,false,false,false +yuwan694/redata,yuwan694,JupyterNotebook,false,false,false,0,false,false,false,false +fesiqp/r2,fesiqp,,false,false,false,0,false,false,false,false +Diomchen/coding-interview-university,Diomchen,,false,false,false,0,false,false,false,false +thekatastrophe/fpf-exercise,thekatastrophe,Python,false,false,false,0,false,false,false,false +drutopia/writeme,drutopia,PHP,false,false,false,0,false,false,false,false +monster-space-network/typemon/stack,monster-space-network,TypeScript,false,false,false,0,false,false,false,false +monster-space-network/typemon/equals,monster-space-network,TypeScript,false,false,false,0,false,false,false,false +sontt/gitflow-workflow,sontt,,false,false,false,0,false,false,false,false +surfane-public/driver,surfane-public,Java,false,false,true,0,false,false,false,false +cit-devops/intros,cit-devops,Shell,false,false,false,0,false,false,false,false +amritpandey/the-c-programming-language,amritpandey,C,true,false,false,1,false,false,true,false +cape-modeler/frontend,cape-modeler,JavaScript,true,false,false,3,false,true,true,false +crane-game/wii-reciver,crane-game,C++,true,false,false,1,false,true,false,false +edwindj/crandeps,edwindj,HTML,true,false,false,1,false,false,true,false +NSSTC/app-shell,NSSTC,TypeScript,false,false,false,0,false,false,false,false +corbolais/open-av4ms,corbolais,Python,false,false,false,0,false,false,false,false +nylsoo/razzle-typescript-express-boilerplate,nylsoo,TypeScript,true,false,false,2,false,true,false,false +surister/misty-hats-3code-jam-tests,surister,Python,true,false,false,1,false,true,false,false +aaddap/1812-trobada-01,aaddap,,false,false,false,0,false,false,false,false +eyeo/websites/challenge,eyeo,,false,false,false,0,false,false,false,false +UnitCore/Paralax/opencart,UnitCore,,false,false,false,0,false,false,false,false +mrquangthai278/mobile_shop,mrquangthai278,HTML,false,false,false,0,false,false,false,false +thomasmendez/cs329e-idb,thomasmendez,HTML,true,false,false,1,false,true,false,false +rvdg/ajsonapi,rvdg,Python,false,false,false,0,false,false,false,false +utf-crawler/utf-crawler,utf-crawler,Rust,true,false,false,1,true,false,false,false +berbert/algebra-ii,berbert,TeX,false,false,false,0,false,false,false,false +fhomolka/discordttrpgbot,fhomolka,Python,false,true,false,0,false,false,false,false +slightlyflightyone/domblocker,slightlyflightyone,Shell,false,false,false,0,false,false,false,false +Morriar/inf3135-183-tp2,Morriar,C,true,false,false,2,true,true,false,false +YottaDB/Util/YDBposix,YottaDB,M,false,false,false,0,false,false,false,false +dellaltromondo/gatherings-crafter,dellaltromondo,JavaScript,false,false,false,0,false,false,false,false +Isleward/isleward-webview-client,Isleward,JavaScript,true,false,false,1,true,false,false,false +OC-2018/Prcs_dev_frontend/Appli_web_avec_Angular/activity_two_blog,OC-2018,TypeScript,false,false,false,0,false,false,false,false +zhiymatt/zhiymatt.gitlab.io,zhiymatt,JupyterNotebook,true,false,false,1,false,true,false,false +belinglima/sajic2018,belinglima,JavaScript,false,false,false,0,false,false,false,false +absolutejam/borg_backup,absolutejam,Shell,false,false,false,0,false,false,false,false +VictoryCzt/samll-cmd-game,VictoryCzt,C++,false,false,false,0,false,false,false,false +mordilos/PyMachineLearning,mordilos,Python,false,false,false,0,false,false,false,false +tajmone/highlight-test-suite,tajmone,PureBasic,false,false,false,0,false,false,false,false +chrisabela/runit,chrisabela,Shell,false,false,false,0,false,false,false,false +xldrkp/kollaboratives-schreiben,xldrkp,,true,false,false,1,false,true,false,false +ness_h/openstack-commands,ness_h,,false,false,false,0,false,false,false,false +hdl.4o/spw_router,hdl.4o,VHDL,false,false,false,0,false,false,false,false +chino540off/snakur,chino540off,C++,false,false,false,0,false,false,false,false +dean-shaff/aiohttp-planettracker,dean-shaff,JavaScript,false,false,false,0,false,false,false,false +mbenhajla/ethereumdevworkshop_baselone2018,mbenhajla,HTML,false,false,false,0,false,false,false,false +naftspace/control_module,naftspace,C++,false,false,false,0,false,false,false,false +fudaa/fudaa-prepro,fudaa,Java,true,false,true,4,true,true,true,true +fudaa/fudaa-framework,fudaa,Java,true,false,true,5,true,true,true,true +fkrull/rust-libostree,fkrull,Rust,true,false,false,2,true,false,false,true +fudaa/fudaa-crue,fudaa,Java,true,false,true,3,false,true,true,true +dylnmc/dotfiles,dylnmc,Python,false,false,false,0,false,false,false,false +questable/questable_bot,questable,Python,false,false,false,0,false,false,false,false +codepride/DailyAdvisor-iOS,codepride,,false,false,false,0,false,false,false,false +UbikBSD/WayKara/LibHIDapi,UbikBSD,C,false,false,false,0,false,false,false,false +worcester/cs/kwurst/rest-api,worcester,Java,false,false,false,0,false,false,false,false +philipstaffordwood/karate-tests-for-bvnk-api,philipstaffordwood,Gherkin,true,false,true,1,false,true,false,false +nk23x/Google-Contacts-for-Mutt,nk23x,Perl,false,false,false,0,false,false,false,false +arychj/monitor-remote,arychj,C#,false,false,false,0,false,false,false,false +brucekly/emacs.d,brucekly,EmacsLisp,false,false,false,0,false,false,false,false +amalofeev/man-ru-coreutils,amalofeev,Roff,false,false,false,0,false,false,false,false +zellepj/philipp.zelle,zellepj,HTML,true,false,false,1,false,false,true,false +ciniml/ultra96_debian,ciniml,Makefile,true,false,false,2,true,false,false,true +luisalexandre/treinamento_solutis,luisalexandre,,false,false,false,0,false,false,false,false +Strakar/gamewar,Strakar,,false,false,true,0,false,false,false,false +Matrixcoffee/matrix-android-sdk,Matrixcoffee,Java,false,false,false,0,false,false,false,false +s0wlz/dotfiles,s0wlz,CSS,false,false,false,0,false,false,false,false +JaPNaA/japnaabotdiscord,JaPNaA,TypeScript,false,false,false,0,false,false,false,false +yumingchang/pi,yumingchang,C,true,false,false,1,false,true,false,false +PushFish/PushFish-Landing,PushFish,CSS,true,false,false,2,false,true,true,false +frkl-downstream/thefinn93.letsencrypt,frkl-downstream,,false,false,false,0,false,false,false,false +paulmcquad/Lua,paulmcquad,Lua,false,false,false,0,false,false,false,false +Xterat/sample-gitlabci-cpp-project,Xterat,Shell,true,false,false,3,true,true,true,false +drizzt/ovs,drizzt,C,false,false,false,0,false,false,false,false +formation-simplon/reactive-forms-and-pipes,formation-simplon,TypeScript,false,false,false,0,false,false,false,false +burakb/hello-world,burakb,Java,true,false,true,3,true,false,true,true +corbinu/magento2,corbinu,PHP,false,false,false,0,false,false,false,false +k-cybulski/cli-library-status,k-cybulski,Python,false,true,false,0,false,false,false,false +semaio/salesforce-connector-php,semaio,PHP,true,false,false,1,false,true,false,false +YottaDB/Tools/YDBcmake,YottaDB,CMake,false,false,false,0,false,false,false,false +Jibux/FertilityCare,Jibux,HTML,false,false,false,0,false,false,false,false +ReturnInfinity/BareMetal-OS,ReturnInfinity,Shell,false,false,false,0,false,false,false,false +davereid/vote,davereid,HTML,true,false,false,1,false,false,true,false +flofan/single-use-door,flofan,C#,false,false,false,0,false,false,false,false +mvp_sergio/ejemplo,mvp_sergio,HTML,false,false,false,0,false,false,false,false +neetsdkasu/tcmmanimetool,neetsdkasu,Java,false,false,false,0,false,false,false,false +enervee/sentry_django_settings,enervee,Python,false,false,false,0,false,false,false,false +topdeclassified/topdeclassified,topdeclassified,,false,false,false,0,false,false,false,false +FuadYoussef/32-bit-Riscv-CPU,FuadYoussef,Java,false,false,false,0,false,false,false,false +FuadYoussef/risk,FuadYoussef,Processing,false,false,false,0,false,false,false,false +bs-production/web-production-resources,bs-production,,false,false,false,0,false,false,false,false +mr_safi/complier_python,mr_safi,Python,false,false,false,0,false,false,false,false +MatiAedo/club-de-la-lucha,MatiAedo,HTML,true,false,false,1,false,false,true,false +3702-2018/assignment-2,3702-2018,Java,false,false,false,0,false,false,false,false +hazystudio/papercraft_windows_v4,hazystudio,C#,false,false,false,0,false,false,false,false +iMoises/pwf,iMoises,PHP,false,false,false,0,false,false,false,false +miswanting/EraLife,miswanting,Python,false,false,false,0,false,false,false,false +dowoncha/ria,dowoncha,Rust,false,false,false,0,false,false,false,false +IA1819-TeamX/car-ia,IA1819-TeamX,C++,false,false,false,0,false,false,false,false +tdcwijaya/brand-design,tdcwijaya,,false,false,false,0,false,false,false,false +huhn/pool-party,huhn,Ruby,false,false,false,0,false,false,false,false +whendrik/zazu,whendrik,Python,false,true,false,0,false,false,false,false +ryandavie/modal,ryandavie,TypeScript,false,false,false,0,false,false,false,false +lucarc/reply-digital-twin-practice,lucarc,JupyterNotebook,false,false,false,0,false,false,false,false +ClaudioNeiva/calculo20182,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +danielboucon/coursgcl_etglp56,danielboucon,,false,false,false,0,false,false,false,false +alasdairkeyes/mt4-ak-libraries,alasdairkeyes,MQL5,false,false,false,0,false,false,false,false +jeanfi/psensor-pkg-ubuntu,jeanfi,JavaScript,false,false,false,0,false,false,false,false +jeanfi/psensor-pkg-debian,jeanfi,JavaScript,false,false,false,0,false,false,false,false +wolkenmachine/compas-badges,wolkenmachine,JavaScript,false,false,false,0,false,false,false,false +mmaheu/jenkins-k8s,mmaheu,Groovy,false,false,false,0,false,false,false,false +mmaheu/modern-pipelines,mmaheu,,false,false,false,0,false,false,false,false +mmaheu/nostromo,mmaheu,Makefile,false,false,true,0,false,false,false,false +gitlab-examples/ruby-openshift-example,gitlab-examples,Ruby,true,false,false,2,true,false,true,false +lizhang.ca/adms,lizhang.ca,TypeScript,false,false,false,0,false,false,false,false +lieblb/ilias,lieblb,PHP,false,false,false,0,false,false,false,false +MAXIV-HDF5/hdf5-simple-server,MAXIV-HDF5,Python,false,false,false,0,false,false,false,false +licence-mmi/projetweb_stationservice,licence-mmi,HTML,true,false,false,1,false,false,true,false +yumingchang/youtube-dl-block-free-support,yumingchang,Shell,false,false,false,0,false,false,false,false +libretrend/coreboot,libretrend,C,false,false,false,0,false,false,false,false +trackmastersteve/bot,trackmastersteve,Python,false,true,false,0,false,false,false,false +trackmastersteve/fileserver,trackmastersteve,Python,false,false,false,0,false,false,false,false +trackmastersteve/keylog,trackmastersteve,Python,false,false,false,0,false,false,false,false +trackmastersteve/pynmap,trackmastersteve,Python,false,false,false,0,false,false,false,false +kuzmych/kuzmych.gitlab.io,kuzmych,HTML,true,false,false,1,false,false,true,false +Emagii/rpg-game,Emagii,Python,false,false,false,0,false,false,false,false +ddorn/geom1,ddorn,TeX,false,false,false,0,false,false,false,false +edelweiss-linux/setup,edelweiss-linux,,false,false,false,0,false,false,false,false +vawe42/trajectory-toolbox,vawe42,Python,false,false,false,0,false,false,false,false +zhixichen/test-project,zhixichen,,false,false,false,0,false,false,false,false +MathewTyler/epub,MathewTyler,Shell,false,false,false,0,false,false,false,false +ZingO-Labs/webextension,ZingO-Labs,JavaScript,true,false,false,1,false,true,false,false +schpa/npanel-cljs,schpa,CSS,false,false,false,0,false,false,false,false +MathewTyler/OwncloudPie,MathewTyler,Shell,false,false,false,0,false,false,false,false +Defite/nuxt-wp-docker,Defite,Vue,true,false,false,1,false,false,true,false +codemunkey/spawneditor,codemunkey,JavaScript,false,false,false,0,false,false,false,false +dime.nicius/web_fatec,dime.nicius,HTML,false,false,false,0,false,false,false,false +pedrohb/habbos-ads,pedrohb,,false,false,false,0,false,false,false,false +Robertliu/cs329e-idb,Robertliu,JavaScript,false,false,false,0,false,false,false,false +gluaxspeed/rsbc,gluaxspeed,Rust,false,false,false,0,false,false,false,false +ryo33/cizen-request-example,ryo33,Elixir,false,false,false,0,false,false,false,false +dark0dave/beam-eloquent-shakespeare,dark0dave,Java,true,false,false,1,false,true,false,false +european-data-portal/mqa-metric-service,european-data-portal,Java,true,false,true,6,false,false,false,false +Marik2994/bar,Marik2994,C,false,false,false,0,false,false,false,false +vibewrsao/desain-rumah-minimalis,vibewrsao,,false,false,false,0,false,false,false,false +fer-rum/fdl-for-noobs,fer-rum,TeX,true,false,false,1,true,false,false,false +KasperHdL/PizzaWave,KasperHdL,C#,false,false,false,0,false,false,false,false +t.datebashvili/enbuscadelafelicidad,t.datebashvili,CSS,true,false,false,1,false,false,true,false +anarh1st47/skeletux-cross,anarh1st47,C++,false,false,false,0,false,false,false,false +EmergentSpaceTechnologies/OpenFramesInterface,EmergentSpaceTechnologies,C++,false,false,false,0,false,false,false,false +edubois22/php-units-of-measure,edubois22,PHP,false,false,false,0,false,false,false,false +alxf/go-cli,alxf,Go,false,false,false,0,false,false,false,false +whyang9701/icy_glare,whyang9701,Python,false,false,false,0,false,false,false,false +gberte/gomvc,gberte,Go,false,false,false,0,false,false,false,false +dimankiev/dhackos,dimankiev,Python,false,false,false,0,false,false,false,false +ametzger/dockerfiles,ametzger,Shell,false,false,false,0,false,false,false,false +riffraph/road-mapping,riffraph,Python,true,true,false,1,false,true,false,false +steven.cruz/cargo,steven.cruz,Java,false,false,true,0,false,false,false,false +smiley1983/halite3-match-manager,smiley1983,Python,false,false,false,0,false,false,false,false +uspgamedev/shin-ara-loop,uspgamedev,GDScript,false,false,false,0,false,false,false,false +SeungminHwang/ph162_color,SeungminHwang,Python,false,false,false,0,false,false,false,false +openfaas-experiments/openfaas-first-steps,openfaas-experiments,JavaScript,false,false,false,0,false,false,false,false +dhy1996/dubhacks_dc,dhy1996,Python,false,false,false,0,false,false,false,false +tanmaypandey1998/WNS-Analytics-Competition-2018,tanmaypandey1998,JupyterNotebook,false,false,false,0,false,false,false,false +thomas.adam/cwm-new,thomas.adam,C,false,false,false,0,false,false,false,false +bpass/bpass-core,bpass,Go,false,false,false,0,false,false,false,false +andrewdudu/cimenfx,andrewdudu,,false,false,false,0,false,false,false,false +diamondburned/libinput-mouse-tweaks,diamondburned,Shell,false,false,false,0,false,false,false,false +jumson/sdr-samples,jumson,JupyterNotebook,false,false,false,0,false,false,false,false +yen_trinh/sql-trainning,yen_trinh,,false,false,false,0,false,false,false,false +haikelfazzani/my-portfolio,haikelfazzani,TypeScript,false,false,false,0,false,false,false,false +gasche-papers/ocaml-recursive-value-declarations,gasche-papers,TeX,false,false,false,0,false,false,false,false +linh_nd/python-for-beginner_thay-ha,linh_nd,Python,false,false,false,0,false,false,false,false +ciniml/ultra96_kernel,ciniml,,true,false,false,2,false,false,false,true +worcester/cs/CS-Club/club-website,worcester,HTML,false,false,true,0,false,false,false,false +hernandev/snowflake,hernandev,PHP,false,false,false,0,false,false,false,false +Nogthings/bionic-dues-translation-to-spanish,Nogthings,,false,false,false,0,false,false,false,false +teufel0369/cct-activities-api,teufel0369,TypeScript,false,false,false,0,false,false,false,false +simulant/simulant,simulant,C++,true,false,false,3,true,true,true,false +simulant/ALdc,simulant,C,false,false,false,0,false,false,false,false +YuRaNnNzZZ/findhooks,YuRaNnNzZZ,Java,true,false,false,1,true,false,false,false +jdierberger1/tree-markup-language,jdierberger1,Java,true,false,false,2,true,true,false,false +alticu/niacop,alticu,C#,false,false,false,0,false,false,false,false +khang.a.root/dotfiles,khang.a.root,Python,false,false,false,0,false,false,false,false +iamabdus/iamabdus-com,iamabdus,JavaScript,false,false,false,0,false,false,false,false +mtnygard/m2m.modlog,mtnygard,Go,true,false,false,2,true,false,true,false +floatinghotpot/cordova-admobsdk,floatinghotpot,Objective-C,false,false,false,0,false,false,false,false +dzaporozhets/keynote,dzaporozhets,,false,false,false,0,false,false,false,false +rbauduin/dash-expenses-analysis,rbauduin,Python,false,true,false,0,false,false,false,false +krakus/projekt-dyplomowy-inzynierski,krakus,Python,false,false,false,0,false,false,false,false +ychetyrko/my,ychetyrko,,false,false,false,0,false,false,false,false +okoshovets/validator,okoshovets,Lua,false,false,false,0,false,false,false,false +gabriele.tomberli/league-stats,gabriele.tomberli,JavaScript,false,false,false,0,false,false,false,false +diamondburned/forematerial,diamondburned,,true,false,false,1,true,false,false,false +moraru.andreearoberta/ac_back_2018,moraru.andreearoberta,PHP,false,false,false,0,false,false,false,false +Danno131313/actix-ratscrew,Danno131313,Rust,true,false,false,2,true,false,true,false +Dimonik333/Displacement_Example_2D,Dimonik333,C#,false,false,false,0,false,false,false,false +vitvickiy/news_maker,vitvickiy,Python,true,true,false,1,false,false,false,false +SebEmagma/apero-messenger,SebEmagma,Makefile,false,false,false,0,false,false,false,false +1enderstore/epicproject,1enderstore,Shell,false,false,false,0,false,false,false,false +SpectralMemories/mangapanda-downloader,SpectralMemories,Shell,false,false,false,0,false,false,false,false +iandesj/pingpong,iandesj,C#,true,false,false,1,false,true,false,false +shagu/pfdesktop,shagu,Lua,false,false,false,0,false,false,false,false +tweet.dimitri/jga,tweet.dimitri,Java,true,false,false,4,false,true,true,false +jallenby37/bettersauerbraten,jallenby37,C,false,false,false,0,false,false,false,false +d.project/my-awesome-vue-todo,d.project,Vue,false,false,false,0,false,false,false,false +rishiramraj/how-to-kubernetes,rishiramraj,Python,false,false,false,0,false,false,false,false +elitist_neckbeard/tagfs,elitist_neckbeard,Python,false,true,false,0,false,false,false,false +StringVar/snake-game-jam,StringVar,C#,false,false,false,0,false,false,false,false +tahoma-robotics/training-path-following,tahoma-robotics,Java,false,false,true,0,false,false,false,false +xamantrx/rikimaru,xamantrx,TypeScript,false,false,false,0,false,false,false,false +gabrielfernandes/core,gabrielfernandes,C#,false,false,false,0,false,false,false,false +perswayable/website,perswayable,JavaScript,false,false,false,0,false,false,false,false +avhs-suas/main,avhs-suas,Makefile,false,false,false,0,false,false,false,false +tereshko/chicken,tereshko,C++,true,false,false,1,false,true,false,false +karumado/dynamodb-python-tutorial,karumado,Python,false,false,false,0,false,false,false,false +mjkochell/music-sniper,mjkochell,TypeScript,true,false,false,2,true,false,true,false +PushFish/PushFish-Py,PushFish,Python,false,true,false,0,false,false,false,false +software-garden/software-garden.gitlab.io,software-garden,Elm,true,false,false,1,false,false,true,false +albert_einstein/kwasm,albert_einstein,Go,true,false,false,1,true,false,false,false +UniversitasMultimediaNusantara/golang-uts-pti-server-1stbatch,UniversitasMultimediaNusantara,CSS,false,false,false,0,false,false,false,false +UniversitasMultimediaNusantara/golang-uts-pti-server-2ndbatch,UniversitasMultimediaNusantara,CSS,false,false,false,0,false,false,false,false +intangiblerealities/narupa-server,intangiblerealities,C#,true,false,false,2,false,true,true,false +lisaac/vue-pm,lisaac,Vue,true,false,false,1,false,true,false,false +maztertwo/test,maztertwo,C,false,false,false,0,false,false,false,false +oliverkeeble/code-jam-3,oliverkeeble,Python,true,false,false,1,false,true,false,false +biskette/code-jam-3,biskette,Python,true,false,false,1,false,true,false,false +tagptroll1/code-jam-3,tagptroll1,Python,true,false,false,1,false,true,false,false +jswook1213/dacon_3rd,jswook1213,JupyterNotebook,false,false,false,0,false,false,false,false +mygnu/rust-auth-server,mygnu,Rust,false,false,false,0,false,false,false,false +aaronschweig/scrumprep,aaronschweig,Java,false,false,true,0,false,false,false,false +PMaynard/sentinel,PMaynard,Python,false,false,false,0,false,false,false,false +threetopia/anmmrpp,threetopia,,false,false,false,0,false,false,false,false +wilt00x/ropkit,wilt00x,Python,false,false,false,0,false,false,false,false +xoria/nodekey,xoria,TypeScript,false,false,false,0,false,false,false,false +intangiblerealities/narupaplugins/narupa-openmm,intangiblerealities,C#,false,false,false,0,false,false,false,false +nvirin/cocoricowork,nvirin,PHP,false,false,false,0,false,false,false,false +oksoft/carecentre.old,oksoft,Python,false,false,false,0,false,false,false,false +AntSir/sorties-etude-qc---qf-r,AntSir,R,false,false,false,0,false,false,false,false +Alvaro18/bucles,Alvaro18,,false,false,false,0,false,false,false,false +nik9play/flexpip,nik9play,JavaScript,false,false,false,0,false,false,false,false +kimlab/rapid,kimlab,Python,false,false,false,0,false,false,false,false +Calinou/gits,Calinou,Nim,true,false,false,2,true,false,true,false +dog-cafe/dogcafe.happy,dog-cafe,HTML,false,false,false,0,false,false,false,false +avhs-suas/pidgin,avhs-suas,CMake,true,false,false,1,false,true,false,false +vatoobhai/ergonomic-controller-keyboard,vatoobhai,,false,false,false,0,false,false,false,false +q907364606/wechatplatform,q907364606,HTML,false,false,false,0,false,false,false,false +ketanb/modxtest,ketanb,CSS,false,false,false,0,false,false,false,false +TGXThemed/tgxemojis,TGXThemed,Python,false,false,false,0,false,false,false,false +MigrationGit/migrationtest2,MigrationGit,,false,false,false,0,false,false,false,false +M2UCP/Android,M2UCP,Java,false,false,false,0,false,false,false,false +uwekirsten/diamond_price_predictions,uwekirsten,R,false,false,false,0,false,false,false,false +cornelius.sevald/jumperbox,cornelius.sevald,Java,false,false,false,0,false,false,false,false +sieben07/internet-technologien,sieben07,HTML,false,false,false,0,false,false,false,false +alohajeanne/ajmpvuecloudexpress,alohajeanne,Vue,false,false,false,0,false,false,false,false +thegreatyellow67/conky-harlequin,thegreatyellow67,Lua,false,false,false,0,false,false,false,false +greenhouseinfo/mobilenet-on-node.js,greenhouseinfo,JavaScript,false,false,false,0,false,false,false,false +CMakeTemplates/CMakeTemplates,CMakeTemplates,CMake,false,false,false,0,false,false,false,false +leipert-projects/no-thank-you,leipert-projects,Shell,true,false,false,3,true,true,true,false +Liammscott/blog-challenge,Liammscott,HTML,false,false,false,0,false,false,false,false +Andreas.Jonsson/xwiki-deployer,Andreas.Jonsson,Haskell,false,false,false,0,false,false,false,false +jrmi/culture-web,jrmi,,false,false,false,0,false,false,false,false +mourad.hassini/imputation,mourad.hassini,Java,false,false,true,0,false,false,false,false +adrianovieira/ansible-role-itop_webserver,adrianovieira,,false,false,false,0,false,false,false,false +jebster/portfolio,jebster,HTML,true,false,false,2,true,false,true,false +rivasalmir/trainning_m1,rivasalmir,PHP,false,false,false,0,false,false,false,false +xenoinc/ToolsHub,xenoinc,C#,false,false,false,0,false,false,false,false +jotaf.daniel/ratel,jotaf.daniel,Makefile,false,false,false,0,false,false,false,false +brendan/t-gl,brendan,Python,false,false,false,0,false,false,false,false +zzz-i2p/zzz,zzz-i2p,Python,false,false,false,0,false,false,false,false +bgstack15/laps,bgstack15,Shell,false,false,false,0,false,false,false,false +CCT-0080/ionic8,CCT-0080,JavaScript,false,false,false,0,false,false,false,false +h8rbing3r_m8chin1s/deeplearninginstall,h8rbing3r_m8chin1s,,false,false,false,0,false,false,false,false +luis.pinedo22/construyendo-sistemas-de-aprendizaje-de-maquina-con-python,luis.pinedo22,JupyterNotebook,true,false,false,1,false,false,true,false +acrom18/manjaro-buildiso,acrom18,,true,false,false,1,true,false,false,false +beannaich/psxact,beannaich,C++,true,false,false,1,true,false,false,false +EECS-4481/Joshu,EECS-4481,HTML,false,false,false,0,false,false,false,false +risa_boi/luka-training-in-java,risa_boi,Java,false,false,false,0,false,false,false,false +dgetsman/half-life-timer,dgetsman,Java,false,false,false,0,false,false,false,false +training-microservices-2018-03/frontend,training-microservices-2018-03,HTML,false,false,true,0,false,false,false,false +monetha/reputation-js-sdk,monetha,TypeScript,false,false,false,0,false,false,false,false +rafaelcaviquioli/meetup-integracao-continua,rafaelcaviquioli,JavaScript,true,false,false,4,true,true,true,false +coringao/gngeo,coringao,Assembly,false,false,false,0,false,false,false,false +AndersSG/rts-bil,AndersSG,C++,false,false,false,0,false,false,false,false +trupill/kind-generics,trupill,Haskell,false,false,false,0,false,false,false,false +EdsolXY/cakephp-gentelella-theme,EdsolXY,PHP,false,false,false,0,false,false,false,false +pmariman/awesome-links,pmariman,,false,false,false,0,false,false,false,false +alexandre.tranchant/australian-client,alexandre.tranchant,JavaScript,true,false,false,1,false,true,false,false +nakama-mate/cd-domus,nakama-mate,JavaScript,false,false,false,0,false,false,false,false +matteo.comisso/royalstate,matteo.comisso,,false,false,false,0,false,false,false,false +faresapn12/html,faresapn12,CSS,false,false,false,0,false,false,false,false +space-essentials/membership,space-essentials,Ruby,true,false,false,2,true,false,false,true +vnilov/hopegod,vnilov,JavaScript,false,false,false,0,false,false,false,false +declaraciondepanama/declaracion-de-panama,declaraciondepanama,,false,false,false,0,false,false,false,false +Empereur.jean/projet_2a22b_cyber_monsieur_loyale,Empereur.jean,CSS,false,false,false,0,false,false,false,false +Troop353/tabl1,Troop353,,false,false,false,0,false,false,false,false +bluekay/shopping-list,bluekay,PHP,true,false,false,1,false,true,false,false +mariano.malomo/lagashu,mariano.malomo,JavaScript,false,false,false,0,false,false,false,false +lentsius/path_builder,lentsius,GDScript,false,false,false,0,false,false,false,false +laserhub/sevdesk,laserhub,JavaScript,false,false,false,0,false,false,false,false +bluefu/python-simple-webauth,bluefu,Python,false,true,false,0,false,false,false,false +curwank/formel-rad-development,curwank,Java,false,false,false,0,false,false,false,false +echoorchid/golang-open-source-projects,echoorchid,,false,false,false,0,false,false,false,false +Kuba663/nature,Kuba663,Perl,false,false,false,0,false,false,false,false +uwmcomputersociety/attendance-react,uwmcomputersociety,JavaScript,false,false,false,0,false,false,false,false +KashF/day1,KashF,HTML,true,false,false,1,false,false,true,false +AudioFranky/drumkv1gen,AudioFranky,C,false,false,false,0,false,false,false,false +chibill/satnogsmap,chibill,JavaScript,false,false,false,0,false,false,false,false +favasconcelos/adidas-color-game,favasconcelos,JavaScript,true,false,false,2,false,true,true,false +cycsky/vuecli-v1,cycsky,JavaScript,false,false,false,0,false,false,false,false +DoctorChoi/archive_bot,DoctorChoi,JavaScript,false,false,false,0,false,false,false,false +newebtime/pyrocms/joomlamigrator-module,newebtime,PHP,false,false,false,0,false,false,false,false +EasyGnuPG/egpg,EasyGnuPG,Shell,false,false,false,0,false,false,false,false +jamilkhan/architecture-swift,jamilkhan,Swift,false,false,false,0,false,false,false,false +b.urrito/b.ildschirm,b.urrito,C,false,false,false,0,false,false,false,false +coditech/cohort-b03/capstone/razan_ali_hussein-personal_project,coditech,,false,false,false,0,false,false,false,false +whiteship/demonatual,whiteship,Java,false,false,true,0,false,false,false,false +oconomy/ocon,oconomy,C++,true,false,false,4,true,true,false,true +teb3klasa/figury-geometryczne,teb3klasa,C++,false,false,false,0,false,false,false,false +gitlab-examples/ruby-autodeploy,gitlab-examples,Ruby,true,false,false,2,true,false,true,false +live2skull/app_damoa_parkjiho_yanghaechan,live2skull,CSS,false,false,false,0,false,false,false,false +balibla/les-algorithme,balibla,,false,false,false,0,false,false,false,false +ao/begonecord_exploit,ao,Python,false,false,false,0,false,false,false,false +OmarElaibi/schoolProjects,OmarElaibi,Python,false,false,false,0,false,false,false,false +sesela/multi-spring-startup,sesela,Java,false,false,false,0,false,false,false,false +bijeshshrestha/googlepay,bijeshshrestha,JavaScript,true,false,false,1,false,false,false,true +robit.a/toast,robit.a,R,true,false,false,2,false,true,false,false +jubin86/Issue-Management,jubin86,PHP,false,false,false,0,false,false,false,false +ReturnInfinity/baremetal-node,ReturnInfinity,C,false,false,false,0,false,false,false,false +terrakok/devfest-2018-app,terrakok,Kotlin,false,false,false,0,false,false,false,false +botux-fr/docker/grav,botux-fr,Shell,true,false,false,1,true,false,false,false +soluno/contao-privacy,soluno,PHP,false,false,false,0,false,false,false,false +davinwalker/prograf,davinwalker,Ruby,false,false,false,0,false,false,false,false +MOBlox/CuppaZee-Duo,MOBlox,HTML,false,false,false,0,false,false,false,false +workingconcept/webpack-craft-plugin,workingconcept,PHP,false,false,false,0,false,false,false,false +hypnoglow/example-go-docker-gitlab,hypnoglow,Go,true,false,false,3,true,true,false,false +KashF/10-photo-gallery,KashF,HTML,true,false,false,1,false,false,true,false +RNTs_3/openhab-timeline-picker,RNTs_3,JavaScript,false,false,false,0,false,false,false,false +dionmoult/panblog,dionmoult,Makefile,false,false,false,0,false,false,false,false +Sunggook/osam,Sunggook,JavaScript,false,false,false,0,false,false,false,false +churchofmonero/church-of-monero-site,churchofmonero,,false,false,false,0,false,false,false,false +DevOps-STL-Meetup/talks/proposed,DevOps-STL-Meetup,,false,false,false,0,false,false,false,false +4LT/mapsaw,4LT,Go,false,false,false,0,false,false,false,false +highway900/sprite_base,highway900,Rust,false,false,false,0,false,false,false,false +boyzhaotian/server-frontend,boyzhaotian,Vue,true,false,false,1,false,true,false,false +rutevegavu/book-pdf,rutevegavu,,false,false,false,0,false,false,false,false +dodgyville/pygltflib,dodgyville,Python,false,true,false,0,false,false,false,false +puzle-project/pixelmancer,puzle-project,C++,true,false,false,1,false,true,false,false +training-microservices-2018-03/va-bank,training-microservices-2018-03,Java,false,false,true,0,false,false,false,false +dstieghorst/simple-wms-react,dstieghorst,JavaScript,false,false,false,0,false,false,false,false +jason.siervo/paypadv5,jason.siervo,PHP,false,false,false,0,false,false,false,false +evagtgd-gamagora/simulation-physique/animation-squelette-2d,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +ubports/marketing/writers/news-blog-posts,ubports,,false,false,false,0,false,false,false,false +REWWQ/firstproject,REWWQ,,false,false,false,0,false,false,false,false +coditech/cohort-b03/team-bits-and-bytes/prefab-houses,coditech,JavaScript,false,false,false,0,false,false,false,false +BenoitDesrosiers/gestionimpression,BenoitDesrosiers,PHP,false,false,false,0,false,false,false,false +ubports/ux-des/project-tasks,ubports,,false,false,false,0,false,false,false,false +ebinraj/doxtro-dev,ebinraj,JavaScript,false,false,false,0,false,false,false,false +akhmal22/webfpgitlab,akhmal22,CSS,false,false,false,0,false,false,false,false +frankiezafe/vga01,frankiezafe,HTML,false,false,false,0,false,false,false,false +jreinert/fogtrack,jreinert,Crystal,true,false,false,2,true,false,false,true +phip1611/phips-photoblog,phip1611,,false,false,false,0,false,false,false,false +CzechitasCsharp2018/03_opakovani,CzechitasCsharp2018,C#,false,false,false,0,false,false,false,false +AlexL777/diskussionsforen,AlexL777,,false,false,false,0,false,false,false,false +monnef/beesn,monnef,TypeScript,true,false,false,1,false,true,false,false +lemonlary/jargin,lemonlary,C++,false,false,false,0,false,false,false,false +marcusmansson/autoindex,marcusmansson,XSLT,false,false,false,0,false,false,false,false +sagikazarmark/modern-go-application,sagikazarmark,Go,true,false,false,4,true,true,false,false +bferoudj/projet_yottayocto,bferoudj,Java,true,false,false,2,true,true,false,false +ParkerMc/bling-edit-exporter,ParkerMc,Python,false,true,false,0,false,false,false,false +iagocavalcante/vue-express-mongo-boilerplate,iagocavalcante,JavaScript,false,false,false,0,false,false,false,false +fabian-ibanez/fork,fabian-ibanez,,false,false,false,0,false,false,false,false +CzechitasCsharp2018/03_cykly,CzechitasCsharp2018,C#,false,false,false,0,false,false,false,false +sharov.grigory/scipion-em-plugins,sharov.grigory,,false,false,false,0,false,false,false,false +lucidus21/iaml,lucidus21,JupyterNotebook,false,false,false,0,false,false,false,false +mcanuet/ppe_perso,mcanuet,PHP,false,false,false,0,false,false,false,false +nate-2014jatc/minecraftreinstancedserver,nate-2014jatc,Lua,false,false,false,0,false,false,false,false +alxnophis/mockdata,alxnophis,,false,false,false,0,false,false,false,false +realrichardsharpe/wireshark-generator,realrichardsharpe,Java,false,false,false,0,false,false,false,false +briancaffey/verbose-equals-true,briancaffey,Vue,true,false,false,1,false,false,false,false +dunossauro/locaweb-grupy-2018,dunossauro,Python,true,false,false,1,false,true,false,false +StevenPG/customspringaopannotation,StevenPG,Java,false,false,true,0,false,false,false,false +hoebjo/guix-tools,hoebjo,Shell,false,false,false,0,false,false,false,false +bzim/owned-alloc,bzim,Rust,true,false,false,1,false,false,true,false +jtym/pdl-100,jtym,HTML,false,false,false,0,false,false,false,false +arthiteca/fractal-fantasy,arthiteca,,false,false,false,0,false,false,false,false +Ash258/scrapers,Ash258,JavaScript,true,false,false,3,true,true,false,true +net4me/telegram-theme,net4me,,false,false,false,0,false,false,false,false +Merchan21/conversor-de-temperatura,Merchan21,,false,false,false,0,false,false,false,false +devluke/todayismonday,devluke,PHP,false,false,false,0,false,false,false,false +olivercoleman/rmb,olivercoleman,JavaScript,false,false,false,0,false,false,false,false +TioSaso/dotfiles,TioSaso,Lua,false,false,false,0,false,false,false,false +akshaydongaregit/gitlabworld,akshaydongaregit,Java,false,false,false,0,false,false,false,false +chiungyu/go-opc-client,chiungyu,C,false,false,false,0,false,false,false,false +rifkiadrn/sisdis-ewallet,rifkiadrn,Go,false,false,false,0,false,false,false,false +hr567/Ana,hr567,Rust,true,false,false,1,false,true,false,false +JaraSit/intro_to_fenics_supp,JaraSit,Python,false,false,false,0,false,false,false,false +AbiramK/methtimer,AbiramK,Python,true,false,false,1,false,true,false,false +rayupsdk/rayup-java-sdk,rayupsdk,Java,false,false,true,0,false,false,false,false +devluke/tuday,devluke,JavaScript,false,false,false,0,false,false,false,false +yoginth/AadhaarSearchEngine,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/scripts,yoginth,Shell,false,false,false,0,false,false,false,false +yoginth/SecLists,yoginth,PHP,false,false,false,0,false,false,false,false +lpasselin/stylus-tracking,lpasselin,Python,false,false,false,0,false,false,false,false +oleh.kurachenko/cpp-algorithms-test,oleh.kurachenko,C++,true,false,false,1,true,false,false,false +kerel-fs/jupyter-notebooks,kerel-fs,JupyterNotebook,false,false,false,0,false,false,false,false +raerith/veribaton,raerith,Java,false,false,false,0,false,false,false,false +kevonito/juegojs,kevonito,JavaScript,false,false,false,0,false,false,false,false +eharastasan/image-gallery,eharastasan,JavaScript,true,false,false,1,false,false,true,false +oleh.kurachenko/pl-algorithms-test-system,oleh.kurachenko,Python,true,false,false,1,false,false,false,false +cngroup/training-devops,cngroup,JavaScript,true,false,false,4,true,true,true,true +arenyp/modac,arenyp,C,false,false,false,0,false,false,false,false +yoginth/passive-spider,yoginth,Ruby,false,false,false,0,false,false,false,false +yoginth/pornhunterbot,yoginth,Python,false,false,false,0,false,false,false,false +aldimaulanaa/bpjs,aldimaulanaa,,false,false,false,0,false,false,false,false +chenyan19209219/codesearch1,chenyan19209219,,false,false,false,0,false,false,false,false +sagwascript/note-ml,sagwascript,JupyterNotebook,false,false,false,0,false,false,false,false +halacsy/kerettanterv,halacsy,TeX,false,false,false,0,false,false,false,false +DoctorChoi/as3_ddos,DoctorChoi,ActionScript,false,false,false,0,false,false,false,false +ASharpPen/mtaw2_referencesheets,ASharpPen,TeX,true,false,false,1,true,false,false,false +brbrroman/bmstu-s5-tssd-project,brbrroman,JavaScript,false,false,false,0,false,false,false,false +sunny-bay/crosswalk,sunny-bay,,false,false,false,0,false,false,false,false +handal_abdillah/jabalrahmah,handal_abdillah,JavaScript,false,false,false,0,false,false,false,false +iporsut/go-training,iporsut,Go,false,false,false,0,false,false,false,false +emcrp/src,emcrp,Python,true,true,false,1,false,false,false,false +MoonLightElf/ASPCMS,MoonLightElf,ASP,false,false,false,0,false,false,false,false +MoonLightElf/v2ray-openshift-all-in-one,MoonLightElf,PHP,false,false,false,0,false,false,false,false +akavoukis/meta-gateway,akavoukis,BitBake,true,false,false,1,false,true,false,false +lydra/gitlab-ci-templates,lydra,Python,true,false,false,1,false,true,false,false +p2pcloud/iaas,p2pcloud,Makefile,false,false,false,0,false,false,false,false +lappis-unb/projects/SMI/smi-slave,lappis-unb,Python,true,true,false,1,false,true,false,false +lappis-unb/projects/SMI/smi-front,lappis-unb,JavaScript,false,false,false,0,false,false,false,false +liberapay/liberapay.com,liberapay,,false,false,false,0,false,false,false,false +tobias1012/LectioToCSV,tobias1012,Python,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-py-alpine,openmicroscopy,Shell,true,false,false,1,true,false,false,false +fayze/znavigo,fayze,C++,false,false,false,0,false,false,false,false +anissiam/awesome-android-ui,anissiam,,false,false,false,0,false,false,false,false +fayze/tictac,fayze,C++,false,false,false,0,false,false,false,false +dazlidon/gameorderus,dazlidon,,false,false,false,0,false,false,false,false +dewdude/drugwar64,dewdude,VisualBasic,false,false,false,0,false,false,false,false +fayze/barobaro,fayze,C++,false,false,false,0,false,false,false,false +BlackEdder/pstore,BlackEdder,D,false,false,false,0,false,false,false,false +xenud/tunables,xenud,,true,false,false,1,false,true,false,false +LuminousLizard/pyimgui-user-friendly,LuminousLizard,Python,false,false,false,0,false,false,false,false +adrielsantiago/echarts-proof-of-concept,adrielsantiago,Vue,true,false,false,1,false,false,true,false +MineLearning/Factions/FactionsML,MineLearning,C#,false,false,false,0,false,false,false,false +mauriciofrivera/empact_tech,mauriciofrivera,Python,false,false,false,0,false,false,false,false +Alsabila/smartescape,Alsabila,Python,true,true,false,2,false,true,true,false +devfest2018-gdgmientrung/devfest2018-gdgmientrung,devfest2018-gdgmientrung,JavaScript,false,false,false,0,false,false,false,false +ae-dir/aehostd,ae-dir,Python,false,false,false,0,false,false,false,false +Siebencorgie/jakar-tk,Siebencorgie,Rust,false,false,false,0,false,false,false,false +sirbubbls/haenselandgradle,sirbubbls,Shell,false,false,false,0,false,false,false,false +BarkingDog/barking-bot,BarkingDog,JavaScript,false,false,false,0,false,false,false,false +yoginth/movies-for-hackers,yoginth,Shell,false,false,false,0,false,false,false,false +ghammad/hugo,ghammad,,true,false,false,1,false,true,false,false +iot.fabian.rami/alexa-mam-client,iot.fabian.rami,TypeScript,false,false,false,0,false,false,false,false +royolsen/ansible-ovms-vm,royolsen,Python,false,false,false,0,false,false,false,false +sat-mtl/telepresence/ui-components,sat-mtl,JavaScript,true,false,false,2,false,true,true,false +oresavna/curly-eureka,oresavna,,false,false,false,0,false,false,false,false +Neetx/hexlv,Neetx,C,false,false,false,0,false,false,false,false +blu3spirits/patcherd-rs,blu3spirits,Rust,false,false,false,0,false,false,false,false +Cosaca/pec1-juego-de-aventuras,Cosaca,C#,false,false,false,0,false,false,false,false +Cihoto/misperris-django2.0,Cihoto,Python,false,false,false,0,false,false,false,false +antisec/torforwindows,antisec,HTML,false,false,false,0,false,false,false,false +AirisiusCore/airisiuscore,AirisiusCore,Java,false,false,false,0,false,false,false,false +cecton/ddssd,cecton,Rust,true,false,false,2,false,true,false,false +AxoCord/axocord,AxoCord,CSS,false,false,false,0,false,false,false,false +nmowen/kanban-board-semester-project,nmowen,Java,false,false,true,0,false,false,false,false +dein0s_wow_vanilla/pfUI-addonskinner,dein0s_wow_vanilla,Lua,false,false,false,0,false,false,false,false +rknakamura/selenium,rknakamura,C#,false,false,false,0,false,false,false,false +KatHamer/nuanceos,KatHamer,Assembly,false,false,false,0,false,false,false,false +mike7b4/usbapi-rs,mike7b4,Rust,false,false,false,0,false,false,false,false +danghoanggeo/gins_1,danghoanggeo,Java,false,false,false,0,false,false,false,false +danghoanggeo/adruniocar,danghoanggeo,Java,false,false,false,0,false,false,false,false +xe1phix/xe1phix-podcast-list,xe1phix,,false,false,false,0,false,false,false,false +AyerV/2018-divpub,AyerV,,false,false,false,0,false,false,false,false +sathishkumarb/tripsortdubi,sathishkumarb,PHP,false,false,false,0,false,false,false,false +Student-Rollup/student_rollup-ios,Student-Rollup,Objective-C,false,false,false,0,false,false,false,false +StevenAvelino/electron-anna,StevenAvelino,Vue,false,false,false,0,false,false,false,false +billow-thunder/easy-route,billow-thunder,JavaScript,false,false,false,0,false,false,false,false +leipert-projects/gitlab-recipes,leipert-projects,,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-idirector,openmicroscopy,Python,false,false,false,0,false,false,false,false +openmicroscopy/incubator/omero-shrtn,openmicroscopy,Python,false,false,false,0,false,false,false,false +homes-made-simple/hms-website,homes-made-simple,HTML,true,false,false,1,false,false,true,false +mraxel/m-cubed-live,mraxel,HTML,true,false,false,2,true,true,false,false +dstieghorst/simple-wms-backend,dstieghorst,Java,false,false,true,0,false,false,false,false +sky-kshatriyan/sdspa,sky-kshatriyan,Java,false,false,true,0,false,false,false,false +tedsgame/godot,tedsgame,C++,false,false,false,0,false,false,false,false +petermader/haskell-bits,petermader,Haskell,false,false,false,0,false,false,false,false +dstieghorst/simple-wms-rest-api,dstieghorst,Java,false,false,true,0,false,false,false,false +GeoSchnitzel/TreasureHunt,GeoSchnitzel,Java,false,false,false,0,false,false,false,false +Humanlights/Slaver,Humanlights,C#,false,false,false,0,false,false,false,false +a-litinskiy/react-immutable-jss-data-table,a-litinskiy,JavaScript,false,false,false,0,false,false,false,false +adrael/everything-is-priority,adrael,JavaScript,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-niagara-texture-sample,arthiteca,,false,false,false,0,false,false,false,false +sh1nu11b1/dig,sh1nu11b1,JavaScript,false,false,false,0,false,false,false,false +sh1nu11b1/sandcat,sh1nu11b1,Pascal,false,false,false,0,false,false,false,false +oleh.kurachenko/python-algorithms-test,oleh.kurachenko,Python,true,false,false,1,true,false,false,false +ucsd-gitlab/library/ldap_sync,ucsd-gitlab,Ruby,true,false,false,1,true,false,false,false +uninen/heimlich,uninen,Python,true,true,false,1,false,true,false,false +rknakamura/seleniumdotnet,rknakamura,C#,false,false,false,0,false,false,false,false +Nayuki/QR-Code-generator,Nayuki,Java,false,false,false,0,false,false,false,false +Nayuki/Project-Euler-solutions,Nayuki,Java,false,false,false,0,false,false,false,false +AbiramK/numextract,AbiramK,Python,true,false,false,1,false,true,false,false +G_ka/qt-customizable-tic-tac-toe,G_ka,C++,false,false,false,0,false,false,false,false +erikmd/docker-coq-gitlab-ci-demo-2,erikmd,Coq,true,false,false,2,true,true,false,false +niklas.blago/scft_c_course,niklas.blago,CMake,false,false,false,0,false,false,false,false +bersihalami/produk-wajah,bersihalami,,false,false,false,0,false,false,false,false +erikmd/docker-coq-gitlab-ci-demo-1,erikmd,Coq,true,false,false,2,true,true,false,false +shamanu4/django-intellisense,shamanu4,TypeScript,false,false,false,0,false,false,false,false +emcrp/emcrp.gitlab.io,emcrp,HTML,true,false,false,1,false,false,true,false +hikou_no/hikounomizu,hikou_no,C++,false,false,false,0,false,false,false,false +uydoreal/exercise-js,uydoreal,JavaScript,false,false,false,0,false,false,false,false +qnkxsovc/blockquote,qnkxsovc,JupyterNotebook,false,false,false,0,false,false,false,false +our-sci/documentation,our-sci,,true,false,false,1,false,false,true,false +slndrmn/pyfm,slndrmn,Python,false,true,false,0,false,false,false,false +gw2federation/gw2-federation,gw2federation,,false,false,false,0,false,false,false,false +AirisiusCore/examplepackage,AirisiusCore,Java,false,false,true,0,false,false,false,false +gfelbing/openwall,gfelbing,Vue,true,false,false,2,true,false,true,false +EfraaX/fe-ssc-test,EfraaX,HTML,false,false,false,0,false,false,false,false +ScrambleSim/Scramble,ScrambleSim,,true,false,false,2,true,true,false,false +julianmlr/id-mangement-on-blockchain,julianmlr,JavaScript,false,false,false,0,false,false,false,false +Sterophonick/pocketmini,Sterophonick,Assembly,false,false,false,0,false,false,false,false +officerebel/django-vue-rest,officerebel,JavaScript,false,false,false,0,false,false,false,false +Artemix/validator,Artemix,Java,true,false,false,1,false,true,false,false +HnaQian/hnamusic,HnaQian,JavaScript,false,false,false,0,false,false,false,false +AirisiusCore/examplepackage-kotlin,AirisiusCore,Kotlin,false,false,false,0,false,false,false,false +gbstringer/owc2,gbstringer,Python,true,true,false,1,false,true,false,false +dx-experts/drupal-templates-for-gitlab-ci,dx-experts,,false,false,false,0,false,false,false,false +AirisiusCore/quiz,AirisiusCore,Java,false,false,false,0,false,false,false,false +pepa65/luav,pepa65,Shell,false,false,false,0,false,false,false,false +Gekke-Jakke/abap-qr-code-generator,Gekke-Jakke,ABAP,false,false,false,0,false,false,false,false +vincentharrius/operation-proclaimer,vincentharrius,Swift,false,false,false,0,false,false,false,false +danielr1996/kafka,danielr1996,Java,false,false,true,0,false,false,false,false +Trilarion/image-processing,Trilarion,Python,false,true,false,0,false,false,false,false +macku.jenda/pullup-ino,macku.jenda,C++,false,false,false,0,false,false,false,false +assemblea.pdm.collegiomazza/statuto-assemblea,assemblea.pdm.collegiomazza,Python,true,false,false,1,false,false,false,true +macku.jenda/home-cloud,macku.jenda,TypeScript,false,false,false,0,false,false,false,false +samosaara/desenho_animado_clojure,samosaara,Clojure,true,false,false,2,true,true,false,false +vtrack/vtrack-webapp,vtrack,Vue,true,false,false,2,true,true,false,false +sjstoelting/pgsql-tweaks,sjstoelting,PLpgSQL,false,false,false,0,false,false,false,false +Aarushi94/es6-features,Aarushi94,JavaScript,false,false,false,0,false,false,false,false +herbertsfundgrube/civitasserver,herbertsfundgrube,Java,false,false,false,0,false,false,false,false +v9gel/fl1,v9gel,,false,false,false,0,false,false,false,false +JuampaHernandez/flotavehicular-web,JuampaHernandez,JavaScript,false,false,false,0,false,false,false,false +daftspaniel/dragonapps,daftspaniel,VisualBasic,false,false,false,0,false,false,false,false +ajpocus/adventure-kit,ajpocus,JavaScript,false,false,false,0,false,false,false,false +ajpocus/escape-from-universe-a,ajpocus,JavaScript,false,false,false,0,false,false,false,false +ajpocus/gitcalendar,ajpocus,Python,false,false,false,0,false,false,false,false +ajpocus/mal,ajpocus,Swift,false,false,false,0,false,false,false,false +ajpocus/pizzeria,ajpocus,Python,false,false,false,0,false,false,false,false +ajpocus/teethmonster,ajpocus,JavaScript,false,false,false,0,false,false,false,false +ajpocus/PowerUp,ajpocus,JavaScript,false,false,false,0,false,false,false,false +metabolism-of-cities/metabolism-of-cities-platform,metabolism-of-cities,HTML,false,false,false,0,false,false,false,false +niaa/nodeinfo.lua,niaa,Lua,false,false,false,0,false,false,false,false +wellington34226/vessels-communication,wellington34226,C++,false,false,false,0,false,false,false,false +k010/react-rosco,k010,JavaScript,false,false,false,0,false,false,false,false +AlexandrNil/less-dog-blog-comments,AlexandrNil,,false,false,false,0,false,false,false,false +annjariyakeawjungharn/machine-learning-myproject,annjariyakeawjungharn,,false,false,false,0,false,false,false,false +Firejail/firejail_ci,Firejail,C,true,false,false,1,false,true,false,false +faresapn12/smartairport,faresapn12,Java,false,false,false,0,false,false,false,false +RaitaroH/rofi-tools,RaitaroH,Shell,false,false,false,0,false,false,false,false +mindroot/quests_old,mindroot,HTML,false,false,false,0,false,false,false,false +nopaystation_repos/details_nps_games,nopaystation_repos,Ruby,false,false,false,0,false,false,false,false +flavio.cordova/nosql,flavio.cordova,Vue,false,false,false,0,false,false,false,false +thnee/zsm,thnee,Python,false,true,false,0,false,false,false,false +LukeDM/futuristic-spacecraft-3d-model,LukeDM,,false,false,false,0,false,false,false,false +LukeDM/python-gui-audio-player-app,LukeDM,Python,false,false,false,0,false,false,false,false +thnee/zsm-lib,thnee,Python,false,true,false,0,false,false,false,false +VoliKoN/pushfish-poc,VoliKoN,Python,false,true,false,0,false,false,false,false +christian.yaranga/visualnovel-2018-2,christian.yaranga,C++,false,false,false,0,false,false,false,false +Punctuality/olimpnn,Punctuality,JupyterNotebook,false,false,false,0,false,false,false,false +ymber/lualib_id3,ymber,Lua,false,false,false,0,false,false,false,false +FlorianDussault/dbdiet-core,FlorianDussault,C#,false,false,false,0,false,false,false,false +cibersheep/mockup-templates,cibersheep,,false,false,false,0,false,false,false,false +blaineam/folders-2-google-photos,blaineam,JavaScript,false,false,false,0,false,false,false,false +golo-lab/gaas,golo-lab,Golo,false,false,true,0,false,false,false,false +64u71bm/dgh-phaserjsDemo_invaders,64u71bm,HTML,false,false,false,0,false,false,false,false +warezio/warezio,warezio,JavaScript,false,false,false,0,false,false,false,false +ekran/ekgraph,ekran,Python,false,false,false,0,false,false,false,false +smeeze/eego-sdk-pybind11,smeeze,C++,false,false,false,0,false,false,false,false +yoginth/shortener,yoginth,JavaScript,false,false,false,0,false,false,false,false +diamondburned/playergtk3,diamondburned,Go,false,false,false,0,false,false,false,false +souldzin/js-math-creativity,souldzin,JavaScript,true,false,false,2,false,true,true,false +valera540/memorizeit,valera540,C++,false,false,false,0,false,false,false,false +classtag/recsys,classtag,Vue,true,false,false,4,true,true,false,false +sofreeus/class-template,sofreeus,,false,false,false,0,false,false,false,false +afernandezh_pocs/design_patterns/observer-pattern,afernandezh_pocs,Java,false,false,true,0,false,false,false,false +fnetworks/definy,fnetworks,Java,false,false,false,0,false,false,false,false +rlm72/bioinformatics,rlm72,Python,false,false,false,0,false,false,false,false +mekhanix/information-retrieval,mekhanix,Python,false,false,false,0,false,false,false,false +highside/node-amqp,highside,Rust,true,false,false,2,true,true,false,false +abryner/Salesforce-Test-Factory,abryner,Apex,false,false,false,0,false,false,false,false +srnb/nose,srnb,Scala,false,false,false,0,false,false,false,false +than1133/radar,than1133,Python,false,false,false,0,false,false,false,false +LineageOS/infra/issue-bot,LineageOS,Python,true,true,false,1,true,false,false,false +wahyudieko/mailseconds,wahyudieko,JavaScript,false,false,false,0,false,false,false,false +ipang-dwi/tecra,ipang-dwi,,false,false,false,0,false,false,false,false +ML-in-Science/Pedagogical/cancer_ml,ML-in-Science,,false,false,false,0,false,false,false,false +Chrysis/gam112-invictus,Chrysis,C#,false,false,false,0,false,false,false,false +DrWursterich/CLI,DrWursterich,Java,true,false,false,4,true,true,true,false +mycf.sg/go-mcf,mycf.sg,Go,false,false,false,0,false,false,false,false +jozefhajnala/gists,jozefhajnala,R,false,false,false,0,false,false,false,false +jorge.suit/docker-clang-templight,jorge.suit,,false,false,false,0,false,false,false,false +sd1-ec-2018-2/p3-g3,sd1-ec-2018-2,JavaScript,false,false,false,0,false,false,false,false +zhaoboyang1991/WX,zhaoboyang1991,JavaScript,false,false,false,0,false,false,false,false +ArseniyDerkach/git-cheatsheet,ArseniyDerkach,,false,false,false,0,false,false,false,false +danobr/pytemplate,danobr,Python,true,true,false,2,false,false,true,false +GuillaumeHemmen/penelope-rn,GuillaumeHemmen,JavaScript,false,false,false,0,false,false,false,false +avtaria/websockets,avtaria,PHP,false,false,false,0,false,false,false,false +sat-mtl/telepresence/dev-tools,sat-mtl,Shell,false,false,false,0,false,false,false,false +Zachu/ansible-borgbackup,Zachu,,false,false,false,0,false,false,false,false +SatarAs09/nbabyguard,SatarAs09,JavaScript,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-niagara-event-handler,arthiteca,,false,false,false,0,false,false,false,false +kencjohnston/personal,kencjohnston,,false,false,false,0,false,false,false,false +Infolinchwn/era-tutorium,Infolinchwn,,false,false,false,0,false,false,false,false +personal-server-community/the-default-stack,personal-server-community,Python,false,false,false,0,false,false,false,false +udebian1/java_mariadb,udebian1,Java,false,false,false,0,false,false,false,false +mbergeron/tic-tac-toe,mbergeron,Python,false,true,false,0,false,false,false,false +chengge/siri-shortcuts,chengge,,false,false,false,0,false,false,false,false +golo-lab/golo-extension,golo-lab,Golo,false,false,false,0,false,false,false,false +mohitmehta1996/laravel-with-4-user-roles,mohitmehta1996,CSS,false,false,false,0,false,false,false,false +cschalkwijk/vim_rc,cschalkwijk,Vimscript,false,false,false,0,false,false,false,false +Siebencorgie/marp-vk,Siebencorgie,Rust,false,false,false,0,false,false,false,false +VittorioBarella/exemplo-crud-php,VittorioBarella,PHP,false,false,false,0,false,false,false,false +cznic/y,cznic,Yacc,false,false,false,0,false,false,false,false +Eonpass/bitcoin-implementation,Eonpass,Python,false,false,false,0,false,false,false,false +mbatier/kardavou,mbatier,JavaScript,false,false,false,0,false,false,false,false +sketcher/justroute,sketcher,PHP,false,false,false,0,false,false,false,false +tearsinblue/ftpgps,tearsinblue,Java,false,false,false,0,false,false,false,false +estevanjantsk/estevanjantsk.gitlab.io,estevanjantsk,JavaScript,false,false,false,0,false,false,false,false +Wischnu/vishnu,Wischnu,Lua,false,false,false,0,false,false,false,false +zoy05/exampleDiscordBotJS,zoy05,JavaScript,false,false,false,0,false,false,false,false +personal-server-community/newebe,personal-server-community,JavaScript,false,false,false,0,false,false,false,false +personal-server-community/website,personal-server-community,,false,false,false,0,false,false,false,false +fournier/install-ubuntu-laplace,fournier,,false,false,false,0,false,false,false,false +ry535k2/film-ranks,ry535k2,TeX,false,false,false,0,false,false,false,false +hschmidt/gitbasics,hschmidt,,false,false,false,0,false,false,false,false +bowbahdoe/ui-experiment,bowbahdoe,Elm,false,false,false,0,false,false,false,false +MatufA/logi,MatufA,JavaScript,false,false,false,0,false,false,false,false +tuc_graphql/dockerhub,tuc_graphql,,false,false,false,0,false,false,false,false +gmbarrera/battlefield-ia-example,gmbarrera,Java,false,false,false,0,false,false,false,false +jsrhodes15/rails-twitter-clone,jsrhodes15,Ruby,false,false,false,0,false,false,false,false +personal-server-community/personal-database,personal-server-community,,true,false,false,1,false,true,false,false +digitalr00ts-demos/pkg-demo,digitalr00ts-demos,Python,false,false,false,0,false,false,false,false +ekineng/webapibootstrap,ekineng,C#,false,false,false,0,false,false,false,false +entertdistrict1/ent_district/entdistrict,entertdistrict1,,false,false,false,0,false,false,false,false +fabrom/clipboardmemo,fabrom,CSS,true,false,false,2,true,false,true,false +lividcomet/reddit-scraper,lividcomet,Python,false,false,false,0,false,false,false,false +vdovychenko99/5funcs,vdovychenko99,C++,false,false,false,0,false,false,false,false +nguyentrongtoandl/c_plus_plus,nguyentrongtoandl,C++,false,false,false,0,false,false,false,false +thai-sc/tara-user-guide,thai-sc,,false,false,false,0,false,false,false,false +mwillema/grpc-spring-boot-starter,mwillema,Java,true,false,true,3,true,true,true,false +GrumpyGameDev/fsharp/fsharpsmallgames,GrumpyGameDev,F#,false,false,false,0,false,false,false,false +bridgesense/lampready,bridgesense,,false,false,false,0,false,false,false,false +mwillema/common,mwillema,Java,true,false,true,3,true,true,true,false +elsacosta/site-dieta-easyslim,elsacosta,,false,false,false,0,false,false,false,false +mdrights/tails,mdrights,Ruby,false,false,false,0,false,false,false,false +erb/EDAN95-applied-machine-learning,erb,JupyterNotebook,true,false,false,1,false,true,false,false +MoonLightElf/multi-v2ray,MoonLightElf,Python,false,true,false,0,false,false,false,false +phrdxm/o2o,phrdxm,Java,true,false,true,3,false,false,true,false +ciraig/lca_standard_graphs,ciraig,Python,false,false,false,0,false,false,false,false +kofteistkofte/coresite,kofteistkofte,Python,false,false,false,0,false,false,false,false +swizex/pytcl---teddys-crypto-library,swizex,Python,false,false,false,0,false,false,false,false +vrcca-examples/java/spring/licensing-service,vrcca-examples,Java,false,false,true,0,false,false,false,false +vervot/lvr,vervot,Python,false,false,false,0,false,false,false,false +vrcca-examples/java/spring/configuration-server,vrcca-examples,Java,true,false,true,3,true,true,false,false +dbkblk/rand_launcher,dbkblk,C++,true,false,false,1,false,true,false,false +plant/plant,plant,JupyterNotebook,true,false,false,3,false,true,false,false +vrcca-examples/java/spring/eureka-server,vrcca-examples,Java,false,false,true,0,false,false,false,false +simonmshi/aws-sso-cli,simonmshi,Python,false,false,false,0,false,false,false,false +sat-metalab/blender-addon-openpose,sat-metalab,Python,false,false,false,0,false,false,false,false +vrcca-examples/java/spring/organization-service,vrcca-examples,Java,false,false,true,0,false,false,false,false +jkampherbeek/enigma,jkampherbeek,Pascal,false,false,false,0,false,false,false,false +nd-cse-30341-fa18/cse-30341-fa18-project05,nd-cse-30341-fa18,C,false,false,false,0,false,false,false,false +sirijo/vueblog,sirijo,Vue,false,false,false,0,false,false,false,false +master1-am-imie-2020/nodejs-api,master1-am-imie-2020,HTML,false,false,false,0,false,false,false,false +review-group/my-gitlab,review-group,,false,false,false,0,false,false,false,false +bedhilzz/uts-tktpl,bedhilzz,Java,false,false,false,0,false,false,false,false +newebtime/pyrocms/localization-extension,newebtime,PHP,false,false,false,0,false,false,false,false +2018f-comp2012h-h13/bftoolkit,2018f-comp2012h-h13,C++,false,false,false,0,false,false,false,false +lkapse63/spark-java-demo,lkapse63,Java,false,false,true,0,false,false,false,false +agityas/jasa-design,agityas,,false,false,false,0,false,false,false,false +silvercorp/cursophp,silvercorp,PHP,false,false,false,0,false,false,false,false +nobodyinperson/ci-templates,nobodyinperson,,false,false,false,0,false,false,false,false +Tymeade/driver,Tymeade,,false,false,false,0,false,false,false,false +MrCloudCraft/php_obfuscator,MrCloudCraft,PHP,false,false,false,0,false,false,false,false +bk_class/my_saas,bk_class,CSS,false,false,false,0,false,false,false,false +pedrolab/retroshare-relay-guide,pedrolab,QML,false,false,false,0,false,false,false,false +yairyint/laravel-vue-spa,yairyint,PHP,false,false,false,0,false,false,false,false +MatthisProjects/herobot-csharp,MatthisProjects,C#,false,false,false,0,false,false,false,false +ratio-case/elephant-vscode,ratio-case,,false,false,false,0,false,false,false,false +jic/librebot,jic,Java,false,false,false,0,false,false,false,false +vlaurent/nixpkgs,vlaurent,Nix,false,false,false,0,false,false,false,false +goxr3plus/zt,goxr3plus,,false,false,false,0,false,false,false,false +tinybeanskids-public/swift-style-guide,tinybeanskids-public,,false,false,false,0,false,false,false,false +splattael/journal,splattael,,false,false,false,0,false,false,false,false +toddhudgens/my-financials,toddhudgens,PHP,false,false,false,0,false,false,false,false +guoyunhe/fetch-instagram-photos,guoyunhe,JavaScript,false,false,false,0,false,false,false,false +cascio/competition,cascio,,false,false,false,0,false,false,false,false +deodoro/chainopoly,deodoro,TypeScript,false,false,false,0,false,false,false,false +ottisoftware/prydctr,ottisoftware,Python,false,false,false,0,false,false,false,false +Serdjuk/sity,Serdjuk,,false,false,false,0,false,false,false,false +nickstone/bluechef,nickstone,Shell,false,false,false,0,false,false,false,false +singoro/fizzbuzzpeli,singoro,Java,false,false,false,0,false,false,false,false +hendisantika/nodejs-express-mongodb-crud,hendisantika,JavaScript,false,false,false,0,false,false,false,false +rendyyofanakusuma/simpelas,rendyyofanakusuma,JavaScript,false,false,false,0,false,false,false,false +WillymarJ/laravel-api,WillymarJ,PHP,false,false,false,0,false,false,false,false +alex.arendsen/airtable-fetch-cli,alex.arendsen,JavaScript,false,false,false,0,false,false,false,false +nddunga3/bk-thesistemplate,nddunga3,TeX,false,false,false,0,false,false,false,false +jmuecho/test,jmuecho,PHP,false,false,false,0,false,false,false,false +404busters/inventory-management/frontend,404busters,Vue,true,false,false,2,false,true,false,false +cryocaustik/charter-quote-builder,cryocaustik,CSS,false,false,false,0,false,false,false,false +stexkcpxelece/zcwcdpqmzemdx,stexkcpxelece,HTML,true,false,false,1,false,false,true,false +ksichien/linux-scripts,ksichien,Python,false,false,false,0,false,false,false,false +ac0rn/gtuner,ac0rn,Java,false,false,false,0,false,false,false,false +Trilarion/java_sandbox,Trilarion,,false,false,false,0,false,false,false,false +0xBACE/plebian-slack,0xBACE,Python,false,false,false,0,false,false,false,false +Piero3/tovsolver,Piero3,Python,false,false,false,0,false,false,false,false +luis.illera/medical-house,luis.illera,Java,false,false,false,0,false,false,false,false +tsanak/drag-n-drop,tsanak,JavaScript,false,false,false,0,false,false,false,false +herooftime/custom-dnd-tracker,herooftime,C++,false,false,false,0,false,false,false,false +cinaglia/auto-loan-calculator,cinaglia,JavaScript,false,false,false,0,false,false,false,false +daizheng/payment-gateway,daizheng,HTML,false,false,false,0,false,false,false,false +zauster/ormisc,zauster,R,true,false,false,1,false,true,false,false +pd/_dotfiles,pd,EmacsLisp,false,false,false,0,false,false,false,false +kloppertje/balancingrobot,kloppertje,C++,false,false,false,0,false,false,false,false +propagation_labs/scope-framework,propagation_labs,Swift,false,false,false,0,false,false,false,false +statscloud.io/statscloud.io-golang-example,statscloud.io,,false,false,false,0,false,false,false,false +ksheerasagar17/search-ux-4-selenium-tests-chrome-headless,ksheerasagar17,C#,true,false,false,1,false,true,false,false +KatHamer/katelynos,KatHamer,C,false,false,false,0,false,false,false,false +shagu/makeroot,shagu,Shell,false,false,false,0,false,false,false,false +cdobrien/count-a-roo,cdobrien,Python,false,false,false,0,false,false,false,false +asacolips-projects/foundry-mods/foundryvtt-mods,asacolips-projects,JavaScript,false,false,false,0,false,false,false,false +jumobe/jlogpp,jumobe,C++,false,false,false,0,false,false,false,false +trotter.poulpe/kdraw,trotter.poulpe,Java,false,false,true,0,false,false,false,false +homecontrolsystem/temperatureservice,homecontrolsystem,Go,true,false,false,3,false,true,false,false +bauripalash/cerium-hugo,bauripalash,HTML,true,false,false,1,false,true,false,false +lislis/insomniwitch,lislis,GDScript,false,false,false,0,false,false,false,false +bauripalash/cerium-theme,bauripalash,HTML,false,false,false,0,false,false,false,false +andyfu84/poly_unity3d,andyfu84,C#,false,false,false,0,false,false,false,false +deniskamazur/muchi,deniskamazur,Go,false,false,false,0,false,false,false,false +esr/cgoparse,esr,Yacc,false,false,false,0,false,false,false,false +iv.gavryushin/phptricks,iv.gavryushin,PHP,false,false,false,0,false,false,false,false +coppercoder/logikos,coppercoder,Java,false,false,false,0,false,false,false,false +GitBones/psgitbones,GitBones,PowerShell,false,false,false,0,false,false,false,false +darshanc99/Fantasy-League,darshanc99,Java,false,false,false,0,false,false,false,false +JuampaHernandez/flotavehicular-jsf,JuampaHernandez,JavaScript,false,false,false,0,false,false,false,false +LazzyTeam/mysims,LazzyTeam,Python,false,true,false,0,false,false,false,false +sophiology/angeology,sophiology,Dart,false,false,false,0,false,false,false,false +MRAAGH/aagrinder,MRAAGH,JavaScript,false,false,false,0,false,false,false,false +daniluca/igreja,daniluca,,false,false,false,0,false,false,false,false +spatter/spatter,spatter,Kotlin,true,false,false,2,false,false,false,true +ryo33/cizen_combine_cli_tools_example,ryo33,Elixir,false,false,false,0,false,false,false,false +gdroid/gdroiddata,gdroid,Shell,true,false,false,1,false,false,false,false +EyahDev/fournieralice.com,EyahDev,PHP,false,false,false,0,false,false,false,false +milosmilic/gs-spring-boot-docker,milosmilic,Java,false,false,false,0,false,false,false,false +evenmore/catdogtion,evenmore,Java,false,false,false,0,false,false,false,false +Marik2994/johnson-,Marik2994,C,false,false,false,0,false,false,false,false +AyaCross/komodev-air-do,AyaCross,Ruby,true,false,false,1,true,false,false,false +Christian-h-fuller/Estimating-NPComplete,Christian-h-fuller,Java,false,false,false,0,false,false,false,false +evagtgd-gamagora/game-jams/Reap-In-Peace,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +Citron/diplomka,Citron,Python,false,false,false,0,false,false,false,false +lamerschool/start,lamerschool,,false,false,false,0,false,false,false,false +agostini.tech/ATPicturesque,agostini.tech,Swift,false,false,false,0,false,false,false,false +heboli/404-not-found-page-for-infojr,heboli,CSS,false,false,false,0,false,false,false,false +purpleteam-labs/purpleteam-s2-containers,purpleteam-labs,,false,false,false,0,false,false,false,false +anatal/JP8-4-ALL,anatal,Shell,false,false,false,0,false,false,false,false +devluke/hypnosdb,devluke,JavaScript,false,false,false,0,false,false,false,false +EarthToAlex/making-sure-waste-is-not-misplaced,EarthToAlex,,false,false,false,0,false,false,false,false +nuswee43/projectdev,nuswee43,CSS,false,false,false,0,false,false,false,false +shivgupt/daoexplorer,shivgupt,JavaScript,false,false,false,0,false,false,false,false +radup/1812-trobada-01,radup,,false,false,false,0,false,false,false,false +gerrit.leder/hellotestkt,gerrit.leder,Kotlin,false,false,true,0,false,false,false,false +wsd-l-2018z/sewagediscount,wsd-l-2018z,Java,true,false,true,2,true,true,false,false +gioxa/fake_arch,gioxa,Shell,true,false,false,3,true,false,true,false +hamed.masafi/qtpurchasing,hamed.masafi,C++,false,false,false,0,false,false,false,false +mwillema/eventstore,mwillema,Java,true,false,true,3,true,true,true,false +flouk1150/project_jayzero,flouk1150,JavaScript,false,false,false,0,false,false,false,false +sumwars/sumwars,sumwars,C++,false,false,false,0,false,false,false,false +rafael.recalcatti/lensproject,rafael.recalcatti,HTML,false,false,true,0,false,false,false,false +mooss/talent-extraordiner,mooss,Python,false,false,false,0,false,false,false,false +evagtgd-gamagora/simulation-physique/simulation-meca-flu,evagtgd-gamagora,C#,false,false,false,0,false,false,false,false +reaktivo/callbag-interval-immediate,reaktivo,TypeScript,true,false,false,1,false,true,false,false +Ambros/ccxt,Ambros,Python,false,false,false,0,false,false,false,false +X99/swiftnmeaparser,X99,Swift,true,false,false,1,true,false,false,false +aelkoussy/parcel-delivery,aelkoussy,JavaScript,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-niagara-thunderbolt,arthiteca,,false,false,false,0,false,false,false,false +bscubed/abacus,bscubed,Kotlin,false,false,false,0,false,false,false,false +mkjmdski/wordpress,mkjmdski,PHP,false,false,false,0,false,false,false,false +dkob/equip-book,dkob,JavaScript,false,false,false,0,false,false,false,false +gordon-quad/flychorder,gordon-quad,C,false,false,false,0,false,false,false,false +metalx1000/doom-level-by-fbk,metalx1000,,false,false,false,0,false,false,false,false +saiyavongmitthasone/micro-finance-web,saiyavongmitthasone,TypeScript,false,false,false,0,false,false,false,false +bmateo/mongo-backup,bmateo,JavaScript,false,false,false,0,false,false,false,false +kidbright/kbide-simulator,kidbright,JavaScript,false,false,false,0,false,false,false,false +LineageOS/infra/kube,LineageOS,,false,false,false,0,false,false,false,false +knative-examples/knative-ruby-app,knative-examples,Ruby,true,false,false,1,false,true,false,false +Heriniaina10/socle,Heriniaina10,C#,false,false,false,0,false,false,false,false +ReolSt/fucking_bill_gates_project,ReolSt,C++,false,false,false,0,false,false,false,false +YannigSmagghe/generaceon,YannigSmagghe,,false,false,false,0,false,false,false,false +mwliad/crawler-utopia,mwliad,JavaScript,false,false,false,0,false,false,false,false +kottkrig/teckenlingo,kottkrig,CSS,true,false,false,1,true,false,false,false +fqman/test,fqman,JavaScript,false,false,false,0,false,false,false,false +brobobro/promocodes,brobobro,JavaScript,false,false,false,0,false,false,false,false +dev.a7md/ecommerce,dev.a7md,JavaScript,false,false,false,0,false,false,false,false +khudnitsky/web_application,khudnitsky,Java,false,false,true,0,false,false,false,false +sira313/custom-bash-prompt-ps1,sira313,Shell,false,false,false,0,false,false,false,false +XEmpty/ArchInstall,XEmpty,Shell,false,false,false,0,false,false,false,false +q4d/vote-app,q4d,Python,true,true,false,3,true,true,false,true +yv-kanboard-plugin/time-machine,yv-kanboard-plugin,PHP,false,false,false,0,false,false,false,false +Heyyiou/nuit-de-l-info-not-another-name,Heyyiou,HTML,true,false,false,1,false,false,true,false +benmward/ngFileSave,benmward,JavaScript,false,false,false,0,false,false,false,false +ceda_ei/kaomoji-rofi,ceda_ei,Shell,false,false,false,0,false,false,false,false +mkdk/cidemon,mkdk,Python,true,true,false,3,true,false,false,false +KeplersFlaws/firmware_main,KeplersFlaws,C++,false,false,false,0,false,false,false,false +Patricol/android-hybrid-app-testing-backup,Patricol,Java,false,false,false,0,false,false,false,false +augfab/game-of-life,augfab,C,true,false,false,2,true,false,false,false +clemiltonls/vim,clemiltonls,Vimscript,false,false,false,0,false,false,false,false +AluMiniumm/pcl_registration_lum,AluMiniumm,C++,false,false,false,0,false,false,false,false +josegranado/e-tracking,josegranado,TypeScript,false,false,false,0,false,false,false,false +wissmesa/etracking,wissmesa,PHP,false,false,false,0,false,false,false,false +MatteoCampinoti94/faapi-go,MatteoCampinoti94,Go,true,false,false,2,true,true,false,false +JestDotty/discordbot-juth,JestDotty,JavaScript,false,false,false,0,false,false,false,false +poof/swisscheese,poof,,true,false,true,2,true,true,false,false +me.xtal/nativescript-vue-typescript-starter-template,me.xtal,JavaScript,false,false,false,0,false,false,false,false +rahul.a0309/my-serverless-project,rahul.a0309,Java,false,false,true,0,false,false,false,false +VincentTam/bhdemo,VincentTam,JavaScript,true,false,false,1,false,true,false,false +gangisgucci/appointment,gangisgucci,PHP,false,false,false,0,false,false,false,false +msaby/atelier-openrefine-MASA,msaby,HTML,true,false,false,1,false,false,true,false +8vit-research/shadertoytv,8vit-research,Rust,false,false,false,0,false,false,false,false +alantrick/django-adminstats,alantrick,Python,true,false,false,1,false,true,false,false +srrg-software/srrg_hbst_examples,srrg-software,C++,true,false,false,1,true,false,false,false +bim_a/dotfiles,bim_a,Shell,false,false,false,0,false,false,false,false +ex-open-source/counter,ex-open-source,Elixir,false,false,false,0,false,false,false,false +George99/html-tutorial,George99,,false,false,false,0,false,false,false,false +AgusRumayor/curp-cc,AgusRumayor,JupyterNotebook,false,false,false,0,false,false,false,false +CarlosBernal/proyectottb,CarlosBernal,Java,false,false,true,0,false,false,false,false +utility-mini-tool/mini-program,utility-mini-tool,JavaScript,false,false,false,0,false,false,false,false +utility-mini-tool/php-service,utility-mini-tool,JavaScript,false,false,false,0,false,false,false,false +LinXueyuanStdio/algorithms,LinXueyuanStdio,C,false,false,false,0,false,false,false,false +Anayeli12/practica123,Anayeli12,Java,false,false,false,0,false,false,false,false +ddl37.nz/xrandr-displays-active,ddl37.nz,Python,false,false,false,0,false,false,false,false +runhyve/chef-hypervisor,runhyve,Ruby,false,false,false,0,false,false,false,false +e.mont01/vim-settings,e.mont01,Vimscript,false,false,false,0,false,false,false,false +aaratika/cactus,aaratika,Python,true,false,false,1,false,true,false,false +wolcen/pom.sh,wolcen,Shell,false,false,false,0,false,false,false,false +engineerjlpc/updater,engineerjlpc,,false,false,false,0,false,false,false,false +wkaras89/shopping-cart,wkaras89,TypeScript,false,false,false,0,false,false,false,false +yudaadp/diariumbot-community-edition,yudaadp,HTML,false,false,false,0,false,false,false,false +khuyendev/android-architechture,khuyendev,Java,false,false,false,0,false,false,false,false +monopolies/monopolies.net,monopolies,HTML,false,false,false,0,false,false,false,false +burrbull/softposit-rs,burrbull,Rust,false,false,false,0,false,false,false,false +teb3klasa/baza-osob-cpp,teb3klasa,C++,false,false,false,0,false,false,false,false +DoroKpp/webblog_d2m,DoroKpp,HTML,false,false,true,0,false,false,false,false +FaisSya/IF-13,FaisSya,,false,false,false,0,false,false,false,false +rumiko.takahashi.rumiko/camagru,rumiko.takahashi.rumiko,PHP,false,false,false,0,false,false,false,false +gustavoheinz/seedbox,gustavoheinz,,false,false,false,0,false,false,false,false +Kenshiro/bowsette,Kenshiro,,false,false,false,0,false,false,false,false +zauster/tahd,zauster,R,false,false,false,0,false,false,false,false +JeffreyHollister/smartelectricscooters1,JeffreyHollister,,false,false,false,0,false,false,false,false +sparetimecoders/k8s,sparetimecoders,Shell,false,false,false,0,false,false,false,false +nmud/nmud-content,nmud,HTML,false,false,false,0,false,false,false,false +metalwings/goshko-landing-page,metalwings,TypeScript,false,false,false,0,false,false,false,false +latex-template/shared-latex,latex-template,TeX,false,false,false,0,false,false,false,false +thesoy_sauce/http-echo,thesoy_sauce,Go,true,false,false,1,true,false,false,false +adonoghu/graphics,adonoghu,JavaScript,false,false,false,0,false,false,false,false +MaxMuehlbauer/timetracker,MaxMuehlbauer,JavaScript,false,false,false,0,false,false,false,false +corxjs/crxfilmlist---prototype,corxjs,JavaScript,false,false,false,0,false,false,false,false +marianogabriels/excuse_service,marianogabriels,Ruby,false,false,false,0,false,false,false,false +marianogabriels/eyra,marianogabriels,Ruby,false,false,false,0,false,false,false,false +marianogabriels/otp,marianogabriels,Ruby,false,false,false,0,false,false,false,false +marianogabriels/vue-metamask-casino,marianogabriels,Vue,false,false,false,0,false,false,false,false +AMGarkin/SmartHealer,AMGarkin,Lua,false,false,false,0,false,false,false,false +ronron22/ngbs,ronron22,Shell,true,false,false,1,false,false,false,false +liudf0716/apfree_wifidog,liudf0716,C,false,false,false,0,false,false,false,false +armansansd/jdll-theme2019,armansansd,CSS,false,false,false,0,false,false,false,false +hanrubiao/rulep,hanrubiao,Java,false,false,true,0,false,false,false,false +mirabeau/cloud-framework/aws-vpc,mirabeau,Python,true,false,false,1,false,true,false,false +earvinpiamonte/angular-material-template,earvinpiamonte,TypeScript,false,false,false,0,false,false,false,false +dagrende/rpn3d,dagrende,JavaScript,true,false,false,1,false,false,true,false +lorenzoPatras/geopics,lorenzoPatras,JavaScript,false,false,false,0,false,false,false,false +hk7206210/my-css-project,hk7206210,JavaScript,false,false,false,0,false,false,false,false +diamondburned/gobat-cli,diamondburned,Go,true,false,false,1,true,false,false,false +ubports/app-dev/music-app,ubports,QML,true,false,false,1,false,true,false,false +oliver.nakoinz/shkrdata,oliver.nakoinz,R,false,false,false,0,false,false,false,false +Error1000/spe,Error1000,C++,false,false,false,0,false,false,false,false +nph/vimrc,nph,Vimscript,false,false,false,0,false,false,false,false +gimerstedt/hotkey-overlay-aurelia,gimerstedt,TypeScript,true,false,false,1,false,false,true,false +joaotavora/blockbender,joaotavora,CommonLisp,false,false,false,0,false,false,false,false +RJain12/rishab-jain,RJain12,HTML,true,false,false,1,false,true,false,false +tereshko/labyrinth,tereshko,C++,true,false,false,1,false,true,false,false +rancher1/rancher-catalog,rancher1,Smarty,false,false,false,0,false,false,false,false +oscar-civic/kj,oscar-civic,JavaScript,false,false,false,0,false,false,false,false +cubocore/about,cubocore,C++,false,false,false,0,false,false,false,false +andybalaam/cross-the-road,andybalaam,JavaScript,true,false,false,1,false,false,true,false +tebapp/struktury-cpp,tebapp,C++,false,false,false,0,false,false,false,false +egroj_man/mibancoeverispractica,egroj_man,Kotlin,false,false,false,0,false,false,false,false +spdeepak92/clean-code-php,spdeepak92,PHP,false,false,false,0,false,false,false,false +omissis/eventstorming-go,omissis,Go,false,false,false,0,false,false,false,false +avs-sites/omgjavascript,avs-sites,,false,false,false,0,false,false,false,false +markus-wa/demoinfocs-wasm,markus-wa,JavaScript,true,false,false,1,true,false,false,false +archgirl/data-viz-airtable,archgirl,JavaScript,false,false,false,0,false,false,false,false +dns2utf8/live_timetable_server,dns2utf8,JavaScript,true,false,false,1,false,true,false,false +uwmcomputersociety/ieee-cs-website/inventory-api,uwmcomputersociety,Python,false,false,false,0,false,false,false,false +Nayuki/Reference-Huffman-coding,Nayuki,Java,false,false,false,0,false,false,false,false +Nayuki/Reference-arithmetic-coding,Nayuki,Java,false,false,false,0,false,false,false,false +bioinfoRennes/tutorialmarkup,bioinfoRennes,TeX,false,false,false,0,false,false,false,false +taylorjones/watso,taylorjones,CSS,false,false,false,0,false,false,false,false +veenj/cinit,veenj,Rust,true,false,false,2,false,false,false,false +diamondburned/transmission-web,diamondburned,Go,false,false,false,0,false,false,false,false +bauripalash/lhqs,bauripalash,HTML,true,false,false,1,false,false,true,false +ddl37.nz/rofi-firefox-tabs,ddl37.nz,Rust,false,false,false,0,false,false,false,false +elviragruiz/playing-with-arduino,elviragruiz,C++,false,false,false,0,false,false,false,false +mtransitapps/mtransit-for-android-gradle,mtransitapps,Shell,false,false,false,0,false,false,false,false +fredrik.svard/nightstar,fredrik.svard,Ruby,true,false,false,1,false,true,false,false +vdamuv2/selproject_vinitha,vdamuv2,,false,false,false,0,false,false,false,false +neilspink/aws-lambda-price-grabber,neilspink,HTML,true,false,false,4,true,true,true,false +petervaro/protonvpn,petervaro,D,false,false,false,0,false,false,false,false +sirkadirovteam/simplepm,sirkadirovteam,,false,false,false,0,false,false,false,false +davidjguru/buckaroo,davidjguru,Shell,false,false,false,0,false,false,false,false +corxjs/jsonajax,corxjs,JavaScript,false,false,false,0,false,false,false,false +smatlactvo-fit/iis/backend,smatlactvo-fit,PHP,false,false,false,0,false,false,false,false +walt.moorhouse/myplus,walt.moorhouse,JavaScript,true,false,false,2,true,false,false,true +xe1phix/xe1phixprofile,xe1phix,,false,false,false,0,false,false,false,false +fmakdemir/cs533-assignment-4,fmakdemir,Python,false,true,false,0,false,false,false,false +hodge_star/catamari,hodge_star,C++,false,false,false,0,false,false,false,false +Spence/awesome,Spence,,false,false,false,0,false,false,false,false +Spence/oversky,Spence,PHP,false,false,false,0,false,false,false,false +treyzania/reddl-lang,treyzania,Rust,false,false,false,0,false,false,false,false +nate-2014jatc/minecraftreinstancedclient,nate-2014jatc,HTML,false,false,false,0,false,false,false,false +OleMussmann/marge,OleMussmann,CSS,false,false,false,0,false,false,false,false +sebadebona/density-dependent-dispersal,sebadebona,R,true,false,false,2,true,false,true,false +fpluquet/examplegit,fpluquet,C++,false,false,false,0,false,false,false,false +devzh/optflow,devzh,Python,false,false,false,0,false,false,false,false +goingtoprofandy/be-fast,goingtoprofandy,CSS,false,false,false,0,false,false,false,false +tionis/uni-passau-bot,tionis,Go,true,false,false,2,true,true,false,false +kommunalcrowd/platform,kommunalcrowd,PHP,true,false,false,2,false,true,false,false +skydome/istanbot,skydome,Go,true,false,false,1,false,false,false,true +reloflex/bemutato,reloflex,Java,false,false,false,0,false,false,false,false +mbenhajla/blockchainconf_slides,mbenhajla,,false,false,false,0,false,false,false,false +seeya-js/breakout,seeya-js,JavaScript,false,false,false,0,false,false,false,false +Mesabloo/webdoc,Mesabloo,JavaScript,true,false,false,1,false,false,true,false +pietrom_cp/java-class,pietrom_cp,Java,false,false,false,0,false,false,false,false +ek5000/async-job-iterator,ek5000,JavaScript,false,false,false,0,false,false,false,false +TEnders64/academy-d3js,TEnders64,JavaScript,false,false,false,0,false,false,false,false +gzr/lanqiao-competition-code,gzr,C,false,false,false,0,false,false,false,false +gzr/Face_Recognition_System,gzr,Python,false,false,false,0,false,false,false,false +N1ark/estocks,N1ark,C++,false,false,false,0,false,false,false,false +9898287/nixwriter,9898287,D,false,false,false,0,false,false,false,false +Booteille/privacytools,Booteille,HTML,true,false,false,2,false,true,true,false +milkbar/tap-shipstation,milkbar,Python,false,false,false,0,false,false,false,false +weisslein/zehnder-comfo-rpi-controller,weisslein,JavaScript,false,false,false,0,false,false,false,false +zauster/dockerfiles,zauster,,false,false,false,0,false,false,false,false +omento/omencurves,omento,,false,false,false,0,false,false,false,false +vanderhoofen/diagnostics,vanderhoofen,,true,false,false,1,true,false,false,false +b4zz4/accion-directa,b4zz4,Shell,false,false,false,0,false,false,false,false +muttmua/www-mutt-org,muttmua,HTML,false,false,false,0,false,false,false,false +RodLakes/proyecto,RodLakes,Python,false,true,false,0,false,false,false,false +chirag2018/allmeds-ui,chirag2018,JavaScript,false,false,false,0,false,false,false,false +GraphZero/WarMaker,GraphZero,TypeScript,false,false,false,0,false,false,false,false +monetha/decentralized-reputation-framework,monetha,,false,false,false,0,false,false,false,false +abhilash.pandey06/antd_Boilerplate,abhilash.pandey06,JavaScript,false,false,false,0,false,false,false,false +code_netino/yicii-telegram-bot,code_netino,Python,false,true,false,0,false,false,false,false +dekku/dekku.gitlab.io,dekku,JavaScript,true,false,false,1,false,false,true,false +monetha/payments-layer,monetha,,false,false,false,0,false,false,false,false +abusix-public/abusix-rsync-helper,abusix-public,Shell,false,false,false,0,false,false,false,false +cherry-chain/string-calculator-kata,cherry-chain,,false,false,false,0,false,false,false,false +MarkTremblay/pokedex,MarkTremblay,Java,false,false,false,0,false,false,false,false +ahmad.mustofa/mykamus-public,ahmad.mustofa,Java,false,false,false,0,false,false,false,false +m.sylla/taylorcar,m.sylla,Java,false,false,true,0,false,false,false,false +shvan7/get_next_line,shvan7,C,false,false,false,0,false,false,false,false +zander123p/Hoppou-Bot,zander123p,C#,false,false,false,0,false,false,false,false +vbgl/galinas,vbgl,OCaml,false,false,false,0,false,false,false,false +aminosbh/basic-c-sdl-game,aminosbh,C,false,false,false,0,false,false,false,false +ergashevzarif4/codesys,ergashevzarif4,Kotlin,false,false,false,0,false,false,false,false +abate/easy-tezos,abate,,false,false,false,0,false,false,false,false +Niloc37/traceanalyzer,Niloc37,C++,true,false,false,3,true,true,false,false +aminosbh/falling-brick-game,aminosbh,C,false,false,false,0,false,false,false,false +vanderhoofen/nutanix-abs-storage,vanderhoofen,Smarty,false,false,false,0,false,false,false,false +Szumigalski/haskell-euterpea-music-generate-with-markovs-chains,Szumigalski,JavaScript,false,false,false,0,false,false,false,false +postgres.ai/nancy,postgres.ai,Shell,false,false,false,0,false,false,false,false +kasurbusa/jual-kasur-busa,kasurbusa,,false,false,false,0,false,false,false,false +crazyanz888/didi-delivery,crazyanz888,TypeScript,false,false,false,0,false,false,false,false +hanrubiao/spcloud,hanrubiao,Java,false,false,false,0,false,false,false,false +DoctorChoi/csocket,DoctorChoi,ActionScript,false,false,false,0,false,false,false,false +imda-dsl/intelligent-sensing-toolbox,imda-dsl,Python,false,false,false,0,false,false,false,false +frjufvjn/frju.gitlab.io,frjufvjn,HTML,false,false,false,0,false,false,false,false +db260179/openwrt-luci,db260179,Lua,false,false,false,0,false,false,false,false +vectoridau/awebus,vectoridau,Python,true,false,false,2,false,true,false,true +db260179/openwrt-base,db260179,C,false,false,false,0,false,false,false,false +db260179/openwrt-packages,db260179,Makefile,false,false,false,0,false,false,false,false +up201700418/cosnflix,up201700418,CSS,false,false,false,0,false,false,false,false +developer-utilities/restrabbit,developer-utilities,C#,true,false,false,2,true,false,false,true +bauripalash/lh-atlas,bauripalash,HTML,false,false,false,0,false,false,false,false +lincker/letty,lincker,Java,false,false,false,0,false,false,false,false +mathomp4/PreciseSum,mathomp4,Fortran,true,false,false,2,true,true,false,false +shenjian74/autoproxy.pac,shenjian74,Python,true,false,false,1,true,false,false,false +developer-utilities/signalr-recorder,developer-utilities,C#,true,false,false,2,true,false,false,true +xiayesuifeng/gopanel,xiayesuifeng,Go,false,false,false,0,false,false,false,false +asciiphil/advent-of-code,asciiphil,CommonLisp,false,false,false,0,false,false,false,false +matthewstidham/clean-world-rail,matthewstidham,JupyterNotebook,false,false,false,0,false,false,false,false +izimic/coffeebot,izimic,JavaScript,false,false,false,0,false,false,false,false +oleh.kurachenko/naukma-java-project-1,oleh.kurachenko,Java,false,false,false,0,false,false,false,false +LazzyTeam/roguelike-pygame,LazzyTeam,Python,false,true,false,0,false,false,false,false +CamilaBernales/estacionamientoconcdu,CamilaBernales,Java,false,false,false,0,false,false,false,false +oleh.kurachenko/naukma-java-project-2,oleh.kurachenko,Java,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-niagara-skeletal-mesh-morphing,arthiteca,,false,false,false,0,false,false,false,false +xprofessional/docker,xprofessional,Shell,false,false,false,0,false,false,false,false +stoopfrench/RESTful_Movie_Api_Laravel,stoopfrench,PHP,false,false,false,0,false,false,false,false +mhausenblas/imgn,mhausenblas,Go,true,false,false,1,false,true,false,false +vincentinttsh/ncnu-program-class-python-basic-question,vincentinttsh,Python,false,false,false,0,false,false,false,false +oleh.kurachenko/naukma-java-project-3,oleh.kurachenko,Java,false,false,false,0,false,false,false,false +SheenBaby/GHDatePickerView,SheenBaby,Objective-C,false,false,false,0,false,false,false,false +snesjhon/singlemd,snesjhon,HTML,true,false,false,1,false,true,false,false +hristokgj/automata-builder,hristokgj,Python,true,false,false,1,false,true,false,false +oleh.kurachenko/naukma-java-project-4,oleh.kurachenko,Java,false,false,false,0,false,false,false,false +niclasgrahm/first_web_app,niclasgrahm,HTML,false,false,false,0,false,false,false,false +laraveldevelopment/login-laravel-vue-spa,laraveldevelopment,PHP,false,false,false,0,false,false,false,false +4LT/gif2spr,4LT,C,true,false,false,1,true,false,false,false +misaeljonathann/misaeljonathanprofile,misaeljonathann,Java,false,false,false,0,false,false,false,false +karel-houf/react-face-detection,karel-houf,JavaScript,true,false,false,1,false,false,true,false +sergio08/mini_chall_fsm_2018,sergio08,JupyterNotebook,false,false,false,0,false,false,false,false +vindarel/replic,vindarel,CommonLisp,true,false,false,2,true,true,false,false +Shinobi-Systems/face-api-js,Shinobi-Systems,TypeScript,false,false,false,0,false,false,false,false +physics-toe/top,physics-toe,,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-niagara-skeletal-mesh-communication,arthiteca,,false,false,false,0,false,false,false,false +spoorcc/rocketmock,spoorcc,C,true,false,false,2,true,true,false,false +csui-kominfo-digitalent/calculator-web-api,csui-kominfo-digitalent,Java,true,false,false,2,false,true,true,false +mauriciofrivera/text_scorekeeper,mauriciofrivera,Python,false,true,false,0,false,false,false,false +rickh94/borgstractor,rickh94,Python,false,false,false,0,false,false,false,false +DoctorChoi/cstream,DoctorChoi,ActionScript,false,false,false,0,false,false,false,false +acompastie/jee-projet,acompastie,Java,false,false,false,0,false,false,false,false +LazyBun/2pietro,LazyBun,HTML,true,false,false,1,false,false,true,false +ThanhLongDo1511799/amazons-chess,ThanhLongDo1511799,Python,false,false,false,0,false,false,false,false +mindroot/projects,mindroot,Ruby,true,false,false,2,false,true,true,false +chriseaton/gitlab-ci-example-go,chriseaton,Go,true,false,false,3,true,true,true,false +smc/mlmorph-web,smc,JavaScript,true,false,false,1,false,false,true,false +trillib/transferarbeit-hs18-19,trillib,TeX,false,false,false,0,false,false,false,false +TecHoof/nightmint/nightmint-dev,TecHoof,JavaScript,false,false,false,0,false,false,false,false +journalapp/journal,journalapp,JavaScript,false,false,false,0,false,false,false,false +ant.giret/collections,ant.giret,TypeScript,false,false,false,0,false,false,false,false +alakantti/alakantti,alakantti,Python,false,true,false,0,false,false,false,false +Vishwas-Adiga/LibreHealth,Vishwas-Adiga,CSS,true,false,false,1,false,true,false,false +aklapper/wikimedia-wikis-gadget-editor-stats,aklapper,Shell,false,false,false,0,false,false,false,false +StaflunD/palmpay.ouvaton.org,StaflunD,CSS,false,false,false,0,false,false,false,false +amyasnikov/music_editor,amyasnikov,C++,false,false,false,0,false,false,false,false +themasstercraft/maths-adventure,themasstercraft,,false,false,false,0,false,false,false,false +krrishg/paint,krrishg,Java,false,false,false,0,false,false,false,false +krrishg/war-deployer,krrishg,Shell,false,false,false,0,false,false,false,false +krrishg/weex-login,krrishg,Vue,false,false,false,0,false,false,false,false +krrishg/weather-forecaster,krrishg,Java,false,false,false,0,false,false,false,false +masterspline/build2-linux-packages,masterspline,,true,false,false,1,false,true,false,false +felixlimeow/playground-requery,felixlimeow,Java,false,false,false,0,false,false,false,false +tereshko/work_with_files,tereshko,C++,false,false,false,0,false,false,false,false +sirkadirovteam/simplepm-tasks-archive,sirkadirovteam,,false,false,false,0,false,false,false,false +smc/mlmorph-libreoffice-spellchecker,smc,Python,false,true,false,0,false,false,false,false +mardy/qqc2-desktop,mardy,QML,true,false,false,2,true,true,false,false +Andr_w/setr2_display2,Andr_w,C,false,false,false,0,false,false,false,false +oleh.kurachenko/e-olymp-watcher,oleh.kurachenko,,false,false,false,0,false,false,false,false +code_netino/docbot,code_netino,JupyterNotebook,false,false,false,0,false,false,false,false +mstoessel/namespace-operator,mstoessel,Go,false,false,false,0,false,false,false,false +MED1024/note,MED1024,Java,false,false,false,0,false,false,false,false +world8th/vRt,world8th,C++,false,false,false,0,false,false,false,false +Szumigalski/bsm-secure-app,Szumigalski,JavaScript,false,false,false,0,false,false,false,false +Starrzan/single-page-mockup,Starrzan,CSS,true,false,false,1,false,false,true,false +victormath12/cineapi-docker,victormath12,JavaScript,false,false,false,0,false,false,false,false +NeuroPyrox/stock-market-predictor,NeuroPyrox,Python,false,false,false,0,false,false,false,false +flotorizer/flotorizer,flotorizer,JavaScript,false,false,false,0,false,false,false,false +chrysn/sealingslice,chrysn,Rust,true,false,false,1,false,true,false,false +ychetyrko/nzon-vscode,ychetyrko,,false,false,false,0,false,false,false,false +tuxlinuxien/wschat,tuxlinuxien,Go,false,false,false,0,false,false,false,false +whoisniek/niekkeijzer.com,whoisniek,HTML,true,false,false,2,true,false,true,false +ychetyrko/nevod-vscode,ychetyrko,,false,false,false,0,false,false,false,false +ruivieira/naive-bayes,ruivieira,Rust,true,false,false,1,false,true,false,false +sachintendulkar/aus2018,sachintendulkar,,false,false,false,0,false,false,false,false +stdlib24601/UICWI,stdlib24601,C++,false,false,false,0,false,false,false,false +yejinlei/PRMLT,yejinlei,Matlab,false,false,false,0,false,false,false,false +pbankar/my-pythoncode,pbankar,Python,false,false,false,0,false,false,false,false +lodi-g/spotify-control-chrome-extension-backend,lodi-g,JavaScript,true,false,false,1,false,false,true,false +GasuWolf99/yugioh,GasuWolf99,,false,false,false,0,false,false,false,false +sidereal-works/ChunKit,sidereal-works,,false,false,false,0,false,false,false,false +MaferVc/trabajoautonomo2,MaferVc,Java,false,false,false,0,false,false,false,false +robertdfrench/make-believe,robertdfrench,Makefile,false,false,false,0,false,false,false,false +amrelk/frcds,amrelk,Rust,true,false,false,1,false,true,false,false +newebtime/pyrocms/grayscale-theme,newebtime,CSS,false,false,false,0,false,false,false,false +songsen/gouiff,songsen,HTML,false,false,false,0,false,false,false,false +SuperBLT/debugger/lython,SuperBLT,C++,false,false,false,0,false,false,false,false +ahmed_besbes/deep-learning-nugget,ahmed_besbes,JupyterNotebook,false,false,false,0,false,false,false,false +Gruschwick/tensorflow,Gruschwick,C++,false,false,false,0,false,false,false,false +MYDIH/pirsec,MYDIH,C++,false,false,false,0,false,false,false,false +AnastasiaAndruhovich/portal-theme,AnastasiaAndruhovich,FreeMarker,false,false,false,0,false,false,false,false +Heriniaina10/react-native,Heriniaina10,,false,false,false,0,false,false,false,false +rashjz/dw-app,rashjz,Java,false,false,true,0,false,false,false,false +rashjz/app-pow,rashjz,Java,false,false,true,0,false,false,false,false +bitupalicante/secuma18,bitupalicante,HTML,false,false,false,0,false,false,false,false +miraj09/to-do-app,miraj09,JavaScript,true,false,false,1,false,false,true,false +paulocosme/helpdeskbot,paulocosme,Python,false,false,false,0,false,false,false,false +Zhou_Nicolas/mysterious-dungeon,Zhou_Nicolas,Python,false,false,false,0,false,false,false,false +intr0/DNSCrypt-BLACKLIST,intr0,,true,false,false,1,false,false,true,false +frc1799/CodePowerUp,frc1799,Java,false,false,false,0,false,false,false,false +manu4linux/DevOps,manu4linux,Go,false,false,false,0,false,false,false,false +technologiclee/programinion,technologiclee,Python,false,false,false,0,false,false,false,false +vladyx18/geo-comerciosgt,vladyx18,Java,false,false,false,0,false,false,false,false +romeroyonatan/todopago,romeroyonatan,Python,false,false,false,0,false,false,false,false +dosycorp/demoapp-27112018,dosycorp,JavaScript,false,false,false,0,false,false,false,false +chao80/pizzaui,chao80,CSS,false,false,false,0,false,false,false,false +vladyx18/sistema-de-hospital,vladyx18,C++,false,false,false,0,false,false,false,false +vladyx18/gochat,vladyx18,VisualBasic,false,false,false,0,false,false,false,false +vladyx18/mysql-sqlserver-traductor,vladyx18,C++,false,false,false,0,false,false,false,false +vladyx18/tictactoe,vladyx18,VisualBasic,false,false,false,0,false,false,false,false +nlkhang.it/technicalbook,nlkhang.it,Python,false,false,false,0,false,false,false,false +franksonet/bypy,franksonet,Python,false,true,false,0,false,false,false,false +vladyx18/software-metodos-de-transporte,vladyx18,VisualBasic,false,false,false,0,false,false,false,false +vladyx18/renta-de-vehiculos,vladyx18,C++,false,false,false,0,false,false,false,false +vladyx18/registro-de-maestros,vladyx18,C++,false,false,false,0,false,false,false,false +Voltist/slimly,Voltist,Python,false,false,false,0,false,false,false,false +oquijano/chess_tournament,oquijano,JavaScript,false,false,false,0,false,false,false,false +kemo156/skylink-courier-delivery---front-end,kemo156,HTML,false,false,false,0,false,false,false,false +stream9/aria2-remote-qt5,stream9,C++,false,false,false,0,false,false,false,false +justdimy/google-chrome-theme,justdimy,,false,false,false,0,false,false,false,false +anisah.163040068/tugas2-rekweb-senin07-163040068-anisah,anisah.163040068,HTML,false,false,false,0,false,false,false,false +daksh7011/eagle,daksh7011,PHP,true,false,false,2,false,true,true,false +kinnison/cassava,kinnison,Rust,true,false,false,3,false,true,false,false +ccrpc/plandocument,ccrpc,CSS,false,false,false,0,false,false,false,false +karl_mi/vr_soldering,karl_mi,C#,false,false,false,0,false,false,false,false +Notify.me/me.notify.public,Notify.me,JavaScript,false,false,false,0,false,false,false,false +Wesitos/serial-dumper,Wesitos,Python,false,false,false,0,false,false,false,false +The_Mighty_Glider/rba,The_Mighty_Glider,Python,false,false,false,0,false,false,false,false +clinton.lawrence2/hockey-alert,clinton.lawrence2,Python,true,true,false,2,false,true,true,false +gmbarrera/selenium-example,gmbarrera,Python,false,false,false,0,false,false,false,false +GauravJain98/heroku-django-template,GauravJain98,Python,false,false,false,0,false,false,false,false +juanjosegzl/quiz-back,juanjosegzl,Python,false,false,false,0,false,false,false,false +evberrypi/myprofilepage,evberrypi,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg2_integration_testing,srrg-software,Shell,true,false,false,1,true,false,false,false +Chlo/projet-symfony-plantes,Chlo,PHP,false,false,false,0,false,false,false,false +matymdg/sslscanator,matymdg,Shell,false,false,false,0,false,false,false,false +Aareon/pyngwin,Aareon,Python,false,false,false,0,false,false,false,false +mamunsyuhada/matador-telemetry,mamunsyuhada,C++,false,false,false,0,false,false,false,false +harshniketseta/cricket-scorer-ui,harshniketseta,JavaScript,true,false,false,2,false,true,true,false +hanrubiao/customizeribbon,hanrubiao,Java,false,false,true,0,false,false,false,false +rahul.kmr/gitgithub,rahul.kmr,,false,false,false,0,false,false,false,false +zzl_public/cordova-plugin-maps,zzl_public,Objective-C,false,false,false,0,false,false,false,false +JuniperBot/documentation,JuniperBot,JavaScript,false,false,false,0,false,false,false,false +eroamba/openclassroom,eroamba,TypeScript,false,false,false,0,false,false,false,false +spoorseraj/alarm_manager,spoorseraj,Java,false,false,false,0,false,false,false,false +ecatue/gpu2018_code,ecatue,C++,false,false,false,0,false,false,false,false +stabfem/StabFem,stabfem,Matlab,true,false,false,2,false,true,false,false +abiproject/abisuite,abiproject,Python,true,true,false,2,false,true,false,false +OctoNezd/bot_against_humanity,OctoNezd,Python,false,false,false,0,false,false,false,false +namhokim/radicale-dockerized,namhokim,Shell,false,false,false,0,false,false,false,false +whatsupanna/spacex-api,whatsupanna,Vue,false,false,false,0,false,false,false,false +lhouge/Portfolio,lhouge,HTML,false,false,false,0,false,false,false,false +duvaneck/echec-,duvaneck,C#,false,false,false,0,false,false,false,false +Redrield/ds-rs,Redrield,Rust,false,false,false,0,false,false,false,false +tegila/j2m,tegila,JavaScript,true,false,false,1,false,true,false,false +mourad-chaibi/poc-ci-mch,mourad-chaibi,Java,false,false,true,0,false,false,false,false +sesela/multi-spring-startup-mybatis,sesela,Java,true,false,false,2,false,true,false,false +13510270802/my-fistgitlab-project11.29,13510270802,,false,false,false,0,false,false,false,false +wttf212/laravel-praktiskais,wttf212,PHP,false,false,false,0,false,false,false,false +neosun100/ubuntu_init,neosun100,Shell,true,false,false,3,true,true,true,false +cc-ru/ubr,cc-ru,Rust,false,false,false,0,false,false,false,false +jlecomte/gl-webhooks,jlecomte,Python,true,true,false,4,false,true,true,false +uriei/EDPlanetBearing,uriei,Python,false,false,false,0,false,false,false,false +0x1/malware,0x1,,false,false,false,0,false,false,false,false +debuglevel/bookmetadata-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true +ruivieira/random-forests,ruivieira,Rust,true,false,false,1,false,true,false,false +karel-houf/react-face-detection-api,karel-houf,JavaScript,false,false,false,0,false,false,false,false +remcohaszing/eslint-formatter-gitlab,remcohaszing,JavaScript,true,false,false,2,false,true,false,true +nipunadodan/orange,nipunadodan,CSS,false,false,false,0,false,false,false,false +omento/recipes,omento,,false,false,false,0,false,false,false,false +hathi-social/hathi-protocol,hathi-social,,true,false,false,2,true,true,false,false +nessycoders/nessy,nessycoders,Rust,false,false,false,0,false,false,false,false +kirvam/budget_tracker,kirvam,Perl,false,false,false,0,false,false,false,false +oleh.kurachenko/cpp-architecture-test,oleh.kurachenko,C++,true,false,false,2,true,true,false,false +Nikola-Tesla-Mandici/conectar,Nikola-Tesla-Mandici,Shell,false,false,false,0,false,false,false,false +renzoprobr/aula-flask,renzoprobr,Python,false,false,false,0,false,false,false,false +stevann/matf-takmicenje,stevann,C,false,false,false,0,false,false,false,false +devluke/eventsplus,devluke,Kotlin,false,false,false,0,false,false,false,false +sanvishal/hackbenchers-2,sanvishal,CSS,false,false,false,0,false,false,false,false +rodrigotoledo/simple_task,rodrigotoledo,Ruby,false,false,false,0,false,false,false,false +lenchan139/google-plus-image-downloader,lenchan139,TypeScript,false,false,false,0,false,false,false,false +sebidude/public-page,sebidude,Makefile,true,false,false,2,true,false,false,true +flownative/localbeach/cli,flownative,PHP,false,false,false,0,false,false,false,false +gimerstedt/aurelia-fa5-elements,gimerstedt,TypeScript,false,false,false,0,false,false,false,false +schlauch/zenodo-api-test,schlauch,Python,false,true,false,0,false,false,false,false +Nordgedanken/simplematrixredesignimages,Nordgedanken,,false,false,false,0,false,false,false,false +parleweb/Parledata,parleweb,Python,false,false,false,0,false,false,false,false +edricus/minetest-garage,edricus,RPC,true,false,false,1,false,false,true,false +ccrpc/lrtp-playground,ccrpc,Batchfile,false,false,false,0,false,false,false,false +jswhetstone/cposc-2018,jswhetstone,HTML,true,false,false,1,false,false,true,false +ccrpc/ccrpc-charts,ccrpc,TypeScript,true,false,false,1,false,true,false,false +erwan44115/locklear-live-checker,erwan44115,JavaScript,false,false,false,0,false,false,false,false +juan.massana5/private-ethereum-blockchain-test,juan.massana5,,false,false,false,0,false,false,false,false +mindroot/quests,mindroot,HTML,true,false,false,2,false,true,true,false +rafa.apps/kowaslki,rafa.apps,JupyterNotebook,false,false,false,0,false,false,false,false +evils/frankensense,evils,C++,false,false,false,0,false,false,false,false +Nohus/adventofcode2018,Nohus,Kotlin,false,false,false,0,false,false,false,false +kodumen/aoc2018,kodumen,Python,false,false,false,0,false,false,false,false +nicholasyager/advent-of-code-2018,nicholasyager,Rust,false,false,false,0,false,false,false,false +agunkeka900/literasi,agunkeka900,JavaScript,true,false,false,1,false,false,true,false +LionessAlana/vivid,LionessAlana,Shell,false,false,false,0,false,false,false,false +JeSuisUnDesDeux/jesuisundesdeux-website,JeSuisUnDesDeux,JavaScript,true,false,false,1,false,true,false,false +PHuther/adventofcode,PHuther,Java,false,false,false,0,false,false,false,false +reuse/reuse,reuse,Python,true,true,false,2,false,true,true,false +aurorafossorg/apps/be-happy,aurorafossorg,Dart,true,false,false,13,true,true,false,true +gitlabcyclist/secondmemory,gitlabcyclist,Java,false,false,false,0,false,false,false,false +arasari/backend-framework,arasari,CSS,true,false,false,1,false,true,false,false +arasari/frontend-framework,arasari,CSS,true,false,false,1,false,true,false,false +jimuel.palaca/adventofcode,jimuel.palaca,PHP,false,false,false,0,false,false,false,false +mtyacorn/t4t,mtyacorn,Python,false,false,false,0,false,false,false,false +karel-houf/lyrics-finder,karel-houf,JavaScript,false,false,false,0,false,false,false,false +danielkraic/version-id,danielkraic,HTML,true,false,false,1,false,false,true,false +Yutsa/artifactmarketapi,Yutsa,Kotlin,false,false,true,0,false,false,false,false +adamson.benjamin/BoomHS,adamson.benjamin,C++,false,false,false,0,false,false,false,false +Nemtecl/angular-electron,Nemtecl,TypeScript,false,false,false,0,false,false,false,false +bms-contrib/hawkmoth,bms-contrib,Python,false,false,false,0,false,false,false,false +KevinParnell/All-time-You-count,KevinParnell,JavaScript,false,false,false,0,false,false,false,false +commonsguy/cw-jetpack-java,commonsguy,Java,false,false,false,0,false,false,false,false +commonsguy/cw-jetpack-kotlin,commonsguy,Kotlin,false,false,false,0,false,false,false,false +kisik21/pyindieweb,kisik21,Python,false,true,false,0,false,false,false,false +database-group-5/database-group-5,database-group-5,Python,false,false,false,0,false,false,false,false +BowenYin/harkersg,BowenYin,HTML,false,false,false,0,false,false,false,false +brunoamancio/vulcan,brunoamancio,C#,true,false,false,2,true,true,false,false +galaxia-project/blockchain/xi,galaxia-project,C,false,false,false,0,false,false,false,false +Wiland24/docker-gitlab,Wiland24,,false,false,false,0,false,false,false,false +tvo/csharpimmutabilitytest,tvo,C#,true,false,false,3,true,true,false,true +finnoleary/lolsp,finnoleary,Lua,false,false,false,0,false,false,false,false +KachalovAlexey/taf_skeleton_selenoid-master,KachalovAlexey,Java,false,false,true,0,false,false,false,false +delian66/adventofcode2018,delian66,PHP,false,false,false,0,false,false,false,false +cold-lemon/pack-module,cold-lemon,JavaScript,false,false,false,0,false,false,false,false +phcyso/advent_of_code_2018,phcyso,Go,false,false,false,0,false,false,false,false +jackklika/aoc2018,jackklika,Python,false,false,false,0,false,false,false,false +Yakult1/aoc-2018,Yakult1,Python,false,false,false,0,false,false,false,false +BitrosThomas/Team7V1.1,BitrosThomas,Java,false,false,false,0,false,false,false,false +tblah/rustylisp,tblah,Rust,true,false,false,1,true,false,false,false +MaxDolet/projet-api,MaxDolet,Java,false,false,false,0,false,false,false,false +loicsaul/blogular,loicsaul,TypeScript,false,false,false,0,false,false,false,false +geekbass/ansible-do407,geekbass,,false,false,false,0,false,false,false,false +ThomasVestergaardFredsted/MemExchange-dotnetcore,ThomasVestergaardFredsted,C#,true,false,false,1,false,false,false,false +trtin/trt-tf-elk-logging,trtin,HCL,false,false,false,0,false,false,false,false +Kercus/tilix-quake,Kercus,JavaScript,false,false,false,0,false,false,false,false +kazlik/rajce-digger,kazlik,PHP,false,false,false,0,false,false,false,false +dwysocki/pop-models-examples,dwysocki,Python,false,false,false,0,false,false,false,false +bouitamine/resgen,bouitamine,Java,false,false,false,0,false,false,false,false +promt/semanfor-an,promt,Kotlin,false,false,false,0,false,false,false,false +Ajfalcon/arduino-uno-with-esp8266-01-over-internet,Ajfalcon,C++,false,false,false,0,false,false,false,false +vdovychenko99/dsp_lab5_using_cv2,vdovychenko99,Python,false,false,false,0,false,false,false,false +JavierSegoviaCordoba/riotapidatadragonkotlin,JavierSegoviaCordoba,Kotlin,false,false,false,0,false,false,false,false +Ruben_1806/notas-finales,Ruben_1806,Python,false,false,false,0,false,false,false,false +Kurohari/keypot,Kurohari,Java,false,false,false,0,false,false,false,false +eristic/kashimashi,eristic,Elixir,true,false,false,1,false,true,false,false +eristic/neikos,eristic,Ruby,false,false,false,0,false,false,false,false +krathalan/bash-backup-script,krathalan,Shell,false,false,false,0,false,false,false,false +glitchylabs/Sparks,glitchylabs,TypeScript,false,false,false,0,false,false,false,false +gilgil/android-build,gilgil,C++,false,false,false,0,false,false,false,false +Zebatuq/zfh,Zebatuq,C#,true,false,false,1,false,true,false,false +livnDevelopers/rahisi,livnDevelopers,JavaScript,false,false,false,0,false,false,false,false +bgh3470/bitbong-electronvue,bgh3470,,false,false,false,0,false,false,false,false +HowellYang/x-boot,HowellYang,Java,false,false,true,0,false,false,false,false +datalocale/dataviz-migration-gironde,datalocale,,true,false,false,2,true,false,true,false +fadecut/fadecut,fadecut,Shell,false,false,false,0,false,false,false,false +kleak/monkey_tech_day,kleak,Dart,false,false,false,0,false,false,false,false +kelompok1-PPWC/kelompok1_ppwc,kelompok1-PPWC,CSS,true,false,false,2,false,true,true,false +stevestevesteve/slack-emoji,stevestevesteve,,false,false,false,0,false,false,false,false +pmerrill/robot-framework-healthnow,pmerrill,RobotFramework,false,false,false,0,false,false,false,false +KRypt0n/_MathLib,KRypt0n,PHP,false,false,false,0,false,false,false,false +tigrr/circle-progress,tigrr,JavaScript,true,false,false,1,false,false,true,false +laurosn/brasilia.devopsdays.com.br,laurosn,JavaScript,false,false,false,0,false,false,false,false +nmowen/rails-app-replacement-javafx-demo,nmowen,Ruby,false,false,false,0,false,false,false,false +8150133/masterofrecipes,8150133,Java,false,false,false,0,false,false,false,false +ubports/app-dev/gallery-app,ubports,C++,true,false,false,1,false,true,false,false +debuglevel/omnitrackerdocumentation-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true +debuglevel/omnitrackerdatabasebinding,debuglevel,Kotlin,false,false,false,0,false,false,false,false +debuglevel/omnitracker2erd,debuglevel,Kotlin,false,false,false,0,false,false,false,false +david.araujo0/nubank_screen_flutter,david.araujo0,Dart,false,false,false,0,false,false,false,false +TakahashiDandy/sipetor,TakahashiDandy,Java,false,false,false,0,false,false,false,false +meidi1/xddata-rancher-catalog,meidi1,,false,false,false,0,false,false,false,false +meidi1/xidianconfig,meidi1,,false,false,false,0,false,false,false,false +Crumble/pokemon-shiny-calculator,Crumble,JavaScript,true,false,false,1,false,false,true,false +maestre3d/spotify-mean,maestre3d,CSS,false,false,false,0,false,false,false,false +rancher1/wp1-build/wordpress1-template,rancher1,Smarty,true,false,false,1,true,false,false,false +EAL-ITT/18a-itt1,EAL-ITT,,false,false,false,0,false,false,false,false +arty1179/stc_x5_repo,arty1179,Java,false,false,false,0,false,false,false,false +collaborators.us/local.collaborators.us,collaborators.us,Batchfile,false,false,false,0,false,false,false,false +ninkaja/stories-for-games,ninkaja,,false,false,false,0,false,false,false,false +JackBracken/aoc2018,JackBracken,Go,false,false,false,0,false,false,false,false +codingstones1/ndi-front,codingstones1,TypeScript,true,false,false,1,false,true,false,false +jandcmoore/how-to-extract-exif-data-from-a-jpeg-photo-using-java,jandcmoore,Java,false,false,false,0,false,false,false,false +MagicFab/sysPass-XML-Decrypter,MagicFab,PHP,false,false,false,0,false,false,false,false +SebastianDadeby/adventofcode,SebastianDadeby,C++,false,false,false,0,false,false,false,false +Szumigalski/SZILATO2018,Szumigalski,Python,false,false,false,0,false,false,false,false +Szumigalski/GlosBio,Szumigalski,Python,false,false,false,0,false,false,false,false +skreutzer/sos-experimential,skreutzer,CSS,false,false,false,0,false,false,false,false +RonZTP/hw_6_ron,RonZTP,C++,false,false,false,0,false,false,false,false +racm/Ayot,racm,,false,false,false,0,false,false,false,false +kulikovee/niit,kulikovee,HTML,false,false,false,0,false,false,false,false +karel-houf/movie-app,karel-houf,JavaScript,true,false,false,1,false,false,true,false +coinsafedev/bitcoin-lightning-nodejs,coinsafedev,JavaScript,false,false,false,0,false,false,false,false +Rubyhamster/misa-math-help-app,Rubyhamster,C#,false,false,false,0,false,false,false,false +angusvb/encryptor,angusvb,Java,false,false,true,0,false,false,false,false +chareice/docker-postgis,chareice,Shell,false,false,false,0,false,false,false,false +chareice/You-Dont-Know-JS,chareice,JavaScript,false,false,false,0,false,false,false,false +team-space/write-ups,team-space,,false,false,false,0,false,false,false,false +m_h/_real_binary_converter,m_h,Lua,false,false,false,0,false,false,false,false +ITechApII/python,ITechApII,,false,false,false,0,false,false,false,false +aimber/ScreenPlayDocs,aimber,,true,false,false,1,false,true,false,false +webhelpbot/webhelp-bot_wiki,webhelpbot,,false,false,false,0,false,false,false,false +OK2NMZ/test123,OK2NMZ,,false,false,false,0,false,false,false,false +Shadoww/makedir3,Shadoww,Python,false,false,false,0,false,false,false,false +zerok/container-inventory,zerok,Go,true,false,false,1,false,true,false,false +0xDiddi/watch,0xDiddi,Go,false,false,false,0,false,false,false,false +jankubierecki/jalpaca,jankubierecki,,false,false,false,0,false,false,false,false +planchon/pauls-libs,planchon,C++,false,false,false,0,false,false,false,false +GeorgeHoneywood/google-keep-export,GeorgeHoneywood,Python,false,false,false,0,false,false,false,false +amplab/ampherman,amplab,HTML,true,false,false,1,false,false,true,false +clyde-public/code-challenge,clyde-public,JavaScript,false,false,false,0,false,false,false,false +gamer4life1/hello-worldexpress,gamer4life1,,false,false,false,0,false,false,false,false +DLWillson/tyler-sparks-automation-class,DLWillson,HCL,false,false,false,0,false,false,false,false +brendan/hnsuite,brendan,CSS,true,false,false,2,false,false,true,false +stavros/pysignald,stavros,Python,true,false,false,1,false,true,false,false +gb-code/design-verification-projects/uvm-verification-of-single-port-ram,gb-code,SystemVerilog,false,false,false,0,false,false,false,false +blic-frontend/blic-part-frontend,blic-frontend,TypeScript,false,false,false,0,false,false,false,false +HeapUnderflow/PizzaService,HeapUnderflow,Rust,false,false,false,0,false,false,false,false +Mahmoud_Daoud/miketeamdecoument,Mahmoud_Daoud,,false,false,false,0,false,false,false,false +E.Youssef/monblog,E.Youssef,PHP,false,false,false,0,false,false,false,false +uplex/varnish/k8s-ingress,uplex,Go,true,false,false,1,false,true,false,false +greut/exoscale-cloud-controller-manager,greut,Go,false,false,false,0,false,false,false,false +dherrera98/vuedex,dherrera98,Vue,false,false,false,0,false,false,false,false +varaksin.web.group/terrasoft-test-form,varaksin.web.group,PHP,false,false,false,0,false,false,false,false +proot/proot,proot,C,true,false,false,5,false,false,true,false +jfplata48/elsonajero1987,jfplata48,Python,false,false,false,0,false,false,false,false +BuildGrid/buildbox/buildbox-worker,BuildGrid,,true,false,false,3,true,true,false,true +n2i-runtime/sujet-n2i-2018,n2i-runtime,TypeScript,false,false,false,0,false,false,false,false +MrLeaw/premiumbackgrounds,MrLeaw,JavaScript,false,false,false,0,false,false,false,false +Shadu/nuit-de-l-info,Shadu,JavaScript,false,false,false,0,false,false,false,false +hype-me/server,hype-me,Python,false,false,false,0,false,false,false,false +shoppr/shoppr.api,shoppr,Ruby,true,false,false,1,false,true,false,false +UnicornPowered/AWS-Client-Bootstrap,UnicornPowered,Python,true,false,false,3,true,false,false,false +king011/go-socks5,king011,Go,false,false,false,0,false,false,false,false +dashohoxha/101-problema-programimi,dashohoxha,,true,false,false,1,false,true,false,false +zhoulingxiang/dustflight_vns,zhoulingxiang,,false,false,false,0,false,false,false,false +unrznbl/gesture,unrznbl,C,false,false,false,0,false,false,false,false +unrznbl/shelli,unrznbl,C,false,false,false,0,false,false,false,false +fullytoasted/fullytoastedplugin,fullytoasted,Java,false,false,false,0,false,false,false,false +finwo/ws-rc4,finwo,JavaScript,true,false,false,2,false,true,true,false +FunctionalCopenhagenersMeetupGroup/companies-fp,FunctionalCopenhagenersMeetupGroup,,false,false,false,0,false,false,false,false +swedebugia/guile-wikidata,swedebugia,Scheme,false,false,false,0,false,false,false,false +sujanavan/CAPTCHAM,sujanavan,PHP,false,false,false,0,false,false,false,false +sujanavan/DGexpp,sujanavan,Python,false,false,false,0,false,false,false,false +sujanavan/IDIoT,sujanavan,C++,false,false,false,0,false,false,false,false +sujanavan/SECKL,sujanavan,Shell,false,false,false,0,false,false,false,false +sujanavan/rd2xl,sujanavan,PHP,false,false,false,0,false,false,false,false +devopspbs/kerberos-manual,devopspbs,Ruby,true,false,false,1,false,true,false,false +eryo05/alpine,eryo05,PHP,false,false,false,0,false,false,false,false +nxl4/ipgeo,nxl4,Shell,false,false,false,0,false,false,false,false +Vibes81/whopper,Vibes81,Java,false,false,false,0,false,false,false,false +yaute74/custom-notifier,yaute74,QML,false,false,false,0,false,false,false,false +Yd4u2c/dna-cryptography,Yd4u2c,PHP,false,false,false,0,false,false,false,false +XiaHaozheJose/NewDDG,XiaHaozheJose,Swift,false,false,false,0,false,false,false,false +pwnsquad/term,pwnsquad,JavaScript,false,false,false,0,false,false,false,false +kanbak/HoodMeter-prototype-,kanbak,Objective-C,false,false,false,0,false,false,false,false +jspinella/mazda3-retrofit,jspinella,,false,false,false,0,false,false,false,false +letsbuild/lb-commandhelper,letsbuild,MAXScript,false,false,false,0,false,false,false,false +amethyst-engine/amethyst,amethyst-engine,Rust,false,false,false,0,false,false,false,false +huweihuang/linux-notes,huweihuang,Shell,false,false,false,0,false,false,false,false +tebapp/cpp-struktury-operacje,tebapp,C++,false,false,false,0,false,false,false,false +jpdevc/gitlab-project-azure-,jpdevc,,false,false,false,0,false,false,false,false +kevinpiac/cmsjs-front,kevinpiac,JavaScript,true,false,false,4,true,true,true,false +swapproject/readme,swapproject,,false,false,false,0,false,false,false,false +TyFoon/pycrypt,TyFoon,HTML,false,false,false,0,false,false,false,false +godfat/battle-cats-rolls,godfat,Ruby,false,false,false,0,false,false,false,false +Ansherers/chances,Ansherers,,false,false,false,0,false,false,false,false +projectsitu/situ,projectsitu,Shell,false,false,false,0,false,false,false,false +ae-dir/client-examples,ae-dir,Shell,false,false,false,0,false,false,false,false +ae-dir/python-aedir,ae-dir,Python,true,true,false,1,false,true,false,false +krisi0903/assignment7,krisi0903,Java,false,false,false,0,false,false,false,false +software-engg/cportal,software-engg,HTML,false,false,false,0,false,false,false,false +thykka/qmk_firmware,thykka,C,false,false,false,0,false,false,false,false +jazzs/javaemail,jazzs,,false,false,false,0,false,false,false,false +codesupport/discord/wiki,codesupport,,false,false,false,0,false,false,false,false +letsbuild/lb-commit-listener,letsbuild,JavaScript,false,false,false,0,false,false,false,false +hadrosoft/hadrosoft-framework,hadrosoft,C++,false,false,false,0,false,false,false,false +postmarketOS/mrhlpr,postmarketOS,Python,true,false,false,1,false,true,false,false +cyberfighter-org/environment-readme.md,cyberfighter-org,,true,false,false,13,true,true,false,true +whiplash141/Revived-Railgun-Mod,whiplash141,C#,false,false,false,0,false,false,false,false +Amyzhao/classespdf,Amyzhao,,false,false,false,0,false,false,false,false +xaander1/scorpio-wifi-jammer,xaander1,Shell,false,false,false,0,false,false,false,false +mirror1/linux,mirror1,C,false,false,false,0,false,false,false,false +ninjahoahong/unstoppable,ninjahoahong,Kotlin,true,false,false,2,true,false,false,false +strictly/core,strictly,PHP,false,false,false,0,false,false,false,false +ninkaja/pixel-graphics,ninkaja,,false,false,false,0,false,false,false,false +letsbuild/lb-image-proxy,letsbuild,JavaScript,false,false,false,0,false,false,false,false +jiameng123/web-blog,jiameng123,,false,false,false,0,false,false,false,false +nxl4/igg,nxl4,Python,false,false,false,0,false,false,false,false +xetera/docsbot,xetera,Kotlin,false,false,true,0,false,false,false,false +Mantik/discord-temp-chat,Mantik,Python,false,false,false,0,false,false,false,false +NielsDingsbums/the-boston-massacre,NielsDingsbums,,false,false,false,0,false,false,false,false +arnaucube/decentralized-blogging-platform,arnaucube,HTML,false,false,false,0,false,false,false,false +DrWursterich/ResourceManager,DrWursterich,Java,true,false,false,4,true,true,true,false +arthiteca/unreal-engine-4-niagara-tutorial-part-1-mandelbulb,arthiteca,,false,false,false,0,false,false,false,false +ayipsson/proyecto-soporte-tecnico,ayipsson,HTML,false,false,false,0,false,false,false,false +arthiteca/unreal-engine-4-shader-tutorial-part2-mandelbulb,arthiteca,,false,false,false,0,false,false,false,false +venetay/adbhoneypot,venetay,Python,false,true,false,0,false,false,false,false +Gunteak/chicken-attack,Gunteak,C,false,false,false,0,false,false,false,false +dark0dave/template,dark0dave,,true,false,false,3,true,true,false,false +marliseu/worldmedia,marliseu,Vue,false,false,false,0,false,false,false,false +xistenceimaginations/comic-book-reader-proto,xistenceimaginations,CSS,false,false,false,0,false,false,false,false +aurorafossorg/apps/searsona,aurorafossorg,D,false,false,false,0,false,false,false,false +anonymous.prodject/ZeroNet,anonymous.prodject,Python,false,true,false,0,false,false,false,false +star-project/forum,star-project,PHP,false,false,false,0,false,false,false,false +debuglevel/activedirectory-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true +KageKirin/git-lab.py,KageKirin,Python,false,true,false,0,false,false,false,false +kube-laravel/hellolara,kube-laravel,PHP,true,false,false,2,true,false,false,false +SardorL/uzbektourizm,SardorL,PHP,false,false,false,0,false,false,false,false +neilmarlon/neils-new-project,neilmarlon,C,false,false,false,0,false,false,false,false +elad.noor/component-contribution,elad.noor,Python,false,false,false,0,false,false,false,false +edanniehues/dropit,edanniehues,Kotlin,false,false,true,0,false,false,false,false +coala/community,coala,Python,true,true,false,3,true,true,true,false +silicone-valley/orm-batches,silicone-valley,Java,false,false,true,0,false,false,false,false +paulbeaudon/personal_profile,paulbeaudon,HTML,false,false,false,0,false,false,false,false +lavachat/magma,lavachat,Python,true,false,false,1,false,true,false,false +nixtux-packaging/chromium-browser,nixtux-packaging,JavaScript,false,false,false,0,false,false,false,false +doel27/sikarma,doel27,,false,false,false,0,false,false,false,false +thomas.gros/2018-12-m2i-bordeaux-poec-java,thomas.gros,Java,false,false,false,0,false,false,false,false +monster-space-network/typemon/test,monster-space-network,TypeScript,false,false,false,0,false,false,false,false +Fourkiotis/exercises-for-programmers,Fourkiotis,Rust,false,false,false,0,false,false,false,false +Bucharche/travel_voyage,Bucharche,PHP,false,false,false,0,false,false,false,false +timzallmann/frontend_utils,timzallmann,JavaScript,false,false,false,0,false,false,false,false +curation/browsers/chromium/chromium,curation,,false,false,false,0,false,false,false,false +grimlokason/osmc-steamlink,grimlokason,Shell,false,false,false,0,false,false,false,false +thiras/cookiecutter-docker-django,thiras,Python,false,false,false,0,false,false,false,false +reclaimid/demo,reclaimid,Ruby,true,false,false,1,true,false,false,false +reclaimid/ui,reclaimid,TypeScript,true,false,false,1,true,false,false,false +krrishg/saangai,krrishg,Java,false,false,false,0,false,false,false,false +victoire-cms/victoire,victoire-cms,JavaScript,false,false,false,0,false,false,false,false +rushsteve1/tornado,rushsteve1,Rust,true,false,false,3,false,false,false,true +bahorn/awesome-ci,bahorn,JavaScript,true,false,false,2,false,true,false,false +TimKolb/lueckentext,TimKolb,JavaScript,false,false,false,0,false,false,false,false +jellyfin/jellyfin,jellyfin,C#,false,false,false,0,false,false,false,false +jinyexin/core,jinyexin,TypeScript,true,false,false,1,false,true,false,false +jinyexin/corecli,jinyexin,TypeScript,true,false,false,1,false,true,false,false +abba5aghaei/Pong,abba5aghaei,Java,false,false,false,0,false,false,false,false +abba5aghaei/javawifiapi,abba5aghaei,Java,false,false,false,0,false,false,false,false +abba5aghaei/Stream,abba5aghaei,Java,false,false,false,0,false,false,false,false +eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,Python,false,false,false,0,false,false,false,false +cttareceber010/idoc_dezembro,cttareceber010,,false,false,false,0,false,false,false,false +openProjects/gitlab-project-issues-with-time-gpit,openProjects,TypeScript,true,false,false,1,false,true,false,false +bindaolh/openvpn,bindaolh,,false,false,false,0,false,false,false,false +George99/python-examples,George99,Python,false,false,false,0,false,false,false,false +ai-techniques-group37/hhm-strategy,ai-techniques-group37,Python,false,false,false,0,false,false,false,false +oofga/oofga-pages,oofga,Ruby,true,false,false,1,false,false,true,false +FeFB/ionic-calendar-ptbr,FeFB,TypeScript,false,false,false,0,false,false,false,false +aaronbarker27/marxbot,aaronbarker27,Python,false,false,false,0,false,false,false,false +devscola/rekaizen,devscola,CSS,true,false,false,2,false,true,true,false +Manuelbelgicano/twr2_unitroster_overhaul,Manuelbelgicano,,false,false,false,0,false,false,false,false +me1nueng2018/myapp1,me1nueng2018,JavaScript,false,false,false,0,false,false,false,false +vstconsulting/community-projects/wordpress,vstconsulting,,false,false,false,0,false,false,false,false +mediamoose/async-thumbnail,mediamoose,Python,true,false,false,4,false,true,false,true +nsnam/bake,nsnam,Python,false,false,false,0,false,false,false,false +chelmzy/sholert,chelmzy,Python,false,false,false,0,false,false,false,false +KlettB/react-firebase-boilerplate,KlettB,JavaScript,false,false,false,0,false,false,false,false +TheCipher01/moneybags,TheCipher01,JavaScript,false,false,false,0,false,false,false,false +zhuowei/android-mkdtimg,zhuowei,C,false,false,false,0,false,false,false,false +Dobrovedov/lab4,Dobrovedov,,false,false,false,0,false,false,false,false +RicodeL/projectjee,RicodeL,Java,false,false,true,0,false,false,false,false +leapkh/advanced-programming,leapkh,Java,false,false,false,0,false,false,false,false +nezaboodka/nezaboodka-vscode-theme,nezaboodka,,false,false,false,0,false,false,false,false +blender-institute/gossdp,blender-institute,Go,false,false,false,0,false,false,false,false +yaal/readonlystorage,yaal,Python,true,false,false,1,false,true,false,false +icode1/chromium,icode1,,false,false,false,0,false,false,false,false +davideleone/contactme,davideleone,Python,false,false,false,0,false,false,false,false +leogx9r/linux-hardened,leogx9r,,false,false,false,0,false,false,false,false +romb-technologies/test,romb-technologies,,false,false,false,0,false,false,false,false +xXBlackMaskXx/basss,xXBlackMaskXx,,false,false,false,0,false,false,false,false +ShawnWitte/3D-werkomgeving,ShawnWitte,C#,true,false,false,3,true,true,true,false +e66/emacs_own,e66,,false,false,false,0,false,false,false,false +artemklevtsov/datacamp-web-scrapper,artemklevtsov,R,false,false,false,0,false,false,false,false +n3g4t4/negata_al_configs,n3g4t4,,false,false,false,0,false,false,false,false +critical99/ysf,critical99,C++,false,false,false,0,false,false,false,false +alignwaivers/glass_beatstation,alignwaivers,Python,false,true,false,0,false,false,false,false +hannoguenther/citigoods,hannoguenther,Dart,false,false,false,0,false,false,false,false +magda-data/magda,magda-data,JavaScript,true,false,false,7,false,false,false,true +fluidattacks/asserts,fluidattacks,Python,true,false,false,6,true,true,true,false +norad/UI,norad,Ruby,true,false,false,3,true,true,true,false +baserock/ybd,baserock,Python,true,true,false,5,true,false,true,false +1git/1git,1git,JavaScript,true,false,false,8,false,true,true,false +emerald-platform/emerald,emerald-platform,JavaScript,false,false,true,0,false,false,false,false +precognition-llc/aeonvera-ui,precognition-llc,JavaScript,true,false,false,2,false,true,true,false +fsfe/oidcp,fsfe,Python,true,false,false,4,true,true,true,false +kimlab/kmtools,kimlab,Python,true,false,false,5,true,true,true,false +empurrandojuntos/backend,empurrandojuntos,Python,false,false,false,0,false,false,false,false +piratemovin/website,piratemovin,Roff,false,false,false,0,false,false,false,false +kinsources/kiwa,kinsources,Java,false,false,false,0,false,false,false,false +fork/font-awesome,fork,HTML,false,false,false,0,false,false,false,false +gitlab-com/cookbook-gitlab-opsworks,gitlab-com,Ruby,false,false,false,0,false,false,false,false +tompkins/vectri,tompkins,Fortran,false,false,false,0,false,false,false,false +gitlab-org/gitlab-grack,gitlab-org,Ruby,false,false,false,0,false,false,false,false +qt-technology/qml,qt-technology,C++,false,false,false,0,false,false,false,false +ghecho/gitlab-slack,ghecho,JavaScript,false,false,false,0,false,false,false,false +denys.duchier/alamud,denys.duchier,Python,false,false,false,0,false,false,false,false +iankelling/bbdb-csv-import,iankelling,EmacsLisp,false,false,false,0,false,false,false,false +phansch/learn_ruby_solutions,phansch,HTML,false,false,false,0,false,false,false,false +xivo.solutions/xucserver,xivo.solutions,Scala,false,false,false,0,false,false,false,false +ben.r.xiao/h264webstreamer,ben.r.xiao,JavaScript,false,false,false,0,false,false,false,false +up-csi/dev-resources,up-csi,Shell,false,false,false,0,false,false,false,false +gnukhata/core_engine,gnukhata,Python,false,false,false,0,false,false,false,false +softwarepublico/colab,softwarepublico,Ruby,false,false,false,0,false,false,false,false +WzukW/oclaunch,WzukW,OCaml,true,false,false,3,false,true,false,false +rizon/moo,rizon,Java,true,false,true,1,false,true,false,false +emacs-stuff/my-elisp,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +piratemovin/otrworks,piratemovin,Roff,false,false,false,0,false,false,false,false +free-electrons-labs/dka-homepage,free-electrons-labs,CSS,true,false,false,1,false,true,false,false +gitlab-org/gitlab-git-test,gitlab-org,Ruby,false,false,false,0,false,false,false,false +cobweb/nette-cobweb-client,cobweb,PHP,false,false,false,0,false,false,false,false +wikiti-random-stuff/roxlib,wikiti-random-stuff,Haxe,false,false,false,0,false,false,false,false +marni/mansplaining,marni,Ruby,false,false,false,0,false,false,false,false +davical-project/website,davical-project,HTML,false,false,false,0,false,false,false,false +codebreak/simplefx,codebreak,Java,false,false,false,0,false,false,false,false +banana-code/participation-backend,banana-code,Java,false,false,true,0,false,false,false,false +TomYaMee/rammycraft,TomYaMee,,false,false,false,0,false,false,false,false +easwareapps/marbleone,easwareapps,Java,false,false,false,0,false,false,false,false +ciencialivre/scriptlattes,ciencialivre,HTML,false,false,false,0,false,false,false,false +felixonmars/dnsmasq-china-list,felixonmars,Python,false,false,false,0,false,false,false,false +open-economy-log/open-economy-log,open-economy-log,Ruby,false,false,false,0,false,false,false,false +h2t/roboteditor,h2t,Python,false,false,false,0,false,false,false,false +g-gundam/yotsubAPI,g-gundam,Racket,false,false,false,0,false,false,false,false +betamax/serializers,betamax,Python,false,false,false,0,false,false,false,false +rob.taylor/systemd,rob.taylor,C,false,false,false,0,false,false,false,false +deu/palemoon-overlay,deu,Shell,false,false,false,0,false,false,false,false +beijinglug/community-calendar,beijinglug,CoffeeScript,false,false,false,0,false,false,false,false +queertypes/brainfuck-tut,queertypes,Haskell,false,false,false,0,false,false,false,false +wuest/shatter,wuest,Ruby,false,false,false,0,false,false,false,false +CiaranG/tallyphant,CiaranG,Java,false,false,false,0,false,false,false,false +standard/standard-subscriber-information,standard,,false,false,false,0,false,false,false,false +nitroxis/minihttp,nitroxis,C#,false,false,false,0,false,false,false,false +smc/fonts-all,smc,Makefile,false,false,false,0,false,false,false,false +smc/fonts/rachana,smc,Python,false,false,false,0,false,false,false,false +smc/fonts/meera,smc,Python,false,false,false,0,false,false,false,false +ataiemajid_63/multiselect,ataiemajid_63,JavaScript,false,false,false,0,false,false,false,false +shared-puppet-modules-group/check_mk,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +r3lgar/nightmare,r3lgar,Shell,false,false,false,0,false,false,false,false +r004/dactyl,r004,,false,false,false,0,false,false,false,false +leap/platform,leap,Ruby,true,false,false,2,true,false,false,false +mcepl/pyg,mcepl,Python,false,false,false,0,false,false,false,false +smc/fonts/keraleeyam,smc,Python,false,false,false,0,false,false,false,false +shared-puppet-modules-group/munin,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +gemx/smartnotificationrouter,gemx,,false,false,false,0,false,false,false,false +taskmanager/taskmanager,taskmanager,JavaScript,false,false,false,0,false,false,false,false +1002856398/angularamd-coffeescript,1002856398,CoffeeScript,false,false,false,0,false,false,false,false +erynofwales/stepper,erynofwales,Swift,false,false,false,0,false,false,false,false +axil/omniauth2-gitlab,axil,Ruby,false,false,false,0,false,false,false,false +mcepl/lua_table,mcepl,Python,false,false,false,0,false,false,false,false +jamesf/clfswm,jamesf,CommonLisp,false,false,false,0,false,false,false,false +Hounge/GitLabAndroid,Hounge,Java,false,false,false,0,false,false,false,false +Nalin-x-Linux/lios-3,Nalin-x-Linux,Python,false,false,false,0,false,false,false,false +tszucs/libertas_uap,tszucs,C,false,false,false,0,false,false,false,false +agilob/sudokusolver,agilob,Java,true,false,false,2,true,true,false,false +shared-puppet-modules-group/postfix,shared-puppet-modules-group,HTML,false,false,false,0,false,false,false,false +shared-puppet-modules-group/tor,shared-puppet-modules-group,HTML,true,false,false,1,false,true,false,false +shared-puppet-modules-group/mysql,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +shared-puppet-modules-group/shorewall,shared-puppet-modules-group,Puppet,false,false,false,0,false,false,false,false +gitlab-cookbooks/cookbook-gitlab-test,gitlab-cookbooks,Ruby,false,false,false,0,false,false,false,false +oppl/oppl-website,oppl,Ruby,false,false,false,0,false,false,false,false +shak/shak,shak,Ruby,false,false,false,0,false,false,false,false +mora/aparapi-ucores,mora,HTML,false,false,false,0,false,false,false,false +FacturaScripts-Plugins/automocion,FacturaScripts-Plugins,PHP,false,false,false,0,false,false,false,false +diaspora/diaspora,diaspora,Ruby,false,false,false,0,false,false,false,false +foocorp/gnu-fm,foocorp,PHP,false,false,false,0,false,false,false,false +extra500/extra500,extra500,,false,false,false,0,false,false,false,false +ad-si-2015-1/projeto1-sockets-grupo3,ad-si-2015-1,Java,false,false,false,0,false,false,false,false +planter/planter,planter,Python,false,false,false,0,false,false,false,false +slackport/sport,slackport,Shell,false,false,false,0,false,false,false,false +mhab/ec130,mhab,,false,false,false,0,false,false,false,false +archlinux-co/frases-de-fortuna,archlinux-co,Shell,false,false,false,0,false,false,false,false +blowb/blowb-doc,blowb,Python,false,false,false,0,false,false,false,false +ahill/MyTracksV2,ahill,Java,false,false,false,0,false,false,false,false +evol/evol-tools,evol,Python,true,false,false,3,false,true,false,false +redistd/redistd,redistd,C++,false,false,false,0,false,false,false,false +rollodeqc/rollodeqc,rollodeqc,HTML,false,false,false,0,false,false,false,false +ensitools/ensitools,ensitools,Shell,true,false,false,1,false,true,false,false +jnoel/agritux,jnoel,Ruby,false,false,false,0,false,false,false,false +marc.nause/31c3-search,marc.nause,Java,false,false,false,0,false,false,false,false +caro-sdu/caros,caro-sdu,C++,true,false,false,3,false,true,false,false +apti/apti,apti,Ruby,false,false,false,0,false,false,false,false +com-informatimago/com-informatimago-vfs,com-informatimago,CommonLisp,false,false,false,0,false,false,false,false +gule-log/guile-log,gule-log,Scheme,false,false,false,0,false,false,false,false +eql/eql,eql,C++,false,false,false,0,false,false,false,false +gnome/glib,gnome,C,false,false,false,0,false,false,false,false +alfons83/popcorn-app,alfons83,JavaScript,false,false,false,0,false,false,false,false +bitcoin/eloipool,bitcoin,Python,false,false,false,0,false,false,false,false +bitcoin/python-blkmaker,bitcoin,Python,false,false,false,0,false,false,false,false +elboulangero/irqtop,elboulangero,C,false,false,false,0,false,false,false,false +Cwiiis/animator-js,Cwiiis,JavaScript,false,false,false,0,false,false,false,false +li-haobin/O2DESNet,li-haobin,C#,false,false,false,0,false,false,false,false +blowb/dockerfiles,blowb,Shell,false,false,false,0,false,false,false,false +hnc/hopp,hnc,C++,false,false,false,0,false,false,false,false +meritous/meritous,meritous,C,false,false,false,0,false,false,false,false +mongomotor/mongomotor,mongomotor,Python,false,true,false,0,false,false,false,false +edleh/pylote,edleh,Python,false,false,false,0,false,false,false,false +codecov/ci-repo,codecov,Python,false,false,false,0,false,false,false,false +SaberMod/sabermod-manifest,SaberMod,,false,false,false,0,false,false,false,false +SaberMod/toolchain-build,SaberMod,Makefile,false,false,false,0,false,false,false,false +kolab-roundcube-plugins/libcalendaring,kolab-roundcube-plugins,PHP,false,false,false,0,false,false,false,false +ac100/marvin24s-kernel,ac100,,false,false,false,0,false,false,false,false +lierolibre/lierolibre,lierolibre,C++,false,false,false,0,false,false,false,false +MazeChaZer/password_hash-tool,MazeChaZer,PHP,false,false,false,0,false,false,false,false +xbmc-wiimote/xbmc-wiimote,xbmc-wiimote,Python,false,false,false,0,false,false,false,false +kevinblandon/miproyecto,kevinblandon,HTML,false,false,false,0,false,false,false,false +libsynthesis/libsynthesis,libsynthesis,C++,false,false,false,0,false,false,false,false +J_Darnley/Advanced-Visualization-Studio,J_Darnley,C,false,false,false,0,false,false,false,false +greduan/dotfiles,greduan,Vimscript,false,false,false,0,false,false,false,false +berrange/barndoor,berrange,C,false,false,false,0,false,false,false,false +bingao/qcmatrix,bingao,C,false,false,false,0,false,false,false,false +Screwtapello/bdflib,Screwtapello,Python,true,false,false,1,false,true,false,false +Screwtapello/python-bps,Screwtapello,Python,false,false,false,0,false,false,false,false +DummySphere/MarkdownComments,DummySphere,C#,false,false,false,0,false,false,false,false +smc/fonts/uroob,smc,HTML,false,false,false,0,false,false,false,false +cpran/plugin_cpran,cpran,Pascal,false,false,false,0,false,false,false,false +tszucs/uapevent,tszucs,C,false,false,false,0,false,false,false,false +tszucs/uaputl,tszucs,C,false,false,false,0,false,false,false,false +3askaal/generator-3oilerplate,3askaal,JavaScript,false,false,false,0,false,false,false,false +sibuaai/groupD,sibuaai,C#,false,false,false,0,false,false,false,false +flinfo/flinfo,flinfo,PHP,false,false,false,0,false,false,false,false +pjsip/pjproject,pjsip,C,false,false,false,0,false,false,false,false +latex-math-preview/latex-math-preview,latex-math-preview,EmacsLisp,false,false,false,0,false,false,false,false +ApprenticeAlf/DeDRM,ApprenticeAlf,Python,false,false,false,0,false,false,false,false +ajs124/abootimg,ajs124,C,false,false,false,0,false,false,false,false +Salbei/incolab-overlay,Salbei,Shell,false,false,false,0,false,false,false,false +ics-qicstable/qicstable,ics-qicstable,C++,false,false,false,0,false,false,false,false +qmazda/qmazda,qmazda,C++,false,false,false,0,false,false,false,false +darkc0de/DarkToolKit,darkc0de,C#,false,false,false,0,false,false,false,false +jobol/ecoap,jobol,C,false,false,false,0,false,false,false,false +accounts-sso/accounts-sso,accounts-sso,,false,false,false,0,false,false,false,false +accounts-sso/libaccounts-qt,accounts-sso,C++,true,false,false,3,true,true,true,false +accounts-sso/libaccounts-glib,accounts-sso,C,true,false,false,3,true,true,true,false +jscastonguay/technoboard,jscastonguay,C,false,false,false,0,false,false,false,false +jovemhacker/material,jovemhacker,JavaScript,false,false,false,0,false,false,false,false +olx-inc/docker-graphite,olx-inc,Shell,false,false,false,0,false,false,false,false +ststst/EldewritoUpdater,ststst,C#,false,false,false,0,false,false,false,false +mikegerwitz/repo2html,mikegerwitz,Shell,false,false,false,0,false,false,false,false +hexer/hexer,hexer,C,false,false,false,0,false,false,false,false +losylam/constellations_bibliographiques,losylam,JavaScript,false,false,false,0,false,false,false,false +math4youbyusgroupillinois/unix,math4youbyusgroupillinois,C,false,false,false,0,false,false,false,false +Cwiiis/gaia-navigator,Cwiiis,HTML,false,false,false,0,false,false,false,false +structural-fragment-search/super,structural-fragment-search,C,true,false,false,2,true,true,false,false +lintest/myrulib,lintest,C++,false,false,false,0,false,false,false,false +elenaeli/OOPSC,elenaeli,C++,false,false,false,0,false,false,false,false +ogom/gres,ogom,,false,false,false,0,false,false,false,false +trantor/hummin,trantor,Go,false,false,false,0,false,false,false,false +ebryn/ember-table-tree-example,ebryn,JavaScript,false,false,false,0,false,false,false,false +apsulis/as3m,apsulis,Shell,false,false,false,0,false,false,false,false +vanceeasleaf/pymatgen,vanceeasleaf,PropellerSpin,false,false,false,0,false,false,false,false +kanban/backend,kanban,PHP,false,false,false,0,false,false,false,false +pelican/osgearth-flora,pelican,,false,false,false,0,false,false,false,false +o9000/pbm,o9000,Python,false,false,false,0,false,false,false,false +gnukhata/webapp,gnukhata,HTML,false,false,false,0,false,false,false,false +jhasse/jngl,jhasse,C++,true,false,false,1,true,false,false,false +worr/libintl,worr,C,false,false,false,0,false,false,false,false +noosferogov/confjuvapp,noosferogov,JavaScript,false,false,false,0,false,false,false,false +decision-deck/diviz,decision-deck,XSLT,false,false,false,0,false,false,false,false +harishpillay/mytown,harishpillay,,false,false,false,0,false,false,false,false +martinpham/GitLab-sync,martinpham,PHP,false,false,false,0,false,false,false,false +open-ragnarok/open-ragnarok,open-ragnarok,C,false,false,false,0,false,false,false,false +radiognu/radiognu-app,radiognu,JavaScript,true,false,false,1,false,true,false,false +ramsescabello/letstrap,ramsescabello,CSS,false,false,false,0,false,false,false,false +crap/elec,crap,Python,false,false,false,0,false,false,false,false +projetos-dyad/nodeengineadmin,projetos-dyad,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/omnibus,gitlab-org,Ruby,false,false,false,0,false,false,false,false +PlateformeC/laserengraver_smoothie,PlateformeC,Python,false,false,false,0,false,false,false,false +leaflet/mouseCoordinate,leaflet,JavaScript,false,false,false,0,false,false,false,false +tekacs/ipfs,tekacs,TeX,false,false,false,0,false,false,false,false +zulfikar2/HeroCity,zulfikar2,HTML,false,false,false,0,false,false,false,false +philbull/mgclass,philbull,C,false,false,false,0,false,false,false,false +jas/ietf-pkix-eddsa,jas,HTML,false,false,false,0,false,false,false,false +evandrojr/noosfero-plugins,evandrojr,Ruby,false,false,false,0,false,false,false,false +core-utils/core-utils,core-utils,Rust,true,false,false,1,false,true,false,false +iggdrasil/ishtar,iggdrasil,Python,true,true,false,2,true,true,false,false +gnuinos/linux-libre,gnuinos,,false,false,false,0,false,false,false,false +jmabalot/kernel_cancro,jmabalot,,false,false,false,0,false,false,false,false +elzair/org-if,elzair,EmacsLisp,false,false,false,0,false,false,false,false +wGalleti/webPluma,wGalleti,JavaScript,false,false,false,0,false,false,false,false +jrm4/MatrixTracker,jrm4,PHP,false,false,false,0,false,false,false,false +travisbhartwell/vcsh_emacs,travisbhartwell,EmacsLisp,false,false,false,0,false,false,false,false +travisbhartwell/vcsh_X,travisbhartwell,Shell,false,false,false,0,false,false,false,false +mhab/BAE-Hawk,mhab,,false,false,false,0,false,false,false,false +travisbhartwell/local-nix,travisbhartwell,Nix,false,false,false,0,false,false,false,false +spacecat/spacetask,spacecat,PHP,false,false,false,0,false,false,false,false +kapinter/spotra,kapinter,QML,false,false,false,0,false,false,false,false +luspi/photoqt-legacy,luspi,C++,false,false,false,0,false,false,false,false +gitlab-test/hello-javafx-maven-example,gitlab-test,Java,false,false,true,0,false,false,false,false +femsf/c-plus-equality,femsf,C++,false,false,false,0,false,false,false,false +gnowledge/wow,gnowledge,Processing,false,false,false,0,false,false,false,false +kamaq/khipu,kamaq,Java,false,false,true,0,false,false,false,false +kippa/rsdk,kippa,C,false,false,false,0,false,false,false,false +icynorrsken/projetgl,icynorrsken,Java,false,false,true,0,false,false,false,false +spech/TexVar,spech,Lua,false,false,false,0,false,false,false,false +itawebservices/lacitypatterns,itawebservices,HTML,false,false,false,0,false,false,false,false +conradoqg/doc-server,conradoqg,HTML,true,false,false,1,false,true,false,false +cloudseasail/HTML5APP,cloudseasail,JavaScript,false,false,false,0,false,false,false,false +arnout/buildroot-mykmod,arnout,Makefile,false,false,false,0,false,false,false,false +andierabino/roadmob,andierabino,CSS,false,false,false,0,false,false,false,false +.sexy/spacemacs,.sexy,EmacsLisp,false,false,false,0,false,false,false,false +.sexy/neovim,.sexy,Vimscript,false,false,false,0,false,false,false,false +alci/mkpass,alci,JavaScript,false,false,false,0,false,false,false,false +esr/shipper,esr,Python,false,false,false,0,false,false,false,false +m-busche/rfid-mate-kasse,m-busche,Python,false,true,false,0,false,false,false,false +d4nux/WCFJson,d4nux,C#,false,false,false,0,false,false,false,false +hughr/rss-twitter-bot,hughr,JavaScript,false,false,false,0,false,false,false,false +bzg/orgguide_fr,bzg,,false,false,false,0,false,false,false,false +calafou/eco-gnomy,calafou,Python,true,false,false,1,false,true,false,false +facil/sqil-2015,facil,HTML,false,false,false,0,false,false,false,false +EuroGamers/portal,EuroGamers,CSS,false,false,false,0,false,false,false,false +PascalSmeets/psek-fitnesse-fixtures,PascalSmeets,Java,true,false,true,1,false,true,false,false +pbek/QOwnNotes,pbek,C,true,false,false,1,false,true,false,false +igserfurtmcschulserver/IgelImmo,igserfurtmcschulserver,Java,false,false,false,0,false,false,false,false +lukasbrausch/volume_slicer_new,lukasbrausch,,false,false,false,0,false,false,false,false +sashahart/cookies,sashahart,Python,false,false,false,0,false,false,false,false +roy-wuqizhi/st-load,roy-wuqizhi,C++,false,false,false,0,false,false,false,false +shacktac-public/general,shacktac-public,,false,false,false,0,false,false,false,false +anton-akhmerov/casimir_programming_course,anton-akhmerov,JupyterNotebook,false,false,false,0,false,false,false,false +aaron-baugher/usenet3,aaron-baugher,,false,false,false,0,false,false,false,false +geos/libgeos,geos,C++,true,false,false,1,false,true,false,false +existsec/openhab-kodimqtt,existsec,JavaScript,false,false,false,0,false,false,false,false +dugite-code/rcmail_ttrss,dugite-code,PHP,false,false,false,0,false,false,false,false +mikelat/poe-calc,mikelat,JavaScript,false,false,false,0,false,false,false,false +robgeerts/Dashticz,robgeerts,JavaScript,false,false,false,0,false,false,false,false +N3X15/ByondTools,N3X15,Python,false,false,false,0,false,false,false,false +roth1002/awesome-react,roth1002,JavaScript,false,false,false,0,false,false,false,false +albvazq/php-routingsystem,albvazq,PHP,false,false,false,0,false,false,false,false +sotitrox/manivela,sotitrox,PHP,false,false,false,0,false,false,false,false +sotitrox/ppump,sotitrox,PHP,false,false,false,0,false,false,false,false +technomancy/orb,technomancy,Lua,false,false,false,0,false,false,false,false +mayan-edms/mayan-fabric,mayan-edms,Python,false,true,false,0,false,false,false,false +SirCmpwn/sway,SirCmpwn,C,false,false,false,0,false,false,false,false +rosarior/moronians,rosarior,Python,false,false,false,0,false,false,false,false +FJW/wzrd,FJW,C++,false,false,false,0,false,false,false,false +fmartingr/emacs-gameboy-theme,fmartingr,EmacsLisp,false,false,false,0,false,false,false,false +kaliko/python-musicpd,kaliko,Python,true,false,false,2,true,true,false,false +rosarior/pdf-form-fill,rosarior,Python,false,false,false,0,false,false,false,false +atrus6/pynoise,atrus6,Python,true,true,false,1,false,true,false,false +pcmresearch/vegas,pcmresearch,Python,false,false,false,0,false,false,false,false +davidogg/papercolor-theme,davidogg,Vimscript,false,false,false,0,false,false,false,false +jtecca/meacupla-theme,jtecca,EmacsLisp,false,false,false,0,false,false,false,false +noosferogov/discussion-app,noosferogov,JavaScript,false,false,false,0,false,false,false,false +cubicle47b/Ennui,cubicle47b,C#,false,false,false,0,false,false,false,false +aoighost/VaOcean,aoighost,C++,false,false,false,0,false,false,false,false +dzaporozhets/checked,dzaporozhets,Clojure,true,false,false,1,false,true,false,false +gitlab-pivotal/p-gitlab-ee,gitlab-pivotal,,false,false,false,0,false,false,false,false +hjruscheweyh/megan_snakemake,hjruscheweyh,Python,false,false,false,0,false,false,false,false +isfahanlug/ilugReg,isfahanlug,C++,false,false,false,0,false,false,false,false +chrisw/sheetsdb,chrisw,JavaScript,false,false,false,0,false,false,false,false +Tech_Advancer/pi-LCD-bitcoin-Node-Ticker,Tech_Advancer,Python,false,false,false,0,false,false,false,false +Sloy/collapsing-avatar-toolbar,Sloy,Java,false,false,false,0,false,false,false,false +roundcubevnz/simplemail-plugins,roundcubevnz,PHP,false,false,false,0,false,false,false,false +arthurmde/vortoj,arthurmde,C,false,false,false,0,false,false,false,false +zannalov/acd-webdav,zannalov,JavaScript,false,false,false,0,false,false,false,false +windowslies/blockwindows,windowslies,Batchfile,false,false,false,0,false,false,false,false +s4m-chef-repositories/bind-ddns,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false +goquo/xpath-object-transform,goquo,JavaScript,false,false,false,0,false,false,false,false +crap/fuzzy,crap,Python,false,false,false,0,false,false,false,false +thelinuxguy/mailman-suite,thelinuxguy,Python,false,false,false,0,false,false,false,false +robigalia/devbox,robigalia,Shell,true,false,false,1,false,true,false,false +kiphe19/simple-chatting,kiphe19,JavaScript,false,false,false,0,false,false,false,false +joolean/gzochi,joolean,C,true,false,false,1,false,true,false,false +pisarivskiy/tests,pisarivskiy,CSS,false,false,false,0,false,false,false,false +expresso_livre/Expresso,expresso_livre,HTML,false,false,false,0,false,false,false,false +stater/node-bridge,stater,JavaScript,true,false,false,1,false,true,false,false +dvenkatsagar/python-yad,dvenkatsagar,Python,false,false,false,0,false,false,false,false +abre/sublimeconfig,abre,,false,false,false,0,false,false,false,false +rpdev/AnIntroductionToQt5,rpdev,C++,false,false,false,0,false,false,false,false +mrban/pingMonitor,mrban,JavaScript,false,false,false,0,false,false,false,false +greysonp/gitlab-ci-android-example,greysonp,Java,true,false,false,1,false,true,false,false +mangebanane/Projet_films_php,mangebanane,PHP,false,false,false,0,false,false,false,false +oguya/cis-ubuntu-14-ansible,oguya,Shell,false,false,false,0,false,false,false,false +dobrien/GithubConnect,dobrien,PowerShell,false,false,false,0,false,false,false,false +energyharvesting/angulardf,energyharvesting,HTML,true,false,false,1,false,false,true,false +adexfe/awaf,adexfe,ColdFusion,false,false,false,0,false,false,false,false +tbruun/vagrant-wildfly,tbruun,Shell,false,false,false,0,false,false,false,false +thelabnyc/wagtail_polls,thelabnyc,Python,true,true,false,1,false,true,false,false +kollo/xearth,kollo,C,false,false,false,0,false,false,false,false +chemometrics/unmixR,chemometrics,R,false,false,false,0,false,false,false,false +kollo/Taupunkt,kollo,Java,false,false,false,0,false,false,false,false +necrobooder/Iron_and_Time,necrobooder,,false,false,false,0,false,false,false,false +Shekharrajak/awesome-meteor,Shekharrajak,JavaScript,false,false,false,0,false,false,false,false +lxx/robotics_hw2,lxx,Matlab,false,false,false,0,false,false,false,false +ricardojmendez/khroma-tests,ricardojmendez,Clojure,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo7,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +pump.io/pump-docs,pump.io,Python,false,false,false,0,false,false,false,false +mjwhitta/rubeepass,mjwhitta,Ruby,false,false,false,0,false,false,false,false +franpc/getBd,franpc,PHP,false,false,false,0,false,false,false,false +SimanMaan/MacCap2016,SimanMaan,Python,false,false,false,0,false,false,false,false +chicken-sdl2/chicken-sdl2-examples,chicken-sdl2,Scheme,false,false,false,0,false,false,false,false +debian-ruby/TaskTracker,debian-ruby,,false,false,false,0,false,false,false,false +surfsara/email2trac,surfsara,C,false,false,false,0,false,false,false,false +vindarel/syp,vindarel,Python,false,true,false,0,false,false,false,false +balasankarc/python-gemdeps,balasankarc,Python,false,true,false,0,false,false,false,false +HOM/Outdoor,HOM,Java,false,false,false,0,false,false,false,false +jdriven/reactive-workshop,jdriven,JavaScript,false,false,false,0,false,false,false,false +ccfelix/netbeans-portable,ccfelix,Batchfile,false,false,false,0,false,false,false,false +Morozzzko/particles-in-box,Morozzzko,Python,false,false,false,0,false,false,false,false +drilett/La4_dr,drilett,Java,false,false,false,0,false,false,false,false +Ricin/client,Ricin,Vala,false,false,false,0,false,false,false,false +CasperVector/biblatex-caspervector,CasperVector,TeX,false,false,false,0,false,false,false,false +pwm/db-backup,pwm,Python,false,false,false,0,false,false,false,false +everlose/myNote,everlose,,false,false,false,0,false,false,false,false +kelompok4pmpl2015/WisataLombok,kelompok4pmpl2015,Java,false,false,false,0,false,false,false,false +smoonsf/GAPrayer_v2_android,smoonsf,Java,false,false,false,0,false,false,false,false +alarraz/learning_routing,alarraz,Python,false,false,false,0,false,false,false,false +qt-prometheus/qt-prometheus,qt-prometheus,Java,false,false,false,0,false,false,false,false +kwant/kwant,kwant,Python,true,false,false,3,true,true,true,false +solus-project/arc-desktop,solus-project,Vala,false,false,false,0,false,false,false,false +sunhsung/opensc,sunhsung,C++,false,false,false,0,false,false,false,false +fsftn/fsftn-website-static-pages,fsftn,CSS,false,false,false,0,false,false,false,false +JFT/BT_By_KT,JFT,C++,true,false,false,5,true,true,false,false +juliancarrivick/band-manager-backend,juliancarrivick,PHP,true,false,false,3,false,true,true,false +NTPsec/www,NTPsec,Python,true,false,false,1,true,false,false,false +sigmate/lilypond-html-live-score,sigmate,LilyPond,false,false,false,0,false,false,false,false +ModelingGroupTKI/trainmodeling,ModelingGroupTKI,C#,false,false,false,0,false,false,false,false +balameb/django-celery-redis-sample,balameb,Python,false,true,false,0,false,false,false,false +chakraos/core,chakraos,Shell,false,false,false,0,false,false,false,false +gitlab-examples/mysql,gitlab-examples,,true,false,false,1,false,true,false,false +smartsociety/programming-framework,smartsociety,Java,false,false,false,0,false,false,false,false +joolean/r6rs-thrift,joolean,Scheme,false,false,false,0,false,false,false,false +enyalius/core_server,enyalius,JavaScript,false,false,false,0,false,false,false,false +pooya/OpenMpSampleCode,pooya,C,false,false,false,0,false,false,false,false +GitLab-dot-NET/GitLab-dot-NET,GitLab-dot-NET,C#,false,false,false,0,false,false,false,false +BCazaubon/MOM-Ionic,BCazaubon,JavaScript,false,false,false,0,false,false,false,false +YoumuMusou/To-ready-number_calculation_of_Mahjong,YoumuMusou,Python,false,false,false,0,false,false,false,false +andreas-h/pyatran,andreas-h,Python,true,false,false,1,false,true,false,false +mseide-msegui/mseuniverse,mseide-msegui,Pascal,false,false,false,0,false,false,false,false +rabta/web-end,rabta,JavaScript,false,false,false,0,false,false,false,false +vikingmakt/tornpack,vikingmakt,Python,false,false,false,0,false,false,false,false +nitroxis/mu,nitroxis,C,false,false,false,0,false,false,false,false +viu/launchpad,viu,JavaScript,true,false,false,1,false,true,false,false +vikingmakt/njord_http,vikingmakt,Python,false,false,false,0,false,false,false,false +raphaelbastide/unilist,raphaelbastide,HTML,false,false,false,0,false,false,false,false +a.atalla/odoo_mohafaza,a.atalla,Python,false,false,false,0,false,false,false,false +mcepl/czecep,mcepl,Perl,false,false,false,0,false,false,false,false +NachoMusic/frameworkN,NachoMusic,Java,false,false,false,0,false,false,false,false +midincihuy/sampel,midincihuy,,false,false,false,0,false,false,false,false +gitlab-com/teampage-map,gitlab-com,JavaScript,true,false,false,2,true,false,true,false +InfectedBytes/SolarColony,InfectedBytes,Java,false,false,false,0,false,false,false,false +lamefun/dialog,lamefun,Haskell,false,false,false,0,false,false,false,false +dzaporozhets/dzaporozhets.gitlab.io,dzaporozhets,HTML,true,false,false,1,false,false,true,false +aidid/Ultrapowa-Clash-Server,aidid,C#,false,false,false,0,false,false,false,false +baldurmen/genfo,baldurmen,Python,true,false,false,3,true,true,false,false +nerdalize/safe,nerdalize,Python,false,false,false,0,false,false,false,false +mayan-edms/website,mayan-edms,HTML,false,false,false,0,false,false,false,false +flussence/runit-scripts,flussence,Shell,false,false,false,0,false,false,false,false +dto/2fr0g,dto,CommonLisp,false,false,false,0,false,false,false,false +t3rr0rz0n3/AlpheratzTheme,t3rr0rz0n3,PHP,false,false,false,0,false,false,false,false +damien.andre/openmeca,damien.andre,C++,false,false,false,0,false,false,false,false +horihiro/osc-client-theta_s,horihiro,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/training-examples,gitlab-org,Ruby,false,false,false,0,false,false,false,false +srfilipek/savr,srfilipek,C++,false,false,false,0,false,false,false,false +SmartAcoustics/libgannet,SmartAcoustics,Python,false,false,false,0,false,false,false,false +lawrancej/COMP1000,lawrancej,Java,false,false,false,0,false,false,false,false +ackwell/tactics,ackwell,Lua,false,false,false,0,false,false,false,false +zzeng/vasp_pdos_split,zzeng,Python,false,false,false,0,false,false,false,false +scalemailted/CSCI1583-Lectures-Spring2016,scalemailted,Java,false,false,false,0,false,false,false,false +lamefun/purity,lamefun,CSS,false,false,false,0,false,false,false,false +shosca/Artificial-Intelligence-and-Machine-Learning,shosca,Matlab,false,false,false,0,false,false,false,false +peronczyk/svg-iconset-loader,peronczyk,HTML,false,false,false,0,false,false,false,false +zeograd/rnsutils,zeograd,Python,false,false,false,0,false,false,false,false +ChrisTopping/ALMaSS_all,ChrisTopping,C++,false,false,false,0,false,false,false,false +rahulranjan96/team2cs243,rahulranjan96,PHP,false,false,false,0,false,false,false,false +thunderk/paysages3d,thunderk,C++,false,false,false,0,false,false,false,false +mc.calatrava.moreno/robustrao,mc.calatrava.moreno,R,false,false,false,0,false,false,false,false +floss-foundations/npo-public-filings,floss-foundations,,false,false,false,0,false,false,false,false +lins-oliveira/HackMyResume,lins-oliveira,JavaScript,false,false,false,0,false,false,false,false +gitmate/coala-incremental,gitmate,Python,false,true,false,0,false,false,false,false +voidspacexyz/Salt-Stack-Demo,voidspacexyz,SaltStack,false,false,false,0,false,false,false,false +nihal-mirpuri/hangoutsbot,nihal-mirpuri,Python,false,true,false,0,false,false,false,false +usingnamespace/pyramid_authsanity,usingnamespace,Python,true,false,false,1,false,true,false,false +Franc1sco/SMAC,Franc1sco,SourcePawn,false,false,false,0,false,false,false,false +ZZ2F2/SytemNeuronal,ZZ2F2,TeX,false,false,false,0,false,false,false,false +evol/evol-docs,evol,,false,false,false,0,false,false,false,false +SiegfriedEhret/gitzytout,SiegfriedEhret,Go,false,false,false,0,false,false,false,false +yogeshc/awesome-machine-learning,yogeshc,Python,false,false,false,0,false,false,false,false +globalgamejam2016EpitechYolo/ritualArena,globalgamejam2016EpitechYolo,C#,false,false,false,0,false,false,false,false +enotork/stm32_workshop,enotork,C,false,false,false,0,false,false,false,false +smimite/latexDiffOnGit,smimite,Python,false,false,false,0,false,false,false,false +mattoslf/UniBench,mattoslf,C,false,false,false,0,false,false,false,false +ahmed.mnif/project1,ahmed.mnif,,false,false,false,0,false,false,false,false +sl/wundercli,sl,Go,false,false,false,0,false,false,false,false +jdestefani/ulb-infof307-tp1,jdestefani,Java,false,false,false,0,false,false,false,false +OneMansGlory/CommunityBot,OneMansGlory,JavaScript,false,false,false,0,false,false,false,false +soimort/you-get,soimort,Python,false,false,false,0,false,false,false,false +CarlBrunius/batchCorr,CarlBrunius,R,false,false,false,0,false,false,false,false +fs/pppp,fs,HTML,false,false,false,0,false,false,false,false +deep-learn/light-field,deep-learn,Matlab,false,false,false,0,false,false,false,false +imsky/holder,imsky,JavaScript,false,false,false,0,false,false,false,false +Khaine/DNS-Unbound-Blocklist-Downloader,Khaine,Python,false,false,false,0,false,false,false,false +irregulator/potistiri,irregulator,Python,false,false,false,0,false,false,false,false +yes4me/Selenium-Ruby-Cucumber,yes4me,Ruby,false,false,false,0,false,false,false,false +9000-volts/pages-md-parse,9000-volts,Ruby,true,false,false,1,false,false,true,false +homeautomationqt/elisa,homeautomationqt,C++,true,false,false,1,false,true,false,false +ultr/firefox-new-tab-control,ultr,JavaScript,false,false,false,0,false,false,false,false +iotdev/brillo,iotdev,,false,false,false,0,false,false,false,false +mtier/binpatchng,mtier,Makefile,false,false,false,0,false,false,false,false +vhschlenker/mensa,vhschlenker,Java,true,false,false,1,false,true,false,false +deiss/World,deiss,C++,false,false,false,0,false,false,false,false +oliver006/cwf_to_pgn_exporter,oliver006,Python,false,true,false,0,false,false,false,false +infertux/bashcov,infertux,Ruby,false,false,false,0,false,false,false,false +prajnak/ardupilot,prajnak,C++,false,false,false,0,false,false,false,false +atom0s/Steamless.NET,atom0s,C#,false,false,false,0,false,false,false,false +tiago.dias/beets-noimport,tiago.dias,Python,false,false,false,0,false,false,false,false +ascz/acr_a3,ascz,C++,false,false,false,0,false,false,false,false +kudos/combine.fm,kudos,JavaScript,false,false,false,0,false,false,false,false +kudos/hostr,kudos,HTML,true,false,false,1,false,true,false,false +fork/awesome,fork,,false,false,false,0,false,false,false,false +oussama.elaydi/PI3A6_CrowdRise,oussama.elaydi,,false,false,false,0,false,false,false,false +veggiemonk/awesome-docker,veggiemonk,,false,false,false,0,false,false,false,false +MCS-Power-System-Reliability/mcs-pruning,MCS-Power-System-Reliability,C++,false,false,false,0,false,false,false,false +parclytaxel/Selwyn,parclytaxel,,false,false,false,0,false,false,false,false +buckybox/webstore,buckybox,HTML,true,false,false,1,false,true,false,false +gitlab-org/gsoc2016,gitlab-org,,false,false,false,0,false,false,false,false +Dain_Torson/SetGrammarCompiler,Dain_Torson,Java,false,false,false,0,false,false,false,false +TIME_LAS/Omeka_Plugin_SwitchLang,TIME_LAS,PHP,false,false,false,0,false,false,false,false +pixelhandler/xyz-styles,pixelhandler,JavaScript,false,false,false,0,false,false,false,false +RussianCow/OpenFoodDatabase,RussianCow,Python,false,false,false,0,false,false,false,false +lukewhatelse/projectorg,lukewhatelse,Java,false,false,true,0,false,false,false,false +seabird/pyseabird,seabird,Python,false,true,false,0,false,false,false,false +bonsaiERP/bonsaiERP,bonsaiERP,Ruby,false,false,false,0,false,false,false,false +nwjs/nw.js,nwjs,C++,false,false,false,0,false,false,false,false +jekyll-themes/grayscale,jekyll-themes,HTML,true,false,false,1,false,false,true,false +html-themes/artcore,html-themes,JavaScript,true,false,false,1,false,false,true,false +sienkiewiczkm/az-notatki,sienkiewiczkm,TeX,false,false,false,0,false,false,false,false +Keats/vincent.is,Keats,CSS,false,false,false,0,false,false,false,false +steve-perkins/ResumeFodder-appengine,steve-perkins,HTML,false,false,false,0,false,false,false,false +vitronic/Luachi,vitronic,Lua,false,false,false,0,false,false,false,false +wengole/comiccollector,wengole,CSS,false,false,false,0,false,false,false,false +compjunior.projetos/sistema-gestao-compjunior,compjunior.projetos,JavaScript,false,false,false,0,false,false,false,false +mkobar/foodloop,mkobar,JavaScript,false,false,false,0,false,false,false,false +gnutls/libtasn1,gnutls,C,true,false,false,1,false,true,false,false +reinno/shadowsocks-rss,reinno,,false,false,false,0,false,false,false,false +pages/brunch,pages,HTML,true,false,false,1,false,true,false,false +apgoucher/apgmera,apgoucher,C++,true,false,false,3,false,true,false,true +jargnar/rainfedviz,jargnar,HTML,false,false,false,0,false,false,false,false +pleasantone/slack-groupmgr,pleasantone,Python,false,true,false,0,false,false,false,false +kubespray/kargo-wrapper,kubespray,Python,false,false,false,0,false,false,false,false +slashdeploy/blog,slashdeploy,CSS,true,false,false,1,false,true,false,false +fposos/builder,fposos,Shell,false,false,false,0,false,false,false,false +Genew/rate,Genew,Python,false,true,false,0,false,false,false,false +parg/ViaCEP,parg,Java,false,false,false,0,false,false,false,false +rvm/rvm,rvm,Shell,false,false,false,0,false,false,false,false +mechmod/MechmodPublic,mechmod,C#,false,false,false,0,false,false,false,false +codecats/gasporto-panel,codecats,PHP,false,false,false,0,false,false,false,false +faslrn/Faspons,faslrn,,false,false,false,0,false,false,false,false +trakt/script.trakt,trakt,Python,true,false,false,1,false,true,false,false +3A1V/towerdefense,3A1V,Java,false,false,false,0,false,false,false,false +baserock/definitions,baserock,Shell,true,false,false,5,false,true,false,false +onnoowl/neural_net,onnoowl,Elixir,false,false,false,0,false,false,false,false +wangtlc/filesDeal,wangtlc,Java,false,false,true,0,false,false,false,false +jetkov/37392016,jetkov,Java,false,false,false,0,false,false,false,false +speeder1/SMAPISprinklerMod,speeder1,C#,false,false,false,0,false,false,false,false +emacs-stuff/pip-utils,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +jacksarick/elding,jacksarick,JavaScript,false,false,false,0,false,false,false,false +adrianovieira/rapps,adrianovieira,CSS,true,false,false,1,false,false,false,false +mauriciovieira/drf-linguagil-code,mauriciovieira,Python,false,false,false,0,false,false,false,false +butterproject/butter-android,butterproject,Java,false,false,false,0,false,false,false,false +popcorn-official/popcorn-desktop,popcorn-official,JavaScript,false,false,false,0,false,false,false,false +intelbees/launchcms,intelbees,JavaScript,false,false,false,0,false,false,false,false +LinZap/git-test,LinZap,JavaScript,false,false,false,0,false,false,false,false +KennethNielsenTeaching/exercise_archive,KennethNielsenTeaching,Python,false,false,false,0,false,false,false,false +Curiositry/less-is-morse,Curiositry,Python,false,false,false,0,false,false,false,false +hackmildegia/hackmildegia.gitlab.io,hackmildegia,CSS,true,false,false,1,false,true,false,false +nick-strohm/battleNET,nick-strohm,C#,false,false,false,0,false,false,false,false +orbos/dev-tools,orbos,Shell,false,false,false,0,false,false,false,false +CarlBrunius/sampleDrift,CarlBrunius,R,false,false,false,0,false,false,false,false +LukaHorvat/open-signals,LukaHorvat,Haskell,false,false,false,0,false,false,false,false +RKIBioinformaticsPipelines/Mapping,RKIBioinformaticsPipelines,Python,true,false,false,2,false,true,false,false +tfischer/kdiff3,tfischer,C++,false,false,false,0,false,false,false,false +space-kerala/lekha-OCR,space-kerala,Python,false,false,false,0,false,false,false,false +jbernauer/tx1-lab1,jbernauer,Python,false,false,false,0,false,false,false,false +e271/usblogger,e271,Python,false,false,false,0,false,false,false,false +GuangchuangYu/BioEdit-OSX,GuangchuangYu,Shell,false,false,false,0,false,false,false,false +nasirkhan/laravel-5-starter,nasirkhan,PHP,true,false,false,1,false,true,false,false +grimshield/nodejs.dart,grimshield,Dart,false,false,false,0,false,false,false,false +Seraphime/upp,Seraphime,Python,false,false,false,0,false,false,false,false +terrycloth/packaging-firefox-dev,terrycloth,Roff,false,false,false,0,false,false,false,false +grimshield/electron.dart,grimshield,Dart,false,false,false,0,false,false,false,false +pycqa/redbaron,pycqa,Python,false,true,false,0,false,false,false,false +softwarelibrechile/railsbootcamp,softwarelibrechile,,false,false,false,0,false,false,false,false +pycqa/pep8-naming,pycqa,Python,false,false,false,0,false,false,false,false +unb-gama/NovoPPC,unb-gama,TeX,false,false,false,0,false,false,false,false +erictgrubaugh/webstorm-suitescript2-templates,erictgrubaugh,JavaScript,false,false,false,0,false,false,false,false +YOURLS/YOURLS,YOURLS,PHP,false,false,false,0,false,false,false,false +coala/PyPrint,coala,Python,true,true,false,1,false,true,false,false +mhlozek/base,mhlozek,CSS,false,false,false,0,false,false,false,false +tikhon/Cow,tikhon,Haskell,false,false,false,0,false,false,false,false +gitmate/bugspots3,gitmate,Python,true,false,false,1,false,true,false,false +wapdc/website,wapdc,PHP,false,false,false,0,false,false,false,false +eval/respectable,eval,Ruby,true,false,false,1,false,true,false,false +ad-si-2016-1/projeto1-grupo3,ad-si-2016-1,Java,false,false,false,0,false,false,false,false +dnne/proiectsd2,dnne,HTML,true,false,false,1,false,true,false,false +skokkk/spam-poke,skokkk,Lua,false,false,false,0,false,false,false,false +xalri/altserv,xalri,Rust,false,false,false,0,false,false,false,false +harryonline/timerwidget,harryonline,,false,false,false,0,false,false,false,false +i80and/pypledge,i80and,Python,false,false,false,0,false,false,false,false +ankur.kkhurana/google-ml,ankur.kkhurana,Python,false,false,false,0,false,false,false,false +dto/wizl0rd,dto,CommonLisp,false,false,false,0,false,false,false,false +gulajava.mini/RamalanCuacaBukaan,gulajava.mini,Java,false,false,false,0,false,false,false,false +simonbreiter/tagify,simonbreiter,Python,false,false,false,0,false,false,false,false +biemann/gaugeView,biemann,Java,false,false,false,0,false,false,false,false +venticolaleandro/criptografia,venticolaleandro,C,false,false,false,0,false,false,false,false +pleasantone/intel-times,pleasantone,Python,false,true,false,0,false,false,false,false +humb1t/anduin,humb1t,Rust,true,false,false,1,false,true,false,false +danielegrattarola/twitter-sentiment-cnn,danielegrattarola,Python,false,false,false,0,false,false,false,false +tusl/Extras,tusl,,false,false,false,0,false,false,false,false +ecoconceptionweb/ecometer,ecoconceptionweb,HTML,false,false,false,0,false,false,false,false +ut-programming-club/game-of-life,ut-programming-club,Java,false,false,false,0,false,false,false,false +rncbc/qtractor,rncbc,C++,false,false,false,0,false,false,false,false +KodeKreatif/erpiko,KodeKreatif,C++,true,false,false,1,true,false,false,false +greentech/quran/quran-android,greentech,C,false,false,false,0,false,false,false,false +jonata/kihvim,jonata,Python,true,false,false,1,false,true,false,false +MARBIOS/resources,MARBIOS,TeX,false,false,false,0,false,false,false,false +andjosh/thecolorapi,andjosh,JavaScript,false,false,false,0,false,false,false,false +janneke/guix,janneke,Scheme,false,false,false,0,false,false,false,false +smart-city-platform/smart_parking_maps,smart-city-platform,JavaScript,true,false,false,1,false,true,false,false +Primokorn/EnhancementTheme,Primokorn,Java,false,false,false,0,false,false,false,false +nebogeo/co2,nebogeo,CommonLisp,false,false,false,0,false,false,false,false +orvice/ss-panel,orvice,PHP,true,false,false,2,true,false,false,false +sycom/post-Gitlab-issues,sycom,HTML,true,false,false,1,false,false,true,false +smart-city-platform/data_collector,smart-city-platform,Ruby,true,false,false,1,false,true,false,false +shadaba/CorrelationFunction,shadaba,Python,false,false,false,0,false,false,false,false +duncan-bayne/freebsd-setup,duncan-bayne,Shell,false,false,false,0,false,false,false,false +lede/source,lede,C,false,false,false,0,false,false,false,false +_blog/sky-customer-services,_blog,,false,false,false,0,false,false,false,false +moosehawk/mean-starter,moosehawk,JavaScript,false,false,false,0,false,false,false,false +siasar-project/maps,siasar-project,Scheme,true,false,false,2,false,true,true,false +pondits/larabitm2,pondits,PHP,false,false,false,0,false,false,false,false +matticala/apache-camel,matticala,,false,false,false,0,false,false,false,false +mozbugbox/nukehtml,mozbugbox,Python,false,false,false,0,false,false,false,false +myspectralcom/mysight3,myspectralcom,Processing,false,false,false,0,false,false,false,false +osas/ansible-role-mailman3,osas,Python,false,false,false,0,false,false,false,false +slashdeploy/kpis,slashdeploy,JavaScript,true,false,false,2,false,true,true,false +ankushs92/sample-boot-pagination,ankushs92,Groovy,false,false,false,0,false,false,false,false +spice/spice,spice,C,true,false,false,1,false,true,false,false +spice/spice-protocol,spice,C,false,false,false,0,false,false,false,false +fuadhamidan/moviedb,fuadhamidan,Java,false,false,false,0,false,false,false,false +NTPsec/stratum-1-microserver-howto,NTPsec,Python,false,false,false,0,false,false,false,false +Franc1sco/Franug-PRIVATE-PLUGINS,Franc1sco,,false,false,false,0,false,false,false,false +thienn/a1node,thienn,JavaScript,false,false,false,0,false,false,false,false +codeandsupply/supplybot,codeandsupply,JavaScript,true,false,false,1,false,true,false,false +libosinfo/osinfo-db-tools,libosinfo,Makefile,false,false,false,0,false,false,false,false +seen/seen,seen,RAML,false,false,false,0,false,false,false,false +janneke/debian-guix,janneke,Shell,false,false,false,0,false,false,false,false +passit/simple-asymmetric-js,passit,TypeScript,true,false,false,1,false,true,false,false +Snizer/PI-DEV-TUNISIAMALL3A6-WEB,Snizer,CSS,false,false,false,0,false,false,false,false +yce/phpmaildebug,yce,PHP,false,false,false,0,false,false,false,false +siasar-project/mobile,siasar-project,CSS,true,false,false,3,true,true,true,false +fidencio.garrido/nosqlbenchmark,fidencio.garrido,JavaScript,false,false,false,0,false,false,false,false +gepds/lpa,gepds,,false,false,false,0,false,false,false,false +PiotrekDlang/DraftLib,PiotrekDlang,D,true,false,false,1,false,true,false,false +WZab/fade_ether_protocol,WZab,VHDL,false,false,false,0,false,false,false,false +corretaje_propiedades/sitio_mjd,corretaje_propiedades,JavaScript,false,false,false,0,false,false,false,false +luisolafg/forthon,luisolafg,Fortran,false,false,false,0,false,false,false,false +Bartwillemsen/aurora-framework,Bartwillemsen,PHP,false,false,false,0,false,false,false,false +slang/markdown-styleguide,slang,,false,false,false,0,false,false,false,false +pushrocks/smartlog-destination-local,pushrocks,TypeScript,true,false,false,4,false,true,false,true +wedesoft/aiscm,wedesoft,Scheme,false,false,false,0,false,false,false,false +RLepiller/eatMeJS,RLepiller,JavaScript,false,false,false,0,false,false,false,false +define-private-public/Masala,define-private-public,C++,false,false,false,0,false,false,false,false +pusspounder/CaptureChaturbate,pusspounder,Batchfile,false,false,false,0,false,false,false,false +sane-project/frontends,sane-project,C,true,false,false,1,false,false,false,false +solus-project/os-installer,solus-project,Python,false,false,false,0,false,false,false,false +liskl/python-the-hard-way,liskl,Python,false,false,false,0,false,false,false,false +ad-si-2016-1/projeto2-grupo5,ad-si-2016-1,Java,false,false,false,0,false,false,false,false +thelabnyc/django-oscar/django-oscar-api-checkout,thelabnyc,Python,true,true,false,1,false,true,false,false +ghost-in-the-zsh/rage,ghost-in-the-zsh,Java,false,false,false,0,false,false,false,false +ZatsuneNoMokou/framalink-shortener,ZatsuneNoMokou,JavaScript,false,false,false,0,false,false,false,false +elrikdante/snaz,elrikdante,Haskell,false,false,false,0,false,false,false,false +DerekKent/derekkent.com,DerekKent,HTML,true,false,false,4,true,true,false,true +seartipy/lean-dotfiles,seartipy,Shell,false,false,false,0,false,false,false,false +sisfs/dotfiles,sisfs,Python,false,false,false,0,false,false,false,false +gitlab-org/cookbook-gitlab-runner,gitlab-org,Ruby,false,false,false,0,false,false,false,false +easwareapps/TransparentWidget,easwareapps,Java,false,false,false,0,false,false,false,false +digidoci/web/angular-digidoki,digidoci,JavaScript,true,false,false,1,false,true,false,false +limitland/flatbedcursors,limitland,Shell,true,false,false,2,true,false,true,false +paramander/elm-hybrid,paramander,Haskell,false,false,false,0,false,false,false,false +tobechanged/dmp,tobechanged,JavaScript,false,false,false,0,false,false,false,false +artemklevtsov/benchr,artemklevtsov,R,true,false,false,2,false,true,true,false +xenodora/lipsofsuna,xenodora,C,false,false,false,0,false,false,false,false +Gluttton/Jus,Gluttton,JupyterNotebook,false,false,false,0,false,false,false,false +plotnikau/telebotapi,plotnikau,Java,true,false,true,2,false,false,false,true +ArtOfCode/qpixel,ArtOfCode,Ruby,true,false,false,1,false,true,false,false +jordinas/fed-at-inf,jordinas,Shell,false,false,false,0,false,false,false,false +iot-malmo/emergency-fika-button,iot-malmo,,false,false,false,0,false,false,false,false +juan-/topologygenerator,juan-,C++,false,false,false,0,false,false,false,false +dimitrieh/terms-of-service-CI-boilerplate,dimitrieh,Shell,true,false,false,1,false,true,false,false +BobSteagall/clang-builder,BobSteagall,Shell,false,false,false,0,false,false,false,false +aegir/provision,aegir,PHP,false,false,false,0,false,false,false,false +lens-os/LENS,lens-os,C++,false,false,false,0,false,false,false,false +silvestre.herrera/webdev-todo,silvestre.herrera,JavaScript,false,false,false,0,false,false,false,false +SCoRe-Group/SABNA-Release,SCoRe-Group,C++,false,false,false,0,false,false,false,false +b-rowlingson/pqgisr,b-rowlingson,Python,false,false,false,0,false,false,false,false +tupini07/Magify,tupini07,JavaScript,false,false,false,0,false,false,false,false +ekougs/atos-learning-git,ekougs,,false,false,false,0,false,false,false,false +central-node/CNSS,central-node,CSS,true,false,false,2,false,true,true,false +steve-perkins/fitnessjiffy-spring,steve-perkins,Java,true,false,false,1,false,true,false,false +mugurelenache/The-Journey,mugurelenache,,false,false,false,0,false,false,false,false +ETGL/DistriBoissons,ETGL,,true,false,false,3,true,true,true,false +schwitzerm/shelter-seeker,schwitzerm,CSS,false,false,false,0,false,false,false,false +emergencyx/webapp,emergencyx,PHP,false,false,false,0,false,false,false,false +snowdream/Citest,snowdream,Java,true,false,false,1,false,true,false,false +UsovSam/WorkWithApies,UsovSam,Java,false,false,false,0,false,false,false,false +xymus/sputnit,xymus,Nit,true,false,false,2,false,true,true,false +vedvyas/doxytag2zealdb,vedvyas,Python,false,false,false,0,false,false,false,false +xbsd/Learning-From-Data,xbsd,R,false,false,false,0,false,false,false,false +emergencyx/plugin,emergencyx,C++,false,false,false,0,false,false,false,false +twoBirds/twobirds-core,twoBirds,JavaScript,true,false,false,1,false,false,true,false +leduc1984/roBrowser,leduc1984,JavaScript,false,false,false,0,false,false,false,false +servicepal/local_services,servicepal,Shell,false,false,false,0,false,false,false,false +aniltiwari/awesome-machine-learning,aniltiwari,Python,false,false,false,0,false,false,false,false +pages/zim,pages,HTML,true,false,false,2,false,true,true,false +corossig/Plasium,corossig,C++,false,false,false,0,false,false,false,false +passit/passit-sdk-js,passit,TypeScript,true,false,false,2,false,true,true,false +imp/chrono-humanize-rs,imp,Rust,true,false,false,2,false,true,true,false +SimonHTausch/HiLive,SimonHTausch,C++,false,false,false,0,false,false,false,false +pycqa/infrastructure,pycqa,,true,false,false,1,false,true,false,false +PoroCYon/pg-dis-scripts,PoroCYon,C,false,false,false,0,false,false,false,false +kmeyer/cns-count-analyses,kmeyer,Python,false,false,false,0,false,false,false,false +nasa-jsc-robotics/val_description,nasa-jsc-robotics,Python,true,false,false,3,true,false,true,false +hasura/react-redux-ssr-example,hasura,JavaScript,false,false,false,0,false,false,false,false +pierreduchemin/save-diamond,pierreduchemin,Java,true,false,false,3,true,true,false,true +Mactroll/SwiftBits,Mactroll,Swift,false,false,false,0,false,false,false,false +angular-material-dashboard/angular-material-dashboard,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false +StanfordLegion/legion,StanfordLegion,C++,true,false,false,1,false,true,false,false +andrewnez/package-managers,andrewnez,,false,false,false,0,false,false,false,false +meteor-columbus/meteor-react-redux-spectacle,meteor-columbus,JavaScript,true,false,false,2,false,true,true,false +andrewbanchich/phantom-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +andrewbanchich/hyperspace-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false +andrewbanchich/stellar-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false +andrewbanchich/multiverse-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false +andrewbanchich/spectral-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +gjhenrique/gjhenrique.gitlab.io,gjhenrique,CSS,true,false,false,3,false,false,false,true +HarrisYer/MVCBoostrapAlerts,HarrisYer,C#,false,false,false,0,false,false,false,false +officernd/officernd.gitlab.io,officernd,RAML,true,false,false,2,true,false,true,false +coala/cib,coala,Python,true,true,false,1,false,true,false,false +kylehqcom/kevin,kylehqcom,Go,true,false,false,1,false,true,false,false +paramander/typesafe-websockets,paramander,Haskell,false,false,false,0,false,false,false,false +spec-2.0/examples,spec-2.0,,false,false,false,0,false,false,false,false +BenjaminVanRyseghem/SandGlass,BenjaminVanRyseghem,JavaScript,true,false,false,1,false,true,false,false +DayliSoft/PortalWeb,DayliSoft,JavaScript,false,false,false,0,false,false,false,false +akrisiun/csLibCheck,akrisiun,C#,false,false,false,0,false,false,false,false +flosscoach/flosscoach,flosscoach,CSS,true,false,false,1,false,true,false,false +gbraad/ansible-playbook-kubernetes,gbraad,Shell,false,false,false,0,false,false,false,false +spechide/spechide.gitlab.io,spechide,JavaScript,true,false,false,1,false,true,false,false +priezz/color-term-console,priezz,JavaScript,false,false,false,0,false,false,false,false +kevinkhill/lavacharts,kevinkhill,PHP,true,false,false,1,false,true,false,false +lafrenierejm/dotfiles,lafrenierejm,Vimscript,false,false,false,0,false,false,false,false +laf-intel/laf-llvm-pass,laf-intel,HTML,false,false,false,0,false,false,false,false +CrazyBaboon/Feynman,CrazyBaboon,C,false,false,false,0,false,false,false,false +diegotsouza83/POO,diegotsouza83,Java,false,false,false,0,false,false,false,false +iikem/adaptive-memory-management,iikem,C++,false,false,false,0,false,false,false,false +nishtahir/gradle-gitpack-plugin,nishtahir,Kotlin,false,false,false,0,false,false,false,false +jeongyoonlee/talkingdata,jeongyoonlee,Python,false,false,false,0,false,false,false,false +almondcms/application,almondcms,JavaScript,true,false,false,1,false,true,false,false +normanhughes/eclipse-facul,normanhughes,JavaScript,false,false,false,0,false,false,false,false +HubsNuitDebout/StreamDebout,HubsNuitDebout,Python,false,false,false,0,false,false,false,false +nasso/screengur,nasso,Java,false,false,false,0,false,false,false,false +Vigigo/djangodock,Vigigo,Shell,false,false,false,0,false,false,false,false +tmwae/tmw-ae,tmwae,Shell,false,false,false,0,false,false,false,false +AwkwardAlliance/halfseven,AwkwardAlliance,JavaScript,false,false,false,0,false,false,false,false +jhammer/OptimizationToolkit,jhammer,C++,false,false,false,0,false,false,false,false +amaus/1583_001_inClassExamples,amaus,Java,false,false,false,0,false,false,false,false +victor.trucco/TK-Pie,victor.trucco,C,false,false,false,0,false,false,false,false +yohannes/Thoughtless,yohannes,Swift,false,false,false,0,false,false,false,false +inside-sistemas/mailer.net,inside-sistemas,C#,false,false,false,0,false,false,false,false +BoTranVan/awesome-pentest,BoTranVan,,false,false,false,0,false,false,false,false +BeayemX/Emblem,BeayemX,JavaScript,true,false,false,1,false,false,true,false +esilvert/LDJAM_36,esilvert,GDScript,false,false,false,0,false,false,false,false +decko/epracas-backend,decko,Python,true,true,false,1,false,true,false,false +stackpointer/bootstrap-fixed-width-sidebar-template,stackpointer,HTML,false,false,false,0,false,false,false,false +SomeKittens/rx-viz,SomeKittens,CSS,true,false,false,1,false,false,true,false +ConorIA/dockerfiles,ConorIA,Shell,false,false,false,0,false,false,false,false +wingo/tekuti,wingo,Scheme,false,false,false,0,false,false,false,false +abesson/Sparse_regularization_Fourier,abesson,Matlab,false,false,false,0,false,false,false,false +kunglab/branchynet,kunglab,JupyterNotebook,false,false,false,0,false,false,false,false +artemklevtsov/r-alpine,artemklevtsov,Shell,true,false,false,2,false,false,false,false +alexmohr/openmilight,alexmohr,C++,true,false,false,2,true,true,false,false +adin/mcv-academic,adin,TeX,true,false,false,1,false,true,false,false +emergenzeHack/terremotocentro,emergenzeHack,JavaScript,true,false,false,2,false,true,true,false +IvanSanchez/Leaflet.Marker.SlideTo,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +secApps/android-pedometer,secApps,Java,false,false,false,0,false,false,false,false +esabelhaus/TPP_full_content,esabelhaus,Shell,false,false,false,0,false,false,false,false +interscity/interscity-platform/resource-cataloguer,interscity,Ruby,true,false,false,1,false,true,false,false +interscity/interscity-platform/resource-discoverer,interscity,Ruby,true,false,false,1,false,true,false,false +morph027/gitlab-ci-aptly-cli,morph027,Shell,true,false,false,1,false,true,false,false +drutopia/drutopia_core,drutopia,,false,false,false,0,false,false,false,false +drutopia/drutopia_site,drutopia,,false,false,false,0,false,false,false,false +drutopia/drutopia_user,drutopia,,false,false,false,0,false,false,false,false +piratesahoy/new-horizons,piratesahoy,C,false,false,false,0,false,false,false,false +hrbrmstr/warc,hrbrmstr,R,false,false,false,0,false,false,false,false +dwmw2/openconnect,dwmw2,C,true,false,false,1,false,true,false,false +IvanSanchez/Leaflet.GridLayer.FadeOut,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +antohapp/gibdd,antohapp,Java,false,false,false,0,false,false,false,false +buik/openssl,buik,,false,false,false,0,false,false,false,false +dustyweb/soci-el,dustyweb,EmacsLisp,false,false,false,0,false,false,false,false +morph027/preseed-cinnamon-ubuntu,morph027,Shell,false,false,false,0,false,false,false,false +ilab-public/python2-scientific,ilab-public,,true,false,false,1,false,false,true,false +timkoers/kookplaat,timkoers,C++,false,false,false,0,false,false,false,false +ngulden/niculskin,ngulden,CSS,false,false,false,0,false,false,false,false +jara1292/AppCRM,jara1292,JavaScript,false,false,false,0,false,false,false,false +Skinz3/Symbioz,Skinz3,C#,false,false,false,0,false,false,false,false +jahanjoo/angular-jahanjoo,jahanjoo,JavaScript,true,false,false,1,false,true,false,false +evankrell/capstone,evankrell,HTML,false,false,false,0,false,false,false,false +FreeMCPlugins/PlaytimeReloaded,FreeMCPlugins,Java,false,false,false,0,false,false,false,false +amardeep434/ndevice,amardeep434,C,false,false,false,0,false,false,false,false +ldo/qahirah,ldo,Python,false,false,false,0,false,false,false,false +frissdiegurke/oddlog,frissdiegurke,JavaScript,true,false,false,1,false,true,false,false +lordoscar/omd-computer,lordoscar,Java,false,false,false,0,false,false,false,false +AERIUS/aerius-connect-examples,AERIUS,Python,false,false,false,0,false,false,false,false +ScumCoder/siunitx-russian,ScumCoder,,false,false,false,0,false,false,false,false +mehdadoo/blendHX,mehdadoo,Haxe,false,false,false,0,false,false,false,false +tpl-bookings/tpl-digital-booking,tpl-bookings,JavaScript,false,false,false,0,false,false,false,false +timofonic/bkkkk,timofonic,HTML,false,false,false,0,false,false,false,false +ITX8540/stacy,ITX8540,C#,false,false,false,0,false,false,false,false +aguarino/gemavatar,aguarino,Ruby,false,false,false,0,false,false,false,false +systemos/system,systemos,,false,false,false,0,false,false,false,false +braem/Sequence_Alignment,braem,Java,false,false,false,0,false,false,false,false +vandy-aad-2/aad-2-assg-2,vandy-aad-2,Java,false,false,false,0,false,false,false,false +shank-utils/gitlab-cli,shank-utils,Go,false,false,false,0,false,false,false,false +TheZargor/RegisterP,TheZargor,Java,false,false,false,0,false,false,false,false +adin/journal-list,adin,Python,true,true,false,1,false,true,false,false +dihsaR/Crypto-n-Card-Utils,dihsaR,Swift,false,false,false,0,false,false,false,false +RKIBioinformaticsPipelines/QCumber,RKIBioinformaticsPipelines,HTML,false,false,false,0,false,false,false,false +yangzhihong20141/gitbook,yangzhihong20141,CSS,false,false,false,0,false,false,false,false +stavros/irrigation-controller,stavros,C++,false,false,false,0,false,false,false,false +krazdax5/SQLKit,krazdax5,Swift,false,false,false,0,false,false,false,false +willemmali-sh/chegit,willemmali-sh,Shell,true,false,false,2,false,true,false,true +gitlab-cookbooks/gitlab-elk,gitlab-cookbooks,Ruby,true,false,false,3,false,false,false,true +stellaris/irm,stellaris,,false,false,false,0,false,false,false,false +stavros/TimeTaco,stavros,JavaScript,true,false,false,1,false,true,false,false +maxv/pangoling,maxv,CSS,true,false,false,4,true,true,false,false +relay_sc/relay-bot,relay_sc,JavaScript,false,false,false,0,false,false,false,false +atomfrede/jhipster-ci-example-maven,atomfrede,Java,true,false,true,4,true,true,false,true +lordoscar/omd-xl,lordoscar,Java,false,false,false,0,false,false,false,false +BlackMinou/INF3172,BlackMinou,C,false,false,false,0,false,false,false,false +radek-sprta/ansible-personal,radek-sprta,Shell,false,false,false,0,false,false,false,false +simonbreiter/issue-tracker-web-view,simonbreiter,JavaScript,true,false,false,1,false,true,false,false +brianr/CloudSA_IoT_WG,brianr,,false,false,false,0,false,false,false,false +interscity/interscity-platform/resource-viewer,interscity,JavaScript,true,false,false,1,false,true,false,false +hadrien/aws_lambda_logging,hadrien,Python,true,false,false,2,false,false,false,false +AnDroidEL/requestcep,AnDroidEL,Python,false,true,false,0,false,false,false,false +hbomb79/Titanium,hbomb79,Lua,true,false,false,1,false,true,false,false +skyzohkey/vala-ide,skyzohkey,Vala,false,false,false,0,false,false,false,false +keicoon15/hs_deck_generator,keicoon15,JavaScript,false,false,false,0,false,false,false,false +Krzysztof-Cieslak/FunctionLoader,Krzysztof-Cieslak,F#,false,false,false,0,false,false,false,false +notklaatu/pocketdiceroller,notklaatu,Shell,false,false,false,0,false,false,false,false +deckert/MAML,deckert,JupyterNotebook,false,false,false,0,false,false,false,false +sebdeckers/babel-plugin-transform-commonjs-es2015-modules,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +gmarciani/cudawesome,gmarciani,Cuda,false,false,false,0,false,false,false,false +arafat/yellow-php-user-management-system,arafat,PHP,false,false,false,0,false,false,false,false +sylvain-floury/cours-php,sylvain-floury,PHP,false,false,false,0,false,false,false,false +rawkode/saltstack-dotfiles,rawkode,Shell,false,false,false,0,false,false,false,false +vitthaldharne/special_lab,vitthaldharne,,false,false,false,0,false,false,false,false +itayronen/itay-ecs,itayronen,TypeScript,false,false,false,0,false,false,false,false +amitthekumar/code-and-craft,amitthekumar,JavaScript,true,false,false,1,false,true,false,false +widerin/vlbg-webdev-1016,widerin,Python,true,false,false,2,true,true,false,false +robigalia/book,robigalia,CSS,true,false,false,1,false,true,false,false +ZZ3F2/MODL,ZZ3F2,C++,false,false,false,0,false,false,false,false +explooosion/CampusGuide,explooosion,JavaScript,false,false,false,0,false,false,false,false +thelabnyc/wagtail-hallo-plugins,thelabnyc,JavaScript,true,false,false,1,false,true,false,false +ralt/virtualpath,ralt,Rust,false,false,false,0,false,false,false,false +public-mirror/gnu-social,public-mirror,PHP,false,false,false,0,false,false,false,false +iup-bremen/pdap-2016,iup-bremen,JupyterNotebook,false,false,false,0,false,false,false,false +loic.cg.rossi/pymiedap,loic.cg.rossi,JupyterNotebook,false,false,false,0,false,false,false,false +alxm/a2x,alxm,C,false,false,false,0,false,false,false,false +rosbag-development-team/rosbag-hdf5,rosbag-development-team,Python,false,false,false,0,false,false,false,false +rust-lang/cargo,rust-lang,Rust,false,false,false,0,false,false,false,false +abre/cookiecutter-python,abre,Python,true,false,false,1,false,true,false,false +technomancy/cardinality,technomancy,Lua,false,false,false,0,false,false,false,false +BulbThinker/Ankh,BulbThinker,C++,true,false,false,1,false,true,false,false +engSERGIU/React,engSERGIU,Java,false,false,false,0,false,false,false,false +Jonathing/JonBlockMod,Jonathing,Java,false,false,false,0,false,false,false,false +LevaValeria/codhome,LevaValeria,C++,false,false,false,0,false,false,false,false +probability/prob140,probability,JupyterNotebook,true,false,false,2,false,true,true,false +ceta/job-recommender-system,ceta,Python,false,false,false,0,false,false,false,false +lad.slezak/ydashboard,lad.slezak,Ruby,false,false,false,0,false,false,false,false +janslow/gitlab-ci-variables,janslow,TypeScript,true,false,false,2,false,true,true,false +HBPro/Uniholic_v3,HBPro,C++,false,false,false,0,false,false,false,false +duozhasht/homecook,duozhasht,TypeScript,false,false,false,0,false,false,false,false +bulldogcreative/SlimCD,bulldogcreative,PHP,false,false,false,0,false,false,false,false +cspublic/eve-playground,cspublic,,false,false,false,0,false,false,false,false +adventure-land/remote-monitor,adventure-land,HTML,false,false,false,0,false,false,false,false +joaopluis/beam,joaopluis,CSS,false,false,false,0,false,false,false,false +T4DLearnLab/NoteMyProgress,T4DLearnLab,JavaScript,false,false,false,0,false,false,false,false +BeeBee/vratnej,BeeBee,PHP,false,false,false,0,false,false,false,false +nickdonnelly/Horus,nickdonnelly,C++,true,false,false,4,false,false,false,false +xavys/cmd-arkanoid,xavys,C++,false,false,false,0,false,false,false,false +BERTRANDBenjamin/lowhifi,BERTRANDBenjamin,CSS,false,false,false,0,false,false,false,false +moosehawk/reactmpls,moosehawk,JavaScript,false,false,false,0,false,false,false,false +rudolfo/ec-chicago,rudolfo,JavaScript,false,false,false,0,false,false,false,false +fempar/XH5For,fempar,Fortran,false,false,false,0,false,false,false,false +fempar/FPL,fempar,Fortran,false,false,false,0,false,false,false,false +Trixiean/my-c-plus-plus,Trixiean,C++,false,false,false,0,false,false,false,false +fjaimes/fjjs,fjaimes,PHP,false,false,false,0,false,false,false,false +marcofugaro/gitlab-poop,marcofugaro,JavaScript,false,false,false,0,false,false,false,false +aossie/Scavenger,aossie,Scala,true,false,false,1,false,true,false,false +Touristsss/BookStore,Touristsss,Java,false,false,false,0,false,false,false,false +Visenya/WebProjet,Visenya,PHP,false,false,false,0,false,false,false,false +riovir/slush-vue-webpack,riovir,JavaScript,false,false,false,0,false,false,false,false +InfiniteNesLives/INL-retro-progdump,InfiniteNesLives,C,false,false,false,0,false,false,false,false +congaz/deadliner,congaz,Python,false,false,false,0,false,false,false,false +dshivley/PlexACD,dshivley,Shell,false,false,false,0,false,false,false,false +danxuliu/android_kernel_fairphone_fp1,danxuliu,,false,false,false,0,false,false,false,false +danxuliu/android_vendor_fairphone_fp1,danxuliu,C,false,false,false,0,false,false,false,false +rmenn/atm-dispening,rmenn,HTML,false,false,false,0,false,false,false,false +russphillips/risus-web,russphillips,PHP,false,false,false,0,false,false,false,false +dustyweb/activitypub.rocks,dustyweb,Scheme,false,false,false,0,false,false,false,false +DinaMorad1/OdooChat,DinaMorad1,Java,false,false,false,0,false,false,false,false +comarco/docza-pizzaloca,comarco,CSS,false,false,false,0,false,false,false,false +ssirois/hephaestus,ssirois,Shell,false,false,false,0,false,false,false,false +HansDeveloper/replacements,HansDeveloper,JavaScript,false,false,false,0,false,false,false,false +quantcoin/graphene,quantcoin,C++,true,false,false,3,true,true,true,false +sf-projects/doc-server,sf-projects,Java,true,false,true,1,true,false,false,false +IvanSanchez/Leaflet.TileLayer.MBTiles,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +openvpn/openvpn,openvpn,C,false,false,false,0,false,false,false,false +thelabnyc/wagtail-nav-menus,thelabnyc,Python,true,false,false,1,false,true,false,false +Molino/rack_microtubes,Molino,,false,false,false,0,false,false,false,false +srrg-software/srrg_core,srrg-software,C++,false,false,false,0,false,false,false,false +alph-project/alph.js,alph-project,JavaScript,false,false,false,0,false,false,false,false +somatorio/slides-gui-em-docker,somatorio,CSS,true,false,false,1,false,false,true,false +rudolfo/emacs-flow-jsx,rudolfo,EmacsLisp,false,false,false,0,false,false,false,false +Valtech-Amsterdam/AspnetCoreHoneyPot,Valtech-Amsterdam,C#,true,false,false,3,true,false,false,true +osslugaru/osslugaru.gitlab.io,osslugaru,Python,true,false,false,1,false,true,false,false +crondaemon/wireshark,crondaemon,C,true,false,false,2,true,true,false,false +eric.dalrymple/Timebot,eric.dalrymple,Python,false,false,false,0,false,false,false,false +szeneca/GoL-python,szeneca,Python,false,false,false,0,false,false,false,false +rtorresware/kivymd-old,rtorresware,Python,false,false,false,0,false,false,false,false +pythonIOT-collaborizm/pythoniot,pythonIOT-collaborizm,Python,false,false,false,0,false,false,false,false +catalyst-it/vagrant-puppetfile,catalyst-it,Ruby,true,false,false,1,false,true,false,false +catalyst-it/vagrant-ruby,catalyst-it,Ruby,false,false,false,0,false,false,false,false +zesterer/tupai,zesterer,C++,false,false,false,0,false,false,false,false +wildeChen/MobileFramework,wildeChen,JavaScript,false,false,false,0,false,false,false,false +craigbarnes/lua-discount,craigbarnes,C,true,false,false,2,false,true,false,false +cip-project/cip-testing/testing,cip-project,Shell,false,false,false,0,false,false,false,false +WMS-Robotics/5076A-Starstruck,WMS-Robotics,C,false,false,false,0,false,false,false,false +define-private-public/PeterShirley-RayTracing-Nim,define-private-public,C,false,false,false,0,false,false,false,false +iog-austria/mesa-solar,iog-austria,Python,false,false,false,0,false,false,false,false +gensandman/ExIsle,gensandman,,false,false,false,0,false,false,false,false +dpurgin/thegame,dpurgin,JavaScript,false,false,false,0,false,false,false,false +200ok/codegraph,200ok,Clojure,false,false,false,0,false,false,false,false +mt6797/vendor,mt6797,,false,false,false,0,false,false,false,false +SouravJaiswal/anokha-2017-backend,SouravJaiswal,JavaScript,false,false,false,0,false,false,false,false +cPTechs/autossh-iterm,cPTechs,Perl,false,false,false,0,false,false,false,false +dinhbinh1610/ejs-layout,dinhbinh1610,JavaScript,false,false,false,0,false,false,false,false +serpro/double-agent-validator,serpro,JavaScript,true,false,true,4,false,true,false,true +nodejs-meetup/1-presentation,nodejs-meetup,CSS,false,false,false,0,false,false,false,false +Sosha/Raspberry_TGBot,Sosha,Python,false,false,false,0,false,false,false,false +csprenger/docker-qt-gcc,csprenger,Shell,true,false,false,3,true,true,false,false +sipvera/blog,sipvera,,false,false,false,0,false,false,false,false +lurduyor/pizzagate,lurduyor,HTML,false,false,false,0,false,false,false,false +teknesystems/tmatlib,teknesystems,C++,false,false,false,0,false,false,false,false +victim_crasher/PPWC_2,victim_crasher,PHP,false,false,false,0,false,false,false,false +define-private-public/stopwatch,define-private-public,Nim,false,false,false,0,false,false,false,false +c.magyar/archlinux-usb,c.magyar,HTML,false,false,false,0,false,false,false,false +siasar-project/website,siasar-project,PHP,false,false,false,0,false,false,false,false +Schrabbdian/wobblePlatformer,Schrabbdian,C#,false,false,false,0,false,false,false,false +elocus/elocus,elocus,HTML,false,false,false,0,false,false,false,false +define-private-public/stb_image-Nim,define-private-public,C,false,false,false,0,false,false,false,false +trustable/mustard,trustable,Python,false,true,false,0,false,false,false,false +gitlab-jp/meetup,gitlab-jp,Ruby,false,false,false,0,false,false,false,false +angular-material-home/angular-material-home,angular-material-home,JavaScript,true,false,false,2,false,true,true,false +FritsHoogland/vagrant-builder,FritsHoogland,Shell,false,false,false,0,false,false,false,false +das-dream-team/ludum-dare-37,das-dream-team,C#,false,false,false,0,false,false,false,false +Plague_Doctor/spw,Plague_Doctor,Python,true,false,false,1,false,true,false,false +twentyeight7/alexa-app-savant,twentyeight7,JavaScript,false,false,false,0,false,false,false,false +timlyo/Hitman,timlyo,Rust,true,false,false,1,false,true,false,false +xuhdev/revealjs-explicit-link,xuhdev,JavaScript,false,false,false,0,false,false,false,false +nsugimoto/prolabo-3k,nsugimoto,,false,false,false,0,false,false,false,false +simp/simp-core,simp,Ruby,true,false,false,2,false,true,false,false +thecyberd3m0n/backend-rustreamer,thecyberd3m0n,JavaScript,false,false,false,0,false,false,false,false +devops-df/rancher-catalog,devops-df,,false,false,false,0,false,false,false,false +mbouden/AllWin-2016-Mobile,mbouden,Java,false,false,false,0,false,false,false,false +norad/relay,norad,Ruby,true,false,false,7,false,false,false,false +mcepl/json_diff,mcepl,Python,false,false,false,0,false,false,false,false +integer32llc/cargo-doc-coverage,integer32llc,Rust,false,false,false,0,false,false,false,false +wdd/rt-sharp,wdd,C#,true,false,false,2,false,false,false,false +cgmp/gta,cgmp,C#,true,false,false,1,true,false,false,false +ethanfrogers/apex-junit,ethanfrogers,JavaScript,false,false,false,0,false,false,false,false +anarcat/stressant,anarcat,Python,true,false,false,1,false,true,false,false +datenstrom/sec-utils,datenstrom,Python,false,false,false,0,false,false,false,false +hyn-me/multi-tenant,hyn-me,PHP,false,false,false,0,false,false,false,false +sunbiz/lh-toolkit-docker,sunbiz,,false,false,false,0,false,false,false,false +tomikais/fotobox,tomikais,C++,false,false,false,0,false,false,false,false +sNewell/thenewells,sNewell,TypeScript,true,false,false,1,true,false,false,false +tdely/freischutz,tdely,PHP,true,false,false,1,false,true,false,false +vancan1ty/emacs-backward-forward,vancan1ty,EmacsLisp,false,false,false,0,false,false,false,false +ulrich.giraud/kOS,ulrich.giraud,,false,false,false,0,false,false,false,false +notch8/stack_car,notch8,HTML,true,false,false,1,false,true,false,false +termapps/termoneplus,termapps,Java,false,false,false,0,false,false,false,false +pair-test/marketplace-service,pair-test,JavaScript,false,false,false,0,false,false,false,false +kandhan-kuhan-t/dalal,kandhan-kuhan-t,Python,false,false,false,0,false,false,false,false +cubekrowd/website,cubekrowd,HTML,true,false,false,1,false,true,false,false +P1xt/get-job-ready,P1xt,JavaScript,false,false,false,0,false,false,false,false +dzmitry-lahoda/ediscovery-files,dzmitry-lahoda,HTML,false,false,false,0,false,false,false,false +sytses/dotfiles,sytses,Shell,false,false,false,0,false,false,false,false +hesafredrika/server,hesafredrika,Python,false,true,false,0,false,false,false,false +non.est.sacra/joker,non.est.sacra,Java,false,false,true,0,false,false,false,false +study-group-brazil/toptal,study-group-brazil,,false,false,false,0,false,false,false,false +avilay/electron-react-python-app,avilay,JavaScript,false,false,false,0,false,false,false,false +oprudkyi/openshift-templates,oprudkyi,,false,false,false,0,false,false,false,false +tramwayjs/tramway-core,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +ticoombs/dotfiles,ticoombs,Vimscript,false,false,false,0,false,false,false,false +uniteach/sparklist-minimal,uniteach,Java,false,false,true,0,false,false,false,false +fwilhe/ingo,fwilhe,Ruby,true,false,false,1,false,true,false,false +InstitutMaupertuis/simple_rviz_plugin,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +ytkim83/set_vimrc,ytkim83,Vimscript,false,false,false,0,false,false,false,false +velmuruganv/ci-api,velmuruganv,Java,true,false,true,3,true,false,true,false +define-private-public/HTML5-Canvas-Nim,define-private-public,Nim,false,false,false,0,false,false,false,false +shell-or2/rEMpy,shell-or2,Python,false,false,false,0,false,false,false,false +dokuwiki/PhotoGallery_plugin,dokuwiki,PHP,false,false,false,0,false,false,false,false +Team4139/2015-Robot-Code,Team4139,C++,false,false,false,0,false,false,false,false +thomas.kingsford/robotic-laser-tag,thomas.kingsford,C++,false,false,false,0,false,false,false,false +Zipcore/SourceBansPP,Zipcore,PHP,false,false,false,0,false,false,false,false +gandra404/vue-hello-world,gandra404,JavaScript,true,false,false,1,false,true,false,false +Zipcore/WoWmod,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +akira/IFCD0112,akira,PHP,false,false,false,0,false,false,false,false +rassafi/CoDesignMicroBlaze,rassafi,VHDL,false,false,false,0,false,false,false,false +xificurC/freetest,xificurC,Shell,false,false,false,0,false,false,false,false +drmrvr12/jp2gmdppvb,drmrvr12,VisualBasic,false,false,false,0,false,false,false,false +roddhjav/pass-import,roddhjav,Python,true,false,false,3,false,true,true,false +IlForumDellaBirra/BrewPlus-IFDB,IlForumDellaBirra,Java,false,false,false,0,false,false,false,false +fdroid/jekyll-fdroid,fdroid,Ruby,true,false,false,1,false,true,false,false +buildfunthings/qttt,buildfunthings,Clojure,true,false,false,1,false,true,false,false +bent10/stacked-menu,bent10,JavaScript,true,false,false,1,false,false,true,false +tspiteri/gmp-mpfr-sys,tspiteri,C,true,false,false,1,false,true,false,false +uikitty/uikitty3,uikitty,HTML,false,false,false,0,false,false,false,false +pstupar/ground-up,pstupar,JavaScript,false,false,false,0,false,false,false,false +tvaughan/terraform-aws-starterkit,tvaughan,HCL,true,false,false,1,false,true,false,false +dxld/ghc-mod,dxld,Haskell,true,false,false,2,true,true,false,false +dosuken123/archaeologist2,dosuken123,JavaScript,false,false,false,0,false,false,false,false +CinemaPress/cinemapress.gitlab.io,CinemaPress,HTML,true,false,false,1,false,true,false,false +inkscape/inkscape-web-i18n,inkscape,Shell,true,false,false,1,false,true,false,false +geocachinghq/reviewer_scripts,geocachinghq,JavaScript,false,false,false,0,false,false,false,false +nodejs-meetup/1-tutorial,nodejs-meetup,Shell,false,false,false,0,false,false,false,false +nodejs-meetup/1-advanced-tutorial,nodejs-meetup,Shell,false,false,false,0,false,false,false,false +laanekass/TunniDemod,laanekass,JavaScript,false,false,false,0,false,false,false,false +jacekkowalczyk82/freebsd,jacekkowalczyk82,Shell,false,false,false,0,false,false,false,false +5guys/PDS_5G,5guys,Java,false,false,false,0,false,false,false,false +tramwayjs/tramway-core-dependency-injector,tramwayjs,JavaScript,true,false,false,1,false,true,false,false +exo-one/svst-docker,exo-one,Objective-C,true,false,false,1,false,false,false,false +ezrast/crometheus,ezrast,Crystal,true,false,false,2,false,true,true,false +cascornelissen/bash,cascornelissen,Shell,false,false,false,0,false,false,false,false +parmenti/pytreeview,parmenti,JavaScript,false,false,false,0,false,false,false,false +panaczech/ZorroToolbox,panaczech,Python,false,false,false,0,false,false,false,false +brunetto/ghc2017,brunetto,Go,false,false,false,0,false,false,false,false +IDE_MTOP_PUBLICO/MTOPOpenData,IDE_MTOP_PUBLICO,Python,false,false,false,0,false,false,false,false +rlbaker/wav,rlbaker,Rust,true,false,false,1,false,true,false,false +sarneaud/hello-d-x86-bios,sarneaud,Assembly,false,false,false,0,false,false,false,false +Laban/thesis,Laban,Python,false,false,false,0,false,false,false,false +stavros/lighten-the-web,stavros,CSS,false,false,false,0,false,false,false,false +sofar/insidethebox,sofar,Lua,false,false,false,0,false,false,false,false +Sakuhl/pwgenr,Sakuhl,Rust,true,false,false,1,false,true,false,false +christian.schroeder/ForConX,christian.schroeder,Python,false,false,false,0,false,false,false,false +citygro/vdata,citygro,JavaScript,false,false,false,0,false,false,false,false +MAXIV-HDF5/hdf5-web-gui,MAXIV-HDF5,JavaScript,false,false,false,0,false,false,false,false +Rochlitz.R/custEM,Rochlitz.R,HTML,false,false,false,0,false,false,false,false +fsanches/MagnavoxOdyssey1_KICAD,fsanches,,false,false,false,0,false,false,false,false +Feulner/Firmware-Update-Tool-HTC10,Feulner,Batchfile,false,false,false,0,false,false,false,false +casserpillar/awoo-online,casserpillar,JavaScript,false,false,false,0,false,false,false,false +Mechtecs/lorum,Mechtecs,JavaScript,false,false,false,0,false,false,false,false +velesgs/recheckerdb,velesgs,SourcePawn,false,false,false,0,false,false,false,false +funkydev/funkytunes,funkydev,Kotlin,false,false,false,0,false,false,false,false +mottu/ikura,mottu,,false,false,false,0,false,false,false,false +InstitutMaupertuis/simple_rostest,InstitutMaupertuis,CMake,false,false,false,0,false,false,false,false +mayan-edms/manual,mayan-edms,,false,false,false,0,false,false,false,false +luspi/imgurqt,luspi,C++,false,false,false,0,false,false,false,false +LuizPPA/PhariDocGen,LuizPPA,Ruby,false,false,false,0,false,false,false,false +TC01/quasselconf,TC01,Python,false,false,false,0,false,false,false,false +git-cola/git-cola,git-cola,Python,false,false,false,0,false,false,false,false +paradox_society/resume_manager,paradox_society,PHP,false,false,false,0,false,false,false,false +doctorj/interview-prep,doctorj,Python,true,true,false,1,false,true,false,false +Ogure/TIPE-Analyse-son,Ogure,Python,false,false,false,0,false,false,false,false +robjloranger/cmt,robjloranger,Go,false,false,false,0,false,false,false,false +tonyfinn/docker-python3-kivy,tonyfinn,,false,false,false,0,false,false,false,false +uTox/website,uTox,HTML,false,false,false,0,false,false,false,false +athar/dotfiles,athar,Vimscript,false,false,false,0,false,false,false,false +pymeshnet/Community-Networks-for-Hacktivists,pymeshnet,,false,false,false,0,false,false,false,false +isard/isard-vdi,isard,Shell,false,false,false,0,false,false,false,false +theoswo/WeaponSkinsPlusPlus,theoswo,,false,false,false,0,false,false,false,false +trustworthy-refactoring/refactorer,trustworthy-refactoring,OCaml,true,false,false,1,true,false,false,false +secretivecactus/fe-conversation-editor,secretivecactus,Java,false,false,true,0,false,false,false,false +rodrigorgs/msr17-challenge,rodrigorgs,R,false,false,false,0,false,false,false,false +tocodev/parcel,tocodev,JavaScript,true,false,false,1,false,true,false,false +mmk2410/intellij-idea-ultimate,mmk2410,Shell,false,false,false,0,false,false,false,false +selfReferentialName/foxtrot-greyhound,selfReferentialName,Assembly,false,false,false,0,false,false,false,false +csprenger/AGE,csprenger,C++,false,false,false,0,false,false,false,false +kitlaan/mwoskill,kitlaan,JavaScript,true,false,false,1,false,false,true,false +PPL2017csui/PPLA3,PPL2017csui,HTML,true,false,false,1,false,true,false,false +PPL2017csui/PPLB3,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false +PPL2017csui/PPLD4,PPL2017csui,Java,true,false,false,2,false,true,true,false +PPL2017csui/PPLB4,PPL2017csui,Ruby,true,false,false,2,false,true,true,false +PPL2017csui/PPLC4,PPL2017csui,,false,false,false,0,false,false,false,false +PPL2017csui/PPLD3,PPL2017csui,PHP,true,false,false,1,false,true,false,false +bertof/MyDotFiles,bertof,Shell,false,false,false,0,false,false,false,false +jkuebart/Leaflet.VectorTileLayer,jkuebart,JavaScript,false,false,false,0,false,false,false,false +anoerman/aluni_v2,anoerman,PHP,false,false,false,0,false,false,false,false +jgora/BTscoAudio,jgora,Java,false,false,false,0,false,false,false,false +exitlive/gitlab-dart,exitlive,Dart,true,false,false,2,false,true,true,false +tp3/JustIntonation,tp3,C++,false,false,false,0,false,false,false,false +WZab/Artix-DMA1,WZab,C,false,false,false,0,false,false,false,false +idcmardelplata/Ejemplo,idcmardelplata,JavaScript,false,false,false,0,false,false,false,false +nemolovich/DockerPIC,nemolovich,Ruby,false,false,true,0,false,false,false,false +revaz/Gtools,revaz,Python,true,false,false,1,true,false,false,false +revaz/pNbody,revaz,C,true,false,false,1,true,false,false,false +Laudanomium/Merieux-Co-eLAB,Laudanomium,JavaScript,false,false,false,0,false,false,false,false +exadra37-bash/package-manager,exadra37-bash,Shell,false,false,false,0,false,false,false,false +digidoci/digidoci-api,digidoci,RAML,false,false,false,0,false,false,false,false +bneall/Gview,bneall,Python,false,false,false,0,false,false,false,false +v01d-gl/translator-text,v01d-gl,Python,false,true,false,0,false,false,false,false +garantiertnicht/DiscordEmbed,garantiertnicht,Java,false,false,true,0,false,false,false,false +lumi/minidom-rs,lumi,Rust,true,false,false,1,false,true,false,false +redhat-crypto/fedora-crypto-policies,redhat-crypto,Perl,true,false,false,1,false,true,false,false +nucleus-uog/nucleus,nucleus-uog,Python,true,true,false,1,true,false,false,false +trongle/gotalk,trongle,Go,false,false,false,0,false,false,false,false +vadimadr/gpss-stuff,vadimadr,,false,false,false,0,false,false,false,false +wong-angular-projects/angular-project-1,wong-angular-projects,,false,false,false,0,false,false,false,false +szymon.szypulski/inspec-blog-post,szymon.szypulski,Ruby,false,false,false,0,false,false,false,false +Pitj3/Core-CS,Pitj3,C#,false,false,false,0,false,false,false,false +joshlambert/hello-world,joshlambert,Shell,true,false,false,1,false,false,true,false +lumin/benchmark,lumin,Shell,false,false,false,0,false,false,false,false +slashdeploy/podcast,slashdeploy,,false,false,false,0,false,false,false,false +gelaim/roadAwareness,gelaim,JupyterNotebook,false,false,false,0,false,false,false,false +akita/gcn3,akita,Go,true,false,false,4,true,true,true,false +penkit/site,penkit,HTML,false,false,false,0,false,false,false,false +shirazlug/shirazlug-content-migrate,shirazlug,Python,false,false,false,0,false,false,false,false +memosa/meteor-gitlab-ci,memosa,JavaScript,true,false,false,2,false,true,true,false +axet/android-audio-library,axet,Java,false,false,false,0,false,false,false,false +sue445/gitlab-meetup-tokyo-1,sue445,Ruby,true,false,false,1,false,false,true,false +patkennedy79/picture_video_organizer,patkennedy79,Python,true,true,false,1,false,true,false,false +chef-platform/gitlab-ci-runner,chef-platform,Ruby,false,false,false,0,false,false,false,false +RobertZenz/jMathPaper,RobertZenz,Java,false,false,false,0,false,false,false,false +emimontesdeoca/Tic-Tac-Toe-WindowsForms,emimontesdeoca,C#,false,false,false,0,false,false,false,false +buk-nano/chef,buk-nano,TypeScript,false,false,false,0,false,false,false,false +perobertson/scripts,perobertson,Shell,true,false,false,3,true,true,true,false +wallzero/ui-router-react-digest,wallzero,TypeScript,true,false,false,5,true,true,true,true +Creased/docker-libreoffice-online,Creased,,false,false,false,0,false,false,false,false +Rafisa/StruggleOfDefeat,Rafisa,Java,false,false,false,0,false,false,false,false +microservices-for-everyone/continuous_delivery,microservices-for-everyone,Shell,false,false,false,0,false,false,false,false +neachdainn/aspen,neachdainn,Rust,true,false,false,3,true,true,false,false +pfc_QAS/QAS,pfc_QAS,C++,false,false,false,0,false,false,false,false +vanilla-rtb/vanilla-rtb,vanilla-rtb,C++,false,false,false,0,false,false,false,false +Gert-dev/grestful,Gert-dev,D,false,false,false,0,false,false,false,false +aiakos/django-auth-oidc,aiakos,Python,false,false,false,0,false,false,false,false +mailcare/mailcare,mailcare,PHP,true,false,false,1,false,true,false,false +Neuromancer42/sicp_exercise,Neuromancer42,Racket,false,false,false,0,false,false,false,false +fresheyeball/Compactable,fresheyeball,Haskell,true,false,false,1,true,false,false,false +vimal-lab/capstone-javareference-app,vimal-lab,Java,false,false,true,0,false,false,false,false +axet/wget,axet,Java,false,false,true,0,false,false,false,false +laconfdev/symposion_app,laconfdev,HTML,true,false,false,3,true,true,true,false +isaakm/Custom-Prebake,isaakm,,false,false,false,0,false,false,false,false +house7/bullets,house7,JavaScript,true,false,false,1,false,true,false,false +victorious-secret-4/android,victorious-secret-4,Java,false,false,false,0,false,false,false,false +garciaae/alejandrogarcia,garciaae,HTML,false,false,false,0,false,false,false,false +DevTec/ArtisticShowroom.,DevTec,Java,false,false,true,0,false,false,false,false +gameGroup20170306/game,gameGroup20170306,HTML,false,false,false,0,false,false,false,false +robblue2x/magnesium,robblue2x,JavaScript,true,false,false,3,true,false,true,true +eval/lemme-pry,eval,Ruby,true,false,false,1,false,true,false,false +Thaodan/firefox-kde-opensuse,Thaodan,Shell,false,false,false,0,false,false,false,false +argaar/nagios-plugins,argaar,Perl,false,false,false,0,false,false,false,false +jnnjenn/portal-obsequios,jnnjenn,PHP,false,false,false,0,false,false,false,false +ball-zero/ball,ball-zero,Scheme,false,false,false,0,false,false,false,false +Lignum/urn-computercraft-binding,Lignum,Lua,false,false,false,0,false,false,false,false +sparrara/Andar1,sparrara,C,false,false,false,0,false,false,false,false +dustyweb/wireworld-el,dustyweb,EmacsLisp,false,false,false,0,false,false,false,false +aurel/docker_swarm_ansible,aurel,Python,false,false,false,0,false,false,false,false +blauweschuit/schuitsite,blauweschuit,CSS,false,false,false,0,false,false,false,false +Eremanth/Madrona_Total_War,Eremanth,Python,false,false,false,0,false,false,false,false +libidn/libidn2,libidn,C,true,false,false,2,false,false,false,false +Trezdog44/mazdatweaks,Trezdog44,CSS,true,false,false,2,false,true,true,false +mzdonline/AR4,mzdonline,Shell,false,false,false,0,false,false,false,false +makeorg/platform/semantic-api,makeorg,Scala,true,false,false,1,true,false,false,false +genthree/overlay,genthree,Shell,false,false,false,0,false,false,false,false +PHSC/PHSC-Instant-Messaging-App,PHSC,C#,false,false,false,0,false,false,false,false +blitzgren/gitlab-game-demo,blitzgren,TypeScript,true,false,false,1,false,true,false,false +peerity/chaincore,peerity,Go,false,false,false,0,false,false,false,false +andrewn/focus,andrewn,JavaScript,false,false,false,0,false,false,false,false +v01d-sk/awkward,v01d-sk,Lua,false,false,false,0,false,false,false,false +exadra37-dockerize-vscode/vscode-docker-cli,exadra37-dockerize-vscode,Shell,false,false,false,0,false,false,false,false +wuil/retrofit2_swapi,wuil,Java,false,false,false,0,false,false,false,false +bojesmuh/HMVC-CI,bojesmuh,PHP,false,false,false,0,false,false,false,false +f1ssi0n/F1-source-sdk-2013,f1ssi0n,C++,true,false,false,1,true,false,false,false +ScribeSoftware/reference-app-monitoring,ScribeSoftware,JavaScript,false,false,false,0,false,false,false,false +NUKMUK/Kaapo,NUKMUK,JavaScript,false,false,false,0,false,false,false,false +minetest/minetest_game,minetest,Lua,false,false,false,0,false,false,false,false +worldmind/mindstate,worldmind,TeX,false,false,false,0,false,false,false,false +harbottle/powershell-wix,harbottle,PowerShell,false,false,false,0,false,false,false,false +projectbodhi/projectbodhi.gitlab.io,projectbodhi,CSS,true,false,false,1,false,true,false,false +somatorio/cv,somatorio,,true,false,false,2,true,true,false,false +paprotsky/laravel-crud,paprotsky,JavaScript,false,false,false,0,false,false,false,false +kyledouglasolsen/ConstructionSystem,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +angular4/ng4,angular4,TypeScript,false,false,false,0,false,false,false,false +spirate/cms,spirate,PHP,false,false,false,0,false,false,false,false +ysb33r/GradlePluginWorkshop,ysb33r,Groovy,false,false,false,0,false,false,false,false +cschroeter/react-graphql,cschroeter,JavaScript,false,false,false,0,false,false,false,false +TeeFirefly/FireNow-Marshmallow-kernel,TeeFirefly,,false,false,false,0,false,false,false,false +9tripod/x3399_linux,9tripod,,false,false,false,0,false,false,false,false +krayon/packtdl,krayon,Shell,false,false,false,0,false,false,false,false +hpc17-raspi-cluster/raspi-cluster,hpc17-raspi-cluster,JupyterNotebook,false,false,false,0,false,false,false,false +bow-simulator/bow-simulator,bow-simulator,C++,false,false,false,0,false,false,false,false +grails-3-book/asciibooks,grails-3-book,CSS,true,false,false,2,true,true,false,false +Harble/TanjiCore,Harble,C#,false,false,false,0,false,false,false,false +ldo/harfpy,ldo,Python,false,false,false,0,false,false,false,false +ldo/python_freetype,ldo,Python,false,false,false,0,false,false,false,false +pbarjoueian/k-means-clustering,pbarjoueian,Java,false,false,false,0,false,false,false,false +mtnygard/architecture-without-an-end-state,mtnygard,,false,false,false,0,false,false,false,false +hudsonmartins/TCC-NavegacaoAutonoma,hudsonmartins,C,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/toolbelt,gitlab-com,,false,false,false,0,false,false,false,false +jsprengers/spring-rest-kotlin-tips,jsprengers,Kotlin,false,false,true,0,false,false,false,false +hisa/hisa,hisa,C++,false,false,false,0,false,false,false,false +zlamalp/intellij-plugin-ldif,zlamalp,Java,false,false,false,0,false,false,false,false +pantomath-io/panto,pantomath-io,Go,true,false,false,5,true,true,false,true +andrew.n.sutton/beaker-old,andrew.n.sutton,C++,false,false,false,0,false,false,false,false +IvanSanchez/soclial,IvanSanchez,JavaScript,false,false,false,0,false,false,false,false +arbon/CuttingEdge,arbon,C,false,false,false,0,false,false,false,false +rcsoccersim3d/rclm2,rcsoccersim3d,C++,false,false,false,0,false,false,false,false +kollavarsham/smc-webfonts,kollavarsham,CSS,true,false,false,1,false,true,false,false +patwari.puneet.ska/MAC-SEEN,patwari.puneet.ska,Java,false,false,false,0,false,false,false,false +jlecorre/ansible-bootstrap-debian-server,jlecorre,Ruby,false,false,false,0,false,false,false,false +contextualcode/RichTextEditorCustomTagsBundle,contextualcode,XSLT,false,false,false,0,false,false,false,false +Tagmeh/sap_remover,Tagmeh,QML,false,false,false,0,false,false,false,false +air-pollution-abatement/Cloud,air-pollution-abatement,JavaScript,false,false,false,0,false,false,false,false +mejo-/ansible-role-nextcloud,mejo-,Python,false,false,false,0,false,false,false,false +ismail-s/JTime,ismail-s,Kotlin,true,false,false,6,true,true,true,false +shinzao/laravel-helper,shinzao,PHP,false,false,false,0,false,false,false,false +ciemat-psa/Optifmus,ciemat-psa,C++,false,false,false,0,false,false,false,false +shad1w/startpage,shad1w,CSS,false,false,false,0,false,false,false,false +yogeshkamble/flask-filters,yogeshkamble,Python,false,false,false,0,false,false,false,false +our-sci/reflectance-spec-PCB,our-sci,,false,false,false,0,false,false,false,false +benjspriggs/qc2017,benjspriggs,TeX,false,false,false,0,false,false,false,false +Manawydan/Public,Manawydan,,false,false,false,0,false,false,false,false +damien.andre/pydic,damien.andre,Python,false,false,false,0,false,false,false,false +tillg/spotz2,tillg,JavaScript,false,false,false,0,false,false,false,false +elixir-bootcamp/bootcamp,elixir-bootcamp,CSS,false,false,false,0,false,false,false,false +sethduda/ats,sethduda,SQF,false,false,false,0,false,false,false,false +Apanatshka/strs,Apanatshka,Rust,false,false,false,0,false,false,false,false +philw95/TS3MB_Script,philw95,Shell,false,false,false,0,false,false,false,false +alexcaussades1/modo,alexcaussades1,PHP,false,false,false,0,false,false,false,false +endymuhardin/belajar-gitlab-ci,endymuhardin,,true,false,false,3,true,false,true,false +igrep/text_kanban.vim,igrep,Vimscript,false,false,false,0,false,false,false,false +Dasyel/kafka_blogpost,Dasyel,Java,false,false,false,0,false,false,false,false +redagorapy/openfoodnetwork,redagorapy,Ruby,false,false,false,0,false,false,false,false +Creased/otp-qrcode,Creased,JavaScript,false,false,false,0,false,false,false,false +zwick/genie,zwick,Rust,false,false,false,0,false,false,false,false +textileio/DeLaCasa,textileio,Swift,false,false,false,0,false,false,false,false +loic.petit/sfvsim,loic.petit,Python,false,false,false,0,false,false,false,false +srrg-software/srrg_nnkd,srrg-software,C++,false,false,false,0,false,false,false,false +roddhjav/pass-tomb,roddhjav,Shell,true,false,false,1,false,false,false,false +ZloyTip/webasyst-menu,ZloyTip,JavaScript,false,false,false,0,false,false,false,false +westeroscraft/electronlauncher,westeroscraft,JavaScript,false,false,false,0,false,false,false,false +ROCKNROLLKID/OSC,ROCKNROLLKID,,false,false,false,0,false,false,false,false +nuttx/NuttX,nuttx,C,false,false,false,0,false,false,false,false +m2105/projet,m2105,HTML,false,false,false,0,false,false,false,false +mgrodriguez3/FortranAnalyser,mgrodriguez3,HTML,false,false,true,0,false,false,false,false +rarruda/unleash-client-ruby,rarruda,Ruby,false,false,false,0,false,false,false,false +LaDestitute/A-RPG-Gamekit,LaDestitute,,false,false,false,0,false,false,false,false +Ambraven/TootFic,Ambraven,TeX,true,false,false,1,false,true,false,false +kenesparta/informe-tesis,kenesparta,TeX,false,false,false,0,false,false,false,false +ChrisTaylorRocks/ConnectWise-TimeEntryReminder,ChrisTaylorRocks,PowerShell,false,false,false,0,false,false,false,false +veox/pygments-lexer-solidity,veox,Python,false,true,false,0,false,false,false,false +juszczakn/other-win,juszczakn,JavaScript,false,false,false,0,false,false,false,false +TSnake41/darkbox,TSnake41,C,true,false,false,1,false,true,false,false +Azshara111/progversenyelso,Azshara111,C#,false,false,false,0,false,false,false,false +anatoli/InstaPy,anatoli,Python,false,true,false,0,false,false,false,false +mikecee/config-class-extras,mikecee,Shell,false,false,false,0,false,false,false,false +smondet/misuja,smondet,C,true,false,false,1,false,true,false,false +spindp14/spindp14,spindp14,Python,true,false,false,1,false,true,false,false +clotodex/linux-scripts,clotodex,Shell,false,false,false,0,false,false,false,false +shimorina/webnlg-baseline,shimorina,Python,false,false,false,0,false,false,false,false +TeeFirefly/linux-kernel,TeeFirefly,,false,false,false,0,false,false,false,false +craftsmen/kotlin-rest-service,craftsmen,Kotlin,false,false,false,0,false,false,false,false +jgsqware/vs-gitlab-ci-templates,jgsqware,TypeScript,false,false,false,0,false,false,false,false +aruiz/gitlab-gnome-tools,aruiz,Python,false,false,false,0,false,false,false,false +jeremlvt/dawn_arrival,jeremlvt,Nit,true,false,false,1,false,true,false,false +L0gIn/slim-oop-skeleton,L0gIn,PHP,false,false,false,0,false,false,false,false +fftr/forteso,fftr,Java,true,false,false,1,false,true,false,false +mrswats/xv2xyz,mrswats,Python,false,false,false,0,false,false,false,false +KnightmareLands/KnightmareLands,KnightmareLands,C++,false,false,false,0,false,false,false,false +souvlaki/thalassa,souvlaki,Fortran,false,false,false,0,false,false,false,false +geosor/aqa-cs-textbook,geosor,TeX,false,false,false,0,false,false,false,false +BalmungSan/semhpc,BalmungSan,C++,false,false,false,0,false,false,false,false +tameeshb/client-side-file-encrypt-gsoc,tameeshb,PHP,false,false,false,0,false,false,false,false +encripta/encripta.gitlab.io,encripta,CSS,true,false,false,1,false,true,false,false +eddi.bravo/checkerbl,eddi.bravo,PHP,false,false,false,0,false,false,false,false +bosorioo/love2d-pe,bosorioo,Lua,false,false,false,0,false,false,false,false +kuldip-emids/health-insurance-premium-quote-generator,kuldip-emids,,false,false,false,0,false,false,false,false +wdeback/dl-keras-tutorial,wdeback,JupyterNotebook,false,false,false,0,false,false,false,false +kyledouglasolsen/SpatialInterest,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +czechitas/kurz_web,czechitas,HTML,true,false,false,3,true,true,true,false +reusable-tools/barebone-plugin,reusable-tools,Shell,true,false,false,1,false,true,false,false +tottokotkd/napoleon-blue.gitlab.io,tottokotkd,CSS,true,false,false,1,true,false,false,false +INTER-Mediator/INTER-Mediator,INTER-Mediator,PHP,true,false,false,2,false,true,true,false +gbraad/fedora-wsl,gbraad,Shell,true,false,false,1,false,true,false,false +Ellomend/va,Ellomend,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg_dvo_wrapper,srrg-software,C++,false,false,false,0,false,false,false,false +td7x/s6,td7x,TypeScript,true,false,false,5,true,false,true,false +pygotham/2014,pygotham,HTML,false,false,false,0,false,false,false,false +Aronax/VkPhotoDownload,Aronax,C#,false,false,false,0,false,false,false,false +blueoakinteractive/boi_ci,blueoakinteractive,PHP,true,false,false,2,false,true,true,false +altifalante/hapi-altifalante,altifalante,JavaScript,false,false,false,0,false,false,false,false +altifalante/express-altifalante,altifalante,JavaScript,false,false,false,0,false,false,false,false +gilben/dotfiles,gilben,Shell,false,false,false,0,false,false,false,false +axet/android-opus,axet,C,false,false,false,0,false,false,false,false +wallzero/react-digest,wallzero,TypeScript,true,false,false,4,true,true,true,true +susurrus/fat-rs,susurrus,Rust,true,false,false,2,true,false,false,false +xuhaiyang1234/NanoAdblockerSecretIssues,xuhaiyang1234,,false,false,false,0,false,false,false,false +drutopia/documentation,drutopia,Python,false,false,false,0,false,false,false,false +chris.james/cops,chris.james,Perl,false,false,false,0,false,false,false,false +deepender/webpackofabs,deepender,JavaScript,false,false,false,0,false,false,false,false +fdroid/update-channels,fdroid,Java,false,false,false,0,false,false,false,false +gwasser/django-helpdesk,gwasser,Python,false,true,false,0,false,false,false,false +Couchbox/install,Couchbox,Shell,false,false,false,0,false,false,false,false +smyren/uWars_pub,smyren,C,false,false,false,0,false,false,false,false +mrbadboy17/Homaion,mrbadboy17,Shell,false,false,false,0,false,false,false,false +muuankarski/kelagis,muuankarski,R,false,false,false,0,false,false,false,false +cuidandodomeubairro/website,cuidandodomeubairro,HTML,false,false,false,0,false,false,false,false +kvasbo/Glimmer,kvasbo,JavaScript,false,false,false,0,false,false,false,false +commonshost/cli,commonshost,JavaScript,true,false,false,1,false,true,false,false +dewet/ensmallen,dewet,Python,true,true,false,1,true,false,false,false +applification/react-native-custom-fonts,applification,Objective-C,false,false,false,0,false,false,false,false +lgwain/blockly,lgwain,JavaScript,false,false,false,0,false,false,false,false +rrgb/kinolog,rrgb,Java,false,false,false,0,false,false,false,false +coates-digital-productions/content-library,coates-digital-productions,JavaScript,false,false,false,0,false,false,false,false +MISRA/MISRA-C/MISRA-C-2012/Example-Suite,MISRA,C,false,false,false,0,false,false,false,false +andreascian/python-test-1,andreascian,Python,true,false,false,1,false,true,false,false +gitlab-examples/maven/simple-maven-dep,gitlab-examples,Java,false,false,true,0,false,false,false,false +axet/java-unrar,axet,Java,false,false,true,0,false,false,false,false +mata99/Gestionale_Commesse,mata99,C#,false,false,false,0,false,false,false,false +bauerlab/crispro,bauerlab,Python,false,false,false,0,false,false,false,false +Lillecarl/mangos-tbc,Lillecarl,C++,false,false,false,0,false,false,false,false +SklaveDaniel/BeatmeterGenerator,SklaveDaniel,Scala,true,false,false,1,true,false,false,false +JesseChiu/ajax-all-in-one,JesseChiu,HTML,false,false,false,0,false,false,false,false +rafaelcalearo/projetoFramework,rafaelcalearo,PHP,false,false,false,0,false,false,false,false +dnefedov/speedtest,dnefedov,Shell,false,false,false,0,false,false,false,false +Duckroll/Calpurnius,Duckroll,C#,false,false,false,0,false,false,false,false +gitlab-examples/cross-branch-pipelines,gitlab-examples,,true,false,false,1,false,true,false,false +garantiertnicht/SupplyZeppelin,garantiertnicht,Scala,false,false,false,0,false,false,false,false +s2pi/s2pi2017,s2pi,C++,false,false,false,0,false,false,false,false +vgg/via_ng,vgg,JavaScript,false,false,false,0,false,false,false,false +richardjortega/iot-310b-slides,richardjortega,,false,false,false,0,false,false,false,false +abonnet/pasclang,abonnet,C++,true,false,false,2,true,true,false,false +rtorresware/mdcatalogue,rtorresware,Python,false,false,false,0,false,false,false,false +hstack/hstack,hstack,Python,false,false,false,0,false,false,false,false +BeS/hugo-sustain-ng,BeS,PHP,false,false,false,0,false,false,false,false +NeuroRace/neuroracer-ai,NeuroRace,Python,false,false,false,0,false,false,false,false +jlalande/vue-auth-image,jlalande,JavaScript,true,false,false,3,true,true,false,false +drakonka/gosnaillife,drakonka,Go,true,false,false,3,false,true,true,false +apgoucher/hex13,apgoucher,C++,false,false,false,0,false,false,false,false +public-scripts/JAMF,public-scripts,Shell,false,false,false,0,false,false,false,false +winni/angular-sudoku,winni,TypeScript,true,false,false,1,false,false,true,false +TW80000/Abbot,TW80000,JavaScript,false,false,false,0,false,false,false,false +inspircd/inspircd,inspircd,C++,false,false,false,0,false,false,false,false +alex_ford/blockchain-watcher,alex_ford,TypeScript,false,false,false,0,false,false,false,false +kalabukdima/dotvim,kalabukdima,Vimscript,false,false,false,0,false,false,false,false +tmendes/FoodRestrictions,tmendes,Java,false,false,false,0,false,false,false,false +nobodyinperson/simbuto,nobodyinperson,R,true,false,false,5,true,false,true,false +cvwin/cvwin,cvwin,,false,false,false,0,false,false,false,false +gabriel-barreto/intro-js,gabriel-barreto,HTML,false,false,false,0,false,false,false,false +alifarazz/September,alifarazz,C,false,false,false,0,false,false,false,false +cncf/kubernetes/kubernetes,cncf,Go,false,false,false,0,false,false,false,false +eita/mapa_de_feiras,eita,PHP,false,false,false,0,false,false,false,false +TeddyChen/eh,TeddyChen,Java,false,false,false,0,false,false,false,false +Nanolx/SecurityBypasser,Nanolx,Java,false,false,false,0,false,false,false,false +metal-crow/DarkSouls-IDA-db,metal-crow,,false,false,false,0,false,false,false,false +gitlab-org/auto-deploy-helm,gitlab-org,Smarty,false,false,false,0,false,false,false,false +bennyp/polymer-test,bennyp,Shell,true,false,false,1,false,true,false,false +movie_thumbnailer/mtn,movie_thumbnailer,C,true,false,false,1,true,false,false,false +pyjarrett/rust_ray_tracer,pyjarrett,Rust,false,false,false,0,false,false,false,false +rasmus/vivir,rasmus,JavaScript,false,false,false,0,false,false,false,false +littlefork/littlefork,littlefork,JavaScript,false,false,false,0,false,false,false,false +ercom/cijw4gitlab,ercom,Shell,true,false,false,1,true,false,false,false +hunter/hosts,hunter,,false,false,false,0,false,false,false,false +mindig.marton/emulated_roku,mindig.marton,Python,false,false,false,0,false,false,false,false +bikespace/Bicycle-parking,bikespace,Python,true,true,false,2,false,true,true,false +lowgroundandbigshoes/annabot,lowgroundandbigshoes,,false,false,false,0,false,false,false,false +gitlab-com/contriblab,gitlab-com,,false,false,false,0,false,false,false,false +notpushkin/poormansbot,notpushkin,Python,false,true,false,0,false,false,false,false +baptistemarchand42/fsgt,baptistemarchand42,PHP,false,false,false,0,false,false,false,false +Tkkg1994/SuperStock-Rom,Tkkg1994,,false,false,false,0,false,false,false,false +vaiski/romextract,vaiski,Shell,false,false,false,0,false,false,false,false +Tkkg1994/SuperMan-Rom,Tkkg1994,Shell,false,false,false,0,false,false,false,false +goodgoodwork/democratscom/democrats-theme,goodgoodwork,CSS,false,false,false,0,false,false,false,false +TollStudios/MBTwitchAPI,TollStudios,C#,false,false,false,0,false,false,false,false +paulgibbs/bporg,paulgibbs,PHP,true,false,false,1,false,true,false,false +fyi-project/fyi-help,fyi-project,CSS,true,false,false,2,false,true,true,false +nmalacarne/front_builder,nmalacarne,Ruby,false,false,false,0,false,false,false,false +mk990/php-index-maker,mk990,PHP,false,false,false,0,false,false,false,false +JoeSondow/fishies,JoeSondow,Java,false,false,false,0,false,false,false,false +kyledouglasolsen/rigidbody-network-controller,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +tehnokom/documents/tehnokom,tehnokom,,false,false,false,0,false,false,false,false +ezdoo/odoo_ezdoo,ezdoo,Python,false,false,false,0,false,false,false,false +monashdiversit/monashdiversit.gitlab.io,monashdiversit,HTML,true,false,false,1,false,true,false,false +bersace/dotfiles,bersace,EmacsLisp,false,false,false,0,false,false,false,false +ahamtech/coap/aadya,ahamtech,CSS,true,false,false,2,false,true,false,false +bennya/shrink-path.el,bennya,EmacsLisp,true,false,false,2,true,true,false,false +slcu/teamHJ/vincent/microtubule_simulations,slcu,C++,false,false,false,0,false,false,false,false +FritsHoogland/memstat,FritsHoogland,Shell,false,false,false,0,false,false,false,false +lrmodesgl/FreeGIS,lrmodesgl,,false,false,false,0,false,false,false,false +ysb33rOrg/grolifant,ysb33rOrg,Groovy,true,false,false,3,true,true,false,true +Free_Geek_PDX/Adv_Cmd_Line,Free_Geek_PDX,HTML,false,false,false,0,false,false,false,false +chambana/Automated_TensorFlow_Context_Graph_creation,chambana,Python,false,false,false,0,false,false,false,false +inverseai/dmlc/mxnet,inverseai,C++,false,false,false,0,false,false,false,false +d0h0/webslideshow,d0h0,JavaScript,false,false,false,0,false,false,false,false +JAForbes/manuel,JAForbes,JavaScript,true,false,false,1,false,true,false,false +kaivan.alimohammadi/slwpt,kaivan.alimohammadi,CSS,false,false,false,0,false,false,false,false +billkoul8/malwarehouse,billkoul8,Python,false,false,false,0,false,false,false,false +rawsec/rawsec-cybersecurity-list,rawsec,HTML,true,false,false,2,false,true,true,false +nokwin/freshcode-moderator,nokwin,JavaScript,true,false,false,1,true,false,false,false +charlesetc/Stars,charlesetc,Pony,false,false,false,0,false,false,false,false +Johnsoct/andybeverlyschool,Johnsoct,HTML,true,false,false,2,false,true,true,false +tg-team/methoden,tg-team,JavaScript,true,false,false,1,false,false,true,false +mbrix/Bitcoineum_Sharkpool,mbrix,JavaScript,false,false,false,0,false,false,false,false +khmercoders/khmercoders.io,khmercoders,PHP,true,false,false,1,false,true,false,false +passit/passit-mobile,passit,TypeScript,true,false,false,2,true,false,true,false +hathi-social/standards,hathi-social,,false,false,false,0,false,false,false,false +gbenga504/Bworld,gbenga504,Objective-C,false,false,false,0,false,false,false,false +HolographicInterfaces/SlowSummerJam,HolographicInterfaces,C#,false,false,false,0,false,false,false,false +Starcarr/Submarine2,Starcarr,Dart,false,false,false,0,false,false,false,false +Marnes/doubleclick-image-downloader,Marnes,JavaScript,false,false,false,0,false,false,false,false +Marnes/public-ip-display,Marnes,JavaScript,true,false,false,1,true,false,false,false +pavel.krupala/pyqt-node-editor-tutorials,pavel.krupala,Python,false,true,false,0,false,false,false,false +wengych/gitflow-ci,wengych,Kotlin,true,false,true,3,true,false,true,false +kabo/serverless-cf-vars,kabo,JavaScript,false,false,false,0,false,false,false,false +vallonic/wpfw,vallonic,PHP,false,false,false,0,false,false,false,false +drutopia-platform/general/platform,drutopia-platform,,false,false,false,0,false,false,false,false +wolframkriesing/jslang-meetups,wolframkriesing,JavaScript,false,false,false,0,false,false,false,false +thudoduc/LunchBooking,thudoduc,JavaScript,false,false,false,0,false,false,false,false +joernchen/CVE-2017-1000117,joernchen,Shell,false,false,false,0,false,false,false,false +kutelev/gost_forms,kutelev,C++,true,false,false,1,true,false,false,false +lvxejay/asset_engine,lvxejay,Python,false,false,false,0,false,false,false,false +kyledouglasolsen/SmartNet,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +FreeNetuno/Chronos,FreeNetuno,C,false,false,false,0,false,false,false,false +Faustian_Divergence/Faust_msm8953,Faustian_Divergence,,false,false,false,0,false,false,false,false +typemytype/robofont_com,typemytype,Python,true,false,false,2,false,true,true,false +aminkt/sms-driver-rest-api,aminkt,PHP,false,false,false,0,false,false,false,false +Baasie/serenityjs-rest-example,Baasie,TypeScript,true,false,false,2,false,false,true,false +Bimbol/g2o_launcher,Bimbol,C++,false,false,false,0,false,false,false,false +pouya-abbasian/readycode,pouya-abbasian,Shell,false,false,false,0,false,false,false,false +4geit/swagger-packages,4geit,JavaScript,true,false,false,3,false,true,true,true +hydrasoftware/hydra,hydrasoftware,PLpgSQL,true,false,false,1,false,true,false,false +kasyauqi/docker-maven,kasyauqi,,false,false,false,0,false,false,false,false +chaica/remindr,chaica,Python,false,false,false,0,false,false,false,false +ad-si-2017-2/p1-g3,ad-si-2017-2,JavaScript,false,false,false,0,false,false,false,false +Strit/griffith,Strit,Python,false,false,false,0,false,false,false,false +univa/nikola-fox-theme,univa,CSS,false,false,false,0,false,false,false,false +red-academy/curso-ionic-completo,red-academy,TypeScript,false,false,false,0,false,false,false,false +diegoamc/ns-3-quic-module,diegoamc,C++,false,false,false,0,false,false,false,false +free-time-programmer/tutorials/demystify-aspnetcore-auth,free-time-programmer,C#,false,false,false,0,false,false,false,false +mixedCase/poc-qml-vscode,mixedCase,QML,false,false,false,0,false,false,false,false +nicopaez/memo2-2017,nicopaez,Ruby,true,false,false,1,true,false,false,false +maxvel/red-shell-dialect,maxvel,Red,false,false,false,0,false,false,false,false +brianegan/flutter_redux,brianegan,Dart,true,false,false,2,false,true,true,false +JuliRios/utn-isw-grupo7,JuliRios,,false,false,false,0,false,false,false,false +IntroPDP/intropdp-vagrant,IntroPDP,Shell,false,false,false,0,false,false,false,false +smondet/vimebac,smondet,OCaml,true,false,false,1,false,true,false,false +sinajames/resume,sinajames,TeX,true,false,false,4,false,false,false,false +technomancy/smolforth,technomancy,Lua,false,false,false,0,false,false,false,false +gitlab-org/gitlab-aws-quickstart,gitlab-org,Shell,false,false,false,0,false,false,false,false +mbergdal/ITE1901,mbergdal,Java,false,false,false,0,false,false,false,false +nd-cse-30872-fa17/cse-30872-fa17-examples,nd-cse-30872-fa17,C++,false,false,false,0,false,false,false,false +ykyuen/gitlab-ci-demo,ykyuen,JavaScript,true,false,false,3,false,false,false,false +EvinceTeam/Evince,EvinceTeam,C#,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-ohai,librespacefoundation,Python,false,true,false,0,false,false,false,false +raghukamath/live-iso-for-schools,raghukamath,Shell,false,false,false,0,false,false,false,false +jhring/charlottesville,jhring,Python,false,false,false,0,false,false,false,false +drutopia/octavia,drutopia,HTML,false,false,false,0,false,false,false,false +volkercoors/GeoVisualisierung,volkercoors,Java,false,false,false,0,false,false,false,false +somlabs/somlabs-uboot-imx,somlabs,C,false,false,false,0,false,false,false,false +andrew.n.sutton/fall-17-oop-2,andrew.n.sutton,C++,false,false,false,0,false,false,false,false +cardoe/enum-primitive-derive,cardoe,Rust,true,false,false,1,true,false,false,false +petejohanson/fore-scorer,petejohanson,F#,true,false,false,3,false,true,false,true +timothystewart6/BotsPlusPlus,timothystewart6,C++,false,false,false,0,false,false,false,false +ximity/firetasks,ximity,JavaScript,false,false,false,0,false,false,false,false +dpalominop/odoo_stock_3dview,dpalominop,JavaScript,false,false,false,0,false,false,false,false +dkretzlaff/fitcatch,dkretzlaff,HTML,false,false,false,0,false,false,false,false +somlabs/somlabs-buildroot,somlabs,Makefile,true,false,false,1,false,true,false,false +MazeChaZer/json-bouncer,MazeChaZer,TypeScript,true,false,false,1,false,true,false,false +librespacefoundation/satnogs/satnogs-pi-gen,librespacefoundation,Shell,true,false,false,1,true,false,false,false +eyeo/websites/websites-module,eyeo,,false,false,false,0,false,false,false,false +izznfkhrlislm/ppw-lab,izznfkhrlislm,JavaScript,true,false,false,2,false,true,true,false +Pedro_Alferes/angular4example,Pedro_Alferes,TypeScript,false,false,false,0,false,false,false,false +GainTime/gainTime,GainTime,,false,false,false,0,false,false,false,false +Raphael.hautil/OLIVIER,Raphael.hautil,JavaScript,false,false,false,0,false,false,false,false +ablondin/inf3135-exercices,ablondin,C,false,false,false,0,false,false,false,false +cold-icy-ice/epitaph,cold-icy-ice,PHP,true,false,false,1,false,false,true,false +Glenans-CDMEB/Guide-CDMEB,Glenans-CDMEB,CSS,true,false,false,2,true,false,true,false +andrew.n.sutton/oop-notes,andrew.n.sutton,,false,false,false,0,false,false,false,false +gitlab-org/openssh-packages,gitlab-org,Shell,true,false,false,1,false,false,false,false +microservice-training-bj/goods,microservice-training-bj,Java,false,false,false,0,false,false,false,false +distributed_lab/logan,distributed_lab,Go,false,false,false,0,false,false,false,false +locket/locket,locket,,false,false,false,0,false,false,false,false +Earthnuker/Universe,Earthnuker,Python,false,true,false,0,false,false,false,false +derhansen/comments,derhansen,PHP,true,false,false,4,false,true,true,false +_stark/postgresql,_stark,C,false,false,false,0,false,false,false,false +Appirio/df17-console,Appirio,JavaScript,false,false,false,0,false,false,false,false +aamjadi/cloudflare-ddns,aamjadi,Python,false,false,false,0,false,false,false,false +TTTRedd/Redd_Vehicles,TTTRedd,C++,false,false,false,0,false,false,false,false +DCTASP/Wendigo,DCTASP,LabVIEW,false,false,false,0,false,false,false,false +mayan-edms/mayan-edms-docker-aarch64,mayan-edms,Python,false,false,false,0,false,false,false,false +DCTASP/SnowDevil,DCTASP,,false,false,false,0,false,false,false,false +dmsussman/workingWithGit,dmsussman,TeX,false,false,false,0,false,false,false,false +sampadashboard/sampa-smart-map,sampadashboard,JavaScript,true,false,false,1,false,true,false,false +enetheru/mixxx-ddjwego,enetheru,JavaScript,false,false,false,0,false,false,false,false +orvium.io/token,orvium.io,JavaScript,true,false,false,1,false,true,false,false +jasoliyanik1071/Microsoft_Odoo_Login,jasoliyanik1071,Python,false,false,false,0,false,false,false,false +halderm/setup,halderm,Python,false,false,false,0,false,false,false,false +gitlab-org/gitaly-bench,gitlab-org,Go,true,false,false,1,true,false,false,false +micropyramid/hound,micropyramid,Python,false,true,false,0,false,false,false,false +librespacefoundation/pqws/pqws-main-hw,librespacefoundation,HTML,false,false,false,0,false,false,false,false +librespacefoundation/pqws/pqws-main-sw,librespacefoundation,C,true,false,false,1,true,false,false,false +georgedorn/rpgtools,georgedorn,Python,false,true,false,0,false,false,false,false +JAForbes/hickery,JAForbes,JavaScript,true,false,false,2,false,true,false,false +marderlab/xolotl,marderlab,C++,false,false,false,0,false,false,false,false +frankcary/house-price-evaluation,frankcary,Python,false,false,false,0,false,false,false,false +dustyweb/guile-csexps,dustyweb,Scheme,false,false,false,0,false,false,false,false +EAVISE/brambox,EAVISE,Python,true,true,false,2,false,true,true,false +ERap320/CrowLeer,ERap320,C,false,false,false,0,false,false,false,false +IEEE-SA/XMPPI/IoT,IEEE-SA,,false,false,false,0,false,false,false,false +quarmony-free-html/veggie,quarmony-free-html,CSS,true,false,false,1,false,false,true,false +grisetti/probabilistic_robotics_2017_18,grisetti,Matlab,false,false,false,0,false,false,false,false +Mykol4ik/Mykol4ikPro,Mykol4ik,C#,false,false,false,0,false,false,false,false +apparently/readonly/fdroid-data,apparently,Python,true,false,false,2,false,true,true,false +nobodyinperson/python3-meteorology,nobodyinperson,Python,true,false,false,3,false,true,true,false +marcinguy/blueborne-CVE-2017-1000251,marcinguy,C,false,false,false,0,false,false,false,false +Brohnesorge/HeartsOfDemonsBARON,Brohnesorge,GLSL,false,false,false,0,false,false,false,false +IonicZoo/bird-format-pipe,IonicZoo,TypeScript,true,false,false,1,false,false,true,false +tpi115-2017/proyecto-emprendimiento,tpi115-2017,Python,false,false,false,0,false,false,false,false +cchiconato1/tribunaldeperolas_frontend,cchiconato1,HTML,false,false,false,0,false,false,false,false +mbarbry/python-scalapack,mbarbry,Python,true,false,false,1,false,true,false,false +fdbeirao/books-and-papers,fdbeirao,,false,false,false,0,false,false,false,false +luckey2016/polymer2-demo,luckey2016,HTML,false,false,false,0,false,false,false,false +code-stats/code-stats-intellij,code-stats,Java,false,false,false,0,false,false,false,false +devops-training/continuous-delivery,devops-training,Shell,false,false,false,0,false,false,false,false +ayana/api,ayana,JavaScript,false,false,false,0,false,false,false,false +tcs-poitiers-public-projects/sf-bundle-variables,tcs-poitiers-public-projects,PHP,false,false,false,0,false,false,false,false +subins2000/subinsb.com,subins2000,CSS,true,false,false,1,false,true,false,false +hdcase/vim-keys,hdcase,C,false,false,false,0,false,false,false,false +Jrahme/tmux-float,Jrahme,Shell,false,false,false,0,false,false,false,false +forodren.draug/DataDefender,forodren.draug,Kotlin,false,false,false,0,false,false,false,false +nxlog-public/contrib,nxlog-public,Perl,false,false,false,0,false,false,false,false +yasha_singh/OutreachyTasks,yasha_singh,Python,false,false,false,0,false,false,false,false +tripetto/editor,tripetto,TypeScript,false,false,false,0,false,false,false,false +metal-crow/DarkSouls-Overhaul-bdt,metal-crow,,false,false,false,0,false,false,false,false +ferreum/distanceutils,ferreum,Python,false,false,false,0,false,false,false,false +CS315_2017/Git_It_Together,CS315_2017,Java,false,false,false,0,false,false,false,false +Kapperchino/Fps_Shooter,Kapperchino,C++,false,false,false,0,false,false,false,false +ninjin/ninjin.gitlab.io,ninjin,HTML,true,false,false,2,false,true,true,false +lafricain79/bookletimposer,lafricain79,Python,false,false,false,0,false,false,false,false +bonifacino.andrea/extractsImagesFromPdfFiles,bonifacino.andrea,Shell,false,false,false,0,false,false,false,false +OpenSourceAnimation/morevna-ep3,OpenSourceAnimation,Shell,false,false,false,0,false,false,false,false +interscity/health-dashboard/health-smart-city,interscity,JavaScript,true,false,false,2,false,false,false,false +Juesto/SE2007_src-tweaked,Juesto,C++,false,false,false,0,false,false,false,false +dspechnikov/django-slugger,dspechnikov,Python,true,false,false,3,false,true,false,true +felixmark/CrazyCar_FM_SK,felixmark,Makefile,false,false,false,0,false,false,false,false +arduino-libraries/i2commands,arduino-libraries,C++,false,false,false,0,false,false,false,false +bioland/website,bioland,PHP,false,false,false,0,false,false,false,false +gitlab-com/openvas-custom,gitlab-com,Ruby,false,false,false,0,false,false,false,false +failmap/admin,failmap,Python,true,true,false,3,false,false,false,true +lizmaclean/strathub,lizmaclean,C#,false,false,false,0,false,false,false,false +drutopia/drutopia_vm,drutopia,Shell,false,false,false,0,false,false,false,false +Habibovic/androidmediaplayer,Habibovic,Java,false,false,false,0,false,false,false,false +kachkaev/website-graphql-server,kachkaev,TypeScript,true,false,false,2,false,false,false,false +summit-badges/Greek-Summit,summit-badges,Python,false,false,false,0,false,false,false,false +Luuse/Villa-Noailles/font-hershey-noailles,Luuse,JavaScript,false,false,false,0,false,false,false,false +arthurmoore85/pi_romulus,arthurmoore85,Python,true,true,false,1,false,true,false,false +oneseveneight/fetchlyrics.py,oneseveneight,Python,false,false,false,0,false,false,false,false +tijsg/swagger-template,tijsg,HTML,true,false,false,3,true,true,true,false +monetha/trust-reputation-smart-contracts,monetha,JavaScript,true,false,false,1,false,true,false,false +OperatingSystemMasters/AnnOSTemp,OperatingSystemMasters,C,false,false,false,0,false,false,false,false +cmilovic/FANSI-toolbox,cmilovic,Matlab,false,false,false,0,false,false,false,false +hongping1224/2017NCKUGame,hongping1224,C#,false,false,false,0,false,false,false,false +tripetto/examples/react-material-ui,tripetto,TypeScript,true,false,false,1,false,true,false,false +pygotham/2018,pygotham,JavaScript,true,false,false,1,false,true,false,false +ayana/botlist,ayana,JavaScript,false,false,false,0,false,false,false,false +fdroid/fdroidclient-nightly,fdroid,,true,false,false,1,false,true,false,false +stephanebenatout/PPE3.1Frais,stephanebenatout,PHP,false,false,false,0,false,false,false,false +marc.fehr/react-boilerplate,marc.fehr,JavaScript,false,false,false,0,false,false,false,false +paulcarroty/atom-rpm-deb-mirror,paulcarroty,Shell,true,false,false,1,true,false,false,false +Adanteh/objectplacement-tbh,Adanteh,SQF,false,false,false,0,false,false,false,false +MatthiasHu/kategorientheorie-WS1718,MatthiasHu,TeX,true,false,false,2,false,false,true,false +One-Q/web-project-night-out,One-Q,JavaScript,false,false,false,0,false,false,false,false +thelabnyc/django-vault-helpers,thelabnyc,Python,true,false,false,1,false,true,false,false +jknix/sspyrs,jknix,Python,false,true,false,0,false,false,false,false +fbatiga/developer-resources,fbatiga,,false,false,false,0,false,false,false,false +ablondin/inf3135-aut2017-tp2-enonce,ablondin,Makefile,false,false,false,0,false,false,false,false +wondermonger/koa-session-mongoose,wondermonger,JavaScript,true,false,false,4,false,true,true,true +iotmgmt/rest-api,iotmgmt,Scala,true,false,false,2,true,true,false,false +flintci/flintci,flintci,PHP,false,false,false,0,false,false,false,false +fokc/ModopeGame,fokc,RPC,false,false,false,0,false,false,false,false +CLIUtils/CLI11Tutorial,CLIUtils,C++,true,false,false,2,false,true,true,false +t.lolies/pie_meteo,t.lolies,,false,false,false,0,false,false,false,false +fdroid/fdroid-website-search,fdroid,Python,true,true,false,2,true,false,false,true +Freika/random_newsletter,Freika,Ruby,true,false,false,1,false,true,false,false +IntegerMan/angularIF,IntegerMan,TypeScript,false,false,false,0,false,false,false,false +ssrsreportmanagers/reportmanagement,ssrsreportmanagers,,false,false,false,0,false,false,false,false +southwestohiogivecamp/drug-inventory,southwestohiogivecamp,Java,true,false,false,2,true,true,false,false +philippe.distefano/Code_is_fun,philippe.distefano,Python,false,false,false,0,false,false,false,false +bgez/materials,bgez,GLSL,false,false,false,0,false,false,false,false +CarlosCalgaro/assembly_2048,CarlosCalgaro,Assembly,false,false,false,0,false,false,false,false +shu-iro/studb,shu-iro,JavaScript,true,false,false,1,false,true,false,false +fh-hgb-se17/ade-prg-ws17,fh-hgb-se17,Pascal,false,false,false,0,false,false,false,false +aanandshekharroy/kotlin-cookbook,aanandshekharroy,Kotlin,false,false,false,0,false,false,false,false +mario.perez/class-menu-example,mario.perez,Java,false,false,false,0,false,false,false,false +nogginly/faaster,nogginly,HCL,false,false,false,0,false,false,false,false +mpapp-public/couchbase-lite-node,mpapp-public,C,true,false,false,1,false,true,false,false +ByungSunBae/TensorR,ByungSunBae,R,false,false,false,0,false,false,false,false +arigho34/PPIC_System-Application,arigho34,JavaScript,false,false,false,0,false,false,false,false +cuixiaolai/resumes-api,cuixiaolai,JavaScript,false,false,false,0,false,false,false,false +CallumDenby/serverless-boilerplate,CallumDenby,TypeScript,false,false,false,0,false,false,false,false +PythonLimited/Releases,PythonLimited,,false,false,false,0,false,false,false,false +alelec/aioeasywebdav,alelec,Python,true,false,false,2,false,true,true,false +simplematterpublic/blueprint-microservices,simplematterpublic,Java,false,false,true,0,false,false,false,false +saintjs/Plain-React-Phoenix-Starter,saintjs,Elixir,false,false,false,0,false,false,false,false +ipamo/Wheel,ipamo,C#,false,false,false,0,false,false,false,false +kevin28520/kaggle_iceberg_classifier,kevin28520,Python,false,false,false,0,false,false,false,false +boats/failure,boats,Rust,true,false,false,1,false,true,false,false +timtizio/Bookmark-Manager,timtizio,PHP,true,false,false,1,false,true,false,false +bambootran89/DatabasesStanford,bambootran89,SQLPL,false,false,false,0,false,false,false,false +bambootran89/MMDstanford,bambootran89,Python,false,false,false,0,false,false,false,false +gokaykucuk/asdm,gokaykucuk,CSS,false,false,false,0,false,false,false,false +Tabares/phototools,Tabares,Python,false,false,false,0,false,false,false,false +cuixiaolai/resumes-front,cuixiaolai,JavaScript,false,false,false,0,false,false,false,false +Dreae/luajit-rs,Dreae,Rust,true,false,false,2,false,true,false,false +yorickpeterse/ruby-ll,yorickpeterse,Ruby,true,false,false,1,false,true,false,false +TheGuardians/BlamCore,TheGuardians,C#,false,false,false,0,false,false,false,false +VV5/food-security,VV5,Vue,true,false,false,1,false,true,false,false +captainUnix/deepLearning,captainUnix,Python,false,false,false,0,false,false,false,false +UmbrellaIrrigation11/UmbrellaIrrigation11,UmbrellaIrrigation11,JavaScript,false,false,false,0,false,false,false,false +jjerzynski/SimpleRpgGame,jjerzynski,Java,false,false,true,0,false,false,false,false +stoempdev/insomnia-plugin-xdebug,stoempdev,JavaScript,false,false,false,0,false,false,false,false +atsaloli/cfengine-technician,atsaloli,,false,false,false,0,false,false,false,false +tekne/MAT240_Notes,tekne,TeX,false,false,false,0,false,false,false,false +librespacefoundation/pqws/pqws-structural,librespacefoundation,,false,false,false,0,false,false,false,false +chrisg/raster-edit-tool,chrisg,Python,false,false,false,0,false,false,false,false +code-stats/code-stats-zsh,code-stats,Shell,true,false,false,1,false,true,false,false +schmidt.simon/hypothesis-drf,schmidt.simon,Python,true,false,false,2,false,true,true,false +nescience/math_book,nescience,TeX,false,false,false,0,false,false,false,false +husixu1/HUSTCppExperimentCheckSystemPlusPlus,husixu1,C++,false,false,false,0,false,false,false,false +jimschubert/barebones-ebook,jimschubert,CSS,true,false,false,1,true,false,false,false +wsha/chorded_keymap,wsha,Python,false,false,false,0,false,false,false,false +barzilay/gitlab-cucumber-selenium-ci-test-setup,barzilay,Gherkin,true,false,false,1,false,true,false,false +IEEE-SA/ElecChar/P370,IEEE-SA,Matlab,false,false,false,0,false,false,false,false +indium/exchange,indium,CSS,false,false,false,0,false,false,false,false +syahputra/SupplyChain-Blockchain-Demo-Tilburg,syahputra,JavaScript,false,false,false,0,false,false,false,false +mmod/mmod-panel,mmod,JavaScript,false,false,false,0,false,false,false,false +foroughmand/java-961,foroughmand,Java,false,false,false,0,false,false,false,false +toraora/crossword,toraora,TypeScript,false,false,false,0,false,false,false,false +ra_kete/kmod-rs,ra_kete,Rust,false,false,false,0,false,false,false,false +trackindatalabs/JuNet,trackindatalabs,Python,false,false,false,0,false,false,false,false +djm.im/nlf,djm.im,Java,true,false,true,2,false,true,true,false +FeniXEngineMV/plugins,FeniXEngineMV,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg_g2o_slim,srrg-software,C++,false,false,false,0,false,false,false,false +devscola/consensus,devscola,JavaScript,true,false,false,1,false,true,false,false +kornelski/wild,kornelski,Rust,true,false,false,1,false,true,false,false +falko.wiese/uacl_cs,falko.wiese,C#,false,false,false,0,false,false,false,false +fschl/grundlagen-Projekt,fschl,,false,false,false,0,false,false,false,false +cloud-oscilloscope/qtloscope,cloud-oscilloscope,C++,true,false,false,1,true,false,false,false +fboisselier52/eureka-synchronizer,fboisselier52,JavaScript,true,false,false,1,false,false,false,true +distributopia/fetch-the-badge,distributopia,HTML,true,false,false,1,false,false,true,false +kornelski/dunce,kornelski,Rust,true,false,false,1,false,true,false,false +tobimiller/mascor_px4_control,tobimiller,Python,false,false,false,0,false,false,false,false +dmantis/bitshares-assistant,dmantis,Python,false,true,false,0,false,false,false,false +Merlini98/Progetto_Prova,Merlini98,,false,false,false,0,false,false,false,false +marquart/aud-tests,marquart,,false,false,false,0,false,false,false,false +CraftinCodePublic/spring-workshop,CraftinCodePublic,Java,false,false,true,0,false,false,false,false +navid9675/InternetEngineering,navid9675,Java,false,false,true,0,false,false,false,false +wallzero/jsplumb-react,wallzero,TypeScript,true,false,false,4,true,true,true,true +codetk/schemetran,codetk,Scheme,false,false,false,0,false,false,false,false +pineiden/rethink_tests,pineiden,Python,false,false,false,0,false,false,false,false +vidriloco/scnf-onboard,vidriloco,Java,false,false,false,0,false,false,false,false +distributopia/all-logos-in-one-basket,distributopia,HTML,true,false,false,1,false,false,true,false +tomderudder/StylishStyleSheet,tomderudder,CSS,false,false,false,0,false,false,false,false +4U6U57/wsl-open,4U6U57,Shell,true,false,false,1,false,true,false,false +textileio/MatrixLite,textileio,Swift,false,false,false,0,false,false,false,false +TeeFirefly/RK3328-Nougat,TeeFirefly,,false,false,false,0,false,false,false,false +WP-Innovator/WP-Tricks,WP-Innovator,,false,false,false,0,false,false,false,false +PainHex/oxidized_zombies,PainHex,Rust,false,false,false,0,false,false,false,false +queertypes/linear-socket,queertypes,Haskell,false,false,false,0,false,false,false,false +deutrino/open-speech-mastodon,deutrino,,false,false,false,0,false,false,false,false +k0001/xmlbf,k0001,Haskell,true,false,false,1,true,false,false,false +clojurebridge-mn/clojurebridgemn.org,clojurebridge-mn,Clojure,true,false,false,2,true,false,true,false +python-devs/ci-images,python-devs,Shell,false,false,false,0,false,false,false,false +sharmano/HPDF-Weekone-Twitter_Clone,sharmano,JavaScript,false,false,false,0,false,false,false,false +wolphin/wolphin,wolphin,Python,true,true,false,3,true,true,false,false +maxigaz/userstyles,maxigaz,CSS,false,false,false,0,false,false,false,false +Sepps/eevblog-phone-calculator,Sepps,C#,false,false,false,0,false,false,false,false +viliambalaz/AoC_2017,viliambalaz,C++,false,false,false,0,false,false,false,false +unused/geo-chat,unused,Ruby,true,false,false,1,false,true,false,false +evanp/activitypub-mock,evanp,JavaScript,true,false,false,1,false,true,false,false +SirEdvin/docker-prometheus-exporter,SirEdvin,Python,true,true,false,2,false,true,false,true +abinitio/machine_learning_specialization,abinitio,JupyterNotebook,false,false,false,0,false,false,false,false +michelsmartinez/acompanha-modifica-es-de-site,michelsmartinez,Python,false,false,false,0,false,false,false,false +ecoevomath/zen,ecoevomath,Pascal,false,false,false,0,false,false,false,false +samplet/geesh,samplet,Scheme,false,false,false,0,false,false,false,false +issam.nacim/NGRXENTITY,issam.nacim,TypeScript,false,false,false,0,false,false,false,false +loyke96/steg-chat,loyke96,Java,false,false,false,0,false,false,false,false +ericsteinert/NAF-Update,ericsteinert,PHP,false,false,false,0,false,false,false,false +gitlab-org/gl-performance,gitlab-org,JavaScript,true,false,false,2,true,true,false,false +baldurmen/puppet-borg,baldurmen,Puppet,true,false,false,1,false,true,false,false +gitlab-org/security-products/clair-scanner,gitlab-org,Go,false,false,false,0,false,false,false,false +zoomonit/greenpepper,zoomonit,Java,true,false,true,3,true,true,false,false +chillcoding-at-the-beach/kotlin-for-android,chillcoding-at-the-beach,Java,false,false,false,0,false,false,false,false +moy/generate-skeletons,moy,Python,true,false,false,1,false,true,false,false +neuroeventlabs/intel_nuc_led,neuroeventlabs,C,false,false,false,0,false,false,false,false +issam.nacim/NGRXROUTER,issam.nacim,TypeScript,false,false,false,0,false,false,false,false +Retr0_System/Sia,Retr0_System,Go,false,false,false,0,false,false,false,false +Retr0_System/Awesome_Blockchains,Retr0_System,Ruby,false,false,false,0,false,false,false,false +blob-go/blob-go,blob-go,Go,false,false,false,0,false,false,false,false +Retr0_System/trezor-mcu,Retr0_System,C,false,false,false,0,false,false,false,false +shmalevoz/1cwiki,shmalevoz,1CEnterprise,false,false,false,0,false,false,false,false +oleg.novitskiy/java-core-exam,oleg.novitskiy,,false,false,false,0,false,false,false,false +sivasankar9/amazing-shopping-cart,sivasankar9,JavaScript,false,false,false,0,false,false,false,false +EthGiving/EthGiving-Contracts,EthGiving,JavaScript,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex2-vue,caldera-labs,Shell,false,false,false,0,false,false,false,false +nilenso/relay-backend,nilenso,Clojure,true,false,false,5,false,true,false,false +BrawlDB/brawlhalla-api,BrawlDB,TypeScript,false,false,false,0,false,false,false,false +claderoki/QuickCut,claderoki,JavaScript,false,false,false,0,false,false,false,false +IAI-GL3-17-18/TP-SIG-GROUPE-8,IAI-GL3-17-18,JavaScript,true,false,false,1,false,false,true,false +sscherfke/aiomas,sscherfke,Python,true,true,false,2,true,true,false,false +CsharpLassi/Linux-API,CsharpLassi,Python,false,false,false,0,false,false,false,false +jix/neca,jix,C++,false,false,false,0,false,false,false,false +juszczakn/ocaml-coreutils,juszczakn,OCaml,false,false,false,0,false,false,false,false +TortueMat/jira-issue-bot,TortueMat,Go,true,false,false,2,true,true,false,false +mkovacs/rust-vr-demo,mkovacs,Rust,false,false,false,0,false,false,false,false +infomasternotes/Svigruppo,infomasternotes,TeX,true,false,false,1,false,true,false,false +HammelGammel/G2O_Module_BotCreator,HammelGammel,Squirrel,false,false,false,0,false,false,false,false +d_rzepka/oc-equipment,d_rzepka,Lua,false,false,false,0,false,false,false,false +powercogs/VideoWidget,powercogs,QML,false,false,false,0,false,false,false,false +duchesstech/LuminaWallet,duchesstech,Java,false,false,false,0,false,false,false,false +agamigo/agamigo,agamigo,Go,false,false,false,0,false,false,false,false +Calinou/godot-builds-ci,Calinou,Shell,true,false,false,1,false,true,false,false +austinoski/pyblogng,austinoski,Python,false,true,false,0,false,false,false,false +beardog/Onionr,beardog,Python,true,true,false,1,false,true,false,false +MMuArFF/lnd-php-wallet,MMuArFF,CSS,false,false,false,0,false,false,false,false +sinclair2/lecert,sinclair2,Shell,true,false,false,2,false,true,false,false +pcmasterrace/open-source/history-channel,pcmasterrace,TypeScript,false,false,false,0,false,false,false,false +Chkoupinator/Chkoupinabot,Chkoupinator,Python,false,false,false,0,false,false,false,false +rpadovani/my-gitlab-ci,rpadovani,JavaScript,true,false,false,2,false,true,true,false +Jellby/Pegamoid,Jellby,Python,false,false,false,0,false,false,false,false +islands-wars/research/crochet,islands-wars,Rust,true,false,false,3,true,true,true,false +GlowCraft/public,GlowCraft,,false,false,false,0,false,false,false,false +Orange-OpenSource/ScriptSuiteForAnsible/keepalived,Orange-OpenSource,Shell,true,false,false,1,false,true,false,false +clearglass/clearglass-community,clearglass,HTML,true,false,false,6,true,true,true,true +rilis/rili/json,rilis,C++,true,false,false,3,false,true,false,false +erol.turan/gradle-parallel-cucumber-tests,erol.turan,Groovy,false,false,false,0,false,false,false,false +hodev09/MoviesECommerce,hodev09,C#,false,false,false,0,false,false,false,false +Glabrezu/DemoDialogue,Glabrezu,,false,false,false,0,false,false,false,false +artur-scholz/clubhub,artur-scholz,Python,true,true,false,1,false,true,false,false +Dreamsium/Tram,Dreamsium,HTML,false,false,false,0,false,false,false,false +teknesystems/ATMOS,teknesystems,C++,false,false,false,0,false,false,false,false +CapsAdmin/goluwa,CapsAdmin,Lua,true,false,false,1,false,true,false,false +zvon/KodiMAL,zvon,Python,false,false,false,0,false,false,false,false +nd-cse-20289-sp18/cse-20289-sp18-website,nd-cse-20289-sp18,CSS,true,false,false,1,false,true,false,false +tekne/MAT247_Notes,tekne,TeX,false,false,false,0,false,false,false,false +thrikreen/unity,thrikreen,C#,false,false,false,0,false,false,false,false +4144/peek,4144,C,false,false,false,0,false,false,false,false +mlosa010/GeneralNaveFIUIEEE,mlosa010,C++,false,false,false,0,false,false,false,false +csui-ddp2/sandbox,csui-ddp2,,false,false,false,0,false,false,false,false +openmcsquare/MCsquare,openmcsquare,C,false,false,false,0,false,false,false,false +open-pipeline/open-pipeline.gitlab.io,open-pipeline,HTML,true,false,false,1,false,true,false,false +rmTheZ/INF3135-DemoH18,rmTheZ,C,false,false,false,0,false,false,false,false +radek-sprta/mariner,radek-sprta,Python,true,false,false,5,true,true,true,true +minecraft.erilun06/webbutv-skola,minecraft.erilun06,HTML,false,false,false,0,false,false,false,false +AOBlockchain/aoblockchain.io,AOBlockchain,CSS,true,false,false,1,false,true,false,false +Gutawer/gzdoom-gutamatics,Gutawer,Python,false,false,false,0,false,false,false,false +pheix-pool/core-perl6,pheix-pool,Perl6,false,false,false,0,false,false,false,false +kamilgregorczyk/instalike,kamilgregorczyk,Python,true,true,false,1,false,true,false,false +nvidia/opengl,nvidia,,false,false,false,0,false,false,false,false +guardianproject/checkey,guardianproject,Java,true,false,false,2,false,true,true,false +Lharquel/RailEmu,Lharquel,C#,false,false,false,0,false,false,false,false +Manu343726/clang-conan-packages,Manu343726,Python,true,false,false,55,false,false,false,false +seattlelinux/gslug,seattlelinux,HTML,true,false,false,1,false,true,false,false +TMW2/serverdata,TMW2,C,true,false,false,4,true,true,false,false +LuckyLukert/footballLiebenzell,LuckyLukert,Python,false,false,false,0,false,false,false,false +Retr0_System/mathgen,Retr0_System,Perl,false,false,false,0,false,false,false,false +ole.tange/gnu-parallel-book,ole.tange,Makefile,false,false,false,0,false,false,false,false +BeS/Blog2Medium,BeS,PHP,false,false,false,0,false,false,false,false +epakompri/52plantes,epakompri,,false,false,false,0,false,false,false,false +mayel/dataverse,mayel,PHP,false,false,false,0,false,false,false,false +jmiller9/chelcat-game,jmiller9,Python,false,false,false,0,false,false,false,false +jibe-b/HACKccessibility-expose-the-documentation,jibe-b,,false,false,false,0,false,false,false,false +mcepl/sword,mcepl,C++,false,false,false,0,false,false,false,false +RaraCerberus/HL2CE,RaraCerberus,C++,false,false,false,0,false,false,false,false +flectra-hq/build-tools,flectra-hq,Python,false,true,false,0,false,false,false,false +UnderKoen/Macister,UnderKoen,HTML,false,false,false,0,false,false,false,false +vgsantoniazzi/ai-workshop,vgsantoniazzi,JupyterNotebook,false,false,false,0,false,false,false,false +crypto-exporters/ticker-exporters,crypto-exporters,Python,false,false,false,0,false,false,false,false +artbalnov/room-test,artbalnov,Kotlin,false,false,false,0,false,false,false,false +HorribleGeek/Geek-World,HorribleGeek,HTML,false,false,false,0,false,false,false,false +WiDGeT_TrentU/RNAseq,WiDGeT_TrentU,R,false,false,false,0,false,false,false,false +xaviuzz/kanbang,xaviuzz,Ruby,true,false,false,1,false,true,false,false +aapjeisbaas/coin-trail,aapjeisbaas,Python,false,true,false,0,false,false,false,false +XF9/EpicQuest,XF9,C#,false,false,false,0,false,false,false,false +dasjott/alexa-sdk-go,dasjott,Go,false,false,false,0,false,false,false,false +flectra-hq/pylint-flectra,flectra-hq,Python,false,true,false,0,false,false,false,false +yasintuncel/NodeMCU_TCP_IP,yasintuncel,Java,false,false,false,0,false,false,false,false +materials-modeling/vcsgc-lammps,materials-modeling,C++,true,false,false,1,false,false,true,false +ajwoo/section19GG,ajwoo,Java,false,false,false,0,false,false,false,false +ablondin/inf2160-hiv2018-tp1,ablondin,Haskell,false,false,false,0,false,false,false,false +lillealisa/Koduhaldus,lillealisa,JavaScript,false,false,false,0,false,false,false,false +gitlab-com/people-ops/recruiting,gitlab-com,,false,false,false,0,false,false,false,false +lucas_iut/Times_screen,lucas_iut,HTML,false,false,false,0,false,false,false,false +SirEdvin/sanic-oauth,SirEdvin,Python,true,false,false,2,false,true,false,false +agamigo/material,agamigo,Go,true,false,false,1,false,true,false,false +cyberbudy/django-postie,cyberbudy,Python,true,true,false,3,true,true,false,true +saimunhossain/Angular5FirebaseCRUD,saimunhossain,TypeScript,false,false,false,0,false,false,false,false +xianbaum/red-x,xianbaum,TypeScript,true,false,false,1,false,true,false,false +uni10/ipeps,uni10,Python,false,false,false,0,false,false,false,false +NVM_IITD_Research/MASTISK,NVM_IITD_Research,Matlab,false,false,false,0,false,false,false,false +supertylerc/elastiflow-example,supertylerc,Shell,false,false,false,0,false,false,false,false +gravoo/my_game,gravoo,HTML,true,false,false,1,true,false,false,false +omniprof/web_project_dependencies,omniprof,,false,false,true,0,false,false,false,false +fdroid/basebox,fdroid,Python,true,false,false,1,false,true,false,false +dmitriz/complex-analysis-courses,dmitriz,,false,false,false,0,false,false,false,false +textileio/awesome-neuralnets,textileio,,false,false,false,0,false,false,false,false +cairo/cairo-demos,cairo,C,false,false,false,0,false,false,false,false +KonstantineV2/nightwatch-grunt,KonstantineV2,JavaScript,false,false,false,0,false,false,false,false +atorresm/Godot-LowPolyTerrainDemo,atorresm,GDScript,false,false,false,0,false,false,false,false +OpenEduCat/openeducat_erp,OpenEduCat,Python,false,false,false,0,false,false,false,false +robconnolly/micropython-room-sensor,robconnolly,Python,false,false,false,0,false,false,false,false +pika-lab/lpaas/lpaas-ws,pika-lab,Java,false,false,true,0,false,false,false,false +sodimel/gandynV5,sodimel,Shell,false,false,false,0,false,false,false,false +tnir/docs.djangoproject.jp,tnir,Go,true,false,false,2,false,true,true,false +gitlab-cookbooks/gitlab_fluentd,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true +AndreasK/classical-music-tagger,AndreasK,Java,false,false,false,0,false,false,false,false +gnunicode/interknit,gnunicode,Rust,false,false,false,0,false,false,false,false +Horus_HCS/formation-web,Horus_HCS,HTML,false,false,false,0,false,false,false,false +fkumro/lake_effect,fkumro,Elixir,true,false,false,2,false,true,true,false +fkumro/thunder_snow,fkumro,JavaScript,true,false,false,1,false,true,false,false +Kwilco/konosuba-gifs,Kwilco,Python,true,false,false,3,false,true,false,true +TheNeta/OldSimpleRoleplay,TheNeta,C#,false,false,false,0,false,false,false,false +uwmcomputersociety/labyrinth,uwmcomputersociety,Python,false,false,false,0,false,false,false,false +ekaitz-zarraga/talks,ekaitz-zarraga,JavaScript,true,false,false,1,false,false,true,false +vindarel/cl-bookshops,vindarel,CommonLisp,true,false,false,1,false,true,false,false +thelabnyc/wagtail_blog,thelabnyc,Python,true,true,false,1,false,true,false,false +stephane.codazzi/power5online,stephane.codazzi,JavaScript,true,false,false,1,true,false,false,false +trustable/documents,trustable,,true,false,false,2,false,false,false,false +yudalinemail/BBO_program,yudalinemail,Java,false,false,false,0,false,false,false,false +drypack/main,drypack,PHP,true,false,false,1,false,true,false,false +imphilippesimo/league.jpa,imphilippesimo,Java,false,false,true,0,false,false,false,false +victoruccetina/Machine_Learning_Course,victoruccetina,,false,false,false,0,false,false,false,false +loktionov129/WebSocketServer,loktionov129,C#,false,false,false,0,false,false,false,false +loktionov129/WebApiServer,loktionov129,C#,false,false,false,0,false,false,false,false +loktionov129/DevOps,loktionov129,Shell,false,false,false,0,false,false,false,false +LibreOfficiant/ide_utils,LibreOfficiant,Python,false,false,false,0,false,false,false,false +Niellai/zappy,Niellai,C#,false,false,false,0,false,false,false,false +koha-community/koha-misc4dev,koha-community,Perl,false,false,false,0,false,false,false,false +fdroid/android_vendor_fdroid,fdroid,Shell,true,false,false,1,false,true,false,false +d3fc0n4/mastodon_share,d3fc0n4,JavaScript,false,false,false,0,false,false,false,false +scottalanmiller/nextcloud_fedora_installer,scottalanmiller,Shell,false,false,false,0,false,false,false,false +jparaque/meetup,jparaque,Ruby,true,false,false,1,false,true,false,false +kadouche/inf3135-Hiver2018-tp2,kadouche,Makefile,false,false,false,0,false,false,false,false +dataengi/marketing/www.dataengi.com,dataengi,HTML,true,false,false,3,true,false,true,false +crconte/opx,crconte,Shell,true,false,false,2,false,true,false,true +balazs4/gitlab-pipeline-monitor,balazs4,JavaScript,true,false,false,2,false,true,false,true +docker-hub/texlive,docker-hub,Shell,true,false,false,6,false,true,false,false +dickoa/rhdx,dickoa,R,true,false,false,1,false,false,true,false +ernesto.jimenez.ruiz/OptiqueVQS,ernesto.jimenez.ruiz,JavaScript,false,false,true,0,false,false,false,false +stanhu/ansible-gitlab-geo,stanhu,Ruby,false,false,false,0,false,false,false,false +CakirHuseyin/CENG_2034_Operating_Systems-2018,CakirHuseyin,C,false,false,false,0,false,false,false,false +batgar/TP3_git,batgar,Python,false,false,false,0,false,false,false,false +clbr/hummingbird,clbr,C++,false,false,false,0,false,false,false,false +PPL2018csui/Kelas-D/PPL2018-D3,PPL2018csui,JavaScript,true,false,false,3,false,true,true,true +PPL2018csui/Kelas-D/PPL2018-D5,PPL2018csui,Java,true,false,false,3,true,true,false,false +Retr0_System/awesomo,Retr0_System,Rust,false,false,false,0,false,false,false,false +sergey.suslov/hack,sergey.suslov,JavaScript,false,false,false,0,false,false,false,false +ahrs/gentoo-stuff,ahrs,Shell,true,false,false,1,false,true,false,false +christbu/graphql-demo,christbu,Python,false,false,false,0,false,false,false,false +msvechla/vaultbeat,msvechla,Go,true,false,false,2,false,true,false,true +coop-transport-ferroviaire-et-fluvial/my-train-coop,coop-transport-ferroviaire-et-fluvial,,false,false,false,0,false,false,false,false +lortet/AndroidBaseProject,lortet,Java,true,false,false,3,true,true,false,false +souissi.anis/ng-super-heroes,souissi.anis,TypeScript,true,false,false,2,true,false,true,false +zcash-docs/zcash-docs,zcash-docs,Python,true,false,false,3,true,false,true,false +inkscape/inkscape-docs/documentation-export,inkscape,HTML,false,false,false,0,false,false,false,false +otherbenji/LOMNTool,otherbenji,C#,false,false,false,0,false,false,false,false +chowner/investogator,chowner,Python,true,false,false,1,false,true,false,false +mayra-cabrera/buffalo-workshop,mayra-cabrera,JavaScript,false,false,false,0,false,false,false,false +donnieclapp-OS/make-google-images-great-again,donnieclapp-OS,JavaScript,false,false,false,0,false,false,false,false +consultingservice/hrd-api,consultingservice,PHP,false,false,false,0,false,false,false,false +muhaaliss/geany-snippets.conf,muhaaliss,,false,false,false,0,false,false,false,false +pidila/kit-sprite-svg,pidila,JavaScript,false,false,false,0,false,false,false,false +lcoremodders/LucraftCore,lcoremodders,Java,false,false,false,0,false,false,false,false +tezos/tezos-faucet,tezos,JavaScript,true,false,false,1,false,true,false,false +prosomo/simplecommerce-v2,prosomo,JavaScript,false,false,false,0,false,false,false,false +glorwinger/nwnsc,glorwinger,C++,true,false,false,1,true,false,false,false +Code_Man/Godot_VN,Code_Man,GDScript,false,false,false,0,false,false,false,false +jensj/myqueue,jensj,Python,true,false,false,1,false,true,false,false +CaflischLab/CampaRi,CaflischLab,R,true,false,false,4,false,true,true,false +mkjeldsen/commitmsgfmt,mkjeldsen,Rust,true,false,false,1,false,true,false,false +DBotThePony/DBotProjects,DBotThePony,Lua,true,false,false,1,true,false,false,false +dr.sybren/blender-asset-tracer,dr.sybren,Python,false,false,false,0,false,false,false,false +Autogramma/Android_7_1_2_M,Autogramma,,false,false,false,0,false,false,false,false +GeoNufio1404/Torneo,GeoNufio1404,JavaScript,false,false,false,0,false,false,false,false +kinolaev/vscode-git-lfs-file-locking,kinolaev,TypeScript,false,false,false,0,false,false,false,false +geeks4change/hubs4change/enzian,geeks4change,CSS,false,false,false,0,false,false,false,false +TTtie/kuvien.js,TTtie,JavaScript,false,false,false,0,false,false,false,false +onerelief/onerelief,onerelief,HCL,false,false,false,0,false,false,false,false +biobii/idlearn,biobii,CSS,false,false,false,0,false,false,false,false +burke-software/nativescript-foss-sidedrawer,burke-software,JavaScript,false,false,false,0,false,false,false,false +publicmarket/public-market-storefront,publicmarket,Ruby,true,false,false,3,false,false,false,false +mowalle/Delegator,mowalle,C++,false,false,false,0,false,false,false,false +Deni.t/SCM-Project,Deni.t,C#,false,false,false,0,false,false,false,false +norganna-wow/all,norganna-wow,,false,false,false,0,false,false,false,false +yishusheng/openwrt,yishusheng,C,false,false,false,0,false,false,false,false +binxio/serverless-meetup-2018-02,binxio,Python,false,false,false,0,false,false,false,false +PlantGenomicsLab/GenomeAnnotations,PlantGenomicsLab,Perl,false,false,false,0,false,false,false,false +CHANGE-PAWN/CHANGE-PAWN,CHANGE-PAWN,PAWN,false,false,false,0,false,false,false,false +Flakky/Stream-CppArcade,Flakky,C++,false,false,false,0,false,false,false,false +srrg-software/srrg_sasha,srrg-software,C++,false,false,false,0,false,false,false,false +datto/engineering/volsnap,datto,C,false,false,false,0,false,false,false,false +semycolon/digiato-client,semycolon,Kotlin,false,false,false,0,false,false,false,false +testflock/ui-test-app-v2,testflock,Java,false,false,true,0,false,false,false,false +EnesZ/deep_learning,EnesZ,Python,false,false,false,0,false,false,false,false +tomderudder/my-web-tools,tomderudder,Perl,false,false,false,0,false,false,false,false +Polyfox/Pip-Bot/Pip-Bot,Polyfox,Java,false,false,true,0,false,false,false,false +AndreasK/AtariX,AndreasK,C,false,false,false,0,false,false,false,false +N3K/sharkbot,N3K,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/gitlab_kramdown,gitlab-org,Ruby,true,false,false,1,false,true,false,false +danieltorrer/danieltorrer.gitlab.io,danieltorrer,CSS,true,false,false,1,false,false,true,false +datachallenge-edf/training,datachallenge-edf,JupyterNotebook,false,false,false,0,false,false,false,false +ronanrodrigo/Sensazonal,ronanrodrigo,Swift,false,false,false,0,false,false,false,false +lupine/crockery,lupine,Go,false,false,false,0,false,false,false,false +Sergei-Smirnov-95/team_3,Sergei-Smirnov-95,Python,false,false,false,0,false,false,false,false +PrajjwalDimri/itg-cse-web-tech,PrajjwalDimri,HTML,true,false,false,1,false,false,true,false +gianfrancoespinoza/hack_pair_v1,gianfrancoespinoza,Ruby,false,false,false,0,false,false,false,false +SinguDevCrew/help-desk,SinguDevCrew,,false,false,false,0,false,false,false,false +cjvnjde/englang,cjvnjde,JavaScript,false,false,false,0,false,false,false,false +technomancy/pengbot,technomancy,Lua,false,false,false,0,false,false,false,false +mkjeldsen/git-mr-to,mkjeldsen,Shell,true,false,false,1,false,true,false,false +fleeit/docs,fleeit,CSS,false,false,false,0,false,false,false,false +ml-nethone/level-up,ml-nethone,JupyterNotebook,false,false,false,0,false,false,false,false +torosyanv/learning-path,torosyanv,,false,false,false,0,false,false,false,false +painlessMesh/painlessMeshManager,painlessMesh,HTML,false,false,false,0,false,false,false,false +jerbear64/mpv-discord-rich-presence,jerbear64,Python,false,false,false,0,false,false,false,false +nathanchere/rEFInd-classroom,nathanchere,Shell,false,false,false,0,false,false,false,false +tkpapp/GitlabJuliaDemo.jl,tkpapp,Julia,true,false,false,2,false,true,true,false +oalbiez/katas,oalbiez,Java,false,false,false,0,false,false,false,false +oax/dex-poc,oax,JavaScript,true,false,false,2,false,true,true,false +pathfinder-fr/pf2-jekyll,pathfinder-fr,JavaScript,true,false,false,2,false,true,true,false +oalbiez/katas-study,oalbiez,Java,false,false,false,0,false,false,false,false +vsu/avs/backend,vsu,HTML,true,false,false,2,true,true,false,false +TomTisbury/JRFabrication,TomTisbury,,false,false,false,0,false,false,false,false +gitlab-com/support/dotcom/dotcom-meta,gitlab-com,,false,false,false,0,false,false,false,false +coffeetheme/VideoPlay,coffeetheme,PHP,false,false,false,0,false,false,false,false +norganna-wow/auctioneer/auc-advanced,norganna-wow,Lua,false,false,false,0,false,false,false,false +piperka/piperka,piperka,Haskell,false,false,false,0,false,false,false,false +whatthedev/runtime-monobehaviour-compilation,whatthedev,C#,false,false,false,0,false,false,false,false +angreal/angreal,angreal,Python,true,false,false,4,false,true,false,true +onepoint/junit-5-extensions,onepoint,Java,true,false,true,5,false,false,false,false +geeks4change/drutopiadev,geeks4change,JavaScript,false,false,false,0,false,false,false,false +fuzzyqu/chip8,fuzzyqu,Rust,false,false,false,0,false,false,false,false +Artemix/Pix,Artemix,Java,false,false,false,0,false,false,false,false +fiot/raspbian-headless-networking-config,fiot,,false,false,false,0,false,false,false,false +cajen/cajen,cajen,PHP,true,false,false,2,true,true,false,false +adolfont/lohic,adolfont,Erlang,false,false,false,0,false,false,false,false +onepoint/onecss,onepoint,HTML,true,false,false,1,false,false,false,false +fathom/bridger,fathom,TypeScript,true,false,false,2,true,false,true,false +ITForGood/hackerrank,ITForGood,Java,false,false,false,0,false,false,false,false +brn1337/sandbox-detection-user-behaviour,brn1337,Python,false,false,false,0,false,false,false,false +mamyn0va/php-template,mamyn0va,PHP,true,false,false,2,false,true,true,false +bi-pjs.1/tutorials,bi-pjs.1,JavaScript,false,false,false,0,false,false,false,false +mmashh/lab,mmashh,C++,false,false,false,0,false,false,false,false +Hardroid/GdgAndroidSantiagoCI,Hardroid,Java,true,false,false,4,true,true,true,true +upbhack/upbhack.gitlab.io,upbhack,Verilog,true,false,false,1,false,true,false,false +camshift/py-dahua-brute,camshift,Python,false,false,false,0,false,false,false,false +valeth/discord-rpc-client.rs,valeth,Rust,true,false,false,4,true,true,false,true +dxld/cabal-helper,dxld,Haskell,true,false,false,1,true,false,false,false +mrjkc/rails-request-bin,mrjkc,Ruby,false,false,false,0,false,false,false,false +Cayan_HacktheHub/TamaTrainer,Cayan_HacktheHub,Python,true,true,false,1,false,true,false,false +danso/derivejoy,danso,Python,false,false,false,0,false,false,false,false +mraes/fivem-racing,mraes,Lua,false,false,false,0,false,false,false,false +sane-project/tracker-migration,sane-project,JavaScript,false,false,false,0,false,false,false,false +velocidex/velociraptor,velocidex,Go,false,false,false,0,false,false,false,false +freedesktop-sdk/gnome-sdk-images,freedesktop-sdk,,false,false,false,0,false,false,false,false +vangesteljasper/router,vangesteljasper,PHP,false,false,false,0,false,false,false,false +beskhlebnyi/bes-todo-list,beskhlebnyi,Ruby,true,false,false,1,false,true,false,false +cristianfrasineanu/cheat-buster,cristianfrasineanu,C#,false,false,false,0,false,false,false,false +PerplexedPeach/dynamic-avatar-drawer,PerplexedPeach,HTML,true,false,false,1,false,false,true,false +MateStudio.Dev/FilesUNMSM,MateStudio.Dev,JavaScript,false,false,false,0,false,false,false,false +CitizenBeeZ/CollabDev_SeriousGame,CitizenBeeZ,,false,false,false,0,false,false,false,false +Peanuts420/gdlenhanced,Peanuts420,C++,false,false,false,0,false,false,false,false +etnbrd/fisca.js,etnbrd,JavaScript,false,false,false,0,false,false,false,false +mdeken/player,mdeken,CSS,false,false,false,0,false,false,false,false +MaLeviose/Palomete,MaLeviose,,false,false,false,0,false,false,false,false +QuarkTheAwesome/SwitchOnWiiU,QuarkTheAwesome,C,false,false,false,0,false,false,false,false +tractor-team/gnome-shell-extension-tractor,tractor-team,JavaScript,false,false,false,0,false,false,false,false +pixdrift/buildah-scripts,pixdrift,Shell,false,false,false,0,false,false,false,false +aapjeisbaas/spot-ecs,aapjeisbaas,Shell,true,false,false,1,false,true,false,false +srikanthlogic/gstin-validator,srikanthlogic,JavaScript,true,false,false,1,false,true,false,false +t3r/mpmap,t3r,JavaScript,true,false,false,1,true,false,false,false +slimaidar/pointage,slimaidar,CSS,false,false,false,0,false,false,false,false +gilrs-project/gilrs-core,gilrs-project,Rust,true,false,false,3,true,true,true,false +k-terashima/bitbot.pub,k-terashima,Go,false,false,false,0,false,false,false,false +fentras/osu_unity-mp,fentras,C#,false,false,false,0,false,false,false,false +mehalter/dotfiles,mehalter,Python,false,false,false,0,false,false,false,false +flirt/FLIRT,flirt,C++,false,false,false,0,false,false,false,false +baumrock/FieldtypeRockGrid,baumrock,,false,false,false,0,false,false,false,false +devscola/asesora,devscola,Ruby,true,false,false,1,false,true,false,false +RicardMartin/WebService-Kinect,RicardMartin,JavaScript,false,false,false,0,false,false,false,false +net-as-artwork/networking,net-as-artwork,Makefile,true,false,false,2,true,false,true,false +igrep/main-tester,igrep,Haskell,true,false,false,1,false,true,false,false +nlamblin/genieLogiciel,nlamblin,Java,false,false,true,0,false,false,false,false +all-mangas-reader/all-mangas-reader-2-mirrors,all-mangas-reader,JavaScript,true,false,false,2,true,false,false,false +z0x/fcrash,z0x,Shell,false,false,false,0,false,false,false,false +Rocko97/Basic-POS,Rocko97,CSS,false,false,false,0,false,false,false,false +tehnokom/documents/agitado,tehnokom,,false,false,false,0,false,false,false,false +teonite/inspectr,teonite,Python,true,false,false,2,true,false,false,false +gdevops/tuto_docker,gdevops,Python,true,true,false,1,false,true,false,false +crowdie/android,crowdie,Kotlin,false,false,false,0,false,false,false,false +crowdie/api,crowdie,Go,false,false,false,0,false,false,false,false +pickachu/recruiting-front-end-test-designbox,pickachu,,false,false,false,0,false,false,false,false +BulbThinker/95pc,BulbThinker,Python,false,false,false,0,false,false,false,false +kelal/_dev/gerami,kelal,JavaScript,false,false,false,0,false,false,false,false +WoW-from-Discord/jane,WoW-from-Discord,Python,false,false,false,0,false,false,false,false +armaxik/awesome-chat-bot,armaxik,,false,false,false,0,false,false,false,false +spritely/spritely,spritely,,false,false,false,0,false,false,false,false +jpotisch/petbooth,jpotisch,JavaScript,true,false,false,1,false,true,false,false +buik/boringssl,buik,,false,false,false,0,false,false,false,false +vali-it-201804/demos,vali-it-201804,Java,false,false,false,0,false,false,false,false +VSI-TUGraz/Dynasaur,VSI-TUGraz,Python,false,true,false,0,false,false,false,false +denkmal/denkmal-website,denkmal,Vue,true,false,false,3,true,true,false,true +ibu2710/iRT-GTasks,ibu2710,Java,false,false,false,0,false,false,false,false +spitzerd/latex-vorlage-dhbw-loerrach-szi,spitzerd,TeX,false,false,false,0,false,false,false,false +dipi.chiara/EVT2,dipi.chiara,TypeScript,false,false,false,0,false,false,false,false +gitlab-org/quality/team-tasks,gitlab-org,,false,false,false,0,false,false,false,false +dennis/reviewer-roulette,dennis,JavaScript,false,false,false,0,false,false,false,false +snow_abstraction/DWP_linear_opt_math,snow_abstraction,C++,false,false,false,0,false,false,false,false +ksztern/chatons,ksztern,Python,false,true,false,0,false,false,false,false +tomderudder/serveur,tomderudder,C,false,false,false,0,false,false,false,false +Creased/vulnhub-docker-writeup,Creased,,false,false,false,0,false,false,false,false +oederaugusto/jogos,oederaugusto,Python,false,false,false,0,false,false,false,false +mdeejay/kernel_xiaomi_vince,mdeejay,,false,false,false,0,false,false,false,false +sAnIc-ND/sAnIc,sAnIc-ND,Python,true,false,false,1,false,false,true,false +yjkim1701/do-study,yjkim1701,JavaScript,false,false,false,0,false,false,false,false +eyeo/websites/website-defaults,eyeo,CSS,false,false,false,0,false,false,false,false +Cacophony/Gateway,Cacophony,Go,true,false,false,5,false,false,false,false +precire/app-ionic,precire,TypeScript,false,false,false,0,false,false,false,false +PierreFaniel/odoo-apps,PierreFaniel,Python,false,false,false,0,false,false,false,false +DatScam/CS-RP,DatScam,,false,false,false,0,false,false,false,false +ibnuda/Cirkeltrek,ibnuda,Haskell,false,false,false,0,false,false,false,false +booom313/renpy-android-modding-support,booom313,Python,false,false,false,0,false,false,false,false +uweschmitt/pytest-regtest,uweschmitt,Python,true,true,false,1,false,false,false,false +tkkumaravel/CMS,tkkumaravel,JavaScript,false,false,true,0,false,false,false,false +JsOS/JsOS,JsOS,C++,false,false,false,0,false,false,false,false +HorseGO/doa-doa-issues,HorseGO,,false,false,false,0,false,false,false,false +seelmann/jupyter-workshop-pyvie2018,seelmann,HTML,false,false,false,0,false,false,false,false +ranolfi/rvirtesp,ranolfi,Shell,false,false,false,0,false,false,false,false +coq/coq,coq,OCaml,true,false,false,4,true,true,true,true +publishing-reform/publishing-reform.gitlab.io,publishing-reform,CSS,true,false,false,2,false,true,true,false +smc/fonts/gayathri,smc,HTML,true,false,false,4,true,true,true,true +pool2018/pool,pool2018,PHP,false,false,false,0,false,false,false,false +bitspice/qikipedia,bitspice,JavaScript,false,false,false,0,false,false,false,false +RedtuzkUI/ElvUI_Redtuzk,RedtuzkUI,Lua,false,false,false,0,false,false,false,false +saimunhossain/Laravel-Project,saimunhossain,HTML,false,false,false,0,false,false,false,false +it_schoolprojects/informatikprojekt/marsme,it_schoolprojects,Java,true,false,false,3,true,true,false,true +ex-open-source/ecto-postgres-enum,ex-open-source,Elixir,false,false,false,0,false,false,false,false +pourrito/KeePic,pourrito,PHP,false,false,false,0,false,false,false,false +tomderudder/tutorial,tomderudder,,false,false,false,0,false,false,false,false +ardilabs/sams-garden,ardilabs,HTML,true,false,false,4,false,false,false,false +Matrixcoffee/twif-util,Matrixcoffee,Python,false,false,false,0,false,false,false,false +Moini/m23-i18n,Moini,PHP,false,false,false,0,false,false,false,false +kpa_admin/quasar-component-library,kpa_admin,Shell,false,false,false,0,false,false,false,false +ablondin/inf3135-ete2018-tp1-enonce,ablondin,Makefile,false,false,false,0,false,false,false,false +aossie/CrowdAlert-Web,aossie,JavaScript,false,false,false,0,false,false,false,false +lupine/purple-plugin-delta,lupine,C,true,false,false,1,true,false,false,false +canderegg/manager-readme,canderegg,,false,false,false,0,false,false,false,false +gedl/phaser-tiled-physics,gedl,JavaScript,true,false,false,1,false,false,true,false +joneshf/purescript-to-go,joneshf,PureScript,false,false,false,0,false,false,false,false +vannilla/NewMIME,vannilla,JavaScript,false,false,false,0,false,false,false,false +teamanubot/LineEtotJS,teamanubot,JavaScript,true,false,false,1,false,true,false,false +GLaDDOS/java-sin-cos-tan,GLaDDOS,Java,false,false,false,0,false,false,false,false +GLaDDOS/hotblood,GLaDDOS,JavaScript,false,false,false,0,false,false,false,false +smc/Malayalam-Fonts-WebExtension,smc,CSS,false,false,false,0,false,false,false,false +bromanko/totowa,bromanko,Kotlin,false,false,false,0,false,false,false,false +Screwtapello/simplest-rust-toolchain-installer,Screwtapello,Rust,false,false,false,0,false,false,false,false +brukhabtu/femtow,brukhabtu,Python,true,false,false,1,false,true,false,false +sasfeat/walkplaces-analysis,sasfeat,JupyterNotebook,false,false,false,0,false,false,false,false +snowman-labs/liasis,snowman-labs,Python,false,false,false,0,false,false,false,false +jicheng/jc.data,jicheng,HTML,false,false,false,0,false,false,false,false +CVA_DL/DGC,CVA_DL,Python,false,false,false,0,false,false,false,false +danielhones/pycategories,danielhones,Python,true,false,false,2,false,true,false,false +Pilatomic/RoomProtocol,Pilatomic,C++,false,false,false,0,false,false,false,false +AlinaGH/RepositorioSanitario,AlinaGH,C,false,false,false,0,false,false,false,false +piperka/crawler,piperka,Haskell,false,false,false,0,false,false,false,false +amurilloa/2018-IIC-PIII-NOCHE,amurilloa,C#,false,false,false,0,false,false,false,false +sagiri-bot/sagiri-v3,sagiri-bot,JavaScript,false,false,false,0,false,false,false,false +hashem99/freeodooapps2,hashem99,,false,false,false,0,false,false,false,false +asludds/civicrm-turfcutter,asludds,JavaScript,false,false,false,0,false,false,false,false +xkero/rum,xkero,Shell,false,false,false,0,false,false,false,false +ayana/i18n,ayana,JavaScript,false,false,false,0,false,false,false,false +OpenCAE/VandV,OpenCAE,C++,false,false,false,0,false,false,false,false +inno-olymp-bots/rate_bot,inno-olymp-bots,Python,false,true,false,0,false,false,false,false +astadnik/Corewar,astadnik,C,false,false,false,0,false,false,false,false +librehealth/lh-toolkit-webcomponents,librehealth,JavaScript,true,false,false,2,false,true,true,false +djnzx48/ld-snake,djnzx48,Assembly,false,false,false,0,false,false,false,false +berniecodewiz/mandelwow,berniecodewiz,Rust,false,false,false,0,false,false,false,false +booust-v2/HomeStudy,booust-v2,,false,false,false,0,false,false,false,false +monaco/hws,monaco,M4,false,false,false,0,false,false,false,false +coala/bears/coala-antlr,coala,Python,true,true,false,1,false,true,false,false +ringods/zoho-sites-template-development,ringods,HTML,false,false,false,0,false,false,false,false +meesvandongen/gitlab-pages-react-app,meesvandongen,JavaScript,true,false,false,1,false,false,true,false +minhducsun2002/codefun.vn,minhducsun2002,C++,false,false,false,0,false,false,false,false +Srar/chenxueniezaoqi,Srar,JavaScript,false,false,false,0,false,false,false,false +MakerMex/MakerSCAD,MakerMex,JavaScript,false,false,false,0,false,false,false,false +BrawlDB/frontend,BrawlDB,TypeScript,true,false,false,2,true,false,true,false +bachradsusi/nitrokey-tools,bachradsusi,Python,false,false,false,0,false,false,false,false +Haldoryn/DHBWTemplate,Haldoryn,TeX,true,false,false,1,false,true,false,false +ayana/tools/eslint-config,ayana,JavaScript,false,false,false,0,false,false,false,false +eyeo/adblockplus/adblockbrowserios,eyeo,Swift,false,false,false,0,false,false,false,false +eyeo/adblockplus/adblockbrowserios-core,eyeo,Swift,false,false,false,0,false,false,false,false +camd/summerschool,camd,Shell,false,false,false,0,false,false,false,false +Th3_Scarecrow/dot_files,Th3_Scarecrow,Python,false,false,false,0,false,false,false,false +vpl/videoplayer,vpl,C#,false,false,false,0,false,false,false,false +maxime1992/emails-app,maxime1992,TypeScript,false,false,false,0,false,false,false,false +nyker510/papers,nyker510,,false,false,false,0,false,false,false,false +elKevin24/Proyecto,elKevin24,Java,false,false,false,0,false,false,false,false +amigasourcecodepreservation/benchmark-modula-2,amigasourcecodepreservation,Modula-2,false,false,false,0,false,false,false,false +aapjeisbaas/gulb,aapjeisbaas,Shell,false,false,false,0,false,false,false,false +mihails.strasuns/dtoh,mihails.strasuns,D,true,false,false,1,false,true,false,false +InstitutMaupertuis/rqt_bag_exporter,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +flashbulb/android,flashbulb,Kotlin,false,false,false,0,false,false,false,false +lukecaren/Extraction,lukecaren,C++,false,false,false,0,false,false,false,false +iwf/ngw,iwf,HTML,false,false,false,0,false,false,false,false +gooverfitting/chest-xray-pneumonia,gooverfitting,JupyterNotebook,false,false,false,0,false,false,false,false +david-bristol/coconut,david-bristol,TeX,false,false,false,0,false,false,false,false +vbmithr/mezos,vbmithr,OCaml,false,false,false,0,false,false,false,false +sabrina-setu/DiagnosticManagment,sabrina-setu,ASP,false,false,false,0,false,false,false,false +plut0n/MLNL,plut0n,Python,true,false,false,1,false,true,false,false +SalvatoreLopez/libreria-jroll,SalvatoreLopez,JavaScript,false,false,false,0,false,false,false,false +chris-olbrich/emacs-reveal-transaction-processing,chris-olbrich,EmacsLisp,true,false,false,1,false,false,true,false +lukecaren/TheHorde,lukecaren,C++,false,false,false,0,false,false,false,false +tds-anonymous/maya-devkit,tds-anonymous,,false,false,false,0,false,false,false,false +bots-garden/scala/workshop-2018,bots-garden,,false,false,false,0,false,false,false,false +KrystianKolad/Zdajmy_Wreszcie_To_Ak,KrystianKolad,,false,false,false,0,false,false,false,false +dwt1/shell-color-scripts,dwt1,Shell,false,false,false,0,false,false,false,false +DavidGriffith/inform6lib,DavidGriffith,C++,false,false,false,0,false,false,false,false +LibraryGenesis/LibraryGenesis,LibraryGenesis,,false,false,false,0,false,false,false,false +p4block/beeTorrent,p4block,Java,false,false,false,0,false,false,false,false +hgg/webpymail,hgg,Python,false,true,false,0,false,false,false,false +scaredginger/ai-arena,scaredginger,C,false,false,false,0,false,false,false,false +mosra/magnum-plugins,mosra,C++,false,false,false,0,false,false,false,false +mosra/magnum-integration,mosra,C++,false,false,false,0,false,false,false,false +mosra/magnum-extras,mosra,C++,false,false,false,0,false,false,false,false +mosra/magnum-examples,mosra,C++,false,false,false,0,false,false,false,false +mosra/magnum-website,mosra,HTML,false,false,false,0,false,false,false,false +dfederschmidt/docker-pipenv-sample,dfederschmidt,Python,true,false,false,3,true,true,false,true +SavoyRoad/savoybot,SavoyRoad,Python,false,true,false,0,false,false,false,false +h5cli/h5cli,h5cli,Python,true,false,false,2,false,true,true,false +troyengel/scripts,troyengel,Shell,false,false,false,0,false,false,false,false +seiba/PrivacyHelper,seiba,Java,false,false,false,0,false,false,false,false +ereio/react-native-app-kit,ereio,JavaScript,false,false,false,0,false,false,false,false +ggggabri/browser-startpage,ggggabri,CSS,true,false,false,1,false,false,true,false +carmanaught/gnome-shell-extension-workspace-buttons,carmanaught,JavaScript,false,false,false,0,false,false,false,false +Acizza/anup,Acizza,Rust,false,false,false,0,false,false,false,false +somasis/lux,somasis,Shell,false,false,false,0,false,false,false,false +hrbrmstr/freebase,hrbrmstr,R,false,false,false,0,false,false,false,false +hrbrmstr/hrbrthemes,hrbrmstr,R,false,false,false,0,false,false,false,false +perillamint/switch-linux-scripts,perillamint,Shell,false,false,false,0,false,false,false,false +threadly/threadly_examples,threadly,Java,false,false,false,0,false,false,false,false +dansanti/l10n_cl_dte_point_of_sale,dansanti,JavaScript,false,false,false,0,false,false,false,false +ruany/LANBroadcaster,ruany,Java,false,false,true,0,false,false,false,false +ruany/litebans-php,ruany,PHP,false,false,false,0,false,false,false,false +tboox/xmake,tboox,C,false,false,false,0,false,false,false,false +tboox/tbox,tboox,C,false,false,false,0,false,false,false,false +block16/ethereum-portal,block16,JavaScript,false,false,false,0,false,false,false,false +angular-material-home/apps/my-home,angular-material-home,JavaScript,true,false,false,2,true,false,true,false +WebFreak001/bancho-irc,WebFreak001,D,false,false,false,0,false,false,false,false +amhndu/SimpleNES,amhndu,C++,false,false,false,0,false,false,false,false +zxq9/zxWidgets,zxq9,Erlang,false,false,false,0,false,false,false,false +zxq9/zx,zxq9,Erlang,false,false,false,0,false,false,false,false +rtortori/tetration-alfred,rtortori,HTML,false,false,false,0,false,false,false,false +iMil/awstools,iMil,Python,false,false,false,0,false,false,false,false +aquachain/aquachain,aquachain,Go,true,false,false,1,false,true,false,false +gabmus/HydraPaper,gabmus,Python,true,false,false,1,false,false,true,false +rgdacosta/ansible,rgdacosta,Python,false,false,false,0,false,false,false,false +OliverSwift/Promys,OliverSwift,C,false,false,false,0,false,false,false,false +agrahn/ocgx2,agrahn,TeX,false,false,false,0,false,false,false,false +agrahn/media9,agrahn,TeX,false,false,false,0,false,false,false,false +salvatorelab/linkedin-stats,salvatorelab,JavaScript,false,false,false,0,false,false,false,false +insane-adding-machines/frosted,insane-adding-machines,C,false,false,false,0,false,false,false,false +philbooth/hoopy,philbooth,JavaScript,true,false,false,1,false,true,false,false +philbooth/GitHubReminder,philbooth,CoffeeScript,false,false,false,0,false,false,false,false +ric_harvey/kubernetes-labs,ric_harvey,,false,false,false,0,false,false,false,false +zygoon/os-release-zoo,zygoon,,false,false,false,0,false,false,false,false +ZeroDot1/Startpage,ZeroDot1,HTML,true,false,false,1,false,false,true,false +TheFrozenWatchers/LeagueDisplays,TheFrozenWatchers,C++,false,false,false,0,false,false,false,false +alexkahn/Zik3,alexkahn,Swift,false,false,false,0,false,false,false,false +rc0r/afl-fuzz,rc0r,C,false,false,false,0,false,false,false,false +rc0r/exploitable,rc0r,Python,false,false,false,0,false,false,false,false +ColinKinloch/LatinIME_apk,ColinKinloch,,true,false,false,1,true,false,false,false +zavan/monetus-fia-bot,zavan,JavaScript,true,false,false,1,false,true,false,false +cyberatuc/cyberatuc.org,cyberatuc,HTML,true,false,false,2,false,true,true,false +Ponce/slackbuilds,Ponce,Shell,false,false,false,0,false,false,false,false +trueleo/com.github.trueleo.meguminsplash,trueleo,QML,false,false,false,0,false,false,false,false +8sync/dwm-patches,8sync,,false,false,false,0,false,false,false,false +shagu/Clique,shagu,Lua,false,false,false,0,false,false,false,false +shagu/arch-install,shagu,Shell,true,false,false,3,true,true,true,false +shagu/ShaguColor,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguCopy,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguMount,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguError,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguKill,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguPlates,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguPremium,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguScore,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguStance,shagu,Lua,false,false,false,0,false,false,false,false +zerodogg/wwine,zerodogg,Ruby,false,false,false,0,false,false,false,false +arrem/AcquireChariot,arrem,Java,false,false,true,0,false,false,false,false +timwilkinson/HomeKit,timwilkinson,C,false,false,false,0,false,false,false,false +hyperverge/vietnam-docs-rest-api,hyperverge,,false,false,false,0,false,false,false,false +scorputty/vagrant-ha-openshift,scorputty,Shell,true,false,false,1,false,true,false,false +fnordpipe/operatingsystems/fnordpipe-overlay,fnordpipe,Shell,false,false,false,0,false,false,false,false +CelluloidRacer2/GhettoDiscordBots,CelluloidRacer2,JavaScript,false,false,false,0,false,false,false,false +relyt29/votebuying-carbonvote,relyt29,Python,false,false,false,0,false,false,false,false +rek2/tutorial-darknet,rek2,Shell,false,false,false,0,false,false,false,false +bagage/cadastre-conflation,bagage,TypeScript,true,false,false,2,true,true,false,false +paul.98.zgz/webapp-creator,paul.98.zgz,C++,false,false,false,0,false,false,false,false +seandavey/mosaic,seandavey,CSS,false,false,false,0,false,false,false,false +raminorujov/hello-gitlab,raminorujov,Java,false,false,true,0,false,false,false,false +huldra/arctic,huldra,C++,true,false,false,2,true,true,false,false +dbeniamine/todo.txt-vim,dbeniamine,Vimscript,true,false,false,1,false,true,false,false +infragravity/charts,infragravity,Smarty,true,false,false,2,false,true,true,false +ProjektRoot/RecBox-config,ProjektRoot,Shell,false,false,false,0,false,false,false,false +aki237/pin,aki237,Go,true,false,false,2,true,true,false,false +threadly/ambush,threadly,Java,false,false,true,0,false,false,false,false +threadly/ambushGUI,threadly,Java,false,false,false,0,false,false,false,false +threadly/auroraArc,threadly,Java,false,false,false,0,false,false,false,false +threadly/litesockets,threadly,Java,false,false,false,0,false,false,false,false +threadly/litesockets-http,threadly,Java,false,false,false,0,false,false,false,false +EspiDev/EspiSite,EspiDev,Go,false,false,false,0,false,false,false,false +hanss314/TLOW,hanss314,Python,false,false,false,0,false,false,false,false +threadly/threadly,threadly,Java,false,false,false,0,false,false,false,false +unixispower/jcard-template,unixispower,CSS,true,false,false,1,false,false,true,false +obnosim/ardoise,obnosim,Shell,false,false,false,0,false,false,false,false +balping/artisan-bash-completion,balping,PHP,false,false,false,0,false,false,false,false +coringao/osmose-emulator,coringao,C++,false,false,false,0,false,false,false,false +Ciro-Rubiano/NOT-USED-PPAI,Ciro-Rubiano,,false,false,false,0,false,false,false,false +stephenma064/rust-gb,stephenma064,Rust,false,false,false,0,false,false,false,false +chaica/feed2tweet,chaica,Python,false,true,false,0,false,false,false,false +joboticon/say-ubuntu,joboticon,QML,false,false,false,0,false,false,false,false +cecflit/narre2,cecflit,Scheme,false,false,false,0,false,false,false,false +nwmitchell/homeassistant-config,nwmitchell,Python,true,false,false,1,false,true,false,false +codenegaar/TarnaBot,codenegaar,C++,false,false,false,0,false,false,false,false +wyatt8740/Game_Music_Emu,wyatt8740,C++,false,false,false,0,false,false,false,false +alsmoreira/SoTADS,alsmoreira,C,false,false,false,0,false,false,false,false +Monsterovich/firefox-fuckpa,Monsterovich,,false,false,false,0,false,false,false,false +ZoeyGlobe/batchadventuregame,ZoeyGlobe,Batchfile,true,false,false,1,false,false,true,false +cjlyth/resume-app,cjlyth,JavaScript,true,false,false,2,false,true,true,false +renatoaguiar/turbo,renatoaguiar,Lua,false,false,false,0,false,false,false,false +nzkrdev/ants,nzkrdev,Python,false,false,false,0,false,false,false,false +fcitx/fcitx5-rime,fcitx,C++,false,false,false,0,false,false,false,false +fcitx/fcitx-rime,fcitx,C,false,false,false,0,false,false,false,false +MatteoCampinoti94/FALocalRepo,MatteoCampinoti94,Python,false,false,false,0,false,false,false,false +anonymint/robo-chaos,anonymint,Python,false,false,false,0,false,false,false,false +sweylo/jsJookBachs,sweylo,JavaScript,false,false,false,0,false,false,false,false +openworldcrafter/openworldcrafter,openworldcrafter,JavaScript,false,false,false,0,false,false,false,false +Damaged/Damaged-Cogs,Damaged,Python,false,false,false,0,false,false,false,false +ManfredTremmel/gwt-commons-lang3,ManfredTremmel,Java,false,false,true,0,false,false,false,false +nsi-public/s3-proxy,nsi-public,Shell,true,false,false,3,true,true,true,false +4w/hunger_ng,4w,Lua,true,false,false,1,false,true,false,false +mraureliusr/Learn,mraureliusr,TeX,true,false,false,1,false,false,true,false +i5heu/wikinota,i5heu,JavaScript,false,false,false,0,false,false,false,false +linuxlite/litemanual,linuxlite,HTML,false,false,false,0,false,false,false,false +MoOx/git-init,MoOx,,false,false,false,0,false,false,false,false +MrGizmo757/Manjaro_By_MM,MrGizmo757,CSS,false,false,false,0,false,false,false,false +saeedtrb/simple-use-ci,saeedtrb,HTML,true,false,false,2,true,true,false,false +vala-panel-project/cmake-vala,vala-panel-project,CMake,true,false,false,1,true,false,false,false +tiddlywiki.org/feature-request,tiddlywiki.org,,false,false,false,0,false,false,false,false +tim241/pacman-src,tim241,Shell,true,false,false,2,true,true,false,false +vbrosseau/python-sitemap,vbrosseau,Python,false,false,false,0,false,false,false,false +jottyfan/jooqFaces,jottyfan,Java,false,false,false,0,false,false,false,false +larsfp/rpi-readonly,larsfp,Shell,false,false,false,0,false,false,false,false +PisiLinux/pisilife-2,PisiLinux,Python,false,false,false,0,false,false,false,false +PisiLinux/PisiLinux,PisiLinux,Python,false,false,false,0,false,false,false,false +filipg/geval,filipg,Haskell,false,false,false,0,false,false,false,false +2vek/hooktube-redirector,2vek,JavaScript,false,false,false,0,false,false,false,false +derSchabi/Etherwake-app,derSchabi,Java,false,false,false,0,false,false,false,false +sovran/guardin,sovran,Python,false,false,false,0,false,false,false,false +Serg-Norseman/Arbor,Serg-Norseman,C++,false,false,false,0,false,false,false,false +Serg-Norseman/GEDKeeper,Serg-Norseman,C#,false,false,false,0,false,false,false,false +evtest-qt/evtest-qt,evtest-qt,C++,true,false,false,1,true,false,false,false +jstest-gtk/jstest-gtk,jstest-gtk,C++,true,false,false,1,true,false,false,false +vzaa/craycray,vzaa,Rust,false,false,false,0,false,false,false,false +anton.korotkikh/PKI-react,anton.korotkikh,JavaScript,false,false,false,0,false,false,false,false +rwsoftware/eyecu-qt,rwsoftware,C++,false,false,false,0,false,false,false,false +JuliaGPU/CUDAnative.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false +kottkrig/sprout-tree,kottkrig,Elixir,true,false,false,2,false,true,true,false +chaica/backupchecker,chaica,Python,false,false,false,0,false,false,false,false +ShevT/vendor_samsung_lt033g,ShevT,Makefile,false,false,false,0,false,false,false,false +ShevT/device_samsung_lt033g,ShevT,C,false,false,false,0,false,false,false,false +ShevT/kernel_samsung_lt033g,ShevT,C,false,false,false,0,false,false,false,false +tiddlywiki.org/senatus/committee,tiddlywiki.org,,false,false,false,0,false,false,false,false +alfunx/dotfiles,alfunx,Lua,false,false,false,0,false,false,false,false +kotajacob/homepage,kotajacob,HTML,false,false,false,0,false,false,false,false +JBBgameich/halium-install,JBBgameich,Shell,false,false,false,0,false,false,false,false +kotajacob/walls,kotajacob,Python,false,false,false,0,false,false,false,false +alaskalinuxuser/app_ril_control,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +rbrian/bidderbot,rbrian,Go,false,false,false,0,false,false,false,false +sdl-jstest/sdl-jstest,sdl-jstest,C,true,false,false,1,true,false,false,false +nasso/urmusic5-core,nasso,Java,false,false,false,0,false,false,false,false +jjchico/curso-verilog.v,jjchico,Verilog,false,false,false,0,false,false,false,false +illwill/skiptracer,illwill,Python,false,true,false,0,false,false,false,false +mostly/hecate,mostly,Python,false,false,false,0,false,false,false,false +ma1uta/jeon,ma1uta,Java,false,false,true,0,false,false,false,false +alinex/node-portal,alinex,JavaScript,true,false,false,1,false,false,true,false +ivoanjo/pry-debugger-jruby,ivoanjo,Ruby,false,false,false,0,false,false,false,false +william.belanger/qtpad,william.belanger,Python,false,false,false,0,false,false,false,false +notaku/nixos-configuration,notaku,Nix,false,false,false,0,false,false,false,false +marsat/CTparental,marsat,Shell,false,false,false,0,false,false,false,false +krathalan/firefox-tweaks,krathalan,JavaScript,false,false,false,0,false,false,false,false +blender_port_tools/object_cod_tools,blender_port_tools,Python,false,false,false,0,false,false,false,false +ternary/ternary,ternary,Java,false,false,false,0,false,false,false,false +tgrossb87/Ava,tgrossb87,Python,false,false,false,0,false,false,false,false +ordex986/wolfssl,ordex986,C,false,false,false,0,false,false,false,false +EugeneLoza/decoherence,EugeneLoza,Pascal,false,false,false,0,false,false,false,false +DragonRage/Infinity-Darkness,DragonRage,C#,false,false,false,0,false,false,false,false +friendlyelec/kernel-rockchip,friendlyelec,,false,false,false,0,false,false,false,false +flexbox/docker/codeship-symfony4,flexbox,Shell,false,false,false,0,false,false,false,false +cecflit/overunderground,cecflit,Squirrel,false,false,false,0,false,false,false,false +fmax/race,fmax,Rust,false,false,false,0,false,false,false,false +jdesodt/seneca-triggers,jdesodt,JavaScript,true,false,false,2,true,true,false,false +jdesodt/seneca-entity-crud,jdesodt,JavaScript,true,false,false,2,true,true,false,false +simbd/Scripts_Ubuntu,simbd,Shell,false,false,false,0,false,false,false,false +toby3d/dialogs,toby3d,Go,true,false,false,1,false,true,false,false +pdagog/ens,pdagog,TeX,false,false,false,0,false,false,false,false +Elewyth/ue4-module-generator,Elewyth,C#,false,false,false,0,false,false,false,false +Firer4t/wine-pba,Firer4t,,false,false,false,0,false,false,false,false +Firer4t/wine-staging,Firer4t,Shell,false,false,false,0,false,false,false,false +Felecarp/snake,Felecarp,Python,false,false,false,0,false,false,false,false +anthonywalters/check-upsmib-plugin,anthonywalters,Perl,false,false,false,0,false,false,false,false +SalemBongo/useful_scripts,SalemBongo,Python,false,false,false,0,false,false,false,false +rosie-community/lang,rosie-community,,false,false,false,0,false,false,false,false +HolyAngel/OP3,HolyAngel,,false,false,false,0,false,false,false,false +exosphere/exosphere,exosphere,Elm,true,false,false,3,true,true,true,false +The_Tasty_Jaffa/Tasty-Jaffa-cogs,The_Tasty_Jaffa,Python,false,false,false,0,false,false,false,false +heurekus/WLAN-VPN-Pi,heurekus,Shell,false,false,false,0,false,false,false,false +gun1x/frr_ansible_ebgp,gun1x,,true,false,false,3,false,true,true,false +DragonForge/ThaumicAdditions,DragonForge,Java,false,false,false,0,false,false,false,false +16th-Air-Assault-Brigade/public,16th-Air-Assault-Brigade,,false,false,false,0,false,false,false,false +marcusbritanicus/NewBreeze,marcusbritanicus,C,false,false,false,0,false,false,false,false +qTox/qTox_mirror,qTox,C++,false,false,false,0,false,false,false,false +Sacagahontas/Niner,Sacagahontas,Python,false,false,false,0,false,false,false,false +mgoral/twweb,mgoral,Python,true,true,false,3,false,true,true,true +sdwolfz/dotfiles,sdwolfz,EmacsLisp,true,false,false,1,false,true,false,false +ZillionCoin/ZillionCoin,ZillionCoin,,false,false,false,0,false,false,false,false +gsliepen/tinc,gsliepen,C,false,false,false,0,false,false,false,false +costrouc/knoxville-opendata-notebooks,costrouc,JupyterNotebook,true,false,false,1,false,true,false,false +clovis-ai/resourcer,clovis-ai,Java,false,false,false,0,false,false,false,false +giuseppetorre/bodhilinuxmedia,giuseppetorre,HTML,false,false,false,0,false,false,false,false +utsushi/utsushi,utsushi,C++,true,false,false,6,true,true,false,true +hrbrmstr/crumpets,hrbrmstr,R,false,false,false,0,false,false,false,false +balboar/Todoxt,balboar,Python,false,false,false,0,false,false,false,false +jabranham/emacs,jabranham,EmacsLisp,false,false,false,0,false,false,false,false +lpopesco/Arch-Linux-Installation-Guide,lpopesco,,false,false,false,0,false,false,false,false +codesections/codesections-website,codesections,HTML,false,false,false,0,false,false,false,false +hjelmn/xpmem,hjelmn,C,false,false,false,0,false,false,false,false +solarus-games/solarus_tutorial,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/openspc-precise,solarus-games,C,false,false,false,0,false,false,false,false +solarus-games/solarus-doc,solarus-games,,false,false,false,0,false,false,false,false +solarus-games/solarus-free-resource-pack,solarus-games,Lua,false,false,false,0,false,false,false,false +bytehackr/HackingTools-1,bytehackr,,false,false,false,0,false,false,false,false +flaneurtv/samm,flaneurtv,Go,false,false,false,0,false,false,false,false +k3oni/pydash-django-app,k3oni,JavaScript,false,false,false,0,false,false,false,false +pin3da/p2p-talk,pin3da,JavaScript,false,false,false,0,false,false,false,false +alexander_schoch/OACP1-Protocols,alexander_schoch,TeX,false,false,false,0,false,false,false,false +jfgrissom/opscode-codius-hosting,jfgrissom,Ruby,false,false,false,0,false,false,false,false +HelenOS/helenos,HelenOS,C,false,false,false,0,false,false,false,false +Matrixcoffee/index-update-report,Matrixcoffee,,false,false,false,0,false,false,false,false +sosy-lab/software/cpachecker,sosy-lab,C,false,false,false,0,false,false,false,false +Tuuux/galaxie-curses,Tuuux,Python,true,true,false,1,false,true,false,false +dmejer/spring-angular-docker-example,dmejer,Java,true,false,true,5,true,true,false,false +dslackw/alarm,dslackw,Python,false,true,false,0,false,false,false,false +DomainVoider.GitLab.io/DomainVoider,DomainVoider.GitLab.io,HTML,true,false,false,1,false,false,true,false +fbb-git/cppannotations-zip,fbb-git,,false,false,false,0,false,false,false,false +napperley/openfaas-kotlin-templates,napperley,Kotlin,false,false,false,0,false,false,false,false +metsatron/dotfiles,metsatron,Python,false,false,false,0,false,false,false,false +woblight/GitAddonsManager,woblight,C++,true,false,false,1,true,false,false,false +airships/ufo,airships,JavaScript,false,false,false,0,false,false,false,false +rastersoft/autovala,rastersoft,Vala,false,false,false,0,false,false,false,false +rastersoft/devedeng,rastersoft,Python,false,false,false,0,false,false,false,false +JasonHuZS/AlgDotCalculus,JasonHuZS,Coq,false,false,false,0,false,false,false,false +Nicd/tilastokeskus,Nicd,Elixir,false,false,false,0,false,false,false,false +brandondyer64/Viav,brandondyer64,JavaScript,false,false,false,0,false,false,false,false +brandondyer64/ViavChild,brandondyer64,JavaScript,false,false,false,0,false,false,false,false +kevinflo/decentralizedposts,kevinflo,JavaScript,false,false,false,0,false,false,false,false +matchgirl/little-match-girl,matchgirl,,false,false,false,0,false,false,false,false +schnaader/fairytale,schnaader,C,false,false,false,0,false,false,false,false +experimentslabs/engine_elabs,experimentslabs,Ruby,true,false,false,4,false,true,false,false +theswiftdev/swift-package-manager,theswiftdev,Swift,false,false,false,0,false,false,false,false +tludewig/ESP32-EspNow-OpenHab-Gateway,tludewig,C++,false,false,false,0,false,false,false,false +Danno131313/everyone,Danno131313,Rust,true,false,false,1,true,false,false,false +thrasymache/microsites,thrasymache,Python,false,false,false,0,false,false,false,false +szabobogdan3/trial,szabobogdan3,D,true,false,false,5,true,true,false,false +Guikingone/Practice,Guikingone,PHP,false,false,false,0,false,false,false,false +davfsa/casino-bot,davfsa,Python,false,true,false,0,false,false,false,false +go-box/ginraymond,go-box,Go,false,false,false,0,false,false,false,false +a-sassmannshausen/guile-hall,a-sassmannshausen,Scheme,false,false,false,0,false,false,false,false +newjerseylinuxfest/planning,newjerseylinuxfest,,false,false,false,0,false,false,false,false +therecluse26/PHP-Login,therecluse26,JavaScript,false,false,false,0,false,false,false,false +Peratchiselvan/Kula-Chat,Peratchiselvan,Java,false,false,false,0,false,false,false,false +semkodev/nelson.gui,semkodev,JavaScript,true,false,false,2,false,false,false,true +adrianhall/awsmobile-weekly,adrianhall,HTML,true,false,false,1,false,false,true,false +hauleth/qfx.vim,hauleth,Vimscript,false,false,false,0,false,false,false,false +chaoslab/repoman,chaoslab,,true,false,false,2,true,false,false,false +sashikknox/harbour-mattermost,sashikknox,C++,false,false,false,0,false,false,false,false +cppit/libclangmm,cppit,C++,true,false,false,1,false,true,false,false +lighthouse-cash/lighthouse,lighthouse-cash,Java,false,false,true,0,false,false,false,false +plopgrizzly/audio/pitch,plopgrizzly,Rust,false,false,false,0,false,false,false,false +blender_port_tools/motion_transfer,blender_port_tools,Python,false,false,false,0,false,false,false,false +OpenMC173/OpenMC173,OpenMC173,D,false,false,false,0,false,false,false,false +verdaccio/verdaccio,verdaccio,JavaScript,false,false,false,0,false,false,false,false +alfredchen/PDS-mq,alfredchen,,false,false,false,0,false,false,false,false +blender_port_tools/object_autoname_bake,blender_port_tools,Python,false,false,false,0,false,false,false,false +efunb/gyrus,efunb,Rust,true,false,false,6,false,true,true,true +GGJT/temple-of-loot,GGJT,GDScript,false,false,false,0,false,false,false,false +Boyden1/shadowsocks,Boyden1,Python,false,false,false,0,false,false,false,false +Small-Business-Group/wiki,Small-Business-Group,,false,false,false,0,false,false,false,false +DrRoach/FormValidation,DrRoach,JavaScript,false,false,false,0,false,false,false,false +DrRoach/DynamicImage,DrRoach,PHP,true,false,false,1,false,true,false,false +DrRoach/NetworkAPI,DrRoach,Java,false,false,false,0,false,false,false,false +DrRoach/Web-Engine,DrRoach,JavaScript,false,false,false,0,false,false,false,false +evanstucker/n00bernetes,evanstucker,Shell,false,false,false,0,false,false,false,false +umadeepti/owfwidgetmaven,umadeepti,HTML,false,false,true,0,false,false,false,false +mekagoza/rando,mekagoza,Rust,false,false,false,0,false,false,false,false +douaneapp/douane-dialog,douaneapp,C++,false,false,false,0,false,false,false,false +vuedoc/parser,vuedoc,JavaScript,true,false,false,2,false,true,false,true +vmgabriel/giweb,vmgabriel,CSS,true,false,false,2,false,true,true,false +gc-ar/web,gc-ar,HTML,true,false,false,1,false,true,false,false +spanezz/fdprogress,spanezz,Python,false,false,false,0,false,false,false,false +FloweeTheHub/documentation,FloweeTheHub,,false,false,false,0,false,false,false,false +lepton-cms/LEPTON,lepton-cms,PHP,false,false,false,0,false,false,false,false +xeddit/xeddit,xeddit,PHP,false,false,false,0,false,false,false,false +replikativ/datahike-invoice,replikativ,Clojure,false,false,false,0,false,false,false,false +crates.rs/cargo_toml,crates.rs,Rust,false,false,false,0,false,false,false,false +Kpovoc/chat-steward,Kpovoc,Go,false,false,false,0,false,false,false,false +tetradev/ium,tetradev,JavaScript,false,false,false,0,false,false,false,false +blevy/redpwn-ctf-writeups,blevy,C,true,false,false,1,false,true,false,false +BuildGrid/buildbox/buildbox-fuse,BuildGrid,C++,true,false,false,2,true,true,false,false +philip_rhoades/pwm,philip_rhoades,Ruby,false,false,false,0,false,false,false,false +harism/android-pagecurl,harism,Java,false,false,false,0,false,false,false,false +Bettehem/SecureMessengerAndroid,Bettehem,Kotlin,true,false,false,1,true,false,false,false +jD91mZM2/xidlehook,jD91mZM2,Rust,false,false,false,0,false,false,false,false +aurorafossorg/pages-framework-webndocs,aurorafossorg,CSS,true,false,false,1,false,false,true,false +RobinWils/useful-wiki,RobinWils,Python,false,false,false,0,false,false,false,false +sibur/api/toir,sibur,,false,false,false,0,false,false,false,false +DragonForge/TechnomancyRevamped,DragonForge,,false,false,false,0,false,false,false,false +matthieusegret/yummy-phoenix-graphql,matthieusegret,Elixir,true,false,false,2,false,true,false,true +Tmpod/discord.py-botTemplate,Tmpod,Python,false,false,false,0,false,false,false,false +inko-lang/inko.vim,inko-lang,Vimscript,false,false,false,0,false,false,false,false +RogerDodger-Python/10-Projects,RogerDodger-Python,Python,false,false,false,0,false,false,false,false +rtkpf/VyR,rtkpf,,false,false,false,0,false,false,false,false +davebucklin/bbook,davebucklin,Shell,false,false,false,0,false,false,false,false +aurorafossorg/pages-home,aurorafossorg,CSS,true,false,false,1,false,false,true,false +ComposePress/starter,ComposePress,PHP,false,false,false,0,false,false,false,false +nnaumenko/mc7,nnaumenko,,false,false,false,0,false,false,false,false +danzik/art-dan-cloud,danzik,Java,true,false,false,3,true,true,true,false +kriuvi/timetronom,kriuvi,JavaScript,true,false,false,1,false,false,true,false +anonymousegames/twow-online,anonymousegames,JavaScript,false,false,false,0,false,false,false,false +osgames/coltoo,osgames,C++,false,false,false,0,false,false,false,false +MikeModder/AlchemaiStoryAssetArchiver,MikeModder,JavaScript,false,false,false,0,false,false,false,false +perfect76/change_wallper,perfect76,Python,false,false,false,0,false,false,false,false +Heiky/TheFloorIsLava_GodotJam-062018,Heiky,C#,false,false,false,0,false,false,false,false +echrstnn/homesw,echrstnn,C,false,false,false,0,false,false,false,false +tfa-devs/litegibs,tfa-devs,Lua,false,false,false,0,false,false,false,false +Moini/ink_line_animator,Moini,Python,false,false,false,0,false,false,false,false +Schreibotics/site,Schreibotics,Python,false,false,false,0,false,false,false,false +epfl-sti/puppet.epfl_sso,epfl-sti,Puppet,false,false,false,0,false,false,false,false +tmorin/pine64-docker-images,tmorin,Shell,true,false,false,1,false,false,false,false +revas-io/revas.app,revas-io,Vue,true,false,false,1,false,false,true,false +mudar-ca/PeaceOfMind,mudar-ca,Java,true,false,false,1,false,false,true,false +py-train/module-one,py-train,,false,false,false,0,false,false,false,false +bitemyapp/totto,bitemyapp,Makefile,true,false,false,1,true,false,false,false +ReturnInfinity/Pure64,ReturnInfinity,Assembly,false,false,false,0,false,false,false,false +eRogue/RLDevRLTut2018,eRogue,Python,false,false,false,0,false,false,false,false +soykje/lscss,soykje,HTML,true,false,false,1,false,false,true,false +Raw_Me/findmovie,Raw_Me,Shell,false,false,false,0,false,false,false,false +Firer4t/wine-pba-patched,Firer4t,C,false,false,false,0,false,false,false,false +ssv/AnalysisSitus,ssv,C++,false,false,false,0,false,false,false,false +alelec/navdy/NavdyOBD,alelec,JavaScript,true,false,false,2,false,false,false,true +linbit/linstor-api-py,linbit,Python,false,false,false,0,false,false,false,false +isgj/ormf,isgj,Go,false,false,false,0,false,false,false,false +iiCe89/yetii_app,iiCe89,PHP,false,false,false,0,false,false,false,false +Serafino/Seedsow,Serafino,C++,false,false,false,0,false,false,false,false +daktak/ColourAnalog,daktak,C,true,false,false,1,true,false,false,false +patrickmurray/controlpi,patrickmurray,,false,false,false,0,false,false,false,false +schaepermeier/reveal.js-quiz,schaepermeier,JavaScript,false,false,false,0,false,false,false,false +jaymoulin/docker-transmission,jaymoulin,Makefile,true,false,false,1,true,false,false,false +jaymoulin/docker-google-musicmanager,jaymoulin,Shell,true,false,false,1,true,false,false,false +JSiapo/MiniPhotoshop,JSiapo,Java,false,false,false,0,false,false,false,false +transfire/crystal-cli,transfire,Crystal,true,false,false,1,false,false,true,false +formschema/website,formschema,JavaScript,false,false,false,0,false,false,false,false +apurebase/arkenv,apurebase,Kotlin,true,false,false,2,false,true,false,true +maribedran/tapioca-camara,maribedran,Python,false,false,false,0,false,false,false,false +pythongiant/Musick_android,pythongiant,Kotlin,false,false,false,0,false,false,false,false +imeyer/lfg-bot,imeyer,Go,false,false,false,0,false,false,false,false +basal/basal,basal,Dart,false,false,false,0,false,false,false,false +rodmaureirac/tactical-rpg-unity3d,rodmaureirac,C#,false,false,false,0,false,false,false,false +ccckmit/ph6,ccckmit,JavaScript,false,false,false,0,false,false,false,false +klems/ansible-aws,klems,Python,true,true,false,1,false,true,false,false +synappio/free-email-domains,synappio,Python,true,false,false,1,false,true,false,false +yayaka/Yayaka,yayaka,,false,false,false,0,false,false,false,false +florian0/GFXFileManager,florian0,C++,false,false,false,0,false,false,false,false +RLesur/xaringan-gitlab-pages,RLesur,,true,false,false,2,true,false,true,false +eduar/go-programming,eduar,Go,false,false,false,0,false,false,false,false +Aberrantfox/Diskord.kt,Aberrantfox,Kotlin,false,false,true,0,false,false,false,false +daLuiz/vscode-apdl-snippets,daLuiz,Python,false,false,false,0,false,false,false,false +sovacontainer/sovahostcontainer,sovacontainer,PHP,false,false,false,0,false,false,false,false +Roxedus/BoB-Cogs,Roxedus,Python,false,false,false,0,false,false,false,false +lil5/nextcloud-conversejs,lil5,PHP,false,false,false,0,false,false,false,false +mindfulness-at-the-computer/mindfulness-at-the-computer.gitlab.io,mindfulness-at-the-computer,CSS,true,false,false,2,false,true,true,false +chris.amini/FightingPoverty,chris.amini,Python,true,false,false,2,false,false,false,true +Sucerquia/my_first_project,Sucerquia,Python,false,false,false,0,false,false,false,false +MadScientist_gc/Backpacks-Web,MadScientist_gc,CSS,false,false,false,0,false,false,false,false +7learn-experts/shop.php,7learn-experts,PHP,false,false,false,0,false,false,false,false +h2t/semantic-object-relations,h2t,C++,false,false,false,0,false,false,false,false +teslex/telegroo,teslex,Groovy,false,false,false,0,false,false,false,false +MonsieurMan/ng-refactor,MonsieurMan,TypeScript,true,false,false,1,false,true,false,false +neurochaintech/bot,neurochaintech,C++,false,false,false,0,false,false,false,false +youreperfectstudio/StageMechanic,youreperfectstudio,C#,false,false,false,0,false,false,false,false +balcy/tagger,balcy,QML,false,false,false,0,false,false,false,false +keklas/archlinux-setup,keklas,Python,false,false,false,0,false,false,false,false +loyke96/JGaraza,loyke96,Java,false,false,false,0,false,false,false,false +Ahmadi/FlightSchedule-Tahlil,Ahmadi,C#,false,false,false,0,false,false,false,false +epfl-dojo/dojo-website-nuxt,epfl-dojo,Vue,false,false,false,0,false,false,false,false +norbertwalter67/Windsensor_WiFi_1000,norbertwalter67,C++,false,false,false,0,false,false,false,false +SopaXorzTaker/tpt3d,SopaXorzTaker,JavaScript,true,false,false,1,false,false,true,false +bots-garden/scala/scala-facile,bots-garden,Scala,false,false,false,0,false,false,false,false +renerocksai/sublime_zk,renerocksai,Python,false,false,false,0,false,false,false,false +Senlis/AKVCOC,Senlis,Java,false,false,false,0,false,false,false,false +abir-hasan/FinalTest,abir-hasan,Java,false,false,false,0,false,false,false,false +postmarketOS/artwork,postmarketOS,Python,false,false,false,0,false,false,false,false +postmarketOS/pmOS-repo-scripts,postmarketOS,Shell,false,false,false,0,false,false,false,false +ulrichntella/laravel5-repository,ulrichntella,PHP,false,false,false,0,false,false,false,false +bertoldia/files-menu,bertoldia,JavaScript,false,false,false,0,false,false,false,false +VueFeathers/vue-feathers,VueFeathers,JavaScript,false,false,false,0,false,false,false,false +BrunoVernay/systemd-playground,BrunoVernay,Shell,false,false,false,0,false,false,false,false +diego0209/compiler-exam,diego0209,Yacc,false,false,false,0,false,false,false,false +remastersys/respin,remastersys,,false,false,false,0,false,false,false,false +oklahoma-mc/GameWrapperBot,oklahoma-mc,Java,false,false,false,0,false,false,false,false +netmagis/netmagis,netmagis,Tcl,false,false,false,0,false,false,false,false +adleatherwood/FunctionalLink,adleatherwood,C#,true,false,false,3,true,true,false,true +denny.viriya/skripsi-android,denny.viriya,Kotlin,false,false,false,0,false,false,false,false +hidayatarg/DevFramework_ASPMvc,hidayatarg,C#,false,false,false,0,false,false,false,false +smondet/febusy,smondet,OCaml,true,false,false,1,false,true,false,false +dodopod/zscript-weapons-library,dodopod,,false,false,false,0,false,false,false,false +CyberTKR/CyberTK-Kicker,CyberTKR,JavaScript,false,false,false,0,false,false,false,false +castlecraft/building-blocks,castlecraft,TypeScript,true,false,false,3,false,false,true,false +elmariachi111/devday.io,elmariachi111,HTML,false,false,false,0,false,false,false,false +jasperhancock/spinnaker,jasperhancock,Smarty,false,false,false,0,false,false,false,false +xiayesuifeng/arch-go-qt,xiayesuifeng,,true,false,false,1,true,false,false,false +muthukumar.n/kdmc,muthukumar.n,PLpgSQL,false,false,false,0,false,false,false,false +scce/FYPService,scce,Java,false,false,true,0,false,false,false,false +cfgm-smx/m02,cfgm-smx,Python,false,false,false,0,false,false,false,false +HilmiZul/epkl,HilmiZul,HTML,false,false,false,0,false,false,false,false +mwiget/bng-pwht-demo,mwiget,Shell,false,false,false,0,false,false,false,false +javivelasco/hangman-core,javivelasco,JavaScript,false,false,false,0,false,false,false,false +BenoitDesrosiers/correcteur2018,BenoitDesrosiers,PHP,false,false,false,0,false,false,false,false +leef.deea/aves-java-jpa,leef.deea,Java,false,false,false,0,false,false,false,false +PlantGenomicsLab/gFACs,PlantGenomicsLab,Perl,false,false,false,0,false,false,false,false +petrkubes1997/ts-neural-network,petrkubes1997,TypeScript,false,false,false,0,false,false,false,false +fabbe/bubbles,fabbe,C,false,false,false,0,false,false,false,false +sequoia-pgp/weird-keys,sequoia-pgp,JavaScript,false,false,false,0,false,false,false,false +LeMilliard/KibAdmin,LeMilliard,TypeScript,false,false,false,0,false,false,false,false +LeMilliard/KiboDB,LeMilliard,Python,false,true,false,0,false,false,false,false +benoliver999/buku-dmenu,benoliver999,,false,false,false,0,false,false,false,false +lnxpy/imgconv,lnxpy,Python,false,false,false,0,false,false,false,false +mentalmuso/WETAmod_greatlte,mentalmuso,Java,false,false,false,0,false,false,false,false +alasdairkeyes/nagios-plugin-check_openvpn_status,alasdairkeyes,Perl,false,false,false,0,false,false,false,false +CromFr/matrix-logger,CromFr,Rust,true,false,false,2,true,false,true,false +cscs/adaptabreath-kde,cscs,QML,false,false,false,0,false,false,false,false +gnaar/base,gnaar,,true,false,false,1,true,false,false,false +lc850/MetodosAgiles,lc850,,false,false,false,0,false,false,false,false +JuanjoSalvador/gnome-cats,JuanjoSalvador,Python,false,false,false,0,false,false,false,false +Monsterovich/Xrain,Monsterovich,C++,false,false,false,0,false,false,false,false +redribbon/gmail-reverse,redribbon,CSS,false,false,false,0,false,false,false,false +frozenfoxx/arganium,frozenfoxx,Ruby,false,false,false,0,false,false,false,false +Arctium/Lappa/ORM,Arctium,C#,false,false,false,0,false,false,false,false +cs-reading-group/cs-reading-group,cs-reading-group,,false,false,false,0,false,false,false,false +frontierdevelopmentlab/astrobiology/pypsg,frontierdevelopmentlab,JupyterNotebook,false,false,false,0,false,false,false,false +william.belanger/qoob,william.belanger,Python,false,false,false,0,false,false,false,false +don/fullstack-blockchain,don,JavaScript,false,false,false,0,false,false,false,false +EugeneLoza/CastleCraft,EugeneLoza,Pascal,false,false,false,0,false,false,false,false +theumod/umod.agent,theumod,C#,true,false,false,2,true,false,true,false +kloe/catmium,kloe,Shell,false,false,false,0,false,false,false,false +emelle/emelle,emelle,OCaml,true,false,false,3,true,true,true,false +rogala.dominika/SpotifyFrontEndProject,rogala.dominika,TypeScript,false,false,false,0,false,false,false,false +metsatron/BeOS-r5-Icons,metsatron,,false,false,false,0,false,false,false,false +X8716e/iVOID,X8716e,,false,false,false,0,false,false,false,false +jaysonmsaavedra/grammar-nazi-bot,jaysonmsaavedra,JavaScript,false,false,false,0,false,false,false,false +Gustwalker/Feynman,Gustwalker,Vue,false,false,false,0,false,false,false,false +uvtc/rippledoc,uvtc,Python,false,false,false,0,false,false,false,false +devlife-apps/connect2sql,devlife-apps,Kotlin,true,false,false,5,false,false,false,true +Kamiyaa/joshuto,Kamiyaa,Rust,false,false,false,0,false,false,false,false +b0/SortFilterProxyModel,b0,C++,false,false,false,0,false,false,false,false +austinpray/kizuna,austinpray,Python,false,false,false,0,false,false,false,false +severity1/aws-auth,severity1,Go,true,false,false,3,true,true,false,false +zedtux/restful-json-api-client,zedtux,JavaScript,true,false,false,1,false,true,false,false +coringao/cavestory-nx,coringao,C++,false,false,false,0,false,false,false,false +josemalancomp/File_submission,josemalancomp,JavaScript,false,false,false,0,false,false,false,false +MateG/Java-Course-FER-2018,MateG,Java,false,false,false,0,false,false,false,false +CrongCloud/Crong-Panel,CrongCloud,JavaScript,false,false,false,0,false,false,false,false +Al-Demon/ps_faircoinpayment,Al-Demon,PHP,false,false,false,0,false,false,false,false +ngxa/testing,ngxa,TypeScript,true,false,false,6,true,true,true,true +shagu/pfDebug,shagu,Lua,false,false,false,0,false,false,false,false +jerojasro/cuentavotos,jerojasro,Python,false,false,false,0,false,false,false,false +NebulousLabs/Sia-Ant-Farm,NebulousLabs,Go,false,false,false,0,false,false,false,false +ayana/logger,ayana,JavaScript,false,false,false,0,false,false,false,false +meyeaard/ESXi_5-6_root_Recovery,meyeaard,PowerShell,false,false,false,0,false,false,false,false +gfanz/genomics-tools,gfanz,Shell,true,false,false,3,true,true,true,false +victor.wong/utility-scripts,victor.wong,Python,false,false,false,0,false,false,false,false +ipcalc/ipcalc,ipcalc,C,true,false,false,1,false,true,false,false +mrvik/pakku-gui,mrvik,Python,true,false,false,1,false,true,false,false +Eutherpy/PathTracer,Eutherpy,C++,false,false,false,0,false,false,false,false +ijaas/meld,ijaas,,false,false,false,0,false,false,false,false +Psy-Kai/ESI-Maya22USBControl,Psy-Kai,C++,true,false,false,3,true,true,false,false +korora/buildkorora,korora,,true,false,false,1,true,false,false,false +spektral/Vereinsstatuten,spektral,,false,false,false,0,false,false,false,false +amorrese2005/regen,amorrese2005,Python,false,true,false,0,false,false,false,false +gitlab-org/gitter/services,gitlab-org,JavaScript,true,false,false,2,true,true,false,false +1789/src,1789,GDScript,false,false,false,0,false,false,false,false +PatrickHuembeli/qml_hackathon,PatrickHuembeli,Python,false,false,false,0,false,false,false,false +iss.stackup/express-flask,iss.stackup,HTML,false,false,false,0,false,false,false,false +felixcool98/Libgdx_Extensions,felixcool98,Java,true,false,false,3,true,true,true,false +pbanavara/cdl_hack,pbanavara,JupyterNotebook,false,false,false,0,false,false,false,false +yvsssantosh/django-gitlab-ci,yvsssantosh,,false,false,false,0,false,false,false,false +elioclerics/bones,elioclerics,JavaScript,false,false,false,0,false,false,false,false +deadc0de6/dotdrop,deadc0de6,Python,false,true,false,0,false,false,false,false +pycdr/img2text,pycdr,Python,false,false,false,0,false,false,false,false +cresset/flare-python-extensions,cresset,Python,false,false,false,0,false,false,false,false +SeongSeopLim/UE4GJCook,SeongSeopLim,C++,false,false,false,0,false,false,false,false +regen-open-development/donkey-defender,regen-open-development,JavaScript,false,false,false,0,false,false,false,false +xdorito/test-pack-no-more,xdorito,,false,false,false,0,false,false,false,false +RF-Fox/TestAdvent,RF-Fox,C++,false,false,false,0,false,false,false,false +montaseri.hamidreza/Fana,montaseri.hamidreza,Java,false,false,false,0,false,false,false,false +rnickson/WykopStacjonarny,rnickson,CSS,false,false,false,0,false,false,false,false +abiosoft/launchar,abiosoft,Vala,false,false,false,0,false,false,false,false +nvllsvm/cloneholio,nvllsvm,Python,true,false,false,1,false,true,false,false +unibit-dev-team/wallet,unibit-dev-team,JavaScript,false,false,false,0,false,false,false,false +gorkamu/serpaso,gorkamu,JavaScript,false,false,false,0,false,false,false,false +hrbrmstr/drill-twitter-text,hrbrmstr,Java,false,false,true,0,false,false,false,false +norrain/mrpc,norrain,Java,false,false,false,0,false,false,false,false +epam_python_course/python_course,epam_python_course,JupyterNotebook,false,false,false,0,false,false,false,false +daksh7011/username-checker,daksh7011,PHP,true,false,false,1,false,false,true,false +swiftgeek/unidump,swiftgeek,Shell,false,false,false,0,false,false,false,false +Scribble/lifestoned,Scribble,C#,false,false,false,0,false,false,false,false +fryntiz/bash-guide-style,fryntiz,Shell,false,false,false,0,false,false,false,false +Nooblord/luci-app-unlocker,Nooblord,Lua,false,false,false,0,false,false,false,false +daksh7011/neptune-animations,daksh7011,JavaScript,true,false,false,1,false,false,true,false +Drhaal/Execution_time,Drhaal,C,false,false,false,0,false,false,false,false +grawlinson/ansible-archlinux,grawlinson,Python,false,false,false,0,false,false,false,false +kreikenbaum/suntime-app,kreikenbaum,Java,true,false,false,2,true,true,false,false +MicleBrick/StarLegacy.Plugins,MicleBrick,Kotlin,false,false,false,0,false,false,false,false +Phitherek/_crsfml-snake,Phitherek,Crystal,false,false,false,0,false,false,false,false +tagbottle/tomato-puree,tagbottle,TypeScript,true,false,false,2,true,false,false,true +TiEoLibre/Analog_Battery_Regulator,TiEoLibre,,false,false,false,0,false,false,false,false +ognarb/call-of-civilization,ognarb,Rust,false,false,false,0,false,false,false,false +anire/projects-rs,anire,Rust,false,false,false,0,false,false,false,false +elmariachi111/discounto,elmariachi111,PHP,false,false,false,0,false,false,false,false +mobiforge/sensors,mobiforge,HTML,true,false,false,1,false,false,true,false +ToolsDevler/libdecimal,ToolsDevler,C++,true,false,false,1,true,false,false,false +le2_lineage/android_device_leeco_s2,le2_lineage,C++,false,false,false,0,false,false,false,false +KavenTheriault/aws_lambda_python_deployment,KavenTheriault,Python,true,false,false,1,false,true,false,false +interscity/interscsimulator/tools,interscity,JupyterNotebook,false,false,false,0,false,false,false,false +Ariansyah/one-minute,Ariansyah,PHP,false,false,false,0,false,false,false,false +arnedesmedt/vue-ads-table-tree,arnedesmedt,JavaScript,false,false,false,0,false,false,false,false +brunoamancio/spartaSpammer,brunoamancio,Go,false,false,false,0,false,false,false,false +bocoup-education/universal-react-node-app,bocoup-education,JavaScript,false,false,false,0,false,false,false,false +tim241/dots,tim241,CSS,false,false,false,0,false,false,false,false +fraction/ssb-current-events,fraction,JavaScript,true,false,false,1,false,true,false,false +tommy.morgan/slack-statuses,tommy.morgan,,false,false,false,0,false,false,false,false +TH3L0N3C0D3R/Internet-Speed-Meter,TH3L0N3C0D3R,JavaScript,false,false,false,0,false,false,false,false +hpierce1102/ClassFinder,hpierce1102,PHP,true,false,false,1,false,true,false,false +s-ilent/SCSS,s-ilent,C#,false,false,false,0,false,false,false,false +7learn-experts/ela-admin-rtl,7learn-experts,JavaScript,false,false,false,0,false,false,false,false +newbranltd/server-io-core,newbranltd,JavaScript,true,false,false,1,false,true,false,false +dianamontes1516/Compiladores7005,dianamontes1516,Java,false,false,false,0,false,false,false,false +ByungSunBae/ml_h2o_in_R,ByungSunBae,HTML,false,false,false,0,false,false,false,false +gilou/_windlogger,gilou,HTML,false,false,false,0,false,false,false,false +gilou/_windlogger_firmware,gilou,C++,false,false,false,0,false,false,false,false +pltm/shadowsocksr-native,pltm,C,false,false,false,0,false,false,false,false +mschuess/Project_DungeonCrawler,mschuess,ShaderLab,false,false,false,0,false,false,false,false +Mitty/eden-bot,Mitty,Python,false,false,false,0,false,false,false,false +VERTORIO/VERTORIO-WEBSITE,VERTORIO,HTML,true,false,false,1,false,false,true,false +Mishio595/momiji-rust,Mishio595,Rust,false,false,false,0,false,false,false,false +EthereumD/ShadowsocksRR,EthereumD,Python,false,false,false,0,false,false,false,false +florin.barbuceanu/autselenium,florin.barbuceanu,Java,false,false,true,0,false,false,false,false +valtrok/doom-theme-generator,valtrok,EmacsLisp,false,false,false,0,false,false,false,false +b0/matrique-repo,b0,,true,false,false,1,false,false,true,false +frontierdevelopmentlab/space-resources/graphery,frontierdevelopmentlab,Python,false,false,false,0,false,false,false,false +squeakymouse-packages/squeakymouse,squeakymouse-packages,,false,false,false,0,false,false,false,false +2sBs/QuickKill,2sBs,C#,false,false,false,0,false,false,false,false +DhruvKoolRajamani/dhruvkoolrajamani.gitlab.io,DhruvKoolRajamani,CSS,true,false,false,1,false,false,true,false +mrnagydavid/typic,mrnagydavid,TypeScript,true,false,false,2,false,true,true,false +mrman/ansible-hetzner-ubuntu-1804-k8s-setup,mrman,,false,false,false,0,false,false,false,false +moeenzarrinfam/cloud-task-runner-ruby,moeenzarrinfam,Ruby,true,false,false,1,false,true,false,false +rpdzkj2018/king_rp_rk3399,rpdzkj2018,,false,false,false,0,false,false,false,false +gitlab-org/manage,gitlab-org,,false,false,false,0,false,false,false,false +jscharnitzke/moon-hare-ui,jscharnitzke,TypeScript,false,false,false,0,false,false,false,false +jscharnitzke/moon-hare-api,jscharnitzke,JavaScript,false,false,false,0,false,false,false,false +eHonnef/sistema-grafico-interativo,eHonnef,CMake,false,false,false,0,false,false,false,false +rossdanderson/kotlin-react-bootstrap,rossdanderson,Kotlin,false,false,false,0,false,false,false,false +pedrohjordao/rustmade-hero,pedrohjordao,Rust,false,false,false,0,false,false,false,false +interscity/interscsimulator/scenarios,interscity,Shell,false,false,false,0,false,false,false,false +wowthing/wowthing-data,wowthing,Python,false,false,false,0,false,false,false,false +team1ws2018/online-cocktail-recipes,team1ws2018,TypeScript,false,false,false,0,false,false,false,false +jkwiatko/linux-setup,jkwiatko,Shell,false,false,false,0,false,false,false,false +ilya0103/autoposting_vk,ilya0103,Python,false,false,false,0,false,false,false,false +xX_WhatsTheGeek_Xx/servezvoo,xX_WhatsTheGeek_Xx,JavaScript,false,false,false,0,false,false,false,false +apnidukan/apnidukan,apnidukan,Java,false,false,false,0,false,false,false,false +pac85/GameKernel,pac85,Rust,false,false,false,0,false,false,false,false +licorna/shellwrap,licorna,Python,false,false,false,0,false,false,false,false +Redrield/nt-rs,Redrield,Rust,false,false,false,0,false,false,false,false +exitlive/cooky,exitlive,Dart,true,false,false,2,false,true,true,false +kiel-data-hub/kiel-data-hub,kiel-data-hub,TypeScript,true,false,false,2,true,false,true,false +DominoTree/telephreak-11-badge,DominoTree,HTML,false,false,false,0,false,false,false,false +tspiteri/fixed,tspiteri,Rust,true,false,false,1,false,true,false,false +hrbrmstr/sanipy,hrbrmstr,R,false,false,false,0,false,false,false,false +mre/_rush,mre,Rust,false,false,false,0,false,false,false,false +CodeMichael/razerblade2018,CodeMichael,Shell,false,false,false,0,false,false,false,false +fgoudreault/buzzword_beamer_generator,fgoudreault,Python,false,true,false,0,false,false,false,false +QwantResearch/mimir-geocoder-tester,QwantResearch,Python,true,false,false,1,false,true,false,false +ClaudioNeiva/poo20182,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +john.carroll.p/rschedule,john.carroll.p,TypeScript,true,false,false,2,false,true,false,false +LeshaInc/ohm,LeshaInc,Rust,false,false,false,0,false,false,false,false +protist/mutt-vid,protist,Shell,false,false,false,0,false,false,false,false +Nurose/Nurose,Nurose,C#,true,false,false,1,true,false,false,false +SekhmetDesign/ACCM3,SekhmetDesign,,false,false,false,0,false,false,false,false +vigou3/emacs-modified-windows,vigou3,HTML,false,false,false,0,false,false,false,false +OpenCoop/opencoop.gitlab.io,OpenCoop,HTML,true,false,false,2,false,true,true,false +lamhoangtung/Data-Science-with-Python-Course-1,lamhoangtung,JupyterNotebook,false,false,false,0,false,false,false,false +netfarm.gq/cl-decentralise,netfarm.gq,CommonLisp,true,false,false,1,false,true,false,false +fabrice.marques/iut-wallet,fabrice.marques,JavaScript,false,false,false,0,false,false,false,false +r3dlight/JeanMichel,r3dlight,Python,false,false,false,0,false,false,false,false +florin.barbuceanu/SeleniumTestingFramework,florin.barbuceanu,Java,false,false,true,0,false,false,false,false +ejt/WoWOffsetDumper,ejt,C++,false,false,false,0,false,false,false,false +Sp4rt4h/kernel_modules,Sp4rt4h,Shell,false,false,false,0,false,false,false,false +Eric_WVGG/vapor-roles-middleware,Eric_WVGG,Swift,false,false,false,0,false,false,false,false +dojocasts/community/discord-bot,dojocasts,JavaScript,false,false,false,0,false,false,false,false +franicflowsarl/php-installer,franicflowsarl,Shell,true,false,false,3,false,true,false,false +b10nd/dotfiles,b10nd,Shell,false,false,false,0,false,false,false,false +peikuo/engineer,peikuo,,false,false,false,0,false,false,false,false +jD91mZM2/nix-explorer,jD91mZM2,Rust,false,false,false,0,false,false,false,false +Screwtapello/kakoune-inc-dec,Screwtapello,,false,false,false,0,false,false,false,false +YottaDB/DB/YDBDoc,YottaDB,Python,false,false,false,0,false,false,false,false +YottaDB/DB/YDBTest,YottaDB,M,false,false,false,0,false,false,false,false +zyumbik/professional-translator,zyumbik,,false,false,false,0,false,false,false,false +win-competiion/mockup-rest-api,win-competiion,JavaScript,false,false,false,0,false,false,false,false +sulfuror/rescript.sh,sulfuror,Shell,false,false,false,0,false,false,false,false +mohamnag/javafx-webview-debugger,mohamnag,Java,true,false,false,1,false,true,false,false +shaktiproject/tools/aapg,shaktiproject,Python,true,false,false,1,false,true,false,false +Panamo/ModularTwitterBot,Panamo,Java,false,false,true,0,false,false,false,false +mattklein/surreal,mattklein,C#,false,false,false,0,false,false,false,false +JeisonSanchez/borrar,JeisonSanchez,HTML,true,false,false,1,false,false,true,false +hackinggate/APN-Messages-Demo,hackinggate,Swift,false,false,false,0,false,false,false,false +neetcoders/neet-code.io,neetcoders,,false,false,false,0,false,false,false,false +pjranki/joycon-linux-kernel,pjranki,C,false,false,false,0,false,false,false,false +MCyxov/asteroid_bot,MCyxov,Python,false,false,false,0,false,false,false,false +NexusPieX/bionic,NexusPieX,C,false,false,false,0,false,false,false,false +libresat/libresat,libresat,TypeScript,false,false,false,0,false,false,false,false +nuntius35/extremal_peaks,nuntius35,JavaScript,true,false,false,1,false,false,true,false +YOUR-WORST-TACO/fetch,YOUR-WORST-TACO,Shell,false,false,false,0,false,false,false,false +spaceman860/android_vendor_pixelgapps,spaceman860,Makefile,false,false,false,0,false,false,false,false +DGothrek/ipyaggrid,DGothrek,JupyterNotebook,true,false,false,1,false,true,false,false +mugdha71/alphabetkeyboard,mugdha71,Java,false,false,false,0,false,false,false,false +robobenklein/p10k,robobenklein,Shell,false,false,false,0,false,false,false,false +forged-forge/forge,forged-forge,Lua,false,false,false,0,false,false,false,false +veselin.k/kubernetes-context-switcher,veselin.k,Python,false,false,false,0,false,false,false,false +MaPaFe/drone2,MaPaFe,C++,false,false,false,0,false,false,false,false +felipemocruha/flask-conf-2018,felipemocruha,Python,false,true,false,0,false,false,false,false +NimaMX/raspberry-kerenl,NimaMX,C,false,false,false,0,false,false,false,false +bluebomber019/DENVER-ARTCC,bluebomber019,JavaScript,false,false,false,0,false,false,false,false +WarX-16/Config/config_grub-warx-16,WarX-16,Shell,false,false,false,0,false,false,false,false +demsking/vue-cli-plugin-env-validator,demsking,JavaScript,true,false,false,2,false,true,false,true +justinac/kev2D,justinac,C,false,false,false,0,false,false,false,false +nd-cse-30872-fa18/cse-30872-fa18-examples,nd-cse-30872-fa18,Python,false,false,false,0,false,false,false,false +training-microservices-2018-01/nasabah-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +GTANW/SERVER-SAMP-GTO,GTANW,,false,false,false,0,false,false,false,false +training-microservices-2018-01/konfigurasi,training-microservices-2018-01,,false,false,false,0,false,false,false,false +training-microservices-2018-01/konfigurasi-service,training-microservices-2018-01,Java,false,false,true,0,false,false,false,false +ric_harvey/bl_secure_containers,ric_harvey,HTML,false,false,false,0,false,false,false,false +TheCodeRunsMe/lookup,TheCodeRunsMe,Shell,false,false,false,0,false,false,false,false +rdc-lab/2018,rdc-lab,CMake,false,false,false,0,false,false,false,false +pgbackrest/pgbackrest,pgbackrest,C,false,false,false,0,false,false,false,false +MggMuggins/aurum,MggMuggins,Rust,true,false,false,1,true,false,false,false +Reidond/SpecOps,Reidond,C++,false,false,false,0,false,false,false,false +kollo/Calcvac-Android,kollo,C,false,false,false,0,false,false,false,false +targetflow/WolfIsland,targetflow,C++,false,false,false,0,false,false,false,false +Ariansyah/praktikummh1,Ariansyah,HTML,false,false,false,0,false,false,false,false +quietkerb/steamplayprefix,quietkerb,Shell,false,false,false,0,false,false,false,false +nik9play/youtube-dl-js-gui,nik9play,CSS,false,false,false,0,false,false,false,false +Louie_ru/InnoSchedule,Louie_ru,Python,false,true,false,0,false,false,false,false +alaskalinuxuser/HD_compile_android_pie_videos,alaskalinuxuser,,false,false,false,0,false,false,false,false +AyraHikari/EmiliaHikari,AyraHikari,Python,false,true,false,0,false,false,false,false +Laravelium/Feed,Laravelium,PHP,true,false,false,1,false,true,false,false +jD91mZM2/arenatree,jD91mZM2,Rust,false,false,false,0,false,false,false,false +cunity/windows-cmake-docker,cunity,PowerShell,true,false,false,2,true,false,false,false +HugoDel/QuickCRM,HugoDel,Python,true,true,false,1,false,true,false,false +ayana/bento,ayana,TypeScript,false,false,false,0,false,false,false,false +kinoclever/kinoclever,kinoclever,,false,false,false,0,false,false,false,false +Polkabot/polkabot,Polkabot,JavaScript,true,false,false,2,true,false,false,false +opendatahub/ai-library-ui,opendatahub,JavaScript,false,false,false,0,false,false,false,false +opendatahub/jupyterhub-ansible,opendatahub,Makefile,false,false,false,0,false,false,false,false +uspcodelab/projects/hacknizer/kanban,uspcodelab,,false,false,false,0,false,false,false,false +LABXP2018/smped-front,LABXP2018,JavaScript,false,false,false,0,false,false,false,false +hqvrrsc4/monsterhunterworld_damage_meter,hqvrrsc4,C#,false,false,false,0,false,false,false,false +moriakaice/opr-portal-tracker,moriakaice,JavaScript,false,false,false,0,false,false,false,false +Annoa/strathaco,Annoa,JavaScript,false,false,false,0,false,false,false,false +vednoc/theme_switcher,vednoc,CSS,false,false,false,0,false,false,false,false +simon_mx1/AlpineBits_GuestRequests_testServer,simon_mx1,PHP,false,false,false,0,false,false,false,false +FlightChain2/_READMEFIRST,FlightChain2,,false,false,false,0,false,false,false,false +SEM3-Africa/SEM3-SS1-ESXi,SEM3-Africa,,false,false,false,0,false,false,false,false +arielton_nunes_fate/ADS_mobile,arielton_nunes_fate,Java,false,false,false,0,false,false,false,false +wemgl/todocli,wemgl,Go,false,false,false,0,false,false,false,false +mug-in-clermont-public/M6-2018,mug-in-clermont-public,CSS,false,false,false,0,false,false,false,false +shubham4564/Elibrary-from-Scratch,shubham4564,Python,false,false,false,0,false,false,false,false +Stanislasaugier/Applied_Dynamic_Economic_Modelling_R,Stanislasaugier,R,false,false,false,0,false,false,false,false +arno/your-blog,arno,HTML,false,false,false,0,false,false,false,false +Laravelium/Disqus,Laravelium,PHP,true,false,false,1,false,true,false,false +akshaybharambe14/python-practice,akshaybharambe14,Python,false,false,false,0,false,false,false,false +foxaur/foxaur,foxaur,Python,true,false,false,2,true,true,false,false +AytAliya/LostInHeops,AytAliya,Java,false,false,false,0,false,false,false,false +HRT-713/devrant-private-library,HRT-713,JupyterNotebook,false,false,false,0,false,false,false,false +neftas/supplementary-buttons-anki,neftas,Python,false,false,false,0,false,false,false,false +wheybags/factorio-rail-clock,wheybags,Lua,false,false,false,0,false,false,false,false +scion-scxml/core,scion-scxml,JavaScript,true,false,false,1,false,true,false,false +ablondin/inf1070-labos,ablondin,CSS,false,false,false,0,false,false,false,false +dit341/express-template,dit341,JavaScript,false,false,false,0,false,false,false,false +dustyweb/magenc,dustyweb,Racket,false,false,false,0,false,false,false,false +ImSovietBear/Meme-Machine,ImSovietBear,Python,false,false,false,0,false,false,false,false +m210/RedneckGDX,m210,Java,false,false,false,0,false,false,false,false +MCNetTraffic/Traffic,MCNetTraffic,Python,false,false,false,0,false,false,false,false +ncent/ncent-sandbox,ncent,JavaScript,true,false,false,1,false,false,false,false +binamov/infrastructure-testing,binamov,JavaScript,false,false,false,0,false,false,false,false +mubix/letmeoutofyour.net,mubix,,false,false,false,0,false,false,false,false +davideleone/uploaderbot,davideleone,Python,false,false,false,0,false,false,false,false +YoEight/eventstore-rs,YoEight,Rust,true,false,false,4,true,true,true,false +brucekly/dotfiles,brucekly,Python,false,false,false,0,false,false,false,false +opendatahub/opendatahub.io,opendatahub,HTML,true,false,false,2,false,true,true,false +AjBee/week2react,AjBee,JavaScript,false,false,false,0,false,false,false,false +Eonpass/specs,Eonpass,,false,false,false,0,false,false,false,false +jv110/darkengine,jv110,Rust,false,false,false,0,false,false,false,false +PseudoNet/higrow-sensor,PseudoNet,JavaScript,false,false,false,0,false,false,false,false +AlgoAU/hw-spbu-18,AlgoAU,Shell,false,false,false,0,false,false,false,false +shagu/pfUI-darkmod,shagu,Lua,false,false,false,0,false,false,false,false +shackra/secretaria,shackra,EmacsLisp,true,false,false,1,false,true,false,false +KRypt0n/_Recto-Decompiler,KRypt0n,PHP,false,false,false,0,false,false,false,false +opennota/fb2index,opennota,Go,true,false,false,2,true,true,false,false +opennota/tl,opennota,Go,true,false,false,2,true,true,false,false +golang-commonmark/mdtool,golang-commonmark,Go,true,false,false,2,true,true,false,false +kevinfiol/enhanced-gog,kevinfiol,JavaScript,false,false,false,0,false,false,false,false +hack13/ansible-opennic-setup,hack13,,false,false,false,0,false,false,false,false +zachbresser/django-blog,zachbresser,JavaScript,false,false,false,0,false,false,false,false +phata/hook,phata,PHP,true,false,false,2,false,true,true,false +mexus/rustup-components-availability,mexus,Rust,true,false,false,1,false,true,false,false +Morriar/inf3135-183-tp1,Morriar,Shell,false,false,false,0,false,false,false,false +gitlab-com/business-ops/Issues.help,gitlab-com,,false,false,false,0,false,false,false,false +hodge_star/specify,hodge_star,C++,false,false,false,0,false,false,false,false +Screwtapello/kakoune-state-save,Screwtapello,,false,false,false,0,false,false,false,false +ludo237/laravel-gitlab-ci-setup,ludo237,HTML,false,false,false,0,false,false,false,false +rittenberry/bryanswebsite,rittenberry,JavaScript,true,false,false,3,true,false,true,false +dave851221/IDchanger,dave851221,Python,false,false,false,0,false,false,false,false +HoracioNakama/taller-introduccion-python-cientifico,HoracioNakama,JupyterNotebook,false,false,false,0,false,false,false,false +TrevorJTClarke/noblankimg,TrevorJTClarke,JavaScript,false,false,false,0,false,false,false,false +pureharvest/superset,pureharvest,JavaScript,false,false,false,0,false,false,false,false +mavnn/elmish-tutorial,mavnn,F#,true,false,false,2,true,false,true,false +samuelmg/asistencia,samuelmg,PHP,false,false,false,0,false,false,false,false +maggieliuzzi/magic_profiler,maggieliuzzi,Python,false,true,false,0,false,false,false,false +fablab-allgaeu/fablab-allgaeu.gitlab.io,fablab-allgaeu,CSS,true,false,false,2,false,true,true,false +admicos/nts,admicos,Python,false,false,false,0,false,false,false,false +rxh5/codefest,rxh5,Java,false,false,false,0,false,false,false,false +crosegl/chris-project-13september,crosegl,,false,false,false,0,false,false,false,false +bapp.hsgerlenbach.de/graphics,bapp.hsgerlenbach.de,,false,false,false,0,false,false,false,false +bunny-team/bunny-team.gitlab.io,bunny-team,HTML,true,false,false,1,false,false,true,false +maxaussprung/ia-writer-templates,maxaussprung,CSS,false,false,false,0,false,false,false,false +ahangarha/no2drm,ahangarha,,false,false,false,0,false,false,false,false +luizchagasjardim/aprendendo-java,luizchagasjardim,Java,false,false,false,0,false,false,false,false +gnaar/genesis,gnaar,HCL,false,false,false,0,false,false,false,false +georgedorn/wonambi,georgedorn,Python,true,true,false,1,false,true,false,false +characterbase/characterbase-ui,characterbase,TypeScript,false,false,false,0,false,false,false,false +telnet/reflection-sim,telnet,Python,false,false,false,0,false,false,false,false +illarionovEA/mathcourse18,illarionovEA,JupyterNotebook,false,false,false,0,false,false,false,false +4LT/steam-game-launchers,4LT,Tcl,true,false,false,1,false,false,false,false +pratadaniel94/520,pratadaniel94,Python,false,false,false,0,false,false,false,false +kiscsonti/pizza-papa,kiscsonti,JavaScript,false,false,false,0,false,false,false,false +igamgam97/tinkoffcafe,igamgam97,Python,false,false,false,0,false,false,false,false +antipy/antibuild/cli,antipy,Go,false,false,false,0,false,false,false,false +SunyataZero/remembering,SunyataZero,Python,false,true,false,0,false,false,false,false +chicken231/terraform-digitalocean-droplets-ubuntu,chicken231,HCL,false,false,false,0,false,false,false,false +yamagoya/jmdictdb,yamagoya,Python,false,false,false,0,false,false,false,false +visportella/geocomp-py-framework,visportella,Python,false,false,false,0,false,false,false,false +joeyates/fermo,joeyates,Elixir,false,false,false,0,false,false,false,false +jean-christophe-manciot/ppa,jean-christophe-manciot,,false,false,false,0,false,false,false,false +scion-scxml/scion,scion-scxml,JavaScript,false,false,false,0,false,false,false,false +midori-mate/til,midori-mate,Python,false,false,false,0,false,false,false,false +TelerikAcademy/alpha-program-preparation,TelerikAcademy,,false,false,false,0,false,false,false,false +da_doomer/deadly-icecream,da_doomer,,false,false,false,0,false,false,false,false +musketeerz/newsmovie,musketeerz,Java,false,false,false,0,false,false,false,false +clickable/clickable,clickable,Python,true,false,false,1,false,true,false,false +_mwirth/zfs-add-on-for-splunk,_mwirth,Python,false,false,false,0,false,false,false,false +b-rowlingson/xkcd2048,b-rowlingson,R,false,false,false,0,false,false,false,false +akeela/mstn-m100-ethernet,akeela,C++,false,false,false,0,false,false,false,false +contextualcode/platformsh-migration,contextualcode,Shell,false,false,false,0,false,false,false,false +andwj/jeutool,andwj,Go,false,false,false,0,false,false,false,false +vhahn/rlm,vhahn,GDScript,false,false,false,0,false,false,false,false +chuongnd/hocdiban-front-end,chuongnd,,true,false,false,1,false,false,true,false +7learn-experts/7shop.exp,7learn-experts,JavaScript,false,false,false,0,false,false,false,false +altek/accountant,altek,PHP,true,false,false,1,false,true,false,false +witchpou/lj-projectbuilder,witchpou,Java,true,false,false,2,false,false,false,false +apgoucher/slmake,apgoucher,C++,true,false,false,2,false,true,false,true +denis4net/gphotosync,denis4net,Go,true,false,false,1,true,false,false,false +tales/tales-client,tales,C++,true,false,false,2,true,false,true,false +j64wang/wclip,j64wang,C,false,false,false,0,false,false,false,false +kanna-kobayashi/kanna-bot,kanna-kobayashi,JavaScript,true,false,false,3,false,true,true,false +lambdait/lectures/machine_learning,lambdait,JupyterNotebook,false,false,false,0,false,false,false,false +valentin9961/opera-from-paradise,valentin9961,,false,false,false,0,false,false,false,false +staltz/manyverse-site,staltz,HTML,false,false,false,0,false,false,false,false +johany/operaformparadise,johany,,false,false,false,0,false,false,false,false +alaskalinuxuser/hd_makinganewcustomrom,alaskalinuxuser,,false,false,false,0,false,false,false,false +ModelRocket/sparks,ModelRocket,Go,false,false,false,0,false,false,false,false +ModelRocket/hiro,ModelRocket,Go,false,false,false,0,false,false,false,false +LittleNemo/libs,LittleNemo,C,false,false,false,0,false,false,false,false +tiagomiotto/smartoffice,tiagomiotto,JupyterNotebook,false,false,false,0,false,false,false,false +let-me-help/letmehelp.life,let-me-help,JavaScript,true,false,false,1,false,true,false,false +jckimble/smsprovider,jckimble,Go,true,false,false,1,false,true,false,false +thegrozni/Terrabayt,thegrozni,,false,false,false,0,false,false,false,false +GothicMultiplayerTeam/GothicMultiplayer,GothicMultiplayerTeam,C++,false,false,false,0,false,false,false,false +unc-app-lab/clem,unc-app-lab,Clojure,false,false,false,0,false,false,false,false +oleh.kurachenko/ubuntu_setup,oleh.kurachenko,Shell,true,false,false,2,false,true,false,true +MVMC-lab/asalib,MVMC-lab,C,true,false,false,1,true,false,false,false +r3dlight/akabox,r3dlight,CSS,true,false,false,2,true,true,false,false +gerardomares/npolink,gerardomares,JavaScript,true,false,false,3,true,true,false,false +berkayyildiz/stm-ctf-18,berkayyildiz,Python,false,false,false,0,false,false,false,false +Neo_Chen/Brainfunk,Neo_Chen,C,false,false,false,0,false,false,false,false +mercextec/dam2m09uf3-public,mercextec,Java,false,false,false,0,false,false,false,false +vault25/pipboy,vault25,QML,true,false,false,2,true,true,false,false +AirVPN/EddieAndroid,AirVPN,Java,false,false,false,0,false,false,false,false +sixsixfive/dark-icons,sixsixfive,HTML,false,false,false,0,false,false,false,false +tmorin/pine64-docker-swarm,tmorin,Shell,false,false,false,0,false,false,false,false +wozar/orgmode-char-templates,wozar,,false,false,false,0,false,false,false,false +vlaaad/replviz,vlaaad,Clojure,false,false,false,0,false,false,false,false +jcpetkovich/shrink-whitespace.el,jcpetkovich,EmacsLisp,false,false,false,0,false,false,false,false +ECOM-Mycamping/mycamping,ECOM-Mycamping,Java,true,false,true,5,true,true,false,true +xabb/asix,xabb,,false,false,false,0,false,false,false,false +hodge_star/quotient,hodge_star,C++,false,false,false,0,false,false,false,false +ivanradosavljevic/sing-oop2-2018,ivanradosavljevic,HTML,false,false,false,0,false,false,false,false +eng_ahmed/po_inv_ocr,eng_ahmed,Python,false,false,false,0,false,false,false,false +reverend_rainwater/gnu_cookbook,reverend_rainwater,,false,false,false,0,false,false,false,false +massma/mit-scheme-match,massma,Scheme,false,false,false,0,false,false,false,false +9898287/gtkdnotes,9898287,,false,false,false,0,false,false,false,false +oleh.kurachenko/PPaPUCpp_Stroustrup,oleh.kurachenko,C++,false,false,false,0,false,false,false,false +trollodel/lan-chat,trollodel,Python,false,false,false,0,false,false,false,false +mcgrof/init-kconfig,mcgrof,C,false,false,false,0,false,false,false,false +beautimer-group/beautimer,beautimer-group,Python,false,false,false,0,false,false,false,false +seriyalexandrov/proposal-booster,seriyalexandrov,Java,false,false,true,0,false,false,false,false +slndrmn/twitterstats,slndrmn,Python,false,false,false,0,false,false,false,false +Zeinok/OVGen,Zeinok,VisualBasic,false,false,false,0,false,false,false,false +pierrepita/atyimo,pierrepita,Python,false,false,false,0,false,false,false,false +gmbarrera/ai-examples,gmbarrera,Python,false,false,false,0,false,false,false,false +olexandr.kucher/geekhub8,olexandr.kucher,Java,true,false,false,1,false,true,false,false +corunahacks/2018/aloha/aloha-back,corunahacks,C#,false,false,false,0,false,false,false,false +NEKERAFA/Talkative,NEKERAFA,HTML,true,false,false,1,false,false,true,false +zee220/mcfd,zee220,Python,false,false,false,0,false,false,false,false +cloudnet-interface/cloudnet-interface,cloudnet-interface,JavaScript,false,false,false,0,false,false,false,false +cloudnet-interface/cloudnet-interface-extension,cloudnet-interface,Java,true,false,true,3,true,true,true,false +tiagomiotto/scemb,tiagomiotto,C,false,false,false,0,false,false,false,false +prosoftschool2018/clang,prosoftschool2018,C,false,false,false,0,false,false,false,false +mjaworski8/projecte-web-flautilla-hero,mjaworski8,CSS,true,false,false,1,false,false,true,false +avincze73/oracle-iqjb,avincze73,Java,false,false,true,0,false,false,false,false +cahyanugraha12/ppw_e_kelompok2,cahyanugraha12,Python,true,true,false,2,false,true,true,false +EvilBeaver/ie2018-hackathon,EvilBeaver,C#,false,false,false,0,false,false,false,false +Khiyara/ppw-tp-10c,Khiyara,JavaScript,true,false,false,2,false,true,true,false +oofga/eps/eps_2018_2/ep2,oofga,Python,false,false,false,0,false,false,false,false +elequiel/gruposad,elequiel,Python,false,false,false,0,false,false,false,false +Pagure/pagure,Pagure,Python,false,true,false,0,false,false,false,false +anchore/gitlab-demo,anchore,JavaScript,true,false,false,3,true,false,false,true +rationalcyber/syslog-tools-for-splunk,rationalcyber,,false,false,false,0,false,false,false,false +lego2018/hugo-template-musterprojekt,lego2018,CSS,false,false,false,0,false,false,false,false +tiagomiotto/psd,tiagomiotto,Verilog,false,false,false,0,false,false,false,false +tiagomiotto/vet-db,tiagomiotto,PHP,false,false,false,0,false,false,false,false +eyeo/adblockplus/adblockplussbrowser,eyeo,Java,false,false,false,0,false,false,false,false +xiayesuifeng/goblog,xiayesuifeng,Go,true,false,false,2,true,true,false,false +inivation/libcaer,inivation,C,true,false,false,3,true,true,true,false +frozolotl/discord-onedark,frozolotl,CSS,false,false,false,0,false,false,false,false +colingeniet/game-theory-report,colingeniet,TeX,false,false,false,0,false,false,false,false +clovis-ai/iut-info,clovis-ai,TeX,false,false,false,0,false,false,false,false +hocnv/notes-demo,hocnv,HTML,false,false,false,0,false,false,false,false +calblueprint/fsf-rails,calblueprint,Ruby,false,false,false,0,false,false,false,false +calblueprint/fsf-mobile,calblueprint,JavaScript,false,false,false,0,false,false,false,false +foundrynet/dnd5e,foundrynet,JavaScript,false,false,false,0,false,false,false,false +joshlambert/minimal-ruby-app,joshlambert,Ruby,true,false,false,13,true,true,false,true +Nicd/mebe-2,Nicd,Elixir,false,false,false,0,false,false,false,false +SunyataZero/kindmind,SunyataZero,Java,false,false,false,0,false,false,false,false +mobicoop/mobicoop,mobicoop,PHP,true,false,false,5,false,false,true,false +samlachance/job-board,samlachance,Elixir,true,false,false,1,false,true,false,false +moonbound/prizepool,moonbound,JavaScript,false,false,false,0,false,false,false,false +PushFish/PushFish-Connectors,PushFish,Python,false,true,false,0,false,false,false,false +domatskiy/laravel-html-cache,domatskiy,PHP,true,false,false,1,false,true,false,false +szaver/temujin,szaver,Rust,false,false,false,0,false,false,false,false +ClaudioNeiva/multa20182,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +ashmckenzie/adguard-home-docker,ashmckenzie,Makefile,false,false,false,0,false,false,false,false +crespum/polaris,crespum,JupyterNotebook,true,false,false,3,true,true,false,false +gioxa/odagrun/odagrun,gioxa,C,true,false,false,9,true,false,false,true +Songoda/EpicHeads,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicAnchors,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicHoppers,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/UltimateRepairing,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicVouchers,Songoda,Java,true,false,true,1,true,false,false,false +python-actorio/actorio,python-actorio,Python,true,false,false,3,true,true,false,true +FedericoBottoni/pss-assignment1,FedericoBottoni,JavaScript,true,false,false,2,false,true,false,true +misaelpc/infinite_canvas,misaelpc,Swift,false,false,false,0,false,false,false,false +tiagomiotto/rsi,tiagomiotto,,false,false,false,0,false,false,false,false +tmorin/pine64-image-armbian,tmorin,Shell,false,false,false,0,false,false,false,false +zaber-core-libs/core-python,zaber-core-libs,Python,true,false,false,2,false,true,true,false +mzzfederico/open-overlay-system,mzzfederico,JavaScript,false,false,false,0,false,false,false,false +GuillemSerra/aioqueues,GuillemSerra,Python,false,false,false,0,false,false,false,false +mstafford/xhaust,mstafford,CSS,false,false,false,0,false,false,false,false +eschnell/ft_hexdump,eschnell,C,true,false,false,2,true,true,false,false +sultanahamer/OpenContacts,sultanahamer,Java,false,false,false,0,false,false,false,false +sdfsdfsdf1234/lavalink,sdfsdfsdf1234,JavaScript,false,false,false,0,false,false,false,false +dimitrisstr/tetris,dimitrisstr,Python,false,false,false,0,false,false,false,false +pymedphys/pymedphys,pymedphys,Python,true,false,false,1,false,false,false,false +training-microservices-2018-03/discovery-service,training-microservices-2018-03,Java,false,false,true,0,false,false,false,false +training-microservices-2018-03/konfigurasi,training-microservices-2018-03,,false,false,false,0,false,false,false,false +training-microservices-2018-03/config-service,training-microservices-2018-03,Java,true,false,true,2,true,false,true,false +intangiblerealities/narupaXR,intangiblerealities,C#,true,false,false,1,false,true,false,false +ciaranbryden/fatal-void,ciaranbryden,,false,false,false,0,false,false,false,false +Atantares/eleks_restful,Atantares,C#,false,false,false,0,false,false,false,false +rocketwings/ece285f,rocketwings,JupyterNotebook,false,false,false,0,false,false,false,false +rocketmakers/ruby-vault,rocketmakers,Ruby,false,false,false,0,false,false,false,false +training-microservices-2018-03/nasabah,training-microservices-2018-03,Java,false,false,true,0,false,false,false,false +jjyepez/associates-chrome-extension,jjyepez,JavaScript,false,false,false,0,false,false,false,false +JobV/awesome-macos-apps,JobV,,false,false,false,0,false,false,false,false +echoorchid/study-imooc,echoorchid,JavaScript,false,false,false,0,false,false,false,false +MindustryModders/mindustry-documentation,MindustryModders,,true,false,false,1,false,true,false,false +PaulBrownMagic/simple_web,PaulBrownMagic,Prolog,false,false,false,0,false,false,false,false +InuitViking/classy-php,InuitViking,PHP,false,false,false,0,false,false,false,false +Songoda/epicbuckets,Songoda,Java,true,false,true,1,true,false,false,false +training-microservices-2018-03/gateway,training-microservices-2018-03,Java,false,false,true,0,false,false,false,false +raeq/pciq,raeq,Python,true,true,false,1,false,true,false,false +Songoda/EpicBosses,Songoda,Java,true,false,true,1,true,false,false,false +tekktonic/dendros,tekktonic,,false,false,false,0,false,false,false,false +training-microservices-2018-03/tagihan,training-microservices-2018-03,Java,false,false,true,0,false,false,false,false +xiaoq_bj/cloudencode,xiaoq_bj,Go,false,false,false,0,false,false,false,false +nic0lasfara/pandoc-template,nic0lasfara,TeX,false,false,false,0,false,false,false,false +hrvojesimic/opp-project-teams-backend,hrvojesimic,Java,false,false,true,0,false,false,false,false +LineageOS/builder/android,LineageOS,Python,true,true,false,2,true,false,false,false +jdip/jdip,jdip,Java,true,false,false,3,true,true,false,false +aminosbh/basic-c-sdl-project,aminosbh,C,false,false,false,0,false,false,false,false +net4me/telegram-php,net4me,PHP,false,false,false,0,false,false,false,false +AnGol/pomodoro,AnGol,Java,false,false,false,0,false,false,false,false +tomkukral/keyforce,tomkukral,Go,true,false,false,3,false,true,false,true +ubports/app-dev/calculator-app,ubports,QML,true,false,false,1,false,true,false,false +dadana/woffelskrach,dadana,CSS,true,false,false,2,false,true,true,false +marcusmansson/glesys-dns01,marcusmansson,Shell,false,false,false,0,false,false,false,false +VanessaE/basic_materials,VanessaE,Lua,false,false,false,0,false,false,false,false +artivisi/training-javaweb-201801,artivisi,Java,false,false,false,0,false,false,false,false +carpathialab/hanumat,carpathialab,PHP,false,false,false,0,false,false,false,false +joao.porto/curriculolattes,joao.porto,,false,false,false,0,false,false,false,false +arlug/blog,arlug,Python,false,false,false,0,false,false,false,false +richardsjo/spelling-helper,richardsjo,Python,false,false,false,0,false,false,false,false +nachobelmonte/socketprimeraprueba,nachobelmonte,Java,false,false,false,0,false,false,false,false +srwalker101/rust-jupyter-client,srwalker101,Rust,true,false,false,2,false,true,false,false +collaba-tube/frontend,collaba-tube,Vue,true,false,false,3,true,true,true,false +collaba-tube/deploy,collaba-tube,Makefile,false,false,false,0,false,false,false,false +erme2/officina,erme2,Shell,false,false,false,0,false,false,false,false +pierrenn/gobitmex,pierrenn,Go,true,false,false,1,false,true,false,false +Slyso/AdventureGame,Slyso,Java,true,false,true,1,false,true,false,false +Songoda/ultimatetimber,Songoda,Java,true,false,false,1,true,false,false,false +fpalinf/shinobi-docker-compose,fpalinf,Shell,false,false,false,0,false,false,false,false +ML-afterWork/rl-stuff,ML-afterWork,JupyterNotebook,false,false,false,0,false,false,false,false +NateDogg1232/passgen-rs,NateDogg1232,Rust,true,false,false,1,false,true,false,false +PierreNicol/rss-feed,PierreNicol,Java,true,false,false,2,true,false,false,false +joshua.tee/wx,joshua.tee,Kotlin,false,false,false,0,false,false,false,false +personal-server-community/pschecker,personal-server-community,Python,false,true,false,0,false,false,false,false +Songoda/UltimateStacker,Songoda,Java,true,false,true,1,true,false,false,false +delta1512/split-key-secp256k1-implementation,delta1512,Python,false,false,false,0,false,false,false,false +mhaluska/ops-automation,mhaluska,JavaScript,false,false,false,0,false,false,false,false +collaba-tube/api-docker-nginx-dev,collaba-tube,,true,false,false,2,true,true,false,false +collaba-tube/api-docker-php-dev,collaba-tube,,true,false,false,2,true,true,false,false +Matrixcoffee/HKBot,Matrixcoffee,Python,false,false,false,0,false,false,false,false +cc-wdesign/django-project-boilerplate,cc-wdesign,Python,true,false,false,1,false,true,false,false +annaBio/calli-ngs1.1,annaBio,Nextflow,false,false,false,0,false,false,false,false +maxer137/hugelol-notification,maxer137,JavaScript,false,false,false,0,false,false,false,false +ModernisingMedicalMicrobiology/dtc-super-gc,ModernisingMedicalMicrobiology,Python,false,false,false,0,false,false,false,false +tneveu/cours-cdsm,tneveu,Java,false,false,false,0,false,false,false,false +competition-ageei-uqam/ressources-intro-ctf,competition-ageei-uqam,Makefile,false,false,false,0,false,false,false,false +sat-mtl/telepresence/node-switcher,sat-mtl,C++,true,false,false,3,true,true,true,false +backstage-technical-services/laravel-site,backstage-technical-services,PHP,true,false,false,3,false,true,true,false +unimatrix-one/zero,unimatrix-one,C#,true,false,false,1,true,false,false,false +costar-astrology/freer-simple-contrib,costar-astrology,Haskell,false,false,false,0,false,false,false,false +ModelRocket/mu,ModelRocket,Go,false,false,false,0,false,false,false,false +alienscience/mailin,alienscience,HTML,true,false,false,3,true,false,true,true +tallero/daty,tallero,Python,false,false,false,0,false,false,false,false +ireydiak/societe-des-transports-slave,ireydiak,PLpgSQL,false,false,false,0,false,false,false,false +nberend/react-homepage-server,nberend,JavaScript,false,false,false,0,false,false,false,false +SEHI/image-processing-with-opencv,SEHI,,false,false,false,0,false,false,false,false +duttish/formula,duttish,Python,false,false,false,0,false,false,false,false +Sold/svkengine,Sold,Python,false,false,false,0,false,false,false,false +delta1512/grc-wallet-bot,delta1512,Python,false,false,false,0,false,false,false,false +SemkaProd1/task-manager-nc,SemkaProd1,Java,true,false,true,1,false,true,false,false +GaugeK/dots,GaugeK,CSS,false,false,false,0,false,false,false,false +squake/billingsystem,squake,Java,false,false,true,0,false,false,false,false +robin.roschlau/advent-of-code-solver,robin.roschlau,Kotlin,true,false,false,2,true,true,false,false +JonAka/arrasateapp,JonAka,TypeScript,false,false,false,0,false,false,false,false +marianogabriels/simple_blockchain,marianogabriels,Ruby,false,false,false,0,false,false,false,false +axet/android-file-manager,axet,Java,false,false,false,0,false,false,false,false +lci_me/g1s1,lci_me,,false,false,false,0,false,false,false,false +marius-balteanu/redmine,marius-balteanu,Ruby,false,false,false,0,false,false,false,false +skynxt/migretor,skynxt,Java,false,false,false,0,false,false,false,false +Boluge/polytechfindroom,Boluge,Go,true,false,false,2,true,true,false,false +kaszaq/jiratomkdocs,kaszaq,Java,true,false,true,2,true,false,true,false +hkex/pyr2,hkex,JupyterNotebook,true,false,false,1,false,true,false,false +BVollmerhaus/blurwal,BVollmerhaus,Python,true,false,false,3,true,true,false,true +ajinkyakolhe112/gcp-data-engineering,ajinkyakolhe112,,false,false,false,0,false,false,false,false +murat.cileli/gnome-shell-extension-shell-clock,murat.cileli,JavaScript,false,false,false,0,false,false,false,false +cerfacs/arnica,cerfacs,Python,false,false,false,0,false,false,false,false +Morriar/inf3135-183-tp3,Morriar,,false,false,false,0,false,false,false,false +midori-browser/midori-core,midori-browser,Vala,false,false,false,0,false,false,false,false +r3sistance/retroshare-web-bridges,r3sistance,CSS,false,false,false,0,false,false,false,false +rexmalebka/python-midi-osc-interface,rexmalebka,Python,false,false,false,0,false,false,false,false +ei-dev/docker-workshop,ei-dev,Python,false,false,false,0,false,false,false,false +RandomHashTags/umaterial,RandomHashTags,Java,false,false,false,0,false,false,false,false +elad.noor/equilibrator-cache,elad.noor,Python,true,false,false,2,false,true,true,false +tista500/plata-theme-flatpak,tista500,Makefile,false,false,false,0,false,false,false,false +danielperezruiz.10/dgiim1,danielperezruiz.10,C++,false,false,false,0,false,false,false,false +Manuelbelgicano/DGIIM,Manuelbelgicano,C,false,false,false,0,false,false,false,false +fdroid/planet,fdroid,Python,true,false,false,1,false,false,true,false +foodsharing-dev/foodsharing-ios,foodsharing-dev,Swift,false,false,false,0,false,false,false,false +ccrpc/lrtp2045,ccrpc,Batchfile,true,false,false,1,false,true,false,false +Huge1/complex-orders-binance,Huge1,Python,false,false,false,0,false,false,false,false +drakemp/cmsc498x---physical-layer-encryption,drakemp,Python,false,false,false,0,false,false,false,false +camlcase-dev/michelson-tutorial,camlcase-dev,,false,false,false,0,false,false,false,false +m.aguileralegal/cannary,m.aguileralegal,,false,false,false,0,false,false,false,false +ftcommunity/website,ftcommunity,,false,false,false,0,false,false,false,false +hhn/hanmote,hhn,C#,false,false,false,0,false,false,false,false +adamkalis/ikhnos,adamkalis,Python,false,true,false,0,false,false,false,false +pwyde/monochrome-kde,pwyde,QML,false,false,false,0,false,false,false,false +joelamouche/interplanetary-samples,joelamouche,JavaScript,false,false,false,0,false,false,false,false +jckimble/dockerssh,jckimble,Vue,true,false,false,3,true,true,false,true +collaba-tube/api,collaba-tube,TypeScript,true,false,false,3,true,true,true,false +qeef/livejosm,qeef,JavaScript,false,false,false,0,false,false,false,false +amitkul2/adwaita-dark-compact-xfwm4,amitkul2,,false,false,false,0,false,false,false,false +juliendubreuil/gitlab-ci-example-drupal,juliendubreuil,PHP,true,false,false,2,true,false,true,false +bfa/bfa_django,bfa,Python,true,true,false,3,false,true,false,false +diamondburned/noschat,diamondburned,Go,true,false,false,1,true,false,false,false +amtd/node-utils,amtd,JavaScript,false,false,false,0,false,false,false,false +sudhaksha/j46/corejava,sudhaksha,Java,false,false,false,0,false,false,false,false +ninjin/comp0090_1819,ninjin,JupyterNotebook,false,false,false,0,false,false,false,false +solucracy/solucracy,solucracy,PHP,false,false,false,0,false,false,false,false +harokucreativestudio/Tempeh,harokucreativestudio,JavaScript,false,false,false,0,false,false,false,false +admicos/task-studio,admicos,Vue,true,false,false,1,false,false,true,false +david.araujo0/olx-screen-flutter,david.araujo0,Dart,false,false,false,0,false,false,false,false +stonesong/midnightbluetheme,stonesong,HTML,false,false,false,0,false,false,false,false +XBagon/term_stone,XBagon,Rust,true,false,false,1,false,true,false,false +stfnandersen/open-pos,stfnandersen,Vue,false,false,false,0,false,false,false,false +Capuno/dome,Capuno,JavaScript,false,false,false,0,false,false,false,false +daksh7011/nemean,daksh7011,CSS,true,false,false,1,false,false,true,false +michalSolarz/pikachu-test-passed,michalSolarz,JavaScript,false,false,false,0,false,false,false,false +chino-chan/pwm-xft,chino-chan,C,false,false,false,0,false,false,false,false +IEEE-SA/BioCompute/bco-schema,IEEE-SA,,false,false,false,0,false,false,false,false +a18t/yang,a18t,HTML,false,false,false,0,false,false,false,false +mattmatters/opencv-wasm,mattmatters,JavaScript,true,false,false,4,true,true,true,true +sorenmat/gosmtpd,sorenmat,Go,true,false,false,2,true,false,true,false +recalbox/ops/recaleur,recalbox,Go,true,false,false,2,true,false,true,false +MrWildcard/a-nice-app,MrWildcard,JavaScript,true,false,false,3,true,true,true,false +Antmounds/Antennae,Antmounds,JavaScript,true,false,false,4,true,true,true,false +tottokotkd/benicky,tottokotkd,Ruby,true,false,false,3,true,true,true,false +rubickcz/chat,rubickcz,Python,true,false,false,3,true,true,true,false +allamand/example-voting-app,allamand,JavaScript,true,false,false,4,true,true,true,false +materials-modeling/dynasor,materials-modeling,Python,true,false,false,3,true,true,true,false +rubdos/cffipp,rubdos,Python,true,true,false,3,true,true,true,false +saasdm/saasdm-phoenix,saasdm,JavaScript,true,false,false,2,true,false,true,false +YottaDB/Lang/YDBGo,YottaDB,Go,true,false,false,3,true,true,true,false +flaxandteal/phpbelfast-demo,flaxandteal,PHP,true,false,false,4,true,true,true,true +one-more/acropole,one-more,Go,true,false,false,4,true,true,true,true +custom_components/hadockermon,custom_components,Python,true,false,false,2,true,false,true,false +mtnygard/m2m.solingen,mtnygard,Ruby,true,false,false,3,true,false,true,false +matthieu-bruneaux/guide-r-rstudio-git-gitlab,matthieu-bruneaux,Python,true,false,false,2,true,false,true,false +jitesoft/open-source/javascript/cookie-consent,jitesoft,JavaScript,true,false,false,3,true,true,true,false +griest/pixi-actor,griest,JavaScript,true,false,false,3,true,true,true,false +griest/vue-component-proxy,griest,JavaScript,true,false,false,3,true,true,true,false +custom_components/ruter,custom_components,Python,true,false,false,2,true,false,true,false +custom_components/launchlibrary,custom_components,Python,true,false,false,2,true,false,true,false +b0/matrix-nsfw,b0,Go,true,false,false,2,true,false,true,false +custom_components/weatheralerts,custom_components,Python,true,false,false,2,true,false,true,false +collaba-tube/old-api,collaba-tube,PHP,true,false,false,3,true,true,true,false +saycle.xyz/saycle.web,saycle.xyz,JavaScript,true,false,false,3,true,true,true,false +esyt63/Gitlab_CI_ReactJs,esyt63,JavaScript,true,false,false,5,true,true,true,true +gitlab-org/gitter/sidecar,gitlab-org,JavaScript,true,false,false,3,true,true,true,false +LineageOS/infra/updater,LineageOS,Python,true,true,false,2,true,true,false,false +dimakow/myFirstGoAppOnSCP,dimakow,Go,true,false,false,3,true,true,true,false +MaxIV/webjive,MaxIV,JavaScript,true,false,false,2,true,false,true,false +gitlab-org/gitlab-insights,gitlab-org,Ruby,true,false,false,4,true,true,true,false +cloudigrade/cloudigrade,cloudigrade,Python,true,false,false,5,true,true,true,true +monty/wells,monty,C,false,false,false,0,false,false,false,false +gitlab-org/gitlab-grit,gitlab-org,Ruby,true,false,false,1,false,true,false,false +caro-sdu/covis,caro-sdu,C++,false,false,false,0,false,false,false,false +magraine/depublication,magraine,PHP,false,false,false,0,false,false,false,false +sigmavirus24/issues-migration,sigmavirus24,Python,false,true,false,0,false,false,false,false +eduardrock/dyapos,eduardrock,JavaScript,false,false,false,0,false,false,false,false +xonotic/xonstatdb,xonotic,PLpgSQL,false,false,false,0,false,false,false,false +xonotic/xonstat,xonotic,Python,false,true,false,0,false,false,false,false +xonotic/xonotic-music.pk3dir,xonotic,Shell,false,false,false,0,false,false,false,false +ciencialivre/openlattes,ciencialivre,Python,false,false,false,0,false,false,false,false +tfabre/projetweb,tfabre,PHP,false,false,false,0,false,false,false,false +dustyweb/talks,dustyweb,TeX,false,false,false,0,false,false,false,false +nitroxis/pasa,nitroxis,C,false,false,false,0,false,false,false,false +queertypes/intro-to-fp,queertypes,Haskell,false,false,false,0,false,false,false,false +askhl/python-ase,askhl,Python,false,true,false,0,false,false,false,false +winlinvip/srs-gitlab,winlinvip,C++,false,false,false,0,false,false,false,false +xivo.solutions/xucmgt,xivo.solutions,JavaScript,false,false,false,0,false,false,false,false +berdyansk/astra-sm,berdyansk,C,false,false,false,0,false,false,false,false +Huang/dockerfile,Huang,Shell,false,false,false,0,false,false,false,false +SFTtech/openage,SFTtech,C++,false,false,false,0,false,false,false,false +shared-puppet-modules-group/backupninja,shared-puppet-modules-group,Puppet,true,false,false,2,false,true,true,false +shared-puppet-modules-group/common,shared-puppet-modules-group,Ruby,true,false,false,1,false,true,false,false +CameronBanga/iOS-Developer-and-Designer-Interview-Questions,CameronBanga,,false,false,false,0,false,false,false,false +dblessing/chef-gitlab_omnibus,dblessing,Ruby,false,false,false,0,false,false,false,false +RetroShare/RetroShare,RetroShare,C++,false,false,false,0,false,false,false,false +qtquickplot/qtquickplot,qtquickplot,C++,false,false,false,0,false,false,false,false +latexpand/latexpand,latexpand,Perl,true,false,false,1,false,true,false,false +mediathekdirekt/mediathekdirekt,mediathekdirekt,JavaScript,false,false,false,0,false,false,false,false +jiguiviou/jiguiviou,jiguiviou,C++,false,false,false,0,false,false,false,false +wsl/wsl-repository,wsl,HTML,false,false,false,0,false,false,false,false +leafnode-2/leafnode-1,leafnode-2,C,false,false,false,0,false,false,false,false +oppl/pymecavideo,oppl,Python,false,false,false,0,false,false,false,false +edleh/torpy,edleh,Python,false,false,false,0,false,false,false,false +sortie/myos,sortie,C,false,false,false,0,false,false,false,false +mahara/mahara,mahara,PHP,false,false,false,0,false,false,false,false +Boojum/python-securepay,Boojum,Python,true,false,false,1,false,true,false,false +lazy-book-crowd/jrc-manual,lazy-book-crowd,Makefile,false,false,false,0,false,false,false,false +StinkyTwitch/Probably_RotAgent,StinkyTwitch,Lua,false,false,false,0,false,false,false,false +darren-blum/SHADOW,darren-blum,C++,false,false,false,0,false,false,false,false +ideasman42/blender-mathutils,ideasman42,C,false,false,false,0,false,false,false,false +simontamas/projeszk13PizzaProject,simontamas,Java,false,false,false,0,false,false,false,false +openfsi-org/openfsi-org,openfsi-org,C++,false,false,false,0,false,false,false,false +X9180/android_device_zte_x9180_proprietary,X9180,Makefile,false,false,false,0,false,false,false,false +mjwhitta/zoom,mjwhitta,Ruby,false,false,false,0,false,false,false,false +accounts-sso/gsignond,accounts-sso,C,true,false,false,3,true,true,true,false +monaco/posixeg,monaco,Shell,false,false,false,0,false,false,false,false +carmenbianca/pyparadox,carmenbianca,Python,true,true,false,1,false,true,false,false +queertypes/haskell-fill-in-the-blanks,queertypes,Haskell,false,false,false,0,false,false,false,false +libcdb/libcdb,libcdb,,false,false,false,0,false,false,false,false +noop/Cavelib,noop,Assembly,false,false,false,0,false,false,false,false +patrakov/dcaenc,patrakov,C,false,false,false,0,false,false,false,false +foundry-in-a-box/fib,foundry-in-a-box,Python,false,true,false,0,false,false,false,false +ElDewrito/HaloOnlineTagTool,ElDewrito,C#,false,false,false,0,false,false,false,false +bor-sh-infrastructure/libsaas_gitlab,bor-sh-infrastructure,Python,true,false,false,2,false,true,true,false +jas/libidn2,jas,C,true,false,false,1,false,true,false,false +sev/xolonium,sev,sed,false,false,false,0,false,false,false,false +banjo/Adventure_game,banjo,C++,false,false,false,0,false,false,false,false +SaberMod/android-vendor-sabermod,SaberMod,Makefile,false,false,false,0,false,false,false,false +maxauvy/XG_Project_v2,maxauvy,PHP,false,false,false,0,false,false,false,false +tui/tui,tui,Python,false,false,false,0,false,false,false,false +dobreffandras/ZV_kidolgozas,dobreffandras,TeX,false,false,false,0,false,false,false,false +tmatth/polygnome,tmatth,C++,true,false,false,1,true,false,false,false +gouarin/pylbm,gouarin,JupyterNotebook,false,false,false,0,false,false,false,false +vanTot/game-of-evolution,vanTot,Mathematica,false,false,false,0,false,false,false,false +M3-Final-Project/M3-Home-Automation,M3-Final-Project,C,false,false,false,0,false,false,false,false +francoip/thesis,francoip,TeX,false,false,false,0,false,false,false,false +libnice/libnice,libnice,C,true,false,false,3,true,true,true,false +puzzlement/spam-all-the-links,puzzlement,Python,false,true,false,0,false,false,false,false +ayufan/ruby-getting-started,ayufan,Ruby,true,false,false,1,false,true,false,false +NobleworksSoftware/AndroidInjectorFramework,NobleworksSoftware,Java,false,false,false,0,false,false,false,false +cooperativa-integral-catalana/gestioCI,cooperativa-integral-catalana,Python,false,false,false,0,false,false,false,false +s4m-chef-repositories/gitlab-ci-runner,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false +tgc-dk/pysword,tgc-dk,Python,true,false,false,1,false,true,false,false +collectqt/theblockbot,collectqt,Ruby,false,false,false,0,false,false,false,false +ev/metalwork,ev,JavaScript,false,false,false,0,false,false,false,false +odfplugfest/odfautotests,odfplugfest,XSLT,false,false,false,0,false,false,false,false +odfplugfest/officeshots,odfplugfest,PHP,false,false,false,0,false,false,false,false +localg-host/watchghost,localg-host,JavaScript,true,false,false,1,false,true,false,false +dblessing/chef-apache_tomcat,dblessing,HTML,false,false,false,0,false,false,false,false +yoavst/Mashov,yoavst,Kotlin,false,false,false,0,false,false,false,false +freedroid/freedroid-data-src,freedroid,Shell,false,false,false,0,false,false,false,false +freedroid/freedroid-graphics,freedroid,,false,false,false,0,false,false,false,false +thor12022/HardcoreWither,thor12022,Java,false,false,false,0,false,false,false,false +roth1002/awesome-python,roth1002,Python,false,false,false,0,false,false,false,false +Negan1911/motoflasher,Negan1911,C#,false,false,false,0,false,false,false,false +guystreeter/python-hwloc,guystreeter,Python,false,false,false,0,false,false,false,false +rosarior/django-autoadmin,rosarior,Python,false,true,false,0,false,false,false,false +fppx/code-of-conduct,fppx,,false,false,false,0,false,false,false,false +Chedi/emacs_config,Chedi,EmacsLisp,false,false,false,0,false,false,false,false +ortuagustin/TDPFingerPrint,ortuagustin,Pascal,false,false,false,0,false,false,false,false +kanban/kanban,kanban,JavaScript,false,false,false,0,false,false,false,false +alexeim763/alexeidev.com,alexeim763,CSS,false,false,false,0,false,false,false,false +SynergyMod/Synergy,SynergyMod,C++,false,false,false,0,false,false,false,false +banjo/Adventure_game_Python,banjo,Python,false,false,false,0,false,false,false,false +arnulf/alpine-java8-docker,arnulf,,false,false,false,0,false,false,false,false +darkfirenze/BelajarBoltAsynctas,darkfirenze,Java,false,false,false,0,false,false,false,false +Cepave/OwlPlugin,Cepave,Shell,false,false,false,0,false,false,false,false +mweetman/puppet-modules,mweetman,Puppet,false,false,false,0,false,false,false,false +janezkonc/mcqd,janezkonc,C++,false,false,false,0,false,false,false,false +voxelands/voxelands-assets,voxelands,,false,false,false,0,false,false,false,false +marcoy/git-sparse,marcoy,Haskell,false,false,false,0,false,false,false,false +darkfirenze/BoltOkhttp,darkfirenze,Java,false,false,false,0,false,false,false,false +esr/ifdex,esr,Python,false,false,false,0,false,false,false,false +midget/q2a-translation-es-ES,midget,PHP,false,false,false,0,false,false,false,false +gauraochaudhari/RCCarFall2015Group2,gauraochaudhari,C,false,false,false,0,false,false,false,false +agilob/BadCellDetector,agilob,Java,true,false,false,2,true,true,false,false +dvenkatsagar/reveal-chart,dvenkatsagar,JavaScript,false,false,false,0,false,false,false,false +smc/fonts/manjari,smc,Makefile,true,false,false,3,true,true,false,true +breadmaker/universal-html5-audio,breadmaker,JavaScript,true,false,false,1,false,true,false,false +CloudPrintTech/CloudPrintBackend,CloudPrintTech,Python,false,false,false,0,false,false,false,false +FJW/irul,FJW,C++,false,false,false,0,false,false,false,false +sue445/gitlab_awesome_release,sue445,Ruby,true,false,false,2,false,true,true,false +yongwen/coursera-algo-2015-csharp,yongwen,C#,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo2,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +deguix/top-recode,deguix,C++,false,false,false,0,false,false,false,false +Price-Davies/mr_thomas_leaving_gift,Price-Davies,Python,false,false,false,0,false,false,false,false +dragontek/apscheduler-api,dragontek,HTML,false,false,false,0,false,false,false,false +jangorecki/data.cube,jangorecki,R,true,false,false,4,true,true,false,false +bzg/emacsparis,bzg,,false,false,false,0,false,false,false,false +proaudio/proaudio,proaudio,Shell,false,false,false,0,false,false,false,false +PermaNull/cartographer,PermaNull,C++,false,false,false,0,false,false,false,false +base.io/react-native-httpserver,base.io,JavaScript,false,false,false,0,false,false,false,false +seveas/git_cookbook,seveas,JavaScript,false,false,false,0,false,false,false,false +learning-js/js-calculator,learning-js,CSS,false,false,false,0,false,false,false,false +nicogies/wp_install,nicogies,Shell,false,false,false,0,false,false,false,false +dpizetta/mrsprint,dpizetta,Python,true,false,false,7,true,true,false,true +joolean/r6rs-protobuf,joolean,Scheme,false,false,false,0,false,false,false,false +m-busche/FS15-ModmanagerPro,m-busche,VisualBasic,false,false,false,0,false,false,false,false +Apteryx/XIV,Apteryx,Java,false,false,true,0,false,false,false,false +akarixb/akarixb-dev,akarixb,C++,false,false,false,0,false,false,false,false +mikoff/Y2P-PM,mikoff,C,false,false,false,0,false,false,false,false +mayan-edms/exif,mayan-edms,Python,false,true,false,0,false,false,false,false +ackwell/attunement,ackwell,Lua,true,false,false,1,false,true,false,false +gitlab-org/allocations,gitlab-org,C,true,false,false,1,false,true,false,false +notklaatu/darkoccult,notklaatu,Shell,false,false,false,0,false,false,false,false +robigalia/hello-world,robigalia,Rust,true,false,false,1,false,true,false,false +mayan-edms/document_renaming,mayan-edms,Python,false,false,false,0,false,false,false,false +robigalia/meta,robigalia,HTML,true,false,false,1,false,true,false,false +saikiran1096/gradaudit,saikiran1096,Python,false,false,false,0,false,false,false,false +gitlab-examples/gitlab-examples.gitlab.io,gitlab-examples,CSS,true,false,false,1,false,false,true,false +chillcoding-at-the-beach/chillcoding-at-the-beach.gitlab.io,chillcoding-at-the-beach,JavaScript,true,false,false,4,true,true,false,true +abhinav.prince2012/team4cs243,abhinav.prince2012,Python,false,false,false,0,false,false,false,false +xphnx/icon-request-tool,xphnx,Java,true,false,false,2,true,true,false,false +MagmaTV/magmatv,MagmaTV,Shell,true,false,false,1,false,true,false,false +raisoman/gitlab-sandbox,raisoman,HTML,false,false,false,0,false,false,false,false +hedayat/MeeTeleGram,hedayat,C,false,false,false,0,false,false,false,false +twittner/redis-io,twittner,Haskell,true,false,false,1,false,true,false,false +Rich-Harris/ramjet,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +pycqa/pydocstyle,pycqa,Python,false,true,false,0,false,false,false,false +coliss86/go-gallery,coliss86,JavaScript,false,false,false,0,false,false,false,false +mayan-edms/python_api_client,mayan-edms,Python,false,false,false,0,false,false,false,false +gulajava.mini/BelajarLibraryREST,gulajava.mini,Java,false,false,false,0,false,false,false,false +raulhc/telegram-bot,raulhc,CoffeeScript,false,false,false,0,false,false,false,false +Frankity/Dewricon,Frankity,C#,false,false,false,0,false,false,false,false +AdvProg2016/weekly-exercises,AdvProg2016,Python,true,false,false,1,false,true,false,false +dogtail/dogtail,dogtail,Python,true,false,false,2,false,false,false,false +mtier/openup,mtier,Shell,false,false,false,0,false,false,false,false +jastix/challenges,jastix,Elixir,false,false,false,0,false,false,false,false +silvernode/tux,silvernode,Ruby,false,false,false,0,false,false,false,false +koreader/koreader,koreader,Lua,false,false,false,0,false,false,false,false +Roboe/userscripts,Roboe,CSS,false,false,false,0,false,false,false,false +archlinux-packages-johnth/xen,archlinux-packages-johnth,Shell,false,false,false,0,false,false,false,false +hovedprosjekt/MTakstMobil,hovedprosjekt,JavaScript,false,false,false,0,false,false,false,false +kmacdeV/cm-dejavu-fonts,kmacdeV,,false,false,false,0,false,false,false,false +WorldBank-InnovationsLab/Rural-Road-Accessibility,WorldBank-InnovationsLab,JavaScript,false,false,false,0,false,false,false,false +kollo/X11Basic,kollo,C,false,false,false,0,false,false,false,false +danielkos/hipe,danielkos,C,false,false,false,0,false,false,false,false +Zatherz/scaleinator,Zatherz,Lua,true,false,false,1,false,false,true,false +mikecardwell/parsemail,mikecardwell,Python,false,false,false,0,false,false,false,false +ImaProgrammer/rustboy,ImaProgrammer,Rust,false,false,false,0,false,false,false,false +html-themes/genius,html-themes,HTML,true,false,false,1,false,false,true,false +Mondotheque/RadiatedBook,Mondotheque,Python,false,false,false,0,false,false,false,false +steve-perkins/ResumeFodder-templates,steve-perkins,,false,false,false,0,false,false,false,false +steve-perkins/ResumeFodder-cli,steve-perkins,Go,false,false,false,0,false,false,false,false +projectdlp/scryer,projectdlp,Ruby,false,false,false,0,false,false,false,false +joewholden/distroscript,joewholden,Shell,false,false,false,0,false,false,false,false +european-data-portal/MetadataTransformerService,european-data-portal,Java,true,false,true,2,true,false,true,false +pmpu2016/Project104PM,pmpu2016,C++,false,false,false,0,false,false,false,false +ascendingcreations/Xeris.Source,ascendingcreations,C#,true,false,false,1,true,false,false,false +olegd/rapidee,olegd,Pascal,false,false,false,0,false,false,false,false +ultr/linux,ultr,C,false,false,false,0,false,false,false,false +pages/lektor,pages,HTML,true,false,false,1,false,true,false,false +davidcruzrubio/Quoridor,davidcruzrubio,Java,false,false,false,0,false,false,false,false +passit/passit-marketing,passit,CSS,true,false,false,2,false,true,true,false +alva/forage,alva,C,false,false,false,0,false,false,false,false +cjs/cloudjet,cjs,JavaScript,false,false,false,0,false,false,false,false +Skynism/KHR2FM,Skynism,GDScript,false,false,false,0,false,false,false,false +ehermes/ased3,ehermes,Fortran,false,false,false,0,false,false,false,false +epixelgame/epixel,epixelgame,C,true,false,false,1,true,false,false,false +twittner/cbor-codec,twittner,Rust,true,false,false,3,false,true,true,false +lucadelu/OpenDEM_Generator,lucadelu,Python,false,false,false,0,false,false,false,false +grhegde09/LogAnalyzer,grhegde09,Python,false,false,false,0,false,false,false,false +neucrypt/anonize2,neucrypt,C++,true,false,false,1,true,false,false,false +su-v/inx-exportobjects,su-v,Python,false,false,false,0,false,false,false,false +jameslynnfulop/yamgine,jameslynnfulop,C++,false,false,false,0,false,false,false,false +hacklabor/hacklabor.de,hacklabor,CSS,false,false,false,0,false,false,false,false +IsiSku/SrsBsns,IsiSku,Java,false,false,false,0,false,false,false,false +proinchile/proin-theme,proinchile,PHP,false,false,false,0,false,false,false,false +pushrocks/gulp-function,pushrocks,TypeScript,true,false,false,4,false,true,false,true +grimshield/electron_examples,grimshield,Dart,false,false,false,0,false,false,false,false +lngrhns/shibebot,lngrhns,Kotlin,false,false,false,0,false,false,false,false +LaiCare/laicare,LaiCare,Java,true,false,false,1,false,true,false,false +imahmoodz/vazir-font,imahmoodz,,false,false,false,0,false,false,false,false +ad-si-2016-1/projeto1-grupo5,ad-si-2016-1,Java,false,false,false,0,false,false,false,false +priezz/github2gitlab,priezz,Ruby,false,false,false,0,false,false,false,false +bernardodsanderson/speedy-google-music,bernardodsanderson,CSS,false,false,false,0,false,false,false,false +stackshuttle/blogie,stackshuttle,Elixir,true,false,false,1,false,true,false,false +stavros/esp-boilerplate,stavros,C++,true,false,false,1,false,true,false,false +CaseySoftware/marvel-php,CaseySoftware,PHP,false,false,false,0,false,false,false,false +sflcin/internetshutdowns,sflcin,HTML,true,false,false,1,false,false,true,false +bkurdali/blender-addon-experiments,bkurdali,Python,false,false,false,0,false,false,false,false +JakeLogemann/dotfiles,JakeLogemann,Vimscript,false,false,false,0,false,false,false,false +ablu/bachelorthesis,ablu,TeX,true,false,false,1,false,true,false,false +xipas/gitlab-markdown-cheatsheet,xipas,,false,false,false,0,false,false,false,false +madkoding/deepin_updater,madkoding,Shell,false,false,false,0,false,false,false,false +upita/open-source-snippets,upita,C++,false,false,false,0,false,false,false,false +voretournament/data_voretournament,voretournament,ShaderLab,false,false,false,0,false,false,false,false +slashdeploy/docker-ruby-boilerplate,slashdeploy,Ruby,true,false,false,1,false,true,false,false +mbukatov/pylatest,mbukatov,Python,true,false,false,1,false,true,false,false +dunsanchan/artificialintelligence,dunsanchan,C++,false,false,false,0,false,false,false,false +hyper-expanse/open-source/semantic-release-gitlab-releaser,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +imp/cargo-info,imp,Rust,true,false,false,2,false,true,true,false +CIAvash/App-Football,CIAvash,Perl6,true,false,false,1,false,true,false,false +spice/spice-html5,spice,JavaScript,false,false,false,0,false,false,false,false +vsouza/awesome-ios,vsouza,Swift,false,false,false,0,false,false,false,false +TSnake41/httpBat,TSnake41,C,false,false,false,0,false,false,false,false +wormen/server-panel,wormen,JavaScript,false,false,false,0,false,false,false,false +dto/ecl-android-games-src,dto,CommonLisp,false,false,false,0,false,false,false,false +gepds/ed,gepds,Java,false,false,false,0,false,false,false,false +markpundsack/docker-example,markpundsack,HTML,true,false,false,3,true,true,false,true +jmd-team/JMDMCSystem,jmd-team,PHP,false,false,false,0,false,false,false,false +steve-perkins/MediaGallery-electron,steve-perkins,TypeScript,false,false,false,0,false,false,false,false +t.clastres/racing-xtreme,t.clastres,,false,false,false,0,false,false,false,false +t.clastres/remod-racing,t.clastres,C,true,false,false,1,false,true,false,false +ColdPie/logiwheel2000,ColdPie,C++,false,false,false,0,false,false,false,false +yubaokang/mvpdemo_google,yubaokang,Java,false,false,false,0,false,false,false,false +genomic/learning-resources,genomic,Python,false,false,false,0,false,false,false,false +chrjan/seq-seq-pan,chrjan,Python,false,false,false,0,false,false,false,false +openproducer/openproducer,openproducer,Gherkin,false,false,false,0,false,false,false,false +maidsafe/maidsafe.gitlab.io,maidsafe,HTML,true,false,false,1,false,false,true,false +nieper/rapid-scheme,nieper,Scheme,true,false,false,1,false,true,false,false +DanielFGray/fzf-scripts,DanielFGray,Shell,false,false,false,0,false,false,false,false +jugpf/java-4-kids,jugpf,,false,false,false,0,false,false,false,false +prabuvenkat/dc-issues,prabuvenkat,,false,false,false,0,false,false,false,false +BobSteagall/gcc-builder,BobSteagall,Shell,false,false,false,0,false,false,false,false +Moesh/ide,Moesh,,false,false,false,0,false,false,false,false +SlackBuilds.org/templates,SlackBuilds.org,Shell,false,false,false,0,false,false,false,false +sepehr.valipour/RFCNN,sepehr.valipour,Python,false,false,false,0,false,false,false,false +banjo/Cubical,banjo,C#,false,false,false,0,false,false,false,false +nextcloud/server,nextcloud,PHP,false,false,false,0,false,false,false,false +zaytsevgu/ida-walk,zaytsevgu,Python,false,false,false,0,false,false,false,false +alti2d/server_patches,alti2d,Java,true,false,false,2,true,false,false,true +connorshea/gitlab-stale-issue-bot,connorshea,Ruby,false,false,false,0,false,false,false,false +blacksailer/sailfish-vk,blacksailer,C++,false,false,false,0,false,false,false,false +multiphenics/multiphenics,multiphenics,Python,true,false,false,4,true,true,false,true +Konqi/GNU-Linux_Distribution_Timeline,Konqi,Shell,false,false,false,0,false,false,false,false +emergencyx/Client,emergencyx,C#,false,false,false,0,false,false,false,false +thelabnyc/django-logpipe,thelabnyc,Python,true,true,false,1,false,true,false,false +DmitryLyakh/GFC,DmitryLyakh,Fortran,false,false,false,0,false,false,false,false +gitlab-org/end-user-training-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false +samcns/uzu,samcns,Perl6,true,false,false,1,false,true,false,false +FrontlineA3/missions,FrontlineA3,C++,false,false,false,0,false,false,false,false +stavros/espota-server,stavros,Rust,true,false,false,1,true,false,false,false +ArmaOnUnix/armaonunix.gitlab.io,ArmaOnUnix,HTML,true,false,false,1,false,false,true,false +kennross/java-c2-1,kennross,JavaScript,false,false,false,0,false,false,false,false +JaMeZ-B/LaTeX-WWU,JaMeZ-B,TeX,true,false,false,1,true,false,false,false +fitters/xfitter,fitters,Fortran,true,false,false,2,false,false,false,false +ibiscybernetics/sighte,ibiscybernetics,C,false,false,false,0,false,false,false,false +gitlab-examples/velociraptor,gitlab-examples,HTML,true,false,false,3,true,true,false,true +saomc/saoui-1.10.2,saomc,HTML,true,false,false,1,false,true,false,false +joanq/DAM-M2-BasesDeDades,joanq,PLpgSQL,false,false,false,0,false,false,false,false +xalri/libalt,xalri,Rust,false,false,false,0,false,false,false,false +foodsharing-dev/images,foodsharing-dev,Shell,true,false,false,1,false,true,false,false +hackebrot/tweets,hackebrot,Go,false,false,false,0,false,false,false,false +vecturagames/passwordgenerator,vecturagames,Java,false,false,false,0,false,false,false,false +Rich-Harris/pathologist,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false +skyzohkey/PwassonEngine,skyzohkey,JavaScript,true,false,false,1,false,true,false,false +janispritzkau/node-rcon-client,janispritzkau,TypeScript,true,false,false,1,false,true,false,false +php-developer/lambda,php-developer,PHP,false,false,false,0,false,false,false,false +C0rn3j/C0rn3j,C0rn3j,Shell,false,false,false,0,false,false,false,false +fgprodigal/RayUI,fgprodigal,Lua,false,false,false,0,false,false,false,false +sofreeus/sfs-method,sofreeus,HTML,true,false,false,1,false,true,false,false +Rowedahelicon/CkSurfStatsPage,Rowedahelicon,CSS,false,false,false,0,false,false,false,false +minilessons/ml-webapp,minilessons,Java,false,false,true,0,false,false,false,false +borisjoffe/btc,borisjoffe,Python,false,true,false,0,false,false,false,false +puppet-br/pcp,puppet-br,Ruby,false,false,false,0,false,false,false,false +mikefromit/sir-bot-a-lot,mikefromit,Python,true,true,false,2,true,true,false,false +agb32/dasp,agb32,Python,false,false,false,0,false,false,false,false +sd1-ec-2016-2/projeto1,sd1-ec-2016-2,JavaScript,false,false,false,0,false,false,false,false +imp/rustdocker,imp,Shell,true,false,false,6,true,true,false,false +Codeaurora/platform_frameworks_av,Codeaurora,C++,false,false,false,0,false,false,false,false +pusspounder/CapMyFreeCamsNodeJS,pusspounder,JavaScript,false,false,false,0,false,false,false,false +LIONant/LIONV2,LIONant,C++,false,false,false,0,false,false,false,false +digested/node-digest,digested,JavaScript,true,false,false,5,true,true,true,true +creato/pub-sub,creato,Rust,true,false,false,1,false,true,false,false +wolfenstein-legacy/rtcw-assets,wolfenstein-legacy,ShaderLab,false,false,false,0,false,false,false,false +sunny256/cwwav,sunny256,C,false,false,false,0,false,false,false,false +noosfero-themes/angular-theme,noosfero-themes,TypeScript,true,false,false,2,true,true,false,false +bitfireAT/cert4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false +drutopia/drutopia_article,drutopia,,false,false,false,0,false,false,false,false +e62Lab/e62numcodes,e62Lab,Mathematica,true,false,false,1,false,true,false,false +vmorenomarin/Legacy,vmorenomarin,CMake,false,false,false,0,false,false,false,false +buildfunthings/trivia,buildfunthings,Clojure,true,false,false,1,false,true,false,false +anden3/Craftmine,anden3,C++,true,false,false,1,false,true,false,false +raymondhs/char-rnn-truecase,raymondhs,Lua,false,false,false,0,false,false,false,false +iwisich/git_workflow_example,iwisich,,false,false,false,0,false,false,false,false +HerculesWS/Hercules,HerculesWS,C,true,false,false,6,false,true,false,false +davidism/idea-party,davidism,Python,false,false,false,0,false,false,false,false +flossmanuals/fm_en_splash,flossmanuals,HTML,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-prometheus,gitlab-cookbooks,Ruby,true,false,false,3,false,true,false,true +uriel_hedz/ecommerce-progress,uriel_hedz,PHP,false,false,false,0,false,false,false,false +simonbreiter/progc-lab,simonbreiter,HTML,false,false,false,0,false,false,false,false +narcotek/CPUTemp,narcotek,Java,false,false,false,0,false,false,false,false +ilari_l/btls,ilari_l,Objective-C,false,false,false,0,false,false,false,false +nanodeath/my-paradise,nanodeath,Kotlin,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab-haproxy,gitlab-cookbooks,HTML,true,false,false,2,false,false,false,true +ttc/data-privacy-training,ttc,,false,false,false,0,false,false,false,false +barrel-db/Infrastructure/barrel-www,barrel-db,HTML,false,false,false,0,false,false,false,false +mudassir/youtube-cacher,mudassir,Java,false,false,false,0,false,false,false,false +beto/netswithlinux,beto,Python,false,false,false,0,false,false,false,false +silent.correspondent/commit-msg,silent.correspondent,Shell,false,false,false,0,false,false,false,false +weburger/angular-material-weburger,weburger,JavaScript,true,false,false,1,false,true,false,false +poopsquare/rockbooks,poopsquare,Elixir,true,false,false,1,false,true,false,false +wski/SimpleState,wski,JavaScript,false,false,false,0,false,false,false,false +tractatus/tractatus.gitlab.io,tractatus,JavaScript,true,false,false,1,false,true,false,false +xmltv-se/stuff,xmltv-se,,false,false,false,0,false,false,false,false +osas/community-cage-infra-ansible,osas,Python,true,false,false,1,false,true,false,false +resume/resume.gitlab.io,resume,JavaScript,true,false,false,1,false,false,true,false +define-private-public/blit,define-private-public,C++,false,false,false,0,false,false,false,false +distortia/elixir-cucumber-browser-automation-demo,distortia,Elixir,false,false,false,0,false,false,false,false +open_nsfw/open_nsfw.gitlab.io,open_nsfw,HTML,true,false,false,1,false,true,false,false +benhorst/bmoria,benhorst,C,false,false,false,0,false,false,false,false +HiPhish/info.vim,HiPhish,Vimscript,false,false,false,0,false,false,false,false +rudolfo/instaelm,rudolfo,JavaScript,false,false,false,0,false,false,false,false +barrel-db/match_trie,barrel-db,Erlang,true,false,false,1,false,true,false,false +erme2/boxstatus,erme2,PHP,false,false,false,0,false,false,false,false +teknight/moodle-enhancer,teknight,JavaScript,false,false,false,0,false,false,false,false +marwi/unity-utils,marwi,C#,false,false,false,0,false,false,false,false +anuejn/browser,anuejn,HTML,false,false,false,0,false,false,false,false +openUnifaceCommunity/basics,openUnifaceCommunity,,false,false,false,0,false,false,false,false +TranscendenceGN/rocket,TranscendenceGN,HTML,false,false,false,0,false,false,false,false +uptechlabs/updevtools,uptechlabs,PHP,false,false,false,0,false,false,false,false +clusterpress/clusterpress,clusterpress,PHP,false,false,false,0,false,false,false,false +packaging/nextcloud-client,packaging,Shell,true,false,false,3,false,false,false,false +eric.shultz/Game-Of-Life-T-SQL,eric.shultz,PLpgSQL,false,false,false,0,false,false,false,false +FraME-projects/PyFraME,FraME-projects,Python,true,true,false,3,false,true,false,false +morph027/x2go-mate-docker,morph027,Shell,true,false,false,2,false,true,false,false +victor.trucco/Multicore,victor.trucco,VHDL,false,false,false,0,false,false,false,false +kellyjandrews/dotfiles,kellyjandrews,JavaScript,false,false,false,0,false,false,false,false +tikiki/discord_bot,tikiki,Ruby,false,false,false,0,false,false,false,false +Draivin/adventure-drops,Draivin,JavaScript,false,false,false,0,false,false,false,false +interscity/interscity-platform/dev-env,interscity,Shell,false,false,false,0,false,false,false,false +BackStopThemes/ThemeCoreV2,BackStopThemes,CSS,true,false,false,1,false,false,false,true +gavinmcg/russell,gavinmcg,Ruby,false,false,false,0,false,false,false,false +rday/mk.slab.local,rday,Shell,false,false,false,0,false,false,false,false +staywoke/catalyst,staywoke,Ruby,true,false,false,1,false,false,true,false +lsilvest/ztsdb,lsilvest,C++,true,false,false,1,true,false,false,false +zaytsevgu/GoUtils2.0,zaytsevgu,Python,false,false,false,0,false,false,false,false +thecyberd3m0n/ui-rustreamer,thecyberd3m0n,JavaScript,false,false,false,0,false,false,false,false +UnderWaterRugbyHorn/underwaterrugbyhorn,UnderWaterRugbyHorn,JavaScript,true,false,false,1,false,true,false,false +easwareapps/BARIA,easwareapps,Java,false,false,false,0,false,false,false,false +jeongyoonlee/allstate-claims-severity,jeongyoonlee,Python,false,false,false,0,false,false,false,false +distilled/distilled,distilled,JavaScript,false,false,false,0,false,false,false,false +BackStopThemes/GeneralIssuesForum,BackStopThemes,,false,false,false,0,false,false,false,false +ArjunShankar/angular2-template-project,ArjunShankar,TypeScript,true,false,false,1,true,false,false,false +godotengine/godot-demo-projects,godotengine,GDScript,false,false,false,0,false,false,false,false +siasar-project/etl,siasar-project,JavaScript,false,false,false,0,false,false,false,false +smecotic/ptrf-historico,smecotic,JavaScript,false,false,false,0,false,false,false,false +bruno.p.reis/nosso-jardim,bruno.p.reis,PHP,false,false,false,0,false,false,false,false +raymondhs/statnlp-sp-neural,raymondhs,Java,false,false,true,0,false,false,false,false +TranscendenceGN/Monolith,TranscendenceGN,,false,false,false,0,false,false,false,false +theunixman/liblawless,theunixman,Haskell,false,false,false,0,false,false,false,false +z-a-k/win10iconTools,z-a-k,C#,false,false,false,0,false,false,false,false +toreltwiddler/CanIMogIt,toreltwiddler,Lua,false,false,false,0,false,false,false,false +Fodoj/packt-terraform-app-module,Fodoj,Ruby,false,false,false,0,false,false,false,false +sat-metalab/shmdata,sat-metalab,C++,true,false,false,2,false,true,false,false +sat-metalab/SATIE-sc,sat-metalab,SuperCollider,false,false,false,0,false,false,false,false +thecyberd3m0n/Ruflix,thecyberd3m0n,JavaScript,false,false,false,0,false,false,false,false +littlefork/littlefork-core,littlefork,JavaScript,false,false,false,0,false,false,false,false +jvanhorenbeke/radius-cycling,jvanhorenbeke,JavaScript,false,false,false,0,false,false,false,false +idlemoor/dusk,idlemoor,Shell,false,false,false,0,false,false,false,false +kollo/Tschernobyl,kollo,Java,false,false,false,0,false,false,false,false +tensors/genten,tensors,C++,false,false,false,0,false,false,false,false +Bons/download-files-laravel5,Bons,PHP,false,false,false,0,false,false,false,false +gitlab-cog/gitlab-admin,gitlab-cog,Ruby,true,false,false,2,false,true,true,false +gitlab-examples/openshift-deploy,gitlab-examples,Shell,true,false,false,1,false,false,true,false +alan8/google-cloud-auto-snapshot,alan8,Shell,false,false,false,0,false,false,false,false +parseme/sharedtask-data,parseme,Python,false,false,false,0,false,false,false,false +FlexDiscordBot/Flex,FlexDiscordBot,JavaScript,false,false,false,0,false,false,false,false +uhh_templates/beamer,uhh_templates,TeX,false,false,false,0,false,false,false,false +mehranrasulian/laravel-sample,mehranrasulian,PHP,true,false,false,2,false,true,true,false +axet/android-sms-gate,axet,JavaScript,true,false,false,1,false,false,true,false +forrestab/dotnet-gitlab-ci,forrestab,C#,true,false,false,2,true,true,false,false +mozbugbox/videoshake,mozbugbox,Python,false,false,false,0,false,false,false,false +Bons/laravel5.3_dynamic_dropdown,Bons,PHP,false,false,false,0,false,false,false,false +JanGroot/spring-admin-demo,JanGroot,Java,false,false,true,0,false,false,false,false +jkoike/Discord.hs,jkoike,Haskell,false,false,false,0,false,false,false,false +ChrisTaylorRocks/Webroot_Unity_API_Powershell_Module,ChrisTaylorRocks,PowerShell,false,false,false,0,false,false,false,false +mvgames/ataque_zombie,mvgames,C,true,false,false,2,true,true,false,false +zefiris/tenhou-client,zefiris,JavaScript,true,false,false,1,false,true,false,false +define-private-public/random-art-Nim,define-private-public,Nim,false,false,false,0,false,false,false,false +sashimiapp-public/Carpaccio,sashimiapp-public,Swift,false,false,false,0,false,false,false,false +Dlazzy/bus-station-rp,Dlazzy,C#,false,false,false,0,false,false,false,false +nick.thomas/gitlab-go-training,nick.thomas,Makefile,false,false,false,0,false,false,false,false +yongqiang/project-examples,yongqiang,C#,false,false,false,0,false,false,false,false +efficient_shading/clustered_forward_demo,efficient_shading,C,false,false,false,0,false,false,false,false +finding-ray/antikythera,finding-ray,Python,true,true,false,4,false,true,true,false +dmsussman/cellGPU,dmsussman,C++,false,false,false,0,false,false,false,false +tvaughan/docker-flask-starterkit,tvaughan,Python,true,false,false,3,false,true,false,false +jlack/rdl,jlack,C++,true,false,false,3,false,true,false,false +fatihacet/fatihacet.gitlab.io,fatihacet,CSS,true,false,false,1,false,true,false,false +jddantes/the-code-project,jddantes,C++,false,false,false,0,false,false,false,false +oly-exams/exam_tools,oly-exams,Python,true,true,false,2,true,false,false,true +9tripod/x3399_marshmallow,9tripod,,false,false,false,0,false,false,false,false +partylab/queue-dj,partylab,Vue,true,false,false,2,false,true,false,false +freesoftware/keepassxc,freesoftware,C++,false,false,false,0,false,false,false,false +palmapps/continuous-delivery,palmapps,,false,false,false,0,false,false,false,false +razcore/rzv-krita-brushkit,razcore,,false,false,false,0,false,false,false,false +yiisoft/yii2,yiisoft,PHP,true,false,false,2,false,true,false,false +ContinuousEvolution/continuous-evolution,ContinuousEvolution,Go,true,false,false,5,true,true,false,false +gitlab-examples/minimal-ruby-app,gitlab-examples,Ruby,false,false,false,0,false,false,false,false +jmd-team/McShop-v4,jmd-team,PHP,false,false,false,0,false,false,false,false +Juancesar123/latihanangular,Juancesar123,JavaScript,false,false,false,0,false,false,false,false +CSUI-AdvProg-2017/lab-exercises,CSUI-AdvProg-2017,Python,true,true,false,2,true,true,false,false +martinpham/TouchHome,martinpham,Logos,false,false,false,0,false,false,false,false +mechaxl/dds-rs,mechaxl,Rust,true,false,false,1,false,true,false,false +tahahawa/discord-markov-bot,tahahawa,Rust,true,false,false,2,true,false,false,false +absolutejam-ansible/ansible_inventory_ad,absolutejam-ansible,Python,false,false,false,0,false,false,false,false +nvidia/opencl,nvidia,,false,false,false,0,false,false,false,false +julrich/QtPromise,julrich,C++,true,false,false,3,true,true,true,false +argit/hello-matrix-net,argit,PHP,false,false,false,0,false,false,false,false +jamk-it-tuntikirjaus/esatime,jamk-it-tuntikirjaus,JavaScript,false,false,false,0,false,false,false,false +picter/labeljack,picter,TypeScript,true,false,false,1,false,true,false,false +danielnord/gitlabTaskBoard,danielnord,JavaScript,false,false,false,0,false,false,false,false +indicproject/gsoc-2017,indicproject,,false,false,false,0,false,false,false,false +AndreasK/unpopular-music-player,AndreasK,Java,false,false,false,0,false,false,false,false +jasonmm/baseball-stats-db,jasonmm,PLpgSQL,true,false,false,1,false,true,false,false +PPL2017csui/PPLA4,PPL2017csui,JavaScript,true,false,false,2,false,true,true,false +PPL2017csui/PPLD1,PPL2017csui,Ruby,true,false,false,1,false,true,false,false +PPL2017csui/PPLB2,PPL2017csui,Java,true,false,false,3,true,true,false,false +1052-Algorithm/1052-Algorithm-Homework,1052-Algorithm,Java,false,false,false,0,false,false,false,false +pyfml/prepare,pyfml,,false,false,false,0,false,false,false,false +to1ne/org-gitlab,to1ne,EmacsLisp,true,false,false,1,false,true,false,false +PPL2017csui/PPLC1,PPL2017csui,,false,false,false,0,false,false,false,false +PPL2017csui/PPLC3,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false +bjk-gitlab/ansible-gitlab-ce,bjk-gitlab,,false,false,false,0,false,false,false,false +Starcarr/android-coroutines,Starcarr,Kotlin,false,false,false,0,false,false,false,false +PPL2017csui/PPLB1,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false +winniehell/file-name-linter,winniehell,JavaScript,true,false,false,2,false,true,false,false +ChaiBapchya/ETS-material,ChaiBapchya,HTML,false,false,false,0,false,false,false,false +CS-Translation/handling-overload,CS-Translation,,false,false,false,0,false,false,false,false +piotrva/stm32-composite-hid-cdc,piotrva,C,false,false,false,0,false,false,false,false +Wandersocke/Liederbuch,Wandersocke,TeX,false,false,false,0,false,false,false,false +taggart/lockdown,taggart,Shell,false,false,false,0,false,false,false,false +penkit/penkit,penkit,Ruby,true,false,false,2,true,true,false,false +zhakenov.askar/ServiceLesson,zhakenov.askar,Java,false,false,false,0,false,false,false,false +chef-platform/prometheus-platform,chef-platform,Ruby,false,false,false,0,false,false,false,false +fatihacet/turkcekaynaklar-com,fatihacet,CSS,true,false,false,1,false,false,true,false +sarneaud/xanthe,sarneaud,D,false,false,false,0,false,false,false,false +benkoo/SDCT2017Spring,benkoo,Mathematica,false,false,false,0,false,false,false,false +FiveYellowMice/horobot2,FiveYellowMice,Ruby,false,false,false,0,false,false,false,false +z88/ozvm,z88,Java,false,false,false,0,false,false,false,false +moviuro/moviuro.bin,moviuro,Shell,false,false,false,0,false,false,false,false +dhuwangcong/ACM_SCL,dhuwangcong,C++,false,false,false,0,false,false,false,false +zetok/awesome-tox,zetok,,false,false,false,0,false,false,false,false +agent_xcom/phalcon-rest-tutorial,agent_xcom,PHP,false,false,false,0,false,false,false,false +ducohosting/whmcs-enom-updater,ducohosting,PHP,false,false,false,0,false,false,false,false +nanotrix/ntx,nanotrix,C#,false,false,false,0,false,false,false,false +14520612/WinApp/_Book_coffee_management,14520612,C#,false,false,false,0,false,false,false,false +eval/total_recall,eval,Ruby,true,false,false,1,false,true,false,false +HardlyDifficult/About_CSharp_7,HardlyDifficult,C#,false,false,false,0,false,false,false,false +checkmein2/checkmein2-ui,checkmein2,JavaScript,true,false,false,1,false,false,false,false +albertodeluca/qepanet,albertodeluca,Python,false,false,false,0,false,false,false,false +noppo/ember-quill,noppo,JavaScript,true,false,false,1,false,true,false,false +wapdc/OpenData-Program,wapdc,,false,false,false,0,false,false,false,false +Dendrowen/examentraining,Dendrowen,PHP,false,false,false,0,false,false,false,false +C0rn3j/MCModUpdater,C0rn3j,Python,false,false,false,0,false,false,false,false +lsilvest/rztsdb,lsilvest,C++,false,false,false,0,false,false,false,false +FreifunkChemnitz/site-ffc,FreifunkChemnitz,Makefile,false,false,false,0,false,false,false,false +keithasaurus/simple_html,keithasaurus,Python,false,false,false,0,false,false,false,false +Isleward/mapper,Isleward,JavaScript,false,false,false,0,false,false,false,false +tombrossman/TwitterDeleteMost,tombrossman,Ruby,false,false,false,0,false,false,false,false +Patrick-Fernandes/TCC-CHATBOT,Patrick-Fernandes,PHP,false,false,false,0,false,false,false,false +Niboo/niboo-community,Niboo,Python,false,false,false,0,false,false,false,false +aldroyd/not-a-boring-background,aldroyd,CSS,false,false,false,0,false,false,false,false +ksator/network-infrastructure-as-code,ksator,,false,false,false,0,false,false,false,false +haway-test/gitlab-class,haway-test,HTML,true,false,false,3,true,true,true,false +Harble/Tanji,Harble,C#,false,false,false,0,false,false,false,false +looselytyped/nfjs-angular-demo,looselytyped,JavaScript,false,false,false,0,false,false,false,false +dustyweb/gush,dustyweb,Scheme,false,false,false,0,false,false,false,false +gosh-community/single-pixel-camera,gosh-community,,false,false,false,0,false,false,false,false +anarcat/ecdysis,anarcat,Python,true,false,false,1,false,true,false,false +adqm/tako,adqm,Python,false,false,false,0,false,false,false,false +makeorg/platform/core-api,makeorg,Scala,false,false,false,0,false,false,false,false +kataik/EnvironmentTracker,kataik,C#,true,false,false,5,true,true,false,true +escargot-chat/site,escargot-chat,HTML,false,false,false,0,false,false,false,false +tangming2005/STAR_htseq_RNAseq_pipeline,tangming2005,Python,false,false,false,0,false,false,false,false +GitLabRGI/nsg/gpep,GitLabRGI,JavaScript,true,false,false,4,false,false,false,false +makeorg/platform/main-front,makeorg,Scala,false,false,false,0,false,false,false,false +Keksas/eslint-config-wolf,Keksas,,false,false,false,0,false,false,false,false +JJNorcal/sp-pvo-con,JJNorcal,JavaScript,false,false,false,0,false,false,false,false +afolson/gitlab-ci-training,afolson,PHP,false,false,false,0,false,false,false,false +BartMassey/woodpieces,BartMassey,Rust,false,false,false,0,false,false,false,false +APACHE-THE-THIRD/TIM,APACHE-THE-THIRD,Java,false,false,false,0,false,false,false,false +dotnetthoughts/MVCApp,dotnetthoughts,C#,true,false,false,1,false,true,false,false +3RaGaming/Web_Control,3RaGaming,JavaScript,false,false,false,0,false,false,false,false +csoriano/GtkDApp,csoriano,Meson,false,false,false,0,false,false,false,false +EDteam/EDcampBogota2017,EDteam,PHP,false,false,false,0,false,false,false,false +oer/OS,oer,TeX,true,false,false,1,false,false,true,false +keerthik/dicestorm,keerthik,JavaScript,true,false,false,1,false,true,false,false +ac-marcel/kms-encryption-tool,ac-marcel,JavaScript,false,false,false,0,false,false,false,false +Gitorials/gitorial-1,Gitorials,Clojure,false,false,false,0,false,false,false,false +grabl/grabl,grabl,Groovy,true,false,false,3,true,true,true,false +unseenshadow2/Operation_Red_Rhino,unseenshadow2,C++,false,false,false,0,false,false,false,false +RobertZenz/x-session-selector,RobertZenz,C,false,false,false,0,false,false,false,false +0x520x430x32/TutErstesSpigotPlugin,0x520x430x32,Java,false,false,false,0,false,false,false,false +pgjones/quart-benchmark,pgjones,Python,false,true,false,0,false,false,false,false +altifalante/altifalante,altifalante,JavaScript,true,false,false,1,false,true,false,false +danielromeroauk/EDinero,danielromeroauk,PHP,false,false,false,0,false,false,false,false +madresistor/diy-vt100-hardware,madresistor,OpenSCAD,false,false,false,0,false,false,false,false +EAVISE/darknet,EAVISE,C,false,false,false,0,false,false,false,false +metasyntactical/composer-plugin-license-check,metasyntactical,PHP,true,false,false,1,false,true,false,false +c-sky/buildroot,c-sky,Makefile,true,false,false,7,false,true,false,false +dimachuev/qt5-cryptopro-csp,dimachuev,C++,false,false,false,0,false,false,false,false +JakubOrs/EurovisionSongContest2016,JakubOrs,R,false,false,false,0,false,false,false,false +mondwan/py-use_mock,mondwan,Python,true,true,false,2,false,true,true,false +yoosofan_course/Farsi_gitlab_guide,yoosofan_course,CSS,false,false,false,0,false,false,false,false +humanitiesNerd/guile-freexl,humanitiesNerd,Scheme,false,false,false,0,false,false,false,false +atorresm/NASAImages,atorresm,Java,true,false,false,1,true,false,false,false +cdesaintleger/dockerlamp,cdesaintleger,Shell,false,false,false,0,false,false,false,false +documentarian/documentarian,documentarian,PowerShell,true,false,false,3,true,true,true,false +ZnDevelopment/Zora-no-Densha,ZnDevelopment,Java,false,false,false,0,false,false,false,false +sat-metalab/EditionInSitu,sat-metalab,Python,false,false,false,0,false,false,false,false +openwallet/openwallet-android,openwallet,Java,false,false,false,0,false,false,false,false +hyper-expanse/open-source/npm-publish-git-tag,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +N3K/live-ballz,N3K,C#,false,false,false,0,false,false,false,false +Partanen/MUTA,Partanen,C,false,false,false,0,false,false,false,false +NERDYLOT/linuxjourney,NERDYLOT,,false,false,false,0,false,false,false,false +inkscape/inkscape-ci-docker,inkscape,,true,false,false,1,true,false,false,false +lolPants/stream-role-bot,lolPants,JavaScript,true,false,false,3,true,true,false,true +lyndsysimon/roguelike-nim,lyndsysimon,Nim,false,false,false,0,false,false,false,false +gmorenz/coop,gmorenz,Rust,false,false,false,0,false,false,false,false +recalbox/ops/nodebb,recalbox,Shell,true,false,false,1,true,false,false,false +forpdfsending/ESP8266-Wifi-Repeater,forpdfsending,C,false,false,false,0,false,false,false,false +edomo/add-ons/dashboard,edomo,Vue,false,false,false,0,false,false,false,false +hyperion-gray/googlespider,hyperion-gray,Python,false,false,false,0,false,false,false,false +gitlab-cookbooks/gitlab_openvpn,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true +CasperVector/decryst,CasperVector,C,false,false,false,0,false,false,false,false +MadLittleMods/grep-gitlab-pipelines,MadLittleMods,JavaScript,false,false,false,0,false,false,false,false +fortelabs/evernote-random,fortelabs,AppleScript,false,false,false,0,false,false,false,false +sat-metalab/SATIE,sat-metalab,SuperCollider,true,false,false,1,false,true,false,false +ercanersoy/FreeDOS-TUI-Shell,ercanersoy,C++,false,false,false,0,false,false,false,false +mdik/ansible-meta,mdik,,false,false,false,0,false,false,false,false +freifunkks/site-ffks,freifunkks,Makefile,false,false,false,0,false,false,false,false +HiPhish/MsgPack.rkt,HiPhish,Racket,false,false,false,0,false,false,false,false +aaronkho/GPR1D,aaronkho,Python,true,false,false,1,false,true,false,false +nicstrisc/B-COSFIRE-MATLAB,nicstrisc,Matlab,false,false,false,0,false,false,false,false +paveltizek/gitlab-api,paveltizek,PHP,true,false,false,3,false,true,true,true +Orange-OpenSource/gitlab-buildpkg-tools,Orange-OpenSource,Shell,true,false,false,4,true,true,true,false +SEMERU-Code-Public/Android/Mutation/MDroidPlus,SEMERU-Code-Public,Java,true,false,true,2,true,true,false,false +mdymel/aspdocker,mdymel,C#,true,false,false,1,true,false,false,false +dekkoproject/ubuntu-ui-plugin,dekkoproject,QML,false,false,false,0,false,false,false,false +exitlive/stripe-dart,exitlive,Dart,false,false,false,0,false,false,false,false +lmgottwald/CS-4Dflow-recon,lmgottwald,Matlab,false,false,false,0,false,false,false,false +adrian.kozlowski/Servlet_tutorial,adrian.kozlowski,Java,false,false,true,0,false,false,false,false +mpv-ipc/ncmpvc,mpv-ipc,Rust,false,false,false,0,false,false,false,false +strandgames/brahman,strandgames,C,false,false,false,0,false,false,false,false +plut0n/yawc,plut0n,Shell,false,false,false,0,false,false,false,false +AleksandrSl/cwl-plugin,AleksandrSl,Kotlin,false,false,false,0,false,false,false,false +cloud-belt/gitlab-stack,cloud-belt,Shell,false,false,false,0,false,false,false,false +gitlab-com/gitlab-dns,gitlab-com,,true,false,false,2,false,false,true,false +WhileTeam/LDonate/ldonate-web-script,WhileTeam,JavaScript,false,false,false,0,false,false,false,false +chusiang/coscup2017-cd-demo,chusiang,HTML,true,false,false,4,true,true,true,true +Renascenca/dados,Renascenca,HTML,false,false,false,0,false,false,false,false +rex-yue-wu/ISI-PPT-Text-Detector,rex-yue-wu,JupyterNotebook,false,false,false,0,false,false,false,false +tomleo/SlackFileCleanup,tomleo,Python,false,true,false,0,false,false,false,false +kaivan.alimohammadi/wordpress-experts--01-practises,kaivan.alimohammadi,PHP,false,false,false,0,false,false,false,false +brunobriante/dotfiles,brunobriante,Shell,false,false,false,0,false,false,false,false +dwarf-fortress/taffer,dwarf-fortress,,false,false,false,0,false,false,false,false +gitlab-org/gitter/gitter-markdown-processor,gitlab-org,JavaScript,true,false,false,2,true,true,false,false +ITBio3/agroecologia,ITBio3,HTML,false,false,false,0,false,false,false,false +hectorm/hblock,hectorm,Shell,true,false,false,4,true,false,true,false +onecool/3301-public,onecool,Python,false,false,false,0,false,false,false,false +UnrealSCPFoundation/SCPRedux,UnrealSCPFoundation,C++,false,false,false,0,false,false,false,false +samthursfield/tagcloud,samthursfield,Python,true,false,false,1,false,true,false,false +hathi-social/hathi-server,hathi-social,Go,true,false,false,1,true,false,false,false +hathi-social/hathi-client,hathi-social,Python,false,false,false,0,false,false,false,false +DevOpsTaiwan/coscup2017-workshop-101,DevOpsTaiwan,PHP,false,false,false,0,false,false,false,false +qaclana/qaclana,qaclana,Go,true,false,false,3,true,false,false,true +librespacefoundation/satnogs/satnogs-db,librespacefoundation,Python,true,true,false,5,true,true,true,false +leoisl/dbgwas,leoisl,JavaScript,false,false,false,0,false,false,false,false +CartesianDuelist/CodeOfCoding,CartesianDuelist,,false,false,false,0,false,false,false,false +cirelramos/oh-my-zsh,cirelramos,Shell,false,false,false,0,false,false,false,false +fortelabs/random-note-universal,fortelabs,JavaScript,false,false,false,0,false,false,false,false +joostlinux/hosts-file,joostlinux,,false,false,false,0,false,false,false,false +Dolori/Dolori,Dolori,C++,true,false,false,1,true,false,false,false +sidi762/FG777CDUimprovementProject,sidi762,,false,false,false,0,false,false,false,false +rebolek/red-styles,rebolek,Red,false,false,false,0,false,false,false,false +enjoyingfoss/om,enjoyingfoss,Kotlin,false,false,false,0,false,false,false,false +juanitobananas/pocket-up,juanitobananas,Java,false,false,false,0,false,false,false,false +nuntius35/wps,nuntius35,Java,true,false,false,1,true,false,false,false +chaucha/archive/chauchera-old,chaucha,C++,false,false,false,0,false,false,false,false +l5rp/ragemp,l5rp,JavaScript,false,false,false,0,false,false,false,false +HiPhish/neovim.rkt,HiPhish,Racket,false,false,false,0,false,false,false,false +skosh/falcon-helpers,skosh,Python,true,false,false,1,false,true,false,false +opensourcediversity/opensourcediversity.org,opensourcediversity,HTML,true,false,false,1,false,false,true,false +atlasds/ds2017,atlasds,Java,false,false,false,0,false,false,false,false +NSXPowerOps/NSX-PowerOps,NSXPowerOps,PowerShell,false,false,false,0,false,false,false,false +dalton/lsdalton,dalton,Fortran,true,false,false,1,false,true,false,false +camillebucatcat/bulma-templates,camillebucatcat,CSS,true,false,false,1,false,false,true,false +Chips4Makers/Retro-uC,Chips4Makers,Verilog,false,false,false,0,false,false,false,false +Inforge/XenForge/ItalianTranslation,Inforge,,false,false,false,0,false,false,false,false +dbohdan/racket-vs-the-world,dbohdan,Racket,false,false,false,0,false,false,false,false +pekkis/react-webfont-loader,pekkis,JavaScript,false,false,false,0,false,false,false,false +OldXzlash/simple-royale,OldXzlash,JavaScript,false,false,false,0,false,false,false,false +bkoch53/Powershell-BattleShip,bkoch53,PowerShell,false,false,false,0,false,false,false,false +BastienGo/Gregori,BastienGo,Java,false,false,false,0,false,false,false,false +prophessor/DRRP,prophessor,HTML,false,false,false,0,false,false,false,false +seancl/screeps-autobahn,seancl,JavaScript,true,false,false,1,false,true,false,false +gitlab-org/gitlab-ci-multi-runner-backup,gitlab-org,Go,true,false,false,6,true,true,false,true +CSUI-ITProject-2017/KI2/Codebase,CSUI-ITProject-2017,Ruby,true,false,false,2,false,true,true,false +M1106/projet,M1106,,false,false,false,0,false,false,false,false +SimonHTausch/LiveKraken,SimonHTausch,C++,false,false,false,0,false,false,false,false +yunity/ukuvota-quasar,yunity,Vue,true,false,false,5,true,true,false,true +eigan/changelog,eigan,PHP,true,false,false,1,false,true,false,false +aterlamia/ci-wallboard,aterlamia,TypeScript,true,false,false,1,false,false,true,false +1985Alternativo/tallermegadrive,1985Alternativo,HTML,false,false,false,0,false,false,false,false +fommil/dotfiles,fommil,EmacsLisp,false,false,false,0,false,false,false,false +gitlab-org/gitlab-styles,gitlab-org,Ruby,true,false,false,1,false,true,false,false +ESC/containers,ESC,Roff,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-rotator-controller,librespacefoundation,,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/gr-satnogs,librespacefoundation,C++,true,false,false,1,false,true,false,false +alaneparisot/io-news,alaneparisot,TypeScript,false,false,false,0,false,false,false,false +imachug/gitcenter,imachug,CSS,false,false,false,0,false,false,false,false +raspberry-pi-cast/cast-addon-firefox,raspberry-pi-cast,JavaScript,false,false,false,0,false,false,false,false +acostaj/QSMbox,acostaj,Matlab,false,false,false,0,false,false,false,false +cold-icy-ice/aqualung,cold-icy-ice,Java,false,false,false,0,false,false,false,false +rgaiacs/blogdown-gitlab,rgaiacs,HTML,true,false,false,1,false,true,false,false +gxworks/Dib2Qm,gxworks,Java,true,false,false,1,false,true,false,false +almarklein/bsdf,almarklein,Python,true,false,false,2,false,true,true,false +zoomy500/fortnite,zoomy500,C++,false,false,false,0,false,false,false,false +bytecrowd/behametrics,bytecrowd,Java,false,false,false,0,false,false,false,false +fpdpy/fpd,fpdpy,Python,true,false,false,2,false,true,true,false +osvoipdoc-project/asterisk,osvoipdoc-project,,false,false,false,0,false,false,false,false +uhoreg/matrix-appservice-prosody,uhoreg,Lua,false,false,false,0,false,false,false,false +ivanceras/rustorm-rewrite,ivanceras,Rust,false,false,false,0,false,false,false,false +x-doggy/border-comment-builder,x-doggy,JavaScript,false,false,false,0,false,false,false,false +spider-network/mindex,spider-network,Ruby,true,false,false,2,false,true,false,true +alenDeveloper/lessons,alenDeveloper,Java,false,false,false,0,false,false,false,false +energievalsabbia/aurorapy,energievalsabbia,Python,true,false,false,1,false,true,false,false +ModernisingMedicalMicrobiology/CRuMPIT,ModernisingMedicalMicrobiology,Python,true,true,false,1,false,true,false,false +TownPound/Cyclos/ScottLogic.mobile.react-native/BristolPound,TownPound,JavaScript,false,false,false,0,false,false,false,false +ClaudioNeiva/teste-qualidade-bes-2017-2,ClaudioNeiva,Java,false,false,false,0,false,false,false,false +manuelteillet/pict-tools,manuelteillet,Python,true,false,false,1,false,true,false,false +ra_kete/android-sparse-rs,ra_kete,Rust,true,false,false,1,false,true,false,false +seriyalexandrov/OREO,seriyalexandrov,Java,false,false,true,0,false,false,false,false +private-software/fitbit-clearbeam-watchface,private-software,JavaScript,false,false,false,0,false,false,false,false +sensative/yggio-service-example,sensative,JavaScript,false,false,false,0,false,false,false,false +codigofacilito/introduccion-react,codigofacilito,JavaScript,false,false,false,0,false,false,false,false +laanekass/TunniDemod3,laanekass,Java,false,false,false,0,false,false,false,false +apparmor/apparmor-profiles,apparmor,,false,false,false,0,false,false,false,false +kobvel/ng-gitlab-firebase,kobvel,TypeScript,true,false,false,2,false,true,true,false +asu-capstone-team-6/ar-navigator,asu-capstone-team-6,Java,true,false,false,3,true,false,true,false +mpapp-public/manuscripts-issues,mpapp-public,,false,false,false,0,false,false,false,false +driveeach/driveeach,driveeach,,false,false,false,0,false,false,false,false +sortix/os-test,sortix,C,false,false,false,0,false,false,false,false +bambootran89/Algorithms,bambootran89,Java,false,false,false,0,false,false,false,false +techbench-dump/web,techbench-dump,PHP,false,false,false,0,false,false,false,false +gfelbing/annotate,gfelbing,TypeScript,true,false,false,2,true,false,true,false +gdsifc/eNUPE,gdsifc,,false,false,false,0,false,false,false,false +bom-mbt/squeaky,bom-mbt,Python,false,false,false,0,false,false,false,false +watercolor-games/the-peacenet,watercolor-games,C#,false,false,false,0,false,false,false,false +deltares/imod-python,deltares,Python,true,false,false,1,false,true,false,false +SUSE-UIUX/eos-icons,SUSE-UIUX,HTML,true,false,false,1,false,false,false,true +a.becerra/sservice-cryo,a.becerra,TypeScript,false,false,false,0,false,false,false,false +codebreak/harmony,codebreak,Python,false,false,false,0,false,false,false,false +Mactroll/NoMAD-ADAuth-Sample,Mactroll,Objective-C,false,false,false,0,false,false,false,false +intr0/DomainVoider,intr0,HTML,true,false,false,1,false,false,true,false +yairbaruch/proj_mag_bat_yam_course,yairbaruch,Python,false,false,false,0,false,false,false,false +web3-sh/devkit,web3-sh,JavaScript,true,false,false,2,false,true,false,false +the-gigi/pygame-breakout,the-gigi,Python,false,false,false,0,false,false,false,false +rmapbda/ConeDetector,rmapbda,Python,false,false,false,0,false,false,false,false +usaf-a3/usaf-mod,usaf-a3,C++,false,false,false,0,false,false,false,false +kumamoto-machine-learning-learning/school-1,kumamoto-machine-learning-learning,JupyterNotebook,false,false,false,0,false,false,false,false +jalalmostafa/chrome-prayertimes,jalalmostafa,JavaScript,false,false,false,0,false,false,false,false +industria-italiana-software-libero/industria-aperta,industria-italiana-software-libero,,false,false,false,0,false,false,false,false +kyledouglasolsen/SmartNet_Source,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +inkscape/inkscape-docs/documentation,inkscape,HTML,true,false,false,2,true,false,true,false +derft/db_zusammenfassung,derft,,false,false,false,0,false,false,false,false +Nanquitas/Luma3DS-PluginLoader,Nanquitas,C,false,false,false,0,false,false,false,false +eclufsc/ophidian,eclufsc,C++,true,false,false,1,true,false,false,false +our-sci/measurement-scripts,our-sci,JavaScript,false,false,false,0,false,false,false,false +TeamSPD/Chirp,TeamSPD,CSS,true,false,false,1,false,true,false,false +gitlab-com/environments,gitlab-com,HCL,true,false,false,8,false,true,false,false +link2xt/yoficator,link2xt,EmacsLisp,false,false,false,0,false,false,false,false +frontendne/devs-against-humanity,frontendne,JavaScript,true,false,false,2,false,true,true,false +andrei1058/BedWars1058,andrei1058,Java,false,false,false,0,false,false,false,false +projects.bp/slither.io,projects.bp,Java,false,false,false,0,false,false,false,false +anarcat/undertime,anarcat,Python,false,false,false,0,false,false,false,false +clitellum/clitellum,clitellum,Python,true,false,false,1,false,true,false,false +eyeo/websites/web.acceptableads.com,eyeo,CSS,true,false,false,1,false,false,true,false +L2JDevs/L2JDevs_Core,L2JDevs,Java,false,false,false,0,false,false,false,false +L2JDevs/L2JDevs_Data,L2JDevs,,false,false,false,0,false,false,false,false +CaptainFloax/star-wars-association,CaptainFloax,TypeScript,false,false,false,0,false,false,false,false +kubouch/ci-test,kubouch,,true,false,false,4,false,true,false,false +rutger.van.beusekom/gash,rutger.van.beusekom,Scheme,false,false,false,0,false,false,false,false +blenderone/public/materialx-blender,blenderone,Python,false,true,false,0,false,false,false,false +tokumei/tokumei,tokumei,CSS,false,false,false,0,false,false,false,false +NERSC/nersc.gitlab.io,NERSC,CSS,true,false,false,4,true,true,true,false +madkoding/cha-notifier,madkoding,JavaScript,false,false,false,0,false,false,false,false +ronnamaeffirmo/webpack-demo,ronnamaeffirmo,JavaScript,false,false,false,0,false,false,false,false +liberapay/liberapay-everywhere,liberapay,JavaScript,false,false,false,0,false,false,false,false +Retr0_System/Go,Retr0_System,Go,false,false,false,0,false,false,false,false +mk990/bin-scripts,mk990,Shell,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex2-plainjs,caldera-labs,Shell,false,false,false,0,false,false,false,false +gitlab-org/prometheus-storage-migrator,gitlab-org,Go,true,false,false,2,true,true,false,false +gosh-community/gosh-roadmap,gosh-community,,false,false,false,0,false,false,false,false +smallstack/infrastructure/gitlab-runner-cli,smallstack,TypeScript,true,false,false,1,false,true,false,false +inorton/junit2html,inorton,Python,true,false,false,1,false,true,false,false +socrates-conference/socrates-server,socrates-conference,JavaScript,true,false,false,7,true,true,false,true +etnbrd/vuex-composition-example,etnbrd,JavaScript,false,false,false,0,false,false,false,false +tsuki-studios/gekkou,tsuki-studios,JavaScript,false,false,false,0,false,false,false,false +lszathmary/Cryptolitycs,lszathmary,Java,false,false,false,0,false,false,false,false +narendraj9/dot-emacs,narendraj9,EmacsLisp,false,false,false,0,false,false,false,false +Eusebius1920/ember-cli-build-variants,Eusebius1920,JavaScript,true,false,false,2,false,true,true,false +vise890/scribe,vise890,Clojure,true,false,false,2,false,true,true,false +masadi2010/arsip-2018,masadi2010,PHP,false,false,false,0,false,false,false,false +fengzhen013012/srgbank_ab,fengzhen013012,Go,false,false,false,0,false,false,false,false +DerethForever/GameWorld,DerethForever,,false,false,false,0,false,false,false,false +kabaretstudio/kabaret,kabaretstudio,Python,false,false,false,0,false,false,false,false +pedram31/cryptocoopx-ccx,pedram31,,false,false,false,0,false,false,false,false +ablondin/inf2160-exercices,ablondin,Haskell,false,false,false,0,false,false,false,false +sousaw/BoltzTraP2,sousaw,Python,false,false,false,0,false,false,false,false +RobertCzinege/freebie-api-server,RobertCzinege,JavaScript,true,false,false,1,true,false,false,false +nd-cse-20289-sp18/cse-20289-sp18-assignments,nd-cse-20289-sp18,Shell,true,false,false,1,false,true,false,false +realmain/rEFInd-sunset,realmain,,false,false,false,0,false,false,false,false +tekne/PHY354_Notes,tekne,TeX,false,false,false,0,false,false,false,false +godzsa/awstail-plugin,godzsa,Kotlin,false,false,false,0,false,false,false,false +nvidia/samples,nvidia,,false,false,false,0,false,false,false,false +m210/BuildEngine,m210,Java,false,false,false,0,false,false,false,false +de_licious/Notes-archive,de_licious,Roff,false,false,false,0,false,false,false,false +gitlab-com/content-hack-day,gitlab-com,,false,false,false,0,false,false,false,false +codingblocksslack/blocksbot,codingblocksslack,Python,false,true,false,0,false,false,false,false +flectra-hq/docker,flectra-hq,Shell,true,false,false,1,true,false,false,false +zaquestion/lab,zaquestion,Go,false,false,false,0,false,false,false,false +jbrassard/revolvairapi,jbrassard,PHP,true,false,false,1,false,true,false,false +flectra-hq/developer-quality-tools,flectra-hq,Python,false,false,false,0,false,false,false,false +jingguanzhang/y2pp,jingguanzhang,,false,false,false,0,false,false,false,false +betd-ppottie/AutoSwitchAlias,betd-ppottie,Shell,false,false,false,0,false,false,false,false +Pandentia/element-zero,Pandentia,Python,false,false,false,0,false,false,false,false +sosoriov/imdc-learning-python,sosoriov,Python,false,false,false,0,false,false,false,false +caldera-labs/gutenberg-examples/ex2-event-block,caldera-labs,JavaScript,false,false,false,0,false,false,false,false +nmihteam/nova-monumenta-iaponiae-historica,nmihteam,Lua,false,false,false,0,false,false,false,false +gitlab-org/ci-cd/gcp-exporter,gitlab-org,Go,true,false,false,4,true,true,false,true +williamyaoh/shrinkwraprs,williamyaoh,Rust,true,false,false,2,true,true,false,false +flectra-hq/pycharm-templates,flectra-hq,Shell,false,false,false,0,false,false,false,false +MattDietrich/CSCE-4444-Project,MattDietrich,PHP,false,false,false,0,false,false,false,false +Queuecumber/cudarun,Queuecumber,Python,false,false,false,0,false,false,false,false +tessia-project/tessia-baselib,tessia-project,Python,true,true,false,3,true,false,false,false +jbrassard/revolvairwebclient,jbrassard,TypeScript,false,false,false,0,false,false,false,false +Xorgroth/SOB,Xorgroth,C#,false,false,false,0,false,false,false,false +tomderudder/Framework,tomderudder,PHP,false,false,false,0,false,false,false,false +linux-wiiu/linux-loader,linux-wiiu,C,true,false,false,1,true,false,false,false +linux-wiiu/debian-wiiu-repo,linux-wiiu,HTML,true,false,false,2,true,false,true,false +jae.duk.seo/Only_Numpy,jae.duk.seo,Python,false,false,false,0,false,false,false,false +eyeo/adblockplus/adblockplussafariios,eyeo,Swift,false,false,false,0,false,false,false,false +apgoucher/metasat,apgoucher,Python,false,false,false,0,false,false,false,false +semantic-jail/php-ivoox-api-client,semantic-jail,PHP,true,false,false,2,false,false,false,false +issam.nacim/spring-gateway,issam.nacim,Java,false,false,true,0,false,false,false,false +rit-fonts/Sundar,rit-fonts,Python,false,false,false,0,false,false,false,false +projetM1/projetM1_2018,projetM1,HTML,false,false,false,0,false,false,false,false +anidroid/AniDroid.AniList,anidroid,C#,false,false,false,0,false,false,false,false +Alisummer/beauty-header,Alisummer,Java,true,false,false,1,true,false,false,false +morlin/pymath3d,morlin,Python,false,false,false,0,false,false,false,false +thorgate-public/django-project-template,thorgate-public,Python,true,true,false,1,true,false,false,false +pganssle/githooks,pganssle,Rust,false,false,false,0,false,false,false,false +PPL2018csui/Kelas-D/PPL2018-D7,PPL2018csui,Java,true,false,false,5,true,false,true,false +Talibri/general,Talibri,Python,false,false,false,0,false,false,false,false +AllenB1/taskeeper,AllenB1,Java,false,false,false,0,false,false,false,false +pineiden/curso_programacion,pineiden,HTML,false,false,false,0,false,false,false,false +grimille-kit/EasySerializer,grimille-kit,Java,false,false,true,0,false,false,false,false +meltano/meltano-elt,meltano,Shell,true,false,false,2,true,false,false,false +daylight/texttop,daylight,Go,false,false,false,0,false,false,false,false +kpachhai/elavoting_randomness,kpachhai,Python,false,false,false,0,false,false,false,false +deniskamazur/facemash,deniskamazur,HTML,false,false,false,0,false,false,false,false +srwk/gitlab-handbook-kr,srwk,HTML,true,false,false,1,false,true,false,false +jamie/icecream,jamie,JavaScript,false,false,false,0,false,false,false,false +kjkjjang/spring4-study,kjkjjang,Java,false,false,false,0,false,false,false,false +FiniteReality/Finite.Commands,FiniteReality,C#,true,false,false,3,true,true,false,true +gilmi/haskell-play,gilmi,Haskell,false,false,false,0,false,false,false,false +marianoguerra/tanodb,marianoguerra,Erlang,false,false,false,0,false,false,false,false +orbtk/orbtk,orbtk,Rust,true,false,false,1,false,true,false,false +Vblondeau/simple-docker-reverse-proxy,Vblondeau,Makefile,false,false,false,0,false,false,false,false +Screwtapello/kakoune-cargo,Screwtapello,,false,false,false,0,false,false,false,false +wp-translations-repo/plugins/wp-translations,wp-translations-repo,PHP,false,false,false,0,false,false,false,false +Olympus_Labs/olympus-protocol,Olympus_Labs,JavaScript,true,false,false,4,true,true,true,false +2informatica/laco-repeticao,2informatica,JavaScript,false,false,false,0,false,false,false,false +mexus/futures-retry,mexus,Rust,true,false,false,1,false,true,false,false +beyondbitcoin/whaleshares-chain,beyondbitcoin,C++,false,false,false,0,false,false,false,false +baumrock/RockForms,baumrock,PHP,false,false,false,0,false,false,false,false +oer/figures,oer,TeX,false,false,false,0,false,false,false,false +ad-si-2018-1/p1-g4,ad-si-2018-1,JavaScript,false,false,false,0,false,false,false,false +srrg-software/srrg_lifelong_calibration,srrg-software,C++,false,false,false,0,false,false,false,false +granitosaurus/minds-api,granitosaurus,Python,false,false,false,0,false,false,false,false +yethiel/install_rvgl,yethiel,Python,false,false,false,0,false,false,false,false +dhanar_santika/contoh-solusi-os,dhanar_santika,,false,false,false,0,false,false,false,false +salle-projectes-web/pwbox,salle-projectes-web,,false,false,false,0,false,false,false,false +OrangeFox/Recovery,OrangeFox,C,false,false,false,0,false,false,false,false +royragsdale/ctfdfetch,royragsdale,Python,false,false,false,0,false,false,false,false +loki153/lab-stuff,loki153,Python,false,false,false,0,false,false,false,false +secsh/pkixssh,secsh,C,false,false,false,0,false,false,false,false +coala/mobans,coala,Python,true,false,false,1,false,true,false,false +sortix/rw-portable,sortix,C,false,false,false,0,false,false,false,false +libssh/libssh-mirror,libssh,C,true,false,false,1,false,true,false,false +twitch4j/twitch4j,twitch4j,Java,true,false,false,5,true,true,false,false +kemonine/lolipop_lan_cloud,kemonine,HTML,false,false,false,0,false,false,false,false +costrouc/pysrim,costrouc,Python,true,false,false,2,false,true,true,false +ToxiClaw/LatexTemplate,ToxiClaw,TeX,true,false,false,1,false,true,false,false +nutanix/xray-scenarios,nutanix,,true,false,false,1,true,false,false,false +zhukovgreen/pozemky,zhukovgreen,Python,true,false,false,2,true,true,false,false +alantrick/django-vox,alantrick,Python,true,false,false,2,false,true,true,false +asyncjdbc/asyncjdbc,asyncjdbc,Java,true,false,false,3,true,true,true,false +ID4me/C2idAuthorizationEndpoint,ID4me,Java,false,false,false,0,false,false,false,false +hr-rt/documents,hr-rt,,false,false,false,0,false,false,false,false +gitlab-com/support/support-training,gitlab-com,,false,false,false,0,false,false,false,false +pgjones/quart-cors,pgjones,Python,true,false,false,1,false,true,false,false +wassname/world-models-pytorch,wassname,JupyterNotebook,false,false,false,0,false,false,false,false +goodvibes/goodvibes,goodvibes,C,true,false,false,1,true,false,false,false +atomsandbits/atomsandbits,atomsandbits,JavaScript,true,false,false,2,false,true,true,false +kurant-open/m3d,kurant-open,Python,true,false,false,1,false,true,false,false +GNULand/ubuntu-for-newcomers,GNULand,CSS,true,false,false,1,false,true,false,false +davecramer/dbeventstream,davecramer,Java,false,false,false,0,false,false,false,false +passelecasque/nectar,passelecasque,Python,false,true,false,0,false,false,false,false +linbit/linstor-client,linbit,Python,false,false,false,0,false,false,false,false +Flockademic/plaudit,Flockademic,TypeScript,true,false,false,6,false,true,true,false +aDogCalledSpot/TheoUnitTests,aDogCalledSpot,Java,false,false,false,0,false,false,false,false +sj14/gosh,sj14,Go,true,false,false,2,true,true,false,false +hellcp/fennec-icons,hellcp,,false,false,false,0,false,false,false,false +dave851221/HackGame,dave851221,Python,false,false,false,0,false,false,false,false +eval/deps-try,eval,Clojure,false,false,false,0,false,false,false,false +tonioguzmanf/gcp-bookshelf,tonioguzmanf,Python,false,true,false,0,false,false,false,false +ehemsley/stately,ehemsley,C#,false,false,false,0,false,false,false,false +python-devs/importlib_metadata,python-devs,Python,true,false,false,3,false,true,true,false +TradeFlu/PT-DCA-Digger,TradeFlu,Python,false,true,false,0,false,false,false,false +neucrypt/mpecdsa,neucrypt,Rust,false,false,false,0,false,false,false,false +kornelski/cloudflare-zlib-sys,kornelski,Rust,true,false,false,1,false,true,false,false +serebit/diskord,serebit,Kotlin,true,false,false,3,true,true,true,false +deltarena/react-gameboard,deltarena,TypeScript,false,false,false,0,false,false,false,false +falaktheoptimist/ml_summer_school,falaktheoptimist,JupyterNotebook,false,false,false,0,false,false,false,false +dave851221/Avalon,dave851221,Python,false,false,false,0,false,false,false,false +b0/matrique-go,b0,QML,false,false,false,0,false,false,false,false +Scrumplex/Discord-Adapta-Nokto,Scrumplex,CSS,false,false,false,0,false,false,false,false +sstangl/tuja-vortaro,sstangl,XSLT,false,false,false,0,false,false,false,false +BrianAllred/NYoutubeDL,BrianAllred,C#,true,false,false,2,true,true,false,false +LinxGem33/Arc-X-Icons,LinxGem33,Shell,false,false,false,0,false,false,false,false +hrbrmstr/decapitated,hrbrmstr,R,false,false,false,0,false,false,false,false +JLErvin/dotfiles,JLErvin,Shell,false,false,false,0,false,false,false,false +conradsnicta/bandicoot-code,conradsnicta,C++,false,false,false,0,false,false,false,false +ruany/LiteBans,ruany,,false,false,false,0,false,false,false,false +unadoy/v2ray-core,unadoy,Go,false,false,false,0,false,false,false,false +Kendek/systemback,Kendek,Shell,false,false,false,0,false,false,false,false +buildfeed/BuildFeed,buildfeed,C#,false,false,false,0,false,false,false,false +zxq9/zomp,zxq9,Erlang,false,false,false,0,false,false,false,false +jahanifard/vi_editor_cheatsheet,jahanifard,TeX,false,false,false,0,false,false,false,false +mattia.basaglia/Qt-Color-Widgets,mattia.basaglia,C++,false,false,false,0,false,false,false,false +more-cores/laravel-restcord,more-cores,PHP,true,false,false,1,false,true,false,false +dalapo/FactoryTech,dalapo,Java,false,false,false,0,false,false,false,false +est/cargo-local-serve,est,Rust,false,false,false,0,false,false,false,false +jtdaling/OpenIrrigation,jtdaling,Python,false,false,false,0,false,false,false,false +TheDarkprogramer/PS3Tools,TheDarkprogramer,C#,false,false,false,0,false,false,false,false +EMC-Framework/EMC,EMC-Framework,Java,true,false,false,1,false,true,false,false +woblight/QuestHaste,woblight,Lua,false,false,false,0,false,false,false,false +NodeGuy/channel,NodeGuy,JavaScript,false,false,false,0,false,false,false,false +bitseater/meteo,bitseater,Vala,true,false,false,2,true,false,false,false +shagu/pfStudio,shagu,Lua,false,false,false,0,false,false,false,false +shagu/pfUI-fonts,shagu,Lua,false,false,false,0,false,false,false,false +shagu/pfSimpleDamage,shagu,Lua,false,false,false,0,false,false,false,false +shagu/ShaguInventory,shagu,Lua,false,false,false,0,false,false,false,false +timwilkinson/FlySkyIBus,timwilkinson,C++,false,false,false,0,false,false,false,false +sebaro/ViewTube,sebaro,JavaScript,false,false,false,0,false,false,false,false +Salamek/gitlab-tools,Salamek,Python,true,true,false,4,false,true,true,false +TheJackiMonster/HuionGT191LinuxDriver,TheJackiMonster,C,false,false,false,0,false,false,false,false +jeroenrnl/zoph,jeroenrnl,PHP,false,false,false,0,false,false,false,false +d4rcm4rc/MagiskSSH,d4rcm4rc,Makefile,false,false,false,0,false,false,false,false +lu-ci/sigma/apex-sigma,lu-ci,Python,false,true,false,0,false,false,false,false +hellekin/autosshfs,hellekin,Shell,false,false,false,0,false,false,false,false +josh.cain/dependencyversion-maven-plugin,josh.cain,Java,false,false,false,0,false,false,false,false +ubports-linphone/linphone-simple,ubports-linphone,QML,false,false,false,0,false,false,false,false +mmstick/fontfinder,mmstick,Rust,false,false,false,0,false,false,false,false +jallbrit/dotfiles,jallbrit,Shell,false,false,false,0,false,false,false,false +o355/PyWeather,o355,Python,false,false,false,0,false,false,false,false +barbalet/nobleape,barbalet,C,true,false,false,2,true,true,false,false +hdante/hello_wayland,hdante,C,false,false,false,0,false,false,false,false +chusiang/books2read,chusiang,,false,false,false,0,false,false,false,false +rybnico/openshift-nginx-php-fpm,rybnico,,false,false,false,0,false,false,false,false +georg.mittendorfer/piri,georg.mittendorfer,Java,true,false,true,1,false,true,false,false +duncan-bayne/heroku-buildpack-common-lisp,duncan-bayne,Shell,true,false,false,1,false,true,false,false +tokict/react-native-comments,tokict,JavaScript,false,false,false,0,false,false,false,false +rilian-la-te/musl-locales,rilian-la-te,C,true,false,false,1,true,false,false,false +Couple-quest/Couple-quest,Couple-quest,GDScript,false,false,false,0,false,false,false,false +nmud/nmud-docs,nmud,HTML,false,false,false,0,false,false,false,false +RebornOS/RebornOS,RebornOS,Python,false,false,false,0,false,false,false,false +samsumas/LivingBurger,samsumas,Java,false,false,false,0,false,false,false,false +xythrez/musct,xythrez,Python,false,true,false,0,false,false,false,false +videlec/pplpy,videlec,Python,true,false,false,1,false,true,false,false +NoahGray/final-orm,NoahGray,JavaScript,false,false,false,0,false,false,false,false +khaytsus/mxergo,khaytsus,Shell,false,false,false,0,false,false,false,false +n0r1sk/bosnd,n0r1sk,Go,false,false,false,0,false,false,false,false +exalm/gnome-shell-extension-dynamic-battery,exalm,JavaScript,false,false,false,0,false,false,false,false +PisiLinux/main,PisiLinux,Python,false,false,false,0,false,false,false,false +PisiLinux/core,PisiLinux,Python,false,false,false,0,false,false,false,false +victorlapin/flasher,victorlapin,Kotlin,true,false,false,1,true,false,false,false +balping/ticketit-app,balping,PHP,false,false,false,0,false,false,false,false +kamba4/sunders,kamba4,PHP,false,false,false,0,false,false,false,false +william.belanger/bridge,william.belanger,Python,false,false,false,0,false,false,false,false +elad.noor/equilibrator,elad.noor,HTML,true,false,false,1,false,true,false,false +deltarena/hsgs-hackathon-18,deltarena,JavaScript,true,false,false,1,false,false,true,false +JuliaGPU/LLVM.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false +SalvatoreLopez/plugin-sweetAlert,SalvatoreLopez,HTML,false,false,false,0,false,false,false,false +qeef/mapathoner,qeef,Java,true,false,false,3,true,true,true,false +eidheim/react-simplified,eidheim,JavaScript,true,false,false,1,false,true,false,false +vala-panel-project/vala-panel,vala-panel-project,C,true,false,false,2,true,false,false,true +nullworks/cathook,nullworks,C++,false,false,false,0,false,false,false,false +OsloMet-ABI/nikita-noark5-core,OsloMet-ABI,Java,true,false,true,2,true,true,false,false +pingus/pingus,pingus,C++,true,false,false,1,true,false,false,false +hesperos/napi,hesperos,Shell,true,false,false,3,true,true,true,false +Teuniz/DSRemote,Teuniz,C++,false,false,false,0,false,false,false,false +toby3d/telegram,toby3d,Go,false,false,false,0,false,false,false,false +toby3d/mypackbot,toby3d,Go,true,false,false,2,true,true,false,false +VanessaE/homedecor_modpack,VanessaE,Lua,false,false,false,0,false,false,false,false +VanessaE/pipeworks,VanessaE,Lua,false,false,false,0,false,false,false,false +antiX-Linux/system-antix,antiX-Linux,Shell,false,false,false,0,false,false,false,false +level.2/Transphporm,level.2,PHP,false,false,false,0,false,false,false,false +Mactroll/SwiftClass,Mactroll,Swift,false,false,false,0,false,false,false,false +relatived/rpi-nx-rcm,relatived,HTML,false,false,false,0,false,false,false,false +soxrok2212/PSKracker,soxrok2212,C,false,false,false,0,false,false,false,false +stinovlas/django-dkim,stinovlas,Python,true,false,false,3,false,true,false,false +J-keys/go_notes,J-keys,,false,false,false,0,false,false,false,false +jenx/import-batteries-talk,jenx,JavaScript,true,false,false,1,false,false,true,false +vednoc/onyx,vednoc,CSS,false,false,false,0,false,false,false,false +junland/sled,junland,Go,true,false,false,1,true,false,false,false +jtaimisto/bluewalker,jtaimisto,Go,true,false,false,2,true,true,false,false +pawamoy/moving-stars,pawamoy,Python,false,false,false,0,false,false,false,false +solarus-games/diarandor-art,solarus-games,,false,false,false,0,false,false,false,false +solarus-games/zelda-olb-se,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/zelda-xd2-mercuris-chess,solarus-games,Lua,false,false,false,0,false,false,false,false +Matrixcoffee/FAQBot,Matrixcoffee,Python,false,false,false,0,false,false,false,false +Matrixcoffee/matrix-knowledge-base,Matrixcoffee,,false,false,false,0,false,false,false,false +Perflyst/firefox-privacy-profile,Perflyst,JavaScript,false,false,false,0,false,false,false,false +fccoelho/curso-IRI,fccoelho,JupyterNotebook,false,false,false,0,false,false,false,false +Odyseus/CinnamonTools,Odyseus,HTML,false,false,false,0,false,false,false,false +AnakiKaiver297/Requiem-Project,AnakiKaiver297,Python,false,true,false,0,false,false,false,false +untidylamp/VoipMS-SMS-Matrix,untidylamp,Python,false,false,false,0,false,false,false,false +ydkn/capistrano-git-copy,ydkn,Ruby,true,false,false,3,true,false,false,false +rubencarneiro/custom_bootlogos,rubencarneiro,,false,false,false,0,false,false,false,false +Bottersnike/crypko.py,Bottersnike,Python,false,true,false,0,false,false,false,false +ourmarkas/gutenberg,ourmarkas,CSS,true,false,false,1,false,false,true,false +tludewig/ESP8266-WiFi-Socket-NG,tludewig,C++,false,false,false,0,false,false,false,false +Shinobi-Systems/ShinobiDocker,Shinobi-Systems,Shell,true,false,false,1,true,false,false,false +technotame/OSCP,technotame,Python,false,false,false,0,false,false,false,false +jenslody/gnome-shell-extension-panel-osd,jenslody,JavaScript,false,false,false,0,false,false,false,false +nathamanath/phoenix_auth_example,nathamanath,Elixir,false,false,false,0,false,false,false,false +libreprojects/libreprojects,libreprojects,JavaScript,false,false,false,0,false,false,false,false +distributopia/caramba,distributopia,,false,false,false,0,false,false,false,false +upend/upend.org-content,upend,,false,false,false,0,false,false,false,false +coderyi/AC_300fun,coderyi,,false,false,false,0,false,false,false,false +predator8bit/flare-demonic-ui,predator8bit,,false,false,false,0,false,false,false,false +caal-15/custom-javascripting,caal-15,JavaScript,false,false,false,0,false,false,false,false +JimmyGregorio/makeTorrent,JimmyGregorio,Shell,false,false,false,0,false,false,false,false +squad-lcv/labo,squad-lcv,Shell,false,false,false,0,false,false,false,false +aurorafossorg/p/framework/core,aurorafossorg,C,true,false,false,4,true,true,false,true +otherbenji/TexFactory,otherbenji,C#,true,false,false,1,false,false,true,false +public-aarmn-simple/easylogger,public-aarmn-simple,Python,false,false,false,0,false,false,false,false +d3fc0n4/mastocat,d3fc0n4,JavaScript,false,false,false,0,false,false,false,false +7twin/node-dns-filter,7twin,JavaScript,false,false,false,0,false,false,false,false +johnfrenchxyz/dotfiles,johnfrenchxyz,Vimscript,false,false,false,0,false,false,false,false +Tmpod/cyborgtoast,Tmpod,Python,true,true,false,1,false,false,false,false +ambrevar/emacs-fish-completion,ambrevar,EmacsLisp,false,false,false,0,false,false,false,false +BVollmerhaus/scripts,BVollmerhaus,Python,false,true,false,0,false,false,false,false +Noughmad/serde_any,Noughmad,Rust,true,false,false,1,false,true,false,false +aviwad/librehunt,aviwad,HTML,false,false,false,0,false,false,false,false +IvanSanchez/Leaflet.MapkitMutant,IvanSanchez,JavaScript,false,false,false,0,false,false,false,false +Compony/Compony,Compony,JavaScript,false,false,false,0,false,false,false,false +ShirinG/intro_to_ml_workshop,ShirinG,HTML,false,false,false,0,false,false,false,false +rubdos/criterion-gitlab,rubdos,Shell,false,false,false,0,false,false,false,false +nul.one/rundoc,nul.one,Python,true,false,false,1,false,true,false,false +Pikaping/NurseJoyBot,Pikaping,Python,false,false,false,0,false,false,false,false +ReturnInfinity/BareMetal,ReturnInfinity,Assembly,false,false,false,0,false,false,false,false +BrainSteel/Brainumerable,BrainSteel,C,false,false,false,0,false,false,false,false +marbits/marbits.documentation,marbits,Shell,false,false,false,0,false,false,false,false +ambrevar/demlo,ambrevar,Go,false,false,false,0,false,false,false,false +kacpersaw/discourse-privacy-policy-enforce,kacpersaw,HTML,false,false,false,0,false,false,false,false +eetorres/xmol,eetorres,C++,false,false,false,0,false,false,false,false +namnh240795/react-native-simple-code-input,namnh240795,JavaScript,false,false,false,0,false,false,false,false +veroandreo/grass-gis-geostat-2018,veroandreo,Shell,false,false,false,0,false,false,false,false +jaymoulin/docker-google-music-uploader,jaymoulin,Makefile,true,false,false,1,true,false,false,false +hiiamboris/retris,hiiamboris,Red,false,false,false,0,false,false,false,false +starbelly/soda,starbelly,Erlang,true,false,false,1,false,true,false,false +PHP-Coders/NeleBotFramework,PHP-Coders,PHP,false,false,false,0,false,false,false,false +Piou-piou/ruined-world-front,Piou-piou,,true,false,false,1,false,true,false,false +perillamint/nx-memxplorer,perillamint,C,false,false,false,0,false,false,false,false +PureTryOut/matrix-overlay,PureTryOut,Shell,false,false,false,0,false,false,false,false +deniskamazur/fuck-marry-kill,deniskamazur,HTML,false,false,false,0,false,false,false,false +0x4ndr3/blog,0x4ndr3,Python,false,false,false,0,false,false,false,false +Th3_Scarecrow/bspwm-setup,Th3_Scarecrow,CSS,false,false,false,0,false,false,false,false +rsameni/OSET,rsameni,Matlab,false,false,false,0,false,false,false,false +ColoradoSchoolOfMines/visplay,ColoradoSchoolOfMines,C++,true,false,false,4,false,true,true,false +gtahackers/gta-reversed,gtahackers,C,false,false,false,0,false,false,false,false +metalx1000/Example-Python-Scripts,metalx1000,Python,false,false,false,0,false,false,false,false +Harleqin/arrows,Harleqin,CommonLisp,false,false,false,0,false,false,false,false +postmarketOS/xfce4-phone,postmarketOS,,false,false,false,0,false,false,false,false +postmarketOS/charging-sdl,postmarketOS,C,false,false,false,0,false,false,false,false +postmarketOS/wiki,postmarketOS,,false,false,false,0,false,false,false,false +absassi/asap,absassi,CMake,true,false,false,1,true,false,false,false +MohamedBahmed/google-loaders-redesign,MohamedBahmed,CSS,true,false,false,1,false,false,true,false +qiubix/rekolekcje-api,qiubix,TypeScript,false,false,false,0,false,false,false,false +dgmcguire/example_texas_app,dgmcguire,Elixir,false,false,false,0,false,false,false,false +picos-api/picos,picos-api,Python,true,false,false,2,false,true,true,false +thecorpora/QBO,thecorpora,Python,false,false,false,0,false,false,false,false +call518/OpenStack-on-Kubernetes,call518,Shell,false,false,false,0,false,false,false,false +neothefox/LayTray,neothefox,Java,false,false,false,0,false,false,false,false +uptimeventures/gotham-middleware-jwt,uptimeventures,Rust,true,false,false,1,false,true,false,false +jhonystein/pedidex-spring,jhonystein,Java,false,false,true,0,false,false,false,false +dosuken123/thin-gdk,dosuken123,Shell,true,false,false,3,true,true,false,false +jsherman82/notes,jsherman82,,false,false,false,0,false,false,false,false +Ne00n/metaDedi-Filters,Ne00n,,false,false,false,0,false,false,false,false +wolframroesler/profiling,wolframroesler,C++,false,false,false,0,false,false,false,false +jhoran/Laine,jhoran,JavaScript,false,false,false,0,false,false,false,false +THUGuide/ThuGuide,THUGuide,HTML,true,false,false,1,false,true,false,false +danibishop/ANAC,danibishop,,false,false,false,0,false,false,false,false +adnan.abdulahovic/ccontainers,adnan.abdulahovic,C,false,false,false,0,false,false,false,false +nyc-bci/start-here,nyc-bci,JupyterNotebook,false,false,false,0,false,false,false,false +legendsofultima/feedback,legendsofultima,,false,false,false,0,false,false,false,false +blacknet-ninja/blacknet-ninja.gitlab.io,blacknet-ninja,JavaScript,true,false,false,1,false,true,false,false +MMS-Summer-School-2018/course-material,MMS-Summer-School-2018,TeX,false,false,false,0,false,false,false,false +ianbruene/Kommandant,ianbruene,Go,false,false,false,0,false,false,false,false +johandurancerdas/gitlab-cicd-tutorial,johandurancerdas,JavaScript,true,false,false,2,false,true,true,false +JohnHammond/intro2linux,JohnHammond,Python,false,false,false,0,false,false,false,false +ukfast/docs.ukfast.co.uk,ukfast,Shell,true,false,false,2,true,false,true,false +Visiulkina/PublicProject,Visiulkina,,false,false,false,0,false,false,false,false +BerniceChua/Whiteboarding_And_Algorithms_Workshop_-_Wednesday_Edition,BerniceChua,,false,false,false,0,false,false,false,false +equinox-sdr/equinox,equinox-sdr,C++,true,false,false,2,true,true,false,false +CrazyBaboon/git-logger,CrazyBaboon,Shell,false,false,false,0,false,false,false,false +joshlambert/cloud-function-trigger,joshlambert,JavaScript,false,false,false,0,false,false,false,false +alex.gatu/Aut02Course,alex.gatu,Java,false,false,false,0,false,false,false,false +jessp01/oscon-prometheus-session,jessp01,,false,false,false,0,false,false,false,false +alienspaces/arena-tactics,alienspaces,Go,true,false,false,1,false,true,false,false +gitlab-org/jupyterhub-user-image,gitlab-org,,true,false,false,1,true,false,false,false +jon.chin/cooper-union-csesg-boilerplate,jon.chin,JavaScript,false,false,false,0,false,false,false,false +atomsandbits/quantum-glitch-art,atomsandbits,JavaScript,false,false,false,0,false,false,false,false +ohboi/silly,ohboi,D,true,false,false,1,false,true,false,false +djh_or/2018-world-cup-stats,djh_or,Ruby,false,false,false,0,false,false,false,false +llhe/mobile-ai-bench,llhe,C++,true,false,false,3,false,false,false,false +neel.basu/mathematicapp,neel.basu,C++,false,false,false,0,false,false,false,false +alaskalinuxuser/advanced_course_android_developer_guide_mp4,alaskalinuxuser,,false,false,false,0,false,false,false,false +LucasLeandroBR/learncode,LucasLeandroBR,HTML,true,false,false,1,false,false,false,true +m03geek/fastify-oas,m03geek,JavaScript,true,false,false,3,false,true,false,true +cvit/admins/atom,cvit,Roff,false,false,false,0,false,false,false,false +itu-auv/robosub19-main,itu-auv,CMake,true,false,false,1,true,false,false,false +derSchabi/Stethox,derSchabi,Java,false,false,false,0,false,false,false,false +intr0/iVOID.GitLab.io,intr0,HTML,true,false,false,1,false,false,true,false +a-dma/kaltokle,a-dma,Rust,false,false,false,0,false,false,false,false +teslex/gspinners,teslex,Groovy,true,false,false,2,true,false,false,true +charlescanato/google-keep-to-evernote-converter,charlescanato,Python,false,false,false,0,false,false,false,false +HexerBeta/FlappyBird.JS,HexerBeta,JavaScript,false,false,false,0,false,false,false,false +Archman-OS/ArchmanISO,Archman-OS,Shell,false,false,false,0,false,false,false,false +GovCMS/govcms-lagoon,GovCMS,,false,false,false,0,false,false,false,false +TecHoof/v-lang-plugin,TecHoof,JavaScript,false,false,false,0,false,false,false,false +iNewHorizons/blobtoolkit,iNewHorizons,,false,false,false,0,false,false,false,false +chicken231/ubuntu-kubernetes-ansible,chicken231,,false,false,false,0,false,false,false,false +anoopknr/pastebin,anoopknr,Java,false,false,false,0,false,false,false,false +inko-lang/ienv,inko-lang,Shell,true,false,false,1,false,true,false,false +yoginth/publicip,yoginth,Python,false,false,false,0,false,false,false,false +wheresvic/software-dawg,wheresvic,CSS,true,false,false,1,false,true,false,false +rdi-eg/cpp_team_training_plan,rdi-eg,,false,false,false,0,false,false,false,false +MrCustomizer/palaver,MrCustomizer,Kotlin,true,false,false,4,true,false,false,true +2vek/alternate-tube-redirector,2vek,JavaScript,false,false,false,0,false,false,false,false +wiltonlazary/reflections,wiltonlazary,Java,false,false,true,0,false,false,false,false +nemanjan/hwallet,nemanjan,C,false,false,false,0,false,false,false,false +yoginth/gravatarurl,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/sorting,yoginth,Python,false,false,false,0,false,false,false,false +DomainVoider.GitLab.io/iVOID,DomainVoider.GitLab.io,HTML,true,false,false,1,false,false,true,false +yoginth/twitter-unfollow,yoginth,Python,false,false,false,0,false,false,false,false +seanwasere/Seans-Angular6-Python-Flask-Boilerplate,seanwasere,TypeScript,true,false,false,1,false,true,false,false +uspgamedev/Spookmin,uspgamedev,GDScript,false,false,false,0,false,false,false,false +PaulBrownMagic/PPFN,PaulBrownMagic,Prolog,false,false,false,0,false,false,false,false +cscs/Bibata_AdaptaBreath_Cursors,cscs,Shell,false,false,false,0,false,false,false,false +davidv171/dotfiles,davidv171,Python,false,false,false,0,false,false,false,false +yoginth/hasemoji,yoginth,Python,false,false,false,0,false,false,false,false +IslandAdventures/IslandAdventures,IslandAdventures,Lua,false,false,false,0,false,false,false,false +yoginth/normalizeurl,yoginth,Python,false,false,false,0,false,false,false,false +tim241/bunny,tim241,Shell,false,false,false,0,false,false,false,false +esr/microjson,esr,C,false,false,false,0,false,false,false,false +lukaskris12/News,lukaskris12,Kotlin,false,false,false,0,false,false,false,false +yoginth/compareurls,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/tomilliseconds,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/parsems,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/cryptohash,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/isdown,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/ispublicdomain,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/isgitlabdown,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/isgithubdown,yoginth,Python,false,false,false,0,false,false,false,false +vigou3/emacs-modified-macos,vigou3,EmacsLisp,false,false,false,0,false,false,false,false +yoginth/isredirect,yoginth,Python,false,false,false,0,false,false,false,false +kidbright/kbide,kidbright,C,false,false,false,0,false,false,false,false +jaquerespeis/awesome-turing,jaquerespeis,,false,false,false,0,false,false,false,false +king011/book-web,king011,TypeScript,false,false,false,0,false,false,false,false +NexusPieX/device_lge_bullhead,NexusPieX,C++,false,false,false,0,false,false,false,false +yoginth/mathavg,yoginth,Python,false,false,false,0,false,false,false,false +ZKP/bullhead,ZKP,C,false,false,false,0,false,false,false,false +dustyweb/racktris,dustyweb,Racket,false,false,false,0,false,false,false,false +aar642/shadow-appimage,aar642,Perl,true,false,false,1,true,false,false,false +brandondyer64/wcpp,brandondyer64,JavaScript,false,false,false,0,false,false,false,false +d4rcm4rc/gentoo-buildhost,d4rcm4rc,Python,false,false,false,0,false,false,false,false +umichcreative/development,umichcreative,PHP,false,false,false,0,false,false,false,false +yoginth/ghavatar,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/ghuser,yoginth,Python,false,false,false,0,false,false,false,false +ajyoon/ob-rust,ajyoon,EmacsLisp,false,false,false,0,false,false,false,false +ArthurRosso/coderace2018,ArthurRosso,JavaScript,false,false,false,0,false,false,false,false +tejaswigowda/ame220-fall2018,tejaswigowda,HTML,false,false,false,0,false,false,false,false +Theemacsshibe/cl-vep,Theemacsshibe,CommonLisp,false,false,false,0,false,false,false,false +codeearth/drawdown,codeearth,Python,true,true,false,2,false,true,true,false +Acvarium/golitaire,Acvarium,GDScript,false,false,false,0,false,false,false,false +adrielsr/jira-intellij-plugin,adrielsr,Java,false,false,false,0,false,false,false,false +master-ops/timeline,master-ops,,false,false,false,0,false,false,false,false +osu-wine/osu-wine,osu-wine,Shell,false,false,false,0,false,false,false,false +spirited/comet,spirited,C#,true,false,false,2,true,true,false,false +EduCampi/chromewm,EduCampi,JavaScript,false,false,false,0,false,false,false,false +android_stts/project_pertamaku,android_stts,Kotlin,false,false,false,0,false,false,false,false +svn-community/opnsense-sensei-plugin,svn-community,PHP,false,false,false,0,false,false,false,false +dimensi0n/filtrify,dimensi0n,JavaScript,false,false,false,0,false,false,false,false +Orange-OpenSource/lfn/onap/onap-tests,Orange-OpenSource,Python,true,true,false,5,false,true,false,true +lars.dormans/GlobalChestShop,lars.dormans,Java,false,false,false,0,false,false,false,false +mrjkc/gitlab-export-import,mrjkc,Ruby,false,false,false,0,false,false,false,false +pop-planet/silva,pop-planet,Rust,false,false,false,0,false,false,false,false +schoolmouv-open-source/vue-log-worker,schoolmouv-open-source,JavaScript,true,false,false,2,false,true,false,true +pop-planet/maco,pop-planet,Rust,true,false,false,1,false,true,false,false +wjy4528/hku-twebber-tutorial,wjy4528,Python,false,false,false,0,false,false,false,false +SiminDictionary/Simin,SiminDictionary,Python,false,false,false,0,false,false,false,false +DDP2-Ekstensi-CSUI/ddp-lab,DDP2-Ekstensi-CSUI,Java,false,false,false,0,false,false,false,false +InnoWebdev/club-portal,InnoWebdev,,false,false,false,0,false,false,false,false +SleepyInstructor/CPSC-2030-001-Assignments,SleepyInstructor,HTML,false,false,false,0,false,false,false,false +criesbeck/cs325,criesbeck,CommonLisp,false,false,false,0,false,false,false,false +n0r1sk/docker-volume-cephfs,n0r1sk,Go,true,false,false,1,true,false,false,false +coop-mods/Shared-Resources,coop-mods,Python,false,false,false,0,false,false,false,false +subnetzero/palladium,subnetzero,Rust,false,false,false,0,false,false,false,false +amurilloa/2018-IIIC-PI-LM,amurilloa,Java,false,false,false,0,false,false,false,false +remram44/taguette,remram44,Python,true,false,false,1,false,true,false,false +foodsharing-dev/foodsharing-android,foodsharing-dev,Kotlin,true,false,false,4,true,true,false,true +intr0/AppleBlock,intr0,,true,false,false,1,false,false,true,false +gitlab-org/sidekiq-reliable-fetch,gitlab-org,Ruby,true,false,false,1,false,true,false,false +hallowatcher/chat4osu,hallowatcher,TypeScript,true,false,false,2,true,true,false,false +bunny-team/bunny,bunny-team,Shell,false,false,false,0,false,false,false,false +sshoney/sshoney,sshoney,Python,true,true,false,4,true,true,false,true +ubports/app-dev/development-resources,ubports,,false,false,false,0,false,false,false,false +AnthonyLABARRE/cours_iut,AnthonyLABARRE,,false,false,false,0,false,false,false,false +meltano/dashboard,meltano,Vue,false,false,false,0,false,false,false,false +arielton_nunes_fate/eddfate20182,arielton_nunes_fate,Java,false,false,false,0,false,false,false,false +invuls/iot-projects/iotsecfuzz,invuls,Python,false,false,false,0,false,false,false,false +zipizap/gmailchatlib,zipizap,Go,false,false,false,0,false,false,false,false +labwrat/Firefox-user.js,labwrat,JavaScript,false,false,false,0,false,false,false,false +newspipe/newspipe,newspipe,Python,false,false,false,0,false,false,false,false +linran/wistomgraden,linran,Python,false,true,false,0,false,false,false,false +m_dilmac/useful-unix-commands,m_dilmac,,false,false,false,0,false,false,false,false +7learn-experts/php2.mf,7learn-experts,PHP,false,false,false,0,false,false,false,false +monetha/reputation-layer,monetha,,false,false,false,0,false,false,false,false +ajg0702/redmtn.fun,ajg0702,PHP,false,false,false,0,false,false,false,false +lebiniou/lebiniou,lebiniou,C,true,false,false,3,true,true,true,false +blendergeek/apps,blendergeek,Java,true,false,false,2,false,true,true,false +m03geek/fastify-metrics,m03geek,TypeScript,true,false,false,3,false,true,false,true +newebtime/pyrocms/portfolio-module,newebtime,PHP,false,false,false,0,false,false,false,false +cuelebra/dotfiles,cuelebra,CSS,false,false,false,0,false,false,false,false +gitlab-com/alliances,gitlab-com,,false,false,false,0,false,false,false,false +Neur0toxine/vivaldimodmanager,Neur0toxine,C#,false,false,false,0,false,false,false,false +onsemiro7988/strategy-backtest-with-python,onsemiro7988,JupyterNotebook,false,false,false,0,false,false,false,false +cnpsaintmartin/arpa-network,cnpsaintmartin,Vue,true,false,false,3,false,true,false,true +matteodc/civicwise-network-map,matteodc,JavaScript,true,false,false,1,false,false,true,false +r0bb12/armadaweb,r0bb12,HTML,false,false,false,0,false,false,false,false +Lipovsky/distsys-theory-course,Lipovsky,,false,false,false,0,false,false,false,false +eyeo/adblockplus/libadblockplus-android,eyeo,Java,true,false,false,1,true,false,false,false +postmarketOS/build.postmarketos.org,postmarketOS,PHP,true,false,false,1,false,true,false,false +sourmonday/development_fundamentals,sourmonday,HTML,false,false,false,0,false,false,false,false +prvInSpace/pinit,prvInSpace,Shell,true,false,false,1,false,true,false,false +manuee/deleted-modules,manuee,PHP,false,false,false,0,false,false,false,false +itugnu/lectures/django-2018-09,itugnu,Python,false,false,false,0,false,false,false,false +Morriar/inf3135-183-tp2-ennonce,Morriar,Makefile,false,false,false,0,false,false,false,false +Songoda/UltimateKits,Songoda,Java,true,false,true,1,true,false,false,false +hoanganfpt/speechtotext,hoanganfpt,JavaScript,false,false,false,0,false,false,false,false +lmcandrew/markdown-issue-viewer,lmcandrew,Ruby,true,false,false,1,false,true,false,false +Songoda/EpicSpawners,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicFurnaces,Songoda,Java,true,false,true,1,true,false,false,false +buspm/serverbus,buspm,JavaScript,false,false,false,0,false,false,false,false +hershaw/novamud,hershaw,Python,true,true,false,1,false,true,false,false +efunb/read_input,efunb,Rust,true,false,false,5,false,true,false,true +internetarchive/kre8,internetarchive,Shell,true,false,false,1,false,true,false,false +aaaa2002005/armordetection,aaaa2002005,C++,false,false,false,0,false,false,false,false +artefact2/sd-chkcryptoboot,artefact2,Shell,false,false,false,0,false,false,false,false +andrewn/gitlab-load-kit,andrewn,Go,false,false,false,0,false,false,false,false +fraidchicken/very-long-int,fraidchicken,C,false,false,false,0,false,false,false,false +znixian/luajit-decompiler,znixian,Python,false,false,false,0,false,false,false,false +stanma910716/line-bot-php-framwork,stanma910716,PHP,false,false,false,0,false,false,false,false +ucsd-gitlab/library/surfliner,ucsd-gitlab,,false,false,false,0,false,false,false,false +drowe67/LPCNet_codec2,drowe67,Python,false,false,false,0,false,false,false,false +epfl-dojo/dojo-elections,epfl-dojo,CSS,false,false,false,0,false,false,false,false +Founntain/osuplayerplus,Founntain,C#,false,false,false,0,false,false,false,false +codeshelter/codeshelter-web,codeshelter,Python,true,false,false,1,false,true,false,false +Nooody/antimention,Nooody,JavaScript,false,false,false,0,false,false,false,false +GIS-projects/qgis-geometry-generator-examples,GIS-projects,QML,false,false,false,0,false,false,false,false +JeSuisUnDesDeux/jesuisundesdeux,JeSuisUnDesDeux,Shell,true,false,false,1,false,false,true,false +kovri-project/kovri-fund,kovri-project,,false,false,false,0,false,false,false,false +sgrignard/serpyco,sgrignard,Python,true,true,false,3,false,true,false,false +RodrigoEndellan/algo3-tp2,RodrigoEndellan,Java,true,false,false,1,false,true,false,false +erme2/faber,erme2,Smarty,false,false,false,0,false,false,false,false +personal-server-community/awesome-personal-server,personal-server-community,,false,false,false,0,false,false,false,false +aossie/aossie-blogs,aossie,CSS,true,false,false,2,false,true,true,false +xXBlackMaskXx/blackarrow,xXBlackMaskXx,CSS,false,false,false,0,false,false,false,false +xXBlackMaskXx/bainstaller,xXBlackMaskXx,Shell,false,false,false,0,false,false,false,false +gitlab-org/gl-vue-cli,gitlab-org,JavaScript,true,false,false,1,false,true,false,false +r00k/maai,r00k,Python,false,true,false,0,false,false,false,false +ablondin/inf1070-aut2018-tp2,ablondin,Shell,false,false,false,0,false,false,false,false +01010101lzy/akali,01010101lzy,Dart,false,false,false,0,false,false,false,false +openpowerlifting/openlifter,openpowerlifting,JavaScript,true,false,false,2,false,true,true,false +gitlab-org/merge-train,gitlab-org,Shell,true,false,false,3,true,true,false,false +juliensimon/ent321,juliensimon,JupyterNotebook,false,false,false,0,false,false,false,false +bareya/houdinigolaem,bareya,C++,false,false,false,0,false,false,false,false +NickBusey/mashio,NickBusey,PHP,true,false,false,1,false,true,false,false +Archman-OS/archlinux_kullanici_kilavuzu,Archman-OS,,false,false,false,0,false,false,false,false +o-lang/docs,o-lang,,false,false,false,0,false,false,false,false +lust3088/wired-stream,lust3088,JavaScript,false,false,false,0,false,false,false,false +aifap/aifap-issues,aifap,,false,false,false,0,false,false,false,false +ploth/generation-of-training-data-for-deep-learning,ploth,,false,false,false,0,false,false,false,false +cash-accounts/specification,cash-accounts,,false,false,false,0,false,false,false,false +jamesdawson1995/persist,jamesdawson1995,Shell,false,false,false,0,false,false,false,false +srrg-software/srrg_orbslam,srrg-software,C++,false,false,false,0,false,false,false,false +gplmirror/telekom-speedport-w925v,gplmirror,C,false,false,false,0,false,false,false,false +CHEF-KOCH/good-old-downloads,CHEF-KOCH,HTML,false,false,false,0,false,false,false,false +david.araujo0/login-screen-sample-flutter,david.araujo0,Dart,false,false,false,0,false,false,false,false +devops-df/2016.brasilia.devopsdays.com.br,devops-df,JavaScript,true,false,false,1,false,true,false,false +packet.ninja/cl-cicd,packet.ninja,Ruby,true,false,false,2,false,true,true,false +mjcarson/Auto-Encode,mjcarson,JavaScript,true,false,false,2,false,false,true,false +digitalLumberjack/microservice-royale,digitalLumberjack,Go,true,false,false,3,true,false,true,false +deltares/rtc-tools-channel-flow,deltares,Python,true,false,false,2,true,false,true,false +harbottle/wine32,harbottle,Ruby,true,false,false,10,false,false,true,false +zedtux/rails-react-devise-bootstrap,zedtux,Ruby,true,false,false,3,true,true,true,false +avolokitin/neverNote,avolokitin,Python,true,true,false,3,true,true,true,false +yamalight/building-products-with-js,yamalight,JavaScript,true,false,false,4,true,true,true,true +L0gIn/git-file-downloader,L0gIn,JavaScript,true,false,false,3,true,true,true,false +gitlab-org/apilab,gitlab-org,JavaScript,true,false,false,3,true,true,true,false +librespacefoundation/satnogs/satnogs-decoders,librespacefoundation,Python,true,false,false,6,true,true,true,false +saycle.xyz/saycle.server,saycle.xyz,C#,true,false,false,3,true,true,true,false +gvarandas/bsb-dev-festival-ci,gvarandas,JavaScript,true,false,false,4,true,true,true,false +nutanix/curie,nutanix,Python,true,false,false,3,true,false,false,false +trainline-eu/stand,trainline-eu,Ruby,true,false,false,2,true,false,true,false +ci-cd-demos/symfony,ci-cd-demos,PHP,true,false,false,3,true,true,true,false +totakoko/onetimesecret,totakoko,Go,true,false,false,4,true,true,true,false +materials-modeling/icet,materials-modeling,Python,true,false,false,3,true,true,true,false +psono/psono-client,psono,JavaScript,true,false,false,4,true,true,true,true +gitlab-org/gitlab_emoji,gitlab-org,Ruby,true,false,false,1,false,true,false,false +beep/rwd-samplefiles,beep,HTML,false,false,false,0,false,false,false,false +dzaporozhets/gitlab-time-tracking,dzaporozhets,CSS,false,false,false,0,false,false,false,false +tessellator/tessellator,tessellator,Ruby,false,false,false,0,false,false,false,false +davethecomposer/platonic-music-engine,davethecomposer,Lua,false,false,false,0,false,false,false,false +lzh6710/ubuntu-trusty,lzh6710,,false,false,false,0,false,false,false,false +aurelien-lourot/importdir,aurelien-lourot,Python,false,false,false,0,false,false,false,false +CiaranG/feed2omb,CiaranG,Python,false,false,false,0,false,false,false,false +shared-puppet-modules-group/apt,shared-puppet-modules-group,Puppet,true,false,false,1,false,true,false,false +naolis-git/easycatalog-connector-by-naolis,naolis-git,PHP,false,false,false,0,false,false,false,false +ewhappcenter/safety-login,ewhappcenter,Java,false,false,false,0,false,false,false,false +jeff.triplett/django-pghero,jeff.triplett,Python,false,true,false,0,false,false,false,false +leafnode-2/leafnode-2,leafnode-2,C,false,false,false,0,false,false,false,false +gnu-social-statusnet/gnu-social,gnu-social-statusnet,PHP,false,false,false,0,false,false,false,false +dobrado/dobrado,dobrado,JavaScript,true,false,false,1,false,true,false,false +miscripts/tldd,miscripts,C++,false,false,false,0,false,false,false,false +fehlstart/fehlstart,fehlstart,C,false,false,false,0,false,false,false,false +chesswalk/chesswalk,chesswalk,Java,false,false,false,0,false,false,false,false +fbostanci/ezanvakti,fbostanci,Shell,false,false,false,0,false,false,false,false +warsaw/flufl.bounce,warsaw,Python,true,false,false,1,false,true,false,false +rpdev/opentodolist,rpdev,C++,true,false,false,4,true,false,true,false +echoes91/throwing,echoes91,Lua,false,false,false,0,false,false,false,false +iosa/iosacal,iosa,Python,false,false,false,0,false,false,false,false +0ad/0ad,0ad,C++,false,false,false,0,false,false,false,false +pelican/osgearth-aerodrome,pelican,C++,false,false,false,0,false,false,false,false +elopez/linux,elopez,,false,false,false,0,false,false,false,false +X9180/android_kernel_zte_x9180,X9180,,false,false,false,0,false,false,false,false +xphnx/onze_cm11_theme,xphnx,,true,false,false,1,false,true,false,false +pdftools/pdfposter,pdftools,Python,true,false,false,1,false,true,false,false +uhoreg/whalebuilder,uhoreg,Ruby,false,false,false,0,false,false,false,false +Pacodastre/Berou,Pacodastre,CSS,false,false,false,0,false,false,false,false +gitlab-com/gitlab-certificate-toolkit,gitlab-com,Ruby,false,false,false,0,false,false,false,false +sarakha63/SickRageVF,sarakha63,Python,false,false,false,0,false,false,false,false +marcofunaro/Lesson1,marcofunaro,,false,false,false,0,false,false,false,false +ericxdu/labyrinth-demo,ericxdu,Python,false,false,false,0,false,false,false,false +sfas/unipr.ftp,sfas,Java,false,false,false,0,false,false,false,false +nikolaterziev2/regex-crosswords,nikolaterziev2,Python,false,false,false,0,false,false,false,false +KitaitiMakoto/epub-parser,KitaitiMakoto,Ruby,true,false,false,2,false,true,true,false +jamesmarkchan/jDiskMark,jamesmarkchan,Java,false,false,false,0,false,false,false,false +icf-church/website,icf-church,PHP,false,false,false,0,false,false,false,false +ninjaos/ninjaos,ninjaos,Shell,false,false,false,0,false,false,false,false +jaspax/phonix,jaspax,C#,false,false,false,0,false,false,false,false +tylert/packer-build,tylert,PowerShell,false,false,false,0,false,false,false,false +trios-linux/trios,trios-linux,,false,false,false,0,false,false,false,false +esr/doclifter,esr,Python,false,false,false,0,false,false,false,false +roth1002/awesome-go,roth1002,Go,false,false,false,0,false,false,false,false +necrosoft/differently,necrosoft,HTML,false,false,false,0,false,false,false,false +cloudseasail/CloudIM,cloudseasail,JavaScript,false,false,false,0,false,false,false,false +gitlab-jp/www-gitlab-jp,gitlab-jp,CSS,true,false,false,3,true,false,true,false +lawrancej/COMP2270-2015,lawrancej,Shell,false,false,false,0,false,false,false,false +lawrancej/COMP3071-2015,lawrancej,Haskell,false,false,false,0,false,false,false,false +kslubl/Projek_Malam_Hari,kslubl,,false,false,false,0,false,false,false,false +Espionage724/Linux,Espionage724,Shell,false,false,false,0,false,false,false,false +maxmunzel/spiderswain,maxmunzel,Python,false,false,false,0,false,false,false,false +arstecnica/arstecnica.sqlalchemy.async,arstecnica,Python,false,false,false,0,false,false,false,false +robigalia/robigo,robigalia,,false,false,false,0,false,false,false,false +matecode/ayourls,matecode,Java,false,false,false,0,false,false,false,false +lcg/tucano,lcg,C++,true,false,false,1,false,true,false,false +vindarel/redbaron4emacs,vindarel,EmacsLisp,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo3,ad-si-2015-2,Java,false,false,true,0,false,false,false,false +ad-si-2015-2/projeto1-grupo4,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +kollo/X11-Basic,kollo,C,false,false,false,0,false,false,false,false +hw-manager/android,hw-manager,Java,true,false,false,1,false,true,false,false +esadhar/usable,esadhar,PHP,false,false,false,0,false,false,false,false +egh/zotxt-emacs,egh,EmacsLisp,false,false,false,0,false,false,false,false +CasperVector/pkuthss,CasperVector,TeX,false,false,false,0,false,false,false,false +zeroepoch/aftv2-tools,zeroepoch,Python,false,false,false,0,false,false,false,false +PantherForum/Panther,PantherForum,PHP,false,false,false,0,false,false,false,false +SirJamal/AzureEmulator,SirJamal,C#,false,false,false,0,false,false,false,false +xolf/homeworker,xolf,PHP,false,false,false,0,false,false,false,false +raphaelbastide/libre-foundries,raphaelbastide,,false,false,false,0,false,false,false,false +atomap/atomap,atomap,Python,true,false,false,2,false,true,true,false +craigbarnes/lua-gumbo,craigbarnes,C,true,false,false,2,false,true,false,false +munijava/pb162-2015-hw03-filemanager,munijava,Java,false,false,true,0,false,false,false,false +gtk/gtk-swift,gtk,Swift,true,false,false,1,false,true,false,false +TeddyDD/Godot-Cave-Generato,TeddyDD,GDScript,false,false,false,0,false,false,false,false +f-droid-mirrors/hash_droid,f-droid-mirrors,Java,false,false,false,0,false,false,false,false +xf-/shopware-vagrant,xf-,Ruby,false,false,false,0,false,false,false,false +gitlab-org/gitlab-elasticsearch-git,gitlab-org,Ruby,true,false,false,1,false,true,false,false +zj/Tanuki,zj,Elixir,false,false,false,0,false,false,false,false +savannidgerinel/feminists-hack-haskell,savannidgerinel,Haskell,false,false,false,0,false,false,false,false +enyalius/core,enyalius,PHP,false,false,false,0,false,false,false,false +RiCON/media-autobuild_suite,RiCON,Shell,false,false,false,0,false,false,false,false +pycqa/pycodestyle,pycqa,Python,false,false,false,0,false,false,false,false +yogeshc/awesome-deep-learning,yogeshc,,false,false,false,0,false,false,false,false +TheFederation/backup-restore,TheFederation,HTML,false,false,false,0,false,false,false,false +couchbaseliteswift/framework,couchbaseliteswift,Swift,false,false,false,0,false,false,false,false +jmis/exilecraft,jmis,TypeScript,false,false,false,0,false,false,false,false +dtubber/rubberduk,dtubber,C,false,false,false,0,false,false,false,false +Dubbled/dotfiles,Dubbled,Lua,false,false,false,0,false,false,false,false +central-force-optimization/oo-central-force-optimization,central-force-optimization,C,false,false,false,0,false,false,false,false +DaniloS92/agricultura2,DaniloS92,JavaScript,false,false,false,0,false,false,false,false +rubyonrailsbrasil/rubyonrailsbrasil.gitlab.io,rubyonrailsbrasil,Ruby,true,false,false,1,false,true,false,false +mixedCase/sddm-lain-wired-theme,mixedCase,QML,false,false,false,0,false,false,false,false +european-data-portal/sparql-manager,european-data-portal,CSS,true,false,true,1,false,false,true,false +caml/basc,caml,Python,false,false,false,0,false,false,false,false +pages/hyde,pages,HTML,true,false,false,2,false,true,true,false +vijoin/Proyecto-PRO-Nacional,vijoin,,false,false,false,0,false,false,false,false +geoff-nagy/sigil,geoff-nagy,C,false,false,false,0,false,false,false,false +twittner/cql-io,twittner,Haskell,true,false,false,1,false,true,false,false +denis4net/toxvpn,denis4net,C,true,false,false,1,true,false,false,false +pages/nanoc,pages,HTML,true,false,false,1,false,true,false,false +sse/sophos,sse,C++,false,false,false,0,false,false,false,false +vindarel/bookshops,vindarel,Python,true,true,false,1,false,true,false,false +rauko1753/gorl,rauko1753,Go,false,false,false,0,false,false,false,false +JobV/jobv.gitlab.io,JobV,HTML,true,false,false,1,false,true,false,false +pages/octopress,pages,CSS,true,false,false,1,false,true,false,false +artem-sidorenko/chef-rkt,artem-sidorenko,Ruby,true,false,false,3,false,true,true,false +RobertCochran/neato-graph-bar,RobertCochran,EmacsLisp,false,false,false,0,false,false,false,false +ImaProgrammer/RuststationX,ImaProgrammer,Rust,false,false,false,0,false,false,false,false +Hellfire01/MangaScrapp,Hellfire01,Ruby,false,false,false,0,false,false,false,false +SysAlex/gitlab-telegram-bot,SysAlex,Go,false,false,false,0,false,false,false,false +rhab/PyOTRS,rhab,Python,true,true,false,3,false,true,false,false +zombie-raptor/zombie-raptor,zombie-raptor,CommonLisp,true,false,false,1,false,true,false,false +vasily_makarov/saedit2,vasily_makarov,C,true,false,false,1,false,true,false,false +duncan-bayne/mint-setup,duncan-bayne,PHP,false,false,false,0,false,false,false,false +mudar-ca/huegoallight-android,mudar-ca,Java,true,false,false,1,false,false,true,false +imp/requests-rs,imp,Rust,true,false,false,2,false,true,true,false +hyper-expanse/open-source/conventional-gitlab-releaser,hyper-expanse,JavaScript,true,false,false,2,false,true,false,true +jlebrun/projetcomem,jlebrun,Java,false,false,false,0,false,false,false,false +z.kulas/BiouC,z.kulas,C++,false,false,false,0,false,false,false,false +goodwin-europe/raw-esp,goodwin-europe,C,false,false,false,0,false,false,false,false +chris-morgan/tween,chris-morgan,Rust,false,false,false,0,false,false,false,false +JFT/Irrlicht_extended,JFT,C,true,false,false,1,true,false,false,false +KlipKyle/Blueshell,KlipKyle,CSS,false,false,false,0,false,false,false,false +steve-perkins/MediaGallery-javafx,steve-perkins,Java,false,false,false,0,false,false,false,false +jormelton/classctem,jormelton,HTML,false,false,false,0,false,false,false,false +CodeursEnLiberte/fondations,CodeursEnLiberte,StandardML,false,false,false,0,false,false,false,false +diegotsouza83/Android,diegotsouza83,Java,false,false,false,0,false,false,false,false +algomus.fr/dezrann,algomus.fr,HTML,true,false,false,1,false,true,false,false +AERIUS/AERIUS,AERIUS,Java,false,false,true,0,false,false,false,false +ITsvetkoFF/code-and-pain,ITsvetkoFF,JavaScript,true,false,false,1,false,true,false,false +hunter2.app/hunter2,hunter2.app,Python,true,false,false,4,false,false,false,true +misterdiaz/curso-frontend,misterdiaz,HTML,false,false,false,0,false,false,false,false +4degrees/clique,4degrees,Python,false,false,false,0,false,false,false,false +atomicrex/atomicrex,atomicrex,C++,true,false,false,2,true,false,true,false +presenter.club/presenter.club,presenter.club,JavaScript,false,false,false,0,false,false,false,false +camelot-project/camelot,camelot-project,Clojure,true,false,false,3,true,true,false,false +technomancy/l2love,technomancy,Lua,false,false,false,0,false,false,false,false +Rich-Harris/svg-parser,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +henck/bootstrap-visio-templates,henck,,false,false,false,0,false,false,false,false +truchas/truchas-release,truchas,Fortran,false,false,false,0,false,false,false,false +dave_m/clamtk,dave_m,Perl,false,false,false,0,false,false,false,false +stavros/A6-ESP8266-breakout,stavros,Shell,false,false,false,0,false,false,false,false +ad-si-2016-2/ircnode,ad-si-2016-2,JavaScript,false,false,false,0,false,false,false,false +takluyver/enboard,takluyver,Python,false,false,false,0,false,false,false,false +jeffdn/rust-canteen,jeffdn,Rust,true,false,false,1,false,true,false,false +harbottle/puppet-mattermost,harbottle,Ruby,true,false,false,2,false,true,false,false +iankelling/evhz,iankelling,C,false,false,false,0,false,false,false,false +greysonp/gitlab-ci-shared-runner-android-example,greysonp,Java,true,false,false,1,false,true,false,false +motorica-org/gitlab-ci-android,motorica-org,,true,false,false,1,true,false,false,false +vandy-aad-2/ImageDownloader,vandy-aad-2,Java,false,false,false,0,false,false,false,false +vandy-aad-2/MapFromContactsAsync,vandy-aad-2,Java,false,false,false,0,false,false,false,false +patoncrispy/serverless-sample-app,patoncrispy,JavaScript,false,false,false,0,false,false,false,false +db260179/lede-bpi-r1,db260179,C,false,false,false,0,false,false,false,false +exarh-team/skaro-server,exarh-team,Python,false,true,false,0,false,false,false,false +gitlab-cookbooks/gitlab-vault,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true +MoOx/phenomic,MoOx,JavaScript,false,false,false,0,false,false,false,false +muelli/barcodegen,muelli,Java,false,false,false,0,false,false,false,false +PythonDevCommunity/pythondev-site,PythonDevCommunity,Python,true,true,false,2,true,true,false,false +gitlab-examples/review-apps-openshift,gitlab-examples,HTML,true,false,false,6,true,true,false,true +nanodeath/kollapse,nanodeath,Kotlin,true,false,false,1,false,true,false,false +algebra-und-zahlentheorie/analysis,algebra-und-zahlentheorie,TeX,true,false,false,2,false,true,true,false +guile-git/guile-git,guile-git,Scheme,false,false,false,0,false,false,false,false +wxmetvis/met.3d,wxmetvis,C++,false,false,false,0,false,false,false,false +kaushalmodi/kaushalmodi.gitlab.io,kaushalmodi,Shell,false,false,false,0,false,false,false,false +tensors/TuckerMPI,tensors,C++,true,false,false,2,true,true,false,false +pidila/checklist-pidila-old,pidila,CSS,false,false,false,0,false,false,false,false +kedwinchen/Linux-ScoringEngine,kedwinchen,Shell,false,false,false,0,false,false,false,false +Conan_Kudo/snapcore-mkrpmdistcoresnap,Conan_Kudo,Python,true,false,false,1,true,false,false,false +mbukatov/pytest-ansible-playbook,mbukatov,Python,true,false,false,1,false,true,false,false +mcvj2016/mcvj2016,mcvj2016,C++,false,false,false,0,false,false,false,false +MarcStan/Resource.Embedder,MarcStan,C#,false,false,false,0,false,false,false,false +NobleworksSoftware/icon-overlay-plugin,NobleworksSoftware,Groovy,true,false,false,2,true,true,false,false +robocup-sim/JaSMIn,robocup-sim,JavaScript,false,false,false,0,false,false,false,false +clorichel/vue-gitlab-api,clorichel,JavaScript,true,false,false,2,false,true,true,false +minoca/third-party,minoca,Shell,false,false,false,0,false,false,false,false +kaushalmodi/hugo-theme-refined,kaushalmodi,CSS,false,false,false,0,false,false,false,false +ThmmyNoLife/mTHMMY,ThmmyNoLife,Java,false,false,false,0,false,false,false,false +emacs-guix/emacs-guix,emacs-guix,EmacsLisp,false,false,false,0,false,false,false,false +kholdfuzion/Gold007,kholdfuzion,Assembly,false,false,false,0,false,false,false,false +pmjones/php-request,pmjones,PHP,false,false,false,0,false,false,false,false +basg/og-aws,basg,Shell,false,false,false,0,false,false,false,false +drutopia/solidarity,drutopia,,false,false,false,0,false,false,false,false +vandy-aad-3/aad-3-assg-1,vandy-aad-3,Java,false,false,false,0,false,false,false,false +uriel_hedz/didit,uriel_hedz,TypeScript,false,false,false,0,false,false,false,false +brianegan/flutter_stream_friends,brianegan,Dart,true,false,false,1,false,true,false,false +paddatrapper/log-out-button-gnome-extension,paddatrapper,JavaScript,false,false,false,0,false,false,false,false +ausbitbank/pizzagate,ausbitbank,HTML,false,false,false,0,false,false,false,false +darkguichou/sortieDeChienGa,darkguichou,Java,false,false,false,0,false,false,false,false +jayathungek/team-A-project,jayathungek,TeX,false,false,false,0,false,false,false,false +moshmage/rxjs-socket.io,moshmage,TypeScript,true,false,false,2,false,true,true,false +TomasHubelbauer/bloggo-dotnet-core-gitlab-ci,TomasHubelbauer,C#,true,false,false,1,false,true,false,false +non.est.sacra/zoomba,non.est.sacra,Java,false,false,true,0,false,false,false,false +axet/libtorrent,axet,Go,false,false,false,0,false,false,false,false +VictorLamoine/ros_gitlab_ci,VictorLamoine,Shell,true,false,false,1,true,false,false,false +Zipcore/Discord,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +simp-council/simp-governance,simp-council,,false,false,false,0,false,false,false,false +gibberfish/pancrypticon,gibberfish,Shell,true,false,false,2,false,false,false,false +norad/api,norad,Ruby,true,false,false,2,false,true,true,false +ContinuumGraphics/Continuum-Shaders,ContinuumGraphics,GLSL,false,false,false,0,false,false,false,false +x653/bullseye,x653,Java,false,false,false,0,false,false,false,false +Axelander/SonicStreamer,Axelander,C#,false,false,false,0,false,false,false,false +windowssnt/PHPFileManager,windowssnt,PHP,false,false,false,0,false,false,false,false +ditto/ditto,ditto,C#,true,false,false,1,false,true,false,false +fyfywkaGroup/fyfywkaBanner,fyfywkaGroup,PHP,false,false,false,0,false,false,false,false +antis81/Toxer,antis81,C++,false,false,false,0,false,false,false,false +BrinoBrasil/Brino,BrinoBrasil,Java,false,false,false,0,false,false,false,false +scastiel/crypticker,scastiel,JavaScript,true,false,false,2,false,true,true,false +ossguy/sgx-catapult,ossguy,Ruby,false,false,false,0,false,false,false,false +MUSIT-Norway/musit-frontend,MUSIT-Norway,TypeScript,true,false,false,2,true,true,false,false +Jamesst20/SMSGear,Jamesst20,JavaScript,false,false,false,0,false,false,false,false +vandenoever/sousa,vandenoever,Rust,false,false,false,0,false,false,false,false +maikebing/GitLab.VisualStudio,maikebing,C#,true,false,false,1,false,false,false,false +xmpp-rs/xmpp-rs,xmpp-rs,Rust,true,false,false,1,false,true,false,false +Isleward/ModNecromancer,Isleward,JavaScript,false,false,false,0,false,false,false,false +Gustafsson-lab/lassim,Gustafsson-lab,Python,false,true,false,0,false,false,false,false +mrsheepsheep/EDMC-Inara,mrsheepsheep,Python,false,false,false,0,false,false,false,false +devskiller-task-developers/devskiller-sample-maven-calculator,devskiller-task-developers,Java,false,false,true,0,false,false,false,false +vgg/vise,vgg,C++,false,false,false,0,false,false,false,false +krt/ffupdater,krt,Java,false,false,false,0,false,false,false,false +chaica/discountbot,chaica,Python,false,false,false,0,false,false,false,false +rahul-x/newchrome,rahul-x,Shell,false,false,false,0,false,false,false,false +quatomic/qengine,quatomic,C++,true,false,false,1,false,true,false,false +smc/padakosham,smc,Python,false,true,false,0,false,false,false,false +rocketchat-demo/hubot-natural,rocketchat-demo,CoffeeScript,false,false,false,0,false,false,false,false +goeb/corky,goeb,Lua,false,false,false,0,false,false,false,false +grails-3-book/intro-concepts,grails-3-book,Groovy,true,false,false,2,true,true,false,false +fampinheiro/git-to-live-source,fampinheiro,Shell,true,false,false,4,true,true,true,true +pages/jigsaw,pages,CSS,true,false,false,1,false,true,false,false +cszcms/cszcms-contactsdb,cszcms,PHP,false,false,false,0,false,false,false,false +cszcms/cszcms-shop,cszcms,PHP,false,false,false,0,false,false,false,false +HiPhish/repl.nvim,HiPhish,Vimscript,false,false,false,0,false,false,false,false +glitchheart/glitchheartengine,glitchheart,C,false,false,false,0,false,false,false,false +LibreGames/jumpnbump,LibreGames,C,false,false,false,0,false,false,false,false +mtuska/OnlineSubsystemPlayFab,mtuska,C++,false,false,false,0,false,false,false,false +gitmate/open-source/gitmate-2-frontend,gitmate,TypeScript,true,false,false,3,true,false,true,true +gitlab-org/Dockerfile,gitlab-org,,false,false,false,0,false,false,false,false +danialbehzadi/rouhani96_bot,danialbehzadi,Python,false,true,false,0,false,false,false,false +reswue/trustmaster-sdk-php,reswue,PHP,false,false,false,0,false,false,false,false +gl-support/testlab,gl-support,Shell,false,false,false,0,false,false,false,false +cheminfIBB/pafnucy,cheminfIBB,JupyterNotebook,true,false,false,1,false,true,false,false +PlsKnotThisAgain/Hushstone,PlsKnotThisAgain,C#,false,false,false,0,false,false,false,false +alelec/gitlab-release,alelec,Python,true,false,false,2,false,true,true,false +Vinibo/gnome-shell-extension-transittracker,Vinibo,JavaScript,false,false,false,0,false,false,false,false +redguides/VeryVanilla,redguides,C++,false,false,false,0,false,false,false,false +chaica/boost,chaica,Python,false,false,false,0,false,false,false,false +aossie/Agora-Web,aossie,Scala,true,false,false,1,false,true,false,false +JHVenn/Free-Clip,JHVenn,C++,false,false,false,0,false,false,false,false +metachris/python-boilerplate-frontend,metachris,CSS,true,false,false,1,false,true,false,false +pygotham/2017,pygotham,CSS,false,false,false,0,false,false,false,false +gitlab-org/prometheus-client-mmap,gitlab-org,Ruby,true,false,false,2,false,true,true,false +Mottie/GitLab-userscripts,Mottie,JavaScript,false,false,false,0,false,false,false,false +janneke/tinycc,janneke,C,false,false,false,0,false,false,false,false +dknof/FreeDoko,dknof,C++,false,false,false,0,false,false,false,false +fathom/fathom.gitlab.io,fathom,TeX,true,false,false,1,false,false,true,false +textileio/Neuralyzer,textileio,Swift,true,false,false,1,true,false,false,false +mbrix/bitcoineum,mbrix,JavaScript,false,false,false,0,false,false,false,false +barrel-db/barrel,barrel-db,Erlang,true,false,false,1,false,true,false,false +FishBus/factorio_modpack1,FishBus,Lua,false,false,false,0,false,false,false,false +pubsweet/pubsweet,pubsweet,,false,false,false,0,false,false,false,false +Philbrick/rilcontour,Philbrick,Python,false,true,false,0,false,false,false,false +rinconresearch/raptor,rinconresearch,Verilog,true,false,false,1,false,true,false,false +richardjortega/iot-310b-student,richardjortega,Python,false,false,false,0,false,false,false,false +Zatherz/magicjson,Zatherz,Crystal,true,false,false,1,false,true,false,false +macta/PharoLambda,macta,Smalltalk,true,false,false,3,true,false,true,false +inkscape/vectors/content,inkscape,,false,false,false,0,false,false,false,false +nobodyinperson/thunar-custom-actions,nobodyinperson,M4,true,false,false,5,true,false,true,false +fdroid/docker-executable-fdroidserver,fdroid,,true,false,false,3,true,true,false,true +MLandriscina/protoShark,MLandriscina,Makefile,false,false,false,0,false,false,false,false +java-16-6/cinema,java-16-6,Java,false,false,false,0,false,false,false,false +Dev-Team-BSMH/shablool,Dev-Team-BSMH,JavaScript,false,false,false,0,false,false,false,false +franek_madej/obecnosc,franek_madej,Python,true,false,false,1,false,true,false,false +coates-digital-productions/content-framework,coates-digital-productions,JavaScript,false,false,false,0,false,false,false,false +dolgikh.lex/open-alien,dolgikh.lex,Java,false,false,false,0,false,false,false,false +nemolovich/codeplatform,nemolovich,HTML,true,false,false,1,false,false,true,false +dwicahyo-dev/thisNilaiSiswa,dwicahyo-dev,PHP,false,false,false,0,false,false,false,false +disarm/douma-app,disarm,HTML,true,false,false,1,false,true,false,false +rusticbison/xwallet,rusticbison,Swift,false,false,false,0,false,false,false,false +salfter/mph_switch,salfter,Python,false,false,false,0,false,false,false,false +dwarf-fortress/revised,dwarf-fortress,,false,false,false,0,false,false,false,false +EpitechContent/dump,EpitechContent,Python,false,false,false,0,false,false,false,false +nobodyinperson/co2monitor,nobodyinperson,Makefile,true,false,false,5,true,false,true,false +bgez/bgez,bgez,Python,true,false,false,1,false,false,false,false +Zipcore/WeaponPaints,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +playFrom/playfrom,playFrom,Vue,false,false,false,0,false,false,false,false +horance/tensorflow-internals,horance,TeX,false,false,false,0,false,false,false,false +MadLittleMods/playing-with-selenium-on-gitlab-ci,MadLittleMods,JavaScript,true,false,false,2,true,true,false,false +AlanWANG1995/LogInputAndroid,AlanWANG1995,Java,false,false,false,0,false,false,false,false +mydropwizard/drupal8-civicrm,mydropwizard,PHP,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/oncall-robot-assistant,gitlab-com,Go,true,false,false,2,false,true,false,false +zirdorost/zirdorost-web,zirdorost,HTML,false,false,false,0,false,false,false,false +zirdorost/zirdorost-library,zirdorost,Python,false,false,false,0,false,false,false,false +james_m/texopic,james_m,Python,false,false,false,0,false,false,false,false +neucrypt/floram,neucrypt,C,false,false,false,0,false,false,false,false +michaelziray/2017-Fall-CS402,michaelziray,HTML,false,false,false,0,false,false,false,false +vindarel/cl-torrents,vindarel,CommonLisp,true,false,false,2,true,true,false,false +locket/locket-server,locket,JavaScript,false,false,false,0,false,false,false,false +gcnit/nitdgp-it-notes,gcnit,HTML,false,false,false,0,false,false,false,false +maratonlinuxero/maratonlinuxero.gitlab.io,maratonlinuxero,CSS,true,false,false,1,false,false,true,false +nqs/ictp_school,nqs,C++,false,false,false,0,false,false,false,false +thomasf2/FERNANDEZ,thomasf2,Java,false,false,false,0,false,false,false,false +tonioguzmanf/firebase-chat-functions,tonioguzmanf,JavaScript,false,false,false,0,false,false,false,false +bonobows/shadow-hunter-server,bonobows,Java,true,false,false,3,true,true,false,false +fintechlabs/fapi-conformance-suite,fintechlabs,Java,true,false,true,8,true,true,false,true +SixbucksSolutions/CommunityBot,SixbucksSolutions,C#,false,false,false,0,false,false,false,false +cameralibre/cut-copy-and-paste,cameralibre,Shell,false,false,false,0,false,false,false,false +Screwtapello/rustbud,Screwtapello,Python,false,false,false,0,false,false,false,false +raspberry-pi-cast/cast-server,raspberry-pi-cast,JavaScript,false,false,false,0,false,false,false,false +unityversity/InternetVARchive,unityversity,C#,false,false,false,0,false,false,false,false +Nicd/mebe,Nicd,Elixir,false,false,false,0,false,false,false,false +abate/meteor-volunteers,abate,CoffeeScript,false,false,false,0,false,false,false,false +Martin/_generate-openpgpkey-hu-3,Martin,Python,false,false,false,0,false,false,false,false +hamidrezakp/TelegramWikiBot,hamidrezakp,Python,false,false,false,0,false,false,false,false +ftornil/lucilia,ftornil,JavaScript,true,false,false,1,true,false,false,false +lostinlight/per_aspera_ad_astra,lostinlight,HTML,false,false,false,0,false,false,false,false +iblech/garben-und-logik,iblech,TeX,true,false,false,1,false,false,true,false +sorenmat/seneferu,sorenmat,Go,true,false,false,3,true,false,false,true +Unteraqwx/Sunshine,Unteraqwx,C#,false,false,false,0,false,false,false,false +jammerxd/ETCARS,jammerxd,C++,false,false,false,0,false,false,false,false +pantomath-io/demo-grpc,pantomath-io,Go,false,false,false,0,false,false,false,false +timrs2998/newsie,timrs2998,TypeScript,true,false,false,3,true,true,false,true +gitlab-org/gl-sast,gitlab-org,,false,false,false,0,false,false,false,false +Gutawer/gzdoom-zforms,Gutawer,Python,false,false,false,0,false,false,false,false +roboticsclub/nico/competition_bot,roboticsclub,Java,false,false,false,0,false,false,false,false +macsy/stylish_fadeplustheme,macsy,CSS,false,false,false,0,false,false,false,false +robocup-sim/SimSpark,robocup-sim,C++,false,false,false,0,false,false,false,false +OrangeShark/guile-skeleton,OrangeShark,M4,false,false,false,0,false,false,false,false +ftonye/420-PA2-TT-Lab5,ftonye,Java,false,false,false,0,false,false,false,false +Hyperion777/VectorDrawable2Svg,Hyperion777,Python,false,false,false,0,false,false,false,false +lafricain79/LinVB,lafricain79,Objective-C,false,false,false,0,false,false,false,false +njam/terraform-aws-syncthing,njam,HCL,false,false,false,0,false,false,false,false +Boeing737/lily_survey,Boeing737,JavaScript,false,false,false,0,false,false,false,false +SWEng2017/SWEng,SWEng2017,Java,true,false,false,4,true,true,true,false +recalbox/recalbox-support,recalbox,,false,false,false,0,false,false,false,false +skddc/inspektor,skddc,JavaScript,false,false,false,0,false,false,false,false +evanp/places-pub,evanp,JavaScript,true,false,false,3,true,true,false,true +alexmart1989/Game,alexmart1989,C++,true,false,false,1,true,false,false,false +burke-software/django-server-side-piwik,burke-software,Python,true,true,false,1,false,true,false,false +deckar01/ctf-api,deckar01,Python,true,true,false,1,false,true,false,false +isrolik/summary-courses,isrolik,,false,false,false,0,false,false,false,false +dosuken123/java-sample-hello-world,dosuken123,Java,true,false,false,2,true,false,false,false +systerel/S2OPC,systerel,C,true,false,false,5,true,true,false,false +python-devs/importlib_resources,python-devs,Python,true,false,false,3,false,true,true,false +znixian/payday2-superblt-lua,znixian,Lua,false,false,false,0,false,false,false,false +zj/snippet,zj,Go,true,false,false,2,false,true,false,true +nowayout/yara_sweeper,nowayout,Python,false,true,false,0,false,false,false,false +IzzyOnDroid/applists,IzzyOnDroid,,false,false,false,0,false,false,false,false +tessia-project/tessia,tessia-project,Python,true,true,false,3,true,false,false,true +define-private-public/SharpCamera,define-private-public,C#,false,false,false,0,false,false,false,false +datadrivendiscovery/images,datadrivendiscovery,Shell,true,false,false,2,true,false,true,false +spdf/elektron,spdf,Go,true,false,false,1,false,true,false,false +onerelief/pwa,onerelief,HTML,false,false,false,0,false,false,false,false +meibenny/elephants,meibenny,HTML,false,false,false,0,false,false,false,false +AlfonsoML/pogo-s2,AlfonsoML,JavaScript,false,false,false,0,false,false,false,false +vhs_kurse/ruby_kurs_01_module,vhs_kurse,Ruby,false,false,false,0,false,false,false,false +HoShiMin/Avanguard,HoShiMin,C++,false,false,false,0,false,false,false,false +gableroux/gitlab-ci-example-nodejs,gableroux,JavaScript,true,false,false,1,false,true,false,false +dapps/react-native-web3-sample,dapps,JavaScript,false,false,false,0,false,false,false,false +nvidia/cudagl,nvidia,,false,false,false,0,false,false,false,false +craftsmen/workshop-blockchain,craftsmen,Java,false,false,false,0,false,false,false,false +NotYetGames/DlgSystemExample,NotYetGames,C++,false,false,false,0,false,false,false,false +gitlab-org/release/docs,gitlab-org,,false,false,false,0,false,false,false,false +gitlab-com/people-ops/vacancy,gitlab-com,,false,false,false,0,false,false,false,false +eyeo/adblockplus/adblockpluscore,eyeo,JavaScript,true,false,false,1,false,true,false,false +eyeo/adblockplus/libadblockplus,eyeo,C++,true,false,false,1,true,false,false,false +eyeo/adblockplus/adblockpluschrome,eyeo,JavaScript,true,false,false,3,true,true,false,false +linbit/linstor,linbit,Java,false,false,false,0,false,false,false,false +psywng/dragonica-chapter-3,psywng,,false,false,false,0,false,false,false,false +amartin1911/teXisUMSA,amartin1911,TeX,false,false,false,0,false,false,false,false +de_licious/Notes,de_licious,TeX,true,false,false,1,false,false,true,false +runline/farmavel,runline,PHP,false,false,false,0,false,false,false,false +giulica/INF2005-H2018-Enonces,giulica,,false,false,false,0,false,false,false,false +mappies/configurapi,mappies,JavaScript,true,false,false,2,false,false,false,false +our-sci/dashboards,our-sci,JavaScript,false,false,false,0,false,false,false,false +koha-community/koha-testing-docker,koha-community,Shell,false,false,false,0,false,false,false,false +Oslandia/osgeo4w,Oslandia,Batchfile,true,false,false,1,true,false,false,false +tobias47n9e/wikibase_rs,tobias47n9e,Rust,true,false,false,1,false,true,false,false +javipc/seguime,javipc,Java,false,false,false,0,false,false,false,false +lcoremodders/Across-The-Galaxy,lcoremodders,Java,false,false,false,0,false,false,false,false +mh.hima/AP-Sessions,mh.hima,Java,false,false,false,0,false,false,false,false +hpdeifel/aurs,hpdeifel,Rust,true,false,false,1,false,true,false,false +allthethings/allthethings.gitlab.io,allthethings,CSS,true,false,false,6,false,false,false,false +Plasticity/magnitude,Plasticity,Python,true,true,false,3,false,false,false,false +gabrielepmattia/materialfields,gabrielepmattia,Kotlin,false,false,false,0,false,false,false,false +ahayzen/flathub-api-stats-generator,ahayzen,Python,false,false,false,0,false,false,false,false +joewreschnig/gitlab-ci-mode-flycheck,joewreschnig,EmacsLisp,true,false,false,1,false,true,false,false +trackmyride/TrackMyRide,trackmyride,TypeScript,true,false,false,3,true,true,true,false +gitlab-com/chatops,gitlab-com,Ruby,true,false,false,2,true,true,false,false +maurom/deb10,maurom,Makefile,false,false,false,0,false,false,false,false +timvisee/ffsend,timvisee,Rust,true,false,false,5,true,true,false,true +stemcellbioengineering/context-explorer,stemcellbioengineering,Python,true,false,false,1,false,true,false,false +modos189/cikinfo,modos189,Python,false,false,false,0,false,false,false,false +rockdaboot/libhsts,rockdaboot,C,true,false,false,1,false,true,false,false +AndreasK/Atari-Mac-MagiC-Sources,AndreasK,Assembly,false,false,false,0,false,false,false,false +sixsixfive/Hedera-icons,sixsixfive,Shell,false,false,false,0,false,false,false,false +cspublic/certbot-plugin-gandi,cspublic,Python,false,false,false,0,false,false,false,false +haboustak/gitlab-artifact-tools,haboustak,Python,true,false,false,2,true,true,false,false +N70/Kerbalism,N70,C#,false,false,false,0,false,false,false,false +DenysVuika/medium-i18n,DenysVuika,TypeScript,false,false,false,0,false,false,false,false +cyberus/NOVA,cyberus,C++,false,false,false,0,false,false,false,false +lkcamp/lkcamp.gitlab.io,lkcamp,HTML,true,false,false,1,false,true,false,false +MrSquid/dominator,MrSquid,C++,false,false,false,0,false,false,false,false +lgbtplus/youth-bot,lgbtplus,JavaScript,false,false,false,0,false,false,false,false +caspermeijn/onvifviewer,caspermeijn,C++,true,false,false,4,true,true,true,false +richardjortega/iot-310a-sp18-code,richardjortega,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/distribution/gitlab-provisioner,gitlab-org,HCL,true,false,false,5,false,true,false,false +mash-graz/resolve,mash-graz,Python,true,false,false,2,false,false,true,false +gitlab-org/gitter/irc-bridge,gitlab-org,JavaScript,true,false,false,2,false,true,true,false +spritely/goblins,spritely,Racket,false,false,false,0,false,false,false,false +baumrock/RockFinder,baumrock,,false,false,false,0,false,false,false,false +monaize-mnz/mnz-wallet,monaize-mnz,JavaScript,true,false,false,3,true,false,false,true +foli/ng-blog,foli,TypeScript,false,false,false,0,false,false,false,false +la_zone/18_bam_181,la_zone,,false,false,false,0,false,false,false,false +charts/gitlab-omnibus,charts,Smarty,true,false,false,2,false,true,false,true +ensc/ci-mirror,ensc,Python,false,false,false,0,false,false,false,false +InvoxiPlayGames/FlipnotePatcher,InvoxiPlayGames,C#,false,false,false,0,false,false,false,false +koha-community/koha-manual,koha-community,Python,false,false,false,0,false,false,false,false +ayana/fun,ayana,JavaScript,false,false,false,0,false,false,false,false +7learn-experts/php.exp,7learn-experts,PHP,false,false,false,0,false,false,false,false +readybytes/ReactNavigationExampleVersion2,readybytes,JavaScript,false,false,false,0,false,false,false,false +compiz/compiz-core,compiz,C,false,false,false,0,false,false,false,false +dwt1/dt-dark-theme,dwt1,CSS,false,false,false,0,false,false,false,false +jschx/uguush,jschx,Shell,false,false,false,0,false,false,false,false +mosra/magnum,mosra,C++,false,false,false,0,false,false,false,false +fredericopissarra/t50,fredericopissarra,C,false,false,false,0,false,false,false,false +edvorg/req-package,edvorg,EmacsLisp,false,false,false,0,false,false,false,false +Marfjeh/coinhive-block,Marfjeh,C,false,false,false,0,false,false,false,false +juliensimon/aws,juliensimon,Shell,false,false,false,0,false,false,false,false +jD91mZM2/powerline-rs,jD91mZM2,Rust,true,false,false,1,false,true,false,false +Aberrantfox/WarmBot,Aberrantfox,Kotlin,true,false,true,2,true,true,false,false +Mayccoll/Linux-Utils,Mayccoll,PHP,false,false,false,0,false,false,false,false +hsleisink/banshee,hsleisink,PHP,false,false,false,0,false,false,false,false +hsleisink/monitor,hsleisink,PHP,false,false,false,0,false,false,false,false +Enthymeme/hackneyed-x11-cursors,Enthymeme,Makefile,false,false,false,0,false,false,false,false +KaesDingeling/Hybrid-Menu,KaesDingeling,CSS,false,false,false,0,false,false,false,false +Dringgstein/Commander-Genius,Dringgstein,C,false,false,false,0,false,false,false,false +scarpetta/pdfmixtool,scarpetta,C++,true,false,false,1,true,false,false,false +spirt/csgosimple,spirt,C++,false,false,false,0,false,false,false,false +radar-parlamentar/radar,radar-parlamentar,Python,true,false,false,3,true,false,false,true +n0r1sk/kubernetes-the-roguelike-way,n0r1sk,,false,false,false,0,false,false,false,false +fbb-git/yodl,fbb-git,C,false,false,false,0,false,false,false,false +MeanEYE/Sunflower,MeanEYE,Python,false,false,false,0,false,false,false,false +PancakeSoftware/openHabAI,PancakeSoftware,C++,true,false,false,4,true,true,false,false +derSchabi/Terminightor,derSchabi,Java,false,false,false,0,false,false,false,false +pages/frozen-flask,pages,Python,true,true,false,1,false,true,false,false +alaskalinuxuser/app_justnotes,alaskalinuxuser,Java,false,false,false,0,false,false,false,false +Lenovsky/nuake,Lenovsky,Vimscript,false,false,false,0,false,false,false,false +ma1uta/mxtoot,ma1uta,Java,false,false,true,0,false,false,false,false +elad.noor/equilibrator-api,elad.noor,Python,true,false,false,2,false,true,true,false +rwig/backify,rwig,JavaScript,true,false,false,1,false,false,true,false +lramage94/mkdocs-bootstrap386,lramage94,HTML,true,false,false,1,false,true,false,false +jacekkowalczyk82/my-debian,jacekkowalczyk82,HTML,false,false,false,0,false,false,false,false +alpinebits/developers-kit,alpinebits,Ruby,false,false,false,0,false,false,false,false +teozkr/Sbtix,teozkr,Scala,false,false,false,0,false,false,false,false +Codamic/hellhound,Codamic,Clojure,true,false,false,1,false,true,false,false +makson/Recultis,makson,Python,true,false,false,1,false,true,false,false +peamapeam/my-dot-files,peamapeam,EmacsLisp,false,false,false,0,false,false,false,false +cmocka/cmocka,cmocka,C,true,false,false,1,false,true,false,false +solarus-games/zsxd,solarus-games,Lua,false,false,false,0,false,false,false,false +Matrixcoffee/matrix-client-core,Matrixcoffee,Python,false,false,false,0,false,false,false,false +alforiumstudios/monsterembassy,alforiumstudios,GDScript,false,false,false,0,false,false,false,false +neptronix/nepalmap,neptronix,Dart,false,false,false,0,false,false,false,false +smoghal/cognito-amplify-idp-auth,smoghal,JavaScript,false,false,false,0,false,false,false,false +fsub/kakoune-mark,fsub,,false,false,false,0,false,false,false,false +dslackw/sun,dslackw,Python,false,true,false,0,false,false,false,false +kronops/k-maji-orquesta,kronops,Perl,false,false,false,0,false,false,false,false +axelsommerfeldt/caption,axelsommerfeldt,TeX,false,false,false,0,false,false,false,false +seanwasere/fork-me-on-gitlab,seanwasere,,true,false,false,1,false,false,true,false +stevenshiau/clonezilla,stevenshiau,Shell,false,false,false,0,false,false,false,false +mb5quax/devrant-sweetener,mb5quax,JavaScript,false,false,false,0,false,false,false,false +beerfactory.org/plasma,beerfactory.org,Scala,true,false,false,2,true,true,false,false +pixstem/pixstem,pixstem,Python,true,false,false,2,false,true,true,false +theswiftdev/cvvm,theswiftdev,Swift,false,false,false,0,false,false,false,false +Emerald_Knight/awesome-tildes,Emerald_Knight,,false,false,false,0,false,false,false,false +maribedran/tapioca-senado,maribedran,Python,false,false,false,0,false,false,false,false +thefinn93/signald,thefinn93,Java,true,false,false,4,true,false,false,true +alfredchen/linux-pds,alfredchen,C,false,false,false,0,false,false,false,false +dennismaxjung/vscode-dotnet-auto-attach,dennismaxjung,TypeScript,true,false,false,3,true,true,true,false +ennswi/AndroidCaldavSyncAdapater,ennswi,Java,false,false,false,0,false,false,false,false +kunzisoft/Android-KeyboardSwitcher,kunzisoft,Java,false,false,false,0,false,false,false,false +jamadazi/core_memo,jamadazi,Rust,false,false,false,0,false,false,false,false +t60r/dotfiles,t60r,Lua,false,false,false,0,false,false,false,false +mlcdresden/pages,mlcdresden,JavaScript,true,false,false,2,false,true,true,false +lostsoulsreborn/lostsoulsreborn,lostsoulsreborn,Shell,false,false,false,0,false,false,false,false +damysteryman/XC2SaveNETThingy,damysteryman,C#,false,false,false,0,false,false,false,false +fccoelho/SRI2018,fccoelho,JupyterNotebook,false,false,false,0,false,false,false,false +zachmandeville/dat-zine-library,zachmandeville,JavaScript,false,false,false,0,false,false,false,false +Systemoutprintln/Werewolf_Helper,Systemoutprintln,Java,false,false,false,0,false,false,false,false +Piou-piou/ruined-world-api,Piou-piou,,true,false,false,1,false,true,false,false +apozas/bayesian-dl-quantum,apozas,Python,false,false,false,0,false,false,false,false +technotame/dangerous-methods,technotame,Python,false,false,false,0,false,false,false,false +frontierdevelopmentlab/astrobiology/pyatmos,frontierdevelopmentlab,JupyterNotebook,false,false,false,0,false,false,false,false +shupakabras/kdb-intellij-plugin,shupakabras,Java,false,false,false,0,false,false,false,false +Cydhra/Vibrant,Cydhra,Kotlin,true,false,false,1,true,false,false,false +postmarketOS/osk-sdl,postmarketOS,C++,true,false,false,2,true,true,false,false +tfs_s18_admin/homework,tfs_s18_admin,C,false,false,false,0,false,false,false,false +Ethik69/Simplon_Ethan,Ethik69,,false,false,false,0,false,false,false,false +roothorick/WineOpenVR,roothorick,C++,false,false,false,0,false,false,false,false +davivc/gitlab-ci-google-cloud-kubernetes,davivc,HTML,true,false,false,3,true,true,true,false +Ashpex/Linux_Games,Ashpex,,false,false,false,0,false,false,false,false +tmendes/waterydroid,tmendes,Java,true,false,false,1,false,false,true,false +george99g/QDiscord,george99g,C++,false,false,false,0,false,false,false,false +SunyataZero/hello-anxiety,SunyataZero,Python,false,true,false,0,false,false,false,false +william.belanger/obsuite,william.belanger,Python,false,false,false,0,false,false,false,false +theherk/commons,theherk,Shell,false,false,false,0,false,false,false,false +chase9/mojave-wallpaper-generator,chase9,Swift,false,false,false,0,false,false,false,false +juanitobananas/drowser,juanitobananas,Kotlin,false,false,false,0,false,false,false,false +tan-hui/doc,tan-hui,,false,false,false,0,false,false,false,false +yoginth/extractemail,yoginth,Python,false,false,false,0,false,false,false,false +Cyprias/SkunkTrader,Cyprias,JavaScript,false,false,false,0,false,false,false,false +juliohm1978/easy-keepalived,juliohm1978,Shell,true,false,false,1,true,false,false,false +yoginth/pname,yoginth,Python,false,false,false,0,false,false,false,false +tobiaswkjeldsen/carwingsflutter,tobiaswkjeldsen,Dart,true,false,false,1,true,false,false,false +yoginth/100DaysOfCode,yoginth,,false,false,false,0,false,false,false,false +yoginth/pokemonscli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/heroescli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/dognamescli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/catnamescli,yoginth,Python,false,false,false,0,false,false,false,false +jrswab/nebulus,jrswab,Python,false,false,false,0,false,false,false,false +logotype/fixparser,logotype,JavaScript,true,false,false,5,false,true,true,false +bloomberg/recc,bloomberg,C++,true,false,false,2,true,true,false,false +claystation/laravel-gitlab-ci-docker,claystation,Shell,true,false,false,1,false,false,false,false +crwxrws/psycheled,crwxrws,Rust,true,false,false,1,true,false,false,false +exng/vuenote,exng,Vue,true,false,false,3,true,true,true,false +MaphsterB/pyramid-rlp,MaphsterB,Python,true,true,false,1,false,true,false,false +razcore/BPSRender,razcore,Python,false,false,false,0,false,false,false,false +crushv/pic_pub,crushv,Dart,false,false,false,0,false,false,false,false +littlesaints/functional-streams,littlesaints,Java,true,false,false,2,true,false,true,false +swinslow/fossdriver,swinslow,,false,false,false,0,false,false,false,false +jiwopene/temperature-android,jiwopene,Java,false,false,false,0,false,false,false,false +technotame/cookie-decrypter,technotame,Python,false,false,false,0,false,false,false,false +assoconnect/doctrine-validator-bundle,assoconnect,PHP,true,false,false,1,false,true,false,false +mdaffin/nand2tetris,mdaffin,Rust,true,false,false,1,false,true,false,false +drummyfish/raycastlib,drummyfish,C,false,false,false,0,false,false,false,false +hrbrmstr/gepetto,hrbrmstr,JavaScript,false,false,false,0,false,false,false,false +lukasz.wojtow/genotick,lukasz.wojtow,Java,false,false,true,0,false,false,false,false +omnileads/ominicontacto,omnileads,Python,true,false,false,1,false,true,false,false +moodlenet/servers/federated,moodlenet,Elixir,true,false,false,3,true,true,true,false +Flohack74/tg-plus,Flohack74,C++,true,false,false,3,true,false,false,false +OdinTdh/pyLinuxWheel,OdinTdh,Python,false,false,false,0,false,false,false,false +Aberrantfox/EtherealBot,Aberrantfox,Kotlin,false,false,true,0,false,false,false,false +davidv171/Theatron,davidv171,Shell,false,false,false,0,false,false,false,false +blacknet-ninja/blacknet,blacknet-ninja,Kotlin,false,false,false,0,false,false,false,false +srrg-software/srrg_g2o_chordal_plugin,srrg-software,C++,false,false,false,0,false,false,false,false +AutowareAuto/AutowareAuto,AutowareAuto,C++,true,false,false,3,true,false,true,false +gitlab-com/business-ops/Business-Operations,gitlab-com,,false,false,false,0,false,false,false,false +siper/Adept,siper,Kotlin,true,false,false,3,true,true,true,false +tecnoprofe/bootstrap_dj01,tecnoprofe,HTML,false,false,false,0,false,false,false,false +oofga/eps/eps_2018_2/ep1,oofga,Makefile,false,false,false,0,false,false,false,false +opennota/findimagedupes,opennota,Go,true,false,false,2,true,true,false,false +roothorick/dedbae,roothorick,C++,false,false,false,0,false,false,false,false +nberend/api-server,nberend,JavaScript,false,false,false,0,false,false,false,false +mtarif/programming-rust,mtarif,CSS,true,false,false,2,false,true,true,false +dhutty/modern-provisioning_code,dhutty,HCL,false,false,false,0,false,false,false,false +brunoamancio/remotePoW,brunoamancio,C,false,false,false,0,false,false,false,false +grisetti/probabilistic_robotics_2018_19,grisetti,Matlab,false,false,false,0,false,false,false,false +ajinkyakolhe112/gcp-infra-onboard,ajinkyakolhe112,JupyterNotebook,false,false,false,0,false,false,false,false +TheLion1675/ss13-scp13,TheLion1675,DM,false,false,false,0,false,false,false,false +friendlyelec/rk3399-android-8.1,friendlyelec,,false,false,false,0,false,false,false,false +lebedev.games/botox-di,lebedev.games,Python,true,false,false,2,false,true,true,false +estrategies_per_apoderament_digital/estrategies_municipals_per_apoderament_digital,estrategies_per_apoderament_digital,CSS,true,false,false,2,false,true,true,false +foss4/libreoffice-persian-book,foss4,,false,false,false,0,false,false,false,false +neachdainn/nng-rs,neachdainn,Rust,true,false,false,3,false,true,false,false +markotka/recsys2018-tutorial,markotka,HTML,false,false,false,0,false,false,false,false +hpimr/hpimr,hpimr,AGSScript,false,false,false,0,false,false,false,false +Isolario/bgpscanner,Isolario,C,false,false,false,0,false,false,false,false +nsnam/nsnam-web,nsnam,HTML,false,false,false,0,false,false,false,false +Songoda/Arconix,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicDispensers,Songoda,Java,true,false,true,1,true,false,false,false +Songoda/EpicFarming,Songoda,Java,true,false,true,1,true,false,false,false +daksh7011/metis,daksh7011,JavaScript,true,false,false,2,false,true,true,false +nberend/react-homepage,nberend,JavaScript,false,false,false,0,false,false,false,false +viseven-it-academy-2018/lectures,viseven-it-academy-2018,JavaScript,false,false,false,0,false,false,false,false +frankiezafe/gdnative_osc,frankiezafe,C++,false,false,false,0,false,false,false,false +jindraivanek/ast-viewer,jindraivanek,F#,true,false,false,2,false,false,true,false +LipiLee/appforthemilitary,LipiLee,,false,false,false,0,false,false,false,false +myii/ut-tweak-tool,myii,QML,true,false,false,1,true,false,false,false +masuit/soft,masuit,,false,false,false,0,false,false,false,false +dawidpotocki/biual,dawidpotocki,Python,false,false,false,0,false,false,false,false +librespacefoundation/gsbc2019,librespacefoundation,,false,false,false,0,false,false,false,false +Theemacsshibe/magrathea,Theemacsshibe,CommonLisp,false,false,false,0,false,false,false,false +tjgruber/win10crappremover,tjgruber,PowerShell,false,false,false,0,false,false,false,false +libreml/libreml,libreml,,true,false,false,6,true,true,false,true +christhoval06/umecit-lab-01-2018,christhoval06,PHP,false,false,false,0,false,false,false,false +gitlab-cd/ssh-template,gitlab-cd,Shell,true,false,false,1,false,true,false,false +hadrosoft/memphis-98,hadrosoft,CSS,false,false,false,0,false,false,false,false +ao/glxgears-discordrpc,ao,C,false,false,false,0,false,false,false,false +rverissimo/cookbook,rverissimo,,false,false,false,0,false,false,false,false +nicofirst1/ai_notes,nicofirst1,TeX,false,false,false,0,false,false,false,false +david.araujo0/itau_screen_flutter,david.araujo0,Dart,false,false,false,0,false,false,false,false +jenswangenheim/itbs-android,jenswangenheim,JavaScript,true,false,false,1,false,false,true,false +r-russo/dice-image,r-russo,Python,false,false,false,0,false,false,false,false +kermit-js/kermit,kermit-js,JavaScript,true,false,false,3,true,true,true,false +deltares/rtc-tools,deltares,Python,true,false,false,5,true,true,true,false +rodo/lolyx,rodo,Python,false,true,false,0,false,false,false,false +davical-project/awl,davical-project,PHP,true,false,false,1,false,true,false,false +Smibu/eol2,Smibu,C++,false,false,false,0,false,false,false,false +xonotic/xonotic-maps.pk3dir,xonotic,ShaderLab,false,false,false,0,false,false,false,false +shine-upon-thee/joystick,shine-upon-thee,GDScript,false,false,false,0,false,false,false,false +dzaporozhets/six,dzaporozhets,Ruby,true,false,false,1,false,true,false,false +colan/drupal-helpers,colan,Shell,false,false,false,0,false,false,false,false +bkurdali/tube-addons,bkurdali,Python,false,false,false,0,false,false,false,false +anarcat/irklab,anarcat,Python,false,false,false,0,false,false,false,false +xonotic/xonotic.org,xonotic,HTML,false,false,false,0,false,false,false,false +Elinvention/ice-emblem,Elinvention,Python,false,false,false,0,false,false,false,false +svaksha/Julia.jl,svaksha,Julia,false,false,false,0,false,false,false,false +terceiro/chake,terceiro,Ruby,true,false,false,1,false,true,false,false +evol/evol-hercules,evol,C,true,false,false,3,true,true,false,false +lldc/lldc,lldc,TypeScript,false,false,false,0,false,false,false,false +com-informatimago/com-informatimago,com-informatimago,CommonLisp,false,false,false,0,false,false,false,false +mdevlamynck/sugarcub,mdevlamynck,HTML,false,false,false,0,false,false,false,false +gnowledge/gstudio,gnowledge,Python,false,true,false,0,false,false,false,false +jas/cosmos,jas,Shell,false,false,false,0,false,false,false,false +kolab-roundcube-plugins/calendar,kolab-roundcube-plugins,PHP,false,false,false,0,false,false,false,false +sortix/libz,sortix,C,false,false,false,0,false,false,false,false +onics/onics,onics,C,false,false,false,0,false,false,false,false +fg777_seattle/fg777_seattle,fg777_seattle,,false,false,false,0,false,false,false,false +X9180/android_device_zte_x9180,X9180,C++,false,false,false,0,false,false,false,false +libregraphicsmag/vol2issue4,libregraphicsmag,,false,false,false,0,false,false,false,false +2gisqtandroid/qtandroidextensions,2gisqtandroid,C++,false,false,false,0,false,false,false,false +sarakha63/CouchPotatoServer,sarakha63,Python,false,false,false,0,false,false,false,false +xonotic-zykure/multibot,xonotic-zykure,Python,false,false,false,0,false,false,false,false +chrsmith/selenium,chrsmith,JavaScript,false,false,false,0,false,false,false,false +vn971/cevo,vn971,Pascal,false,false,false,0,false,false,false,false +kaliko/sima,kaliko,Python,true,false,false,2,true,true,false,false +sofreeus/rhcsg,sofreeus,,false,false,false,0,false,false,false,false +sofreeus/linux_camp,sofreeus,C++,false,false,false,0,false,false,false,false +iggdrasil/chimere,iggdrasil,JavaScript,true,false,false,1,false,true,false,false +chicken-sdl2/chicken-sdl2,chicken-sdl2,Scheme,false,false,false,0,false,false,false,false +esr/greed,esr,C,false,false,false,0,false,false,false,false +postgis/postgis,postgis,PLpgSQL,false,false,false,0,false,false,false,false +at-home-modifier/at-home-modifier-evdev,at-home-modifier,C,false,false,false,0,false,false,false,false +dzaporozhets/clojure-web-application,dzaporozhets,Clojure,false,false,false,0,false,false,false,false +gbraad/resume,gbraad,,true,false,false,2,true,false,true,false +ShadowVPN/shadowsocks-iOS,ShadowVPN,Objective-C,false,false,false,0,false,false,false,false +snouf/gcweb,snouf,PHP,false,false,false,0,false,false,false,false +octagesimal/consol2016,octagesimal,,false,false,false,0,false,false,false,false +bitfireAT/vcard4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false +pixdrift/cendroid-xu4,pixdrift,,false,false,false,0,false,false,false,false +ad-si-2015-2/projeto1-grupo1,ad-si-2015-2,Java,false,false,false,0,false,false,false,false +jangorecki/r.gitlab.ci,jangorecki,R,true,false,false,1,false,true,false,false +camd/cmr,camd,Python,true,false,false,1,false,true,false,false +asap/asap,asap,C++,true,false,false,1,false,true,false,false +riseup/up1-cli-client-nodejs,riseup,JavaScript,false,false,false,0,false,false,false,false +Chromatin/GameDog,Chromatin,,false,false,false,0,false,false,false,false +cenocipher/cenocipher,cenocipher,C,false,false,false,0,false,false,false,false +rpennec/svgswap,rpennec,C++,false,false,false,0,false,false,false,false +mailman/mailman-runner,mailman,Shell,false,false,false,0,false,false,false,false +sdonalcreative/made-up-and-probably-does-not-exist,sdonalcreative,JavaScript,false,false,false,0,false,false,false,false +o9000/phwmon,o9000,Python,false,false,false,0,false,false,false,false +xonotic/daemon-engine,xonotic,C++,false,false,false,0,false,false,false,false +db260179/openwrt-bpi-r1-prebuilt,db260179,Roff,false,false,false,0,false,false,false,false +gulajava.mini/MapBoxSampel,gulajava.mini,Java,false,false,false,0,false,false,false,false +gitlabcontribute/Austin-Summit-2016-project,gitlabcontribute,,false,false,false,0,false,false,false,false +startmat/document_analyzer,startmat,Python,false,true,false,0,false,false,false,false +standards/HDRTools,standards,C++,false,false,false,0,false,false,false,false +middleman-themes/middleman,middleman-themes,CSS,true,false,false,2,false,true,true,false +dahl-us-lab/spatcov,dahl-us-lab,CMake,false,false,false,0,false,false,false,false +lely_industries/co,lely_industries,C,false,false,false,0,false,false,false,false +dennis-hamester/scraw,dennis-hamester,CSS,true,false,false,2,true,false,false,false +pycqa/pylint,pycqa,Python,false,false,false,0,false,false,false,false +ideasman42/blender-curve-draw-addon,ideasman42,Python,false,false,false,0,false,false,false,false +proinchile/repolink,proinchile,,false,false,false,0,false,false,false,false +domatix/odoo-rest,domatix,Python,false,false,false,0,false,false,false,false +proinchile/proinjobs,proinchile,Ruby,false,false,false,0,false,false,false,false +craigbarnes/showdown,craigbarnes,Vala,true,false,false,1,true,false,false,false +easwareapps/Quoter,easwareapps,Java,false,false,false,0,false,false,false,false +raduab/gitlab-timesheet,raduab,Shell,false,false,false,0,false,false,false,false +stavros/pastery,stavros,Python,false,false,false,0,false,false,false,false +xuhdev/dired-quick-sort,xuhdev,EmacsLisp,false,false,false,0,false,false,false,false +spice/win32/spice-nsis,spice,NSIS,false,false,false,0,false,false,false,false +gitlab-com/chat-gitlab-com,gitlab-com,,false,false,false,0,false,false,false,false +robconnolly/mycroft-home-assistant,robconnolly,Python,false,true,false,0,false,false,false,false +dovereem/xtcetools,dovereem,HTML,true,false,true,2,true,false,true,false +gmazoyer/docker-genieacs,gmazoyer,Ruby,false,false,false,0,false,false,false,false +gitlab-com/finance,gitlab-com,JupyterNotebook,false,false,false,0,false,false,false,false +gitlab-ci-testing/spiky,gitlab-ci-testing,JavaScript,true,false,false,1,false,true,false,false +glancr/modules,glancr,Shell,true,false,false,2,true,false,true,false +gitzone/npmts,gitzone,TypeScript,true,false,false,5,false,true,false,true +fommil/emacs-darcula-theme,fommil,EmacsLisp,false,false,false,0,false,false,false,false +technomancy/jeejah,technomancy,Lua,false,false,false,0,false,false,false,false +boxedcode/alpine-nginx-php-fpm,boxedcode,Shell,false,false,false,0,false,false,false,false +surajraghuvanshi/Privlage-Esclator,surajraghuvanshi,Python,false,false,false,0,false,false,false,false +asgn4csd/pucsdcourses,asgn4csd,PLpgSQL,false,false,false,0,false,false,false,false +nd-cse-30331-fa16/examples,nd-cse-30331-fa16,C++,false,false,false,0,false,false,false,false +ricoru21/py_test,ricoru21,PHP,false,false,false,0,false,false,false,false +GitLabRGI/erdc/geopackage-python,GitLabRGI,Python,true,true,false,3,false,true,true,false +debtcollective/debtcollective,debtcollective,JavaScript,true,false,false,1,false,true,false,false +nim-lang/nim,nim-lang,Nim,true,false,false,3,true,true,true,false +political-revolution/political-revolution.gitlab.io,political-revolution,JavaScript,true,false,false,3,false,false,true,false +foodsharing-dev/devblog,foodsharing-dev,CSS,true,false,false,2,false,true,true,false +piratesahoy/potc-remastered,piratesahoy,C#,false,false,false,0,false,false,false,false +tglman/persy,tglman,Rust,true,false,false,3,false,false,false,false +clemolgat-SBR/leopard-imaging,clemolgat-SBR,C++,true,false,false,2,true,false,false,false +vandy-aad-2/aad-2-assg-1,vandy-aad-2,Java,false,false,false,0,false,false,false,false +packaging/nextcloud,packaging,Shell,true,false,false,2,false,false,false,false +itxtech/cenisys,itxtech,C++,true,false,false,3,true,true,true,false +rawkode/docker-guide-book,rawkode,,false,false,false,0,false,false,false,false +DorianPeregrim/tbot,DorianPeregrim,Go,false,false,false,0,false,false,false,false +mtnygard/arch-folder-template,mtnygard,CSS,false,false,false,0,false,false,false,false +xuhdev/dired-icon,xuhdev,EmacsLisp,false,false,false,0,false,false,false,false +IgorX2/ProgramskiJezici1,IgorX2,C++,false,false,false,0,false,false,false,false +jeremy-w/macchiato,jeremy-w,,false,false,false,0,false,false,false,false +arcfire/rumba,arcfire,Python,true,false,false,2,false,true,true,false +ideasman42/bmesh-rs,ideasman42,Rust,false,false,false,0,false,false,false,false +tdemeester/GitLab-API,tdemeester,PowerShell,false,false,false,0,false,false,false,false +fatihacet/uzaktancalismak-com,fatihacet,CSS,true,false,false,1,false,false,true,false +scaffrey/hosts,scaffrey,Rascal,false,false,false,0,false,false,false,false +victor.trucco/Multicore_Bitstreams,victor.trucco,,false,false,false,0,false,false,false,false +eneiluj/gpxedit-oc,eneiluj,JavaScript,false,false,false,0,false,false,false,false +sat-metalab/switcher,sat-metalab,C,true,false,false,3,false,true,false,false +sat-mtl/telepresence/scenic,sat-mtl,JavaScript,true,false,false,3,true,true,false,false +vancan1ty/emacs_powerpack,vancan1ty,C,false,false,false,0,false,false,false,false +mikecardwell/ept3,mikecardwell,JavaScript,false,false,false,0,false,false,false,false +olberger/org-teaching,olberger,HTML,true,false,false,1,false,false,true,false +benkoo/ComputationalThinking,benkoo,Assembly,false,false,false,0,false,false,false,false +StevenBlack/hosts,StevenBlack,Python,false,true,false,0,false,false,false,false +coala/landing,coala,Python,true,false,false,2,true,false,false,true +shkitayama/ansible_practical_guide,shkitayama,Python,false,false,false,0,false,false,false,false +BeatBotTeam/SelfBot,BeatBotTeam,Lua,false,false,false,0,false,false,false,false +edleh/pampi,edleh,JavaScript,false,false,false,0,false,false,false,false +SlavMetal/telegram-solarized-dark-theme,SlavMetal,Shell,false,false,false,0,false,false,false,false +agrumery/aGrUM,agrumery,C++,true,false,false,2,true,false,true,false +satorix/omniauth-oauth2-generic,satorix,Ruby,false,false,false,0,false,false,false,false +atorresm/rocket-guardian,atorresm,Java,false,false,false,0,false,false,false,false +nvidia/digits,nvidia,,true,false,false,1,false,false,false,false +openconnect/openconnect,openconnect,C,true,false,false,1,false,true,false,false +gitlab-org/multi-user-prometheus,gitlab-org,,false,false,false,0,false,false,false,false +devdoblea/chkin-chkout.local,devdoblea,PHP,false,false,false,0,false,false,false,false +danielo515/tw5-auto-publish2gitlab-pages,danielo515,Shell,true,false,false,1,false,false,true,false +jabiertxof/gimpToSVG,jabiertxof,Python,false,false,false,0,false,false,false,false +Napolitain/genetic-flappy-bird,Napolitain,Python,false,false,false,0,false,false,false,false +scastiel/protonmail-theme-creator,scastiel,JavaScript,true,false,false,2,false,true,true,false +omos/argon2-gpu,omos,C++,true,false,false,2,true,true,false,false +AB2017-Rails/notiboard,AB2017-Rails,Ruby,false,false,false,0,false,false,false,false +MUSIT-Norway/musit,MUSIT-Norway,Scala,true,false,false,2,true,true,false,false +jameslong/sceopa,jameslong,Elixir,false,false,false,0,false,false,false,false +microservices-for-everyone/independent-deployability,microservices-for-everyone,Shell,false,false,false,0,false,false,false,false +LCaraccio/clever-sheep,LCaraccio,Python,true,false,false,4,false,true,true,false +ostrokach-forge/graph-tool,ostrokach-forge,Shell,true,false,false,3,true,true,true,false +charlesjosh/CoE-115-Support-Group,charlesjosh,Assembly,false,false,false,0,false,false,false,false +robgeerts/dashboard,robgeerts,JavaScript,false,false,false,0,false,false,false,false +noppo/gevent-websocket,noppo,Python,false,true,false,0,false,false,false,false +demurgos/hre,demurgos,Haxe,true,false,false,1,false,true,false,false +MazeChaZer/soundless,MazeChaZer,PHP,false,false,false,0,false,false,false,false +IvanSanchez/Leaflet.GLMarkers,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +radiolise/radiolise.gitlab.io,radiolise,JavaScript,true,false,false,1,false,false,true,false +gitlab-org/gitlab-elasticsearch-indexer,gitlab-org,Go,true,false,false,1,false,true,false,false +ahmedcharles/lua-rs,ahmedcharles,C,true,false,false,1,false,true,false,false +dennis-hamester/vks,dennis-hamester,Rust,true,false,false,1,true,false,false,false +tychosoft/sipwitchqt,tychosoft,C++,true,false,false,2,true,false,false,false +gitlab-com/community-writers,gitlab-com,,false,false,false,0,false,false,false,false +Lignum/urn-love2d-bindings,Lignum,Lua,false,false,false,0,false,false,false,false +phreakuencies/nuttx_book,phreakuencies,,true,false,false,1,false,false,true,false +gl-support/gitlab-support-toolkit,gl-support,,false,false,false,0,false,false,false,false +samueldr/nixos-configuration,samueldr,Nix,false,false,false,0,false,false,false,false +mossj32/EDuke32-OldMP_Maintenance,mossj32,C,false,false,false,0,false,false,false,false +recalbox/recalbox-configgen,recalbox,Python,true,false,false,1,true,false,false,false +Mactroll/CertRetriever,Mactroll,Swift,false,false,false,0,false,false,false,false +sundbp/serio,sundbp,Clojure,false,false,false,0,false,false,false,false +barrel/new-developer,barrel,,false,false,false,0,false,false,false,false +madresistor/diy-vt100-firmware,madresistor,C,false,false,false,0,false,false,false,false +aossie/CrowdAlert,aossie,JavaScript,true,false,false,1,false,true,false,false +qgisapi/qgisremote,qgisapi,R,false,false,false,0,false,false,false,false +eladmaz/SSL-API,eladmaz,Java,true,false,true,2,true,true,false,false +Mactroll/Dossy,Mactroll,Swift,false,false,false,0,false,false,false,false +retro-coder/kickassemblerextension,retro-coder,TypeScript,true,false,false,1,false,true,false,false +ThomasAUZINGER/vutinfth,ThomasAUZINGER,TeX,false,false,false,0,false,false,false,false +Wolfvak/BAX,Wolfvak,C,false,false,false,0,false,false,false,false +slcu/teamHJ/tissue,slcu,C++,false,false,false,0,false,false,false,false +bremby/project-garibaldi,bremby,CMake,false,false,false,0,false,false,false,false +Tkkg1994/BatMan-Rom,Tkkg1994,Shell,false,false,false,0,false,false,false,false +sfu-rcl/Taiga,sfu-rcl,SystemVerilog,false,false,false,0,false,false,false,false +arm-hpc/packages,arm-hpc,Python,true,false,false,1,false,true,false,false +mindig.marton/ha-emulated_roku,mindig.marton,Python,false,false,false,0,false,false,false,false +ornix/ornix,ornix,JavaScript,true,false,false,1,false,true,false,false +JAForbes/static-sum-type,JAForbes,JavaScript,true,false,false,1,false,true,false,false +craigbarnes/dte,craigbarnes,C,true,false,false,2,true,false,false,false +Bimbol/Gothic2Online,Bimbol,C++,false,false,false,0,false,false,false,false +suicao/vn-accent-restoration,suicao,Python,false,true,false,0,false,false,false,false +Mizux/gitlabci,Mizux,Shell,true,false,false,4,true,true,false,true +mjanetmars/switch-container,mjanetmars,JavaScript,false,false,false,0,false,false,false,false +kyledouglasolsen/SimpleInject,kyledouglasolsen,C#,false,false,false,0,false,false,false,false +gitlab-com/SEO-SEM,gitlab-com,,false,false,false,0,false,false,false,false +Boimard/Boimard,Boimard,Java,false,false,false,0,false,false,false,false +haggl/dotmgr,haggl,Python,true,true,false,1,false,true,false,false +codepolitan-lab/opensources/tebakkata-chatbot,codepolitan-lab,PHP,false,false,false,0,false,false,false,false +dzaporozhets/clj-gitlab,dzaporozhets,Clojure,true,false,false,3,false,true,true,false +DSASanFrancisco/membership_ui,DSASanFrancisco,JavaScript,false,false,false,0,false,false,false,false +InnocentBug/SOMA,InnocentBug,C,false,false,false,0,false,false,false,false +sonusdept/sonusmodular,sonusdept,C++,false,false,false,0,false,false,false,false +sugarcube/sugarcube,sugarcube,JavaScript,true,false,false,1,false,true,false,false +masaeedu/docker-client,masaeedu,Shell,true,false,false,2,true,false,true,false +ablondin/inf3135-aut2017-tp2,ablondin,C,true,false,false,2,true,true,false,false +artur-scholz/stretchy,artur-scholz,Python,true,true,false,2,true,true,false,false +Artjoker-Training/calendar-backend,Artjoker-Training,JavaScript,false,false,false,0,false,false,false,false +Zatherz/cray,Zatherz,Crystal,false,false,false,0,false,false,false,false +timelord/timelord,timelord,Python,true,true,false,1,false,true,false,false +abate/volunteers-nowhere,abate,JavaScript,false,false,false,0,false,false,false,false +iota-foundation/software/entangled,iota-foundation,C,true,false,false,1,false,true,false,false +alanramsey/auto-reload-tab,alanramsey,JavaScript,false,false,false,0,false,false,false,false +Mactroll/NoMAD-ADAuth,Mactroll,C,false,false,false,0,false,false,false,false +stavros/freeotp-to-andotp-migrator,stavros,Python,false,false,false,0,false,false,false,false +distributopia/sticker-bay,distributopia,,false,false,false,0,false,false,false,false +mueller-ma/View-android-version,mueller-ma,Java,true,false,false,2,true,true,false,false +ENKI-portal/jupyterlab_gitlab,ENKI-portal,TypeScript,false,false,false,0,false,false,false,false +EthGiving/EthGiving,EthGiving,JavaScript,false,false,false,0,false,false,false,false +ercom/livebootp,ercom,Shell,true,false,false,2,true,false,false,false +berryelectronics/mi-band-2-firmware-editor,berryelectronics,C#,false,false,false,0,false,false,false,false +mfjrsptr/HTML,mfjrsptr,HTML,false,false,false,0,false,false,false,false +socrates-conference/socrates-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true +omgtransit/omgtransit,omgtransit,JavaScript,true,false,false,1,false,false,true,false +mech-lang/core,mech-lang,Rust,true,false,false,1,false,true,false,false +WeSuckLess/Reactor,WeSuckLess,Perl,false,false,false,0,false,false,false,false +tobiaskoch/gitlab-ci-example-dotnetcore,tobiaskoch,C#,true,false,false,2,false,true,true,false +michaelziray/2018-Android-Spring,michaelziray,Kotlin,false,false,false,0,false,false,false,false +clumpy/CLUMPY,clumpy,C++,true,false,false,1,true,false,false,false +gableroux/gitlab-ci-example-django,gableroux,Python,true,true,false,1,false,true,false,false +BVollmerhaus/dotfiles,BVollmerhaus,Python,false,false,false,0,false,false,false,false +semantic-jail/php-ivoox-api,semantic-jail,PHP,false,false,false,0,false,false,false,false +csui-advprog-2018/lab,csui-advprog-2018,Python,true,false,false,1,false,true,false,false +mk990/bs4starter,mk990,HTML,false,false,false,0,false,false,false,false +MrMinimal/GodotWater,MrMinimal,GDScript,false,false,false,0,false,false,false,false +huiseoul/handbook,huiseoul,,false,false,false,0,false,false,false,false +anidroid/AniDroid,anidroid,C#,false,false,false,0,false,false,false,false +LKDevelopment/hetzner-cloud-mobile-app,LKDevelopment,TypeScript,true,false,false,5,true,true,true,false +tfa-devs/tfa-base,tfa-devs,Lua,true,false,false,1,false,true,false,false +aossie/Agora-web-frontend,aossie,CSS,false,false,false,0,false,false,false,false +hendrikproosa/nuke-glsl-shader,hendrikproosa,C++,false,false,false,0,false,false,false,false +sherpa-team/sherpa,sherpa-team,C,true,false,false,2,true,true,false,false +JustYuriDevTeam/just-yuri,JustYuriDevTeam,Ren'Py,false,false,false,0,false,false,false,false +seulkiro/node-heroku-dpl,seulkiro,JavaScript,true,false,false,1,false,false,false,true +the-gigi/connect4,the-gigi,JavaScript,false,false,false,0,false,false,false,false +akosma/Android-for-iOS-devs,akosma,C++,false,false,false,0,false,false,false,false +nmihteam/nmih-japanese-translation,nmihteam,AMPL,false,false,false,0,false,false,false,false +wizonet/nagiosql,wizonet,PHP,false,false,false,0,false,false,false,false +yemou/setup,yemou,Shell,false,false,false,0,false,false,false,false +d.reis/i3expo,d.reis,Python,false,false,false,0,false,false,false,false +reefphp/reef,reefphp,PHP,true,false,false,1,false,true,false,false +gnu-clisp/clisp,gnu-clisp,CommonLisp,false,false,false,0,false,false,false,false +osprior/blackledger,osprior,PHP,false,false,false,0,false,false,false,false +giomasce/asmc,giomasce,GAP,true,false,false,2,true,true,false,false +dbeniamine/cheat.sh-vim,dbeniamine,Vimscript,false,false,false,0,false,false,false,false +JarekToro/Territory_Servant,JarekToro,,false,false,false,0,false,false,false,false +alelec/navdy/android-navdy-client-old,alelec,Smali,true,false,false,1,true,false,false,false +nxlog-public/nxlog-ce,nxlog-public,C,false,false,false,0,false,false,false,false +jkrooswyk/joel-springsample,jkrooswyk,Java,false,false,true,0,false,false,false,false +Rezvani/Cellular_Automata,Rezvani,Python,false,false,false,0,false,false,false,false +m3tti/slurm-cl,m3tti,CommonLisp,false,false,false,0,false,false,false,false +sagemath/sage,sagemath,Python,true,false,false,3,true,true,false,true +dave851221/IR-receiver,dave851221,Python,false,false,false,0,false,false,false,false +craftyguy/networkd-dispatcher,craftyguy,Python,true,false,false,2,false,false,false,false +qookei/quack,qookei,C++,false,false,false,0,false,false,false,false +brombinmirko/Bottles,brombinmirko,Python,false,false,false,0,false,false,false,false +saalen/ansifilter,saalen,C++,true,false,false,1,false,true,false,false +devil505/solus-3rd-party-repo,devil505,CMake,false,false,false,0,false,false,false,false +miguelraggi/discreture,miguelraggi,C++,true,false,false,1,true,false,false,false +ilgilenio/Otag,ilgilenio,JavaScript,false,false,false,0,false,false,false,false +shagu/pfUI-eliteoverlay,shagu,Lua,false,false,false,0,false,false,false,false +ucsd-prp/prp_k8s_config,ucsd-prp,JavaScript,false,false,false,0,false,false,false,false +pepa65/tldr-bash-client,pepa65,Shell,false,false,false,0,false,false,false,false +antonionardella/iota-nelson-node,antonionardella,Shell,false,false,false,0,false,false,false,false +huyderman/lamassu,huyderman,Ruby,true,false,false,2,false,true,true,false +beelzy/DiasporicCrypt,beelzy,GDScript,false,false,false,0,false,false,false,false +alexgleason/wagtailfontawesome,alexgleason,Python,false,false,false,0,false,false,false,false +depesz/explain.depesz.com,depesz,Perl,false,false,false,0,false,false,false,false +balping/laravel-hashslug,balping,PHP,true,false,false,1,false,true,false,false +solarus-games/solarus-alttp-pack,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/solarus-sample-quest,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/zelda-mercuris-chest,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/zelda-roth-se,solarus-games,Lua,false,false,false,0,false,false,false,false +mikhailnov/system-autoupdate,mikhailnov,Shell,false,false,false,0,false,false,false,false +souch/SMP,souch,Java,false,false,false,0,false,false,false,false +julian-heng/chunkwm-config,julian-heng,Shell,false,false,false,0,false,false,false,false +eidheim/tiny-process-library,eidheim,C++,true,false,false,1,false,true,false,false +dslackw/slpkg,dslackw,Python,false,true,false,0,false,false,false,false +fbb-git/cppannotations,fbb-git,C++,false,false,false,0,false,false,false,false +orchardandgrove-oss/createUser,orchardandgrove-oss,Swift,false,false,false,0,false,false,false,false +go-box/pongo2gin,go-box,Go,false,false,false,0,false,false,false,false +semkodev/field.cli,semkodev,JavaScript,true,false,false,3,false,true,false,true +davidjpeacock/kurly,davidjpeacock,Go,true,false,false,2,true,true,false,false +orcproject/orc,orcproject,JavaScript,true,false,false,3,false,true,false,false +epsi-rns/dotfiles,epsi-rns,Lua,false,false,false,0,false,false,false,false +STEMLabTW/stamps,STEMLabTW,Python,false,false,false,0,false,false,false,false +thyrix/tianchi_scheduling_2018,thyrix,C++,false,false,false,0,false,false,false,false +andiodine/andiodine,andiodine,C,false,false,false,0,false,false,false,false +ambrevar/emacs-gif-screencast,ambrevar,EmacsLisp,false,false,false,0,false,false,false,false +sj14/go-heroku,sj14,Go,true,false,false,3,false,false,true,false +relatived/sx-mitm,relatived,JavaScript,false,false,false,0,false,false,false,false +Arziel/Z-S-Overview-Pack,Arziel,,false,false,false,0,false,false,false,false +dusty.p/Dev-Sebi,dusty.p,Python,false,false,false,0,false,false,false,false +koha-community/kohadevbox,koha-community,Shell,false,false,false,0,false,false,false,false +bartl/todo-txt-gnome-shell-extension,bartl,JavaScript,true,false,false,1,false,false,false,false +p8n/panopticon,p8n,Rust,false,false,false,0,false,false,false,false +zerkc/whatsdesk,zerkc,JavaScript,true,false,false,1,false,false,true,false +alaskalinuxuser/course_android_developer_guide,alaskalinuxuser,,false,false,false,0,false,false,false,false +concordgroup/ConcordApp,concordgroup,HTML,false,false,false,0,false,false,false,false +koyagami/libneko,koyagami,Python,true,true,false,3,false,false,false,false +xrptoolkit/ledger-u2f-integration-demo,xrptoolkit,JavaScript,false,false,false,0,false,false,false,false +iamschulz/ships,iamschulz,CSS,false,false,false,0,false,false,false,false +asciidoc3/asciidoc3,asciidoc3,Python,false,false,false,0,false,false,false,false +inko-lang/website,inko-lang,CSS,true,false,false,4,false,false,true,true +blackcoin/blackcoin-more,blackcoin,C++,false,false,false,0,false,false,false,false +gitlab-com/gl-infra/production,gitlab-com,,false,false,false,0,false,false,false,false +tractor-team/carburetor,tractor-team,Python,false,false,false,0,false,false,false,false +stavros/caduceus,stavros,Python,true,false,false,2,false,false,false,false +yoginth/yoginth,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/ama,yoginth,,false,false,false,0,false,false,false,false +yoginth/signup-form,yoginth,CSS,false,false,false,0,false,false,false,false +chaica/SitesPourPosterTonProjet,chaica,,false,false,false,0,false,false,false,false +cizen/cizen,cizen,Elixir,true,false,false,1,false,true,false,false +yoginth/catnames,yoginth,Python,false,false,false,0,false,false,false,false +cloudlamp/cloudlamp,cloudlamp,HCL,false,false,false,0,false,false,false,false +yoginth/pokemons,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/emailcheck,yoginth,Python,false,false,false,0,false,false,false,false +Boiethios/fluid-rs,Boiethios,Rust,false,false,false,0,false,false,false,false +daadu/backdrop,daadu,Dart,false,false,false,0,false,false,false,false +yoginth/standard,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/genslug,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/snakecase,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/extracturl,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/assistant,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/computer,yoginth,,false,false,false,0,false,false,false,false +yoginth/superbcli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/feedback,yoginth,HTML,false,false,false,0,false,false,false,false +yoginth/villainscli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/gitlabcli,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/gitlab,yoginth,Python,false,false,false,0,false,false,false,false +glucosio/glucosio-android,glucosio,Java,false,false,false,0,false,false,false,false +kserko/cine_reel,kserko,Dart,false,false,false,0,false,false,false,false +gitlab-org/quality/triage-ops,gitlab-org,Shell,true,false,false,4,false,true,false,false +starline/oscar,starline,,false,false,false,0,false,false,false,false +sequoia-pgp/hagrid,sequoia-pgp,Rust,true,false,false,1,true,false,false,false +shreyakumar/public-paradigms-fall18,shreyakumar,Python,false,false,false,0,false,false,false,false +michaelziray/2018-Fall-iOS,michaelziray,Swift,false,false,false,0,false,false,false,false +opendatahub/ai-library,opendatahub,Python,false,false,false,0,false,false,false,false +striker.sh/spacemacs-orgmode-tutorial,striker.sh,,false,false,false,0,false,false,false,false +xagawa/Beyond-CTF-crypto,xagawa,Python,false,false,false,0,false,false,false,false +danialbehzadi/persian_bad_words,danialbehzadi,Python,false,false,false,0,false,false,false,false +kovri-project/kovri-site,kovri-project,HTML,false,false,false,0,false,false,false,false +bjtu-yoann/web_development_2018,bjtu-yoann,CSS,false,false,false,0,false,false,false,false +mbakke/guix-chromium,mbakke,Scheme,false,false,false,0,false,false,false,false +kovri-project/kovri-meta,kovri-project,Shell,false,false,false,0,false,false,false,false +tezos/cortez-android,tezos,Java,false,false,false,0,false,false,false,false +neurochaintech/core,neurochaintech,C++,false,false,false,0,false,false,false,false +wstucco/scenic-sotb,wstucco,Elixir,false,false,false,0,false,false,false,false +git-for-dummies/slide-corso,git-for-dummies,TeX,true,false,false,1,true,false,false,false +USSRM/kotlin,USSRM,Kotlin,true,false,false,3,true,true,true,false +phikai/htpc-docker-standup,phikai,,false,false,false,0,false,false,false,false +JulieBlanc/timeline-publishing,JulieBlanc,HTML,false,false,false,0,false,false,false,false +Saphire/citations,Saphire,TypeScript,false,false,false,0,false,false,false,false +lubosz/xrgears,lubosz,C++,false,false,false,0,false,false,false,false +pop-planet/TopIcons-Redux,pop-planet,JavaScript,false,false,false,0,false,false,false,false +viseven-it-academy-2018/tasks,viseven-it-academy-2018,,false,false,false,0,false,false,false,false +HarleyLorenzo/floof.ai,HarleyLorenzo,Python,false,false,false,0,false,false,false,false +dunossauro/do-zero-ao-deploy,dunossauro,HTML,true,false,false,1,false,true,false,false +Luigi311/linux_downloader,Luigi311,Shell,true,false,false,1,false,true,false,false +limira-rs/simi,limira-rs,Rust,true,false,false,1,false,true,false,false +amitkul2/adwaita-dark-xfwm4,amitkul2,,false,false,false,0,false,false,false,false +diego9627/distributed-putnam,diego9627,TeX,false,false,false,0,false,false,false,false +datadrivendiscovery/primitive-interfaces,datadrivendiscovery,Python,true,false,false,2,true,false,true,false +kartsims/vue-ci,kartsims,JavaScript,true,false,false,3,true,true,true,false +pnieuwenhuis/newhouse-basket-service,pnieuwenhuis,C#,true,false,false,3,true,false,true,true +fathom/app,fathom,JavaScript,true,false,false,3,true,false,true,false +4geit/react-packages,4geit,JavaScript,true,false,false,4,true,true,true,true +mastermotormap/mmmtools,mastermotormap,C++,false,false,false,0,false,false,false,false +hussein.ait-lahcen/codebreak,hussein.ait-lahcen,C#,false,false,false,0,false,false,false,false +shared-puppet-modules-group/sshd,shared-puppet-modules-group,HTML,false,false,false,0,false,false,false,false +gitlab-org/gitlab-omnibus-builder,gitlab-org,Ruby,true,false,false,5,true,true,false,false +gitlab-org/discourse-omniauth-gitlab,gitlab-org,Ruby,false,false,false,0,false,false,false,false +iucode-tool/iucode-tool,iucode-tool,C,false,false,false,0,false,false,false,false +evol/clientdata,evol,Shell,true,false,false,4,false,true,true,false +mseide-msegui/mseide-msegui,mseide-msegui,Pascal,false,false,false,0,false,false,false,false +jbrout/jbrout,jbrout,Python,false,false,false,0,false,false,false,false +jezra/blather,jezra,Python,false,false,false,0,false,false,false,false +xonotic/daemon,xonotic,C++,false,false,false,0,false,false,false,false +iptv-host-xxx/iptv-host-xxx,iptv-host-xxx,Python,false,false,false,0,false,false,false,false +mora/spark-ucores,mora,Java,false,false,false,0,false,false,false,false +Numergent/memento,Numergent,Clojure,true,false,false,3,true,true,true,false +Flamedek/RPGme,Flamedek,Java,false,false,false,0,false,false,false,false +dennis-hamester/dotrix,dennis-hamester,Rust,true,false,false,1,true,false,false,false +NobleworksSoftware/NobleInjection,NobleworksSoftware,Java,false,false,false,0,false,false,false,false +Vinnl/agripongit,Vinnl,JavaScript,false,false,false,0,false,false,false,false +munijava/pb162-seminar-project,munijava,Java,false,false,true,0,false,false,false,false +munijava/pb162-2015-hw01-calculator,munijava,Java,false,false,true,0,false,false,false,false +python-smtpd-hackers/aiosmtpd,python-smtpd-hackers,,false,false,false,0,false,false,false,false +mwetoolkit/mwetoolkit2-legacy,mwetoolkit,Python,false,false,false,0,false,false,false,false +gitlab-org/status-gitlab-com,gitlab-org,Ruby,false,false,false,0,false,false,false,false +zugz/tersmu,zugz,Haskell,false,false,false,0,false,false,false,false +barrel/barrel-wordpress,barrel,PHP,true,false,false,3,false,true,true,false +magraine/bigup,magraine,PHP,false,false,false,0,false,false,false,false +corbie/twitch-curses,corbie,Python,false,false,false,0,false,false,false,false +ddwy/configs,ddwy,Vimscript,false,false,false,0,false,false,false,false +android-rebuilds/auto,android-rebuilds,Shell,true,false,false,1,false,true,false,false +khumba/hoppy,khumba,Haskell,false,false,false,0,false,false,false,false +transformania/tt-game,transformania,PLpgSQL,true,false,false,2,true,false,true,false +eccheng/customcorner,eccheng,JavaScript,false,false,false,0,false,false,false,false +sistemas_distribuidos/curso,sistemas_distribuidos,TeX,false,false,false,0,false,false,false,false +atom0s/Steamless,atom0s,C#,false,false,false,0,false,false,false,false +steve-perkins/ResumeFodder,steve-perkins,Go,false,false,false,0,false,false,false,false +stackshuttle/grow_journal,stackshuttle,CSS,true,false,false,1,false,true,false,false +mikecardwell/gpgit,mikecardwell,Perl,false,false,false,0,false,false,false,false +worldmind/biotech,worldmind,TeX,false,false,false,0,false,false,false,false +gitlab-examples/scala-sbt,gitlab-examples,Scala,true,false,false,1,false,true,false,false +loveshack/sge,loveshack,C,false,false,false,0,false,false,false,false +jekyll-themes/creative,jekyll-themes,HTML,false,false,false,0,false,false,false,false +tarcisioe/cpp,tarcisioe,C++,false,false,false,0,false,false,false,false +tarsius/glab,tarsius,,false,false,false,0,false,false,false,false +rootmodels/OpenSimRoot,rootmodels,C++,true,false,false,3,true,true,true,false +ryanguill/FPcfc,ryanguill,ColdFusion,true,false,false,1,false,true,false,false +spice/win32/qxl-wddm-dod,spice,C++,false,false,false,0,false,false,false,false +glancr/system,glancr,CSS,true,false,false,2,true,false,true,false +jzelner/reproducible-stan,jzelner,R,true,false,false,1,false,true,false,false +bernardodsanderson/material-neutral-theme,bernardodsanderson,,false,false,false,0,false,false,false,false +gitlab-org/influxdb-management,gitlab-org,Ruby,false,false,false,0,false,false,false,false +pages/ikiwiki,pages,,true,false,false,2,false,true,true,false +manning-fpcpp-book/code-examples,manning-fpcpp-book,C++,false,false,false,0,false,false,false,false +libosinfo/osinfo-db,libosinfo,Makefile,false,false,false,0,false,false,false,false +larchlinux/bark,larchlinux,,false,false,false,0,false,false,false,false +zaytsevgu/goutils,zaytsevgu,Python,false,false,false,0,false,false,false,false +cdnjs/cdnjs,cdnjs,,false,false,false,0,false,false,false,false +wolfenstein-legacy/et-assets,wolfenstein-legacy,,false,false,false,0,false,false,false,false +danger-systems/danger.systems,danger-systems,HTML,true,false,false,1,false,true,false,false +vandy-aad-2/MapLocation,vandy-aad-2,Java,false,false,false,0,false,false,false,false +whrl/space_robotics_challenge,whrl,C++,true,false,false,1,true,false,false,false +plumbis/cumulus-ci-cd,plumbis,Python,true,false,false,2,false,false,false,false +linagora/petals-cockpit,linagora,TypeScript,true,false,true,3,true,true,false,false +ikhemissi/gitlab-ci-releaser,ikhemissi,JavaScript,true,false,false,4,true,true,false,true +PythonDevCommunity/sir-bot-a-lot,PythonDevCommunity,Python,true,true,false,3,false,true,true,false +uikitty/uikitty,uikitty,HTML,false,false,false,0,false,false,false,false +esr/intercal,esr,C,false,false,false,0,false,false,false,false +stackpointer/whatsapp-crypt12,stackpointer,Java,false,false,false,0,false,false,false,false +pidila/scampi,pidila,CSS,false,false,false,0,false,false,false,false +tom.davidson/lolaus,tom.davidson,Shell,false,false,false,0,false,false,false,false +sadiq/sadiq.gitlab.io,sadiq,EmacsLisp,true,false,false,1,false,true,false,false +ales.genova/pbcpy,ales.genova,Python,true,true,false,1,false,true,false,false +hacklab01/pivilion,hacklab01,JavaScript,false,false,false,0,false,false,false,false +skororu/dtr,skororu,Python,false,false,false,0,false,false,false,false +shinzao/laravel-activation,shinzao,PHP,false,false,false,0,false,false,false,false +fdroid/admin,fdroid,,false,false,false,0,false,false,false,false +TomasHubelbauer/gitlab-pages-custom-domain-lets-encrypt-info,TomasHubelbauer,,true,false,false,1,false,false,true,false +adi90x/rancher-active-proxy,adi90x,Shell,true,false,false,1,false,true,false,false +hanno/ejabberd-config,hanno,,false,false,false,0,false,false,false,false +axet/android-media-merger,axet,Java,false,false,false,0,false,false,false,false +drutopia/drutopia_sdk,drutopia,PHP,false,false,false,0,false,false,false,false +aossie/ComputationalPhilosophy,aossie,TeX,false,false,false,0,false,false,false,false +jeroni7100/zwiftmap-multi,jeroni7100,JavaScript,false,false,false,0,false,false,false,false +Zipcore/Kraken,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +ossguy/jmp-register,ossguy,PHP,false,false,false,0,false,false,false,false +gitlab-com/gitlab-profiler,gitlab-com,Ruby,false,false,false,0,false,false,false,false +librehealth/radiology/lh-radiology,librehealth,JavaScript,true,false,true,3,true,true,false,false +mailman/mailman-suite,mailman,Python,false,false,false,0,false,false,false,false +geeklhem/flycheck-grammalecte,geeklhem,EmacsLisp,false,false,false,0,false,false,false,false +flimmerkiste/NewralNet,flimmerkiste,Java,true,false,false,1,false,false,true,false +journalduhacker/journalduhacker,journalduhacker,Ruby,false,false,false,0,false,false,false,false +Cognexa/cxflow,Cognexa,,false,false,false,0,false,false,false,false +WarKitteh/arduino-hid-rickroll,WarKitteh,C++,false,false,false,0,false,false,false,false +axet/MenuMeters,axet,Objective-C,false,false,false,0,false,false,false,false +totalcross/TotalCross,totalcross,,false,false,false,0,false,false,false,false +gitlab-org/notebooklab,gitlab-org,JavaScript,true,false,false,1,false,true,false,false +itk.fr/lorhammer,itk.fr,Go,true,false,false,6,false,true,false,false +SUSE-UIUX/eos,SUSE-UIUX,HTML,true,false,false,4,true,true,true,true +n42k/3dmr,n42k,JavaScript,false,false,false,0,false,false,false,false +slcu/teamHJ/Organism,slcu,C++,true,false,false,1,false,true,false,false +samba-team/samba,samba-team,C,true,false,false,2,false,true,false,false +sj1k/ytsearch,sj1k,Python,true,false,false,2,false,true,true,false +ambrevar/dotfiles,ambrevar,EmacsLisp,false,false,false,0,false,false,false,false +nqs/ucas_workshop,nqs,C++,false,false,false,0,false,false,false,false +ayana/shard,ayana,JavaScript,false,false,false,0,false,false,false,false +ayana/locales,ayana,,false,false,false,0,false,false,false,false +bpcarm/trainings2017,bpcarm,C++,true,false,false,1,true,false,false,false +Mactroll/KeychainMinder,Mactroll,Swift,false,false,false,0,false,false,false,false +TerraBite/TerraBite,TerraBite,JavaScript,false,false,false,0,false,false,false,false +spice/win32/virtio-gpu-wddm-dod,spice,C++,false,false,false,0,false,false,false,false +itayronen/gulp-uglify-es,itayronen,TypeScript,false,false,false,0,false,false,false,false +gitlab-training/basics,gitlab-training,CSS,true,false,false,2,false,true,true,false +zefiris/tenhou-english-ui,zefiris,JavaScript,false,false,false,0,false,false,false,false +Ercoin/ercoin,Ercoin,Erlang,true,false,false,3,true,true,false,true +sashamihaha/rn-ethereum-starter,sashamihaha,JavaScript,false,false,false,0,false,false,false,false +laanekass/TunniDemod2,laanekass,Java,false,false,false,0,false,false,false,false +esdrastarsis/antarticaos,esdrastarsis,Rust,true,false,false,1,false,true,false,false +dalton/dalton,dalton,Fortran,true,false,false,1,false,true,false,false +funkycram/git-wiki-to-gitbook,funkycram,PHP,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-rotator,librespacefoundation,,false,false,false,0,false,false,false,false +oer/emacs-reveal-howto,oer,EmacsLisp,true,false,false,1,false,false,true,false +200ok/fsdb,200ok,Clojure,false,false,false,0,false,false,false,false +gt8/open-source/elixir/weave,gt8,Elixir,true,false,false,3,true,true,false,false +empurrandojuntos/frontend,empurrandojuntos,TypeScript,true,false,false,1,false,true,false,false +oax/asset-gateway-poc,oax,JavaScript,false,false,false,0,false,false,false,false +chusiang/continuous-delivery-workshop,chusiang,Makefile,true,false,false,5,true,true,true,true +0x4ndr3/SLAE64_Assignments,0x4ndr3,C,false,false,false,0,false,false,false,false +pablo-ruth/go-init,pablo-ruth,Go,true,false,false,3,true,true,false,false +zsh-org/zsh,zsh-org,C,false,false,false,0,false,false,false,false +datadrivendiscovery/metalearning,datadrivendiscovery,,false,false,false,0,false,false,false,false +slevin7298/Unity-flappy-bird,slevin7298,C#,false,false,false,0,false,false,false,false +mataara/Mataara-Server,mataara,Python,true,true,false,2,false,true,false,false +evanp/tags-pub,evanp,JavaScript,true,false,false,3,true,true,false,true +cirelramos/oh-my-vim,cirelramos,Vimscript,false,false,false,0,false,false,false,false +interception/linux/plugins/hideaway,interception,C++,false,false,false,0,false,false,false,false +kornelski/cargo-xcode,kornelski,Rust,true,false,false,1,false,true,false,false +blockforge/blockforge,blockforge,C,true,false,false,3,true,false,true,false +qosenergy/squalus,qosenergy,Go,true,false,false,2,false,true,false,true +nd-cse-20289-sp18/cse-20289-sp18-examples,nd-cse-20289-sp18,JupyterNotebook,false,false,false,0,false,false,false,false +gitlab-com/people-ops/General,gitlab-com,,false,false,false,0,false,false,false,false +nllgg/dustpuppy,nllgg,Ruby,true,false,false,2,false,true,true,false +zerobias/effector,zerobias,JavaScript,true,false,false,2,false,true,true,false +strabs/GaugePowered,strabs,CSS,false,false,false,0,false,false,false,false +flectra-hq/developer-tools,flectra-hq,Python,false,false,false,0,false,false,false,false +Cracklydisc/StratOS,Cracklydisc,,false,false,false,0,false,false,false,false +DDP2-CSUI/ddp-lab-ki,DDP2-CSUI,Java,true,false,false,2,true,true,false,false +DenysVuika/medium-dynamic-routes,DenysVuika,TypeScript,false,false,false,0,false,false,false,false +joewreschnig/gitlab-ci-mode,joewreschnig,EmacsLisp,true,false,false,1,false,true,false,false +ID4me/Acme,ID4me,Java,true,false,false,2,true,false,false,true +h3/django-emailhub,h3,JavaScript,true,false,false,1,false,true,false,false +boyd.stephen.smith.jr/idris-okasaki-pfds,boyd.stephen.smith.jr,Idris,false,false,false,0,false,false,false,false +car2go/birdperson,car2go,TypeScript,false,false,false,0,false,false,false,false +sirimangalo/meditation-plus,sirimangalo,TypeScript,true,false,false,4,false,true,true,false +oofga/cpp/caneta2018,oofga,C++,false,false,false,0,false,false,false,false +jramsay/git-lab,jramsay,Go,true,false,false,1,false,true,false,false +wavedistrict/web-client,wavedistrict,TypeScript,true,false,false,1,false,true,false,false +all-mangas-reader/all-mangas-reader-2,all-mangas-reader,JavaScript,true,false,false,2,true,false,false,false +jkrooswyk/the-monolith,jkrooswyk,Ruby,true,false,false,8,true,true,false,true +frissdiegurke/vuex-aspect,frissdiegurke,JavaScript,false,false,false,0,false,false,false,false +librehealth/ehr/lh-ehr,librehealth,PHP,true,false,false,1,true,false,false,false +cordite/network-map-service,cordite,Kotlin,true,false,true,3,true,false,false,true +gitlab-org/security-products/license-management,gitlab-org,Shell,true,false,false,4,true,true,false,true +Screwtapello/kakoune-gtk,Screwtapello,Python,false,false,false,0,false,false,false,false +alelec/navdy/display-rom,alelec,Shell,true,false,false,2,true,false,false,true +eurosfordocs/transparence-sante,eurosfordocs,HTML,true,false,false,3,false,true,false,false +maxpert/crlocator,maxpert,Crystal,true,false,false,1,true,false,false,false +k-terashima/go-mex.bot,k-terashima,Go,false,false,false,0,false,false,false,false +demsking/image-downloader,demsking,JavaScript,true,false,false,2,false,true,false,true +BetterWithMods/BetterWithMods,BetterWithMods,Java,false,false,false,0,false,false,false,false +FloweeTheHub/thehub,FloweeTheHub,C++,true,false,false,3,true,true,true,false +LinxGem33/X-Arc-Darker,LinxGem33,CSS,false,false,false,0,false,false,false,false +philbooth/bfj,philbooth,JavaScript,true,false,false,1,false,true,false,false +brombinmirko/ElementaryPython,brombinmirko,Python,false,false,false,0,false,false,false,false +bzim/lockfree,bzim,Rust,true,false,false,1,false,false,true,false +polybar/polybar,polybar,C++,false,false,false,0,false,false,false,false +mike01/pypacker,mike01,Python,false,false,false,0,false,false,false,false +mamedev/mame,mamedev,C++,false,false,false,0,false,false,false,false +jadijadi/gittutorial,jadijadi,,false,false,false,0,false,false,false,false +ronalde/mpd-configure,ronalde,Shell,false,false,false,0,false,false,false,false +jabranham/system-packages,jabranham,EmacsLisp,true,false,false,1,false,true,false,false +ProjectCMS/BlizzCMS,ProjectCMS,PHP,false,false,false,0,false,false,false,false +ydkn/capistrano-rails-console,ydkn,Ruby,true,false,false,3,true,false,false,false +theswiftdev/viperb,theswiftdev,Swift,false,false,false,0,false,false,false,false +BlockStack/ArtMap,BlockStack,Java,false,false,true,0,false,false,false,false +betseg/vim-dcrpc,betseg,C,true,false,false,1,false,true,false,false +staltz/gitverse-ideas,staltz,,false,false,false,0,false,false,false,false +cerlane/SoftPosit,cerlane,C,false,false,false,0,false,false,false,false +Daklon/ogame-bot,Daklon,Python,false,true,false,0,false,false,false,false +zedtux/brewformulas.org,zedtux,HTML,false,false,false,0,false,false,false,false +litecord/litecord,litecord,Python,true,true,false,1,false,true,false,false +guushoekman/train-journeys,guushoekman,HTML,true,false,false,1,false,false,true,false +zxq9/zj,zxq9,Erlang,false,false,false,0,false,false,false,false +VC6Ultimate/VC6Ultimate,VC6Ultimate,C,false,false,false,0,false,false,false,false +guilhermesidney/cliente10,guilhermesidney,QML,false,false,false,0,false,false,false,false +quidsup/notrack-blocklists,quidsup,,false,false,false,0,false,false,false,false +nasciiboy/elipo,nasciiboy,HTML,false,false,false,0,false,false,false,false +cmrd-senya/vue_crud-generator,cmrd-senya,Ruby,false,false,false,0,false,false,false,false +ouabinabila/Simplon_devops_nabila,ouabinabila,,false,false,false,0,false,false,false,false +ipvs/nesting,ipvs,C++,false,false,false,0,false,false,false,false +NebulousLabs/obelisk-ob1,NebulousLabs,C,false,false,false,0,false,false,false,false +yoginth/namegenerator,yoginth,Python,false,false,false,0,false,false,false,false +OctoNezd/loggui,OctoNezd,Python,false,true,false,0,false,false,false,false +yoginth/superb,yoginth,Python,false,false,false,0,false,false,false,false +NebulousLabs/Sia-UI,NebulousLabs,JavaScript,false,false,false,0,false,false,false,false +yoginth/scaffolding-pypi,yoginth,,false,false,false,0,false,false,false,false +yoginth/traversal,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/villains,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/heroes,yoginth,Python,false,false,false,0,false,false,false,false +yoginth/dognames,yoginth,Python,false,false,false,0,false,false,false,false +Arctium/WoW/Tools,Arctium,C#,false,false,false,0,false,false,false,false +yoginth/timeify,yoginth,Python,false,false,false,0,false,false,false,false +shakthimaan/operation-blue-moon,shakthimaan,,false,false,false,0,false,false,false,false +yoginth/camely,yoginth,Python,false,false,false,0,false,false,false,false +tuxitop/dotfiles,tuxitop,Shell,false,false,false,0,false,false,false,false +datube/piew,datube,Python,false,false,false,0,false,false,false,false +ainthero/masterpiece_game,ainthero,Python,false,false,false,0,false,false,false,false +vijai/screenrecorder,vijai,Java,true,false,false,3,false,false,true,false +VsevolodKM/FileWalker,VsevolodKM,Python,false,false,false,0,false,false,false,false +joshuagiles/TheCommunistDogifesto,joshuagiles,C,false,false,false,0,false,false,false,false +YottaDB/DB/YDB,YottaDB,M,true,false,false,3,true,true,false,false +cutecom/cutecom,cutecom,C++,true,false,false,1,false,true,false,false +women-who-code/intro-to-git-and-gitlab,women-who-code,JavaScript,true,false,false,1,false,false,true,false +Dp-140-Java/bikeChampionship,Dp-140-Java,Java,true,false,false,2,false,true,false,false +nikhiljha/lobsters-app,nikhiljha,Dart,false,false,false,0,false,false,false,false +notificationlog/notificationlog-android,notificationlog,Kotlin,false,false,false,0,false,false,false,false +colectivo-de-livecoders/tidal-bridge,colectivo-de-livecoders,JavaScript,false,false,false,0,false,false,false,false +VeLKerr/pardistrib,VeLKerr,,false,false,false,0,false,false,false,false +et4te/igloo,et4te,OCaml,false,false,false,0,false,false,false,false +matwhill/tomscottbanhammer,matwhill,C#,false,false,false,0,false,false,false,false +grisetti/sistemi_operativi_2018_19,grisetti,C,false,false,false,0,false,false,false,false +EOSBetCasino/eosbetdice_public,EOSBetCasino,C++,false,false,false,0,false,false,false,false +fexell/featherjs-nuxtjs-boilerplate,fexell,JavaScript,false,false,false,0,false,false,false,false +arianvp/nixos-gitlab-runner,arianvp,Nix,true,false,false,1,false,true,false,false +nativeson/nativeson,nativeson,Ruby,false,false,false,0,false,false,false,false +edsu-org/rust,edsu-org,Rust,false,false,false,0,false,false,false,false +PushFish/PushFish-Android,PushFish,Java,true,false,false,1,true,false,false,false +NicolasGuilloux/shadow-live-os,NicolasGuilloux,Shell,false,false,false,0,false,false,false,false +free-astro/siril,free-astro,C,false,false,false,0,false,false,false,false +foundrynet/foundryvtt,foundrynet,HTML,false,false,false,0,false,false,false,false +tibicen/simple-asset-manager,tibicen,Python,false,false,false,0,false,false,false,false +commonground/nlx,commonground,JavaScript,false,false,false,0,false,false,false,false +john.tucker/firebase-gitlab,john.tucker,JavaScript,true,false,false,4,true,true,true,true +materials-modeling/hiphive,materials-modeling,Python,true,false,false,3,true,true,true,false +tagbottle/tagbottle.com,tagbottle,JavaScript,true,false,false,2,true,false,false,true +preet/lpc1758_freertos,preet,C,false,false,false,0,false,false,false,false +coraline/fukuzatsu,coraline,Ruby,false,false,false,0,false,false,false,false +rizon/plexus4,rizon,C,true,false,false,2,true,true,false,false +stochastic-control/StOpt,stochastic-control,C++,false,false,false,0,false,false,false,false +tudu/tudu,tudu,C++,false,false,false,0,false,false,false,false +fetchmail/fetchmail,fetchmail,C,false,false,false,0,false,false,false,false +libreems-suite/ardu-stim,libreems-suite,C,false,false,false,0,false,false,false,false +sunny256/utils,sunny256,Perl,true,false,false,1,false,true,false,false +noosferogov/proposal-app,noosferogov,JavaScript,false,false,false,0,false,false,false,false +prips/prips,prips,Shell,false,false,false,0,false,false,false,false +tp3/Entropy-Piano-Tuner,tp3,C++,false,false,false,0,false,false,false,false +libvdwxc/libvdwxc,libvdwxc,Assembly,true,false,false,2,true,false,true,false +esr/git-weave,esr,Python,false,false,false,0,false,false,false,false +zykure/deadbeef-fb,zykure,C,false,false,false,0,false,false,false,false +kidakadeshia/awesome-elixir,kidakadeshia,Elixir,false,false,false,0,false,false,false,false +RBniCS/RBniCS,RBniCS,Python,true,false,false,3,true,true,false,true +ArmarX/armarx,ArmarX,,false,false,false,0,false,false,false,false +ubunchu-translators/ubunchu,ubunchu-translators,,false,false,false,0,false,false,false,false +lucify/lucify-refugees,lucify,,false,false,false,0,false,false,false,false +monnier/typer,monnier,OCaml,false,false,false,0,false,false,false,false +iv-mexx/gitlab-migrator,iv-mexx,Ruby,false,false,false,0,false,false,false,false +robigalia/rust-sel4,robigalia,Rust,true,false,false,1,false,true,false,false +HvGroup/hvCommerce,HvGroup,CSS,false,false,false,0,false,false,false,false +mike-koch/Mods-for-HESK,mike-koch,PHP,true,false,false,3,false,true,false,false +Nikchavan/test-wp-plugin,Nikchavan,Shell,true,false,false,1,false,true,false,false +bconway/resflash,bconway,Shell,false,false,false,0,false,false,false,false +gitlab-com/swag_suggestions,gitlab-com,,false,false,false,0,false,false,false,false +sqwishy/impetuous,sqwishy,Python,false,false,false,0,false,false,false,false +pages/jekyll-branched,pages,,false,false,false,0,false,false,false,false +pages/metalsmith,pages,HTML,true,false,false,1,false,true,false,false +ecoevomath/ulm,ecoevomath,Pascal,true,false,false,2,true,false,true,false +twittner/zeromq-haskell,twittner,Haskell,true,false,false,1,false,true,false,false +leapsight/bondy,leapsight,Erlang,true,false,false,1,false,true,false,false +pages/doxygen,pages,C,true,false,false,1,false,true,false,false +unhangout/reunhangout,unhangout,Python,false,true,false,0,false,false,false,false +sutd_nlp/statnlp-core,sutd_nlp,Java,false,false,true,0,false,false,false,false +bernardodsanderson/material-markdown,bernardodsanderson,JavaScript,false,false,false,0,false,false,false,false +FJW/str_to_integer,FJW,C++,false,false,false,0,false,false,false,false +tungvn/wordpress-snippet,tungvn,JavaScript,false,false,false,0,false,false,false,false +mailman/lemme,mailman,Python,false,false,false,0,false,false,false,false +bkeys/DMUX,bkeys,C++,true,false,false,1,true,false,false,false +betse/betse,betse,Python,true,false,false,1,false,true,false,false +4degrees/lucidity,4degrees,Python,false,false,false,0,false,false,false,false +plastimatch/plastimatch,plastimatch,C++,false,false,false,0,false,false,false,false +jtrygva/trollegle,jtrygva,Java,false,false,false,0,false,false,false,false +hrbrmstr/ndjson,hrbrmstr,C++,false,false,false,0,false,false,false,false +ServsUp/ServsUp,ServsUp,JavaScript,false,false,false,0,false,false,false,false +SporeDB/sporedb,SporeDB,Go,true,false,false,2,false,true,false,false +krayon/ratslap,krayon,C,false,false,false,0,false,false,false,false +rust-lang/rust,rust-lang,Rust,false,false,false,0,false,false,false,false +devCoster/BetterListing,devCoster,HTML,false,false,false,0,false,false,false,false +koha-community-devs-users/kohadocs,koha-community-devs-users,Python,false,false,false,0,false,false,false,false +mauriciobaeza/cfdi-descarga,mauriciobaeza,Python,false,true,false,0,false,false,false,false +kachkaev/graphiql-workspace-app,kachkaev,HTML,true,false,false,2,false,false,false,false +teamTALIMA/hoppy-bunny,teamTALIMA,C#,false,false,false,0,false,false,false,false +coala/package_manager,coala,Python,true,true,false,1,false,true,false,false +patkennedy79/flask_chartjs_example,patkennedy79,HTML,false,false,false,0,false,false,false,false +Javaru/frc-intellij-idea-plugin,Javaru,Java,false,false,false,0,false,false,false,false +michaelziray/2017-Spring-CS402,michaelziray,Java,false,false,false,0,false,false,false,false +tensors/tensor_toolbox,tensors,Matlab,true,false,false,1,false,false,true,false +skiadas/WebAppsLabs,skiadas,,false,false,false,0,false,false,false,false +passelecasque/varroa,passelecasque,Go,true,false,false,1,true,false,false,false +tim-m89/clr-haskell,tim-m89,Haskell,true,false,false,1,false,true,false,false +orbifx/logarion,orbifx,OCaml,false,false,false,0,false,false,false,false +bipedalshark/stellaris-tech-tree,bipedalshark,JavaScript,true,false,false,1,false,false,true,false +takluyver/jeepney,takluyver,Python,true,false,false,1,false,true,false,false +orobardet/gitlab-ci-linter,orobardet,Go,true,false,false,5,true,false,false,false +axet/vget,axet,Java,false,false,true,0,false,false,false,false +6uellerBpanda/check_gitlab,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false +rmat0n/nodejs-comme-les-grands,rmat0n,CSS,false,false,false,0,false,false,false,false +Mactroll/pref-finder,Mactroll,Swift,false,false,false,0,false,false,false,false +antoinentl/systeme-modulaire-de-publication,antoinentl,JavaScript,false,false,false,0,false,false,false,false +jpichardo/devrant-private-library,jpichardo,,false,false,false,0,false,false,false,false +gitlab-org/gitter/env,gitlab-org,HTML,true,false,false,2,true,true,false,false +inkscape/inkscape-docs/manuals,inkscape,CSS,false,false,false,0,false,false,false,false +jmzambon/apso,jmzambon,Python,false,false,false,0,false,false,false,false +enetheru/midi2input,enetheru,Lua,false,false,false,0,false,false,false,false +srrg-software/srrg_hbst,srrg-software,C++,true,false,false,1,true,false,false,false +kroppy/TreeTabsNightly,kroppy,JavaScript,false,false,false,0,false,false,false,false +ultreiaio/jgit-flow,ultreiaio,Java,true,false,true,4,false,true,false,false +zenprotocol/zenprotocol,zenprotocol,F#,true,false,false,1,true,false,false,false +AlanCarnet/CARNET,AlanCarnet,Java,false,false,false,0,false,false,false,false +adimit/gitlab-time-tracking-button,adimit,JavaScript,true,false,false,2,false,true,false,false +SiLA2/sila_java,SiLA2,Java,true,false,true,3,true,true,false,true +eyeo/websites/web.adblockplus.org,eyeo,HTML,true,false,false,2,false,true,true,false +huia-lang/stack-vm,huia-lang,Rust,true,false,false,3,false,true,false,true +datadrivendiscovery/ta3ta2-api,datadrivendiscovery,Python,true,false,false,1,true,false,false,false +code-stats/code-stats-vim,code-stats,Python,true,true,false,1,false,true,false,false +znixian/payday2-vr-improvements,znixian,Lua,false,false,false,0,false,false,false,false +janpoboril/docker-working-examples,janpoboril,PHP,false,false,false,0,false,false,false,false +Fnux/elixir-tdlib,Fnux,Elixir,false,false,false,0,false,false,false,false +cazala/coin-hive-stratum,cazala,TypeScript,false,false,false,0,false,false,false,false +koha-community/Koha,koha-community,Perl,false,false,false,0,false,false,false,false +technomancy/fennel-mode,technomancy,EmacsLisp,false,false,false,0,false,false,false,false +ID4me/C2idClaimsource,ID4me,Java,false,false,false,0,false,false,false,false +ID4me/documentation,ID4me,,false,false,false,0,false,false,false,false +paprotsky/address-book,paprotsky,PHP,false,false,false,0,false,false,false,false +bersace/powerline.bash,bersace,Shell,false,false,false,0,false,false,false,false +anarcat/terms-benchmarks,anarcat,JupyterNotebook,false,false,false,0,false,false,false,false +oofga/cpp/universidade2018,oofga,C++,false,false,false,0,false,false,false,false +roxanagogonea/frida-scripts,roxanagogonea,JavaScript,false,false,false,0,false,false,false,false +Phyronnaz/VoxelPluginIssues,Phyronnaz,,false,false,false,0,false,false,false,false +OpenGhost/OpenGhost,OpenGhost,C++,false,false,false,0,false,false,false,false +jamescoyle/MigraDocXML,jamescoyle,C#,false,false,false,0,false,false,false,false +Eviato/dotfiles,Eviato,Shell,false,false,false,0,false,false,false,false +tikiwiki/tiki,tikiwiki,PHP,true,false,false,4,false,false,false,false +objrs/objrs,objrs,Rust,false,false,false,0,false,false,false,false +chaoslab/chaoslab-overlay,chaoslab,Shell,true,false,false,2,false,false,false,false +DavidGriffith/frotz,DavidGriffith,C,true,false,false,1,false,false,true,false +TheOuterLinux/Command-Line,TheOuterLinux,HTML,false,false,false,0,false,false,false,false +dougbeney/Jekyll-Bliss,dougbeney,JavaScript,false,false,false,0,false,false,false,false +dansanti/l10n_cl_fe,dansanti,Python,false,false,false,0,false,false,false,false +WebFreak001/OsuAutoHost,WebFreak001,D,false,false,false,0,false,false,false,false +alvarolopezborr/gitlab-fork-ribbon-css,alvarolopezborr,HTML,true,false,false,1,false,true,false,false +kisaragi-hiu/language-startup-benchmark,kisaragi-hiu,Shell,false,false,false,0,false,false,false,false +philbooth/check-types.js,philbooth,JavaScript,true,false,false,1,false,true,false,false +openldap/openldap,openldap,C,false,false,false,0,false,false,false,false +Lycanite/LycanitesMobs,Lycanite,Java,false,false,false,0,false,false,false,false +8BitRobots/8bitrobots,8BitRobots,JavaScript,false,false,false,0,false,false,false,false +alexander_schoch/dotfiles-arch,alexander_schoch,Python,false,false,false,0,false,false,false,false +pidu/git-timemachine,pidu,EmacsLisp,false,false,false,0,false,false,false,false +derSchabi/tttrsss,derSchabi,Java,true,false,false,1,true,false,false,false +fumail/fuglu,fumail,Python,true,false,false,4,true,true,false,false +lansharkconsulting/django/django-encrypted-model-fields,lansharkconsulting,Python,false,true,false,0,false,false,false,false +friendlyelec/rk3399-nougat,friendlyelec,,false,false,false,0,false,false,false,false +fbb-git/flexcpp,fbb-git,C++,false,false,false,0,false,false,false,false +froodo_alexis/Antu-icons,froodo_alexis,,false,false,false,0,false,false,false,false +ita1024/semantik,ita1024,C++,false,false,false,0,false,false,false,false +martin-tornqvist/ia,martin-tornqvist,C,true,false,false,1,true,false,false,false +_Floydian/LinkHub,_Floydian,,false,false,false,0,false,false,false,false +BrightOpen/BackYard/Samotop,BrightOpen,HTML,true,false,false,3,true,true,false,true +crenard/simplon_amaury,crenard,,false,false,false,0,false,false,false,false +rado_a/simplon_rado,rado_a,Shell,false,false,false,0,false,false,false,false +work.cedricjoseph/SimplOps_Cedric,work.cedricjoseph,Python,false,false,false,0,false,false,false,false +Jeanet11/simplon_jeanne,Jeanet11,,false,false,false,0,false,false,false,false +FascinatedBox/lily,FascinatedBox,C,true,false,false,1,false,true,false,false +concreted0g/ODR,concreted0g,nesC,false,false,false,0,false,false,false,false +crowltech/crowl,crowltech,Python,false,true,false,0,false,false,false,false +orbtk/dces-rust,orbtk,Rust,true,false,false,1,false,true,false,false +limira-rs/simi-project,limira-rs,Rust,false,false,false,0,false,false,false,false +veloren/rfcs,veloren,,false,false,false,0,false,false,false,false +gitlab-org/gitter/gitter-android-app,gitlab-org,Java,true,false,false,7,true,true,false,true +wireshark/wireshark,wireshark,C,true,false,false,2,true,true,false,false +simont/inft2063_assignment_1,simont,Java,false,false,false,0,false,false,false,false +jD91mZM2/nix-lsp,jD91mZM2,Rust,false,false,false,0,false,false,false,false +bwearley/f-clap,bwearley,Fortran,false,false,false,0,false,false,false,false +OpenCoop/CommonsPub/Server,OpenCoop,Elixir,false,false,false,0,false,false,false,false +cjaikaeo/elabsheet,cjaikaeo,Python,false,true,false,0,false,false,false,false +alanmarazzi/clj-boost,alanmarazzi,Clojure,false,false,false,0,false,false,false,false +kovri-project/kovri-docs,kovri-project,,false,false,false,0,false,false,false,false +golang-commonmark/markdown,golang-commonmark,Go,true,false,false,2,true,true,false,false +DAM-M03/m03-uf1,DAM-M03,Java,false,false,false,0,false,false,false,false +gitlab-org/gitter/gitter-ios-app,gitlab-org,Swift,false,false,false,0,false,false,false,false +tercio-jorge/poo_2018.2,tercio-jorge,Java,false,false,false,0,false,false,false,false +esr/pytogo,esr,Python,false,false,false,0,false,false,false,false +jeanfi/psensor,jeanfi,JavaScript,true,false,false,3,true,true,false,false +wchandler/strace-parser,wchandler,Rust,true,false,false,1,false,true,false,false +perla.maciel/show-tweets,perla.maciel,Java,false,false,false,0,false,false,false,false +smart-referer/smart-referer,smart-referer,JavaScript,false,false,false,0,false,false,false,false +miguel.gonzalez1/tetris-en-android-con-kotlin,miguel.gonzalez1,Kotlin,true,false,false,1,true,false,false,false +tubackkhoa/ethereum-analysis,tubackkhoa,TeX,false,false,false,0,false,false,false,false +nativepluck/nativepluck,nativepluck,Ruby,false,false,false,0,false,false,false,false +pwoolcoc/soup,pwoolcoc,Rust,true,false,false,2,false,true,false,false +mrmessyhair/eveningwm,mrmessyhair,C,false,false,false,0,false,false,false,false +gilgil/amr-20181204,gilgil,,false,false,false,0,false,false,false,false +datadrivendiscovery/metadata,datadrivendiscovery,Python,true,false,false,2,true,false,true,false +gitlab-com/doc-gitlab-com,gitlab-com,HTML,true,false,false,1,false,false,true,false +gnukhata/deskapp,gnukhata,Java,false,false,false,0,false,false,false,false +wuest/funtools,wuest,Ruby,false,false,false,0,false,false,false,false +gitlab-org/omnibus-gitlab-runner,gitlab-org,Ruby,false,false,false,0,false,false,false,false +cloudformation/tutorial,cloudformation,,false,false,false,0,false,false,false,false +trashy/trashy,trashy,Shell,false,false,false,0,false,false,false,false +kadu/kadu,kadu,C++,false,false,false,0,false,false,false,false +evol/serverdata,evol,Shell,true,false,false,4,true,true,false,false +sarakha63/Sick-Beard,sarakha63,Python,false,false,false,0,false,false,false,false +libyuni/libyuni,libyuni,C,false,false,false,0,false,false,false,false +psmisc/psmisc,psmisc,C,true,false,false,1,false,true,false,false +ddcci-driver-linux/ddcci-driver-linux,ddcci-driver-linux,C,false,false,false,0,false,false,false,false +mirelsol/alessandria,mirelsol,JavaScript,false,false,false,0,false,false,false,false +ArmarX/ArmarXCore,ArmarX,C++,false,false,false,0,false,false,false,false +bitfireAT/ical4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false +robigalia/sel4-sys,robigalia,Python,true,false,false,1,false,true,false,false +bitfireAT/dav4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false +egh/zotxt,egh,Ruby,false,false,false,0,false,false,false,false +rndusr/i3barfodder,rndusr,Python,false,false,false,0,false,false,false,false +gitlab-examples/postgres,gitlab-examples,,true,false,false,1,false,true,false,false +xojoc/engine,xojoc,Go,false,false,false,0,false,false,false,false +hoyle.hoyle/pynvr,hoyle.hoyle,HTML,false,false,false,0,false,false,false,false +inkscape/lib2geom,inkscape,C++,true,false,false,1,true,false,false,false +Scott.Tomaszewski/grokNotes,Scott.Tomaszewski,Java,true,false,false,1,false,true,false,false +Varlorg/uNote,Varlorg,Java,true,false,false,2,true,false,false,true +plumbis/interop-2016,plumbis,Python,true,false,false,2,false,false,false,false +gitlab-examples/docker,gitlab-examples,,true,false,false,1,true,false,false,false +davidpett/ember-cli-gitlab-ci,davidpett,JavaScript,true,false,false,1,false,true,false,false +oprudkyi/laravel-bootstrap-adminlte-starter-kit,oprudkyi,PHP,true,false,false,2,false,true,true,false +gitlab-org/ci-cd/docker-machine,gitlab-org,Go,true,false,false,2,true,false,false,false +librehealth/toolkit/lh-toolkit,librehealth,Java,true,false,true,3,false,true,true,false +sheerun/ping,sheerun,JavaScript,true,false,false,1,false,true,false,false +stavros/gamelights,stavros,Python,true,false,false,1,false,true,false,false +mire3212/JSSAPIWrapper,mire3212,Swift,false,false,false,0,false,false,false,false +mailman/django-mailman3,mailman,Python,true,false,false,1,false,true,false,false +fabriciorit/OpenGPU,fabriciorit,C,false,false,false,0,false,false,false,false +ByteHamster/changelog,ByteHamster,Java,true,false,false,1,true,false,false,false +Zipcore/HungerGames,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +iankelling/spray,iankelling,EmacsLisp,false,false,false,0,false,false,false,false +Flockademic/Flockademic,Flockademic,TypeScript,true,false,false,8,false,true,false,false +gitpitch/gitpitch,gitpitch,Java,false,false,false,0,false,false,false,false +sebdeckers/unbundle,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +MarcStan/MonoGame.Framework.WpfInterop,MarcStan,C#,false,false,false,0,false,false,false,false +gitlab-org/ci-training-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false +stavros/yeecli,stavros,Python,true,false,false,1,false,false,false,false +librehealth/outreach/gci,librehealth,,false,false,false,0,false,false,false,false +atorresm/Starun,atorresm,Java,false,false,false,0,false,false,false,false +yongqiang/docker-lifecycle-scripts,yongqiang,Groovy,false,false,false,0,false,false,false,false +BoltsJ/cuteNTR,BoltsJ,C++,true,false,false,1,false,true,false,false +commonroad/commonroad.gitlab.io,commonroad,Python,false,false,false,0,false,false,false,false +objectifsecurite/ophcrack,objectifsecurite,C,false,false,false,0,false,false,false,false +mojo42/retoot,mojo42,Python,false,true,false,0,false,false,false,false +dennis-hamester/dacite,dennis-hamester,Rust,true,false,false,3,false,false,false,false +parasol-lab/stapl,parasol-lab,C++,false,false,false,0,false,false,false,false +ScreepsCCC/public,ScreepsCCC,JavaScript,false,false,false,0,false,false,false,false +degoos/WetSponge,degoos,Java,true,false,false,1,false,false,true,false +jix/varisat,jix,Rust,false,false,false,0,false,false,false,false +ayana/core,ayana,JavaScript,false,false,false,0,false,false,false,false +Zipcore/Prophunt,Zipcore,SourcePawn,false,false,false,0,false,false,false,false +librespacefoundation/satnogs/satnogs-client,librespacefoundation,Python,true,false,false,4,true,true,true,false +burke-software/django-report-builder,burke-software,Python,true,true,false,1,false,true,false,false +ExeQue/PHP-HIBP,ExeQue,PHP,false,false,false,0,false,false,false,false +anarcat/feed2exec,anarcat,Python,true,false,false,1,false,true,false,false +tslocum/meditationassistant,tslocum,Java,false,false,false,0,false,false,false,false +fathom/chat,fathom,JavaScript,false,false,false,0,false,false,false,false +gitlab-com/gl-security/engineering,gitlab-com,,false,false,false,0,false,false,false,false +yorickpeterse/ruby-lint,yorickpeterse,Ruby,false,false,false,0,false,false,false,false +datadrivendiscovery/common-primitives,datadrivendiscovery,Python,true,false,false,1,true,false,false,false +znixian/payday2-superblt,znixian,C++,true,false,false,1,true,false,false,false +debugging/debug,debugging,,false,false,false,0,false,false,false,false +DerethForever/Gameserver,DerethForever,C#,false,false,false,0,false,false,false,false +msvechla/vaultbot,msvechla,Go,true,false,false,2,false,true,false,true +sebdeckers/tls-keygen,sebdeckers,JavaScript,true,false,false,1,false,true,false,false +linux-wiiu/linux-wiiu,linux-wiiu,,false,false,false,0,false,false,false,false +janneke/gash,janneke,Scheme,false,false,false,0,false,false,false,false +Millenaire/Public,Millenaire,,false,false,false,0,false,false,false,false +jojo_boulix/auto-multiple-choice,jojo_boulix,Perl,true,false,false,1,true,false,false,false +electronDLT/chainhammer,electronDLT,JupyterNotebook,false,false,false,0,false,false,false,false +obsidian.systems/tezos-baking-platform,obsidian.systems,Nix,false,false,false,0,false,false,false,false +larcado/sesam,larcado,Java,false,false,false,0,false,false,false,false +bloodyhealth/drip,bloodyhealth,JavaScript,true,false,false,1,false,true,false,false +LibreArp/LibreArp,LibreArp,C++,false,false,false,0,false,false,false,false +CyanBlob/FlutterCI,CyanBlob,,true,false,false,1,false,true,false,false +derSchabi/OCBookmarks,derSchabi,Java,true,false,false,2,true,true,false,false +Alvin9999/new-pac,Alvin9999,,false,false,false,0,false,false,false,false +UCRobotics/IGVC2019,UCRobotics,Roff,false,false,false,0,false,false,false,false +divino.marchese/zuccante_src,divino.marchese,Java,false,false,false,0,false,false,false,false +sharkattack/express-authentication,sharkattack,JavaScript,false,false,false,0,false,false,false,false +fbb-git/bisoncpp,fbb-git,C++,false,false,false,0,false,false,false,false +abiosoft/hello-rust,abiosoft,Rust,false,false,false,0,false,false,false,false +Openki/Openki,Openki,JavaScript,true,false,false,1,false,false,true,false +Aithios/Simplon_Devops,Aithios,Shell,false,false,false,0,false,false,false,false +ambrevar/ambrevar.gitlab.io,ambrevar,EmacsLisp,true,false,false,1,false,true,false,false +postmarketOS/postmarketos.org,postmarketOS,CSS,false,false,false,0,false,false,false,false +xrptoolkit/xrptoolkit-client,xrptoolkit,,false,false,false,0,false,false,false,false +Alaricgekko/Simplon_Alaric,Alaricgekko,,false,false,false,0,false,false,false,false +Metal65/simplon_Laurent,Metal65,,false,false,false,0,false,false,false,false +lambdatronic/clojure-webapp-template,lambdatronic,Clojure,false,false,false,0,false,false,false,false +pages/vuepress,pages,,true,false,false,1,false,true,false,false +rayark/mast,rayark,C#,true,false,false,2,true,false,false,true +Ealhad/peertubeify,Ealhad,TypeScript,false,false,false,0,false,false,false,false +jD91mZM2/rnix,jD91mZM2,Rust,true,false,false,1,false,true,false,false +paulcarroty/vscodium-deb-rpm-repo,paulcarroty,Shell,true,false,false,1,true,false,false,false +elegy0101/tutorial---blog-chido-con-django,elegy0101,Python,true,true,false,1,false,true,false,false +harth/superouter,harth,JavaScript,true,false,false,2,false,true,false,false +gitlab-org/security-products/dependency-scanning,gitlab-org,Go,true,false,false,4,true,true,true,false +MazeChaZer/knobster,MazeChaZer,JavaScript,true,false,false,4,true,true,true,false +mastermotormap/mmmcore,mastermotormap,C++,false,false,false,0,false,false,false,false +doctorkb/wme-toolbox-public,doctorkb,,false,false,false,0,false,false,false,false +mcepl/create-gitlab-repo,mcepl,Python,false,false,false,0,false,false,false,false +evol/evol-all,evol,Shell,false,false,false,0,false,false,false,false +sortie/meaty-skeleton,sortie,C,false,false,false,0,false,false,false,false +adol-c/adol-c,adol-c,C++,true,false,false,1,true,false,false,false +fg-radi/osm2city,fg-radi,Python,false,true,false,0,false,false,false,false +Wunkolo/ElDorito,Wunkolo,C++,false,false,false,0,false,false,false,false +bhowell/the-screenless-office,bhowell,Python,false,true,false,0,false,false,false,false +forlongthefat/rotwk-unofficial-202,forlongthefat,HTML,false,false,false,0,false,false,false,false +mailman/mailman-hyperkitty,mailman,Python,true,false,false,1,false,true,false,false +asura/android,asura,Java,true,false,false,1,false,true,false,false +pythonfoo/AA,pythonfoo,Python,true,false,false,2,false,true,true,false +esr/git-debubble,esr,Shell,false,false,false,0,false,false,false,false +rosarior/descartes-bi,rosarior,Python,false,true,false,0,false,false,false,false +Simox/simox,Simox,C++,false,false,false,0,false,false,false,false +Numergent/relevance,Numergent,Clojure,true,false,false,1,false,true,false,false +zachdaniel/result-monad,zachdaniel,Ruby,false,false,false,0,false,false,false,false +iceguye/bd700,iceguye,,false,false,false,0,false,false,false,false +esr/practical-python-porting,esr,Python,false,false,false,0,false,false,false,false +morpheus.lab/morpheus,morpheus.lab,C++,false,false,false,0,false,false,false,false +jekyll-themes/jasper,jekyll-themes,CSS,true,false,false,1,false,false,true,false +libosinfo/libosinfo,libosinfo,C,false,false,false,0,false,false,false,false +nagisa/huehuehuehuehue,nagisa,C,false,false,false,0,false,false,false,false +rusty-binder/rusty-cheddar,rusty-binder,Rust,true,false,false,2,false,true,true,false +HelloZeroNet/ZeroNet,HelloZeroNet,Python,false,true,false,0,false,false,false,false +pages/nikola,pages,Python,true,false,false,1,false,true,false,false +slashdeploy/docker-node-boilerplate,slashdeploy,Makefile,true,false,false,1,false,true,false,false +gitlabcontribute/Summit-2017,gitlabcontribute,,false,false,false,0,false,false,false,false +dimitrieh/curriculumvitae-ci-boilerplate,dimitrieh,Shell,true,false,false,1,false,true,false,false +palmapps/jwt-spring-security-demo,palmapps,Java,false,false,true,0,false,false,false,false +pmikkelsen/asm_snake,pmikkelsen,Assembly,false,false,false,0,false,false,false,false +IvanSanchez/geogrids,IvanSanchez,HTML,true,false,false,1,false,false,true,false +ezlab/busco,ezlab,Python,false,false,false,0,false,false,false,false +argit/hello-matrix-bot,argit,JavaScript,false,false,false,0,false,false,false,false +meutraa/mm,meutraa,Go,true,false,false,1,false,true,false,false +Zettai-Nikoru-Man/GijiNikoru,Zettai-Nikoru-Man,PHP,true,false,false,1,false,true,false,false +IvanSanchez/Leaflet.TileLayer.GL,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false +kunglab/ddnn,kunglab,Python,false,true,false,0,false,false,false,false +space-sh/space,space-sh,Shell,true,false,false,4,false,true,false,false +randyyaj/SpringVue-Starter,randyyaj,JavaScript,false,false,true,0,false,false,false,false +vancan1ty/clstandard_build,vancan1ty,TeX,false,false,false,0,false,false,false,false +Kerenoc/GCstar,Kerenoc,Perl,false,false,false,0,false,false,false,false +Couchbox/couchbox,Couchbox,JavaScript,false,false,false,0,false,false,false,false +P1xt/get-job-ready-template,P1xt,,false,false,false,0,false,false,false,false +axet/android-hourly-reminder,axet,Java,false,false,false,0,false,false,false,false +iot110/iot110-student,iot110,Python,false,false,false,0,false,false,false,false +fatihacet/vuejs-videolari,fatihacet,JavaScript,false,false,false,0,false,false,false,false +shirazlug/shirazlug.gitlab.io,shirazlug,HTML,true,false,false,1,false,true,false,false +snowball-dev-group/snowball-bot,snowball-dev-group,TypeScript,true,false,false,1,true,false,false,false +denispahunov/voxeland,denispahunov,C#,false,false,false,0,false,false,false,false +CopyNippyJoin/emdl,CopyNippyJoin,JavaScript,true,false,false,1,false,false,true,false +BluestNight/BluestNight,BluestNight,PHP,false,false,false,0,false,false,false,false +libxc/libxc,libxc,C,false,false,false,0,false,false,false,false +100shapes/ux-scenarios-scaffolder,100shapes,JavaScript,false,false,false,0,false,false,false,false +DerLinkshaender/csv2xlsx,DerLinkshaender,Go,false,false,false,0,false,false,false,false +morph027/signal-web-gateway,morph027,Shell,true,false,false,2,false,true,false,true +ponylin1985/ZayniFramework,ponylin1985,C#,false,false,false,0,false,false,false,false +latency.at/latency_exporter,latency.at,Go,true,false,false,1,true,false,false,false +lunafromthemoon/RenJSTutorial,lunafromthemoon,JavaScript,false,false,false,0,false,false,false,false +tmaier/gitlab-auto-merge-request,tmaier,Shell,true,false,false,1,false,false,false,false +mydropwizard/roundearth-drops-8,mydropwizard,PHP,false,false,false,0,false,false,false,false +chaucha/chauchera,chaucha,C++,false,false,false,0,false,false,false,false +asromzek/fmobile,asromzek,Vue,true,false,false,1,false,true,false,false +metaperl/surgetrader,metaperl,Python,false,true,false,0,false,false,false,false +kachkaev/website,kachkaev,,true,false,false,1,false,true,false,false +pages/emacs-reveal,pages,EmacsLisp,true,false,false,1,false,false,true,false +m.rakha.f/alphat-new-generation,m.rakha.f,JavaScript,true,false,false,1,false,true,false,false +gfwlist/gfwlist,gfwlist,,false,false,false,0,false,false,false,false +blueoakinteractive/gitlab-harvest,blueoakinteractive,JavaScript,false,false,false,0,false,false,false,false +iota-foundation/software/wallet,iota-foundation,JavaScript,false,false,false,0,false,false,false,false +recalbox/recalbox-themes,recalbox,,false,false,false,0,false,false,false,false +distributopia/share-connect-support,distributopia,HTML,true,false,false,1,false,false,true,false +strace/strace,strace,C,true,false,false,1,false,true,false,false +neomutt/neomutt,neomutt,C,false,false,false,0,false,false,false,false +eyeo/specs/spec,eyeo,,false,false,false,0,false,false,false,false +fgiraldeau/INF2005,fgiraldeau,HTML,true,false,false,1,false,true,false,false +N3K/movement-controller,N3K,C#,false,false,false,0,false,false,false,false +roboticsclub/ftc_app,roboticsclub,Java,false,false,false,0,false,false,false,false +elixire/elixire,elixire,Python,true,true,false,1,false,true,false,false +triq/triq,triq,Erlang,true,false,false,3,true,true,true,false +atorresm/solaria,atorresm,GDScript,false,false,false,0,false,false,false,false +randy408/libspng,randy408,C,true,false,false,2,false,true,false,false +k-terashima/bitmex.pub,k-terashima,Go,false,false,false,0,false,false,false,false +danialbehzadi/danialassist,danialbehzadi,Python,false,true,false,0,false,false,false,false +danielgordon10/re3-tensorflow,danielgordon10,Python,false,true,false,0,false,false,false,false +aur-linux-surface/kernel,aur-linux-surface,Shell,false,false,false,0,false,false,false,false +changelogs/changelog-manager,changelogs,JavaScript,false,false,false,0,false,false,false,false +coala/GSoC/GSoC-2018,coala,,false,false,false,0,false,false,false,false +iamsubhranil/Cell,iamsubhranil,C,false,false,false,0,false,false,false,false +langurmonkey/gaiasky,langurmonkey,Java,true,false,false,1,false,false,false,false +ArsenArsen/KShare,ArsenArsen,C++,false,false,false,0,false,false,false,false +LinxGem33/X-Arc-Shadow,LinxGem33,CSS,false,false,false,0,false,false,false,false +Till.Coyote/vkfeed2rss,Till.Coyote,PHP,false,false,false,0,false,false,false,false +bharadwaj-raju/qOverview,bharadwaj-raju,Python,false,false,false,0,false,false,false,false +hsleisink/hiawatha,hsleisink,C,false,false,false,0,false,false,false,false +tobben/hangprinter,tobben,C,false,false,false,0,false,false,false,false +owl-lisp/owl,owl-lisp,Scheme,true,false,false,1,true,false,false,false +bharadwaj-raju/TextSuggest,bharadwaj-raju,C++,false,false,false,0,false,false,false,false +solarus-games/children-of-solarus,solarus-games,Lua,false,false,false,0,false,false,false,false +solarus-games/solarus-quest-editor,solarus-games,C++,true,false,false,1,true,false,false,false +solarus-games/zsdx,solarus-games,Lua,false,false,false,0,false,false,false,false +upend/github/evac-movement,upend,,false,false,false,0,false,false,false,false +sambazley/blockbar,sambazley,C,false,false,false,0,false,false,false,false +nsnam/ns-3-dev,nsnam,C++,false,false,false,0,false,false,false,false +mort96/remotedotool,mort96,C,false,false,false,0,false,false,false,false +florin.barbuceanu/automation,florin.barbuceanu,Java,false,false,false,0,false,false,false,false +ervinismu/binar-backend-class,ervinismu,,false,false,false,0,false,false,false,false +alextee/zrythm,alextee,C,false,false,false,0,false,false,false,false +NicoAlt/fdroidpub,NicoAlt,,false,false,false,0,false,false,false,false +Bubu/fdroidclassic,Bubu,Java,true,false,false,1,false,true,false,false +bambootran89/zaloai-music,bambootran89,Python,false,false,false,0,false,false,false,false +asarazan/kotlinconf18,asarazan,Kotlin,false,false,false,0,false,false,false,false +mindsphere/devops-demo,mindsphere,JavaScript,true,false,false,3,false,true,true,false +MaryChelo/web-scraping,MaryChelo,JupyterNotebook,true,false,false,1,false,true,false,false +Songoda/SkyBlock,Songoda,Java,true,false,false,1,true,false,false,false +AlessandroMilan/Design-Patterns-CSharp,AlessandroMilan,C#,true,false,false,3,true,true,true,false +StevenWCox/sfapexdoc,StevenWCox,Java,false,false,false,0,false,false,false,false +adin/texstudio-profiles,adin,,false,false,false,0,false,false,false,false +gamechefs/kimaya,gamechefs,C#,false,false,false,0,false,false,false,false +ixion/ixion,ixion,C++,true,false,false,1,true,false,false,false +entangle/entangle,entangle,C,true,false,false,1,false,true,false,false +libvirt/libvirt,libvirt,C,true,false,false,1,false,true,false,false +dianara/dianara-dev,dianara,C++,false,false,false,0,false,false,false,false +mailman/mailmanclient,mailman,Python,true,false,false,1,false,true,false,false +esr/deheader,esr,Python,false,false,false,0,false,false,false,false +gnukhata/gkwebapp,gnukhata,JavaScript,false,false,false,0,false,false,false,false +db260179/openwrt-bpi-r1,db260179,C,false,false,false,0,false,false,false,false +tulip-lang/tulip,tulip-lang,Python,false,false,false,0,false,false,false,false +mmk2410/intellij-idea-community,mmk2410,Shell,false,false,false,0,false,false,false,false +victorhck/privacytools-es,victorhck,HTML,true,false,false,1,false,true,false,false +gitlab-org/gitlab-build-images,gitlab-org,Shell,true,false,false,3,true,true,false,false +ole.tange/tangetools,ole.tange,Perl,false,false,false,0,false,false,false,false +codingrights/radarlegislativo,codingrights,Python,true,true,false,1,false,true,false,false +coala/coala-utils,coala,Python,true,true,false,1,false,true,false,false +ayufan/merge-requests-triggers,ayufan,Go,false,false,false,0,false,false,false,false +xphnx/ameixa-monochrome,xphnx,Java,false,false,false,0,false,false,false,false +FrontlineA3/Frontline,FrontlineA3,C++,false,false,false,0,false,false,false,false +hiroponz/sample-app,hiroponz,Ruby,true,false,false,1,false,true,false,false +barrel-db/erlang-rocksdb,barrel-db,C++,true,false,false,1,false,true,false,false +gutocarvalho/devops-tips,gutocarvalho,,false,false,false,0,false,false,false,false +coala/cobot,coala,CoffeeScript,true,false,false,1,false,true,false,false +jasonnutter/vscode-gitlab-mr,jasonnutter,JavaScript,false,false,false,0,false,false,false,false +jobol/mustach,jobol,C,true,false,false,1,false,true,false,false +pocketrangers/pocketbot,pocketrangers,JavaScript,false,false,false,0,false,false,false,false +aegir/aegir,aegir,CSS,true,false,false,4,false,true,false,true +sat-metalab/splash,sat-metalab,C++,true,false,false,2,false,true,false,false +laanekass/ValiItTeooriaKoodiN2ited,laanekass,Java,false,false,false,0,false,false,false,false +zaaksysteem/zaaksysteem,zaaksysteem,Perl,true,false,false,3,true,true,true,false +gitlab-org/gitaly-proto,gitlab-org,Ruby,false,false,false,0,false,false,false,false +srrg-software/srrg_mpr,srrg-software,C++,true,false,false,2,true,true,false,false +mzdonline/cmu-autorun,mzdonline,Shell,false,false,false,0,false,false,false,false +adrien-n/prose,adrien-n,OCaml,false,false,false,0,false,false,false,false +gitlab-terraform/gce,gitlab-terraform,HCL,false,false,false,0,false,false,false,false +emacs-ci/emacs,emacs-ci,EmacsLisp,true,false,false,1,false,true,false,false +coala/GSoC/GSoC-2017,coala,,false,false,false,0,false,false,false,false +tspiteri/rug,tspiteri,Rust,false,false,false,0,false,false,false,false +eql/EQL5-Android,eql,CommonLisp,false,false,false,0,false,false,false,false +hotlittlewhitedog/BibleMultiTheLight,hotlittlewhitedog,Java,false,false,false,0,false,false,false,false +Project-FiFo/DalmatinerDB/dalmatinerdb,Project-FiFo,Erlang,true,false,false,2,false,true,false,false +rmenk/private-sphinx-test,rmenk,,true,false,false,1,false,false,true,false +msvechla/kubehiera,msvechla,Go,true,false,false,1,true,false,false,false +gitlab-org/distribution/team-tasks,gitlab-org,,false,false,false,0,false,false,false,false +pmorinerie/birdsite,pmorinerie,JavaScript,true,false,false,1,false,true,false,false +IzzyOnDroid/repo,IzzyOnDroid,,false,false,false,0,false,false,false,false +gitlab-com/people-ops/employment,gitlab-com,,true,false,false,2,true,true,false,false +shreyakumar/ds-sp-18-public,shreyakumar,C++,false,false,false,0,false,false,false,false +bluebank/braid,bluebank,Kotlin,true,false,true,3,true,false,false,true +juanitobananas/scrambled-exif,juanitobananas,Java,true,false,false,1,true,false,false,false +surfraw/Surfraw,surfraw,Shell,false,false,false,0,false,false,false,false +nicofirst1/MotionBot,nicofirst1,Python,false,true,false,0,false,false,false,false +Flockademic/whereisscihub,Flockademic,JavaScript,true,false,false,2,false,false,true,false +shellyBits/v-chacheli,shellyBits,Vue,true,false,false,1,false,false,true,false +sdnlab/jaguar,sdnlab,Java,true,false,true,2,true,true,false,false +technomancy/exo-encounter-667,technomancy,Lua,false,false,false,0,false,false,false,false +hyunny88/auto-trading,hyunny88,JupyterNotebook,false,false,false,0,false,false,false,false +obsidian.systems/tezos-bake-monitor,obsidian.systems,JavaScript,false,false,false,0,false,false,false,false +KilgoreTroutMaskReplicant/1oom,KilgoreTroutMaskReplicant,C,false,false,false,0,false,false,false,false +mgdobachesky/ArchSystemMaintenance,mgdobachesky,Shell,false,false,false,0,false,false,false,false +juliensimon/dlnotebooks,juliensimon,JupyterNotebook,false,false,false,0,false,false,false,false +skillcamp/skillcamp.io,skillcamp,JavaScript,false,false,false,0,false,false,false,false +xiliumhq/chromiumembedded/cefglue,xiliumhq,C#,false,false,false,0,false,false,false,false +supremesonicbrazil/GBML,supremesonicbrazil,C,false,false,false,0,false,false,false,false +vuedoc/md,vuedoc,JavaScript,true,false,false,2,false,true,false,true +dylan.drost/dart-im-your-flutter,dylan.drost,Dart,false,false,false,0,false,false,false,false +thermatk/Unobtainium,thermatk,,false,false,false,0,false,false,false,false +ric_harvey/bl_practical_fargate,ric_harvey,,false,false,false,0,false,false,false,false +DampflokTV/LakesideReallife_V2,DampflokTV,C++,false,false,false,0,false,false,false,false +znixian/OpenOVR,znixian,C++,false,false,false,0,false,false,false,false +rfc2822/device-locator,rfc2822,Kotlin,false,false,false,0,false,false,false,false +paessler-labs/GarbageBot,paessler-labs,Python,false,false,false,0,false,false,false,false +Niklan/dlog,Niklan,CSS,true,false,false,1,false,false,true,false +RaitaroH/ProtonMail-DeepDark,RaitaroH,CSS,false,false,false,0,false,false,false,false +sanrod/go-tutorial,sanrod,Go,true,false,false,1,false,true,false,false +aar642/shadowos-boot,aar642,PHP,true,false,false,1,true,false,false,false +sifoo/snigl,sifoo,C,true,false,false,2,true,true,false,false +LazyLibrarian/LazyLibrarian,LazyLibrarian,Python,false,false,false,0,false,false,false,false +NickBusey/inventario,NickBusey,JavaScript,true,false,false,1,false,true,false,false +Aidenbuis/telegram-voice-journal-bot,Aidenbuis,JavaScript,false,false,false,0,false,false,false,false +latency.at/web,latency.at,JavaScript,true,false,false,2,true,false,true,false +vindarel/abelujo,vindarel,Python,true,false,false,2,false,true,false,true +xonotic/darkplaces,xonotic,C,false,false,false,0,false,false,false,false +kanban/client,kanban,JavaScript,false,false,false,0,false,false,false,false +probablyengine/probably,probablyengine,Lua,false,false,false,0,false,false,false,false +stigatle/yaics,stigatle,C++,false,false,false,0,false,false,false,false +orcus/orcus,orcus,C++,true,false,false,1,true,false,false,false +mailman/mailman-bundler,mailman,Python,false,false,false,0,false,false,false,false +ayufan/python-getting-started,ayufan,HTML,true,false,false,1,false,true,false,false +ImageMagick/ImageMagick,ImageMagick,C,false,false,false,0,false,false,false,false +gitlab-org/University,gitlab-org,CSS,true,false,false,1,false,true,false,false +j-pb/franz,j-pb,Clojure,true,false,false,2,false,true,true,false +ebenard/linux-stable,ebenard,,false,false,false,0,false,false,false,false +rajeshponnala/awesome-react,rajeshponnala,JavaScript,false,false,false,0,false,false,false,false +siasar-project/admin,siasar-project,PHP,true,false,false,1,false,false,true,false +STEMLab/CPP2016Spring,STEMLab,C++,false,false,false,0,false,false,false,false +susurrus/gattii,susurrus,Rust,true,false,false,3,true,true,false,false +emacs-stuff/indent-tools,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +antoniotari/reactive-ampache,antoniotari,Java,false,false,false,0,false,false,false,false +spoatacus/sonarr-episode-trimmer,spoatacus,Python,false,false,false,0,false,false,false,false +nasa-jsc-robotics/valkyrie,nasa-jsc-robotics,CSS,false,false,false,0,false,false,false,false +gitlab-examples/kubernetes-example,gitlab-examples,HTML,true,false,false,3,true,true,false,true +eightnoteight/aschedule,eightnoteight,Python,true,true,false,1,false,true,false,false +marathono/marathono,marathono,,false,false,false,0,false,false,false,false +minoca/os,minoca,C,false,false,false,0,false,false,false,false +frankrich/sds011_particle_sensor,frankrich,Python,false,false,false,0,false,false,false,false +kupo-bot/KupoBot,kupo-bot,Python,false,false,false,0,false,false,false,false +phlint/phlint,phlint,PHP,true,false,false,1,false,true,false,false +axet/android-binaural-beats,axet,Java,false,false,false,0,false,false,false,false +TeeFirefly/FireNow-Marshmallow,TeeFirefly,,false,false,false,0,false,false,false,false +barrel-db/barrel-platform,barrel-db,JavaScript,true,false,false,1,false,true,false,false +vurpo/godot-matrix,vurpo,C++,false,false,false,0,false,false,false,false +minetest/minetest,minetest,C++,true,false,false,4,true,true,true,false +afolson/bedlam,afolson,JavaScript,false,false,false,0,false,false,false,false +aossie/CarbonFootprint-Mobile,aossie,JavaScript,true,false,false,1,true,false,false,false +denispahunov/shared,denispahunov,C#,false,false,false,0,false,false,false,false +painlessMesh/painlessMeshListener,painlessMesh,D,false,false,false,0,false,false,false,false +tmendes/BirthDayDroid,tmendes,Java,true,false,false,1,false,false,true,false +gitlab-org/project-templates/rails,gitlab-org,Ruby,false,false,false,0,false,false,false,false +rfc2822/fdroid-firefox,rfc2822,Python,true,false,false,1,false,false,true,false +DSASanFrancisco/membership_api,DSASanFrancisco,Python,false,false,false,0,false,false,false,false +smallstack/infrastructure/jira2gitlab,smallstack,TypeScript,true,false,false,1,false,false,true,false +gitlab-org/csslab,gitlab-org,HTML,true,false,false,3,true,true,true,false +HearthProject/HearthLauncher,HearthProject,C++,true,false,false,4,true,true,true,true +morph027/pve-infra-poc,morph027,Shell,false,false,false,0,false,false,false,false +softwa/very-hungry-penguins,softwa,OCaml,true,false,false,1,false,true,false,false +metapensiero/metapensiero.pj,metapensiero,Python,true,true,false,2,false,true,false,false +patkennedy79/flask_user_management_example,patkennedy79,Python,false,true,false,0,false,false,false,false +wrobell/remt,wrobell,Python,true,true,false,1,false,true,false,false +charts/auto-deploy-app,charts,Smarty,true,false,false,2,false,true,false,true +tildes/tildes-static-sites,tildes,HTML,false,false,false,0,false,false,false,false +BuildGrid/buildgrid,BuildGrid,Python,true,true,false,3,false,true,true,false +fatihacet/gitlab-deck,fatihacet,Vue,false,false,false,0,false,false,false,false +SuperFreezZ/SuperFreezZ,SuperFreezZ,Kotlin,false,false,false,0,false,false,false,false +NullVoxPopuli/emberclear,NullVoxPopuli,TypeScript,true,false,false,5,true,true,true,false +voadi/voadi,voadi,Lua,false,false,false,0,false,false,false,false +jensstein/oandbackup,jensstein,Java,true,false,false,4,true,true,false,false +crates.rs/crates.rs,crates.rs,Makefile,false,false,false,0,false,false,false,false +mindfulness-at-the-computer/mindfulness-at-the-computer,mindfulness-at-the-computer,Python,true,true,false,1,false,true,false,false +oeffi/public-transport-enabler,oeffi,Java,false,false,false,0,false,false,false,false +TacoTheDank/APKMirror,TacoTheDank,Java,false,false,false,0,false,false,false,false +ngxbac/ZL,ngxbac,Python,false,false,false,0,false,false,false,false +depesz/pg_terminator,depesz,Ruby,false,false,false,0,false,false,false,false +luis.pinedo22/clustering-con-python,luis.pinedo22,JupyterNotebook,false,false,false,0,false,false,false,false +isaac.rodriguez/recaptcha-v2,isaac.rodriguez,HTML,false,false,false,0,false,false,false,false +hector.giron08/primeros-pasos-de-python,hector.giron08,CSS,true,false,false,2,false,false,true,false +LionessAlana/aurafetch,LionessAlana,Shell,false,false,false,0,false,false,false,false +inbitcoin/lighter,inbitcoin,Python,true,false,false,1,false,true,false,false +datadrivendiscovery/d3m,datadrivendiscovery,Python,true,false,false,2,true,false,true,false +psono/psono-server,psono,Python,true,true,false,4,true,true,true,true +emacs-stuff/git-commit-insert-issue,emacs-stuff,EmacsLisp,false,false,false,0,false,false,false,false +toaruos/toaruos,toaruos,C,false,false,false,0,false,false,false,false +egh/ledger-autosync,egh,Python,false,true,false,0,false,false,false,false +apgoucher/DLAE,apgoucher,Python,false,false,false,0,false,false,false,false +tastapod/jgotesting,tastapod,Java,false,false,false,0,false,false,false,false +fdroid/artwork,fdroid,Shell,true,false,false,1,false,false,true,false +mibitzi/weiqi.gs,mibitzi,Python,true,true,false,1,false,true,false,false +aegir/hosting_https,aegir,PHP,false,false,false,0,false,false,false,false +Folknology/mystorm,Folknology,C,false,false,false,0,false,false,false,false +stavros/sonoff,stavros,C++,true,false,false,1,false,true,false,false +andrewbanchich/forty-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false +passit/passit-frontend,passit,TypeScript,true,false,false,4,false,true,true,true +marco_turi/ionic2-boilerplate,marco_turi,JavaScript,true,false,false,2,false,true,true,false +octopus-code/octopus,octopus-code,Fortran,false,false,false,0,false,false,false,false +scmaps.net/starcraft_brood_war_maps_archive,scmaps.net,Scheme,false,false,false,0,false,false,false,false +InstitutMaupertuis/ros_additive_manufacturing,InstitutMaupertuis,C++,false,false,false,0,false,false,false,false +ProfaneDB/ProfaneDB,ProfaneDB,C++,false,false,false,0,false,false,false,false +metachris/python-boilerplate-templates,metachris,Python,true,true,false,2,false,true,true,false +robcresswell/vue-material-design-icons,robcresswell,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/project-templates/spring,gitlab-org,Java,false,false,true,0,false,false,false,false +grisetti/sistemi_operativi_2016_17,grisetti,C,false,false,false,0,false,false,false,false +Project-FiFo/FiFo/vmadm,Project-FiFo,Rust,true,false,false,2,false,true,false,false +kachkaev/website-frontend,kachkaev,TypeScript,true,false,false,2,false,false,false,false +gitlab-org/build/CNG,gitlab-org,Shell,true,false,false,8,false,true,false,true +ElenQ/artodon,ElenQ,Clojure,true,false,false,1,false,true,false,false +4144/Nemo,4144,Python,true,false,false,1,false,true,false,false +jinwoo-kim/training-jwkim,jinwoo-kim,JavaScript,false,false,false,0,false,false,false,false +mr.patty.wilbur/supersandbox,mr.patty.wilbur,,false,false,false,0,false,false,false,false +remastersys/LinuxRespin,remastersys,Shell,false,false,false,0,false,false,false,false +kennbroorg/iKy,kennbroorg,CSS,false,false,false,0,false,false,false,false +konrad.mrozek/cljfmt-graalvm,konrad.mrozek,Clojure,true,false,false,1,false,false,false,true +semkodev/nelson.cli,semkodev,JavaScript,true,false,false,3,false,true,false,true +rjurga/ludget,rjurga,Python,false,false,false,0,false,false,false,false +jschx/ufetch,jschx,Shell,false,false,false,0,false,false,false,false +Aberrantfox/KUtils,Aberrantfox,Kotlin,false,false,true,0,false,false,false,false +doctormo/python-crontab,doctormo,Python,false,false,false,0,false,false,false,false +openpowerlifting/opl-data,openpowerlifting,HTML,true,false,false,1,false,true,false,false +fcitx/fcitx5,fcitx,C++,false,false,false,0,false,false,false,false +KevinRoebert/ClearUrls,KevinRoebert,JavaScript,true,false,false,1,true,false,false,false +tslocum/tinyib,tslocum,PHP,false,false,false,0,false,false,false,false +k3oni/pydash,k3oni,JavaScript,false,false,false,0,false,false,false,false +dslackw/colored,dslackw,Python,false,true,false,0,false,false,false,false +Go101/go101,Go101,HTML,false,false,false,0,false,false,false,false +rastersoft/cronopete,rastersoft,Vala,false,false,false,0,false,false,false,false +An0/SimpleDiscordCrypt,An0,JavaScript,false,false,false,0,false,false,false,false +3DelightOpenSource/HydraNSI,3DelightOpenSource,C++,false,false,false,0,false,false,false,false +jgarr/awesome-TUIs,jgarr,,false,false,false,0,false,false,false,false +nberend/php-mvc,nberend,CSS,false,false,false,0,false,false,false,false +nopaystation_repos/nps_compati_packs,nopaystation_repos,Ruby,false,false,false,0,false,false,false,false +Nordgedanken/SimpleMatrix,Nordgedanken,Kotlin,false,false,false,0,false,false,false,false +thesmog358/tbblue,thesmog358,C,false,false,false,0,false,false,false,false +amavis/amavis,amavis,Perl,false,false,false,0,false,false,false,false +atunit/atunit,atunit,Haskell,false,false,false,0,false,false,false,false +bugseverywhere/bugseverywhere,bugseverywhere,Python,false,false,false,0,false,false,false,false +nameid/nameid,nameid,PHP,false,false,false,0,false,false,false,false +bor-sh/git-gitlab,bor-sh,Python,true,false,false,2,false,true,true,false +femsf/toleranux,femsf,,false,false,false,0,false,false,false,false +bps-projs/U365,bps-projs,C,false,false,false,0,false,false,false,false +khumba/qtah,khumba,Haskell,false,false,false,0,false,false,false,false +nishtahir/linkbait,nishtahir,Kotlin,true,false,false,3,true,true,false,true +PoroCYon/PokeApi.NET,PoroCYon,C#,false,false,false,0,false,false,false,false +pages/middleman,pages,Ruby,true,false,false,1,false,true,false,false +yogeshc/awesome-ios,yogeshc,,false,false,false,0,false,false,false,false +SingularityIO/LootBoxAPI,SingularityIO,JavaScript,true,false,false,1,false,true,false,false +mauriciobaeza/empresa-libre,mauriciobaeza,Python,false,true,false,0,false,false,false,false +dustyweb/pubstrate,dustyweb,Scheme,false,false,false,0,false,false,false,false +hexoshi/hexoshi,hexoshi,Python,false,true,false,0,false,false,false,false +argit/matrix-live,argit,JavaScript,false,false,false,0,false,false,false,false +yellowafterlife/AM2Rrc,yellowafterlife,GameMakerLanguage,false,false,false,0,false,false,false,false +cszcms/cszcms,cszcms,PHP,false,false,false,0,false,false,false,false +axet/android-torrent-client,axet,Java,true,false,false,1,false,false,true,false +bullbytes/scala-js-example,bullbytes,Scala,true,false,false,2,false,true,true,false +esr/super-star-trek,esr,Python,false,false,false,0,false,false,false,false +fast-science/background-removal-server,fast-science,JavaScript,true,false,false,1,false,false,true,false +nashjc/histoRicalg,nashjc,Fortran,false,false,false,0,false,false,false,false +GNULand/TraktorPlus/Traktor,GNULand,Shell,false,false,false,0,false,false,false,false +catalyst-it/vagrant-lxd,catalyst-it,Ruby,true,false,false,1,false,true,false,false +ar-/apple-flinger,ar-,Java,true,false,false,3,true,true,false,false +brianegan/flutter_architecture_samples,brianegan,Dart,false,false,false,0,false,false,false,false +enigmail/enigmail,enigmail,JavaScript,true,false,false,1,false,true,false,false +pdftk-java/pdftk,pdftk-java,Java,true,false,false,2,false,true,true,false +autokent/pdf-parse,autokent,JavaScript,true,false,false,5,false,true,false,true +uni10/uni10,uni10,C++,true,false,false,2,true,true,false,false +publishing-reform/discussion,publishing-reform,TeX,false,false,false,0,false,false,false,false +gitlab-org/security-products/codequality,gitlab-org,Shell,true,false,false,2,false,true,false,true +Andrea.Ligios/Wiki2PDF,Andrea.Ligios,,true,false,false,1,false,true,false,false +tuxether/anancus,tuxether,Go,false,false,false,0,false,false,false,false +DavidGriffith/minipro,DavidGriffith,Objective-C,true,false,false,1,false,false,true,false +rc0r/afl-utils,rc0r,Python,true,false,false,1,false,true,false,false +xomachine/SteamForwarder,xomachine,Nim,true,false,false,2,false,true,true,false +bharadwaj-raju/WeatherDesk,bharadwaj-raju,Python,false,false,false,0,false,false,false,false +vala-panel-project/vala-panel-appmenu,vala-panel-project,C,true,false,false,2,true,false,false,true +brvier/ForRunners,brvier,JavaScript,false,false,false,0,false,false,false,false +alaskalinuxuser/course_android_developer_guide_mp4,alaskalinuxuser,,false,false,false,0,false,false,false,false +Douman/yukikaze,Douman,Rust,true,false,false,1,false,true,false,false +cameronnemo/brillo,cameronnemo,C,true,false,false,2,true,false,false,false +iblech/tor-appeal,iblech,,false,false,false,0,false,false,false,false +abhirag/haxorville,abhirag,,false,false,false,0,false,false,false,false +xiayesuifeng/v2rayxplus,xiayesuifeng,Go,true,false,false,2,true,true,false,false +uup-dump/downloader,uup-dump,AutoHotkey,false,false,false,0,false,false,false,false +ColinDuquesnoy/MellowPlayer,ColinDuquesnoy,C++,true,false,false,5,true,true,true,false +inkscape/extensions,inkscape,Python,true,false,false,3,false,true,true,false +gitlab-org/gitlab-git-http-server,gitlab-org,Go,true,false,false,1,false,true,false,false +mayan-edms/mayan-edms-docker,mayan-edms,Python,false,false,false,0,false,false,false,false +resistivity-net/bert,resistivity-net,C++,false,false,false,0,false,false,false,false +sane-project/backends,sane-project,C,true,false,false,4,false,false,false,true +queertypes/freer,queertypes,Haskell,false,false,false,0,false,false,false,false +esr/src,esr,Python,false,false,false,0,false,false,false,false +fractalide/fractalide,fractalide,Rust,false,false,false,0,false,false,false,false +dennis-hamester/scd,dennis-hamester,C++,true,false,false,1,true,false,false,false +oath-toolkit/oath-toolkit,oath-toolkit,C,true,false,false,1,false,true,false,false +OriginsRO/OriginsRO,OriginsRO,,false,false,false,0,false,false,false,false +arturbosch/detekt,arturbosch,Kotlin,true,false,false,1,true,false,false,false +PureNexus/BeansGapps,PureNexus,Shell,false,false,false,0,false,false,false,false +abhijit13/taasika,abhijit13,PHP,false,false,false,0,false,false,false,false +oer/emacs-reveal,oer,CSS,false,false,false,0,false,false,false,false +aossie/CarbonFootprint-API,aossie,JavaScript,true,false,false,1,false,true,false,false +Sepps/app-121gw,Sepps,C#,false,false,false,0,false,false,false,false +cypress-io/cypress-example-docker-gitlab,cypress-io,JavaScript,true,false,false,2,true,true,false,false +moldcode/veco,moldcode,Python,false,false,false,0,false,false,false,false +graphviz/webdot,graphviz,Tcl,false,false,false,0,false,false,false,false +ayufan/gitlab-compose-kit,ayufan,Shell,true,false,false,1,false,true,false,false +stolea/android-gitlab-ci,stolea,Java,true,false,false,2,true,true,false,false +davidbittner/Screens,davidbittner,C++,true,false,false,1,true,false,false,false +tractor-team/tractor,tractor-team,Python,false,false,false,0,false,false,false,false +joneshf/purty,joneshf,Haskell,true,false,false,1,true,false,false,false +Yepoleb/comet,Yepoleb,C++,false,false,false,0,false,false,false,false +toaruos/toaru-nih,toaruos,C,false,false,false,0,false,false,false,false +Aberrantfox/hotbot,Aberrantfox,Kotlin,false,false,true,0,false,false,false,false +adihrustic/Mullvad-WireGuard-Wrapper,adihrustic,Shell,false,false,false,0,false,false,false,false +sawyerf/Youtube_subscription_manager,sawyerf,Python,true,false,false,2,true,true,false,false +nimf-i18n/nimf,nimf-i18n,C,false,false,false,0,false,false,false,false +francoisjacquet/rosariosis,francoisjacquet,PHP,false,false,false,0,false,false,false,false +tzscan/tzscan,tzscan,OCaml,false,false,false,0,false,false,false,false +indicproject/indic-keyboard,indicproject,Java,false,false,false,0,false,false,false,false +mdds/mdds,mdds,C++,true,false,false,1,true,false,false,false +trantor/trantor,trantor,Go,false,false,false,0,false,false,false,false +PRACE-4IP/CodeVault,PRACE-4IP,HTML,false,false,false,0,false,false,false,false +tortoisegit/tortoisegit.org,tortoisegit,HTML,false,false,false,0,false,false,false,false +drutopia/drutopia,drutopia,PHP,false,false,false,0,false,false,false,false +Demmonic/Storm,Demmonic,C#,false,false,false,0,false,false,false,false +blackfish/blackfish,blackfish,CSS,true,false,false,1,false,false,true,false +gasche/gc-latency-experiment,gasche,Makefile,false,false,false,0,false,false,false,false +tstivers/GitLab.NET,tstivers,C#,true,false,false,2,true,true,false,false +technomancy/polywell,technomancy,Lua,false,false,false,0,false,false,false,false +pmjones/ext-request,pmjones,C,true,false,false,1,false,true,false,false +rtorresware/kivyutils,rtorresware,Python,false,false,false,0,false,false,false,false +susurrus/serialport-rs,susurrus,Rust,true,false,false,2,true,false,false,false +universal-playlist/universal-playlist-spec,universal-playlist,CSS,false,false,false,0,false,false,false,false +gitlab-com/gitlab-com-infrastructure,gitlab-com,HCL,true,false,false,2,false,false,false,false +pjotrp/guix-notes,pjotrp,TeX,false,false,false,0,false,false,false,false +citrus-rs/citrus,citrus-rs,Rust,false,false,false,0,false,false,false,false +flectra-hq/extra-addons,flectra-hq,Python,true,true,false,1,false,true,false,false +bonjour-monde/syne-typeface,bonjour-monde,,false,false,false,0,false,false,false,false +jeffreyrogers27/AtomicWrite,jeffreyrogers27,C++,false,false,false,0,false,false,false,false +fediverse/fediverse.gitlab.io,fediverse,HTML,true,false,false,3,true,true,true,false +chriscox/CppPerformanceBenchmarks,chriscox,C++,false,false,false,0,false,false,false,false +AtomMC/Atom,AtomMC,Java,true,false,false,1,false,true,false,false +archmirak/archlinux-fde-uefi,archmirak,,false,false,false,0,false,false,false,false +drizzt/vps2arch,drizzt,Shell,true,false,false,2,true,true,false,false +eidheim/Simple-WebSocket-Server,eidheim,C++,true,false,false,1,false,true,false,false +douaneapp/Douane,douaneapp,,false,false,false,0,false,false,false,false +wavexx/acpilight,wavexx,Python,false,false,false,0,false,false,false,false +librebob/athenaeum,librebob,Python,true,false,false,1,false,true,false,false +postmarketOS/pmaports,postmarketOS,Shell,true,false,false,3,false,true,false,false +PushFish/PushFish-API,PushFish,Python,true,true,false,3,true,true,false,true +lobaro/iot-dashboard,lobaro,JavaScript,true,false,false,3,true,false,true,true +gitlab-examples/docker-cloud,gitlab-examples,Ruby,true,false,false,2,true,true,false,false +gitlab-org/gitlab-ci-runner,gitlab-org,Ruby,false,false,false,0,false,false,false,false +Tails/tails,Tails,Ruby,false,false,false,0,false,false,false,false +minifaucet/public,minifaucet,PHP,false,false,false,0,false,false,false,false +lambda-now/FunctionalWeb,lambda-now,TeX,false,false,false,0,false,false,false,false +mailman/mailman-website,mailman,HTML,false,false,false,0,false,false,false,false +crowdcontrol/crowdcontrol,crowdcontrol,HTML,true,false,false,1,false,true,false,false +joanq/DAM-2n-POO-i-acces-a-dades,joanq,Java,false,false,false,0,false,false,false,false +jensche/s42transfer,jensche,PHP,false,false,false,0,false,false,false,false +itxtech/genisys,itxtech,PHP,true,false,false,1,false,false,false,false +SlackBuilds.org/slackbuilds,SlackBuilds.org,Shell,false,false,false,0,false,false,false,false +buildfunthings/emacs-config,buildfunthings,EmacsLisp,false,false,false,0,false,false,false,false +rspeicher/gitlab-alfred,rspeicher,,false,false,false,0,false,false,false,false +aossie/Agora,aossie,Scala,true,false,false,1,false,true,false,false +gitlabcontribute/Greece-Summit-Oct2017,gitlabcontribute,,false,false,false,0,false,false,false,false +pages/mkdocs,pages,,true,false,false,1,false,true,false,false +ulm0/gitlab-runner,ulm0,Shell,true,false,false,2,false,false,false,false +sysu-gitlab/latex-group/thesis,sysu-gitlab,TeX,true,false,false,1,true,false,false,false +Flakky/Stream-multiplayer-shooter,Flakky,C#,false,false,false,0,false,false,false,false +DMore/behat-chrome-extension,DMore,PHP,true,false,false,1,false,true,false,false +sj1k/gorice,sj1k,Go,false,false,false,0,false,false,false,false +cordite/cordite,cordite,Kotlin,true,false,false,6,true,true,true,true +AGausmann/rustberry,AGausmann,Rust,false,false,false,0,false,false,false,false +CalcProgrammer1/KeyboardVisualizer,CalcProgrammer1,C++,false,false,false,0,false,false,false,false +kadence/kadence,kadence,JavaScript,true,false,false,2,false,true,false,false +Nick80835/DeezLoader-Android,Nick80835,C,false,false,false,0,false,false,false,false +pycqa/flake8-docstrings,pycqa,Python,true,false,false,1,false,true,false,false +leanlabs/kanban_test_project,leanlabs,,false,false,false,0,false,false,false,false +gnukhata/gkcore,gnukhata,Python,false,true,false,0,false,false,false,false +jekyll-themes/default-bundler,jekyll-themes,CSS,true,false,false,2,false,true,true,false +rusty-binder/rusty-binder,rusty-binder,Rust,true,false,false,2,false,true,true,false +bernardodsanderson/material-neutron,bernardodsanderson,CSS,false,false,false,0,false,false,false,false +luisfuentes/resume,luisfuentes,CSS,true,false,false,1,false,true,false,false +gitlab-com/peopleops,gitlab-com,,false,false,false,0,false,false,false,false +pages/hakyll,pages,Haskell,true,false,false,1,false,true,false,false +foodsharing-dev/foodsharing,foodsharing-dev,PHP,true,false,false,4,true,true,true,false +eql/EQL5,eql,C++,false,false,false,0,false,false,false,false +argit/matrix-recorder,argit,JavaScript,false,false,false,0,false,false,false,false +antora/antora-ui-default,antora,CSS,true,false,false,3,false,false,true,false +enjoyingfoss/feeel,enjoyingfoss,Kotlin,false,false,false,0,false,false,false,false +goto-ru/ds/school-2018.01,goto-ru,Python,false,true,false,0,false,false,false,false +juhani/go-semrel-gitlab,juhani,Go,true,false,false,4,true,false,false,true +s1ave77/SVF.ISO.CONVERTER,s1ave77,Batchfile,false,false,false,0,false,false,false,false +skillcamp/gitnotes,skillcamp,JavaScript,true,false,false,1,false,true,false,false +NickBusey/BulletNotes,NickBusey,JavaScript,false,false,false,0,false,false,false,false +xboxdrv/xboxdrv,xboxdrv,C++,false,false,false,0,false,false,false,false +pjlast/paper-trail,pjlast,GDScript,false,false,false,0,false,false,false,false +RedFred7/Jongleur,RedFred7,Ruby,true,false,false,1,false,true,false,false +2168/zerotwoxci,2168,C,false,false,false,0,false,false,false,false +leogx9r/DiscordCrypt,leogx9r,JavaScript,true,false,false,3,true,true,true,false +gitlab-org/cookbook-gitlab,gitlab-org,Ruby,false,false,false,0,false,false,false,false +kpobococ/gitlab-webhook,kpobococ,PHP,false,false,false,0,false,false,false,false +cloje/cloje,cloje,Clojure,false,false,false,0,false,false,false,false +hodgskin-callan/Invention,hodgskin-callan,C#,false,false,false,0,false,false,false,false +python-mode-devs/python-mode,python-mode-devs,EmacsLisp,false,false,false,0,false,false,false,false +roth1002/awesome-javascript,roth1002,,false,false,false,0,false,false,false,false +esr/sshexport,esr,Python,false,false,false,0,false,false,false,false +PoroCYon/Altar.NET,PoroCYon,C#,true,false,false,2,false,true,true,false +janneke/mes,janneke,Scheme,false,false,false,0,false,false,false,false +bitfireAT/NoPhoneSpam,bitfireAT,Java,false,false,false,0,false,false,false,false +denispahunov/mapmagic,denispahunov,C#,false,false,false,0,false,false,false,false +gitlab-org/trello-power-up,gitlab-org,JavaScript,true,false,false,2,false,true,true,false +cfabio/AltcoinPrices,cfabio,Java,false,false,false,0,false,false,false,false +yorickpeterse/oga,yorickpeterse,Ruby,true,false,false,1,false,true,false,false +Manu343726/tinyrefl,Manu343726,C++,true,false,false,4,false,true,false,false +post-factum/pf-kernel,post-factum,C,false,false,false,0,false,false,false,false +Siebencorgie/jakar-engine,Siebencorgie,Rust,false,false,false,0,false,false,false,false +weitzman/drupal-test-traits,weitzman,PHP,true,false,false,1,false,true,false,false +postmarketOS/linux-postmarketos,postmarketOS,,false,false,false,0,false,false,false,false +gitlabcontribute/new-orleans,gitlabcontribute,,false,false,false,0,false,false,false,false +quidsup/notrack,quidsup,PHP,false,false,false,0,false,false,false,false +gitlab-org/gitlab-ui,gitlab-org,JavaScript,true,false,false,5,false,true,true,true +xonotic/netradiant,xonotic,C,false,false,false,0,false,false,false,false +xphnx/twelf_cm12_theme,xphnx,Shell,true,false,false,1,false,true,false,false +e2i/e2iplayer,e2i,Python,false,false,false,0,false,false,false,false +joomleague/joomleague,joomleague,PHP,false,false,false,0,false,false,false,false +dto/xelf,dto,C,false,false,false,0,false,false,false,false +rosarior/django-inventory,rosarior,Python,false,true,false,0,false,false,false,false +pantheon-debian/pantheon-debian,pantheon-debian,Shell,false,false,false,0,false,false,false,false +gitlab-com/operations,gitlab-com,,false,false,false,0,false,false,false,false +passit/passit-backend,passit,Python,true,true,false,2,false,true,false,false +ralt/avesh,ralt,CommonLisp,false,false,false,0,false,false,false,false +Rich-Harris/phonograph,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +gitlab-org/gitlab-qa,gitlab-org,Ruby,true,false,false,3,false,true,false,false +Roman2K/scat,Roman2K,,false,false,false,0,false,false,false,false +Serenata/Serenata,Serenata,PHP,true,false,false,3,true,true,false,false +amirmd76/cf-round-406,amirmd76,C++,false,false,false,0,false,false,false,false +stp-team/systemtestportal-webapp,stp-team,Go,true,false,false,9,false,true,false,true +TeeFirefly/FireNow-Nougat,TeeFirefly,,false,false,false,0,false,false,false,false +dekkoproject/dekko,dekkoproject,C++,true,false,false,1,false,false,false,false +librespacefoundation/satnogs/satnogs-network,librespacefoundation,Python,true,true,false,5,true,true,true,false +code-stats/code-stats,code-stats,Elixir,true,false,false,1,false,true,false,false +libtiff/libtiff,libtiff,C,true,false,false,2,true,false,false,false +DevGrohl/Estructura-Datos,DevGrohl,C++,false,false,false,0,false,false,false,false +stelabouras/hearth-mac,stelabouras,Swift,false,false,false,0,false,false,false,false +gateship-one/malp,gateship-one,Java,false,false,false,0,false,false,false,false +dword4/nhlapi,dword4,,false,false,false,0,false,false,false,false +shagu/pfQuest,shagu,Lua,true,false,false,1,false,true,false,false +altom/altunitytester,altom,C#,true,false,false,5,false,false,true,false +Pilatomic/SteamControllerSinger,Pilatomic,C,false,false,false,0,false,false,false,false +Harsukh/ItemCRUD,Harsukh,PHP,false,false,false,0,false,false,false,false +aossie/CarbonFootprint,aossie,JavaScript,true,false,false,1,false,true,false,false +gcazaciuc/js-training,gcazaciuc,JavaScript,false,false,false,0,false,false,false,false +pantomath-io/demo-tools,pantomath-io,Makefile,true,false,false,2,true,true,false,false +b0/spectral,b0,C++,true,false,false,1,true,false,false,false +upend/github/evac-guide,upend,,false,false,false,0,false,false,false,false +Laravelium/Sitemap,Laravelium,PHP,true,false,false,1,false,true,false,false +ahmida/pushrocket,ahmida,Go,false,false,false,0,false,false,false,false +marc.nause/openlink,marc.nause,Java,false,false,false,0,false,false,false,false +onnoowl/Neat-Ex,onnoowl,Elixir,false,false,false,0,false,false,false,false +juanitobananas/wave-up,juanitobananas,Kotlin,true,false,false,1,true,false,false,false +commonshost/server,commonshost,JavaScript,true,false,false,1,false,true,false,false +escherize/cljsfiddle,escherize,CSS,false,false,false,0,false,false,false,false +gitlab-org/gitlab-monitor,gitlab-org,Ruby,true,false,false,1,false,true,false,false +urn/urn,urn,CommonLisp,true,false,false,1,false,true,false,false +gitlab-org/gitlab-triage,gitlab-org,Ruby,true,false,false,3,false,true,false,false +gambas/gambas,gambas,C,true,false,false,1,false,true,false,false +gitlab-org/gitlab-svgs,gitlab-org,CSS,true,false,false,2,true,false,true,false +nowayout/prochunter,nowayout,Python,false,false,false,0,false,false,false,false +charts/gitlab-runner,charts,Smarty,true,false,false,2,false,true,false,true +soundtouch/soundtouch,soundtouch,C++,false,false,false,0,false,false,false,false +saalen/highlight,saalen,Lua,true,false,false,1,false,true,false,false +st42/termux-sudo,st42,Shell,false,false,false,0,false,false,false,false +semkodev/hercules,semkodev,Go,false,false,false,0,false,false,false,false +dkovacevic15/basal,dkovacevic15,Dart,false,false,false,0,false,false,false,false +subnetzero/iridium,subnetzero,Rust,true,false,false,2,false,true,false,false +SuperTuxParty/SuperTuxParty,SuperTuxParty,GDScript,true,false,false,2,false,false,true,false +xonotic/xonotic-data.pk3dir,xonotic,C,true,false,false,2,false,true,true,false +manaplus/manaplus,manaplus,C++,true,false,false,3,true,true,false,false +osm-c-tools/osmctools,osm-c-tools,C,false,false,false,0,false,false,false,false +esr/cvs-fast-export,esr,C,false,false,false,0,false,false,false,false +eneiluj/gpxpod-oc,eneiluj,JavaScript,true,false,false,2,false,true,true,false +monnier/bugit,monnier,Shell,false,false,false,0,false,false,false,false +jim.hefferon/linear-algebra,jim.hefferon,TeX,false,false,false,0,false,false,false,false +greysonp/gitlab-ci-android,greysonp,Java,true,false,false,2,true,true,false,false +stuko/ovito,stuko,C++,true,false,false,1,true,false,false,false +kashell/Kawa,kashell,Java,true,false,false,1,false,false,false,false +doctorj/sairen,doctorj,Python,true,true,false,1,false,true,false,false +recalbox/recalbox-emulationstation,recalbox,C++,true,false,false,1,true,false,false,false +ercom/citbx4gitlab,ercom,Shell,true,false,false,2,true,true,false,false +interception/linux/plugins/caps2esc,interception,C,false,false,false,0,false,false,false,false +torkel104/libstrangle,torkel104,C,false,false,false,0,false,false,false,false +Shinobi-Systems/ShinobiCE,Shinobi-Systems,JavaScript,false,false,false,0,false,false,false,false +jenslody/gnome-shell-extension-openweather,jenslody,JavaScript,false,false,false,0,false,false,false,false +probono/platformissues,probono,,false,false,false,0,false,false,false,false +DecentralizedPeer/awesome-FOSS-apps,DecentralizedPeer,,false,false,false,0,false,false,false,false +leinardi/gkraken,leinardi,Python,false,true,false,0,false,false,false,false +gitlab-org/security-products/sast,gitlab-org,Go,true,false,false,4,true,true,true,false +gitlab-com/support/support-team-meta,gitlab-com,,true,false,false,1,false,false,false,false +Krzysztof-Cieslak/Fornax,Krzysztof-Cieslak,F#,true,false,false,1,false,true,false,false +pages/gatsby,pages,CSS,true,false,false,1,false,true,false,false +apparmor/apparmor,apparmor,Python,true,false,false,2,true,true,false,false +Scribble/gdlenhanced,Scribble,C++,false,false,false,0,false,false,false,false +vr-on-linux/VR-on-Linux,vr-on-linux,,false,false,false,0,false,false,false,false +ambrevar/mu4e-conversation,ambrevar,EmacsLisp,false,false,false,0,false,false,false,false +andreynech/dsched,andreynech,Go,true,false,false,2,true,true,false,false +agosto182/p2play,agosto182,Kotlin,false,false,false,0,false,false,false,false +joelhansen/awesome-floss-mobile,joelhansen,,false,false,false,0,false,false,false,false +gdroid/gdroidclient,gdroid,Java,true,false,false,2,true,false,false,false +gitlab-org/gitlab_git,gitlab-org,Ruby,true,false,false,1,false,true,false,false +esr/irker,esr,Python,false,true,false,0,false,false,false,false +guyzmo/git-repo,guyzmo,Python,true,true,false,1,false,true,false,false +anarcat/wallabako,anarcat,Go,true,false,false,1,true,false,false,false +gitlab-org/ux-research,gitlab-org,,false,false,false,0,false,false,false,false +JoeSondow/emojitetra,JoeSondow,Java,false,false,false,0,false,false,false,false +PPW-2017/ppw-lab,PPW-2017,Python,true,true,false,2,false,true,true,false +rafalense/plus-messenger,rafalense,C,false,false,false,0,false,false,false,false +cosango/gitlabreports,cosango,HTML,false,false,false,0,false,false,false,false +NotYetGames/DlgSystem,NotYetGames,C++,false,false,false,0,false,false,false,false +LinxGem33/Arc-Menu,LinxGem33,JavaScript,false,false,false,0,false,false,false,false +allianceauth/allianceauth,allianceauth,Python,true,false,false,1,false,true,false,false +upend/github/IF_MS_BUYS_GITHUB_IMMA_OUT,upend,,false,false,false,0,false,false,false,false +simple-nixos-mailserver/nixos-mailserver,simple-nixos-mailserver,Nix,true,false,false,1,false,true,false,false +Ashpex/android-FOSS-apps,Ashpex,,false,false,false,0,false,false,false,false +inverted3/drum-machine,inverted3,JavaScript,true,false,false,2,true,false,true,false +gitlab-org/cookbook-omnibus-gitlab,gitlab-org,Ruby,true,false,false,2,false,true,false,false +liamdawe/gamingonlinux,liamdawe,PHP,false,false,false,0,false,false,false,false +shank-utils/go-hn,shank-utils,Go,false,false,false,0,false,false,false,false +Millennium_Dawn/Millennium_Dawn,Millennium_Dawn,PHP,false,false,false,0,false,false,false,false +stavros/python-yeelight,stavros,Python,true,false,false,1,false,true,false,false +aossie/MindTheWord,aossie,JavaScript,true,false,false,1,true,false,false,false +pages/nuxt,pages,Vue,true,false,false,1,false,true,false,false +jarv/cmdchallenge,jarv,Roff,true,false,false,3,true,true,true,false +yale-sdmp/vesta,yale-sdmp,Ruby,true,false,false,1,false,true,false,false +charafau/lnxpcs,charafau,Shell,false,false,false,0,false,false,false,false +bitfireAT/icsdroid,bitfireAT,Kotlin,true,false,false,1,false,true,false,false +Polly-lang/Polly,Polly-lang,Rust,false,false,false,0,false,false,false,false +Rich-Harris/rollup-plugin-buble,Rich-Harris,JavaScript,false,false,false,0,false,false,false,false +chupin/arpeggigon,chupin,Haskell,false,false,false,0,false,false,false,false +xphnx/ameixa,xphnx,Java,true,false,false,2,true,true,false,false +pages/org-mode,pages,EmacsLisp,true,false,false,1,false,true,false,false +EAVISE/lightnet,EAVISE,Python,true,true,false,2,false,true,true,false +LinxGem33/X-Arc-White,LinxGem33,CSS,false,false,false,0,false,false,false,false +YoRHa2B/dxvk,YoRHa2B,C++,false,false,false,0,false,false,false,false +jean-christophe-manciot/gns3--labs-collection,jean-christophe-manciot,,false,false,false,0,false,false,false,false +pages/sphinx,pages,Python,true,false,false,1,false,true,false,false +latency.at/latencyAt,latency.at,Go,true,false,false,3,true,true,false,false +CardBook/CardBook,CardBook,JavaScript,false,false,false,0,false,false,false,false +nuinalp/gitlab-discovery,nuinalp,CSS,false,false,false,0,false,false,false,false +Kwoth/nadekobot,Kwoth,C#,false,false,false,0,false,false,false,false +morph027/gitlab-ci-helpers,morph027,Shell,false,false,false,0,false,false,false,false +gilrs-project/gilrs,gilrs-project,Rust,true,false,false,3,true,true,true,false +interception/linux/tools,interception,C++,false,false,false,0,false,false,false,false +Lieben/OnedriveMapper_V3,Lieben,PowerShell,false,false,false,0,false,false,false,false +cerfacs/batman,cerfacs,GLSL,false,false,false,0,false,false,false,false +YuriAlek/vfio,YuriAlek,Shell,false,false,false,0,false,false,false,false +gitlab-org/takeoff,gitlab-org,Ruby,true,false,false,5,false,true,true,false +luspi/photoqt,luspi,QML,true,false,false,1,false,true,false,false +gpaw/gpaw,gpaw,Python,true,false,false,1,false,true,false,false +pages/pelican,pages,Makefile,true,false,false,2,false,true,true,false +fengshaun/syncopoli,fengshaun,Java,true,false,false,2,true,true,false,false +Kanedias/MARC-FS,Kanedias,C++,true,false,false,9,false,true,false,false +Kaldaien/SpecialK,Kaldaien,C++,false,false,false,0,false,false,false,false +Molcas/OpenMolcas,Molcas,Fortran,true,false,false,2,true,true,false,false +gitlab-org/project-templates/express,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +kovri-project/kovri,kovri-project,C++,true,false,false,1,true,false,false,false +gitforteams/gitforteams,gitforteams,JavaScript,false,false,false,0,false,false,false,false +freedroid/freedroid-src,freedroid,C,true,false,false,2,false,false,false,false +TridentX/awesome-ios,TridentX,,false,false,false,0,false,false,false,false +patkennedy79/flask_recipe_app,patkennedy79,Python,true,false,false,1,false,true,false,false +ntninja/user-agent-switcher,ntninja,JavaScript,false,false,false,0,false,false,false,false +stavros/IPFessay,stavros,HTML,false,false,false,0,false,false,false,false +finestructure/pipeline-trigger,finestructure,Python,true,false,false,3,true,true,false,true +ZeroDot1/CoinBlockerLists,ZeroDot1,Batchfile,true,false,false,1,false,false,true,false +wikibooks-opengl/modern-tutorials,wikibooks-opengl,C,false,false,false,0,false,false,false,false +gitmate/open-source/IGitt,gitmate,Python,true,true,false,1,false,true,false,false +gitlab-org/grafana-dashboards,gitlab-org,Ruby,false,false,false,0,false,false,false,false +JonathonReinhart/gitlab-artifact-cleanup,JonathonReinhart,Python,false,true,false,0,false,false,false,false +vstconsulting/polemarch,vstconsulting,Python,true,true,false,4,false,true,false,true +luongvo209/Awesome-Linux-Software,luongvo209,Python,true,false,false,1,false,false,true,false +akihe/radamsa,akihe,Scheme,true,false,false,1,true,false,false,false +jaor/geiser,jaor,EmacsLisp,false,false,false,0,false,false,false,false +tarampampam/laravel-in-docker,tarampampam,PHP,true,false,false,3,true,true,false,false +gitlab-com/blog-posts,gitlab-com,,false,false,false,0,false,false,false,false +redox/redox,redox,Shell,true,false,false,1,false,true,false,false +Cwiiis/ferris,Cwiiis,JavaScript,false,false,false,0,false,false,false,false +esr/loccount,esr,Python,false,false,false,0,false,false,false,false +gitlab-org/kubernetes-gitlab-demo,gitlab-org,Shell,false,false,false,0,false,false,false,false +rvasily/msu-go-11,rvasily,Go,false,false,false,0,false,false,false,false +srrg-software/srrg_proslam,srrg-software,C++,false,false,false,0,false,false,false,false +valtron/msn-server,valtron,Python,false,true,false,0,false,false,false,false +justcauserp/brainstorm,justcauserp,,false,false,false,0,false,false,false,false +solarus-games/solarus,solarus-games,C++,true,false,false,1,true,false,false,false +zsaleeba/picoc,zsaleeba,C,false,false,false,0,false,false,false,false +XX-net/XX-Net,XX-net,Python,false,false,false,0,false,false,false,false +jD91mZM2/termwm,jD91mZM2,Rust,true,false,false,1,false,true,false,false +kanban_demo/test_project,kanban_demo,,false,false,false,0,false,false,false,false +trinitycore/TrinityCore_434,trinitycore,C++,false,false,false,0,false,false,false,false +Flakky/stream-survival,Flakky,,false,false,false,0,false,false,false,false +orchardandgrove-oss/NoMADLogin-AD,orchardandgrove-oss,Swift,true,false,false,1,true,false,false,false +gitlab-com/gitlab-artwork,gitlab-com,,false,false,false,0,false,false,false,false +goobook/goobook,goobook,Python,false,false,false,0,false,false,false,false +ddobrev/QtSharp,ddobrev,C#,false,false,false,0,false,false,false,false +gitlab-org/gitlab-pages,gitlab-org,Go,true,false,false,1,false,true,false,false +pages/pages.gitlab.io,pages,HTML,true,false,false,1,false,false,true,false +autronix/gitlabci-ec2-deployment-samples-guide,autronix,Shell,false,false,false,0,false,false,false,false +NalaGinrut/artanis,NalaGinrut,Scheme,true,false,false,1,false,true,false,false +showcheap/android-ci,showcheap,,true,false,false,1,false,true,false,false +gableroux/unity3d,gableroux,HTML,true,false,false,1,false,true,false,false +fcitx/fcitx,fcitx,C,false,false,false,0,false,false,false,false +formschema/native,formschema,JavaScript,true,false,false,4,true,true,false,true +vednoc/dark-gitlab,vednoc,CSS,false,false,false,0,false,false,false,false +collectqt/quirell,collectqt,Python,false,false,false,0,false,false,false,false +gitlab-org/release-tools,gitlab-org,Ruby,true,false,false,4,false,true,true,false +derelictgames/spacebase-v2-updated-code,derelictgames,Lua,false,false,false,0,false,false,false,false +gitlab-org/design.gitlab.com,gitlab-org,Vue,false,false,false,0,false,false,false,false +dgmcguire/texas,dgmcguire,Elixir,true,false,false,1,false,true,false,false +initstring/evil-ssdp,initstring,Python,false,false,false,0,false,false,false,false +dalibo/postgresql_anonymizer,dalibo,PLpgSQL,true,false,false,3,true,true,true,false +jD91mZM2/jrust,jD91mZM2,Rust,false,false,false,0,false,false,false,false +vannnns/haskero,vannnns,TypeScript,false,false,false,0,false,false,false,false +Nanolx/NanoDroid,Nanolx,Shell,false,false,false,0,false,false,false,false +m2crypto/m2crypto,m2crypto,C,true,false,false,1,false,true,false,false +jpbouza/BlenRig,jpbouza,Python,false,false,false,0,false,false,false,false +inkscape/inkscape-web,inkscape,Python,false,true,false,0,false,false,false,false +QEF/q-e,QEF,Fortran,true,false,false,1,false,true,false,false +javallone/regexper-static,javallone,JavaScript,true,false,false,3,true,true,true,false +proninyaroslav/libretorrent,proninyaroslav,Java,false,false,false,0,false,false,false,false +ita1024/waf,ita1024,Python,false,false,false,0,false,false,false,false +thart/flowanalyzer,thart,Python,false,false,false,0,false,false,false,false +fdroid/fdroid-website,fdroid,HTML,true,false,false,2,false,false,true,true +1110101/opr-tools,1110101,JavaScript,false,false,false,0,false,false,false,false +CLIUtils/modern-cmake,CLIUtils,,true,false,false,2,false,true,true,false +DDP2-CSUI/assignment,DDP2-CSUI,Java,true,false,false,2,true,true,false,false +nvidia/cuda,nvidia,,true,false,false,4,false,true,true,false +charts/charts.gitlab.io,charts,Ruby,true,false,false,2,false,true,true,false +coldnight/ci-test,coldnight,,true,false,false,1,false,true,false,false +gitlab-org/release/tasks,gitlab-org,,false,false,false,0,false,false,false,false +conradsnicta/armadillo-code,conradsnicta,C++,false,false,false,0,false,false,false,false +shagu/pfUI,shagu,Lua,false,false,false,0,false,false,false,false +fdroid/repomaker,fdroid,Python,true,true,false,2,false,true,true,false +expliot_framework/expliot,expliot_framework,Python,true,false,false,4,false,false,false,false +financier/financier,financier,JavaScript,true,false,false,6,true,true,true,true +stavros/hearth,stavros,Rust,false,false,false,0,false,false,false,false +maxigaz/gitlab-dark,maxigaz,CSS,false,false,false,0,false,false,false,false +hyper-expanse/open-source/semantic-release-gitlab,hyper-expanse,JavaScript,false,false,false,0,false,false,false,false +WeQuantStrategy/liveStrategyEngine,WeQuantStrategy,Python,false,false,false,0,false,false,false,false +chaica/feed2toot,chaica,Python,false,false,false,0,false,false,false,false +freedesktop-sdk/freedesktop-sdk,freedesktop-sdk,C++,true,false,false,12,false,true,false,true +veloren/game,veloren,Rust,true,false,false,4,true,true,true,false +noosfero/noosfero,noosfero,Ruby,true,false,false,4,true,true,false,false +vgstation/vgstation-old,vgstation,DM,false,false,false,0,false,false,false,false +pgjones/hypercorn,pgjones,Python,true,false,false,1,false,true,false,false +osslugaru/lugaru,osslugaru,C++,true,false,false,1,true,false,false,false +Primokorn/FLOSS_Android_apps,Primokorn,,false,false,false,0,false,false,false,false +Mactroll/DEPNotify,Mactroll,Swift,false,false,false,0,false,false,false,false +eneiluj/phonetrack-oc,eneiluj,JavaScript,true,false,false,2,false,true,true,false +Attedz/AndroidPrivacyGuide,Attedz,,false,false,false,0,false,false,false,false +tista500/plata-theme,tista500,CSS,false,false,false,0,false,false,false,false +DerManu/QCustomPlot,DerManu,C++,false,false,false,0,false,false,false,false +GrafX2/grafX2,GrafX2,C,true,false,false,2,true,false,false,false +gitlab-com/marketing/community-relations/opensource-program/gitlab-oss,gitlab-com,,false,false,false,0,false,false,false,false +rosie-pattern-language/rosie,rosie-pattern-language,HTML,true,false,false,2,true,true,false,false +gitmate/open-source/gitmate-2,gitmate,Python,true,true,false,3,false,true,true,true +axet/omim,axet,C++,false,false,false,0,false,false,false,false +DMore/chrome-mink-driver,DMore,PHP,true,false,false,1,false,true,false,false +meltano/analytics,meltano,Python,true,false,false,5,false,true,false,true +commento/commento-ce,commento,Go,true,false,false,7,false,false,false,false +mailman/postorius,mailman,Python,true,false,false,1,false,true,false,false +gitlab-examples/review-apps-nginx,gitlab-examples,HTML,true,false,false,4,true,false,false,true +gitlab-org/gitter/desktop,gitlab-org,JavaScript,false,false,false,0,false,false,false,false +honeyryderchuck/httpx,honeyryderchuck,Ruby,true,false,false,2,false,true,true,false +axet/android-book-reader,axet,Java,true,false,false,1,false,false,true,false +gitlab-com/www-remoteonly-org,gitlab-com,Ruby,true,false,false,1,false,true,false,false +vgg/via,vgg,HTML,false,false,false,0,false,false,false,false +axet/android-audio-recorder,axet,Java,false,false,false,0,false,false,false,false +inko-lang/inko,inko-lang,Rust,false,false,false,0,false,false,false,false +HoraApps/LeafPic,HoraApps,Java,false,false,false,0,false,false,false,false +gitlab-examples/ssh-private-key,gitlab-examples,,true,false,false,1,false,true,false,false +gitlab-examples/kubernetes-deploy,gitlab-examples,Shell,true,false,false,1,false,false,true,false +Shinobi-Systems/Shinobi,Shinobi-Systems,JavaScript,false,false,false,0,false,false,false,false +nixCraft/Linux-Pictures-Wallpapers,nixCraft,Shell,false,false,false,0,false,false,false,false +rav7teif/linux.wifatch,rav7teif,Perl,false,false,false,0,false,false,false,false +gitlab-examples/php,gitlab-examples,PHP,true,false,false,1,false,true,false,false +prism-break/prism-break,prism-break,HTML,true,false,false,2,true,false,true,false +inolen/redream,inolen,,false,false,false,0,false,false,false,false +BenjaminDobell/Heimdall,BenjaminDobell,C++,false,false,false,0,false,false,false,false +IvanSanchez/Leaflet.GridLayer.GoogleMutant,IvanSanchez,JavaScript,true,false,false,2,false,true,true,false +GloriousEggroll/warframe-linux,GloriousEggroll,Shell,false,false,false,0,false,false,false,false +rosarior/django-must-watch,rosarior,,false,false,false,0,false,false,false,false +axet/android-call-recorder,axet,Java,true,false,false,1,false,false,true,false +ric_harvey/nginx-php-fpm,ric_harvey,Shell,true,false,false,2,false,false,false,false +Nevax/FreedomOS,Nevax,Shell,false,false,false,0,false,false,false,false +spacecowboy/Feeder,spacecowboy,Kotlin,true,false,false,3,true,true,true,false +fdroid/privileged-extension,fdroid,Java,true,false,false,1,false,true,false,false +davical-project/davical,davical-project,PHP,true,false,false,2,true,true,false,false +eidheim/Simple-Web-Server,eidheim,C++,true,false,false,1,false,true,false,false +kroppy/TreeTabs,kroppy,JavaScript,false,false,false,0,false,false,false,false +dessalines/torrents.csv,dessalines,TypeScript,false,false,false,0,false,false,false,false +cmdevs/ColonialMarines,cmdevs,DM,false,false,false,0,false,false,false,false +juergens/stabbot,juergens,Python,true,true,false,2,true,false,true,false +gitlab-com/migration,gitlab-com,Shell,true,false,false,1,false,true,false,false +DDP2-CSUI/ddp-lab,DDP2-CSUI,Java,true,false,false,2,true,true,false,false +gitlab-org/gitlab-recipes,gitlab-org,Ruby,false,false,false,0,false,false,false,false +esr/reposurgeon,esr,Go,true,false,false,1,false,true,false,false +NTPsec/ntpsec,NTPsec,C,true,false,false,2,true,true,false,false +Neuer_User/PACEfied_AmazFit,Neuer_User,Java,false,false,false,0,false,false,false,false +cppit/jucipp,cppit,C++,true,false,false,2,false,true,false,false +pages/hexo,pages,CSS,true,false,false,1,false,true,false,false +gitlab-com/marketing/general,gitlab-com,HTML,true,false,false,1,false,false,true,false +MasterPassword/MasterPassword,MasterPassword,Objective-C,true,false,false,1,true,false,false,false +NebulousLabs/Sia,NebulousLabs,Go,true,false,false,3,false,true,true,false +BuildStream/buildstream,BuildStream,Python,true,false,false,3,false,true,false,true +voxelands/voxelands,voxelands,C,false,false,false,0,false,false,false,false +godotengine/godot,godotengine,C++,false,false,false,0,false,false,false,false +gableroux/unity3d-gitlab-ci-example,gableroux,C#,true,false,false,3,true,true,true,false +pages/gitbook,pages,,true,false,false,2,false,true,true,false +fdroid/rfp,fdroid,Python,true,false,false,1,false,true,false,false +Remmina/Remmina,Remmina,C,true,false,false,1,true,false,false,false +micaksica/nodeauth-best-practices,micaksica,,false,false,false,0,false,false,false,false +pdfgrep/pdfgrep,pdfgrep,C++,true,false,false,1,false,true,false,false +gitlab-org/gitlab-workhorse,gitlab-org,Go,true,false,false,1,false,true,false,false +gitlab-org/docker-distribution-pruner,gitlab-org,Go,true,false,false,2,false,true,false,true +xuhaiyang1234/AAK-Cont,xuhaiyang1234,JavaScript,true,false,false,1,false,false,true,false +mbajur/prismo,mbajur,Ruby,true,false,false,2,true,true,false,false +mailman/hyperkitty,mailman,Python,true,false,false,2,false,true,false,false +pikatrack/pikatrack,pikatrack,Ruby,true,false,false,2,true,true,false,false +postmarketOS/pmbootstrap,postmarketOS,Python,true,false,false,3,false,true,false,false +cunidev/gestures,cunidev,Python,false,false,false,0,false,false,false,false +procps-ng/procps,procps-ng,C,true,false,false,1,false,true,false,false +fatihacet/gitlab-vscode-extension,fatihacet,JavaScript,false,false,false,0,false,false,false,false +jgkamat/rmsbolt,jgkamat,EmacsLisp,true,false,false,1,false,true,false,false +gitlab-org/gitlab-runner-docker-cleanup,gitlab-org,Go,true,false,false,1,false,true,false,false +sequoia-pgp/sequoia,sequoia-pgp,Rust,true,false,false,1,false,true,false,false +painlessMesh/painlessMesh,painlessMesh,C++,true,false,false,1,false,true,false,false +sleepyhead/sleepyhead-code,sleepyhead,C++,false,false,false,0,false,false,false,false +flectra-hq/flectra,flectra-hq,Python,true,true,false,1,false,true,false,false +AuroraOSS/AuroraStore,AuroraOSS,Java,false,false,false,0,false,false,false,false +gitlab-org/gitlab-shell,gitlab-org,Ruby,true,false,false,1,false,true,false,false +git-latexdiff/git-latexdiff,git-latexdiff,Shell,false,false,false,0,false,false,false,false +sortix/sortix,sortix,C,false,false,false,0,false,false,false,false +mojo42/Jirafeau,mojo42,PHP,true,false,false,1,false,true,false,false +ganttlab/ganttlab-live,ganttlab,Vue,true,false,false,2,true,false,true,false +antora/antora,antora,JavaScript,true,false,false,2,false,false,false,false +oeffi/oeffi,oeffi,Java,false,false,false,0,false,false,false,false +charts/gitlab,charts,Smarty,true,false,false,9,false,true,false,true +Mactroll/NoMAD,Mactroll,Swift,false,false,false,0,false,false,false,false +pages/plain-html,pages,HTML,true,false,false,1,false,false,true,false +higan/higan,higan,C++,false,false,false,0,false,false,false,false +openconnect/ocserv,openconnect,C,true,false,false,2,false,false,true,false +xonotic/xonotic,xonotic,C,false,false,false,0,false,false,false,false +gnutls/gnutls,gnutls,C,true,false,false,1,false,false,false,false +embeddable-common-lisp/ecl,embeddable-common-lisp,C,false,false,false,0,false,false,false,false +kornelski/babel-preset-php,kornelski,JavaScript,true,false,false,1,false,true,false,false +gitlab-org/gitaly,gitlab-org,Go,true,false,false,3,true,true,false,true +mbunkus/mkvtoolnix,mbunkus,C++,false,false,false,0,false,false,false,false +kivymd/KivyMD,kivymd,Python,true,false,false,2,true,true,false,false +tildes/tildes,tildes,Python,false,false,false,0,false,false,false,false +muttmua/mutt,muttmua,C,true,false,false,2,true,false,true,false +OpenMW/openmw,OpenMW,C++,true,false,false,1,true,false,false,false +meltano/meltano,meltano,Python,true,true,false,4,false,true,false,true +gitlab-com/support-forum,gitlab-com,,true,false,false,1,false,false,false,false +ase/ase,ase,Python,true,true,false,1,false,true,false,false +Isleward/isleward,Isleward,JavaScript,true,false,false,2,true,true,false,false +pages/jekyll,pages,CSS,true,false,false,2,false,true,true,false +tezos/tezos,tezos,OCaml,true,false,false,5,true,true,false,true +gitlab-com/gl-infra/infrastructure,gitlab-com,JavaScript,false,false,false,0,false,false,false,false +stavros/Spamnesty,stavros,Python,true,false,false,1,false,true,false,false +gitlab-org/gitlab-design,gitlab-org,HTML,true,false,false,1,false,true,false,false +recalbox/recalbox,recalbox,GLSL,true,false,false,4,true,false,false,true +pages/hugo,pages,HTML,true,false,false,1,false,true,false,false +gitlab-com/runbooks,gitlab-com,Shell,true,false,false,5,false,true,true,false +xhang/gitlab,xhang,Ruby,true,false,false,5,true,true,false,false +o9000/tint2,o9000,C,false,false,false,0,false,false,false,false +technomancy/bussard,technomancy,Lua,true,false,false,1,false,true,false,false +mailman/mailman,mailman,Python,true,false,false,2,false,true,true,false +esr/upside,esr,Go,false,false,false,0,false,false,false,false +fdroid/fdroidserver,fdroid,Python,true,false,false,1,false,true,false,false +staltz/manyverse,staltz,TypeScript,false,false,false,0,false,false,false,false +gitlab-org/gitlab-mattermost,gitlab-org,,false,false,false,0,false,false,false,false +esr/open-adventure,esr,C,true,false,false,3,true,true,true,false +somerobots/Trident,somerobots,,false,false,false,0,false,false,false,false +mayan-edms/mayan-edms,mayan-edms,Python,true,true,false,8,false,true,true,false +gitlab-org/gitlab-ci,gitlab-org,Ruby,true,false,false,1,false,true,false,false +terrakok/gitlab-client,terrakok,Kotlin,false,false,false,0,false,false,false,false +pycqa/flake8,pycqa,Python,true,false,false,3,true,true,false,true +bitfireAT/davdroid,bitfireAT,Kotlin,false,false,false,0,false,false,false,false +meno/dropzone,meno,JavaScript,true,false,false,2,false,true,true,false +graphviz/graphviz,graphviz,C,true,false,false,3,true,false,true,false +leanlabsio/kanban,leanlabsio,JavaScript,true,false,false,1,true,false,false,false +Rich-Harris/buble,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false +gitlab-org/gitlab-development-kit,gitlab-org,Makefile,true,false,false,2,true,true,false,false +mildlyparallel/pscircle,mildlyparallel,C,true,false,false,1,false,true,false,false +cryptsetup/cryptsetup,cryptsetup,C,false,false,false,0,false,false,false,false +tortoisegit/tortoisegit,tortoisegit,C++,false,false,false,0,false,false,false,false +NickBusey/HomelabOS,NickBusey,HTML,true,false,false,1,false,true,false,false +gitlab-org/omnibus-gitlab,gitlab-org,Ruby,true,false,false,3,false,true,false,false +doctorj/interview-questions,doctorj,Python,true,true,false,2,false,true,true,false +fusionjack/adhell3,fusionjack,Java,false,false,false,0,false,false,false,false +fdroid/fdroiddata,fdroid,Python,true,false,false,2,false,true,true,false +gitlab-org/gitlab-ci-yml,gitlab-org,Ruby,true,false,false,1,false,true,false,false +pgjones/quart,pgjones,Python,true,false,false,1,false,true,false,false +gitlab-com/www-gitlab-com,gitlab-com,HTML,true,false,false,4,true,true,true,false +gitlab-org/gitter/webapp,gitlab-org,JavaScript,true,false,false,5,false,true,true,false +Commit451/LabCoat,Commit451,Kotlin,true,false,false,3,true,true,true,false +gnachman/iterm2,gnachman,,false,false,false,0,false,false,false,false +gitlab-org/gitlab-ee,gitlab-org,Ruby,false,false,false,0,false,false,false,false +rosarior/awesome-django,rosarior,Makefile,true,false,false,1,false,true,false,false +inkscape/inkscape,inkscape,C++,true,false,false,3,true,true,true,false +fdroid/fdroidclient,fdroid,Java,true,false,false,2,false,true,true,false +gitlab-org/gitlab-runner,gitlab-org,Go,true,false,false,8,true,true,false,true +gitlab-org/gitlab-ce,gitlab-org,Ruby,false,false,false,0,false,false,false,false +Cacophony/Pong,Cacophony,Go,true,false,false,5,true,true,true,false +edgyemma/Postmill,edgyemma,PHP,true,false,false,5,false,true,false,true +european-data-portal/ckan-dcatap-schema,european-data-portal,,true,false,false,1,false,false,true,false +european-data-portal/metadata-quality-assurance,european-data-portal,Java,true,false,true,2,false,true,true,false +failmap/failmap,failmap,Python,true,false,false,4,true,true,false,true +gioxa/oc-runner/oc-runner,gioxa,C,true,false,false,9,true,false,false,true +gitlab-com/gitlab-docs,gitlab-com,HTML,true,false,false,5,true,true,true,false +gnuwget/wget2,gnuwget,C,true,false,false,2,false,false,false,false +interscity/interscity-platform/resource-adaptor,interscity,Ruby,true,false,false,1,false,true,false,false +kargo-ci/kubernetes-incubator/kubespray,kargo-ci,Python,true,true,false,6,false,true,false,false +raxa/raxa,raxa,TypeScript,true,false,false,1,true,false,false,false +remal/name.remal.gradle-plugins,remal,Kotlin,true,false,false,6,true,true,false,true +romangrothausmann/FacetAnalyser,romangrothausmann,C++,true,false,false,3,true,true,false,true +teuteuf/SpotTheDefuser,teuteuf,C#,true,false,false,4,true,true,false,false +tikiwiki/tiki-deprecated,tikiwiki,PHP,false,false,false,0,false,false,false,false +ucl-peach-public/trialslink,ucl-peach-public,Java,true,false,true,3,true,true,false,false +wpdesk/wc-helpers,wpdesk,PHP,true,false,false,5,false,true,true,false +wpdesk/wp-builder,wpdesk,PHP,true,false,false,5,false,true,true,false +ydkn/capistrano-git-copy-bundle,ydkn,Ruby,true,false,false,3,true,false,false,false diff --git a/datasets/dataset.csv b/datasets/dataset.csv new file mode 100644 index 0000000..f241ab0 --- /dev/null +++ b/datasets/dataset.csv @@ -0,0 +1,5313 @@ +project,owner,language,hasYaml,hasRequirements,hasPoms,stages,hasBuildStage,hasTestStage,hasDeployStage,hasCustomDeployStage +ModioAB/base-image,ModioAB,Python,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,TRUE +swe-nrb/sbp-begreppslista,swe-nrb,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +redmic-project/client/web,redmic-project,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +assembl/assembl,assembl,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +geometalab/osmybiz,geometalab,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +foci-open-source/Foci.OrbitalBus,foci-open-source,C#,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +cloudigrade/frontigrade,cloudigrade,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +cmc_system/cmc,cmc_system,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +PPL2018csui/Kelas-A/Kel-5,PPL2018csui,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +sbarthelemy/conan-public-recipes,sbarthelemy,Python,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +pleio/pleio,pleio,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Radiophonix/Radiophonix,Radiophonix,PHP,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +mergetb/engine,mergetb,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +arturlwwwmods/ArtUrlWWW_MegaMod,arturlwwwmods,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +akeinhell/redfoxbot,akeinhell,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +trustable/distros/minimal-distro,trustable,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +PPL2017csui/PPLB5,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +corunahacks/2018/aloha/aloha-front,corunahacks,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +PPL2018csui/Kelas-A/Kel-1,PPL2018csui,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +masakura/issues,masakura,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +jankubierecki/UEKPartnership,jankubierecki,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,FALSE +kimlab/kmbio,kimlab,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +kimlab/pagnn,kimlab,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +monetha/ico-rating-web,monetha,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +hendisantika/siap-diskanlut,hendisantika,JavaScript,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +mergetb/site,mergetb,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +hotfury/Multitask,hotfury,C#,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +openrail/uk/common-nodejs,openrail,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tottokotkd/hinapedia,tottokotkd,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +sat-mtl/telepresence/scenic-core,sat-mtl,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +harbottle/epypel,harbottle,Ruby,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +tabi/tabi-backend,tabi,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +francois.travais/1tipi2bicycles,francois.travais,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +mrvik/jdrive,mrvik,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Valtech-Amsterdam/MvcHoneyPot,Valtech-Amsterdam,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gl-support/gitlab-support-bot,gl-support,Ruby,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +offcourse/ui-components,offcourse,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tedtramonte/TalentedDiscord,tedtramonte,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mergetb/xir,mergetb,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +the-spartans/Dashboard,the-spartans,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +brd.com/brd.js,brd.com,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +htagen/sadarada,htagen,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +courcelm/clmsvault,courcelm,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +project-meerkat/concierge,project-meerkat,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Sk1f3r/eoxer-web,Sk1f3r,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +enterit/rtpomodoro,enterit,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fsfe/fsfe-cd,fsfe,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +angular-material-home/apps/amh-elearn,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +cleanunicorn/eth-tipper,cleanunicorn,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +uspcodelab/projects/iris/api,uspcodelab,Python,TRUE,TRUE,FALSE,3,TRUE,FALSE,TRUE,TRUE +angular-material-dashboard/apps/my-dashboard,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +brianwald/gitlab-training-library,brianwald,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +angular-material-home/apps/amh-home,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +javi31170/cicd-pipeline-train-schedule-dockerdeploy,javi31170,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +mardy/speculo,mardy,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mardy/mappero,mardy,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-org/gollum-lib,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/omniauth-ldap,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +multoo/router,multoo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +agilob/qfakturat,agilob,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +adin/guia-documentos-tecnicos,adin,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rizon/acid,rizon,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mads/Mads.jl,mads,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +multoo/datatable,multoo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +multoo/twig,multoo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ccliu52/my-Awesome-project,ccliu52,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vindarel/abelujo-website,vindarel,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rolla/xpncms,rolla,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +evol/hercules,evol,C,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +warsaw/flufl.lock,warsaw,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +suttungdigital/nox-engine,suttungdigital,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cpran/plugin_serialise,cpran,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joaodarcy/perttool,joaodarcy,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +accounts-sso/signon-plugin-oauth2,accounts-sso,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +accounts-sso/libsignon-glib,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +accounts-sso/gsignond-plugin-oa,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +accounts-sso/gsignond-plugin-sasl,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +accounts-sso/libgsignon-glib,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +uhttpmock/uhttpmock,uhttpmock,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +indybay/indybay-active,indybay,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jaming/panicboard,jaming,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +radiognu/radiognu-widget-legacy,radiognu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +radiognu/radiognu-widget,radiognu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jamie_ca/blog.tracefunc.com,jamie_ca,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Tablesaw/Alpaca-Farm,Tablesaw,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +4144/paranucker,4144,C++,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +s4m-chef-repositories/confluent-platform,s4m-chef-repositories,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +0X1A/yabs,0X1A,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oleksandromelchuk/rust-osm-reader,oleksandromelchuk,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +breadmaker/ctmcorp.cl,breadmaker,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +asura/data,asura,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ilpianista/HostIsDown,ilpianista,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +multoo/error-handler,multoo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +0X1A/rpf,0X1A,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +s4m-chef-repositories/storm-platform,s4m-chef-repositories,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +timothyw/lisp,timothyw,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bromancer/nodejs-gitlab-bot,bromancer,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iggdrasil/morrigan-ng,iggdrasil,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ICM-VisLab/JSciC,ICM-VisLab,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +ICM-VisLab/JLargeArrays,ICM-VisLab,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +rodo/pg_tools,rodo,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbraad/gauth,gbraad,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-pivotal/gitlab-ee-bosh-release,gitlab-pivotal,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joaopizani/piware,joaopizani,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +almonsin/fmt11,almonsin,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mahdaen/singclude,mahdaen,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stepwo/catalog-page-generator,stepwo,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +mgoral/quicksend,mgoral,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +radiognu/PPTLS,radiognu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +htgoebel/OSD-Neo2,htgoebel,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +TXCobalt/TXCobalt.Core,TXCobalt,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jbydeley/go-semaphore,jbydeley,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jensj/spelltinkle,jensj,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rodo/pygcat,rodo,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +rootcaid/pki-websdk-build,rootcaid,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +k-chaney/redteam_sd_repo,k-chaney,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +hallison/git-lighttp,hallison,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kb/checkout,kb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BlackEdder/ggplotd,BlackEdder,D,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RyDroid/PlanetWars2dRT-core,RyDroid,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +kylemanna/nanotest,kylemanna,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +luizmiranda7/easy-router-app,luizmiranda7,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fast_pixelated_detectors/merlin_interface,fast_pixelated_detectors,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fast_pixelated_detectors/fpd_live_imaging,fast_pixelated_detectors,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +juliancarrivick/band-manager-frontend,juliancarrivick,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +arose/dokuwiki-userprofile-plugin,arose,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rbertoncelj/wildfly-singleton-service,rbertoncelj,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +ogre3d/clean-project,ogre3d,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hotoo/gitlab-notifications,hotoo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +shashankchakelam/NamoDB,shashankchakelam,Python,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +GoatGames/GoatEngine,GoatGames,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aatos/rust-ping,aatos,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +worr/rcstring,worr,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phunehehe/runix,phunehehe,Nix,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wesleyceraso/linlib,wesleyceraso,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jangorecki/big.data.table,jangorecki,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hylcos/InChat,hylcos,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wildan-anky/PMPL_Wildan,wildan-anky,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sane-project/ci-envs,sane-project,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +axil/phantomjs-debian,axil,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wahyuoi/Quiz3,wahyuoi,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fa13/build,fa13,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +craigbarnes/tally,craigbarnes,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jubianchi/hubot-gitlab-ops,jubianchi,CSS,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +sgimeno/angularjs-gulp-browserify-boilerplate,sgimeno,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lummei/libfasta,lummei,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sytses/sytses.gitlab.io,sytses,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cerebralpower/Variance,cerebralpower,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +baldurmen/rename-flac,baldurmen,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +unplugstudio/mezzy,unplugstudio,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +osasto-kuikka/kge,osasto-kuikka,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +thelabnyc/ci,thelabnyc,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joaosilva2095/dotfiles,joaosilva2095,Vimscript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/gitlab-contributors,gitlab-com,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +signal9/cpp-skeleton,signal9,Meson,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mdsnouck/NodeStartApp,mdsnouck,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mdsnouck/SMSmessageParty,mdsnouck,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nany-lang/nanyc,nany-lang,C++,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +gnutls/nettle,gnutls,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +connorshea/connorshea.gitlab.io,connorshea,CSS,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +waylon531/waylos,waylon531,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twittner/redis-resp,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bindslabteam/projecteyeframe,bindslabteam,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twittner/wai-routing,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Rich-Harris/stacking-order,Rich-Harris,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bgrolleman/puppet,bgrolleman,Puppet,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +mayan-edms/cookiecutter-mayan,mayan-edms,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jangorecki/r.pkg.gitlab.ci,jangorecki,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jangorecki/dockerfiles,jangorecki,,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +agilob/qfiction,agilob,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sorenmat/botbrother,sorenmat,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +timrs2998/umd-nlp-question-answering,timrs2998,Perl,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wayless/wayless,wayless,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +wyago/mantra,wyago,C#,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chamilotools/chamilotools,chamilotools,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LukBukkit/XWeb,LukBukkit,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +perobertson/requisition,perobertson,Ruby,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +perobertson/dotfiles,perobertson,Vimscript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +iyulab/iyulab.gitlab.io,iyulab,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bmcallis/library-skeleton,bmcallis,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HackerSir/VSDK,HackerSir,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cabargas/cabargas.gitlab.io,cabargas,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jekyll-themes/carte-noire,jekyll-themes,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ottonello/gossipDemo,ottonello,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +chriseaton/recaptcha,chriseaton,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tem_leonov/FluentMailer,tem_leonov,C#,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +VeraKolotyuk/hexo_examples,VeraKolotyuk,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/harp,pages,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +l214/msender,l214,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dgriffen/iron_session,dgriffen,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +frntn/docker-cloud9,frntn,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +cky/emojisweeper,cky,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +themes-templates/hexo,themes-templates,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ajm113/pixelHell,ajm113,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +en15for/gitlabr,en15for,R,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +european-data-portal/licensing-assistant,european-data-portal,HTML,TRUE,FALSE,TRUE,1,FALSE,FALSE,TRUE,FALSE +jberkel/digero,jberkel,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iarenzana/urbanobot,iarenzana,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +pwoolcoc/cmudict,pwoolcoc,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jasperdenkers/play-scala-heroku-sample-app,jasperdenkers,Scala,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sbatman/Sbatman.Networking,sbatman,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +eitelkalk/Recown,eitelkalk,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +AngeloStavrow/gitlab-ci-for-ios-projects,AngeloStavrow,Swift,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +themes-templates/hyde,themes-templates,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +padouppadoup/paris-agreement,padouppadoup,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tiago.dias/btc-stats,tiago.dias,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pantacor/pantahub-base,pantacor,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ismail-s/cis194-homework,ismail-s,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HackLabCormano/hacklabcormano.it,HackLabCormano,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vikserver/vikserver-backend,vikserver,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +twittner/cql,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twittner/tinylog,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +melkorm/php-testing,melkorm,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +themes-templates/lektor,themes-templates,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/instrumented-soap,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twittner/json-codec,twittner,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +yurb/getmusic,yurb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/django-oscar/django-oscar-cch,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +buckybox/core,buckybox,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bennyp/kupat-givat-hamivtar,bennyp,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jamie_ca/codex,jamie_ca,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +saintcon/SaintCon2016Badge,saintcon,Lua,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +d-e/blender-addon-boilerplate,d-e,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barrel/barrel-shopify,barrel,Liquid,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Boelensman1/SpaceS-DB,Boelensman1,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +shiplix/shiplix,shiplix,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +socrates-chile/socrates-chile,socrates-chile,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jadelab/jadegit,jadelab,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pushrocks/smartcli,pushrocks,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +chriseaton/malk-storage-file,chriseaton,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +chriseaton/malk-storage-sqlite,chriseaton,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ethanfrogers/ethanfrogers.gitlab.io,ethanfrogers,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fabiocosta0305/fabiocosta0305.gitlab.io,fabiocosta0305,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cdietrich/xtext-maven-example,cdietrich,Xtend,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pendingchaos/shooty-game,pendingchaos,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +foxnewsnetwork/ember-gitlab-pages,foxnewsnetwork,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ubuntuforhope/ubuntuforhope.org,ubuntuforhope,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +carey.pridgeon/Mopfile,carey.pridgeon,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +werwurm/ichi_reloaded,werwurm,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sunng/sunng.gitlab.io,sunng,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chriseaton/malk-storage,chriseaton,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Rich-Harris/buble-demo,Rich-Harris,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/django-exact-target,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +apetitbois/electron-polymer,apetitbois,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jxml/JXML,jxml,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +relan/elektrichki,relan,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ymorin/buildroot,ymorin,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zloster/zloster.gitlab.io,zloster,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aniemsh/aniemsh.gitlab.io,aniemsh,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pendingchaos/Celery,pendingchaos,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +YerkoPalma/YerkoPalma.gitlab.io,YerkoPalma,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +DarkDNA/gentoo-overlay,DarkDNA,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bconway/go-resteasy,bconway,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anspress/anspress,anspress,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +maratkalibek/rf-gitlab,maratkalibek,RobotFramework,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phunehehe/foomail,phunehehe,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xuv/git-visualization-for-designers,xuv,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dvd0101/amaze-chemaze,dvd0101,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ercom/codebeautifier,ercom,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gab/_constructive-siteswap,gab,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +htfy96/network_algo,htfy96,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gregwinn/ystock,gregwinn,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +benoitldr/cours-maths-blandrieu,benoitldr,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tnir/centos-for-ci,tnir,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/django-oscar/django-oscar-bluelight,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +michael.lill/foodcoop,michael.lill,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +s2u/s2u-firewall,s2u,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +build-docker-images/odoo-docker-builder,build-docker-images,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +exarh-team/skaro-qml,exarh-team,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +smart-city-platform/resource-adaptor,smart-city-platform,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sqlobject/sqlobject.gitlab.io,sqlobject,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +GustavoARod/bank-demo,GustavoARod,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +minzhang/gitci_test,minzhang,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +Gluttton/PslRK,Gluttton,C++,TRUE,FALSE,FALSE,12,FALSE,FALSE,FALSE,FALSE +smart-city-platform/resources-catalog,smart-city-platform,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +duncan-bayne/toy-robot,duncan-bayne,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +unq-ing-laannn/qflix,unq-ing-laannn,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SouWilliams/docker-gitlab,SouWilliams,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pallavagarwal07/pallavagarwal07.gitlab.io,pallavagarwal07,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +madoushi/sbt-sass,madoushi,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bchevalier/gitutils,bchevalier,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cage1016/gae-flask,cage1016,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jimakker/appkg,jimakker,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +victorhck/git_chuleta_comandos,victorhck,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mobilinepl/fedoraprovisioning,mobilinepl,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eternalconstruct/analyst,eternalconstruct,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sycom/sycom.gitlab.io,sycom,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +courses-online/materialize,courses-online,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Boelensman1/SpaceS-DB-Frontend,Boelensman1,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +Zatherz/minifs,Zatherz,MoonScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +infmagic2047/minetest-lexip16,infmagic2047,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orobardet/3DPTools,orobardet,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +SpaceTrucker/modular-spring-contexts,SpaceTrucker,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +brenddongontijo/SMI-UnB,brenddongontijo,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pank/org-mode-gitlab-pages,pank,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/django-oscar/django-oscar-wfrs,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +seanclayton/neato,seanclayton,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tsgkdt/sphinx-plantuml,tsgkdt,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +drdaeman/firesync,drdaeman,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,TRUE +burke-software/simple-asymmetric-python,burke-software,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +welcheb/docker_slides2txt,welcheb,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dromi/dromi,dromi,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dragonislands/web,dragonislands,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +coala/coala-bear-management,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jangorecki/macrobenchmark,jangorecki,R,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jmabey/docker-sqitch,jmabey,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +docker-tor/tor-browser,docker-tor,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jensastrup/pyOutlook,jensastrup,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +sycom/userScripts,sycom,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kaliko/mkdocs-cluster,kaliko,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xinef/brainy-config-frontend,xinef,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lechuckcaptain/discount-ascii-warehouse,lechuckcaptain,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chubbssolutions/hnbot,chubbssolutions,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +improbible/improbible,improbible,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +xinef/brainy-config-backend-java,xinef,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dockdogs/dockdogs-affiliate-handbook,dockdogs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jzelner/hotspotr,jzelner,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +dlozeve/dlozeve.gitlab.io,dlozeve,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ananthurv/finite-automaton,ananthurv,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bnc9/map-publish,bnc9,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +attila.farago.hu/EV3TreeVisualizer,attila.farago.hu,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +csfalcao/gitlabsite,csfalcao,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +heatray/innovation,heatray,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +IPMsim/Virtual-IPM,IPMsim,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +brett.timperman/ab-reference,brett.timperman,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +4geit/blog,4geit,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +samba/webapptitude,samba,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +nkovacs/docker_test,nkovacs,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/lfs,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barkerja/Hal,barkerja,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bahmutov/cypress-example-kitchensink,bahmutov,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +joaoevangelista/fireplace,joaoevangelista,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +adrian.io/wsdemo,adrian.io,JavaScript,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +wikiti-random-stuff/jquery-paginate,wikiti-random-stuff,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +simonbreiter/node-text-adventure-engine,simonbreiter,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +unduthegun/stellaris-emblem-lab,unduthegun,CommonWorkflowLanguage,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tfSheol/Omegle-Client,tfSheol,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +4geit/domains,4geit,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +starke/domains,starke,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +victorhck/GNU-Linux_clock,victorhck,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +voj-tech/vtcompose,voj-tech,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gbraad/openstack-client,gbraad,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mfgames-writing/mfgames-writing-format-js,mfgames-writing,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +hsafoundation-spb/HSAIL-Tools,hsafoundation-spb,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xinef/brainy-web-frontend,xinef,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +richizo/ichizo.me,richizo,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rh-kernel-stqe/python-libsan,rh-kernel-stqe,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbraad/byo-atomic-fedora,gbraad,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbraad/c9ide,gbraad,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +kermit-js/kermit-js.gitlab.io,kermit-js,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +laescalera/twister-jekyll-theme,laescalera,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +janslow/gitlab-swagger-client,janslow,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +ngthorg/graphql-demo,ngthorg,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bogaert/alpine-lftp,bogaert,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jpahullo/php-project,jpahullo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mcallan83/media,mcallan83,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ajclarke/neo-fighting-dojo,ajclarke,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Mumba/node-config,Mumba,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Mumba/node-config-vault,Mumba,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Mumba/node-vault,Mumba,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AnnaDodson/annadodson,AnnaDodson,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +victorhck/guia_openSUSE,victorhck,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +universe6/selfstudythai,universe6,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nkovacs/docker-builder,nkovacs,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wayanjimmy/wayanjimmy.gitlab.io,wayanjimmy,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lightningwolf/lightningwolf-sds,lightningwolf,Python,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +gggauravgandhi/preeminence-website,gggauravgandhi,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +honma.shun/sample-app,honma.shun,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/manual-actions,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wurssb/NG-Tax,wurssb,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +thinkking/thinkking.gitlab.io,thinkking,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cleto/accli,cleto,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ChangjunZhao/helloworld_goweb,ChangjunZhao,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nasa-jsc-robotics/r2_moveit_config,nasa-jsc-robotics,CMake,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +nasa-jsc-robotics/r2_gazebo,nasa-jsc-robotics,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +saasdm/angular-saasdm,saasdm,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jasperdenkers/lunatech-demo-ci-scala-sbt,jasperdenkers,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jasperdenkers/lunatech-demo-cd-play-scala-heroku,jasperdenkers,Scala,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Mumba/node-microservice-vault,Mumba,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wulingying/wulingying.gitlab.io,wulingying,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +iladin/dotfiles,iladin,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +systent/dj_auth,systent,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nikhiljha/Gradebook,nikhiljha,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +andrewbanchich/highlights-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +andrewbanchich/future-imperfect-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/strata-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/lens-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fiveop/ultimate-drill-cards,fiveop,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +davidwiggins3/visiting-route-planner,davidwiggins3,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lexxyfox/TCSGE_H5,lexxyfox,LiveScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +brianstarke/go-beget,brianstarke,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +david_black/Supertig,david_black,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +david_black/Zombie-killer,david_black,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +markpundsack/velociraptor,markpundsack,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +tfSheol/Gitlab-Builds-updater,tfSheol,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +blue-media/online-payments-php,blue-media,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deckar01/xterm-display,deckar01,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Rich-Harris/pathologist-demo,Rich-Harris,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbraad/blog,gbraad,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +aldgagnon/betterWMU,aldgagnon,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +haeqs/haeqs.gitlab.io,haeqs,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +waylon531/merkle-rs,waylon531,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +AGausmann/samurai,AGausmann,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +my-application.bjoernbartels.earth/ZfcUser,my-application.bjoernbartels.earth,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barrel-db/erlang-lru,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +buckybox/buckybox-api-ruby,buckybox,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +akrisiun/Folder,akrisiun,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vnphp/geocoder-bundle,vnphp,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sgj/platform,sgj,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wurssb/ngtax,wurssb,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +martynbristow/gabbi,martynbristow,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +idlemoor/idlemoor.gitlab.io,idlemoor,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +baldvinth/eve.singlesignon,baldvinth,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Adam-/jircd,Adam-,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +scrambledrk/huntsman,scrambledrk,Haxe,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +davabe/aged,davabe,Ruby,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +jangorecki/pkg-openCRAN,jangorecki,R,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vnphp/fragment-bundle,vnphp,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sukalde/sukalde.gitlab.io,sukalde,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ttd/ttd.gitlab.io,ttd,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +barraponto/barraponto.gitlab.io,barraponto,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mallgroup/mpapi-client,mallgroup,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +sommd/multimedia-majorwork,sommd,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Plague_Doctor/plague-nvim,Plague_Doctor,Vimscript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +villagedefrance/OpenCart-Overclocked,villagedefrance,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AdamSimpson/cuda_mpi_benchmark,AdamSimpson,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bahmutov/batched-semantic-release,bahmutov,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sirile/go-image-test,sirile,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sf-byte-days/sms2bot,sf-byte-days,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +thangngoc89/dnh-cpp,thangngoc89,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +unifi-f4w/oauth2-checker,unifi-f4w,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +karlmarx80/palarust,karlmarx80,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SnareChops/notator.online,SnareChops,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sverweij/state-machine-cat,sverweij,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libereco/fsmk-web-build,libereco,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +UdM/pybinit,UdM,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +lobaro/firefly-go,lobaro,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +melihovv/petri-dish,melihovv,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gbraad/blog-content,gbraad,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +webarch/webarch-status,webarch,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Zatherz/robot,Zatherz,Crystal,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +icalF/node-dashboard,icalF,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vnphp/calendar,vnphp,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fcv/hello-spring-rest-service,fcv,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +lambdait/slack-vk-bot,lambdait,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +rubygems/instagram-ripper,rubygems,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +abhi18av/ToDo.abhi18av.gitlab.io,abhi18av,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DublinAnime/dublinanime.ie,DublinAnime,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sivsushruth/barrel,sivsushruth,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fweber-de/docker-php,fweber-de,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dblel/adioh,dblel,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +craftsmen/spock-example,craftsmen,Groovy,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +painless-software/painless-continuous-delivery,painless-software,PHP,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +getmetorajesh/BakeryChallenge,getmetorajesh,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-cookbooks/gitlab-chef-util,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Mizux/android-101,Mizux,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +derobert/CueISRC,derobert,Perl,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +qaclana/www.qaclana.io,qaclana,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +SaiAshirwadInformatia/Labs/Jekyll-Creative,SaiAshirwadInformatia,HTML,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +thesecretmaster/atd,thesecretmaster,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HyphanBot/HyphanBot,HyphanBot,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +perlstalker/octopress-deploy,perlstalker,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +duelinmarkers/steel-cent,duelinmarkers,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rubdos/pyreflink,rubdos,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +Animarathon/animarathon.gitlab.io,Animarathon,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ayufan/docker-networking,ayufan,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deubeuliou/parameter-framework,deubeuliou,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +brendanjerwin/testing-elm-serverless,brendanjerwin,Elm,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +fossht/asic_tools,fossht,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +ixilon/nukkit-docker,ixilon,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +dekzitfz/GitlabCIExample,dekzitfz,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paddatrapper/ansible,paddatrapper,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +librespacefoundation/lsf-org,librespacefoundation,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +kfrz/ticketbuster,kfrz,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jamietanna/jvt.me,jamietanna,CSS,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +stefan-it/array_hash_map,stefan-it,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +skanur/ubench_rust,skanur,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mario-kart-analyzer/datacollector,mario-kart-analyzer,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twiceyuan/twiceyuan.gitlab.io,twiceyuan,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eamon.woortman/unity3d-unit-testing-example,eamon.woortman,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +skydavid/RF1-Webshop,skydavid,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +benoitc/openkvs,benoitc,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-markup,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +agfranco19/tsb-tpi-vocabulary,agfranco19,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +s4m-gems/maven-cli,s4m-gems,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +spice/spice-space-pages,spice,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foodsharing-dev/foodsharing-android-legacy,foodsharing-dev,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Edistra/tactic-arena,Edistra,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +bagga.atul/myproject,bagga.atul,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +cprecioso/pipify,cprecioso,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +milton.bose/scallops,milton.bose,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +siasar-project/data,siasar-project,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +sycom/TiddlyWiki-Plugins,sycom,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +michaeljdeeb/michaeljdeeb.gitlab.io,michaeljdeeb,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oskopek/TransportEditor,oskopek,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +living-map/frontend-builder,living-map,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +karlson2k/libmicrohttpd,karlson2k,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rilis/docker-ci,rilis,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +HaydenSD/kcdsredstone,HaydenSD,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fresheyeball/Shpadoinkle,fresheyeball,PureScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vnphp/fineproxy,vnphp,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +CIAvash/MovieInfo,CIAvash,Elm,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jahanjoo/jahanjoo-angular-search-example,jahanjoo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adn-latex/adnamc,adn-latex,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bagage/colorlog,bagage,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nehemie/rkeos,nehemie,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Legiew/osoms,Legiew,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stiemannkj1/stiemannkj1.gitlab.io,stiemannkj1,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +arsouyes/bookmaker,arsouyes,Makefile,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +barrel-db/teleport,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/githost-runbooks,gitlab-com,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +johnnyzz/pharo-nos-build,johnnyzz,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +craigbarnes/ltcn,craigbarnes,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +signal9/cpp-env,signal9,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +thogg4/terraform-ruby,thogg4,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kohoutovice/Sirius,kohoutovice,C++,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +mdaffin/mdaffin.gitlab.io,mdaffin,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hft_stuttgart_swp2_ws2016/Server,hft_stuttgart_swp2_ws2016,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +rubdos/texlive-vub,rubdos,PostScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +craigbarnes/dockerfiles,craigbarnes,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +librehealth/librehealth.io,librehealth,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +spice/spice-common,spice,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +finding-ray/proto,finding-ray,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +commonshost/core,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adi90x/rancher-gen-rap,adi90x,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +BluemlJ/GSAT,BluemlJ,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +LostRedSky/utils,LostRedSky,CMake,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +aelita/docker-docker-compose,aelita,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +zetok/disk_io,zetok,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sebdeckers/base-emoji-512,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hadesrofl/Jimmey,hadesrofl,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +evanstoner/kudzu,evanstoner,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +thoelken/astarget,thoelken,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mmosconi/mediawiki,mmosconi,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ubpaxum/sql-drus,ubpaxum,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +kylehqcom/goapi,kylehqcom,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +nozzleman101/electron-boilerplate,nozzleman101,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +kargathia/PRC_Sluice,kargathia,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +roddhjav/roddhjav.gitlab.io,roddhjav,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sebdeckers/cache-digest-immutable,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robigalia/sel4,robigalia,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +taciturn-pachyderm/knights-of-something-notable,taciturn-pachyderm,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +trustable/trustable.gitlab.io,trustable,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +garantiertnicht/MobTest,garantiertnicht,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vnphp/request-logger-bundle,vnphp,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bradanlane/ros-i2cpwmboard,bradanlane,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vnphp/presenter-bundle,vnphp,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/editorial-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +seeqlabs/api-python,seeqlabs,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vnphp/media-extension-bundle,vnphp,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +srrg-software/srrg_nw_calibration,srrg-software,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Guilhermeb/gitlabdemo,Guilhermeb,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +OpenMusicKontrollers/midi_matrix.lv2,OpenMusicKontrollers,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +dariom/lbdm,dariom,C,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +equake/aws-spot-fleet-helper,equake,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NTPsec/blog,NTPsec,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +janslow/ci-build-version,janslow,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +coderlex/beauty-of-lake,coderlex,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +andrewbanchich/dimension-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Fodoj/packt-terraform-book,Fodoj,HCL,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +wanderlandtravelers/wanderlandtravelers.gitlab.io,wanderlandtravelers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +knocte/fsx,knocte,F#,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +fitzinger/formation-python,fitzinger,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Lunar.Lopez/test-project-01,Lunar.Lopez,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +transportengineering/radixtree,transportengineering,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phyks/weboob,phyks,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ruby-a-la-cluj/smart-badge,ruby-a-la-cluj,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +emojido/emojido,emojido,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +naortega/Indivisible,naortega,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +riggeddice/rpg,riggeddice,JupyterNotebook,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +markpundsack/rails-on-heroku-via-docker,markpundsack,Ruby,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +csaron92/poker-player-silly-gray-wolf,csaron92,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +yashdsaraf/mm-project,yashdsaraf,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-org/eclipse-gitlab-slides,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +sebdeckers/babel-plugin-transform-string-literal-replace,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +infertux/easy-login,infertux,Elm,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dvalenzu/CHIC,dvalenzu,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kargo-ci/kubernetes-incubator/kargo,kargo-ci,Python,TRUE,TRUE,FALSE,7,FALSE,TRUE,FALSE,FALSE +packaging/logrotate-no-compress-apt-hook,packaging,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +ayufan/kubernetes-deploy,ayufan,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tuomashatakka/atom-ui-reduced-dark,tuomashatakka,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +open-sismo/coordinate-api,open-sismo,Python,TRUE,TRUE,FALSE,4,TRUE,TRUE,TRUE,TRUE +bff/rn,bff,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eval/pipeclient,eval,Clojure,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +yogonza524/fletz,yogonza524,JavaScript,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,TRUE +atsaloli/gitlab-ci-tutorial,atsaloli,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dvalenzu/PanVC,dvalenzu,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +daniellawrence/go-links,daniellawrence,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +siegcollado/gitlab-ci-build-images,siegcollado,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +infertux/lifechart,infertux,Elm,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ConorIA/alpine-pandoc,ConorIA,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +sims1253/linespots-lib,sims1253,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CLARIN-ERIC/docker-vlo-beta,CLARIN-ERIC,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +s4m-chef-repositories/consul-platform,s4m-chef-repositories,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +saasdm/saasdm-material,saasdm,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +onsip/sipjs.com,onsip,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kargathia/ES_Application,kargathia,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +BlackEdder/AODVRouter,BlackEdder,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hansroh/skitai,hansroh,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +schpaper/schpaper.gitlab.io,schpaper,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-home/apps/amh-template-builder,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +indicproject/indic-keyboard-website,indicproject,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +space-sh/lua,space-sh,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pcapriotti/agda-base,pcapriotti,Agda,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openstreetcraft/wms,openstreetcraft,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +cubekrowd/system/cubebot,cubekrowd,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +vajda.stefan/vajda.stefan.gitlab.io,vajda.stefan,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bbaldassari/Alambic,bbaldassari,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +codelibre/schroot,codelibre,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +penang-hokkien/penang-hokkien.gitlab.io,penang-hokkien,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +prashere/exifdata,prashere,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +niksaak/lofi,niksaak,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hamakor/organ,hamakor,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kylehqcom/whatjson,kylehqcom,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +weburger/am-wb/am-wb-copyright,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +isd/layout-dsl,isd,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wictor/TreoSMS,wictor,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +insightgit/Project-Avenue-Concept,insightgit,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +containos/containos,containos,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +niaquinto/nicks-recipies,niaquinto,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +AmosEgel/smuthi,AmosEgel,Fortran,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +akita/akita,akita,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sssvip/helloworld,sssvip,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +abre/lorikeet,abre,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +jimschubert/iggy,jimschubert,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +InstitutMaupertuis/davidSDK,InstitutMaupertuis,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gpcentre/wordpress-nginx-fpm,gpcentre,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +norad/docs,norad,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dhanesh95/dhanesh95.gitlab.io,dhanesh95,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gandra404/ticketbeast,gandra404,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jerrya/nextferry,jerrya,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +cgcladera/ci-diy,cgcladera,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +ergot/ifocop-snake,ergot,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jordimonegallopez/m02html,jordimonegallopez,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alimaldev/cv,alimaldev,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +wsw0108/go-proj4,wsw0108,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wsw0108/go-proj4-mars,wsw0108,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +powan/CoreRobotics,powan,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tramwayjs/tramway-connection-rest-api,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BuildStream/buildstream-tests,BuildStream,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kooki/kooki,kooki,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +tspiteri/rox,tspiteri,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mykhailokoretskyi/test-deep-mock,mykhailokoretskyi,Perl,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +openstreetcraft/overpass-api,openstreetcraft,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +boormat/khana-results,boormat,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +davch/jsredir,davch,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +runarberg/trompt,runarberg,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lusimeon/bem-slides,lusimeon,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +luca-heltai/bare-dealii-app,luca-heltai,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +liscioapps/ask-jocko,liscioapps,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +nvidia/caffe,nvidia,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +minishift/minishift,minishift,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +signal9/conanfiles,signal9,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +InstitutMaupertuis/raspberry_stepper_demo,InstitutMaupertuis,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +albertoluna/moon-video-sync-api,albertoluna,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +salay14/sklad,salay14,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +wdd/rtsharp-rtorrent-sds,wdd,D,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +alan.t.negrete1/nodeapi-gcloud-boilerplate,alan.t.negrete1,JavaScript,TRUE,FALSE,FALSE,6,TRUE,FALSE,TRUE,FALSE +codelogs/codelogs-backend,codelogs,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,FALSE +tannerlake/dungeonbot,tannerlake,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +socrates-peru/socrates-peru.gitlab.io,socrates-peru,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kaacode2/html2017,kaacode2,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Salvus/salvus_seismo,Salvus,Python,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +naym333/gitlab-timer,naym333,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chris-morgan/symlink,chris-morgan,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lyda/gqgmc,lyda,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +plut0n/Bluebird,plut0n,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +smizy/docker-keras-tensorflow,smizy,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +roddhjav/pass-update,roddhjav,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +weburger/am-wb/am-wb-carousel,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-cookbooks/gitlab_consul,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +angular-material-dashboard/apps/amd-teacher,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fargie_s/pipo,fargie_s,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +parroty/gitlab_sample,parroty,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fsfe/fsfe-cd-dummy-postgres,fsfe,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +byteball/faq,byteball,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jorge.aguilera/grocker,jorge.aguilera,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +servercharlie/servercharlie.gitlab.io,servercharlie,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +livewords-oss/livewords-gitlab-runner,livewords-oss,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +simonbreiter/rest-cms,simonbreiter,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +meno/vocal-coach,meno,Dart,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +akita/mem,akita,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +KitaitiMakoto/scrollspy-example,KitaitiMakoto,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nestal/spaghetti,nestal,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Gluttton/BronKerbosch,Gluttton,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thebastedo/thebastedo.com,thebastedo,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +codeandsupplyfund/codeandsupply.fund,codeandsupplyfund,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +CruAlbaniaDigital/broshura-4-ligjet,CruAlbaniaDigital,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vladgo/ansible-minio,vladgo,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +lagbotics/current,lagbotics,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +territoires/caligram-react,territoires,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +zetok/epaste,zetok,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vaghtgir/telegram-cli-binary,vaghtgir,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tsktsktsktsk/website_attempt_two,tsktsktsktsk,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vaghtgir/Semantic-UI-RTL,vaghtgir,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +webhook-to-mqtt/webhook-to-mqtt-server,webhook-to-mqtt,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +valeth/anidb.rb,valeth,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sumner/tracktime,sumner,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +PPL2017csui/PPLC2,PPL2017csui,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +PPL2017csui/PPLA1,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +michaelbarton/gaet,michaelbarton,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +allima/my-similarity-project,allima,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +albina-euregio/albina-server,albina-euregio,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +jorge.aguilera/codemidi,jorge.aguilera,Groovy,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +pavelgopanenko/margo-cookery,pavelgopanenko,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +P5YCH0D3/MUN,P5YCH0D3,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CruAlbaniaDigital/hapitjeter,CruAlbaniaDigital,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +authenticity/enrollment-js,authenticity,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +shingonoide/php,shingonoide,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anarcat/kobo-ssh,anarcat,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +swe-nrb/nrb-sbp-shopfront,swe-nrb,HTML,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +finnyapp/finny-api,finnyapp,Clojure,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DIGITALR00TS-Demo/ci-jekyll,DIGITALR00TS-Demo,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +ultreiaio/gitlab-maven-plugin,ultreiaio,Java,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +remyGrandry/Myre,remyGrandry,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +griest/pexi,griest,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +engineering-projekt/examibur,engineering-projekt,Java,TRUE,FALSE,FALSE,7,TRUE,TRUE,TRUE,FALSE +openrail/uk/referencedata-nodejs,openrail,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +thelabnyc/certbot-django,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +azdle/stockfaces-api,azdle,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +OpenMusicKontrollers/synthpod,OpenMusicKontrollers,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +robconnolly/hass-config,robconnolly,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +kylehqcom/qupid,kylehqcom,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Bladou/logstash-indexer-example,Bladou,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ffffm/docker-salt-minion,ffffm,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tramwayjs/tramway-core-router,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dgoo2308/jekyll-plantuml-url,dgoo2308,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ehiggs/ripawk,ehiggs,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +antongnutov/scala-js-prototype,antongnutov,Scala,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +jswrenn/nlptk,jswrenn,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +matthiasstock/monolith,matthiasstock,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +universal-playlist/pls2upl,universal-playlist,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ngx-filemanager/ngx-filemanager,ngx-filemanager,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +wayanjimmy/warungmoneer,wayanjimmy,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mtg-archive/magic-laravel,mtg-archive,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +penkit/packages,penkit,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dgoo2308/testapi_access,dgoo2308,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tastapod/bddbyexample,tastapod,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AntoniOrs/Timer,AntoniOrs,TypeScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +spicycms.com/dev-SpicyCMS_Chief_Editor,spicycms.com,Shell,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +gismala/ongisline,gismala,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +gbraad/minishift,gbraad,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ZORALab/BaSHELL,ZORALab,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +monasca-installer/monasca-installer,monasca-installer,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +yorickpeterse/load-testing,yorickpeterse,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mikekoetter/node-varint,mikekoetter,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +automatedtrading/questrade,automatedtrading,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Mizux/cpp-101,Mizux,CMake,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +nielsmokkenstorm/dungeontool,nielsmokkenstorm,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +alelec/docker-arm-none-eabi,alelec,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +carmenbianca/en-pyssant,carmenbianca,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +chatterops/chatterops.gitlab.io,chatterops,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mfgames-writing/example-frankenstein,mfgames-writing,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angryshort.one/swift-backend,angryshort.one,Swift,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +crazybus/crazybus.gitlab.io,crazybus,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +edwardwang1/biomodUBC,edwardwang1,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mgoral/feed-commas,mgoral,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +naortega/TFGCW,naortega,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Queuecumber/linux-acs-override,Queuecumber,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +checkmein2/checkmein2-user-management-service,checkmein2,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +checkmein2/checkmein2-campaign-service,checkmein2,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +zaaksysteem/converter-service,zaaksysteem,Perl,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +Vondracek/JustATeam_IVS,Vondracek,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +angular-material-home/apps/amh-blog,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fpirola/scala-js-matrix,fpirola,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joshlambert/prometheus-demo,joshlambert,Ruby,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +kalug/kalug-meetup,kalug,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +perlstalker/hugo-docker,perlstalker,,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,TRUE +gotfix/docker-gitlab,gotfix,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +swathanthram/swathanthram.gitlab.io,swathanthram,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +joustie/joustie.gitlab.io,joustie,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fsci/fsci.org.in,fsci,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +general-purpose-libraries/graph,general-purpose-libraries,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +audron/YaTWi,audron,TypeScript,TRUE,FALSE,FALSE,13,TRUE,TRUE,FALSE,TRUE +mogaiskii/Maclaurin,mogaiskii,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Swizi/swizi-community/swizi-community-plugin,Swizi,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thallian/gog-sync,thallian,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jgsqware/playbook-cli,jgsqware,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +ayufan/code-coverage-test,ayufan,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alelec/python-certifi-win32,alelec,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +general-purpose-libraries/huge-collections,general-purpose-libraries,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +yshui/sdpc,yshui,D,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bigapplepy/bigapplepy.gitlab.io,bigapplepy,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mujeebcpy/mujeebcpy.gitlab.io,mujeebcpy,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Vinnl/wdio-webpack-dev-server-service,Vinnl,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +williamyaoh/nix-config,williamyaoh,EmacsLisp,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Technovasoft/Django-Music,Technovasoft,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Rtzq0/completely-reasonable-job-requirements,Rtzq0,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +named-data/TR-NDN-0021-NFD-dev-guide,named-data,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +formaltech/rtnetlink-hs,formaltech,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foxycode/workshop-gitlab-ci,foxycode,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +hugocf/sandbox,hugocf,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +wisdomwolf/pitftmenu,wisdomwolf,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +AlexR1712/messenger-to-telegram,AlexR1712,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +deeksha25/starter-springboot-pipeline,deeksha25,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +airc-ntu/ayame,airc-ntu,Java,TRUE,FALSE,TRUE,1,FALSE,FALSE,FALSE,FALSE +tramwayjs/tramway-command,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +likeno/soko,likeno,Python,TRUE,FALSE,FALSE,4,FALSE,FALSE,TRUE,FALSE +i-am-root/umami,i-am-root,PHP,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +msifeed/misca,msifeed,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +satskiy.a/WebFax,satskiy.a,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +o.lelenkov/docker-minideb,o.lelenkov,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fnordian/kubernetes-sshfs-provisioner,fnordian,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +o.lelenkov/docker-dlang-dev,o.lelenkov,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +o.lelenkov/docker-dlang-runtime,o.lelenkov,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +b17/agile-payroll,b17,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Lunatix89/GStreamer-Sharp,Lunatix89,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gitlab-cog/swat,gitlab-cog,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rafael.santana/poc-multi-tenant,rafael.santana,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +viluon/Desktox,viluon,Lua,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +lparcq/rsws,lparcq,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alfageme/client-GUI-tests,alfageme,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +niklas-dahl/angular-cli-e2e-test,niklas-dahl,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +acme101/angular-hello-world,acme101,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +PRTG/Device-Templates/Aruba,PRTG,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +barrel-db/e2qc,barrel-db,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wheleph/the-adventures-of-dennis,wheleph,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +DmitryDorofeev/msu-go-bot,DmitryDorofeev,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sangrey/sangrey.gitlab.io,sangrey,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jasonmm/hunt-the-wumpus,jasonmm,Clojure,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +guardianproject/fdroid-repo,guardianproject,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wearetwitter/wearetwitter.global,wearetwitter,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angular-material-dashboard/angular-material-dashboard-account,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-dashboard/angular-material-dashboard-user,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-dashboard/angular-material-dashboard-cms,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +weburger/am-wb/am-wb-common,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +GenaDyomin/Lab2,GenaDyomin,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +trud/CfL-AV1-Presentation,trud,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mariocesar/tesla,mariocesar,CSS,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +michaeltlombardi/needful-docs,michaeltlombardi,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +anagabriel/pumpkin-spice-latte,anagabriel,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +somatorio/somatorio.org,somatorio,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +rmoe/c2log,rmoe,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +weburger/am-wb-seen/am-wb-seen-collection,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dewet/quis-es,dewet,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jum-s/understanding_linked_geodata,jum-s,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +HalfwayDead/rl-deadzone,HalfwayDead,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ssugm/ssugm.gitlab.io,ssugm,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ratmice/gitlab-urweb-pages,ratmice,UrWeb,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mtuchowski/rake-protect,mtuchowski,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +apetitbois/packt-sync,apetitbois,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +CSUI-AdvProg-2017/week-8-template,CSUI-AdvProg-2017,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +upe-consulting/TypedJSON,upe-consulting,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +GitLabRGI/nsg/gpep-mapproxy,GitLabRGI,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cwenck/bittorrent,cwenck,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Shawniac/shawniac.gitlab.io,Shawniac,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gnuwget/wget,gnuwget,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paolofalomo/codexa,paolofalomo,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +GabrielTK/OnlinkCheats,GabrielTK,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wldhx/reactNativeGitlabCIAndroidCDTest,wldhx,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +upe-consulting/npm/decorators,upe-consulting,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +rekahsoft/blog-rekahsoft,rekahsoft,Haskell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Winsonic/CB0P01-S5P6818,Winsonic,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sabap-lig/modixml2csv,sabap-lig,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +v01d-sk/v01d.sk,v01d-sk,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eunleem/gopack,eunleem,Go,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +credizian/untrackme,credizian,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fsmk/embedded-for-her,fsmk,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kb/block,kb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lucassabreu/k8s-pr-envs,lucassabreu,Shell,TRUE,FALSE,FALSE,5,TRUE,FALSE,FALSE,TRUE +devops-df/2017.brasilia.devopsdays.com.br,devops-df,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kb/login,kb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kb/base,kb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kb/mail,kb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lzukowski/acd,lzukowski,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +planet-innovation/gitlab-ci-angular-webapp,planet-innovation,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +gliniak/cossacks3-units-ranking,gliniak,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitmate/open-source/result-bouncer,gitmate,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +angular-material-dashboard/angular-material-dashboard-seo,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/massively-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mardy/photokinesis,mardy,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +MariusLab/Less-Real,MariusLab,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +GolangVE/SitioWeb,GolangVE,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +betse/betsee,betse,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CLARIN-ERIC/docker-alpine-supervisor-base,CLARIN-ERIC,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +barrel-db/lab/instrument,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PascalSmeets/psek-fitnesse-fixtures-demo,PascalSmeets,CSS,TRUE,FALSE,TRUE,2,FALSE,TRUE,FALSE,TRUE +canarduck/disques,canarduck,CSS,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +order-tracking/restaurant_app,order-tracking,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +erisfrison/rtcg,erisfrison,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +frodesigns-group/pwa-skeleton,frodesigns-group,Vue,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +tombousso/gnu-bytecode2,tombousso,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +fluxcess/fluxcess_admin,fluxcess,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +laraveluk/laraveluk.gitlab.io,laraveluk,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +angular-material-home/angular-material-home-user,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +panchoaby/cityos,panchoaby,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tramwayjs/tramway-callback-adapter,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +redpine/api-client,redpine,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +angular-material-dashboard/angular-material-dashboard-collection,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +varikin/romen,varikin,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +kv025java/AuraCore,kv025java,Java,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +gitmate/open-source/coala-incremental-results,gitmate,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +solanpaa/bill2d,solanpaa,C++,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +goern/oe2k,goern,Go,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +amercader/mor,amercader,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +htmleditor/htmleditor.gitlab.io,htmleditor,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +accounts-sso/libauthentication,accounts-sso,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +DMore/behat-chrome-skeleton,DMore,Gherkin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tramwayjs/tramway-router-react-strategy,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gf-bl/python-geolink-formatter,gf-bl,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +6uellerBpanda/omd-mattermost,6uellerBpanda,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cjwebb/myblog,cjwebb,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DanielSiepmann/neotags,DanielSiepmann,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pwmc/gsvg,pwmc,Vala,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +_zngguvnf/org-static-blog-example,_zngguvnf,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BalmungSan/spark-kmeans,BalmungSan,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +LibreGames/libregames.gitlab.io,LibreGames,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +evilj0e1/urban-snake-2k17,evilj0e1,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mzdonline/cmu-cli-tools,mzdonline,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Knackstedt/CarbonShell,Knackstedt,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-cookbooks/gitlab-monitoring,gitlab-cookbooks,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +thelabnyc/wagtail-links,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mdraw/predictingdeeper-seminar,mdraw,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +strburst/strburst.gitlab.io,strburst,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fsfe/ams-docker-compose,fsfe,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ovysotska/online_place_recognition,ovysotska,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bahmutov/cypress-ts-example,bahmutov,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +primedio/delivery-primedjs,primedio,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jonathan-kosgei/gitlab-ci-angular-e2e-unit-test,jonathan-kosgei,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +jamietanna/user-cookbook,jamietanna,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TC01/python-bautils,TC01,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rolodato/rolodato.gitlab.io,rolodato,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +reinholdt/polarizationsolver,reinholdt,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deliverous/blog,deliverous,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +FodyWeaving/Aspects,FodyWeaving,C#,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +jkantarek/kafka_ex_helpers,jkantarek,Elixir,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +float.cf/proxy,float.cf,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ubcbiomod/biomod2017,ubcbiomod,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +weburger/am-wb/am-wb-mailchimp,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +monetha/ico-reputation-analyzer,monetha,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +sowebdev/battleship-game,sowebdev,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fast-science/background-removal-vue,fast-science,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +adamldavis/groocss,adamldavis,Groovy,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +smondet/vecosek,smondet,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cgascoig/netdevops,cgascoig,Python,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +huygens/unifi-docker,huygens,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kirara/reborn-modpack,kirara,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitmate/documentation,gitmate,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kybernetics/hypershot,kybernetics,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +carmenbianca/changelogdir,carmenbianca,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jakubsacha/cli-table,jakubsacha,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ilug-bom/www.ilug-bom.org.in,ilug-bom,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +zach-geek/songbook,zach-geek,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ucgc/discord,ucgc,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +4151/WebExt/ReqBlock,4151,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +picter/frontier,picter,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +alecshaw/alecshaw.gitlab.io,alecshaw,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +recalbox/ops/env2file,recalbox,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +puravida-software/asciidoctor-extensions,puravida-software,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +aiakos/dj12,aiakos,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jjacobson/rancher-cockroachdb,jjacobson,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Milihhard/echec-java,Milihhard,Java,TRUE,FALSE,TRUE,3,FALSE,TRUE,FALSE,FALSE +weburger/am-wb-seen/am-wb-seen-core,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Kwilco/kwil.co,Kwilco,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +whacks/daily-reddit,whacks,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +dlab-indecol/web_trawler,dlab-indecol,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AnjiProject/anji-core,AnjiProject,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +scrolliris/scrolliris-readability-tracker,scrolliris,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +fnordian/swagger-viewer-react,fnordian,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +harbottle/docker-rpm,harbottle,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mextrix/matrix-appservice-signal,mextrix,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +spicydog/example-ci-cd-golang,spicydog,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +hegdevinayi/kelpie,hegdevinayi,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +egolib/ego,egolib,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kpmeen/clammyscan,kpmeen,Scala,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +recalbox/ops/savior,recalbox,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +andreybolonin/clickhouse_crud,andreybolonin,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +winniehell/water-child,winniehell,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +6massote/users-profile-manager,6massote,CSS,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +pubsweet/pubsweet.gitlab.io,pubsweet,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alexey-martynov/cl-json-object,alexey-martynov,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pantacor/pvr,pantacor,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +seifriedc/seifriedc.gitlab.io,seifriedc,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pkinold/lightning-docker-test,pkinold,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sigma-web-app/s-container,sigma-web-app,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +shazbot89/shaunbur.ch,shazbot89,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +VickySteeves/Women-Leaders-Openness,VickySteeves,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Vondracek/TodoApp,Vondracek,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fpirola/scala-js-breakout,fpirola,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +commonshost/website,commonshost,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +unee-t/bugzilla,unee-t,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +weburger/am-wb/am-wb-chart,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +feinfinger/feinfinger.gitlab.io,feinfinger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +precognition-llc/aeonvera,precognition-llc,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +alelec/future_thread,alelec,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +CoreDockWorker/CoreDockWorker.setup.public,CoreDockWorker,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lopin_dockerfiles/lopalpinegit,lopin_dockerfiles,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +angular-material-home/angular-material-home-bank,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +BestPracticesWorkgroup/UsabilityBestPractices,BestPracticesWorkgroup,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cosban/nebula,cosban,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +amenezes/ansible-gitlab-ci-multi-runner,amenezes,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +chusiang/helloworld.ansible.role,chusiang,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thengOS/thengos.gitlab.io,thengOS,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cpfr/CriticalMission.gitlab.io,cpfr,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +demo-clusters/i2p.online,demo-clusters,,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +Zatherz/dcr,Zatherz,Crystal,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +druidgreeneyes/rivet-core.java,druidgreeneyes,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +nazarmx/mega,nazarmx,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/rubocop-gitlab-security,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +karisch/docker/terraform,karisch,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +cosme/ai_driver,cosme,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Rdatatable/data.table,Rdatatable,C,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +Yuri_yy/yuri_gmf,Yuri_yy,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +creosteanu/lambda-data-collection,creosteanu,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hexagon-soft/public/shop-demo,hexagon-soft,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +giorgioazzinnaro/giorgioazzinnaro.gitlab.io,giorgioazzinnaro,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +daily-five/framework,daily-five,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-bezier2,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-data_structure_traits,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-lexer,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joshlambert/demo-be,joshlambert,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,TRUE,FALSE +joshlambert/demo-app,joshlambert,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,TRUE,FALSE +mobilnikkg/android-sdk,mobilnikkg,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +grahamc/mac-nix-multi-user,grahamc,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +anoneko/japari-parkman,anoneko,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +TomasHubelbauer/asp-net-test,TomasHubelbauer,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rawsec/Rawsec-website,rawsec,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +comzeradd/vuejs-spa,comzeradd,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +morganrallen/OSHChip_BLED,morganrallen,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AQuadro/AtacSimulator,AQuadro,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Molcas/doc,Molcas,TeX,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +tobyfoord/rancher-cli,tobyfoord,,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +westerjn/awesomesauce,westerjn,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +hafiyyan94/MyUI,hafiyyan94,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adrian.kozlowski/ircbot,adrian.kozlowski,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +mtchavez/ex_cc_validation,mtchavez,Elixir,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +creare-com/tabsint,creare-com,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sigscale/ocs,sigscale,Erlang,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mmclaughlin/helloworld-cpp,mmclaughlin,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tecnos/material-icons-base64,tecnos,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tifredfr/debserver,tifredfr,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fhuitelec/slides-template,fhuitelec,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nickdonnelly/req,nickdonnelly,Rust,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +deployctl/deployctl,deployctl,C,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +efnet-moto/efnet-moto.gitlab.io,efnet-moto,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LazzyTeam/politsim,LazzyTeam,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nobodyinperson/python3-numericalmodel,nobodyinperson,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +saprykingerman/flutter-docker,saprykingerman,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +terramias/graph-routing,terramias,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pedrohjordao/rust-pbrt,pedrohjordao,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +alelec/gitlab-tags-to-pip-index,alelec,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +joniogerg/RHMarioParty,joniogerg,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +isciences/wsim/wsim,isciences,R,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +robin-good/docker-build-image,robin-good,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kotmonstr/kotmonstr.ru,kotmonstr,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rocket_launcher/jekyll,rocket_launcher,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dasch8/angular-ci,dasch8,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ysb33rOrg/packer-gradle-plugin,ysb33rOrg,Groovy,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +gitlab-cookbooks/gitlab_dns,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +hooksie1/ansible-prometheus,hooksie1,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LTTaylor/bet,LTTaylor,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kornelski/autobatch,kornelski,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cristianvitortrucco/docker-git-nginx,cristianvitortrucco,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +opendevise-projects/opendevise-site-generator-express,opendevise-projects,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +seen/angular/seen-core,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +seen/test/frisby-core,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +flaxandteal/commandment,flaxandteal,Python,TRUE,TRUE,FALSE,4,TRUE,TRUE,TRUE,TRUE +JAMstack/cobalt,JAMstack,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dbnZA/Jita,dbnZA,C#,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +certik/ci-images,certik,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lorepirri/jekyll-theme-simple-blog,lorepirri,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +seen/angular/seen-tenant,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +groovy-lang/101-scripts,groovy-lang,Groovy,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +rogeruiz/thelou,rogeruiz,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thx8411_j2ee/melodyexporter,thx8411_j2ee,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +cyberscape/amptweet/amptweet-web,cyberscape,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/cross-project-java/java-frontend,gitlab-examples,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,TRUE,TRUE +gitlab-examples/cross-project-java/java-lib,gitlab-examples,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,TRUE,TRUE +arthurrump/csharpforfun,arthurrump,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robit.a/spatsoc,robit.a,R,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +vijaiaeroastro/ScrapeForFun,vijaiaeroastro,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xuhdev/optimum-shell,xuhdev,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tmaczukin/hanging-droplets-cleaner,tmaczukin,Go,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +Johnsoct/lemon-kiwis,Johnsoct,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +McNase/MinecraftOfflineUUID,McNase,Ruby,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +thesecretmaster/ChatX,thesecretmaster,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +node-microservice/microservice,node-microservice,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rh-kernel-stqe/python-stqe,rh-kernel-stqe,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paddy-hack/devuan,paddy-hack,Shell,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +kornelski/exclude_from_backups,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SistemasOperativos-Ciencias-UNAM/sistemasoperativos-ciencias-unam.gitlab.io,SistemasOperativos-Ciencias-UNAM,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Banzyme2/django-cloud9-dokcer,Banzyme2,Python,TRUE,TRUE,FALSE,4,TRUE,TRUE,TRUE,TRUE +thislight/web.dart,thislight,Dart,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +antoinentl/readme.book,antoinentl,TeX,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +Marnes/plain-text-linker,Marnes,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +librespacefoundation/satnogs/satnogs-client-ansible,librespacefoundation,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +clavem/clavem.gitlab.io,clavem,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +deployctl/www.deployctl.com,deployctl,HTML,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +jrop-js/gifnoc,jrop-js,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JanGregor/async-processing-slides,JanGregor,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +idearium/eslint-config-idearium,idearium,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mgoral/subconvert,mgoral,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +seen/java/seen-retrofit,seen,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +Jenselme/daiquiri-rollbar,Jenselme,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +zg2pro/cv.gregory.anne,zg2pro,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +chillcoding-at-the-beach/I-love,chillcoding-at-the-beach,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fast_pixelated_detectors/fpd_data_processing,fast_pixelated_detectors,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +modle-share/knights-of-something-notable,modle-share,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +EwneoN/Queste,EwneoN,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gtauzin/metaLBM_private,gtauzin,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kyaniheessels/cashflow,kyaniheessels,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tref/demo-no-ops-lando,tref,PHP,TRUE,FALSE,FALSE,8,FALSE,FALSE,FALSE,FALSE +craigbarnes/craigbarnes.gitlab.io,craigbarnes,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ilya2306/siv-boilerplate,ilya2306,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +cjvnjde/psychopathy-online,cjvnjde,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +redpop/gulp-firestarter,redpop,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +t-munk/gipsy,t-munk,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nicosingh/rpi-openvpn-keygenerator,nicosingh,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +nicosingh/rpi-openvpn-server,nicosingh,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +nicosingh/rpi-fr24feed,nicosingh,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +alxrem/html2tg,alxrem,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +frederikcreemers/frederikcreemers.be,frederikcreemers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +circuit-simulator/documentation,circuit-simulator,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Urosch/knjige,Urosch,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +berublan/vscode-log-viewer,berublan,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cheminfIBB/tfbio,cheminfIBB,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rubemlrm/laravel,rubemlrm,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +brianegan/flutter_redux_dev_tools,brianegan,Dart,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +electronic-gulden-foundation/egulden,electronic-gulden-foundation,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jkarteaga/hugo,jkarteaga,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +monks.de/ember-filter-sort,monks.de,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ercom/rats-pkg,ercom,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +x2v3/CallBlocker,x2v3,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +deployctl/github_go_release2rpm,deployctl,Shell,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +canarduck/systranio,canarduck,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dhanar_santika/lab-01,dhanar_santika,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +zero-gravity/zero-gravity-cms,zero-gravity,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zero-gravity/zero-gravity-cms-bundle,zero-gravity,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +friss-robotics/backend,friss-robotics,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +classiga/classiga,classiga,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +stanleys97/git-introduction-tutorial,stanleys97,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +luqi/PPW-Tutorial,luqi,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +eosio/eos,eosio,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nickdonnelly/horus-server,nickdonnelly,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Didou/poc_ci,Didou,PHP,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +juanfperezperez/ip-and-network-calculator-module,juanfperezperez,PowerShell,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +engell/engell.gitlab.io,engell,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +guildship/guildship,guildship,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +davidhsianturi/laravel-test-deploy,davidhsianturi,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ulm0/graphql-docker-api,ulm0,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +nbs-it/ng-ui-library,nbs-it,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +iron-oxide/cogwheel,iron-oxide,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +myrrlyn/endian_trait,myrrlyn,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lbexresearch/populate,lbexresearch,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ibnufirdaus/Labs,ibnufirdaus,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ercom/android-emulator,ercom,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ciemat-psa/surf-simulator,ciemat-psa,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rafiedharmawan/rafie-Lab,rafiedharmawan,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +IonicZoo/chameleon-mask-directive,IonicZoo,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pdftools/python-ghostscript,pdftools,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ubunturox104/imagenes,ubunturox104,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +arkthusk/Lab_ppw_02,arkthusk,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +smallstack/infrastructure/smallstack-webpage-renderer,smallstack,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +seen/angular/seen-shop,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +seen/angular/seen-assort,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +AlexTEko/monitor.home,AlexTEko,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AlexTEko/pmx-console,AlexTEko,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ralt/isoostrap,ralt,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +noraj/nvd_api,noraj,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kristiantokt/repo-ppw,kristiantokt,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +SvdLeegte/Varifyfirst,SvdLeegte,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Ekt0s/android-boilerplate,Ekt0s,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +PPW-2017/ppw-lab-ki,PPW-2017,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +hop23typhu/baseapp,hop23typhu,JavaScript,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +bmgaynor/react-16-presentation,bmgaynor,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +nathanfaucett/rs-specs_time,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RLesur/bookdown-gitlab-pages,RLesur,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cslucr/ubuntu-ucr,cslucr,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vise890/parseq,vise890,Clojure,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +openvm/console,openvm,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cw-andrews/url_utm_combinator,cw-andrews,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zanny/oidc-reqwest,zanny,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ledangfamily/duyle.gitlab.io,ledangfamily,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jpsamaroo/Tasklets.jl,jpsamaroo,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +datenstrom/home,datenstrom,Nix,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +geoffrey-grebert/sii-spring,geoffrey-grebert,Java,TRUE,FALSE,TRUE,6,TRUE,TRUE,TRUE,FALSE +tomarashish/taxonomyCompare,tomarashish,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alcrsg/blog,alcrsg,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IonicZoo/pigeon-restful-provider,IonicZoo,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +IonicZoo/eagle-map-component,IonicZoo,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +IonicZoo/ioniczoo.gitlab.io,IonicZoo,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +librespacefoundation/satnogs/satnogs-rotator-firmware,librespacefoundation,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cw-andrews/project_template,cw-andrews,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-pkg/gitlab-vault,gitlab-pkg,Makefile,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +rust-algorithms/queues,rust-algorithms,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-com/gl-infra/gitlab-patcher,gitlab-com,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +incaper/sispreco,incaper,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +paololaurenti_cp/paololaurenti_cp.gitlab.io,paololaurenti_cp,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cw-andrews/hug_test,cw-andrews,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +croosen/my-personal-website,croosen,CSS,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +brilliant-data/d3brush-frelard,brilliant-data,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angular-material-dashboard/apps/amd-siteonclouds,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +javatar-2017-2018/manadium-laravel,javatar-2017-2018,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +schedule4j/schedule4j-cron,schedule4j,,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +graphviz/graphviz.gitlab.io,graphviz,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +eigan/mediasort,eigan,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Project-FiFo/FiFo/howl,Project-FiFo,Erlang,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Project-FiFo/FiFo/cerberus,Project-FiFo,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Project-FiFo/DalmatinerDB/dalmatinerpx,Project-FiFo,Erlang,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Project-FiFo/DalmatinerDB/dalmatinerfe,Project-FiFo,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Project-FiFo/DalmatinerDB/bitmap,Project-FiFo,Erlang,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +ismail-s/my-build-your-own-lisp,ismail-s,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bottroper-werkstatt-cvjm/bottroper-werkstatt-cvjm.gitlab.io,bottroper-werkstatt-cvjm,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openvm/openvm,openvm,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +Nicd/mbu,Nicd,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sampadashboard/infocity,sampadashboard,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +asqatasun-websites/www-asqatasun-org,asqatasun-websites,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mmmickmason2/ether-router-master,mmmickmason2,JavaScript,TRUE,FALSE,FALSE,7,TRUE,TRUE,FALSE,TRUE +Conan_Kudo/snapcore-mkrpmtree,Conan_Kudo,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +laai/website,laai,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +willhallonline/demo-project,willhallonline,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +uts-magic-lab/react-ros-boilerplate,uts-magic-lab,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gt8/open-source/elixir/eidetic,gt8,Elixir,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gt8/open-source/elixir/eidetic-eventstore-mongodb,gt8,Elixir,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +tripetto/blocks/boilerplate,tripetto,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +tslocum/medinet,tslocum,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +geoffrey-grebert/pgadmin4-importer,geoffrey-grebert,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +bplatta/proto-api,bplatta,Python,TRUE,TRUE,FALSE,5,TRUE,TRUE,FALSE,FALSE +vise890/zookareg,vise890,Clojure,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +improbible/landing-page,improbible,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Avris/Dotenv,Avris,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lebrad/lebrad.gitlab.io,lebrad,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +training-telkomsigma-201710/catalog,training-telkomsigma-201710,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +RomanowAlex/deploy,RomanowAlex,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +municz/books.rb,municz,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +txl/home,txl,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +txl/resumeold,txl,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eSpace-epfl/rospace/core,eSpace-epfl,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tjvb/testreportmixer,tjvb,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tripetto/demo,tripetto,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +sebuah-grup/PPWDioBrando,sebuah-grup,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +KelompokB10PPW2017/konekin,KelompokB10PPW2017,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mrifqifathurrahman/tugas1kelompokppw,mrifqifathurrahman,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +noraj/ruby-cheatsheet,noraj,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PRTG/Device-Templates/Checkpoint,PRTG,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dhanar_santika/Tugas-1-PPW-C-14,dhanar_santika,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +serpro/gamification-dashboard,serpro,CSS,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nexthub-br/nexthub.com.br,nexthub-br,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nav/the-snake-pipeline,nav,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jimsy/ip,jimsy,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Calinou/godot-builds,Calinou,Batchfile,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +mxklb/cuteproject,mxklb,Shell,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +arthurzinck/site-cv17,arthurzinck,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dosshell/tinycsockets,dosshell,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tollyx/tollyx.gitlab.io,tollyx,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tenzing/shared-array,tenzing,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +griest/pokeplayer,griest,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tripetto/examples/react,tripetto,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/ci-prometheus-configuration,gitlab-com,,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +judahnator/isjudahonfire,judahnator,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chvanikoff/mnesia-demo,chvanikoff,Elixir,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +novy4/telegram-bot,novy4,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +PushTheLimits/Sourcemod/RoundEndEnforcer,PushTheLimits,SourcePawn,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +reading-room/www,reading-room,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +BuildStream/bst-external,BuildStream,Python,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +zyrthofar/immutable,zyrthofar,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libertarian-party/party_website,libertarian-party,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +guiriduro/pyra,guiriduro,Python,TRUE,TRUE,FALSE,8,TRUE,TRUE,FALSE,TRUE +ibcomputing/ibcomputing.gitlab.io,ibcomputing,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +toni.martincic/Eureka,toni.martincic,JavaScript,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +evman/environment,evman,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +freedesktop-sdk/json2bst,freedesktop-sdk,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +uit-sfb/jobmanager,uit-sfb,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +nathanfaucett/rs-specs_guided_join,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +waterkip/webservice-overheidio,waterkip,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-specs_sprite,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +isf-traffic/isf-traffic.gitlab.io,isf-traffic,HTML,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +VV5/climate-change,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TortueMat/simple_lib,TortueMat,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +zyrthofar/api_errors,zyrthofar,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aleks001/haproxy18-centos,aleks001,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openchess/openchessdb,openchess,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +freshcode-public/i-video-editor,freshcode-public,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +eyeo/websites/help.eyeo.com,eyeo,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Dragas/Khan-4,Dragas,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +flat-galaxy/flattrack,flat-galaxy,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sumner/offlinemsmtp,sumner,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +lisp-journey/lisp-journey.gitlab.io,lisp-journey,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-escuela-it/pruebas-clase-2,gitlab-escuela-it,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +energyincities/python-ehub,energyincities,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +doerfli/wo-ist,doerfli,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +harbottle/omnibus-bolt,harbottle,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +Samantha.ai/Samantha.jl,Samantha.ai,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cyphercodes/GitlabApp,cyphercodes,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rafaelff/scripts,rafaelff,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ilovedevops/my-project-1,ilovedevops,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +KimSumac/BlogKim,KimSumac,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +marius-rizac/docker-manager,marius-rizac,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +00dani/lemoncurry,00dani,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ndevox/nick.sarbicki.com,ndevox,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +cfmm/dcmproxy,cfmm,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nathanfaucett/rs-rand_num_gen,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pantacor/docs,pantacor,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +rogerclotet/amicinvisible-server,rogerclotet,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ikruchkov0/med-reg,ikruchkov0,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +seftp/SeFTP,seftp,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +CLARIN-ERIC/docker-solr,CLARIN-ERIC,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +pipeline-patterns/django-cloudfoundry,pipeline-patterns,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +do-lagos-meetup/ansible-demo,do-lagos-meetup,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +do-lagos-meetup/terraform-demo,do-lagos-meetup,HCL,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +goern/bn-bruecken,goern,JavaScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,TRUE +atsaloli/cicd,atsaloli,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +petervaro/pcd,petervaro,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +6uellerBpanda/check_pve,6uellerBpanda,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +w4tweaks/wiki,w4tweaks,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +starshell/question,starshell,Rust,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gt8/open-source/elixir/bungee,gt8,Elixir,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +i-tre-brutti/beholder,i-tre-brutti,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lievendoclo/project-kali-server,lievendoclo,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +bennyp/math-canvas,bennyp,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +PhysikP-Seminar/CNC,PhysikP-Seminar,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +waylon531/wayless,waylon531,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +yorickpeterse/yorickpeterse.com,yorickpeterse,CSS,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,TRUE +canarduck/flumel,canarduck,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +shadowburn/shadowburn,shadowburn,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kimlab/jobsubmitter,kimlab,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +avernois/nossl.eu,avernois,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mark.underseth/sandbox,mark.underseth,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +moueza/autowired,moueza,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +van-mronov/bobbin,van-mronov,Elixir,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kornelski/openmp-rs,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelamer/taisun-gateway,thelamer,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zinaliev/testbed,zinaliev,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +CLARIN-ERIC/docker-alpine-supervisor-java-tomcat-base,CLARIN-ERIC,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +quantr/toolchain/Assembler,quantr,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +pwmc/gsvgtk,pwmc,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +RyDroid/proxy-php,RyDroid,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +thelamer/taisun-dyndns,thelamer,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +casette/sauna-project,casette,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +offa/ci-playground,offa,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +offa/docker-images,offa,Shell,TRUE,FALSE,FALSE,6,FALSE,TRUE,FALSE,TRUE +cha-node/ng,cha-node,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +cha-node/ng-testplat,cha-node,Shell,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +althonos/compiler,althonos,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +yethiel/RVDocs,yethiel,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +optimisedlabs/slackhook,optimisedlabs,Swift,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +petervaro/fixer,petervaro,D,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +commonshost/cache-digest-koel,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xylok/networkparse,xylok,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +MasterProject/MasterProject,MasterProject,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +fruits.confits/qt-builder,fruits.confits,QMake,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +jorge.suit/user-auth-jsonrpc,jorge.suit,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +offa/plug,offa,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +terrasubmersa/terra-submersa-portal,terrasubmersa,Scala,TRUE,FALSE,FALSE,9,TRUE,FALSE,FALSE,FALSE +binero/mpw-gtk,binero,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gis23/search_engine,gis23,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +NAdamo/metujump01-blog,NAdamo,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +islands-wars/guidelines,islands-wars,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pidila/checklist-pidila,pidila,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +colic.christian/bfh-telematik-c,colic.christian,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +adbci/marketPlace,adbci,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +chrispappas/laravel-ci-cd-demos,chrispappas,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stephane.arrami/flexbox,stephane.arrami,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +signal9/chrome_remote,signal9,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +toon/lisa,toon,Go,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +loppear/social-coop-policies,loppear,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jgarr/k8os,jgarr,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nolith/codeclimate-gocyclo,nolith,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +nilenso/relay-ops,nilenso,HTML,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +dartika/laravel-gitlab-envoy-deploy,dartika,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sam-uq/luqness,sam-uq,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +sam-uq/sphinx,sam-uq,C++,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +nathannAttendPas/dysapps,nathannAttendPas,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +lambdait/mai-schedule-vk,lambdait,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Toby56/Calcifer-Old,Toby56,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +deepin-espanol/deepin-espanol.gitlab.io,deepin-espanol,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +debops/debops,debops,Shell,TRUE,FALSE,FALSE,8,FALSE,TRUE,FALSE,FALSE +ckhurewa/pyroot-zen,ckhurewa,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dziki/lb-service-haproxy,dziki,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ExtropicStudios/trilithon,ExtropicStudios,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +diegomartincorrea/diegomartincorrea.gitlab.io,diegomartincorrea,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vladgo/build-nginx,vladgo,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +shivrajbisht/gitlab-test,shivrajbisht,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nilenso/relay-chat.com,nilenso,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +n11t/tombola,n11t,PHP,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +dirn/flake8-confusables,dirn,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LineageOS/infra/builds-ui,LineageOS,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mixingrid/grid,mixingrid,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thatscloud/pubj,thatscloud,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +CycleOfTheAbsurd/inf3135-aut2017-tp3,CycleOfTheAbsurd,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +victorm95/express-todo,victorm95,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ilpianista/arch-audit,ilpianista,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stefanotorresi/php-hello,stefanotorresi,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +open-source-devex/toolbox,open-source-devex,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +HearthProject/Hearth,HearthProject,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +xapix/clj-soap,xapix,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eclufsc/eda/ophidian_project_template,eclufsc,CMake,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +icecream95/mastodon-fortune-bot,icecream95,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wolphin/prometheus-export,wolphin,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +VictLecl/2Movies1Actor_android,VictLecl,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nkls/memoize-last,nkls,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +wolphin/wolphin.fluentd,wolphin,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/wolphin.telegraf,wolphin,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/eventpile,wolphin,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/wolphin.parallel,wolphin,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/wolphin.cli,wolphin,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/wolphin.etl,wolphin,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wolphin/wolphin.admin,wolphin,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ercom/docker,ercom,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +i-tre-brutti/terraformer,i-tre-brutti,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +beardedio/terraria,beardedio,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +epicdocker/bloonix_server,epicdocker,Smarty,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +Callahan93/headless,Callahan93,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +i-tre-brutti/common,i-tre-brutti,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +rilis/rilis,rilis,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alphaDev/libTimeSeries,alphaDev,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +web3-sh/web3,web3-sh,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +open-source-devex/containers/build-packer,open-source-devex,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +opentransitmap/public-transport-enabler,opentransitmap,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +barrel-db/memstore,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +KelompokB10PPW2017/konekin-enterprise,KelompokB10PPW2017,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +C0DK/refcoin,C0DK,Python,TRUE,TRUE,FALSE,2,FALSE,FALSE,FALSE,FALSE +pcuisinaud/auth-service,pcuisinaud,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +covcom/continuous-integration-example,covcom,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +seen/angular/seen-elearn,seen,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +datadrivendiscovery/tests-data,datadrivendiscovery,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jredmond/ld40,jredmond,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +metapensiero/metapensiero.sqlalchemy.asyncpg,metapensiero,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Pyrex-FWI/DeejayPoolBundle,Pyrex-FWI,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Pyrex-FWI/sapar-id3,Pyrex-FWI,PHP,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +wolphin/wolphin.win,wolphin,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +role_unit/role_unit,role_unit,Shell,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +Elypia/Alexis,Elypia,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Elypia/Elypiai,Elypia,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +sebuah-grup/PPWKirito,sebuah-grup,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tranquera/croissant-app,tranquera,Elm,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +showcheap/adonis-demo,showcheap,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-polygon2,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xiangpeng.wu/ThirdProject,xiangpeng.wu,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +venkateshd/blog,venkateshd,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +encircle360/iri,encircle360,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +MengZn/gitlab-ci-ansible,MengZn,HTML,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +dsncode/FileManager,dsncode,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +tuxaua/kafka-connect-ftp,tuxaua,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xygeng/jaguar,xygeng,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +tacoprophet/slf4j-esapi,tacoprophet,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +the-casual-trade-and-fun-server/server-manager,the-casual-trade-and-fun-server,F#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +eQuation/jekyll-website,eQuation,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +archbuild/packages/firefox-nightly,archbuild,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +VV5/vietnam-war,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +open-source-devex/terraform-modules/aws/ecs-cluster,open-source-devex,HCL,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +VV5/world-war-two,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alibitek-flutter/flutter-docker-images,alibitek-flutter,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tjvb/laravel-mail-catchall,tjvb,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +marcheing/spn,marcheing,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sanpi/effitask,sanpi,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Sylhare/integration-tests,Sylhare,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gt8/open-source/elixir/eidetic-plug,gt8,Elixir,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +uniqx/provi,uniqx,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jbarascut/blog,jbarascut,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adamzelycz/cms42,adamzelycz,CSS,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +dietsoda/yail,dietsoda,Java,TRUE,FALSE,TRUE,1,FALSE,FALSE,TRUE,FALSE +slon/shad-ts,slon,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mattbell87/spin-the-wheel,mattbell87,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +FlorestanII/MathLibrary,FlorestanII,Java,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +jsonsonson/wily-cli,jsonsonson,JavaScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +Arasto/gitlabinlemningenenn,Arasto,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +Svensson92/RobinSvensson,Svensson92,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +gitlab-pkg/gitlab-gitaly,gitlab-pkg,Makefile,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +xapix/cnvrt,xapix,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +taichunmin/progit2-zh-tw,taichunmin,CSS,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +moorepants/skijumpdesign,moorepants,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +quentin.rillet/cv,quentin.rillet,VisualBasic,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +thomasscottterry121/Compiler,thomasscottterry121,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vilmosnagy/restdea,vilmosnagy,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jordankueh/slackr,jordankueh,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Ritubh/kubernetes,Ritubh,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bdjnk/js-aoc,bdjnk,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +IAI-GL3-17-18/TP-SIG-GROUPE-2,IAI-GL3-17-18,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Indexyz/docker-torrent-alpine,Indexyz,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +infomasternotes/PSS,infomasternotes,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +learnercfd/metaLBM,learnercfd,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +qui-a-mange-le-graphiste/qui-a-mange-le-graphiste.gitlab.io,qui-a-mange-le-graphiste,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +VV5/magazine-editor,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +laszlobarabas/nodejs-ci-demo,laszlobarabas,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +fluorine/compositor,fluorine,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bfcarpio/Student-Money-guide,bfcarpio,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +atuncatunc/hanim-ne-alayim,atuncatunc,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +camelot/kickc,camelot,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +rtxrulez/demo,rtxrulez,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +disastor/AstorlandHTML,disastor,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +robotmachine/QuickLedger,robotmachine,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +attila.farago.hu/EV3TreeVisASPApp,attila.farago.hu,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ColinDuquesnoy/Absolute,ColinDuquesnoy,QML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +legoktm/semver-checker,legoktm,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +smallworldnews/social-first-news-strategy,smallworldnews,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +ViDA-NYU/d3m/ta2ta3-stubs,ViDA-NYU,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zer0load/zer0load.gitlab.io,zer0load,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +peradnya/balinese-date-java-lib,peradnya,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lybt/lybt,lybt,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +VV5/symbolism,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Finwood/rt2,Finwood,TeX,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +floscher/gradle-josm-plugin,floscher,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Kami-Kami/discord.js,Kami-Kami,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Avris/Localisator,Avris,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SoroushSharing/soroushsharing.gitlab.io,SoroushSharing,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +prettycoldramen/gradle-maven-comparison,prettycoldramen,Java,TRUE,FALSE,TRUE,4,TRUE,TRUE,FALSE,FALSE +rilis/rili/promise,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +rilis/rili/pattern,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +rilis/rili/test,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +rilis/rili/compatibility,rilis,CMake,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +rilis/rili/service/time,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +rilis/rili/service/compute,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +cmontella/hivemind,cmontella,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +islands-wars/hub,islands-wars,Java,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +satelligence/classifier,satelligence,Python,TRUE,TRUE,FALSE,3,TRUE,FALSE,FALSE,TRUE +rilis/rili/rili,rilis,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +tobiaskoch/gitlab-ci-example-mono,tobiaskoch,C#,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +VV5/wttj,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/vatv,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sane-project/website,sane-project,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +FiveScoreStudios/Website,FiveScoreStudios,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +madcapjake/buncbone,madcapjake,CoffeeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +baldwinchang/baldwinchang,baldwinchang,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jeeon/docker/docker-node-ionic-android,jeeon,,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +angular-material-home/angular-material-home-supertenant,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +FlorestanII/LanguageManager,FlorestanII,Java,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +thelamer/taisun-vdi,thelamer,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +thelamer/taisun-dev,thelamer,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bauen1/myunix,bauen1,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +skofgar/jomis-neuralnetwork,skofgar,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eighthave/ci-image-git-buildpackage,eighthave,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +mayermic/smartvineyards-dhms,mayermic,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +akash_rawal/dispatch_ng,akash_rawal,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +protechig/protech-2018,protechig,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +AOBlockchain/docs.aoblockchain.io,AOBlockchain,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kubiq/eveblues,kubiq,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mwetoolkit/mwetoolkit3,mwetoolkit,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kodeking/hypnodrama,kodeking,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +handycodejob/MyStreamerCoinWallet,handycodejob,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kaine119/sccl-dictionary,kaine119,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +Fus10n/Fusion,Fus10n,TypeScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +jannik.keye/trump-or-orange-api,jannik.keye,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +arcfire/rlite,arcfire,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +TMW2/clientdata,TMW2,HTML,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +kachaloali/automate-cellulaire,kachaloali,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-home/angular-material-home-spa,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-home/angular-material-home-help,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kai.richard.koenig/easytainer-cli,kai.richard.koenig,Python,TRUE,TRUE,FALSE,5,FALSE,TRUE,TRUE,FALSE +angular-material-home/angular-material-home-theme,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DBMGE/Maps,DBMGE,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +angular-material-home/angular-material-home-language,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +samuel-garratt/soaspec,samuel-garratt,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +offa/docker-images-ci,offa,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sims1253/ml-voodoo,sims1253,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +islands-wars/research/graylog,islands-wars,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gableroux/gitlab-ci-example-docker,gableroux,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +VV5/pineville,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +circle-eh/docker/docker-pocketmine,circle-eh,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dougalg/vue-in-out,dougalg,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +uni10/uni10.gitlab.io,uni10,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +serial-lab/quartet_epcis,serial-lab,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +oskopek/irsee.net,oskopek,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +elmacko-open-source/node-cryptography,elmacko-open-source,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +piratsky-institut/institut,piratsky-institut,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +LibrifyJS/LibrifyJS,LibrifyJS,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +maxmckenzie/berepublic-infustructure-specification,maxmckenzie,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +ntnsndr/questions,ntnsndr,TeX,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +islands-wars/countdown,islands-wars,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vinopravin/findmehere,vinopravin,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +islands-wars/assets,islands-wars,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rommon/docker,rommon,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +bskrtich/dotfiles,bskrtich,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eighthave/rfp-test,eighthave,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dmitriy.gnedoy/music-app-server,dmitriy.gnedoy,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +snehaldangroshiya/treemd,snehaldangroshiya,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +axual-training/alertevent-generator,axual-training,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,TRUE +antoni.kozielewski/trailPathPlaner,antoni.kozielewski,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-pages-demo2/jekyll,gitlab-pages-demo2,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-cookbooks/gitlab-exporters,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +glancr/mirros_api,glancr,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +glancr/mirros_display,glancr,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +glancr/mirros_settings,glancr,Vue,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +MoritzBru/cartography-playground,MoritzBru,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +isciences/wsim/wsim_geoserver,isciences,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,TRUE +csc-492-denim/machine-assisted-data-mining,csc-492-denim,Go,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +gt8/open-source/elixir/eidetic-projector-elasticsearch,gt8,Elixir,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Valtech-Amsterdam/PowerShell/WakeUpAzureWebApp,Valtech-Amsterdam,PowerShell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +PushTheLimits/Sourcemod/MagicDice,PushTheLimits,SourcePawn,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +jryannel/qauto-admin,jryannel,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chezgi/jekyll,chezgi,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ramiel/caravaggio,ramiel,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rilis/rili/service/socket,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +AperiKube/aperisite,AperiKube,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +niklasnisbeth/mpc-internals,niklasnisbeth,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlabci-demo/angular-demo,gitlabci-demo,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +nathanfaucett/rs-virtual_view,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rhendric/tap-appveyor,rhendric,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gherman/No.Comparers,gherman,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +pcarbo/wflow-divvy,pcarbo,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +VV5/verbal-irony,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +saraedum/apps-android-wikivoyage,saraedum,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +CerealBusTechBlog/cerealbustechblog.gitlab.io,CerealBusTechBlog,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pablodiehl/color-poker,pablodiehl,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kolorahl/amplitude,kolorahl,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rilis/rili/xml,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +ttpcodes/mb2thw,ttpcodes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jbweston/gitlab-ci-tools,jbweston,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cathaldallan/saltypie,cathaldallan,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ownnotif/ownnotif-server-api,ownnotif,Batchfile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +djm.im/jLocalCoin,djm.im,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +daily-five/plates-components,daily-five,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +consumer-driven-contract-helm-deployment/catalog-service,consumer-driven-contract-helm-deployment,Ruby,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +Bitergia/devops/indexwarrior,Bitergia,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/tone-learning,VV5,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sorenmat/certgen,sorenmat,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Snipey/SmelteryCMS,Snipey,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +remram44/vigilant-steel,remram44,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gecko.io/geckoEMF,gecko.io,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +baldurmen/puppet-xerox,baldurmen,Puppet,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +baldurmen/puppet-plymouth,baldurmen,Puppet,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kjk.designs/fa2018,kjk.designs,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cathaldallan/codebox,cathaldallan,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +unlessgames/algwalk,unlessgames,CoffeeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +janmasrovira/phileas,janmasrovira,Haskell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +craigbarnes/lua-sass,craigbarnes,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +correaa/boost-multi,correaa,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sasol/gitlab-ci-git-tools,sasol,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ostrokach-forge/cgal,ostrokach-forge,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +npolar/sphinx-docs-template,npolar,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nerzhul/ncsmsgo,nerzhul,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +azahrandani/My_First_Git_Repo,azahrandani,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eeronen/reseptisovellus,eeronen,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gnss-sdr/gnss-sdr,gnss-sdr,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +quesog/aos-lecturenotes,quesog,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +asludds/flaskserver,asludds,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Aeizzz/blog,Aeizzz,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nobodyinperson/make-utils,nobodyinperson,Makefile,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +TalesofNewerth/ToN-Website,TalesofNewerth,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mvochoa/hackerrank,mvochoa,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +omicronns.main/cpp-project-template,omicronns.main,CMake,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gecko.io/geckoMongoEMF,gecko.io,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ilias.redissi/emojis-for-slack,ilias.redissi,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +willmitchell/secret_runner_aws,willmitchell,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +rilis/rili/service/console,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Erk/rsget,Erk,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sik-tests/sik-rest-api-dice,sik-tests,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +maxwellbridges/styleguide,maxwellbridges,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Silvers_Gw2/Market_Data_Processer,Silvers_Gw2,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +fschuetz04/calendar,fschuetz04,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +nanocurrency/raiblocks,nanocurrency,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Baasie/continuous-delivery-faas,Baasie,TypeScript,TRUE,FALSE,FALSE,5,TRUE,FALSE,FALSE,TRUE +PPL2018csui/Kelas-C/PPL2018-C3,PPL2018csui,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +PPL2018csui/Kelas-D/PPL2018-D4,PPL2018csui,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +PPL2018csui/Kelas-D/PPL2018-D6,PPL2018csui,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +amagpiesnest/amagpiesnest.gitlab.io,amagpiesnest,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +canarduck/pays,canarduck,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +CyanogenMod13/Kernel,CyanogenMod13,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ichlaffterlalu/advprog-lab,ichlaffterlalu,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +StellarStorm/DVH_Helper,StellarStorm,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +serial-lab/quartet_capture,serial-lab,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +allotrope-open-source/shape-editor,allotrope-open-source,Xtend,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +allotrope-open-source/adf-validator,allotrope-open-source,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +Pasu/Advance-Programing,Pasu,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alvinraih/advprog-tutorial,alvinraih,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iota-foundation/doc/documentation,iota-foundation,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +argaghulamahmad/advprog-tutorial,argaghulamahmad,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rilis/rili/stream,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Simpom/tare,Simpom,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jnmoal-docker/debian-ansible,jnmoal-docker,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +r0x.fr/docs,r0x.fr,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tobias47n9e/wkdr,tobias47n9e,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nathanfaucett/rs-virtual_view_dom,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dshevchenkoo/color-runner,dshevchenkoo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pothitos/hands-on-exercise,pothitos,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dziki/rancher-nginx-ssl-proxy,dziki,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zauster/blog,zauster,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Keo1711/ChatMode,Keo1711,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +Calinou/minetest-builds,Calinou,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +metinerk/asdf,metinerk,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +breithbarbot/cropper,breithbarbot,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pietrom_cp/spring-class,pietrom_cp,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Nkzn/ReVIEW-Template,Nkzn,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SiLA2/sila_csharp,SiLA2,C#,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +transact/node-transact,transact,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +ysb33rOrg/gradleTest,ysb33rOrg,Groovy,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +dirn/stonestyle,dirn,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +axk4545/axk4545.gitlab.io,axk4545,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fresheyeball/control-iso,fresheyeball,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +luichan/official-wireshark,luichan,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +SandraKriemann/Microservice-Picking-Usecase,SandraKriemann,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +runStudies/runStudies,runStudies,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nyxcharon/PassVault,nyxcharon,CSS,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ttpcodes/debate.js-readers,ttpcodes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LeBronse/taskers,LeBronse,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/palmistry,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DBotThePony/DLib,DBotThePony,Lua,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +DBotThePony/PPM,DBotThePony,MoonScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +libmicrohttpd/libmicrohttpd,libmicrohttpd,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +STRL/STEMsalabim,STRL,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +peradnya/balinese-date-js-lib,peradnya,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tonychang/csp-tws-roads,tonychang,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DamienCassou/emacs-ci-docker,DamienCassou,Shell,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +Iranium/Iranium,Iranium,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nickvde/Practice_enterprise,nickvde,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +joewreschnig/emacs-cask-docker-image,joewreschnig,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +isaagar/isaagar.gitlab.io,isaagar,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sndevs/hub,sndevs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Dreae/kvasir,Dreae,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dirn/doozerify,dirn,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +antora/docker-antora,antora,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Calinou/hugo.pro,Calinou,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +catalyst-it/catascope,catalyst-it,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +gitlab-org/security-products/zaproxy,gitlab-org,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +demipel8/bodorrio,demipel8,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +badsectorlabs/blog,badsectorlabs,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +franicflowsarl/docker-scripts,franicflowsarl,,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +omawhite/react-pspfrontend,omawhite,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +obob/pymatreader,obob,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +commonshost/manifest,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CaflischLab/SEED,CaflischLab,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tobias47n9e/wikibase_rs_rocket_example,tobias47n9e,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MendesKing/plain-html,MendesKing,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +zauster/riot,zauster,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +greenfox/upvotes,greenfox,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +dhimmel/pmc-citation-styles,dhimmel,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oddnetworks/oddworks/core,oddnetworks,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nikigan/AwesomeStrings,nikigan,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dynastini1337/youcoub,dynastini1337,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Alisummer/LyricsJaeger,Alisummer,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +rlbekkema/mariobot-ts,rlbekkema,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +williamchia/git-merge-2018,williamchia,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +PrajjwalDimri/prajjwaldimri.gitlab.io,PrajjwalDimri,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angular-material-home/angular-material-home-shop,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +RizkiMufrizal/Heroku-Container,RizkiMufrizal,Kotlin,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +infomasternotes/BIO,infomasternotes,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +infomasternotes/SDP,infomasternotes,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AmigaSourcePres/amigasourcepres.gitlab.io,AmigaSourcePres,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ffrraannkk/reactapella,ffrraannkk,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +yurifbeck/engcivil,yurifbeck,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +morenstrat/drupal-runner,morenstrat,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +b.urrito/b.ackend,b.urrito,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +rilis/rili/color,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +abrahamwill/Assignment-DDP2,abrahamwill,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sigscale/m3ua,sigscale,Erlang,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +cirruscreative/cirruscreative,cirruscreative,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +whatthedev/polybius-engine,whatthedev,Objective-C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +maximedenes/coq,maximedenes,OCaml,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +godq/lianjia,godq,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +auto-breakfast/eggs,auto-breakfast,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HokieGeek/nexus-lifecycle-gitlab,HokieGeek,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +cmontella/hivemindwebsite,cmontella,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mech-lang/website,mech-lang,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gpsd/gpsd,gpsd,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jbake-org/jbake,jbake-org,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +flisolfsa/flisolfsa.gitlab.io,flisolfsa,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aby.bayu003/myproject,aby.bayu003,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +upe-consulting/npm/ngx/forms,upe-consulting,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +mblowfish/mblowfish-core,mblowfish,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +HeinousTugboat/travgen,HeinousTugboat,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mihbor/sila-hackathon,mihbor,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kable.tv/docker-satis,kable.tv,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +thejacer87/scoregoals,thejacer87,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lokat/HiLive2,lokat,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/gl-infra/butterbot,gitlab-com,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +taichunmin/mp-minioasis-docker,taichunmin,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +damoebius/codeofwar,damoebius,Haxe,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +SimplePLC/documentation,SimplePLC,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +florian.sureau/babyfoot,florian.sureau,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jsivori/CurriculumVitae,jsivori,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +leipert-projects/is-gitlab-pretty-yet,leipert-projects,Vue,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +pablouhc/forgemods/cablo,pablouhc,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +SilentTeaCup/congo,SilentTeaCup,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bmallred/namecloud,bmallred,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +StaubSauger/StaubSaugerWeb,StaubSauger,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +InstaffoOpenSource/JavaScript/eslint-config-instaffo,InstaffoOpenSource,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +costrouc/dftfit,costrouc,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +cn-ds/ionic-app,cn-ds,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +robfaber/microservices,robfaber,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +datadrivendiscovery/sklearn-wrap,datadrivendiscovery,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tomschr/docbook-kurs,tomschr,XSLT,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +slime-man/HouseEmoji,slime-man,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +costrouc/lammps-cython,costrouc,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +mgerhardy/docker-debian-slim-file,mgerhardy,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +oer/oer-on-oer-infrastructure,oer,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eyeo/adblockplus/abpui/adblockplusui,eyeo,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +juergen.kosel.jk/wireshark,juergen.kosel.jk,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +arpecop/iztegli,arpecop,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fgiraldeau/unnom,fgiraldeau,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rstacruz/devhints-engine,rstacruz,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +binarioetico/flask-ci-demo,binarioetico,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +francoisb/scoutinv,francoisb,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ramseymcgrath/MEMESERVICES,ramseymcgrath,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +lae/java-stack-source,lae,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +emelle/editor,emelle,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mtnygard/m2m.munchen,mtnygard,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +gdevops/tuto_ansible,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +yaffy/bkey.tech,yaffy,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gdevops/tuto_documentation,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gdevops/tuto_databases,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gdevops/tuto_git,gdevops,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gdevops/tuto_devops,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ecruzolivera/eHSM,ecruzolivera,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dzamlo/gitlab-ci-rust-test,dzamlo,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +ralsina/boxes-book,ralsina,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +johnjawed/ror,johnjawed,Ruby,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +VV5/freevonation,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SumNeuron/multitags,SumNeuron,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aos2/aos2.gitlab.io,aos2,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +webprogrammingUniTN/webproject,webprogrammingUniTN,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +LukeHowellDev/docker-http-redirects,LukeHowellDev,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +nickdonnelly/from_int,nickdonnelly,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +BryanQuigley/ScoutPlane,BryanQuigley,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tclavier/jersey-skeleton,tclavier,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +noyez_examples/diesel_rs_example_1,noyez_examples,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mech-lang/notebook,mech-lang,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gdevops/tuto_ides,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Redsamuri/samuri,Redsamuri,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JFT/BT-Deps,JFT,CMake,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +rhbayuprabowo/rhbayuprabowo.gitlab.io,rhbayuprabowo,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eic/ejana,eic,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +serpro/fatiador,serpro,Java,TRUE,FALSE,TRUE,3,FALSE,TRUE,FALSE,TRUE +flirt/flirt.gitlab.io,flirt,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mrvik/listas,mrvik,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gdevops/tuto_kubernetes,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +doerfli/reeper,doerfli,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +spare-time-demos/intime2,spare-time-demos,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +to1ne/use-package-hydra,to1ne,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +to1ne/gross.css,to1ne,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ricmaco/ricmaco.gitlab.io,ricmaco,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +VictorLamoine/arduino_stm32_ci_test,VictorLamoine,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +triplewhy/RRCS,triplewhy,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +thiagodebastos_study/eng101x-eportfolio,thiagodebastos_study,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lxkl/lec-basic-math,lxkl,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +louisq/substance,louisq,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +regen-network/regen-ledger,regen-network,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +simbas/portal,simbas,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +LolloneS/Tesi-Triennale,LolloneS,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bonobows/placebo,bonobows,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +teonite/inspectr-dashboard,teonite,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +integer32llc/rustbeltrust2018,integer32llc,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +davidbittner/raur,davidbittner,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +maetshju/LexicalCharacteristics.jl,maetshju,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-pages-proto,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +singulared/blog,singulared,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +KDemeul/nebula,KDemeul,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +DylanGriffith/dylans-home,DylanGriffith,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +micro5k/microg-unofficial-installer,micro5k,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +micro5k/google-sync-addon,micro5k,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +leipert-projects/gitlab-history,leipert-projects,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-org/security-products/release,gitlab-org,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +painlessMesh/ESPUnify,painlessMesh,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ckhurewa/qhist,ckhurewa,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +aguslr/aguslr.gitlab.io,aguslr,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +MadLittleMods/gitlab-ci-access-main-container-from-service-container,MadLittleMods,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +smc/mlmorph,smc,Lex,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gdevops/config,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nickdonnelly/yogi,nickdonnelly,Crystal,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +float.cf/landing,float.cf,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Silvers_Gw2/Stats_Frontend,Silvers_Gw2,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Beksultan/StarWars,Beksultan,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +caedes/workspace,caedes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +marbu/pylatest-copr,marbu,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cynovg/WG-API,cynovg,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cloudamatic/mu_demo_platform,cloudamatic,Ruby,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +monoc44/ns-beans,monoc44,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +falloonalan/MarsRoverProblem,falloonalan,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dagerikhl/watcher-in-the-cloud,dagerikhl,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nuest/rticle-copernicus-demo,nuest,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +LuckyStandard/LuckySTD,LuckyStandard,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +c3d/make-it-quick,c3d,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jesusalva/sistema-contabil-basico,jesusalva,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RepositorioDeCultura/Tier1,RepositorioDeCultura,QML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +denkmal/denkmal-website-admin,denkmal,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +denkmal/denkmal-api,denkmal,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +zeesy/dEARdiary,zeesy,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +waylon531/lando,waylon531,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +frnck/kotlin-gradle-eclipse,frnck,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mickaelw/henri_potier,mickaelw,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ketiko/art,ketiko,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dmitrz/dmitrz.gitlab.io,dmitrz,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Kissaki/docker-hugo,Kissaki,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nathanfaucett/rs-gmath,nathanfaucett,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wpdesk/wp-basic-requirements,wpdesk,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +fkrull/deploy-ostree,fkrull,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +Elypia/Commandler,Elypia,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +costrouc/chrisostrouchov.com-polymer-static,costrouc,HTML,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +MakerTim/FunctionalMaker,MakerTim,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Cacophony/AWS-CLI,Cacophony,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ericapisani/guelph-conf-2018,ericapisani,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +anton.koro/testing-html-artifacts,anton.koro,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +gitlab-examples/security/security-reports,gitlab-examples,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +disastor/gitlab-cucumber-selenium-ci-test-setup,disastor,Gherkin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Cacophony/dhelpers,Cacophony,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +warpcom/warpdev-docs,warpcom,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Titan-C/org-cv,Titan-C,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HorseGO/doa-doa-android,HorseGO,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gitlab-org/security-products/analyzers/common,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Cacophony/Processor,Cacophony,Go,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +jiangzhiping/EnhancedConsoleText,jiangzhiping,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +canderegg/bantam-js,canderegg,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +socrates-conference/socrates-admin-client,socrates-conference,JavaScript,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +nandawtek/book-sense,nandawtek,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TeamCK/LD41,TeamCK,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ayufan-repos/rock64/linux-rootfs,ayufan-repos,Shell,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +Averor/json-mapper,Averor,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Averor/php-ext,Averor,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +epinxteren/ts-eventsourcing,epinxteren,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ToxiClaw/LAfI,ToxiClaw,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +0xF61/ssgBuilder,0xF61,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ALSchwalm/pISO,ALSchwalm,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/grape-path-helpers,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/sound-devices,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Cacophony/Worker,Cacophony,Go,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +waterkip/perl-net-saml2,waterkip,Perl,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jozefhajnala/jhaddins,jozefhajnala,R,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +davidrolle/f-strings,davidrolle,Clojure,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +Axect/axect.gitlab.io,Axect,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +coala/solar/shortlinks,coala,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adhenawer/laradep,adhenawer,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +imagedb/ansible-lint,imagedb,,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +mvojacek/execasm,mvojacek,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +onofreliscano/UCV,onofreliscano,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +olson.levi/website,olson.levi,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Valeness/spacesim,Valeness,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kimbm/Testers,kimbm,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PRTG/Device-Templates/dell-storage,PRTG,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dreinull/oer-db-normalization,dreinull,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dbrattli/NAisParser,dbrattli,F#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ruefo/ruefo.gitlab.io,ruefo,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +abhinavdhasmana/ci_cd_demo,abhinavdhasmana,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dimonkov/SD3,dimonkov,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +socrates-conference/socrates-attendee-client,socrates-conference,JavaScript,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +TheCapsLock/fdroid-patched-apps,TheCapsLock,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +awesome-keto/awesome-keto,awesome-keto,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mech-lang/server,mech-lang,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mikegustin/crestron-ui-mockup,mikegustin,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +apoorwanand/jekyll,apoorwanand,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jindal.manishkumar1/node-todo,jindal.manishkumar1,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +uQA3/firmware_esp32,uQA3,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +deandre/wtf,deandre,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +haseebeqx/ssh_cert_parser,haseebeqx,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aossie/CrowdAlert-Mobile,aossie,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +stanstrup-teaching/XCMS-course,stanstrup-teaching,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/gitter/realtime-client,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-org/gitter/halley,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +VickySteeves/lis-628-datalibrarianship,VickySteeves,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dgarlitt/urban-gopher,dgarlitt,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +crankykernel/cryptoxscanner,crankykernel,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/writing,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mickaelw/demo-clean-architecture-backend,mickaelw,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +TFSThiagoBR98/Antx,TFSThiagoBR98,C#,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +macta/WillowPagerDuty,macta,Smalltalk,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +myrdin/myrdin-web,myrdin,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +trustable/gitect,trustable,HTML,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +omunroe-com/sitemap-bundle,omunroe-com,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +soka/TallerTrello,soka,Batchfile,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bramceulemans/filesharer,bramceulemans,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/security-products/tests/sast,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +charts/gitlab-rails,charts,Smarty,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +melvinvermeeren/template_cpp,melvinvermeeren,CMake,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +PyNorte-RO/pyro-site,PyNorte-RO,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wpdesk/wp-settings,wpdesk,PHP,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +Spittal/terraforming-mars-tools,Spittal,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nnadeau/nnadeau.gitlab.io,nnadeau,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +flat-galaxy/edm,flat-galaxy,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +timelord/sklearn_transformers,timelord,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +obestwalter/commodorificator,obestwalter,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ian.hamilton/ng-chat,ian.hamilton,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +voidspiral/imghost,voidspiral,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cw-andrews/new-guid,cw-andrews,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +seanwasere/BPMHeartRateMonitor,seanwasere,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +EltraEden/APRS,EltraEden,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +matheushmion/siteconfiam,matheushmion,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ramene/hugo,ramene,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kspt-templates/report,kspt-templates,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kspt-templates/thesis,kspt-templates,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bmallred/learn-abc,bmallred,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +grote/briar-reproducer,grote,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +conversence/hyperknowledge,conversence,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +wpdesk/wp-dataset,wpdesk,PHP,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +wpdesk/wp-view,wpdesk,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +bauripalash/bauripalash.gitlab.io,bauripalash,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sensiolabs-de/php-build,sensiolabs-de,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ChristophS/aws_adfs,ChristophS,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,TRUE +ayufan-repos/rock64/linux-mainline-kernel,ayufan-repos,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gdevops/tuto_project,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +timvisee/ffsend-api,timvisee,Rust,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +cunity/cunit,cunity,C,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +aalonzolu/drupal-8-docker,aalonzolu,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pantacor/pantahub-pvr,pantacor,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pwa-minimus/pwa-minimus.gitlab.io,pwa-minimus,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pantacor/pv-platforms/alpine-router,pantacor,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitmate-micro/listen,gitmate-micro,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +VV5/south-china-sea,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +105021108/final_project,105021108,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +SpeciesFileGroup/taxonworks,SpeciesFileGroup,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aapjeisbaas/hello-container,aapjeisbaas,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +bradwood/pyclibase,bradwood,Python,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +vladradi/channelstat,vladradi,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mdbouchard/TogglJiraSync,mdbouchard,Groovy,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +cagatay-y/tootle-flatpak,cagatay-y,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oscar6echo/ipyauth,oscar6echo,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +roddhjav/pass-audit,roddhjav,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +arsouyes/byte-overflow,arsouyes,QML,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +redsharpbyte/fets,redsharpbyte,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +boxbox557/SS-2018-final-project,boxbox557,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +matej.plavevski/HackathonFlask,matej.plavevski,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +webuild.world/WeBuild.World,webuild.world,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +brendan/sast-example,brendan,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +projeto-es/caboabanana,projeto-es,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +mtnygard/m2m.router,mtnygard,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,Orange-OpenSource,Shell,TRUE,FALSE,FALSE,17,FALSE,TRUE,FALSE,FALSE +jonas_jostmann/oer-meltdown,jonas_jostmann,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Vertana/lolresearchbot,Vertana,C#,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +rso_2018_twitter_clone/hydrogen,rso_2018_twitter_clone,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,TRUE +jackorp/jekyll-git-authors,jackorp,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ajiro/ajiro.fr,ajiro,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Ivo1971/ILUStateMachine,Ivo1971,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +drx-tw/cdws-2.0-team-a,drx-tw,HTML,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +drx-tw/cdws-2.0-team-b,drx-tw,HTML,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +gitm8/npmpty,gitm8,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Hatscat/bytebeat-sequencer,Hatscat,Elm,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Selet/SisPetShop,Selet,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Redrield/SaturnShell,Redrield,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ipynb/z3,ipynb,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pgrangeiro/python-coinmarketcap-client,pgrangeiro,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sjugge/aws-helper,sjugge,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +johngian/agoodplace,johngian,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Sigma-One/sigma-one.gitlab.io,Sigma-One,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +philbooth/pbvi,philbooth,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jacquesherren/smartphysio-webapp,jacquesherren,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +veryeasily/veryeasily.gitlab.io,veryeasily,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jquagga/Washboard,jquagga,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +HispaGatos/hispagatos.org,HispaGatos,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jashankj/admtools,jashankj,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chusiang/gup,chusiang,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chusiang/wiki.drx.tw,chusiang,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +serebit/logkat,serebit,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +serebit/autotitan,serebit,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +betseg/minestest,betseg,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deikatsuo/manuk,deikatsuo,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jonocarroll/mathpix,jonocarroll,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gaioso/lpic1,gaioso,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ire4ever1190/app4flask,ire4ever1190,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +edvorg/spray,edvorg,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jaller94/silvy-matrix,jaller94,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kot-zrodlowy/kot-zrodlowy.gitlab.io,kot-zrodlowy,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +r2p2/stopwatch,r2p2,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iskcrew/isk,iskcrew,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hb9fxx/qrsspig,hb9fxx,C++,TRUE,FALSE,FALSE,7,TRUE,TRUE,FALSE,FALSE +KonradBorowski/enum-map,KonradBorowski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ShirOS/LunaFramework/Luna,ShirOS,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +arigato-java/alexa-javabutton,arigato-java,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ultsi-projects/blakkisvuohi,ultsi-projects,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MonkeyLog/BrewStillery,MonkeyLog,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +philbooth/mixbot,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/FxHey,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/scrumpy,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/surch,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/tryer,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/vagueTime.js,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +more-cores/discord-message-builder,more-cores,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +agravgaard/cbctrecon,agravgaard,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rmcgregor/aio-msgpack-rpc,rmcgregor,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +rnickson/wykop-gif-to-gfy,rnickson,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mudar-ca/SnooZy,mudar-ca,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +n9n/apl,n9n,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nmud/nmud-core,nmud,Java,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +griest/pokeforge,griest,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +custom_components/cloudflare,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +custom_components/brewdog,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mziescha/perl6-DBIx-NamedQueries,mziescha,Perl6,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pgerber/zbase32-rust,pgerber,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aheger/train-svelte,aheger,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eliaskosunen/eliaskosunen.gitlab.io,eliaskosunen,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +xomachine/NESM,xomachine,Nim,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +categulario/karel-vue,categulario,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mrvik/loadlify,mrvik,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +zerodogg/ampache-docker,zerodogg,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +arrem/Clam,arrem,Kotlin,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +sbrl/TraceRoutePlus,sbrl,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Salamek/version,Salamek,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +Gahr/hyperdav,Gahr,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Rhialto/macro11,Rhialto,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +rek2/GoEnumerator,rek2,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +softwareperonista/nomeolvides,softwareperonista,Vala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +BartWillems/octaaf,BartWillems,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +vikserver/vikserver2,vikserver,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +vikserver/vshort,vikserver,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jcfandino/leveleditor,jcfandino,Scala,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +lu-ci/kyanite,lu-ci,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +akii0008/lwbot-rewrite,akii0008,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +csicar/MensaPlan,csicar,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mvojacek/spotifymuteads-native,mvojacek,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Energy1011/monsterpenguin,Energy1011,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +NobbZ/exercism-solutions,NobbZ,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +jeanfi/find-duplicate-files,jeanfi,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +rvs314/rvs314.gitlab.io,rvs314,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tacoda/jaws,tacoda,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Xeom/edil,Xeom,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +bhavyanshu/chatbase-php,bhavyanshu,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cwesson/LinkAlert,cwesson,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lucidlylogicole/paddle,lucidlylogicole,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jgkamat/dotfiles,jgkamat,EmacsLisp,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Gostavikyi/Home,Gostavikyi,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +waringer/Alexa-Wetterochs,waringer,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +chucksys/clj-editor,chucksys,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thehumaneffort/rails-5-base,thehumaneffort,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +ZoeyGlobe/zoeyglobe.gitlab.io,ZoeyGlobe,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +scull7/bs-sql-composer,scull7,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +scull7/bs-crud-functors,scull7,OCaml,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +r05323028/ptt_crawler,r05323028,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +isqad/ubastation,isqad,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tvo/Nodata,tvo,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ksichien/ts-list-organizer,ksichien,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +vala-panel-project/xfce4-sntray-plugin,vala-panel-project,Vala,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +vala-panel-project/vala-panel-extras,vala-panel-project,Vala,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +Syping/gta5view-cmd,Syping,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +slowpokex/angular-mp,slowpokex,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +Slack06/yadg,Slack06,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +scarabeusiv/presentations,scarabeusiv,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zeiot-backup/rpi-cert-manager,zeiot-backup,Makefile,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gratefulfrog/ArduGuitar,gratefulfrog,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +simcav/simcav.gitlab.io,simcav,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +khaledhosny/emacs,khaledhosny,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rdi-eg/wfile,rdi-eg,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +rdi-eg/rdi_utils,rdi-eg,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nwmitchell/zendesk-downloader,nwmitchell,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,FALSE +lucenaproject/lucena.py,lucenaproject,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pgampe/authenticator,pgampe,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +JuliaGPU/CUDAapi.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JuliaGPU/CuArrays.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +JuliaGPU/GPUArrays.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JuliaGPU/CUDAdrv.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fatihacet/vue-spa,fatihacet,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +katyukha/odoo-helper-scripts,katyukha,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +raatiniemi/sonar-objective-c,raatiniemi,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +laurih/matid,laurih,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +janvv/janban,janvv,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +zub2/somfy-tools,zub2,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jeanfi/pnews,jeanfi,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +venture-api/gate,venture-api,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ivoanjo/persistent-dmnd,ivoanjo,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jacquesherren/smartphysio-android,jacquesherren,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +rodrigondec/gmail-signature,rodrigondec,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mhuber84/klickibunti-deployment,mhuber84,PHP,TRUE,FALSE,FALSE,11,FALSE,FALSE,FALSE,FALSE +aurelien.chabot/cv,aurelien.chabot,Python,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +f2e-practice/todolist,f2e-practice,Vue,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +mkourim/cfme-testcases,mkourim,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +archmac/packages,archmac,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +murchik/django-smelly-tokens,murchik,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jdesodt/rqlite-disco-express,jdesodt,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jdesodt/seneca-rqlite-store,jdesodt,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +h4xrk1m/slinkie,h4xrk1m,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JuliaGPU/CLBLAS.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JuliaGPU/CLFFT.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +daberlin/sap-reposrc-decompressor,daberlin,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +toby3d/telegraph,toby3d,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +bob6664569/blockfolio-api-client,bob6664569,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fawcio/design_patters_examples,fawcio,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +m00dawg/FilmLog,m00dawg,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +solarliner/terrainlib,solarliner,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bashrc2/freedombone,bashrc2,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +carymrobbins/scalaz-deriving,carymrobbins,Scala,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +wdullaer/vplayer,wdullaer,Kotlin,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +frozenfoxx/frozenfoxx.gitlab.io,frozenfoxx,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +xdrixxyz/pepperoni,xdrixxyz,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dynomite567/docker-plex-beta-armhf,dynomite567,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +loxal/muctool,loxal,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +duncan-bayne/heroku-app-clozure-common-lisp,duncan-bayne,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +codingJWilliams/Assassin,codingJWilliams,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Poly_Rueda/scheduling-app-ray,Poly_Rueda,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +itukikikuti/XLibrary11,itukikikuti,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jgkamat/jgkamat.gitlab.io,jgkamat,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jabranham/mixed-pitch,jabranham,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +biovm/biovm.gitlab.io,biovm,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vasanthdeveloper/vasanthdeveloper.gitlab.io,vasanthdeveloper,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Swapnil273/my-library,Swapnil273,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +estinet/gFeatures,estinet,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Ma_124/build.py,Ma_124,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +abiproject/abilaunch,abiproject,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hexgearinc/seven-sun-downs,hexgearinc,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philmd/qemu,philmd,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bigapplepy/yak-bak,bigapplepy,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +pantacor/pantahub-www,pantacor,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ChaoticEnigma/libchaos,ChaoticEnigma,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pok3r-custom/pok3rconf,pok3r-custom,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pok3r-custom/pok3rtool,pok3r-custom,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pok3r-custom/qmk_pok3r,pok3r-custom,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +clickable/clickable-gitlab-ci-test,clickable,CMake,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xonvanetta/gerish,xonvanetta,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +zeropaper/fiha,zeropaper,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gkrishnaks/auto-deploy-webextensions,gkrishnaks,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +hectorj/test-nix-gitlab-ci,hectorj,Nix,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zjw88282740/pwn-firewall,zjw88282740,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jckimble/go-health,jckimble,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +estinet/EstiConsole,estinet,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +estinet/ClioteSky,estinet,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +estinet/gFeaturesBungee,estinet,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +psachin/psachin.gitlab.io,psachin,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hajidalakhtar/profil,hajidalakhtar,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +statscloud.io/statscloud.io-nodejs-client,statscloud.io,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Tuuux/GalaxieDrakeCLI,Tuuux,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Tuuux/galaxie-bob,Tuuux,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +intr0/intr0.gitlab.io,intr0,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aeremeev/saturna,aeremeev,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cloudnativewales/dockeronwindows,cloudnativewales,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kienan/puppet-alternc,kienan,Puppet,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +k33g/k33g.gitlab.io,k33g,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +probono/gs-plugin-appimage,probono,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oddcoder/GP_Template,oddcoder,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +satisfiability01/mios,satisfiability01,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Elypia/Huggy,Elypia,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +shnarazk/haskell/PDP11,shnarazk,Haskell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ykyuen/docker-boatswain,ykyuen,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +StonedMoose/manual-testing-manager,StonedMoose,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,FALSE +moueza/lesMacDonaldsDeNantes,moueza,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ydkn/rails-menu-manager,ydkn,Ruby,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +ydkn/redmine_airbrake_backend,ydkn,Ruby,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +ydkn/logged,ydkn,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ydkn/jquery-watcher,ydkn,CoffeeScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +ydkn/capistrano-logtail,ydkn,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +ydkn/auto_locale,ydkn,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +ihkawiss/bachelor-thesis,ihkawiss,PLpgSQL,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +alexdemari/pyplate,alexdemari,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +oxford-data/yieldcurve,oxford-data,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +forthy42/thinking-forth,forthy42,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aceteam.kaist/ACE-Molecule,aceteam.kaist,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +jenx/rectify,jenx,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pashinin.com/frontend,pashinin.com,Vue,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +pashinin.com/docs,pashinin.com,Makefile,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,TRUE +junquera/toc-toc-ssh,junquera,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +davidrolle/clj-cukes,davidrolle,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hendisantika/spring-boot-kotlin-sample,hendisantika,Kotlin,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +CptS/ltw2018-plakat-konfigurator,CptS,Vue,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +ogulabs/ogulabs,ogulabs,Swift,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +devscola/perseidas,devscola,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +yanlinnthor/yanlinnthor.gitlab.io,yanlinnthor,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SunyataZero/well-being-diary,SunyataZero,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +arquolo/kerasify,arquolo,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +bluehotdog/lunch-with-me-backend,bluehotdog,Elixir,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +martensoderberg/wambot,martensoderberg,Python,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +LibraryGenesis/exodus,LibraryGenesis,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +navdy-hackers/Navdy-MapDownloader,navdy-hackers,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +dansiviter/cito,dansiviter,Java,TRUE,FALSE,TRUE,4,TRUE,TRUE,TRUE,TRUE +MTIpython/MTIpython,MTIpython,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +muhaaliss/muhaaliss.gitlab.io,muhaaliss,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +09jwater/Needle,09jwater,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +toolsweet/toolsweet,toolsweet,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +douaneapp/douane-dkms,douaneapp,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +alantrick/django-agenda,alantrick,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +hemanth22/MyJavaLearning,hemanth22,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +three11/gitlab-pages-vuepress,three11,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bestmethod/go-acp,bestmethod,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaymoulin/docker-torrench,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +NifTK/NiftyNet,NifTK,Python,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +keronos/infusion,keronos,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jakesys/aws,jakesys,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +sumner/sumnerevans.com,sumner,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +revolunet/test-cypress,revolunet,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ohboi/tg.d,ohboi,D,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +atul-mourya/datavisualizer,atul-mourya,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bookchin/gitty,bookchin,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +bookchin/granax,bookchin,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +higkoohk/Mash,higkoohk,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +markwetter/mc-wrap,markwetter,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +custom_components/root,custom_components,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Tech_Advancer/retirement-calculator,Tech_Advancer,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gioxa/imagebuilder,gioxa,Shell,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +gioxa/oc-runner/buildimage,gioxa,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +nyker510/book-clustering,nyker510,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ellsclytn/waas,ellsclytn,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RTbecard/ezPSD,RTbecard,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +trustgit/nodebot,trustgit,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +opencf/opencf,opencf,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +simple-direct-democracy/website,simple-direct-democracy,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +adleatherwood/DrivenDb,adleatherwood,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +adleatherwood/DelegateDI,adleatherwood,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +SunyataZero/trees,SunyataZero,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +geoadmin-opensource/django-workflow-fsm,geoadmin-opensource,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +geoadmin-opensource/django-common-models,geoadmin-opensource,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +geoadmin-opensource/django-file-context,geoadmin-opensource,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hostedprometheus/hostedprometheus,hostedprometheus,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ktsepelev/rabbitmq-mailer-golang,ktsepelev,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +yttriumtyclief/thinkbase,yttriumtyclief,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +www.hohee/NodeJSTest,www.hohee,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +biancode/node-red-contrib-iiot-opcua,biancode,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +commonshost/sherlock,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AccessNowHelpline/community-documentation,AccessNowHelpline,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +flib99/i3-workspace-names,flib99,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TheDarkula/code-artistry,TheDarkula,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +uptimeventures/gatsby-source-rss,uptimeventures,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +brno32/math-game,brno32,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tigefa/ubuntu-bionic,tigefa,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +keithwberry/wetty,keithwberry,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ylzat/javaproject,ylzat,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +OpenPlaygroundMap/OpenPlaygroundMap,OpenPlaygroundMap,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +elliotbouvier/workshop-git,elliotbouvier,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +swe-nrb/demo-infopack-rollbeskrivningar,swe-nrb,JavaScript,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +ComposePress/core,ComposePress,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +amathew/yoginth.ml,amathew,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barsoosayque/a-tale-about-tail,barsoosayque,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joshburkart/gpscale,joshburkart,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mdaffin/scribe,mdaffin,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +JohnBlood/project-trident,JohnBlood,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kaashif/decomp,kaashif,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sebastianhutter/urt-server,sebastianhutter,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +TheChosenEvilOne/Mindustry,TheChosenEvilOne,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +brancengregory/brancengregory.gitlab.io,brancengregory,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dickoa/humanitarian-datasci-pres,dickoa,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nystrome/sciit,nystrome,Python,TRUE,TRUE,FALSE,2,FALSE,FALSE,FALSE,FALSE +shnarazk/haskell/haskell-on-heroku,shnarazk,Haskell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +arma3-server-tools/modmanager,arma3-server-tools,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +joprotin/docker/apache,joprotin,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +clivejo/solus,clivejo,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kdeleteme/Hectic-old,kdeleteme,Dart,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wahomekevin/website-sonos,wahomekevin,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +adleatherwood/ezrep,adleatherwood,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +chaynHQ/soul-medicine,chaynHQ,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +endlesscodegroup/inspector,endlesscodegroup,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +zach-brennan/LaTeX-Resume,zach-brennan,TeX,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +uzluisf/piensaperl6,uzluisf,TeX,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +zeen3/uuidgen4,zeen3,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +highway900/operata_test,highway900,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +newroseji/laravel,newroseji,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sprat/debpack,sprat,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ArthurJordao/docusaurus-example,ArthurJordao,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vincentdavy/soundcloud-extractor,vincentdavy,Go,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +jeanfi/ubuntu-desktop,jeanfi,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +drom/jtag,drom,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +modding-legacy/Glacidus,modding-legacy,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +frozenfoxx/docker-zandronum,frozenfoxx,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +IntelieChallenge/event-store,IntelieChallenge,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +actondev/org-mode-ci,actondev,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +njam/ttn-experiments,njam,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +jaymoulin/docker-ddgr,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaymoulin/docker-google-music-downloader,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaymoulin/docker-googler,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sehnem/pynmet,sehnem,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mrpudn/mrpudn.gitlab.io,mrpudn,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +angular-material-dashboard/angular-material-dashboard-sdp,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +semla/secret-key-to-bitcoin-address-balance,semla,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +orioks/android-app,orioks,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +femtopixel/docker-kompose,femtopixel,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +logi-ce/docker-tsung,logi-ce,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +cisl407/classroom/pdp11-server,cisl407,Haskell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +VincentTam/vincenttam.gitlab.io,VincentTam,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitzup/deployster,gitzup,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +just-python/website,just-python,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vstconsulting/polemarch-docker,vstconsulting,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +kesslerdev/generator-skimia,kesslerdev,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +starbelly/hydro,starbelly,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PierreFaniel/react-calculator,PierreFaniel,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Tim-S/asterixjs,Tim-S,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +NikolayS/docker-postgres-sqitch,NikolayS,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eryshev/cryptocurrencies.monitoring.with.prometheus,eryshev,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +hassbian/hassbian-scripts,hassbian,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +pdiemi/mibrary,pdiemi,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chevdor/oss-starter-template,chevdor,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +freetux/freetux.gitlab.io,freetux,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +TheGamecraft/c-cms,TheGamecraft,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +remram44/unix-at,remram44,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +attakei/yagura,attakei,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,FALSE,FALSE +openschoolmaps/OpenSchoolMaps.ch,openschoolmaps,QML,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +cbray/autoMEGA,cbray,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tanukitalks/tanukitalks.gitlab.io,tanukitalks,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +volviq/cmake-testing,volviq,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +shubhamagarwal3010/LetThingsSpeak,shubhamagarwal3010,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tezos/opam-repository,tezos,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +rnickson/wykop-v2-js,rnickson,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +llhe/mace,llhe,C++,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +llhe/mace-models,llhe,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +nicolas.poste/message-manager,nicolas.poste,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +nicolas.poste/process-manager,nicolas.poste,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +redmic-project/gis/geoserver,redmic-project,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sj1k/impd,sj1k,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +glenveegee/PDBeCIF,glenveegee,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +mausy5043/uss_cygnus,mausy5043,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +dark0dave/NBclassifier,dark0dave,Scala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dark0dave/reversible-human-readable-id,dark0dave,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dark0dave/rss_feed,dark0dave,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nuke-group/preferencesManager,nuke-group,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +griest/generator-griest,griest,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +kubic-ci/ci3,kubic-ci,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fhightower/html-to-json,fhightower,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +coisa/gitlab-ci-sandbox,coisa,Shell,TRUE,FALSE,FALSE,8,TRUE,TRUE,TRUE,FALSE +yunity/ukuvota,yunity,F#,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +jdesodt/easy-log-watcher,jdesodt,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +AtteLynx/bt-desktop,AtteLynx,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +keithwberry/worldtime-crystal,keithwberry,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +guzart/sirkit,guzart,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alosarjos/steam-provider,alosarjos,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +interscity/cep-handler/cep-cataloger,interscity,Ruby,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +dilawar/Resonance2018,dilawar,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +custom_components/untapped,custom_components,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +olanguage/olang,olanguage,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +trustable/distros/overview,trustable,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +vladimir18/find-the-pair,vladimir18,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +PresentationsTechniques/Impression3D,PresentationsTechniques,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rgcalsaverini/iff-iat,rgcalsaverini,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +milan44/statistics,milan44,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NebulousLabs/writeaheadlog,NebulousLabs,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Paccos/mensa-thumb-bot,Paccos,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +FascinatedBox/lily-docs,FascinatedBox,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gutoglup/CarFlow,gutoglup,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ce1011/ict-mc-ans,ce1011,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +absassi/asap_app_console,absassi,CMake,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bilalbox/panos_tester,bilalbox,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaredfholgate/DropBoxFileSorter.Go,jaredfholgate,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +jeanmorais/sonar-maven-ci-example,jeanmorais,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +daktak/pebble_uqm_watchface,daktak,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ajason41/joyride,ajason41,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +webmaicon/sorterica,webmaicon,PHP,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +scottchayaa/scottchayaa.gitlab.io,scottchayaa,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openmicroscopy/incubator/omero-grafana-json-datasource,openmicroscopy,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +lucidlylogicole/slate,lucidlylogicole,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Matrixcoffee/matrixcoffee.gitlab.io,Matrixcoffee,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +merlodicus/jenkins-docker,merlodicus,Groovy,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +remram44/dockerimage,remram44,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +intr0/A-New-Declaration-of-Independence,intr0,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +LoganBarnes/tom-the-tool,LoganBarnes,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +thekitchenagency/swiss-post-labels,thekitchenagency,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Aragami1408/drgnzsearch,Aragami1408,CSS,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +moodlenet/clients/contacts-import,moodlenet,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gserv.me/InfoBot,gserv.me,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +olaris/olaris-react,olaris,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +finite-loop/flutils,finite-loop,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +costrouc/knoxpy-fizzbuzz-complete,costrouc,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +mikeyjkmo/nameko-payee-notifier,mikeyjkmo,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lduros/quartet-ui-plugins-boilerplate,lduros,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +tkint/MiniDAO,tkint,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +LeMilliard/DecisionTree,LeMilliard,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +gke-deploy-patterns/pipelines/cli,gke-deploy-patterns,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +teozkr/sbt-lockfile,teozkr,Scala,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +nlabbe/gold,nlabbe,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +magnus.odman/audentes,magnus.odman,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +freddieptf/manga-scraper,freddieptf,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +fswb/fswb.gitlab.io,fswb,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angusmfdotcom/HelloBuild,angusmfdotcom,ShaderLab,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sinclair2/easygg,sinclair2,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sky-kun/marsch-cmd,sky-kun,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +edelweiss-linux/backend,edelweiss-linux,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +rakenodiax/rust-client,rakenodiax,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ngxa/utils,ngxa,TypeScript,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +bit-byte/glitchHome,bit-byte,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gnaar/gear,gnaar,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hieu.vo/testJavaApp,hieu.vo,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,FALSE +drim-consulting/public/devops/git-flow-ci-cd,drim-consulting,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +iVOID/hosts,iVOID,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +atomfrede/micronaut-beer,atomfrede,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +prosign/server,prosign,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nazarmx/odbc-futures,nazarmx,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gappan/terraform-provider-jira,gappan,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lacsed/clDES,lacsed,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mertkahyaoglu/zeplin-challenge,mertkahyaoglu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IceHe/lib,IceHe,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +MaxIV/test-runner,MaxIV,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Eudaimonstro/Steves-Rules-of-Order,Eudaimonstro,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +USSRM/API,USSRM,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adaedra/derpy,adaedra,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +katyukha/odoo-rpc-client,katyukha,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +charts/deploy-image-helm-base,charts,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +custom_components/hassbian_config,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +debuglevel/greeting-microservice,debuglevel,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +jurelou/trust,jurelou,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tomvidm/ssml,tomvidm,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IronLions/Interna/Core,IronLions,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +m3hr24d/docker-symfony,m3hr24d,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +korinets-name/korinets-name.gitlab.io,korinets-name,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +beyondbitcoin/wlsjs,beyondbitcoin,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +coteafs/config,coteafs,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +hop23typhu/fullstack-graphql,hop23typhu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ohboi/goinsu,ohboi,D,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lucidlylogicole/pristine,lucidlylogicole,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +to1ne/debut,to1ne,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +spease/WeaverForumSoftware,spease,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +caleb-ukle/shop-the-fridge,caleb-ukle,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thecodechef/vue-test,thecodechef,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wdblckmma/aaa,wdblckmma,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +boardcrew/instalador,boardcrew,Scala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dzaporozhets/mvn-example,dzaporozhets,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +joielechong/belajar-go-dengan-tes,joielechong,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mexus/take-some-rs,mexus,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thiagotrennepohl/gourmet-game,thiagotrennepohl,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +MidoriApp/backend,MidoriApp,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thecodechef/vue-cli-plugin-editorconfig,thecodechef,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fvafrcu/fakemake,fvafrcu,R,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +ncrmro/preon,ncrmro,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cloudigrade/images/test-container,cloudigrade,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kkopper/oraclejdk-gradle,kkopper,,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +ribamar-org/ribamar,ribamar-org,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +pothitos/C_Pipeline,pothitos,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +finestructure/bitrise-trigger,finestructure,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +harbottle/docker-wix,harbottle,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kudotnet/dotnetfun,kudotnet,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rapidhaskell2018/ws1,rapidhaskell2018,Haskell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +ZissiTheBee/Ernst,ZissiTheBee,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +vincentdavy/replay-api,vincentdavy,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +0xF61/MAOYYK2018,0xF61,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +lpireyn/cmcm,lpireyn,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cleider87/weather,cleider87,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +codesections/personal,codesections,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +svsamipillai/gitlab-hw,svsamipillai,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Calinou/clr,Calinou,Nim,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +strburst/pelican-site,strburst,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pothitos/CPP_Pipeline,pothitos,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +je-cspantoja/whats_app_chat_api-python,je-cspantoja,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/backstage-changelog,gitlab-org,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hyper-expanse/open-source/configuration-packages/gitlab-config,hyper-expanse,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anited/publish,anited,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +objectia/api-docs,objectia,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CodeBabel/hello-world,CodeBabel,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +shukerov/myblog,shukerov,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +isabellesandow/unity4j-meme-generator,isabellesandow,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +maksim.dadzerkin/go-build-example,maksim.dadzerkin,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lgbtplus/youth-bot-java,lgbtplus,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +kimlab/uniparc_xml_parser,kimlab,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +datto/engineering/spacewalk-debian-client-packages,datto,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +rbx-cone/cone-plugin,rbx-cone,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +centerorbit/depcharge,centerorbit,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +flora-portal/flora-portal.gitlab.io-old,flora-portal,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gnaar/piste,gnaar,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gnaar/powder,gnaar,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gnaar/edge,gnaar,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +morimekta/providence,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +phyohtetarkar/github-jobs,phyohtetarkar,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nerones/pdf-signature,nerones,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +willianpaixao/willianpaixao.gitlab.io,willianpaixao,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jochembroekhoff/motorscript-compiler,jochembroekhoff,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,FALSE,FALSE +gnaar/off-piste,gnaar,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitter/gitter-marked,gitlab-org,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pothitos/Python_Pipeline,pothitos,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gjs-guide/gjs-guide.gitlab.io,gjs-guide,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +YoshiRulz/VexilLogos,YoshiRulz,JavaScript,TRUE,FALSE,TRUE,1,FALSE,FALSE,TRUE,FALSE +daurnimator/docker-hererocks,daurnimator,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +to1source-open-source/jsonqltools,to1source-open-source,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jgxvx/cilician,jgxvx,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LCaraccio/tes-lib,LCaraccio,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +cn-ds/web-app,cn-ds,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ryanaghdam/stoneham.town,ryanaghdam,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rygoo/raven,rygoo,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +daktak/pebble-phone-batt-bar,daktak,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mexus/and-then2,mexus,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +codecentricnl/summercourse-ci-cd,codecentricnl,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tinkererr/ember,tinkererr,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +apastuhov/i18next-tui,apastuhov,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +XBagon/force_remove,XBagon,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cegal/MOE,cegal,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +vstconsulting/polemarch-ansible,vstconsulting,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +sethbergman/node-express-demo,sethbergman,JavaScript,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +jnda/FlashAlert,jnda,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +DoS-Project/project_making,DoS-Project,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +charts/components/gitlab-operator,charts,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +fhightower/ioc-utility,fhightower,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nd-cse-30341-fa18/cse-30341-fa18-website,nd-cse-30341-fa18,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gnaar/gear-ci-base,gnaar,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gfoss/phygital-site,gfoss,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +frank_ak/formation_PMP,frank_ak,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +publiclab/plots2,publiclab,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +laurentbachelier/weboob,laurentbachelier,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +c410-f3r/mop,c410-f3r,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +akibisuto/direkuta,akibisuto,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +crave/meepwnctf2018-esor,crave,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +willianpaixao/awesome-bjj,willianpaixao,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chin123/chin123.gitlab.io,chin123,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Madis0/Firefox-tweaks,Madis0,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +samsartor/dynpool,samsartor,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Yonder-Dynamics/misc/wiki-home,Yonder-Dynamics,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cosban/persistence,cosban,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +hosco/ops-deploy-kubernetes,hosco,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +deepset-ai/open-source/glove-embeddings-de,deepset-ai,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vrresto/il2ge,vrresto,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bryceschober/conan-cpputest,bryceschober,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +satisfiability01/splr,satisfiability01,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +judahnator/json-manipulator,judahnator,PHP,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +lfiolhais/AdeptSim,lfiolhais,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Idean/idean-ng-charts,Idean,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +JOSM/docker-library,JOSM,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aleks001/haproxy19-centos,aleks001,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +raffaeldutra/raffaeldutra.github.io,raffaeldutra,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ummels/www.ummels.de,ummels,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +s.fuchs/prophane,s.fuchs,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ectucker/ld42,ectucker,Dart,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +GhastFilms/PieBot,GhastFilms,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +simonbreiter/color-name,simonbreiter,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +SITTV/sittv.gitlab.io,SITTV,CSS,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +usherbrooke/igl-601/demo-gitlab,usherbrooke,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +3MI/SoftwareDesignProject,3MI,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fenrirunbound/pipeline-queue,fenrirunbound,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +the_usk/libuctest,the_usk,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tue-umphy/python3-sensemapi,tue-umphy,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +JelF/monad_router,JelF,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +victorlapin/usage-stats,victorlapin,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +joprotin/symfony/custom-user-management-sf4,joprotin,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +Dxc123/GitlabTestDemo,Dxc123,Objective-C,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +DrCherry/photography,DrCherry,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +custom_components/wienerlinien,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Collective68/Collective68,Collective68,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nd-cse-30341-fa18/cse-30341-fa18-assignments,nd-cse-30341-fa18,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +p8n/verso,p8n,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +crumdev/pci_review_script,crumdev,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +michelsantos10/game-question-service,michelsantos10,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +cryogenweb/cryogenweb.gitlab.io,cryogenweb,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +amunizp/c4ad-hugo,amunizp,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +simeunovics/triangle,simeunovics,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +GeneralKenobee/Thesis-Title-Generator,GeneralKenobee,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +maike.me/maike.me,maike.me,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ShakedHazon/LearnReact,ShakedHazon,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fathom/contracts,fathom,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +ldjam/writespace,ldjam,Lua,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Myzh/audio-visualizer,Myzh,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +flatiron-dc/wedding_invitation,flatiron-dc,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +centerorbit/release-github,centerorbit,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +IDF31/idf31.gitlab.io,IDF31,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +karuppiah7890/gitlab-ci-console-colors,karuppiah7890,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +open-archives-data-rescue/climate-data-rescue,open-archives-data-rescue,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +romeroyonatan/truco,romeroyonatan,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +CoalZombik/CDAR,CoalZombik,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kirbo/cozify-rest-api-client,kirbo,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +ColoradoSchoolOfMines/acm-officer-resources,ColoradoSchoolOfMines,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +DatacenterSec/NomadCluster,DatacenterSec,Ruby,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +phinicota/godoit,phinicota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Lexinek/nette-camp-deployer,Lexinek,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mech-lang/mech,mech-lang,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zieone/website,zieone,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +link2xt/pwsafe-rs,link2xt,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jackobrien22/jackobrien22.gitlab.io,jackobrien22,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +WorldBrain/memex-root-server,WorldBrain,TypeScript,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +gitlab-org/async-retrospectives,gitlab-org,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +IvanSanchez/Leaflet.RepeatedMarkers,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Volobuev/ks-book-shelf,Volobuev,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cypress-io/cypress-example-kitchensink,cypress-io,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +coreynwops/decred-dev-docs,coreynwops,HTML,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +luishck/librecademy,luishck,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dosuken123/JUnit-test-reports,dosuken123,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +X3n0m0rph59/precached,X3n0m0rph59,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +X3n0m0rph59/precached-gui,X3n0m0rph59,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oleg.balunenko/logs-converter,oleg.balunenko,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +objectia/help-center,objectia,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +YottaDB/DBMS/YDBOcto,YottaDB,C,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +cartr/macrodcl,cartr,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +m03geek/fastify-status,m03geek,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +SoHigh/Nergigante,SoHigh,JavaScript,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +lae/intellij-actions-tree,lae,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pcdavid/pcdavid.gitlab.io,pcdavid,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ModernisingMedicalMicrobiology/groupBug,ModernisingMedicalMicrobiology,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JuliaCN/JuliaZH.jl,JuliaCN,Julia,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +semilattice/snowflake,semilattice,Lua,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +willianpaixao/spoon,willianpaixao,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +julia-pub/Aux.jl,julia-pub,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nicolaspanel/TrainingSpeech,nicolaspanel,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +usu-amr/usu-amr.gitlab.io,usu-amr,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cs1331/cs1331.gitlab.io,cs1331,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lyndsysimon/columnist,lyndsysimon,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +m/m.gitlab.io,m,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +binarymist/mocksse,binarymist,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deepset-ai/open-source/word2vec-embeddings-de,deepset-ai,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Noughmad/ptree,Noughmad,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitote/git-module,gitote,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +rit-scg/rit-scg.gitlab.io,rit-scg,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +edwingamedev/Day3,edwingamedev,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thealik/clcalc,thealik,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Liferenko/poehali_info,Liferenko,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +msh1011/CAI,msh1011,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DFDS/Autobots/samples-pipeline-dotnet,DFDS,C#,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +custom_components/versions,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mergetb/tech/sled,mergetb,Go,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,FALSE +BlockSharp/BlockSharp,BlockSharp,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +idrago/cssPublic,idrago,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +grigorye/SimulatorRecorder,grigorye,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +alelec/jupyter_micropython_remote,alelec,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +SumNeuron/cookie-cutter-rollup-vue,SumNeuron,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sys-fiuba/julia/SySTools.jl,sys-fiuba,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lokiproject/loki-network,lokiproject,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +deepset-ai/open-source/fasttext-embeddings-de,deepset-ai,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +vickyjackson/ichoose-app,vickyjackson,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,FALSE,FALSE +tomabolt/flask-starter-aws-elastic-beanstalk,tomabolt,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +iba-aes/webcie/website,iba-aes,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +AlexL777/Bolt-Service-Rostock,AlexL777,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ronald-chun/hello-gitlab-heroku,ronald-chun,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Szmok/Genetic-Inheritance-System,Szmok,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tuerbot/tuerbot,tuerbot,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +purpleteam-labs/purpleteam,purpleteam-labs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cravacuore/rawRSS,cravacuore,JavaScript,TRUE,FALSE,FALSE,13,TRUE,TRUE,FALSE,TRUE +a-chernov/epm_test,a-chernov,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +zeen3/ripsters,zeen3,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +adelkhafizova/mipt-stats,adelkhafizova,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +PaulBrownMagic/OptiTruckPredict,PaulBrownMagic,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +neonox31/podcast-server,neonox31,HTML,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +maheshhegde/blog,maheshhegde,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hrbrmstr/worldtilegrid,hrbrmstr,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jimsy/huia,jimsy,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Lucidiot/python-usda,Lucidiot,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +clear-code/lua-web-driver,clear-code,Lua,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bimlas/tw5-asciidoctor,bimlas,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pupjs/pupjs,pupjs,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +cjvnjde_template/webpack_html_sass_template,cjvnjde_template,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +c4g/draco/libdraco_ue4,c4g,C#,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +Bosi/docker-compose-collection,Bosi,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +freundchen/spring-boot-and-react,freundchen,JavaScript,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,FALSE +openlp/web-remote,openlp,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +osm-ui/react,osm-ui,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +Req/raidgroups,Req,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +recalbox/website,recalbox,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +CDAGaming/CraftPresence,CDAGaming,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +qezz/tg-sed-bot,qezz,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tmkn/wagtail-storages,tmkn,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +purpleteam-labs/purpleteam-logger,purpleteam-labs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +training-devops-201801/belajar-devops,training-devops-201801,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,TRUE,FALSE +purpleteam-labs/purpleteam-orchestrator,purpleteam-labs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +purpleteam-labs/purpleteam-app-scanner,purpleteam-labs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mexus/sedregex,mexus,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pmercado12/tutorial-git-lab,pmercado12,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ClementLin/ZWaveBrowser,ClementLin,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gperdomor/vapor-response-time,gperdomor,Swift,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SchoolOrchestration/libs/microservicetool,SchoolOrchestration,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,TRUE +FlightChain2/FlightChainAPI,FlightChain2,TypeScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +FlightChain2/FlightChainUI,FlightChain2,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +abhchand/stable-matching,abhchand,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Polkabot/polkabot-plugin-blocthday,Polkabot,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +ap6yc/MEDICOM,ap6yc,TeX,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +ty-test-dev/cake3-test,ty-test-dev,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +localg-host/website,localg-host,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +iblech/bb,iblech,Haskell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +whatisaphone/rlbot-rust,whatisaphone,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +0x1d/illucat,0x1d,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +josiekate/cs373,josiekate,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dave.bell/alarm,dave.bell,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +float.cf/broadcaster,float.cf,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +VincentTam/test-hugo-staticman,VincentTam,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DanielWhitston/pip_test_1,DanielWhitston,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aurorafossorg/apps/tuna,aurorafossorg,D,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +CedricQ/testProj,CedricQ,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +adventuscalendar/prrepo,adventuscalendar,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +adventuscalendar/utils/docker-prototool,adventuscalendar,,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +gperdomor/vapor-request-id,gperdomor,Swift,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +leroywarnt/sdlc,leroywarnt,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,TRUE +timvisee/cant-touch-this-project,timvisee,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cccheck-mate/server,cccheck-mate,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mbedsys/citbx4gitlab,mbedsys,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +matt-lindsay/folder-poller,matt-lindsay,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rarenet/dfak,rarenet,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +eritikass/tpt-2018-2,eritikass,JavaScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,TRUE +dudi/simple-maven-dep,dudi,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +irenepixel/labPPW,irenepixel,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +elazkani/rundeck-resources,elazkani,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +georgematthewl/story9-ppw,georgematthewl,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +monetha/reputation-contracts,monetha,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ninuxorg/docker/ansible-centos,ninuxorg,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +swergas/swergas-belenios-ci,swergas,OCaml,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +librespacefoundation/gr-leo,librespacefoundation,C++,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +Baby-AC/expenses-tracker-backend,Baby-AC,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +flatiron-dc/learning-git2,flatiron-dc,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +apifie/nodems/node-microservice,apifie,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gamearians/Games-list,gamearians,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +shaktiproject/software/shakti-linux,shaktiproject,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bitoftrust/bitoftrust.gitlab.io,bitoftrust,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ninuxorg/docker/ansible-ubuntu,ninuxorg,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ninuxorg/docker/ansible-debian,ninuxorg,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ninuxorg/docker/ansible-fedora,ninuxorg,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +thepiercingarrow/microbot,thepiercingarrow,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mgi/gpm/gpm,mgi,LabVIEW,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +KageKirin/kagekirin.gitlab.io,KageKirin,Makefile,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vijai/MCS-Controller,vijai,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +freckles-io/freckles,freckles-io,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +adrianlemess/starwars-project,adrianlemess,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +morimekta/io-util,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +morimekta/diff-util,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +morimekta/console-util,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +morimekta/testing-util,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +superchain/superchainpy,superchain,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +opennota/check,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +opennota/re2dfa,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +opennota/screengen,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +custom_components/uptimerobot,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +eLeCtrOssSnake/GMOD-Magic-Carpets,eLeCtrOssSnake,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Xynnect/MarkdownRumianaCV,Xynnect,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +BurkHufnagel/learningloop,BurkHufnagel,JavaScript,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +bunnyblue/AndroidSDKMirror,bunnyblue,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +moodlenet/clients/react,moodlenet,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +timvisee/cant-touch-this,timvisee,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +lucj/sophia.events,lucj,CSS,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +elziojr/jhipster-playground-registry,elziojr,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,TRUE +hrbrmstr/curlparse,hrbrmstr,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alelain/atti-snake,alelain,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bitingbytes/onion-engine,bitingbytes,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ubcuas/Smurf,ubcuas,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +haoict/searchable-book-fullstack,haoict,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +HeavyLightStudios/HLSWebComponents/Heavy-Navbar,HeavyLightStudios,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +philstollery/bristol-ki-aikido,philstollery,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eval/otarta,eval,Clojure,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,TRUE +luxish/cv-luxish,luxish,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ld18bari/linuxday,ld18bari,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kilik/tools/mysql-filter-dump,kilik,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ablu/mana_elixir,ablu,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +donatocardoso/snake-game,donatocardoso,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +hosweetim/timx-site,hosweetim,TypeScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +ehsaan/ehsaan.me,ehsaan,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +1MansiS/JavaCrypto,1MansiS,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fiveop/krautschluessel,fiveop,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +openrail/uk/stomp-client-nodejs,openrail,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +zieone/comic,zieone,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dylanbstorey/maev,dylanbstorey,Python,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,TRUE +pibigstar/Mybatis,pibigstar,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +maalni/crunchysync,maalni,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +n0r1sk/docker-volume-glusterfs,n0r1sk,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Dog2puppy/Roblox-Ads,Dog2puppy,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tdillon/wig,tdillon,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +echocat/echocat.org,echocat,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fredriklarsen/AirBrush,fredriklarsen,Kotlin,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +Acklen/glee2,Acklen,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +pkuyken/hexmap-generator,pkuyken,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +amy-assistant/amy-assistant.gitlab.io,amy-assistant,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +amy-assistant/graphics,amy-assistant,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dbohdan/hosts,dbohdan,Tcl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +uilianries/native-floripa,uilianries,CMake,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +jsonsonson/in-command,jsonsonson,JavaScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +multicloud-openstack-k8s/app,multicloud-openstack-k8s,HTML,TRUE,FALSE,FALSE,9,TRUE,TRUE,FALSE,TRUE +MaxIV/web-maxiv-tangogql,MaxIV,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fufuhu/hands_on_sample,fufuhu,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +homescreen.rocks/lanpartyscreen-beamer,homescreen.rocks,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +morimekta/idltool,morimekta,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,TRUE +abduljamiasi2014/testapp,abduljamiasi2014,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +diggan/archiveteam-infra,diggan,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +danielgaston/converse,danielgaston,Objective-C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bachtungvantung/gitlab-ce,bachtungvantung,Ruby,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +monetha/reputation-go-sdk,monetha,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phygitalproject/phygitalproject.gitlab.io,phygitalproject,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gopherburrow/mux,gopherburrow,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gopherburrow/proxyheaders,gopherburrow,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gopherburrow/csrfcookie,gopherburrow,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pothitos/Java_Pipeline,pothitos,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Nooka10/local-food,Nooka10,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +tref/drupal-kubernetes-builder,tref,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +perswayable/bot,perswayable,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alxnophis/yu,alxnophis,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dunossauro/batatinhas,dunossauro,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RLesur/pulpdown,RLesur,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +FlatBuffersX/flatbufferx,FlatBuffersX,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +toonaive0618/guile-zmq,toonaive0618,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rusben/smx-m08-uf5,rusben,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +interscity/health-dashboard/datahealth-api,interscity,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +sailfishos-porters-ci/cancro-ci,sailfishos-porters-ci,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sailfishos-porters-ci/mido-ci,sailfishos-porters-ci,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sailfishos-porters-ci/onyx-ci,sailfishos-porters-ci,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +districted/web-client,districted,TypeScript,TRUE,FALSE,FALSE,6,FALSE,FALSE,FALSE,FALSE +districted/auth-server,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/district-command-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/district-query-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/api-gateway,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/configuration-server,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/discovery-server,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/feedback-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/message-command-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/message-query-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/media-read-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/media-write-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/profile-command-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/profile-query-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +districted/notification-service,districted,Java,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +Aexol/graphql-editor,Aexol,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +goauth/dex,goauth,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gioxa/odagrun/website,gioxa,HTML,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +jorgecarleitao/schemaflow,jorgecarleitao,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +Lepardo/SimpleWebSpider-Android,Lepardo,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Lepardo/chestrucon,Lepardo,Awk,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Lepardo/simplewebspider,Lepardo,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +rbuer2007/ideas,rbuer2007,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +OctoNezd/autogram,OctoNezd,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ahmad_fauzan458/story,ahmad_fauzan458,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +2ndkauboy/gitlab-ci-git-deploy,2ndkauboy,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +mygnu/spark_post,mygnu,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Hurds/python-book,Hurds,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Hurds/C-Book,Hurds,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +latex-template/thesis,latex-template,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +TollStudios/justanothernetworklib,TollStudios,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +leggettc18/fundwarrior,leggettc18,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tubtech/ts/ci,tubtech,TypeScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +diamondburned/go-nhentai,diamondburned,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +c57fr/c57,c57fr,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +joseporto/carbon-vue,joseporto,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +leopardm/dnd,leopardm,Python,TRUE,TRUE,FALSE,2,FALSE,FALSE,FALSE,TRUE +darinamanda/ppwlab,darinamanda,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sarsyifa/ppw-syifa,sarsyifa,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +serphacker/webace,serphacker,Java,TRUE,FALSE,TRUE,4,TRUE,TRUE,TRUE,FALSE +burdickjp/burdickjp.gitlab.io,burdickjp,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +hexLucifer/hexlucifer.gitlab.io,hexLucifer,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gtrias/genar-radio,gtrias,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +webwirtschaft/structured-content,webwirtschaft,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zimmalex/git-lab-create-react-app,zimmalex,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +IT-Berater/twmindmapgenerator,IT-Berater,HTML,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,FALSE +mike-koch/hitman-maps,mike-koch,,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +Mishio595/disml,Mishio595,OCaml,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ci-and-cd/maven-build,ci-and-cd,Shell,TRUE,FALSE,TRUE,5,TRUE,TRUE,FALSE,TRUE +jorgemurta/docker-for-laravel,jorgemurta,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dark_rotations/dark_addon,dark_rotations,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gioxa/build-images/build-rpmbuild-ruby,gioxa,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +JohnPirate/image-editor,JohnPirate,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nikko.miu/jest-simple-summary,nikko.miu,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sequence-point/open-source/libirina,sequence-point,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +spare-time-demos/project-template,spare-time-demos,Java,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +gioxa/rpm-build/ruby,gioxa,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mek-manager/core-client,mek-manager,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Timdx/giweb-lab2,Timdx,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aswinshenoy/inctf-from-bs4,aswinshenoy,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mtishauser/leadership-track-pipeline,mtishauser,Python,TRUE,TRUE,FALSE,2,FALSE,FALSE,TRUE,FALSE +zackfalcon/dashboard-epitech,zackfalcon,JavaScript,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +franjmartin21/mysmartlocker,franjmartin21,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lytedev/elixir_gameserver,lytedev,Elixir,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gioxa/build-images/centos7-ruby-node,gioxa,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +adrianrobotka/moth-server,adrianrobotka,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +multicloud-openstack-k8s/clusters,multicloud-openstack-k8s,HCL,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +cedrickrause/cmn-tls,cedrickrause,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nickdaly/cs736-p2,nickdaly,TeX,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +b0/libqtolm,b0,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +FullStacker/learningnodejs,FullStacker,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +flectra-community/devops/oca2fc,flectra-community,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SER401_Team8/educational-augmented-reality,SER401_Team8,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +luxish/node-seed,luxish,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mbarkhau/lib3to6,mbarkhau,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tabos/tvguide,tabos,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Skalman/river-rss,Skalman,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +oleh.kurachenko/cv-skills-updator,oleh.kurachenko,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +akori/tenjinr,akori,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xavierbaude/hello-world,xavierbaude,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +grigorye/URLHelperApp,grigorye,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +snesjhon/snesjhon.gitlab.io,snesjhon,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +richjyoung/challenges,richjyoung,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ryanpavlik/cxxgraph,ryanpavlik,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mbarkhau/straitjacket,mbarkhau,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sequence-point/open-source/libunittest,sequence-point,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +PalouseRobosub/Software/robosub,PalouseRobosub,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jonathanGuzman/ibm-recognition,jonathanGuzman,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +oleh.kurachenko/jetbrains-filetemplates-sync,oleh.kurachenko,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +N-Lang/N-Lang,N-Lang,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Fifal/pia,Fifal,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +let-me-help/letmehelp-backend,let-me-help,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +opentracing-workshop/spring-petclinic-kubernetes,opentracing-workshop,Java,TRUE,FALSE,TRUE,4,TRUE,FALSE,TRUE,TRUE +merrickluo/fehstats,merrickluo,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +herber523/scylladb-k8s,herber523,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +huhn/piri-web,huhn,Vue,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +iisafriyanti/mynewdjango,iisafriyanti,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thengOS/coming-soon-website,thengOS,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tcherivan/ice-db,tcherivan,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +ID4me/id4me-rp-client-python,ID4me,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +debuglevel/monitoring-microservice,debuglevel,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +SnejUgal/tbot,SnejUgal,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +web3j/web3j,web3j,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +marion-deveaud/python-web-apps,marion-deveaud,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +datadrivendiscovery/simple-ta3,datadrivendiscovery,Vue,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +E3-PPW-1/storytugas1,E3-PPW-1,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +ognarb/docugen,ognarb,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ilcine/ilcine.gitlab.io,ilcine,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tp-ppw/tp1_ppw_2018_2019_1,tp-ppw,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +btc_simon/bitmex-api-dashboard,btc_simon,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ghostwriter-deb/ghostwriter-deb,ghostwriter-deb,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +FarrasHakim/a5,FarrasHakim,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +crane-game/controller-arduino,crane-game,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fuchsia/fuchsia.gitlab.io,fuchsia,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +engalar/docker-android,engalar,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Khiyara/ppw-lab-2,Khiyara,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +IgorPolyakov/try_uchi_ru,IgorPolyakov,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +2heoh/casino,2heoh,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sofreeus/aghi2gitlab,sofreeus,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +thefinn93/piston-go,thefinn93,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +braneproject/Bitcoin.jl,braneproject,Julia,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +quandoo-recruitment/senior-android-engineer,quandoo-recruitment,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +m3m3nto/zorbalinux,m3m3nto,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mdimo/mdimo.gitlab.io,mdimo,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/unicode-bom,philbooth,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +inivation/caer,inivation,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +apartment1/jakir,apartment1,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +iprods-os/guild,iprods-os,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +cornerstone_vancouver/wadp411/projects,cornerstone_vancouver,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +faya/happy-trigger-phaser-3,faya,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dtjm/linky,dtjm,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hev/hev-rinput,hev,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MaryChelo/data_science_from_scratch,MaryChelo,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +allthethings/deployments/spinnaker,allthethings,Shell,TRUE,FALSE,TRUE,4,FALSE,FALSE,FALSE,FALSE +amritpandey/the-c-programming-language,amritpandey,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cape-modeler/frontend,cape-modeler,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +crane-game/wii-reciver,crane-game,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +edwindj/crandeps,edwindj,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nylsoo/razzle-typescript-express-boilerplate,nylsoo,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +surister/misty-hats-3code-jam-tests,surister,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thomasmendez/cs329e-idb,thomasmendez,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +utf-crawler/utf-crawler,utf-crawler,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Morriar/inf3135-183-tp2,Morriar,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Isleward/isleward-webview-client,Isleward,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zhiymatt/zhiymatt.gitlab.io,zhiymatt,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xldrkp/kollaboratives-schreiben,xldrkp,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fudaa/fudaa-prepro,fudaa,Java,TRUE,FALSE,TRUE,4,TRUE,TRUE,TRUE,TRUE +fudaa/fudaa-framework,fudaa,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,TRUE,TRUE +fkrull/rust-libostree,fkrull,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +fudaa/fudaa-crue,fudaa,Java,TRUE,FALSE,TRUE,3,FALSE,TRUE,TRUE,TRUE +philipstaffordwood/karate-tests-for-bvnk-api,philipstaffordwood,Gherkin,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +zellepj/philipp.zelle,zellepj,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ciniml/ultra96_debian,ciniml,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +yumingchang/pi,yumingchang,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PushFish/PushFish-Landing,PushFish,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Xterat/sample-gitlabci-cpp-project,Xterat,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +burakb/hello-world,burakb,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,TRUE +semaio/salesforce-connector-php,semaio,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +davereid/vote,davereid,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +MatiAedo/club-de-la-lucha,MatiAedo,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-examples/ruby-openshift-example,gitlab-examples,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +licence-mmi/projetweb_stationservice,licence-mmi,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kuzmych/kuzmych.gitlab.io,kuzmych,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ZingO-Labs/webextension,ZingO-Labs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Defite/nuxt-wp-docker,Defite,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dark0dave/beam-eloquent-shakespeare,dark0dave,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +european-data-portal/mqa-metric-service,european-data-portal,Java,TRUE,FALSE,TRUE,6,FALSE,FALSE,FALSE,FALSE +fer-rum/fdl-for-noobs,fer-rum,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +t.datebashvili/enbuscadelafelicidad,t.datebashvili,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +riffraph/road-mapping,riffraph,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ciniml/ultra96_kernel,ciniml,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +simulant/simulant,simulant,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +YuRaNnNzZZ/findhooks,YuRaNnNzZZ,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jdierberger1/tree-markup-language,jdierberger1,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mtnygard/m2m.modlog,mtnygard,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +diamondburned/forematerial,diamondburned,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Danno131313/actix-ratscrew,Danno131313,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +vitvickiy/news_maker,vitvickiy,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +iandesj/pingpong,iandesj,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tweet.dimitri/jga,tweet.dimitri,Java,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +tereshko/chicken,tereshko,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mjkochell/music-sniper,mjkochell,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +software-garden/software-garden.gitlab.io,software-garden,Elm,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +albert_einstein/kwasm,albert_einstein,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +intangiblerealities/narupa-server,intangiblerealities,C#,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +lisaac/vue-pm,lisaac,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oliverkeeble/code-jam-3,oliverkeeble,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +biskette/code-jam-3,biskette,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tagptroll1/code-jam-3,tagptroll1,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Calinou/gits,Calinou,Nim,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +avhs-suas/pidgin,avhs-suas,CMake,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +leipert-projects/no-thank-you,leipert-projects,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +jebster/portfolio,jebster,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +luis.pinedo22/construyendo-sistemas-de-aprendizaje-de-maquina-con-python,luis.pinedo22,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +acrom18/manjaro-buildiso,acrom18,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +beannaich/psxact,beannaich,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +rafaelcaviquioli/meetup-integracao-continua,rafaelcaviquioli,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +alexandre.tranchant/australian-client,alexandre.tranchant,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +space-essentials/membership,space-essentials,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +bluekay/shopping-list,bluekay,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +KashF/day1,KashF,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +favasconcelos/adidas-color-game,favasconcelos,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +oconomy/ocon,oconomy,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +gitlab-examples/ruby-autodeploy,gitlab-examples,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +bijeshshrestha/googlepay,bijeshshrestha,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +robit.a/toast,robit.a,R,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +botux-fr/docker/grav,botux-fr,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +hypnoglow/example-go-docker-gitlab,hypnoglow,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +KashF/10-photo-gallery,KashF,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +boyzhaotian/server-frontend,boyzhaotian,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +puzle-project/pixelmancer,puzle-project,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jreinert/fogtrack,jreinert,Crystal,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +monnef/beesn,monnef,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sagikazarmark/modern-go-application,sagikazarmark,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +bferoudj/projet_yottayocto,bferoudj,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +briancaffey/verbose-equals-true,briancaffey,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +dunossauro/locaweb-grupy-2018,dunossauro,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bzim/owned-alloc,bzim,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Ash258/scrapers,Ash258,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +hr567/Ana,hr567,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AbiramK/methtimer,AbiramK,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oleh.kurachenko/cpp-algorithms-test,oleh.kurachenko,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +eharastasan/image-gallery,eharastasan,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +oleh.kurachenko/pl-algorithms-test-system,oleh.kurachenko,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +cngroup/training-devops,cngroup,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +ASharpPen/mtaw2_referencesheets,ASharpPen,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +emcrp/src,emcrp,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +akavoukis/meta-gateway,akavoukis,BitBake,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lydra/gitlab-ci-templates,lydra,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lappis-unb/projects/SMI/smi-slave,lappis-unb,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openmicroscopy/incubator/omero-py-alpine,openmicroscopy,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +xenud/tunables,xenud,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adrielsantiago/echarts-proof-of-concept,adrielsantiago,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Alsabila/smartescape,Alsabila,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ghammad/hugo,ghammad,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sat-mtl/telepresence/ui-components,sat-mtl,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cecton/ddssd,cecton,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +homes-made-simple/hms-website,homes-made-simple,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mraxel/m-cubed-live,mraxel,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +oleh.kurachenko/python-algorithms-test,oleh.kurachenko,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ucsd-gitlab/library/ldap_sync,ucsd-gitlab,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +uninen/heimlich,uninen,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AbiramK/numextract,AbiramK,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +erikmd/docker-coq-gitlab-ci-demo-2,erikmd,Coq,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +erikmd/docker-coq-gitlab-ci-demo-1,erikmd,Coq,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +emcrp/emcrp.gitlab.io,emcrp,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +our-sci/documentation,our-sci,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gfelbing/openwall,gfelbing,Vue,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ScrambleSim/Scramble,ScrambleSim,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Artemix/validator,Artemix,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbstringer/owc2,gbstringer,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +assemblea.pdm.collegiomazza/statuto-assemblea,assemblea.pdm.collegiomazza,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +samosaara/desenho_animado_clojure,samosaara,Clojure,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +vtrack/vtrack-webapp,vtrack,Vue,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Firejail/firejail_ci,Firejail,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +souldzin/js-math-creativity,souldzin,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +classtag/recsys,classtag,Vue,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +highside/node-amqp,highside,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +LineageOS/infra/issue-bot,LineageOS,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +DrWursterich/CLI,DrWursterich,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +danobr/pytemplate,danobr,Python,TRUE,TRUE,FALSE,2,FALSE,FALSE,TRUE,FALSE +personal-server-community/personal-database,personal-server-community,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fabrom/clipboardmemo,fabrom,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mwillema/grpc-spring-boot-starter,mwillema,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +mwillema/common,mwillema,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +erb/EDAN95-applied-machine-learning,erb,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phrdxm/o2o,phrdxm,Java,TRUE,FALSE,TRUE,3,FALSE,FALSE,TRUE,FALSE +vrcca-examples/java/spring/configuration-server,vrcca-examples,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +dbkblk/rand_launcher,dbkblk,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +plant/plant,plant,JupyterNotebook,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +404busters/inventory-management/frontend,404busters,Vue,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +stexkcpxelece/zcwcdpqmzemdx,stexkcpxelece,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +zauster/ormisc,zauster,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ksheerasagar17/search-ux-4-selenium-tests-chrome-headless,ksheerasagar17,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +homecontrolsystem/temperatureservice,homecontrolsystem,Go,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +bauripalash/cerium-hugo,bauripalash,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +spatter/spatter,spatter,Kotlin,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +gdroid/gdroiddata,gdroid,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +AyaCross/komodev-air-do,AyaCross,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wsd-l-2018z/sewagediscount,wsd-l-2018z,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +gioxa/fake_arch,gioxa,Shell,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +mwillema/eventstore,mwillema,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +reaktivo/callbag-interval-immediate,reaktivo,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +X99/swiftnmeaparser,X99,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +knative-examples/knative-ruby-app,knative-examples,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kottkrig/teckenlingo,kottkrig,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +q4d/vote-app,q4d,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,TRUE +Heyyiou/nuit-de-l-info-not-another-name,Heyyiou,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mkdk/cidemon,mkdk,Python,TRUE,TRUE,FALSE,3,TRUE,FALSE,FALSE,FALSE +augfab/game-of-life,augfab,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +MatteoCampinoti94/faapi-go,MatteoCampinoti94,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +poof/swisscheese,poof,,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +VincentTam/bhdemo,VincentTam,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +msaby/atelier-openrefine-MASA,msaby,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alantrick/django-adminstats,alantrick,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +srrg-software/srrg_hbst_examples,srrg-software,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aaratika/cactus,aaratika,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thesoy_sauce/http-echo,thesoy_sauce,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ronron22/ngbs,ronron22,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +mirabeau/cloud-framework/aws-vpc,mirabeau,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dagrende/rpn3d,dagrende,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +diamondburned/gobat-cli,diamondburned,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ubports/app-dev/music-app,ubports,QML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gimerstedt/hotkey-overlay-aurelia,gimerstedt,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +RJain12/rishab-jain,RJain12,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tereshko/labyrinth,tereshko,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +andybalaam/cross-the-road,andybalaam,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +markus-wa/demoinfocs-wasm,markus-wa,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dns2utf8/live_timetable_server,dns2utf8,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +veenj/cinit,veenj,Rust,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +bauripalash/lhqs,bauripalash,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +fredrik.svard/nightstar,fredrik.svard,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +neilspink/aws-lambda-price-grabber,neilspink,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +walt.moorhouse/myplus,walt.moorhouse,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +sebadebona/density-dependent-dispersal,sebadebona,R,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tionis/uni-passau-bot,tionis,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +kommunalcrowd/platform,kommunalcrowd,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +skydome/istanbot,skydome,Go,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +Mesabloo/webdoc,Mesabloo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Booteille/privacytools,Booteille,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vanderhoofen/diagnostics,vanderhoofen,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dekku/dekku.gitlab.io,dekku,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Niloc37/traceanalyzer,Niloc37,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +vectoridau/awebus,vectoridau,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +developer-utilities/restrabbit,developer-utilities,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +mathomp4/PreciseSum,mathomp4,Fortran,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +shenjian74/autoproxy.pac,shenjian74,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +developer-utilities/signalr-recorder,developer-utilities,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +mhausenblas/imgn,mhausenblas,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +snesjhon/singlemd,snesjhon,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hristokgj/automata-builder,hristokgj,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +4LT/gif2spr,4LT,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +karel-houf/react-face-detection,karel-houf,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vindarel/replic,vindarel,CommonLisp,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +spoorcc/rocketmock,spoorcc,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +csui-kominfo-digitalent/calculator-web-api,csui-kominfo-digitalent,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +LazyBun/2pietro,LazyBun,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mindroot/projects,mindroot,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +chriseaton/gitlab-ci-example-go,chriseaton,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +smc/mlmorph-web,smc,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Vishwas-Adiga/LibreHealth,Vishwas-Adiga,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +masterspline/build2-linux-packages,masterspline,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mardy/qqc2-desktop,mardy,QML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Starrzan/single-page-mockup,Starrzan,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chrysn/sealingslice,chrysn,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +whoisniek/niekkeijzer.com,whoisniek,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ruivieira/naive-bayes,ruivieira,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +lodi-g/spotify-control-chrome-extension-backend,lodi-g,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +amrelk/frcds,amrelk,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +miraj09/to-do-app,miraj09,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +intr0/DNSCrypt-BLACKLIST,intr0,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +daksh7011/eagle,daksh7011,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kinnison/cassava,kinnison,Rust,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +clinton.lawrence2/hockey-alert,clinton.lawrence2,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +srrg-software/srrg2_integration_testing,srrg-software,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +harshniketseta/cricket-scorer-ui,harshniketseta,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +stabfem/StabFem,stabfem,Matlab,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +abiproject/abisuite,abiproject,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +tegila/j2m,tegila,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sesela/multi-spring-startup-mybatis,sesela,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +neosun100/ubuntu_init,neosun100,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +jlecomte/gl-webhooks,jlecomte,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +debuglevel/bookmetadata-microservice,debuglevel,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +ruivieira/random-forests,ruivieira,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +remcohaszing/eslint-formatter-gitlab,remcohaszing,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +hathi-social/hathi-protocol,hathi-social,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +oleh.kurachenko/cpp-architecture-test,oleh.kurachenko,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sebidude/public-page,sebidude,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +edricus/minetest-garage,edricus,RPC,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jswhetstone/cposc-2018,jswhetstone,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ccrpc/ccrpc-charts,ccrpc,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mindroot/quests,mindroot,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +agunkeka900/literasi,agunkeka900,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +JeSuisUnDesDeux/jesuisundesdeux-website,JeSuisUnDesDeux,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +reuse/reuse,reuse,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +aurorafossorg/apps/be-happy,aurorafossorg,Dart,TRUE,FALSE,FALSE,13,TRUE,TRUE,FALSE,TRUE +arasari/backend-framework,arasari,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +arasari/frontend-framework,arasari,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +danielkraic/version-id,danielkraic,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +brunoamancio/vulcan,brunoamancio,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tvo/csharpimmutabilitytest,tvo,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +tblah/rustylisp,tblah,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ThomasVestergaardFredsted/MemExchange-dotnetcore,ThomasVestergaardFredsted,C#,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +eristic/kashimashi,eristic,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Zebatuq/zfh,Zebatuq,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +datalocale/dataviz-migration-gironde,datalocale,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +kelompok1-PPWC/kelompok1_ppwc,kelompok1-PPWC,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tigrr/circle-progress,tigrr,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ubports/app-dev/gallery-app,ubports,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +debuglevel/omnitrackerdocumentation-microservice,debuglevel,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +Crumble/pokemon-shiny-calculator,Crumble,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rancher1/wp1-build/wordpress1-template,rancher1,Smarty,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +codingstones1/ndi-front,codingstones1,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +karel-houf/movie-app,karel-houf,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aimber/ScreenPlayDocs,aimber,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zerok/container-inventory,zerok,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +amplab/ampherman,amplab,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +brendan/hnsuite,brendan,CSS,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +stavros/pysignald,stavros,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +uplex/varnish/k8s-ingress,uplex,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +proot/proot,proot,C,TRUE,FALSE,FALSE,5,FALSE,FALSE,TRUE,FALSE +BuildGrid/buildbox/buildbox-worker,BuildGrid,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +shoppr/shoppr.api,shoppr,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +UnicornPowered/AWS-Client-Bootstrap,UnicornPowered,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +dashohoxha/101-problema-programimi,dashohoxha,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +finwo/ws-rc4,finwo,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +devopspbs/kerberos-manual,devopspbs,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kevinpiac/cmsjs-front,kevinpiac,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +ae-dir/python-aedir,ae-dir,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +postmarketOS/mrhlpr,postmarketOS,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cyberfighter-org/environment-readme.md,cyberfighter-org,,TRUE,FALSE,FALSE,13,TRUE,TRUE,FALSE,TRUE +ninjahoahong/unstoppable,ninjahoahong,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +DrWursterich/ResourceManager,DrWursterich,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +dark0dave/template,dark0dave,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +debuglevel/activedirectory-microservice,debuglevel,Kotlin,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +kube-laravel/hellolara,kube-laravel,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +coala/community,coala,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +lavachat/magma,lavachat,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +reclaimid/demo,reclaimid,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +reclaimid/ui,reclaimid,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +rushsteve1/tornado,rushsteve1,Rust,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,TRUE +bahorn/awesome-ci,bahorn,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +jinyexin/core,jinyexin,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jinyexin/corecli,jinyexin,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openProjects/gitlab-project-issues-with-time-gpit,openProjects,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oofga/oofga-pages,oofga,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +devscola/rekaizen,devscola,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mediamoose/async-thumbnail,mediamoose,Python,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +yaal/readonlystorage,yaal,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ShawnWitte/3D-werkomgeving,ShawnWitte,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +magda-data/magda,magda-data,JavaScript,TRUE,FALSE,FALSE,7,FALSE,FALSE,FALSE,TRUE +fluidattacks/asserts,fluidattacks,Python,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,FALSE +norad/UI,norad,Ruby,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +baserock/ybd,baserock,Python,TRUE,TRUE,FALSE,5,TRUE,FALSE,TRUE,FALSE +1git/1git,1git,JavaScript,TRUE,FALSE,FALSE,8,FALSE,TRUE,TRUE,FALSE +precognition-llc/aeonvera-ui,precognition-llc,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fsfe/oidcp,fsfe,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +kimlab/kmtools,kimlab,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +WzukW/oclaunch,WzukW,OCaml,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +rizon/moo,rizon,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +free-electrons-labs/dka-homepage,free-electrons-labs,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +leap/platform,leap,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +agilob/sudokusolver,agilob,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +shared-puppet-modules-group/tor,shared-puppet-modules-group,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +evol/evol-tools,evol,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +ensitools/ensitools,ensitools,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +caro-sdu/caros,caro-sdu,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Screwtapello/bdflib,Screwtapello,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +accounts-sso/libaccounts-qt,accounts-sso,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +accounts-sso/libaccounts-glib,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +structural-fragment-search/super,structural-fragment-search,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jhasse/jngl,jhasse,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +radiognu/radiognu-app,radiognu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +core-utils/core-utils,core-utils,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iggdrasil/ishtar,iggdrasil,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +conradoqg/doc-server,conradoqg,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +calafou/eco-gnomy,calafou,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PascalSmeets/psek-fitnesse-fixtures,PascalSmeets,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +pbek/QOwnNotes,pbek,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +geos/libgeos,geos,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kaliko/python-musicpd,kaliko,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +atrus6/pynoise,atrus6,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dzaporozhets/checked,dzaporozhets,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +s4m-chef-repositories/bind-ddns,s4m-chef-repositories,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robigalia/devbox,robigalia,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +joolean/gzochi,joolean,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stater/node-bridge,stater,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +greysonp/gitlab-ci-android-example,greysonp,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +energyharvesting/angulardf,energyharvesting,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thelabnyc/wagtail_polls,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kwant/kwant,kwant,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +JFT/BT_By_KT,JFT,C++,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +juliancarrivick/band-manager-backend,juliancarrivick,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +NTPsec/www,NTPsec,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-examples/mysql,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +andreas-h/pyatran,andreas-h,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +viu/launchpad,viu,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/teampage-map,gitlab-com,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +dzaporozhets/dzaporozhets.gitlab.io,dzaporozhets,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +baldurmen/genfo,baldurmen,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +usingnamespace/pyramid_authsanity,usingnamespace,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +9000-volts/pages-md-parse,9000-volts,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +homeautomationqt/elisa,homeautomationqt,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vhschlenker/mensa,vhschlenker,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kudos/hostr,kudos,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +buckybox/webstore,buckybox,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jekyll-themes/grayscale,jekyll-themes,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +html-themes/artcore,html-themes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gnutls/libtasn1,gnutls,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/brunch,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +apgoucher/apgmera,apgoucher,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +slashdeploy/blog,slashdeploy,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +trakt/script.trakt,trakt,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +baserock/definitions,baserock,Shell,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +adrianovieira/rapps,adrianovieira,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +hackmildegia/hackmildegia.gitlab.io,hackmildegia,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RKIBioinformaticsPipelines/Mapping,RKIBioinformaticsPipelines,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +nasirkhan/laravel-5-starter,nasirkhan,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +coala/PyPrint,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitmate/bugspots3,gitmate,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eval/respectable,eval,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dnne/proiectsd2,dnne,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +humb1t/anduin,humb1t,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +KodeKreatif/erpiko,KodeKreatif,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jonata/kihvim,jonata,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +smart-city-platform/smart_parking_maps,smart-city-platform,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orvice/ss-panel,orvice,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +sycom/post-Gitlab-issues,sycom,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +smart-city-platform/data_collector,smart-city-platform,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +siasar-project/maps,siasar-project,Scheme,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +slashdeploy/kpis,slashdeploy,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +spice/spice,spice,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +codeandsupply/supplybot,codeandsupply,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +passit/simple-asymmetric-js,passit,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +siasar-project/mobile,siasar-project,CSS,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +PiotrekDlang/DraftLib,PiotrekDlang,D,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pushrocks/smartlog-destination-local,pushrocks,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +sane-project/frontends,sane-project,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +thelabnyc/django-oscar/django-oscar-api-checkout,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DerekKent/derekkent.com,DerekKent,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +digidoci/web/angular-digidoki,digidoci,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +limitland/flatbedcursors,limitland,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +artemklevtsov/benchr,artemklevtsov,R,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +plotnikau/telebotapi,plotnikau,Java,TRUE,FALSE,TRUE,2,FALSE,FALSE,FALSE,TRUE +ArtOfCode/qpixel,ArtOfCode,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dimitrieh/terms-of-service-CI-boilerplate,dimitrieh,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +central-node/CNSS,central-node,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +steve-perkins/fitnessjiffy-spring,steve-perkins,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ETGL/DistriBoissons,ETGL,,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +snowdream/Citest,snowdream,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xymus/sputnit,xymus,Nit,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +twoBirds/twobirds-core,twoBirds,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +pages/zim,pages,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +passit/passit-sdk-js,passit,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +imp/chrono-humanize-rs,imp,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pycqa/infrastructure,pycqa,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nasa-jsc-robotics/val_description,nasa-jsc-robotics,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +pierreduchemin/save-diamond,pierreduchemin,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +angular-material-dashboard/angular-material-dashboard,angular-material-dashboard,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +StanfordLegion/legion,StanfordLegion,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +meteor-columbus/meteor-react-redux-spectacle,meteor-columbus,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/phantom-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +andrewbanchich/hyperspace-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/stellar-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/multiverse-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +andrewbanchich/spectral-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gjhenrique/gjhenrique.gitlab.io,gjhenrique,CSS,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,TRUE +officernd/officernd.gitlab.io,officernd,RAML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +coala/cib,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kylehqcom/kevin,kylehqcom,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BenjaminVanRyseghem/SandGlass,BenjaminVanRyseghem,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +flosscoach/flosscoach,flosscoach,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +spechide/spechide.gitlab.io,spechide,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kevinkhill/lavacharts,kevinkhill,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +almondcms/application,almondcms,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BeayemX/Emblem,BeayemX,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +decko/epracas-backend,decko,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SomeKittens/rx-viz,SomeKittens,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +artemklevtsov/r-alpine,artemklevtsov,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +alexmohr/openmilight,alexmohr,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +adin/mcv-academic,adin,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +emergenzeHack/terremotocentro,emergenzeHack,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +IvanSanchez/Leaflet.Marker.SlideTo,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +interscity/interscity-platform/resource-cataloguer,interscity,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +interscity/interscity-platform/resource-discoverer,interscity,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +morph027/gitlab-ci-aptly-cli,morph027,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dwmw2/openconnect,dwmw2,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IvanSanchez/Leaflet.GridLayer.FadeOut,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ilab-public/python2-scientific,ilab-public,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jahanjoo/angular-jahanjoo,jahanjoo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +frissdiegurke/oddlog,frissdiegurke,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +adin/journal-list,adin,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +willemmali-sh/chegit,willemmali-sh,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +gitlab-cookbooks/gitlab-elk,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,TRUE +stavros/TimeTaco,stavros,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +maxv/pangoling,maxv,CSS,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +atomfrede/jhipster-ci-example-maven,atomfrede,Java,TRUE,FALSE,TRUE,4,TRUE,TRUE,FALSE,TRUE +simonbreiter/issue-tracker-web-view,simonbreiter,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +interscity/interscity-platform/resource-viewer,interscity,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hadrien/aws_lambda_logging,hadrien,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +hbomb79/Titanium,hbomb79,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sebdeckers/babel-plugin-transform-commonjs-es2015-modules,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +amitthekumar/code-and-craft,amitthekumar,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +widerin/vlbg-webdev-1016,widerin,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +robigalia/book,robigalia,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/wagtail-hallo-plugins,thelabnyc,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +abre/cookiecutter-python,abre,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BulbThinker/Ankh,BulbThinker,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +probability/prob140,probability,JupyterNotebook,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +janslow/gitlab-ci-variables,janslow,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nickdonnelly/Horus,nickdonnelly,C++,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +aossie/Scavenger,aossie,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +quantcoin/graphene,quantcoin,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +sf-projects/doc-server,sf-projects,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +IvanSanchez/Leaflet.TileLayer.MBTiles,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +thelabnyc/wagtail-nav-menus,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +somatorio/slides-gui-em-docker,somatorio,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Valtech-Amsterdam/AspnetCoreHoneyPot,Valtech-Amsterdam,C#,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +osslugaru/osslugaru.gitlab.io,osslugaru,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +crondaemon/wireshark,crondaemon,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +catalyst-it/vagrant-puppetfile,catalyst-it,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +craigbarnes/lua-discount,craigbarnes,C,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +serpro/double-agent-validator,serpro,JavaScript,TRUE,FALSE,TRUE,4,FALSE,TRUE,FALSE,TRUE +csprenger/docker-qt-gcc,csprenger,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +angular-material-home/angular-material-home,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Plague_Doctor/spw,Plague_Doctor,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +timlyo/Hitman,timlyo,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +simp/simp-core,simp,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +norad/relay,norad,Ruby,TRUE,FALSE,FALSE,7,FALSE,FALSE,FALSE,FALSE +wdd/rt-sharp,wdd,C#,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +cgmp/gta,cgmp,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +anarcat/stressant,anarcat,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sNewell/thenewells,sNewell,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tdely/freischutz,tdely,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +notch8/stack_car,notch8,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cubekrowd/website,cubekrowd,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tramwayjs/tramway-core,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fwilhe/ingo,fwilhe,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +velmuruganv/ci-api,velmuruganv,Java,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,FALSE +gandra404/vue-hello-world,gandra404,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +roddhjav/pass-import,roddhjav,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +fdroid/jekyll-fdroid,fdroid,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +buildfunthings/qttt,buildfunthings,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bent10/stacked-menu,bent10,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tspiteri/gmp-mpfr-sys,tspiteri,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tvaughan/terraform-aws-starterkit,tvaughan,HCL,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dxld/ghc-mod,dxld,Haskell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +CinemaPress/cinemapress.gitlab.io,CinemaPress,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +inkscape/inkscape-web-i18n,inkscape,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tramwayjs/tramway-core-dependency-injector,tramwayjs,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +exo-one/svst-docker,exo-one,Objective-C,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ezrast/crometheus,ezrast,Crystal,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rlbaker/wav,rlbaker,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Sakuhl/pwgenr,Sakuhl,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +doctorj/interview-prep,doctorj,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +trustworthy-refactoring/refactorer,trustworthy-refactoring,OCaml,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tocodev/parcel,tocodev,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kitlaan/mwoskill,kitlaan,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +PPL2017csui/PPLA3,PPL2017csui,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLB3,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLD4,PPL2017csui,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +PPL2017csui/PPLB4,PPL2017csui,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +PPL2017csui/PPLD3,PPL2017csui,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +exitlive/gitlab-dart,exitlive,Dart,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +revaz/Gtools,revaz,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +revaz/pNbody,revaz,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lumi/minidom-rs,lumi,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +redhat-crypto/fedora-crypto-policies,redhat-crypto,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nucleus-uog/nucleus,nucleus-uog,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +joshlambert/hello-world,joshlambert,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +akita/gcn3,akita,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +memosa/meteor-gitlab-ci,memosa,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sue445/gitlab-meetup-tokyo-1,sue445,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +patkennedy79/picture_video_organizer,patkennedy79,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +perobertson/scripts,perobertson,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +wallzero/ui-router-react-digest,wallzero,TypeScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +neachdainn/aspen,neachdainn,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +mailcare/mailcare,mailcare,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fresheyeball/Compactable,fresheyeball,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +laconfdev/symposion_app,laconfdev,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +house7/bullets,house7,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robblue2x/magnesium,robblue2x,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +eval/lemme-pry,eval,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libidn/libidn2,libidn,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +Trezdog44/mazdatweaks,Trezdog44,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +makeorg/platform/semantic-api,makeorg,Scala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +blitzgren/gitlab-game-demo,blitzgren,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +f1ssi0n/F1-source-sdk-2013,f1ssi0n,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +projectbodhi/projectbodhi.gitlab.io,projectbodhi,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +somatorio/cv,somatorio,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +grails-3-book/asciibooks,grails-3-book,CSS,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pantomath-io/panto,pantomath-io,Go,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +kollavarsham/smc-webfonts,kollavarsham,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ismail-s/JTime,ismail-s,Kotlin,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,FALSE +endymuhardin/belajar-gitlab-ci,endymuhardin,,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +roddhjav/pass-tomb,roddhjav,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Ambraven/TootFic,Ambraven,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TSnake41/darkbox,TSnake41,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +smondet/misuja,smondet,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +spindp14/spindp14,spindp14,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jeremlvt/dawn_arrival,jeremlvt,Nit,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fftr/forteso,fftr,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +encripta/encripta.gitlab.io,encripta,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +czechitas/kurz_web,czechitas,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +reusable-tools/barebone-plugin,reusable-tools,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tottokotkd/napoleon-blue.gitlab.io,tottokotkd,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +INTER-Mediator/INTER-Mediator,INTER-Mediator,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gbraad/fedora-wsl,gbraad,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +td7x/s6,td7x,TypeScript,TRUE,FALSE,FALSE,5,TRUE,FALSE,TRUE,FALSE +blueoakinteractive/boi_ci,blueoakinteractive,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +wallzero/react-digest,wallzero,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +susurrus/fat-rs,susurrus,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +commonshost/cli,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dewet/ensmallen,dewet,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +andreascian/python-test-1,andreascian,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SklaveDaniel/BeatmeterGenerator,SklaveDaniel,Scala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-examples/cross-branch-pipelines,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +abonnet/pasclang,abonnet,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jlalande/vue-auth-image,jlalande,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +drakonka/gosnaillife,drakonka,Go,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +winni/angular-sudoku,winni,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nobodyinperson/simbuto,nobodyinperson,R,TRUE,FALSE,FALSE,5,TRUE,FALSE,TRUE,FALSE +bennyp/polymer-test,bennyp,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +movie_thumbnailer/mtn,movie_thumbnailer,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ercom/cijw4gitlab,ercom,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bikespace/Bicycle-parking,bikespace,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +paulgibbs/bporg,paulgibbs,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fyi-project/fyi-help,fyi-project,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +monashdiversit/monashdiversit.gitlab.io,monashdiversit,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ahamtech/coap/aadya,ahamtech,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +bennya/shrink-path.el,bennya,EmacsLisp,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ysb33rOrg/grolifant,ysb33rOrg,Groovy,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +JAForbes/manuel,JAForbes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rawsec/rawsec-cybersecurity-list,rawsec,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nokwin/freshcode-moderator,nokwin,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Johnsoct/andybeverlyschool,Johnsoct,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tg-team/methoden,tg-team,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +khmercoders/khmercoders.io,khmercoders,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +passit/passit-mobile,passit,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Marnes/public-ip-display,Marnes,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +wengych/gitflow-ci,wengych,Kotlin,TRUE,FALSE,TRUE,3,TRUE,FALSE,TRUE,FALSE +kutelev/gost_forms,kutelev,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +typemytype/robofont_com,typemytype,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Baasie/serenityjs-rest-example,Baasie,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +4geit/swagger-packages,4geit,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +hydrasoftware/hydra,hydrasoftware,PLpgSQL,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nicopaez/memo2-2017,nicopaez,Ruby,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +brianegan/flutter_redux,brianegan,Dart,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +smondet/vimebac,smondet,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sinajames/resume,sinajames,TeX,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +ykyuen/gitlab-ci-demo,ykyuen,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +cardoe/enum-primitive-derive,cardoe,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +petejohanson/fore-scorer,petejohanson,F#,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +somlabs/somlabs-buildroot,somlabs,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MazeChaZer/json-bouncer,MazeChaZer,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +librespacefoundation/satnogs/satnogs-pi-gen,librespacefoundation,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +izznfkhrlislm/ppw-lab,izznfkhrlislm,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +cold-icy-ice/epitaph,cold-icy-ice,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Glenans-CDMEB/Guide-CDMEB,Glenans-CDMEB,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-org/openssh-packages,gitlab-org,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +derhansen/comments,derhansen,PHP,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +sampadashboard/sampa-smart-map,sampadashboard,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orvium.io/token,orvium.io,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitaly-bench,gitlab-org,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +librespacefoundation/pqws/pqws-main-sw,librespacefoundation,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +JAForbes/hickery,JAForbes,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +EAVISE/brambox,EAVISE,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +quarmony-free-html/veggie,quarmony-free-html,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +apparently/readonly/fdroid-data,apparently,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nobodyinperson/python3-meteorology,nobodyinperson,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +IonicZoo/bird-format-pipe,IonicZoo,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mbarbry/python-scalapack,mbarbry,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +subins2000/subinsb.com,subins2000,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ninjin/ninjin.gitlab.io,ninjin,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +interscity/health-dashboard/health-smart-city,interscity,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +dspechnikov/django-slugger,dspechnikov,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +failmap/admin,failmap,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,TRUE +kachkaev/website-graphql-server,kachkaev,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +arthurmoore85/pi_romulus,arthurmoore85,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tijsg/swagger-template,tijsg,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +monetha/trust-reputation-smart-contracts,monetha,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tripetto/examples/react-material-ui,tripetto,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pygotham/2018,pygotham,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fdroid/fdroidclient-nightly,fdroid,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paulcarroty/atom-rpm-deb-mirror,paulcarroty,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +MatthiasHu/kategorientheorie-WS1718,MatthiasHu,TeX,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +thelabnyc/django-vault-helpers,thelabnyc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wondermonger/koa-session-mongoose,wondermonger,JavaScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,TRUE +iotmgmt/rest-api,iotmgmt,Scala,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +CLIUtils/CLI11Tutorial,CLIUtils,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fdroid/fdroid-website-search,fdroid,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,TRUE +Freika/random_newsletter,Freika,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +southwestohiogivecamp/drug-inventory,southwestohiogivecamp,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +shu-iro/studb,shu-iro,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mpapp-public/couchbase-lite-node,mpapp-public,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alelec/aioeasywebdav,alelec,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +boats/failure,boats,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +timtizio/Bookmark-Manager,timtizio,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Dreae/luajit-rs,Dreae,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +yorickpeterse/ruby-ll,yorickpeterse,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VV5/food-security,VV5,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +code-stats/code-stats-zsh,code-stats,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +schmidt.simon/hypothesis-drf,schmidt.simon,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jimschubert/barebones-ebook,jimschubert,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +barzilay/gitlab-cucumber-selenium-ci-test-setup,barzilay,Gherkin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +djm.im/nlf,djm.im,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +devscola/consensus,devscola,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kornelski/wild,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cloud-oscilloscope/qtloscope,cloud-oscilloscope,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fboisselier52/eureka-synchronizer,fboisselier52,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +distributopia/fetch-the-badge,distributopia,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kornelski/dunce,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wallzero/jsplumb-react,wallzero,TypeScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +distributopia/all-logos-in-one-basket,distributopia,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +4U6U57/wsl-open,4U6U57,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +k0001/xmlbf,k0001,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +clojurebridge-mn/clojurebridgemn.org,clojurebridge-mn,Clojure,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +wolphin/wolphin,wolphin,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,FALSE +unused/geo-chat,unused,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +evanp/activitypub-mock,evanp,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SirEdvin/docker-prometheus-exporter,SirEdvin,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,TRUE +gitlab-org/gl-performance,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +baldurmen/puppet-borg,baldurmen,Puppet,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +zoomonit/greenpepper,zoomonit,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +moy/generate-skeletons,moy,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nilenso/relay-backend,nilenso,Clojure,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +IAI-GL3-17-18/TP-SIG-GROUPE-8,IAI-GL3-17-18,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sscherfke/aiomas,sscherfke,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +TortueMat/jira-issue-bot,TortueMat,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +infomasternotes/Svigruppo,infomasternotes,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Calinou/godot-builds-ci,Calinou,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +beardog/Onionr,beardog,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sinclair2/lecert,sinclair2,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +rpadovani/my-gitlab-ci,rpadovani,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +islands-wars/research/crochet,islands-wars,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Orange-OpenSource/ScriptSuiteForAnsible/keepalived,Orange-OpenSource,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +clearglass/clearglass-community,clearglass,HTML,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +rilis/rili/json,rilis,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +artur-scholz/clubhub,artur-scholz,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CapsAdmin/goluwa,CapsAdmin,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nd-cse-20289-sp18/cse-20289-sp18-website,nd-cse-20289-sp18,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +open-pipeline/open-pipeline.gitlab.io,open-pipeline,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +radek-sprta/mariner,radek-sprta,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +AOBlockchain/aoblockchain.io,AOBlockchain,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kamilgregorczyk/instalike,kamilgregorczyk,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +guardianproject/checkey,guardianproject,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Manu343726/clang-conan-packages,Manu343726,Python,TRUE,FALSE,FALSE,55,FALSE,FALSE,FALSE,FALSE +seattlelinux/gslug,seattlelinux,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TMW2/serverdata,TMW2,C,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +xaviuzz/kanbang,xaviuzz,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +materials-modeling/vcsgc-lammps,materials-modeling,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +SirEdvin/sanic-oauth,SirEdvin,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +agamigo/material,agamigo,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cyberbudy/django-postie,cyberbudy,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,TRUE +xianbaum/red-x,xianbaum,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gravoo/my_game,gravoo,HTML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fdroid/basebox,fdroid,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tnir/docs.djangoproject.jp,tnir,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-cookbooks/gitlab_fluentd,gitlab-cookbooks,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +fkumro/lake_effect,fkumro,Elixir,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fkumro/thunder_snow,fkumro,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Kwilco/konosuba-gifs,Kwilco,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +ekaitz-zarraga/talks,ekaitz-zarraga,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vindarel/cl-bookshops,vindarel,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +thelabnyc/wagtail_blog,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stephane.codazzi/power5online,stephane.codazzi,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +trustable/documents,trustable,,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +drypack/main,drypack,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fdroid/android_vendor_fdroid,fdroid,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jparaque/meetup,jparaque,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dataengi/marketing/www.dataengi.com,dataengi,HTML,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +crconte/opx,crconte,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +balazs4/gitlab-pipeline-monitor,balazs4,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +docker-hub/texlive,docker-hub,Shell,TRUE,FALSE,FALSE,6,FALSE,TRUE,FALSE,FALSE +dickoa/rhdx,dickoa,R,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +PPL2018csui/Kelas-D/PPL2018-D3,PPL2018csui,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +PPL2018csui/Kelas-D/PPL2018-D5,PPL2018csui,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +ahrs/gentoo-stuff,ahrs,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +msvechla/vaultbeat,msvechla,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +lortet/AndroidBaseProject,lortet,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +souissi.anis/ng-super-heroes,souissi.anis,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +zcash-docs/zcash-docs,zcash-docs,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +chowner/investogator,chowner,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tezos/tezos-faucet,tezos,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +glorwinger/nwnsc,glorwinger,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jensj/myqueue,jensj,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CaflischLab/CampaRi,CaflischLab,R,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +mkjeldsen/commitmsgfmt,mkjeldsen,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DBotThePony/DBotProjects,DBotThePony,Lua,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +publicmarket/public-market-storefront,publicmarket,Ruby,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +gitlab-org/gitlab_kramdown,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +danieltorrer/danieltorrer.gitlab.io,danieltorrer,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +PrajjwalDimri/itg-cse-web-tech,PrajjwalDimri,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mkjeldsen/git-mr-to,mkjeldsen,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tkpapp/GitlabJuliaDemo.jl,tkpapp,Julia,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +oax/dex-poc,oax,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pathfinder-fr/pf2-jekyll,pathfinder-fr,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vsu/avs/backend,vsu,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +angreal/angreal,angreal,Python,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +onepoint/junit-5-extensions,onepoint,Java,TRUE,FALSE,TRUE,5,FALSE,FALSE,FALSE,FALSE +cajen/cajen,cajen,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +onepoint/onecss,onepoint,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +fathom/bridger,fathom,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mamyn0va/php-template,mamyn0va,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Hardroid/GdgAndroidSantiagoCI,Hardroid,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +upbhack/upbhack.gitlab.io,upbhack,Verilog,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +valeth/discord-rpc-client.rs,valeth,Rust,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +dxld/cabal-helper,dxld,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Cayan_HacktheHub/TamaTrainer,Cayan_HacktheHub,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +beskhlebnyi/bes-todo-list,beskhlebnyi,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PerplexedPeach/dynamic-avatar-drawer,PerplexedPeach,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +aapjeisbaas/spot-ecs,aapjeisbaas,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +srikanthlogic/gstin-validator,srikanthlogic,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +t3r/mpmap,t3r,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gilrs-project/gilrs-core,gilrs-project,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +devscola/asesora,devscola,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +net-as-artwork/networking,net-as-artwork,Makefile,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +igrep/main-tester,igrep,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +all-mangas-reader/all-mangas-reader-2-mirrors,all-mangas-reader,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +teonite/inspectr,teonite,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +gdevops/tuto_docker,gdevops,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jpotisch/petbooth,jpotisch,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +denkmal/denkmal-website,denkmal,Vue,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +sAnIc-ND/sAnIc,sAnIc-ND,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Cacophony/Gateway,Cacophony,Go,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,FALSE +uweschmitt/pytest-regtest,uweschmitt,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +coq/coq,coq,OCaml,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +publishing-reform/publishing-reform.gitlab.io,publishing-reform,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +smc/fonts/gayathri,smc,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +it_schoolprojects/informatikprojekt/marsme,it_schoolprojects,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ardilabs/sams-garden,ardilabs,HTML,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +lupine/purple-plugin-delta,lupine,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gedl/phaser-tiled-physics,gedl,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +teamanubot/LineEtotJS,teamanubot,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +brukhabtu/femtow,brukhabtu,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +danielhones/pycategories,danielhones,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +librehealth/lh-toolkit-webcomponents,librehealth,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +coala/bears/coala-antlr,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +meesvandongen/gitlab-pages-react-app,meesvandongen,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +BrawlDB/frontend,BrawlDB,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +Haldoryn/DHBWTemplate,Haldoryn,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mihails.strasuns/dtoh,mihails.strasuns,D,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +plut0n/MLNL,plut0n,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chris-olbrich/emacs-reveal-transaction-processing,chris-olbrich,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dfederschmidt/docker-pipenv-sample,dfederschmidt,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +h5cli/h5cli,h5cli,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ggggabri/browser-startpage,ggggabri,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +angular-material-home/apps/my-home,angular-material-home,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +aquachain/aquachain,aquachain,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gabmus/HydraPaper,gabmus,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +philbooth/hoopy,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ZeroDot1/Startpage,ZeroDot1,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ColinKinloch/LatinIME_apk,ColinKinloch,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zavan/monetus-fia-bot,zavan,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cyberatuc/cyberatuc.org,cyberatuc,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +shagu/arch-install,shagu,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +scorputty/vagrant-ha-openshift,scorputty,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bagage/cadastre-conflation,bagage,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +huldra/arctic,huldra,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dbeniamine/todo.txt-vim,dbeniamine,Vimscript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +infragravity/charts,infragravity,Smarty,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +aki237/pin,aki237,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +unixispower/jcard-template,unixispower,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nwmitchell/homeassistant-config,nwmitchell,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ZoeyGlobe/batchadventuregame,ZoeyGlobe,Batchfile,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cjlyth/resume-app,cjlyth,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nsi-public/s3-proxy,nsi-public,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +4w/hunger_ng,4w,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mraureliusr/Learn,mraureliusr,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +saeedtrb/simple-use-ci,saeedtrb,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +vala-panel-project/cmake-vala,vala-panel-project,CMake,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tim241/pacman-src,tim241,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +evtest-qt/evtest-qt,evtest-qt,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jstest-gtk/jstest-gtk,jstest-gtk,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +JuliaGPU/CUDAnative.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kottkrig/sprout-tree,kottkrig,Elixir,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +sdl-jstest/sdl-jstest,sdl-jstest,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +alinex/node-portal,alinex,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jdesodt/seneca-triggers,jdesodt,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jdesodt/seneca-entity-crud,jdesodt,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +toby3d/dialogs,toby3d,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +exosphere/exosphere,exosphere,Elm,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gun1x/frr_ansible_ebgp,gun1x,,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +mgoral/twweb,mgoral,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,TRUE +sdwolfz/dotfiles,sdwolfz,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +costrouc/knoxville-opendata-notebooks,costrouc,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +utsushi/utsushi,utsushi,C++,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +Tuuux/galaxie-curses,Tuuux,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dmejer/spring-angular-docker-example,dmejer,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,FALSE,FALSE +DomainVoider.GitLab.io/DomainVoider,DomainVoider.GitLab.io,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +woblight/GitAddonsManager,woblight,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +experimentslabs/engine_elabs,experimentslabs,Ruby,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +Danno131313/everyone,Danno131313,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +szabobogdan3/trial,szabobogdan3,D,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +semkodev/nelson.gui,semkodev,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +adrianhall/awsmobile-weekly,adrianhall,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chaoslab/repoman,chaoslab,,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +cppit/libclangmm,cppit,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +efunb/gyrus,efunb,Rust,TRUE,FALSE,FALSE,6,FALSE,TRUE,TRUE,TRUE +DrRoach/DynamicImage,DrRoach,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vuedoc/parser,vuedoc,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +vmgabriel/giweb,vmgabriel,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gc-ar/web,gc-ar,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +blevy/redpwn-ctf-writeups,blevy,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BuildGrid/buildbox/buildbox-fuse,BuildGrid,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Bettehem/SecureMessengerAndroid,Bettehem,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aurorafossorg/pages-framework-webndocs,aurorafossorg,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +matthieusegret/yummy-phoenix-graphql,matthieusegret,Elixir,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +aurorafossorg/pages-home,aurorafossorg,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +danzik/art-dan-cloud,danzik,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +kriuvi/timetronom,kriuvi,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tmorin/pine64-docker-images,tmorin,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +revas-io/revas.app,revas-io,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mudar-ca/PeaceOfMind,mudar-ca,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bitemyapp/totto,bitemyapp,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +soykje/lscss,soykje,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alelec/navdy/NavdyOBD,alelec,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +daktak/ColourAnalog,daktak,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaymoulin/docker-transmission,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jaymoulin/docker-google-musicmanager,jaymoulin,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +transfire/crystal-cli,transfire,Crystal,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +apurebase/arkenv,apurebase,Kotlin,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +klems/ansible-aws,klems,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +synappio/free-email-domains,synappio,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RLesur/xaringan-gitlab-pages,RLesur,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mindfulness-at-the-computer/mindfulness-at-the-computer.gitlab.io,mindfulness-at-the-computer,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +chris.amini/FightingPoverty,chris.amini,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +MonsieurMan/ng-refactor,MonsieurMan,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SopaXorzTaker/tpt3d,SopaXorzTaker,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +adleatherwood/FunctionalLink,adleatherwood,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +smondet/febusy,smondet,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +castlecraft/building-blocks,castlecraft,TypeScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +xiayesuifeng/arch-go-qt,xiayesuifeng,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +CromFr/matrix-logger,CromFr,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gnaar/base,gnaar,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +theumod/umod.agent,theumod,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +emelle/emelle,emelle,OCaml,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +devlife-apps/connect2sql,devlife-apps,Kotlin,TRUE,FALSE,FALSE,5,FALSE,FALSE,FALSE,TRUE +severity1/aws-auth,severity1,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +zedtux/restful-json-api-client,zedtux,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ngxa/testing,ngxa,TypeScript,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +gfanz/genomics-tools,gfanz,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ipcalc/ipcalc,ipcalc,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mrvik/pakku-gui,mrvik,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Psy-Kai/ESI-Maya22USBControl,Psy-Kai,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +korora/buildkorora,korora,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-org/gitter/services,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +felixcool98/Libgdx_Extensions,felixcool98,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +nvllsvm/cloneholio,nvllsvm,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +daksh7011/username-checker,daksh7011,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +daksh7011/neptune-animations,daksh7011,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kreikenbaum/suntime-app,kreikenbaum,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tagbottle/tomato-puree,tagbottle,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +mobiforge/sensors,mobiforge,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ToolsDevler/libdecimal,ToolsDevler,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +KavenTheriault/aws_lambda_python_deployment,KavenTheriault,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fraction/ssb-current-events,fraction,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hpierce1102/ClassFinder,hpierce1102,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +newbranltd/server-io-core,newbranltd,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VERTORIO/VERTORIO-WEBSITE,VERTORIO,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +b0/matrique-repo,b0,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +DhruvKoolRajamani/dhruvkoolrajamani.gitlab.io,DhruvKoolRajamani,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mrnagydavid/typic,mrnagydavid,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +moeenzarrinfam/cloud-task-runner-ruby,moeenzarrinfam,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +exitlive/cooky,exitlive,Dart,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kiel-data-hub/kiel-data-hub,kiel-data-hub,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +tspiteri/fixed,tspiteri,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +QwantResearch/mimir-geocoder-tester,QwantResearch,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +john.carroll.p/rschedule,john.carroll.p,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +Nurose/Nurose,Nurose,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +OpenCoop/opencoop.gitlab.io,OpenCoop,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +netfarm.gq/cl-decentralise,netfarm.gq,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +franicflowsarl/php-installer,franicflowsarl,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +mohamnag/javafx-webview-debugger,mohamnag,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +shaktiproject/tools/aapg,shaktiproject,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JeisonSanchez/borrar,JeisonSanchez,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nuntius35/extremal_peaks,nuntius35,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +DGothrek/ipyaggrid,DGothrek,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +demsking/vue-cli-plugin-env-validator,demsking,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +MggMuggins/aurum,MggMuggins,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Laravelium/Feed,Laravelium,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cunity/windows-cmake-docker,cunity,PowerShell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +HugoDel/QuickCRM,HugoDel,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Polkabot/polkabot,Polkabot,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Laravelium/Disqus,Laravelium,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foxaur/foxaur,foxaur,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +scion-scxml/core,scion-scxml,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ncent/ncent-sandbox,ncent,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +YoEight/eventstore-rs,YoEight,Rust,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +opendatahub/opendatahub.io,opendatahub,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +shackra/secretaria,shackra,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +opennota/fb2index,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +opennota/tl,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +golang-commonmark/mdtool,golang-commonmark,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +phata/hook,phata,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mexus/rustup-components-availability,mexus,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rittenberry/bryanswebsite,rittenberry,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +mavnn/elmish-tutorial,mavnn,F#,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +fablab-allgaeu/fablab-allgaeu.gitlab.io,fablab-allgaeu,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bunny-team/bunny-team.gitlab.io,bunny-team,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +georgedorn/wonambi,georgedorn,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +4LT/steam-game-launchers,4LT,Tcl,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +clickable/clickable,clickable,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chuongnd/hocdiban-front-end,chuongnd,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +altek/accountant,altek,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +witchpou/lj-projectbuilder,witchpou,Java,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +apgoucher/slmake,apgoucher,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +denis4net/gphotosync,denis4net,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tales/tales-client,tales,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +kanna-kobayashi/kanna-bot,kanna-kobayashi,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +let-me-help/letmehelp.life,let-me-help,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jckimble/smsprovider,jckimble,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oleh.kurachenko/ubuntu_setup,oleh.kurachenko,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +MVMC-lab/asalib,MVMC-lab,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +r3dlight/akabox,r3dlight,CSS,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gerardomares/npolink,gerardomares,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +vault25/pipboy,vault25,QML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ECOM-Mycamping/mycamping,ECOM-Mycamping,Java,TRUE,FALSE,TRUE,5,TRUE,TRUE,FALSE,TRUE +olexandr.kucher/geekhub8,olexandr.kucher,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NEKERAFA/Talkative,NEKERAFA,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cloudnet-interface/cloudnet-interface-extension,cloudnet-interface,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,TRUE,FALSE +mjaworski8/projecte-web-flautilla-hero,mjaworski8,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +cahyanugraha12/ppw_e_kelompok2,cahyanugraha12,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Khiyara/ppw-tp-10c,Khiyara,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +anchore/gitlab-demo,anchore,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +xiayesuifeng/goblog,xiayesuifeng,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +inivation/libcaer,inivation,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +joshlambert/minimal-ruby-app,joshlambert,Ruby,TRUE,FALSE,FALSE,13,TRUE,TRUE,FALSE,TRUE +mobicoop/mobicoop,mobicoop,PHP,TRUE,FALSE,FALSE,5,FALSE,FALSE,TRUE,FALSE +samlachance/job-board,samlachance,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +domatskiy/laravel-html-cache,domatskiy,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +crespum/polaris,crespum,JupyterNotebook,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gioxa/odagrun/odagrun,gioxa,C,TRUE,FALSE,FALSE,9,TRUE,FALSE,FALSE,TRUE +Songoda/EpicHeads,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicAnchors,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicHoppers,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/UltimateRepairing,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicVouchers,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +python-actorio/actorio,python-actorio,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +FedericoBottoni/pss-assignment1,FedericoBottoni,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +zaber-core-libs/core-python,zaber-core-libs,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +eschnell/ft_hexdump,eschnell,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pymedphys/pymedphys,pymedphys,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +training-microservices-2018-03/config-service,training-microservices-2018-03,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +intangiblerealities/narupaXR,intangiblerealities,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MindustryModders/mindustry-documentation,MindustryModders,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Songoda/epicbuckets,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +raeq/pciq,raeq,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Songoda/EpicBosses,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +LineageOS/builder/android,LineageOS,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,FALSE +jdip/jdip,jdip,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +tomkukral/keyforce,tomkukral,Go,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +ubports/app-dev/calculator-app,ubports,QML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dadana/woffelskrach,dadana,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +srwalker101/rust-jupyter-client,srwalker101,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +collaba-tube/frontend,collaba-tube,Vue,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +pierrenn/gobitmex,pierrenn,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Slyso/AdventureGame,Slyso,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +Songoda/ultimatetimber,Songoda,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +NateDogg1232/passgen-rs,NateDogg1232,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PierreNicol/rss-feed,PierreNicol,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Songoda/UltimateStacker,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +collaba-tube/api-docker-nginx-dev,collaba-tube,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +collaba-tube/api-docker-php-dev,collaba-tube,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +cc-wdesign/django-project-boilerplate,cc-wdesign,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sat-mtl/telepresence/node-switcher,sat-mtl,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +backstage-technical-services/laravel-site,backstage-technical-services,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +unimatrix-one/zero,unimatrix-one,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +alienscience/mailin,alienscience,HTML,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +SemkaProd1/task-manager-nc,SemkaProd1,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +robin.roschlau/advent-of-code-solver,robin.roschlau,Kotlin,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Boluge/polytechfindroom,Boluge,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +kaszaq/jiratomkdocs,kaszaq,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +hkex/pyr2,hkex,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +BVollmerhaus/blurwal,BVollmerhaus,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +elad.noor/equilibrator-cache,elad.noor,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fdroid/planet,fdroid,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ccrpc/lrtp2045,ccrpc,Batchfile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jckimble/dockerssh,jckimble,Vue,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +collaba-tube/api,collaba-tube,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +juliendubreuil/gitlab-ci-example-drupal,juliendubreuil,PHP,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +bfa/bfa_django,bfa,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +diamondburned/noschat,diamondburned,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +admicos/task-studio,admicos,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +XBagon/term_stone,XBagon,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +daksh7011/nemean,daksh7011,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mattmatters/opencv-wasm,mattmatters,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +sorenmat/gosmtpd,sorenmat,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +recalbox/ops/recaleur,recalbox,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +MrWildcard/a-nice-app,MrWildcard,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Antmounds/Antennae,Antmounds,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +tottokotkd/benicky,tottokotkd,Ruby,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +rubickcz/chat,rubickcz,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +allamand/example-voting-app,allamand,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +materials-modeling/dynasor,materials-modeling,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +rubdos/cffipp,rubdos,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +saasdm/saasdm-phoenix,saasdm,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +YottaDB/Lang/YDBGo,YottaDB,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +flaxandteal/phpbelfast-demo,flaxandteal,PHP,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +one-more/acropole,one-more,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +custom_components/hadockermon,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +mtnygard/m2m.solingen,mtnygard,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +matthieu-bruneaux/guide-r-rstudio-git-gitlab,matthieu-bruneaux,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +jitesoft/open-source/javascript/cookie-consent,jitesoft,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +griest/pixi-actor,griest,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +griest/vue-component-proxy,griest,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +custom_components/ruter,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +custom_components/launchlibrary,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +b0/matrix-nsfw,b0,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +custom_components/weatheralerts,custom_components,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +collaba-tube/old-api,collaba-tube,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +saycle.xyz/saycle.web,saycle.xyz,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +esyt63/Gitlab_CI_ReactJs,esyt63,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +gitlab-org/gitter/sidecar,gitlab-org,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +LineageOS/infra/updater,LineageOS,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +dimakow/myFirstGoAppOnSCP,dimakow,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +MaxIV/webjive,MaxIV,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-org/gitlab-insights,gitlab-org,Ruby,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +cloudigrade/cloudigrade,cloudigrade,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +gitlab-org/gitlab-grit,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +shared-puppet-modules-group/backupninja,shared-puppet-modules-group,Puppet,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +shared-puppet-modules-group/common,shared-puppet-modules-group,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +latexpand/latexpand,latexpand,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Boojum/python-securepay,Boojum,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +accounts-sso/gsignond,accounts-sso,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +carmenbianca/pyparadox,carmenbianca,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bor-sh-infrastructure/libsaas_gitlab,bor-sh-infrastructure,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jas/libidn2,jas,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tmatth/polygnome,tmatth,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +libnice/libnice,libnice,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ayufan/ruby-getting-started,ayufan,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +s4m-chef-repositories/gitlab-ci-runner,s4m-chef-repositories,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tgc-dk/pysword,tgc-dk,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +localg-host/watchghost,localg-host,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +agilob/BadCellDetector,agilob,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +smc/fonts/manjari,smc,Makefile,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +breadmaker/universal-html5-audio,breadmaker,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sue445/gitlab_awesome_release,sue445,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jangorecki/data.cube,jangorecki,R,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +dpizetta/mrsprint,dpizetta,Python,TRUE,FALSE,FALSE,7,TRUE,TRUE,FALSE,TRUE +ackwell/attunement,ackwell,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/allocations,gitlab-org,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robigalia/hello-world,robigalia,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robigalia/meta,robigalia,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/gitlab-examples.gitlab.io,gitlab-examples,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +chillcoding-at-the-beach/chillcoding-at-the-beach.gitlab.io,chillcoding-at-the-beach,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +xphnx/icon-request-tool,xphnx,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +MagmaTV/magmatv,MagmaTV,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twittner/redis-io,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +AdvProg2016/weekly-exercises,AdvProg2016,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dogtail/dogtail,dogtail,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +Zatherz/scaleinator,Zatherz,Lua,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +html-themes/genius,html-themes,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +european-data-portal/MetadataTransformerService,european-data-portal,Java,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +ascendingcreations/Xeris.Source,ascendingcreations,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pages/lektor,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +passit/passit-marketing,passit,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +epixelgame/epixel,epixelgame,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +twittner/cbor-codec,twittner,Rust,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +neucrypt/anonize2,neucrypt,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pushrocks/gulp-function,pushrocks,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +LaiCare/laicare,LaiCare,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stackshuttle/blogie,stackshuttle,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stavros/esp-boilerplate,stavros,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sflcin/internetshutdowns,sflcin,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ablu/bachelorthesis,ablu,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +slashdeploy/docker-ruby-boilerplate,slashdeploy,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mbukatov/pylatest,mbukatov,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +imp/cargo-info,imp,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +CIAvash/App-Football,CIAvash,Perl6,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +markpundsack/docker-example,markpundsack,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +t.clastres/remod-racing,t.clastres,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +maidsafe/maidsafe.gitlab.io,maidsafe,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +nieper/rapid-scheme,nieper,Scheme,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alti2d/server_patches,alti2d,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +multiphenics/multiphenics,multiphenics,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +thelabnyc/django-logpipe,thelabnyc,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/end-user-training-slides,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +samcns/uzu,samcns,Perl6,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stavros/espota-server,stavros,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ArmaOnUnix/armaonunix.gitlab.io,ArmaOnUnix,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +JaMeZ-B/LaTeX-WWU,JaMeZ-B,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fitters/xfitter,fitters,Fortran,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +gitlab-examples/velociraptor,gitlab-examples,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +saomc/saoui-1.10.2,saomc,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foodsharing-dev/images,foodsharing-dev,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Rich-Harris/pathologist,Rich-Harris,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +skyzohkey/PwassonEngine,skyzohkey,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +janispritzkau/node-rcon-client,janispritzkau,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sofreeus/sfs-method,sofreeus,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mikefromit/sir-bot-a-lot,mikefromit,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +imp/rustdocker,imp,Shell,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,FALSE +digested/node-digest,digested,JavaScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +creato/pub-sub,creato,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +noosfero-themes/angular-theme,noosfero-themes,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bitfireAT/cert4android,bitfireAT,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +e62Lab/e62numcodes,e62Lab,Mathematica,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +buildfunthings/trivia,buildfunthings,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anden3/Craftmine,anden3,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +HerculesWS/Hercules,HerculesWS,C,TRUE,FALSE,FALSE,6,FALSE,TRUE,FALSE,FALSE +gitlab-cookbooks/gitlab-prometheus,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +gitlab-cookbooks/gitlab-haproxy,gitlab-cookbooks,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,TRUE +weburger/angular-material-weburger,weburger,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +poopsquare/rockbooks,poopsquare,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tractatus/tractatus.gitlab.io,tractatus,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +osas/community-cage-infra-ansible,osas,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +resume/resume.gitlab.io,resume,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +open_nsfw/open_nsfw.gitlab.io,open_nsfw,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barrel-db/match_trie,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +packaging/nextcloud-client,packaging,Shell,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +FraME-projects/PyFraME,FraME-projects,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +morph027/x2go-mate-docker,morph027,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +BackStopThemes/ThemeCoreV2,BackStopThemes,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +staywoke/catalyst,staywoke,Ruby,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +lsilvest/ztsdb,lsilvest,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +UnderWaterRugbyHorn/underwaterrugbyhorn,UnderWaterRugbyHorn,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ArjunShankar/angular2-template-project,ArjunShankar,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sat-metalab/shmdata,sat-metalab,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +gitlab-cog/gitlab-admin,gitlab-cog,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-examples/openshift-deploy,gitlab-examples,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mehranrasulian/laravel-sample,mehranrasulian,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +axet/android-sms-gate,axet,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +forrestab/dotnet-gitlab-ci,forrestab,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mvgames/ataque_zombie,mvgames,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +zefiris/tenhou-client,zefiris,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +finding-ray/antikythera,finding-ray,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +tvaughan/docker-flask-starterkit,tvaughan,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +jlack/rdl,jlack,C++,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +fatihacet/fatihacet.gitlab.io,fatihacet,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oly-exams/exam_tools,oly-exams,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,FALSE,TRUE +partylab/queue-dj,partylab,Vue,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +yiisoft/yii2,yiisoft,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +ContinuousEvolution/continuous-evolution,ContinuousEvolution,Go,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +CSUI-AdvProg-2017/lab-exercises,CSUI-AdvProg-2017,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mechaxl/dds-rs,mechaxl,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tahahawa/discord-markov-bot,tahahawa,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +julrich/QtPromise,julrich,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +picter/labeljack,picter,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jasonmm/baseball-stats-db,jasonmm,PLpgSQL,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLA4,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +PPL2017csui/PPLD1,PPL2017csui,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLB2,PPL2017csui,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +to1ne/org-gitlab,to1ne,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLC3,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PPL2017csui/PPLB1,PPL2017csui,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +winniehell/file-name-linter,winniehell,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +penkit/penkit,penkit,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +fatihacet/turkcekaynaklar-com,fatihacet,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eval/total_recall,eval,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +checkmein2/checkmein2-ui,checkmein2,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +noppo/ember-quill,noppo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +haway-test/gitlab-class,haway-test,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +anarcat/ecdysis,anarcat,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kataik/EnvironmentTracker,kataik,C#,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +GitLabRGI/nsg/gpep,GitLabRGI,JavaScript,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +dotnetthoughts/MVCApp,dotnetthoughts,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oer/OS,oer,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +keerthik/dicestorm,keerthik,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +grabl/grabl,grabl,Groovy,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +altifalante/altifalante,altifalante,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +metasyntactical/composer-plugin-license-check,metasyntactical,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +c-sky/buildroot,c-sky,Makefile,TRUE,FALSE,FALSE,7,FALSE,TRUE,FALSE,FALSE +mondwan/py-use_mock,mondwan,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +atorresm/NASAImages,atorresm,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +documentarian/documentarian,documentarian,PowerShell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +inkscape/inkscape-ci-docker,inkscape,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +lolPants/stream-role-bot,lolPants,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +recalbox/ops/nodebb,recalbox,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-cookbooks/gitlab_openvpn,gitlab-cookbooks,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +sat-metalab/SATIE,sat-metalab,SuperCollider,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aaronkho/GPR1D,aaronkho,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paveltizek/gitlab-api,paveltizek,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,TRUE +Orange-OpenSource/gitlab-buildpkg-tools,Orange-OpenSource,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +SEMERU-Code-Public/Android/Mutation/MDroidPlus,SEMERU-Code-Public,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +mdymel/aspdocker,mdymel,C#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-com/gitlab-dns,gitlab-com,,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +chusiang/coscup2017-cd-demo,chusiang,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +gitlab-org/gitter/gitter-markdown-processor,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +hectorm/hblock,hectorm,Shell,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +samthursfield/tagcloud,samthursfield,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hathi-social/hathi-server,hathi-social,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +qaclana/qaclana,qaclana,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +librespacefoundation/satnogs/satnogs-db,librespacefoundation,Python,TRUE,TRUE,FALSE,5,TRUE,TRUE,TRUE,FALSE +Dolori/Dolori,Dolori,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nuntius35/wps,nuntius35,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +skosh/falcon-helpers,skosh,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +opensourcediversity/opensourcediversity.org,opensourcediversity,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +dalton/lsdalton,dalton,Fortran,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +camillebucatcat/bulma-templates,camillebucatcat,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +seancl/screeps-autobahn,seancl,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-ci-multi-runner-backup,gitlab-org,Go,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +CSUI-ITProject-2017/KI2/Codebase,CSUI-ITProject-2017,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +yunity/ukuvota-quasar,yunity,Vue,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +eigan/changelog,eigan,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aterlamia/ci-wallboard,aterlamia,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/gitlab-styles,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +librespacefoundation/satnogs/gr-satnogs,librespacefoundation,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rgaiacs/blogdown-gitlab,rgaiacs,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gxworks/Dib2Qm,gxworks,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +almarklein/bsdf,almarklein,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fpdpy/fpd,fpdpy,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +spider-network/mindex,spider-network,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +energievalsabbia/aurorapy,energievalsabbia,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ModernisingMedicalMicrobiology/CRuMPIT,ModernisingMedicalMicrobiology,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +manuelteillet/pict-tools,manuelteillet,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ra_kete/android-sparse-rs,ra_kete,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kobvel/ng-gitlab-firebase,kobvel,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +asu-capstone-team-6/ar-navigator,asu-capstone-team-6,Java,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +gfelbing/annotate,gfelbing,TypeScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +deltares/imod-python,deltares,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SUSE-UIUX/eos-icons,SUSE-UIUX,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +intr0/DomainVoider,intr0,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +web3-sh/devkit,web3-sh,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +inkscape/inkscape-docs/documentation,inkscape,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +eclufsc/ophidian,eclufsc,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +TeamSPD/Chirp,TeamSPD,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/environments,gitlab-com,HCL,TRUE,FALSE,FALSE,8,FALSE,TRUE,FALSE,FALSE +frontendne/devs-against-humanity,frontendne,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +clitellum/clitellum,clitellum,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eyeo/websites/web.acceptableads.com,eyeo,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kubouch/ci-test,kubouch,,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +NERSC/nersc.gitlab.io,NERSC,CSS,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gitlab-org/prometheus-storage-migrator,gitlab-org,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +smallstack/infrastructure/gitlab-runner-cli,smallstack,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +inorton/junit2html,inorton,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +socrates-conference/socrates-server,socrates-conference,JavaScript,TRUE,FALSE,FALSE,7,TRUE,TRUE,FALSE,TRUE +Eusebius1920/ember-cli-build-variants,Eusebius1920,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vise890/scribe,vise890,Clojure,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +RobertCzinege/freebie-api-server,RobertCzinege,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +nd-cse-20289-sp18/cse-20289-sp18-assignments,nd-cse-20289-sp18,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +flectra-hq/docker,flectra-hq,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jbrassard/revolvairapi,jbrassard,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/ci-cd/gcp-exporter,gitlab-org,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +williamyaoh/shrinkwraprs,williamyaoh,Rust,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +tessia-project/tessia-baselib,tessia-project,Python,TRUE,TRUE,FALSE,3,TRUE,FALSE,FALSE,FALSE +linux-wiiu/linux-loader,linux-wiiu,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +linux-wiiu/debian-wiiu-repo,linux-wiiu,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +semantic-jail/php-ivoox-api-client,semantic-jail,PHP,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +Alisummer/beauty-header,Alisummer,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +thorgate-public/django-project-template,thorgate-public,Python,TRUE,TRUE,FALSE,1,TRUE,FALSE,FALSE,FALSE +PPL2018csui/Kelas-D/PPL2018-D7,PPL2018csui,Java,TRUE,FALSE,FALSE,5,TRUE,FALSE,TRUE,FALSE +meltano/meltano-elt,meltano,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +srwk/gitlab-handbook-kr,srwk,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +FiniteReality/Finite.Commands,FiniteReality,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +orbtk/orbtk,orbtk,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Olympus_Labs/olympus-protocol,Olympus_Labs,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +mexus/futures-retry,mexus,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +coala/mobans,coala,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libssh/libssh-mirror,libssh,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +twitch4j/twitch4j,twitch4j,Java,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +costrouc/pysrim,costrouc,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ToxiClaw/LatexTemplate,ToxiClaw,TeX,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nutanix/xray-scenarios,nutanix,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +zhukovgreen/pozemky,zhukovgreen,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +alantrick/django-vox,alantrick,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +asyncjdbc/asyncjdbc,asyncjdbc,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +pgjones/quart-cors,pgjones,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +goodvibes/goodvibes,goodvibes,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +atomsandbits/atomsandbits,atomsandbits,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +kurant-open/m3d,kurant-open,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +GNULand/ubuntu-for-newcomers,GNULand,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Flockademic/plaudit,Flockademic,TypeScript,TRUE,FALSE,FALSE,6,FALSE,TRUE,TRUE,FALSE +sj14/gosh,sj14,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +python-devs/importlib_metadata,python-devs,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +kornelski/cloudflare-zlib-sys,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +serebit/diskord,serebit,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +BrianAllred/NYoutubeDL,BrianAllred,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +more-cores/laravel-restcord,more-cores,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +EMC-Framework/EMC,EMC-Framework,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bitseater/meteo,bitseater,Vala,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Salamek/gitlab-tools,Salamek,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,TRUE,FALSE +barbalet/nobleape,barbalet,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +georg.mittendorfer/piri,georg.mittendorfer,Java,TRUE,FALSE,TRUE,1,FALSE,TRUE,FALSE,FALSE +duncan-bayne/heroku-buildpack-common-lisp,duncan-bayne,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rilian-la-te/musl-locales,rilian-la-te,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +videlec/pplpy,videlec,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +victorlapin/flasher,victorlapin,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +elad.noor/equilibrator,elad.noor,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deltarena/hsgs-hackathon-18,deltarena,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +JuliaGPU/LLVM.jl,JuliaGPU,Julia,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +qeef/mapathoner,qeef,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +eidheim/react-simplified,eidheim,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vala-panel-project/vala-panel,vala-panel-project,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +OsloMet-ABI/nikita-noark5-core,OsloMet-ABI,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +pingus/pingus,pingus,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +hesperos/napi,hesperos,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +toby3d/mypackbot,toby3d,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +stinovlas/django-dkim,stinovlas,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +jenx/import-batteries-talk,jenx,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +junland/sled,junland,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jtaimisto/bluewalker,jtaimisto,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ydkn/capistrano-git-copy,ydkn,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +ourmarkas/gutenberg,ourmarkas,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Shinobi-Systems/ShinobiDocker,Shinobi-Systems,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aurorafossorg/p/framework/core,aurorafossorg,C,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +otherbenji/TexFactory,otherbenji,C#,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Tmpod/cyborgtoast,Tmpod,Python,TRUE,TRUE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Noughmad/serde_any,Noughmad,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nul.one/rundoc,nul.one,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jaymoulin/docker-google-music-uploader,jaymoulin,Makefile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +starbelly/soda,starbelly,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Piou-piou/ruined-world-front,Piou-piou,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ColoradoSchoolOfMines/visplay,ColoradoSchoolOfMines,C++,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +absassi/asap,absassi,CMake,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +MohamedBahmed/google-loaders-redesign,MohamedBahmed,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +picos-api/picos,picos-api,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +uptimeventures/gotham-middleware-jwt,uptimeventures,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dosuken123/thin-gdk,dosuken123,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +THUGuide/ThuGuide,THUGuide,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +blacknet-ninja/blacknet-ninja.gitlab.io,blacknet-ninja,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +johandurancerdas/gitlab-cicd-tutorial,johandurancerdas,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ukfast/docs.ukfast.co.uk,ukfast,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +equinox-sdr/equinox,equinox-sdr,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +alienspaces/arena-tactics,alienspaces,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/jupyterhub-user-image,gitlab-org,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ohboi/silly,ohboi,D,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +llhe/mobile-ai-bench,llhe,C++,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +LucasLeandroBR/learncode,LucasLeandroBR,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +m03geek/fastify-oas,m03geek,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +itu-auv/robosub19-main,itu-auv,CMake,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +intr0/iVOID.GitLab.io,intr0,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +teslex/gspinners,teslex,Groovy,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +inko-lang/ienv,inko-lang,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wheresvic/software-dawg,wheresvic,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +MrCustomizer/palaver,MrCustomizer,Kotlin,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +DomainVoider.GitLab.io/iVOID,DomainVoider.GitLab.io,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +seanwasere/Seans-Angular6-Python-Flask-Boilerplate,seanwasere,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aar642/shadow-appimage,aar642,Perl,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +codeearth/drawdown,codeearth,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +spirited/comet,spirited,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Orange-OpenSource/lfn/onap/onap-tests,Orange-OpenSource,Python,TRUE,TRUE,FALSE,5,FALSE,TRUE,FALSE,TRUE +schoolmouv-open-source/vue-log-worker,schoolmouv-open-source,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +pop-planet/maco,pop-planet,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +n0r1sk/docker-volume-cephfs,n0r1sk,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +remram44/taguette,remram44,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foodsharing-dev/foodsharing-android,foodsharing-dev,Kotlin,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +intr0/AppleBlock,intr0,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/sidekiq-reliable-fetch,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hallowatcher/chat4osu,hallowatcher,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sshoney/sshoney,sshoney,Python,TRUE,TRUE,FALSE,4,TRUE,TRUE,FALSE,TRUE +lebiniou/lebiniou,lebiniou,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +blendergeek/apps,blendergeek,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +m03geek/fastify-metrics,m03geek,TypeScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +cnpsaintmartin/arpa-network,cnpsaintmartin,Vue,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +matteodc/civicwise-network-map,matteodc,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +eyeo/adblockplus/libadblockplus-android,eyeo,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +postmarketOS/build.postmarketos.org,postmarketOS,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +prvInSpace/pinit,prvInSpace,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Songoda/UltimateKits,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +lmcandrew/markdown-issue-viewer,lmcandrew,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Songoda/EpicSpawners,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicFurnaces,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +hershaw/novamud,hershaw,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +efunb/read_input,efunb,Rust,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,TRUE +internetarchive/kre8,internetarchive,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +codeshelter/codeshelter-web,codeshelter,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JeSuisUnDesDeux/jesuisundesdeux,JeSuisUnDesDeux,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sgrignard/serpyco,sgrignard,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +RodrigoEndellan/algo3-tp2,RodrigoEndellan,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aossie/aossie-blogs,aossie,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/gl-vue-cli,gitlab-org,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +openpowerlifting/openlifter,openpowerlifting,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/merge-train,gitlab-org,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +NickBusey/mashio,NickBusey,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +devops-df/2016.brasilia.devopsdays.com.br,devops-df,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +packet.ninja/cl-cicd,packet.ninja,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +mjcarson/Auto-Encode,mjcarson,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +digitalLumberjack/microservice-royale,digitalLumberjack,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +deltares/rtc-tools-channel-flow,deltares,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +harbottle/wine32,harbottle,Ruby,TRUE,FALSE,FALSE,10,FALSE,FALSE,TRUE,FALSE +zedtux/rails-react-devise-bootstrap,zedtux,Ruby,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +avolokitin/neverNote,avolokitin,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,TRUE,FALSE +yamalight/building-products-with-js,yamalight,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +L0gIn/git-file-downloader,L0gIn,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gitlab-org/apilab,gitlab-org,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +librespacefoundation/satnogs/satnogs-decoders,librespacefoundation,Python,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,FALSE +saycle.xyz/saycle.server,saycle.xyz,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gvarandas/bsb-dev-festival-ci,gvarandas,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +nutanix/curie,nutanix,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +trainline-eu/stand,trainline-eu,Ruby,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ci-cd-demos/symfony,ci-cd-demos,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +totakoko/onetimesecret,totakoko,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +materials-modeling/icet,materials-modeling,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +psono/psono-client,psono,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +gitlab-org/gitlab_emoji,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +shared-puppet-modules-group/apt,shared-puppet-modules-group,Puppet,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dobrado/dobrado,dobrado,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +warsaw/flufl.bounce,warsaw,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rpdev/opentodolist,rpdev,C++,TRUE,FALSE,FALSE,4,TRUE,FALSE,TRUE,FALSE +xphnx/onze_cm11_theme,xphnx,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pdftools/pdfposter,pdftools,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +KitaitiMakoto/epub-parser,KitaitiMakoto,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-jp/www-gitlab-jp,gitlab-jp,CSS,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +lcg/tucano,lcg,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hw-manager/android,hw-manager,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +atomap/atomap,atomap,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +craigbarnes/lua-gumbo,craigbarnes,C,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +gtk/gtk-swift,gtk,Swift,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-elasticsearch-git,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rubyonrailsbrasil/rubyonrailsbrasil.gitlab.io,rubyonrailsbrasil,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +european-data-portal/sparql-manager,european-data-portal,CSS,TRUE,FALSE,TRUE,1,FALSE,FALSE,TRUE,FALSE +pages/hyde,pages,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +twittner/cql-io,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +denis4net/toxvpn,denis4net,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pages/nanoc,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vindarel/bookshops,vindarel,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JobV/jobv.gitlab.io,JobV,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/octopress,pages,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +artem-sidorenko/chef-rkt,artem-sidorenko,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +rhab/PyOTRS,rhab,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,FALSE,FALSE +zombie-raptor/zombie-raptor,zombie-raptor,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vasily_makarov/saedit2,vasily_makarov,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mudar-ca/huegoallight-android,mudar-ca,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +imp/requests-rs,imp,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +hyper-expanse/open-source/conventional-gitlab-releaser,hyper-expanse,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +JFT/Irrlicht_extended,JFT,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +algomus.fr/dezrann,algomus.fr,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ITsvetkoFF/code-and-pain,ITsvetkoFF,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hunter2.app/hunter2,hunter2.app,Python,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,TRUE +atomicrex/atomicrex,atomicrex,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +camelot-project/camelot,camelot-project,Clojure,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +jeffdn/rust-canteen,jeffdn,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +harbottle/puppet-mattermost,harbottle,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +greysonp/gitlab-ci-shared-runner-android-example,greysonp,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +motorica-org/gitlab-ci-android,motorica-org,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-cookbooks/gitlab-vault,gitlab-cookbooks,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +PythonDevCommunity/pythondev-site,PythonDevCommunity,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-examples/review-apps-openshift,gitlab-examples,HTML,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +nanodeath/kollapse,nanodeath,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +algebra-und-zahlentheorie/analysis,algebra-und-zahlentheorie,TeX,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tensors/TuckerMPI,tensors,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Conan_Kudo/snapcore-mkrpmdistcoresnap,Conan_Kudo,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mbukatov/pytest-ansible-playbook,mbukatov,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NobleworksSoftware/icon-overlay-plugin,NobleworksSoftware,Groovy,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +clorichel/vue-gitlab-api,clorichel,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +brianegan/flutter_stream_friends,brianegan,Dart,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +moshmage/rxjs-socket.io,moshmage,TypeScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +TomasHubelbauer/bloggo-dotnet-core-gitlab-ci,TomasHubelbauer,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +VictorLamoine/ros_gitlab_ci,VictorLamoine,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gibberfish/pancrypticon,gibberfish,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +norad/api,norad,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +ditto/ditto,ditto,C#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +scastiel/crypticker,scastiel,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +MUSIT-Norway/musit-frontend,MUSIT-Norway,TypeScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +maikebing/GitLab.VisualStudio,maikebing,C#,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +xmpp-rs/xmpp-rs,xmpp-rs,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +quatomic/qengine,quatomic,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +grails-3-book/intro-concepts,grails-3-book,Groovy,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +fampinheiro/git-to-live-source,fampinheiro,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +pages/jigsaw,pages,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitmate/open-source/gitmate-2-frontend,gitmate,TypeScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +cheminfIBB/pafnucy,cheminfIBB,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +alelec/gitlab-release,alelec,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +aossie/Agora-Web,aossie,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +metachris/python-boilerplate-frontend,metachris,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/prometheus-client-mmap,gitlab-org,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fathom/fathom.gitlab.io,fathom,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +textileio/Neuralyzer,textileio,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +barrel-db/barrel,barrel-db,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rinconresearch/raptor,rinconresearch,Verilog,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Zatherz/magicjson,Zatherz,Crystal,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +macta/PharoLambda,macta,Smalltalk,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +nobodyinperson/thunar-custom-actions,nobodyinperson,M4,TRUE,FALSE,FALSE,5,TRUE,FALSE,TRUE,FALSE +fdroid/docker-executable-fdroidserver,fdroid,,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +franek_madej/obecnosc,franek_madej,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nemolovich/codeplatform,nemolovich,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +disarm/douma-app,disarm,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nobodyinperson/co2monitor,nobodyinperson,Makefile,TRUE,FALSE,FALSE,5,TRUE,FALSE,TRUE,FALSE +bgez/bgez,bgez,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +MadLittleMods/playing-with-selenium-on-gitlab-ci,MadLittleMods,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-com/gl-infra/oncall-robot-assistant,gitlab-com,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +vindarel/cl-torrents,vindarel,CommonLisp,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +maratonlinuxero/maratonlinuxero.gitlab.io,maratonlinuxero,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bonobows/shadow-hunter-server,bonobows,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +fintechlabs/fapi-conformance-suite,fintechlabs,Java,TRUE,FALSE,TRUE,8,TRUE,TRUE,FALSE,TRUE +ftornil/lucilia,ftornil,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +iblech/garben-und-logik,iblech,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sorenmat/seneferu,sorenmat,Go,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +timrs2998/newsie,timrs2998,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +SWEng2017/SWEng,SWEng2017,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +evanp/places-pub,evanp,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +alexmart1989/Game,alexmart1989,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +burke-software/django-server-side-piwik,burke-software,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +deckar01/ctf-api,deckar01,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dosuken123/java-sample-hello-world,dosuken123,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +systerel/S2OPC,systerel,C,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +python-devs/importlib_resources,python-devs,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +zj/snippet,zj,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +tessia-project/tessia,tessia-project,Python,TRUE,TRUE,FALSE,3,TRUE,FALSE,FALSE,TRUE +datadrivendiscovery/images,datadrivendiscovery,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +spdf/elektron,spdf,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gableroux/gitlab-ci-example-nodejs,gableroux,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eyeo/adblockplus/adblockpluscore,eyeo,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eyeo/adblockplus/libadblockplus,eyeo,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +eyeo/adblockplus/adblockpluschrome,eyeo,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +de_licious/Notes,de_licious,TeX,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mappies/configurapi,mappies,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +Oslandia/osgeo4w,Oslandia,Batchfile,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tobias47n9e/wikibase_rs,tobias47n9e,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hpdeifel/aurs,hpdeifel,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +allthethings/allthethings.gitlab.io,allthethings,CSS,TRUE,FALSE,FALSE,6,FALSE,FALSE,FALSE,FALSE +Plasticity/magnitude,Plasticity,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +joewreschnig/gitlab-ci-mode-flycheck,joewreschnig,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +trackmyride/TrackMyRide,trackmyride,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gitlab-com/chatops,gitlab-com,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +timvisee/ffsend,timvisee,Rust,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +stemcellbioengineering/context-explorer,stemcellbioengineering,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rockdaboot/libhsts,rockdaboot,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +haboustak/gitlab-artifact-tools,haboustak,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +lkcamp/lkcamp.gitlab.io,lkcamp,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +caspermeijn/onvifviewer,caspermeijn,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gitlab-org/distribution/gitlab-provisioner,gitlab-org,HCL,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,FALSE +mash-graz/resolve,mash-graz,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +gitlab-org/gitter/irc-bridge,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +monaize-mnz/mnz-wallet,monaize-mnz,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +charts/gitlab-omnibus,charts,Smarty,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +jD91mZM2/powerline-rs,jD91mZM2,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Aberrantfox/WarmBot,Aberrantfox,Kotlin,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +scarpetta/pdfmixtool,scarpetta,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +radar-parlamentar/radar,radar-parlamentar,Python,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,TRUE +PancakeSoftware/openHabAI,PancakeSoftware,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +pages/frozen-flask,pages,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +elad.noor/equilibrator-api,elad.noor,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rwig/backify,rwig,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +lramage94/mkdocs-bootstrap386,lramage94,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Codamic/hellhound,Codamic,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +makson/Recultis,makson,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cmocka/cmocka,cmocka,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +seanwasere/fork-me-on-gitlab,seanwasere,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +beerfactory.org/plasma,beerfactory.org,Scala,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pixstem/pixstem,pixstem,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +thefinn93/signald,thefinn93,Java,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +dennismaxjung/vscode-dotnet-auto-attach,dennismaxjung,TypeScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mlcdresden/pages,mlcdresden,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Piou-piou/ruined-world-api,Piou-piou,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Cydhra/Vibrant,Cydhra,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +postmarketOS/osk-sdl,postmarketOS,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +davivc/gitlab-ci-google-cloud-kubernetes,davivc,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tmendes/waterydroid,tmendes,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +juliohm1978/easy-keepalived,juliohm1978,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tobiaswkjeldsen/carwingsflutter,tobiaswkjeldsen,Dart,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +logotype/fixparser,logotype,JavaScript,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +bloomberg/recc,bloomberg,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +claystation/laravel-gitlab-ci-docker,claystation,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +crwxrws/psycheled,crwxrws,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +exng/vuenote,exng,Vue,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +MaphsterB/pyramid-rlp,MaphsterB,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +littlesaints/functional-streams,littlesaints,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +assoconnect/doctrine-validator-bundle,assoconnect,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mdaffin/nand2tetris,mdaffin,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +omnileads/ominicontacto,omnileads,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +moodlenet/servers/federated,moodlenet,Elixir,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +Flohack74/tg-plus,Flohack74,C++,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +AutowareAuto/AutowareAuto,AutowareAuto,C++,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +siper/Adept,siper,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +opennota/findimagedupes,opennota,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mtarif/programming-rust,mtarif,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +lebedev.games/botox-di,lebedev.games,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +estrategies_per_apoderament_digital/estrategies_municipals_per_apoderament_digital,estrategies_per_apoderament_digital,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +neachdainn/nng-rs,neachdainn,Rust,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Songoda/Arconix,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicDispensers,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +Songoda/EpicFarming,Songoda,Java,TRUE,FALSE,TRUE,1,TRUE,FALSE,FALSE,FALSE +daksh7011/metis,daksh7011,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +jindraivanek/ast-viewer,jindraivanek,F#,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +myii/ut-tweak-tool,myii,QML,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +libreml/libreml,libreml,,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +gitlab-cd/ssh-template,gitlab-cd,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jenswangenheim/itbs-android,jenswangenheim,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +kermit-js/kermit,kermit-js,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +deltares/rtc-tools,deltares,Python,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +davical-project/awl,davical-project,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dzaporozhets/six,dzaporozhets,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +terceiro/chake,terceiro,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +evol/evol-hercules,evol,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +kaliko/sima,kaliko,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +iggdrasil/chimere,iggdrasil,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gbraad/resume,gbraad,,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +bitfireAT/vcard4android,bitfireAT,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jangorecki/r.gitlab.ci,jangorecki,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +camd/cmr,camd,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +asap/asap,asap,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +middleman-themes/middleman,middleman-themes,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +dennis-hamester/scraw,dennis-hamester,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +craigbarnes/showdown,craigbarnes,Vala,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +dovereem/xtcetools,dovereem,HTML,TRUE,FALSE,TRUE,2,TRUE,FALSE,TRUE,FALSE +gitlab-ci-testing/spiky,gitlab-ci-testing,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +glancr/modules,glancr,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitzone/npmts,gitzone,TypeScript,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,TRUE +GitLabRGI/erdc/geopackage-python,GitLabRGI,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +debtcollective/debtcollective,debtcollective,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +nim-lang/nim,nim-lang,Nim,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +political-revolution/political-revolution.gitlab.io,political-revolution,JavaScript,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +foodsharing-dev/devblog,foodsharing-dev,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tglman/persy,tglman,Rust,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +clemolgat-SBR/leopard-imaging,clemolgat-SBR,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +packaging/nextcloud,packaging,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +itxtech/cenisys,itxtech,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +arcfire/rumba,arcfire,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fatihacet/uzaktancalismak-com,fatihacet,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sat-metalab/switcher,sat-metalab,C,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +sat-mtl/telepresence/scenic,sat-mtl,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +olberger/org-teaching,olberger,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +coala/landing,coala,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +agrumery/aGrUM,agrumery,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +nvidia/digits,nvidia,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +openconnect/openconnect,openconnect,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +danielo515/tw5-auto-publish2gitlab-pages,danielo515,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +scastiel/protonmail-theme-creator,scastiel,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +omos/argon2-gpu,omos,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +MUSIT-Norway/musit,MUSIT-Norway,Scala,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +LCaraccio/clever-sheep,LCaraccio,Python,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +ostrokach-forge/graph-tool,ostrokach-forge,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +demurgos/hre,demurgos,Haxe,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IvanSanchez/Leaflet.GLMarkers,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +radiolise/radiolise.gitlab.io,radiolise,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/gitlab-elasticsearch-indexer,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ahmedcharles/lua-rs,ahmedcharles,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dennis-hamester/vks,dennis-hamester,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tychosoft/sipwitchqt,tychosoft,C++,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +phreakuencies/nuttx_book,phreakuencies,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +recalbox/recalbox-configgen,recalbox,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aossie/CrowdAlert,aossie,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eladmaz/SSL-API,eladmaz,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +retro-coder/kickassemblerextension,retro-coder,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +arm-hpc/packages,arm-hpc,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ornix/ornix,ornix,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +JAForbes/static-sum-type,JAForbes,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +craigbarnes/dte,craigbarnes,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +Mizux/gitlabci,Mizux,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +haggl/dotmgr,haggl,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dzaporozhets/clj-gitlab,dzaporozhets,Clojure,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +sugarcube/sugarcube,sugarcube,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +masaeedu/docker-client,masaeedu,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +ablondin/inf3135-aut2017-tp2,ablondin,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +artur-scholz/stretchy,artur-scholz,Python,TRUE,TRUE,FALSE,2,TRUE,TRUE,FALSE,FALSE +timelord/timelord,timelord,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +iota-foundation/software/entangled,iota-foundation,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mueller-ma/View-android-version,mueller-ma,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ercom/livebootp,ercom,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +socrates-conference/socrates-client,socrates-conference,JavaScript,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +omgtransit/omgtransit,omgtransit,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mech-lang/core,mech-lang,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tobiaskoch/gitlab-ci-example-dotnetcore,tobiaskoch,C#,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +clumpy/CLUMPY,clumpy,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gableroux/gitlab-ci-example-django,gableroux,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +csui-advprog-2018/lab,csui-advprog-2018,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +LKDevelopment/hetzner-cloud-mobile-app,LKDevelopment,TypeScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +tfa-devs/tfa-base,tfa-devs,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sherpa-team/sherpa,sherpa-team,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +seulkiro/node-heroku-dpl,seulkiro,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +reefphp/reef,reefphp,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +giomasce/asmc,giomasce,GAP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +alelec/navdy/android-navdy-client-old,alelec,Smali,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sagemath/sage,sagemath,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +craftyguy/networkd-dispatcher,craftyguy,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +saalen/ansifilter,saalen,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +miguelraggi/discreture,miguelraggi,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +huyderman/lamassu,huyderman,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +balping/laravel-hashslug,balping,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +eidheim/tiny-process-library,eidheim,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +semkodev/field.cli,semkodev,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +davidjpeacock/kurly,davidjpeacock,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +orcproject/orc,orcproject,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +sj14/go-heroku,sj14,Go,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +bartl/todo-txt-gnome-shell-extension,bartl,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +zerkc/whatsdesk,zerkc,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +koyagami/libneko,koyagami,Python,TRUE,TRUE,FALSE,3,FALSE,FALSE,FALSE,FALSE +inko-lang/website,inko-lang,CSS,TRUE,FALSE,FALSE,4,FALSE,FALSE,TRUE,TRUE +stavros/caduceus,stavros,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +cizen/cizen,cizen,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/quality/triage-ops,gitlab-org,Shell,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +sequoia-pgp/hagrid,sequoia-pgp,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +git-for-dummies/slide-corso,git-for-dummies,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +USSRM/kotlin,USSRM,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +dunossauro/do-zero-ao-deploy,dunossauro,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Luigi311/linux_downloader,Luigi311,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +limira-rs/simi,limira-rs,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +datadrivendiscovery/primitive-interfaces,datadrivendiscovery,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +kartsims/vue-ci,kartsims,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +pnieuwenhuis/newhouse-basket-service,pnieuwenhuis,C#,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +fathom/app,fathom,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +4geit/react-packages,4geit,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +gitlab-org/gitlab-omnibus-builder,gitlab-org,Ruby,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +evol/clientdata,evol,Shell,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +Numergent/memento,Numergent,Clojure,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +dennis-hamester/dotrix,dennis-hamester,Rust,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +barrel/barrel-wordpress,barrel,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +android-rebuilds/auto,android-rebuilds,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +transformania/tt-game,transformania,PLpgSQL,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +stackshuttle/grow_journal,stackshuttle,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/scala-sbt,gitlab-examples,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rootmodels/OpenSimRoot,rootmodels,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ryanguill/FPcfc,ryanguill,ColdFusion,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +glancr/system,glancr,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +jzelner/reproducible-stan,jzelner,R,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/ikiwiki,pages,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +danger-systems/danger.systems,danger-systems,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +whrl/space_robotics_challenge,whrl,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +plumbis/cumulus-ci-cd,plumbis,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +linagora/petals-cockpit,linagora,TypeScript,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +ikhemissi/gitlab-ci-releaser,ikhemissi,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +PythonDevCommunity/sir-bot-a-lot,PythonDevCommunity,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +sadiq/sadiq.gitlab.io,sadiq,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ales.genova/pbcpy,ales.genova,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +TomasHubelbauer/gitlab-pages-custom-domain-lets-encrypt-info,TomasHubelbauer,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +adi90x/rancher-active-proxy,adi90x,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +librehealth/radiology/lh-radiology,librehealth,JavaScript,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +flimmerkiste/NewralNet,flimmerkiste,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/notebooklab,gitlab-org,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +itk.fr/lorhammer,itk.fr,Go,TRUE,FALSE,FALSE,6,FALSE,TRUE,FALSE,FALSE +SUSE-UIUX/eos,SUSE-UIUX,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +slcu/teamHJ/Organism,slcu,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +samba-team/samba,samba-team,C,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +sj1k/ytsearch,sj1k,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +bpcarm/trainings2017,bpcarm,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-training/basics,gitlab-training,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Ercoin/ercoin,Ercoin,Erlang,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +esdrastarsis/antarticaos,esdrastarsis,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dalton/dalton,dalton,Fortran,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oer/emacs-reveal-howto,oer,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gt8/open-source/elixir/weave,gt8,Elixir,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +empurrandojuntos/frontend,empurrandojuntos,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +chusiang/continuous-delivery-workshop,chusiang,Makefile,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,TRUE +pablo-ruth/go-init,pablo-ruth,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +mataara/Mataara-Server,mataara,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +evanp/tags-pub,evanp,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +kornelski/cargo-xcode,kornelski,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +blockforge/blockforge,blockforge,C,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +qosenergy/squalus,qosenergy,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +nllgg/dustpuppy,nllgg,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +zerobias/effector,zerobias,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DDP2-CSUI/ddp-lab-ki,DDP2-CSUI,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +joewreschnig/gitlab-ci-mode,joewreschnig,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ID4me/Acme,ID4me,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +h3/django-emailhub,h3,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sirimangalo/meditation-plus,sirimangalo,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +jramsay/git-lab,jramsay,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +wavedistrict/web-client,wavedistrict,TypeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +all-mangas-reader/all-mangas-reader-2,all-mangas-reader,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +jkrooswyk/the-monolith,jkrooswyk,Ruby,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +librehealth/ehr/lh-ehr,librehealth,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +cordite/network-map-service,cordite,Kotlin,TRUE,FALSE,TRUE,3,TRUE,FALSE,FALSE,TRUE +gitlab-org/security-products/license-management,gitlab-org,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +alelec/navdy/display-rom,alelec,Shell,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +eurosfordocs/transparence-sante,eurosfordocs,HTML,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +maxpert/crlocator,maxpert,Crystal,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +demsking/image-downloader,demsking,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +FloweeTheHub/thehub,FloweeTheHub,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +philbooth/bfj,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bzim/lockfree,bzim,Rust,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +jabranham/system-packages,jabranham,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ydkn/capistrano-rails-console,ydkn,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE +betseg/vim-dcrpc,betseg,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +litecord/litecord,litecord,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +guushoekman/train-journeys,guushoekman,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +vijai/screenrecorder,vijai,Java,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +YottaDB/DB/YDB,YottaDB,M,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +cutecom/cutecom,cutecom,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +women-who-code/intro-to-git-and-gitlab,women-who-code,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +Dp-140-Java/bikeChampionship,Dp-140-Java,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +arianvp/nixos-gitlab-runner,arianvp,Nix,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +PushFish/PushFish-Android,PushFish,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +john.tucker/firebase-gitlab,john.tucker,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +materials-modeling/hiphive,materials-modeling,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +tagbottle/tagbottle.com,tagbottle,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +rizon/plexus4,rizon,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +sunny256/utils,sunny256,Perl,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libvdwxc/libvdwxc,libvdwxc,Assembly,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +RBniCS/RBniCS,RBniCS,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +robigalia/rust-sel4,robigalia,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mike-koch/Mods-for-HESK,mike-koch,PHP,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Nikchavan/test-wp-plugin,Nikchavan,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/metalsmith,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ecoevomath/ulm,ecoevomath,Pascal,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +twittner/zeromq-haskell,twittner,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +leapsight/bondy,leapsight,Erlang,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/doxygen,pages,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bkeys/DMUX,bkeys,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +betse/betse,betse,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SporeDB/sporedb,SporeDB,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +kachkaev/graphiql-workspace-app,kachkaev,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +coala/package_manager,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tensors/tensor_toolbox,tensors,Matlab,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +passelecasque/varroa,passelecasque,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tim-m89/clr-haskell,tim-m89,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bipedalshark/stellaris-tech-tree,bipedalshark,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +takluyver/jeepney,takluyver,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orobardet/gitlab-ci-linter,orobardet,Go,TRUE,FALSE,FALSE,5,TRUE,FALSE,FALSE,FALSE +6uellerBpanda/check_gitlab,6uellerBpanda,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitter/env,gitlab-org,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +srrg-software/srrg_hbst,srrg-software,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ultreiaio/jgit-flow,ultreiaio,Java,TRUE,FALSE,TRUE,4,FALSE,TRUE,FALSE,FALSE +zenprotocol/zenprotocol,zenprotocol,F#,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +adimit/gitlab-time-tracking-button,adimit,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +SiLA2/sila_java,SiLA2,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,TRUE +eyeo/websites/web.adblockplus.org,eyeo,HTML,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +huia-lang/stack-vm,huia-lang,Rust,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +datadrivendiscovery/ta3ta2-api,datadrivendiscovery,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +code-stats/code-stats-vim,code-stats,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +tikiwiki/tiki,tikiwiki,PHP,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +chaoslab/chaoslab-overlay,chaoslab,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +DavidGriffith/frotz,DavidGriffith,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +alvarolopezborr/gitlab-fork-ribbon-css,alvarolopezborr,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +philbooth/check-types.js,philbooth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +derSchabi/tttrsss,derSchabi,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +fumail/fuglu,fumail,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +martin-tornqvist/ia,martin-tornqvist,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +BrightOpen/BackYard/Samotop,BrightOpen,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +FascinatedBox/lily,FascinatedBox,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orbtk/dces-rust,orbtk,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitter/gitter-android-app,gitlab-org,Java,TRUE,FALSE,FALSE,7,TRUE,TRUE,FALSE,TRUE +wireshark/wireshark,wireshark,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +golang-commonmark/markdown,golang-commonmark,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +jeanfi/psensor,jeanfi,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +wchandler/strace-parser,wchandler,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +miguel.gonzalez1/tetris-en-android-con-kotlin,miguel.gonzalez1,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pwoolcoc/soup,pwoolcoc,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +datadrivendiscovery/metadata,datadrivendiscovery,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-com/doc-gitlab-com,gitlab-com,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +evol/serverdata,evol,Shell,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +psmisc/psmisc,psmisc,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bitfireAT/ical4android,bitfireAT,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +robigalia/sel4-sys,robigalia,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bitfireAT/dav4android,bitfireAT,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/postgres,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +inkscape/lib2geom,inkscape,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Scott.Tomaszewski/grokNotes,Scott.Tomaszewski,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Varlorg/uNote,Varlorg,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +plumbis/interop-2016,plumbis,Python,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +gitlab-examples/docker,gitlab-examples,,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +davidpett/ember-cli-gitlab-ci,davidpett,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +oprudkyi/laravel-bootstrap-adminlte-starter-kit,oprudkyi,PHP,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/ci-cd/docker-machine,gitlab-org,Go,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +librehealth/toolkit/lh-toolkit,librehealth,Java,TRUE,FALSE,TRUE,3,FALSE,TRUE,TRUE,FALSE +sheerun/ping,sheerun,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stavros/gamelights,stavros,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mailman/django-mailman3,mailman,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ByteHamster/changelog,ByteHamster,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Flockademic/Flockademic,Flockademic,TypeScript,TRUE,FALSE,FALSE,8,FALSE,TRUE,FALSE,FALSE +sebdeckers/unbundle,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/ci-training-slides,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +stavros/yeecli,stavros,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +BoltsJ/cuteNTR,BoltsJ,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dennis-hamester/dacite,dennis-hamester,Rust,TRUE,FALSE,FALSE,3,FALSE,FALSE,FALSE,FALSE +degoos/WetSponge,degoos,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +librespacefoundation/satnogs/satnogs-client,librespacefoundation,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +burke-software/django-report-builder,burke-software,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anarcat/feed2exec,anarcat,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +datadrivendiscovery/common-primitives,datadrivendiscovery,Python,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +znixian/payday2-superblt,znixian,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +msvechla/vaultbot,msvechla,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +sebdeckers/tls-keygen,sebdeckers,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jojo_boulix/auto-multiple-choice,jojo_boulix,Perl,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bloodyhealth/drip,bloodyhealth,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +CyanBlob/FlutterCI,CyanBlob,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +derSchabi/OCBookmarks,derSchabi,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Openki/Openki,Openki,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ambrevar/ambrevar.gitlab.io,ambrevar,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/vuepress,pages,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +rayark/mast,rayark,C#,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +jD91mZM2/rnix,jD91mZM2,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +paulcarroty/vscodium-deb-rpm-repo,paulcarroty,Shell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +elegy0101/tutorial---blog-chido-con-django,elegy0101,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +harth/superouter,harth,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +gitlab-org/security-products/dependency-scanning,gitlab-org,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +MazeChaZer/knobster,MazeChaZer,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +adol-c/adol-c,adol-c,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +mailman/mailman-hyperkitty,mailman,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +asura/android,asura,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pythonfoo/AA,pythonfoo,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Numergent/relevance,Numergent,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jekyll-themes/jasper,jekyll-themes,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rusty-binder/rusty-cheddar,rusty-binder,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pages/nikola,pages,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +slashdeploy/docker-node-boilerplate,slashdeploy,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dimitrieh/curriculumvitae-ci-boilerplate,dimitrieh,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IvanSanchez/geogrids,IvanSanchez,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +meutraa/mm,meutraa,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Zettai-Nikoru-Man/GijiNikoru,Zettai-Nikoru-Man,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +IvanSanchez/Leaflet.TileLayer.GL,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +space-sh/space,space-sh,Shell,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +shirazlug/shirazlug.gitlab.io,shirazlug,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +snowball-dev-group/snowball-bot,snowball-dev-group,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +CopyNippyJoin/emdl,CopyNippyJoin,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +morph027/signal-web-gateway,morph027,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +latency.at/latency_exporter,latency.at,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tmaier/gitlab-auto-merge-request,tmaier,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +asromzek/fmobile,asromzek,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kachkaev/website,kachkaev,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/emacs-reveal,pages,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +m.rakha.f/alphat-new-generation,m.rakha.f,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +distributopia/share-connect-support,distributopia,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +strace/strace,strace,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fgiraldeau/INF2005,fgiraldeau,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +elixire/elixire,elixire,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +triq/triq,triq,Erlang,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +randy408/libspng,randy408,C,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +langurmonkey/gaiasky,langurmonkey,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +owl-lisp/owl,owl-lisp,Scheme,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +solarus-games/solarus-quest-editor,solarus-games,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Bubu/fdroidclassic,Bubu,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mindsphere/devops-demo,mindsphere,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +MaryChelo/web-scraping,MaryChelo,JupyterNotebook,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Songoda/SkyBlock,Songoda,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +AlessandroMilan/Design-Patterns-CSharp,AlessandroMilan,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +ixion/ixion,ixion,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +entangle/entangle,entangle,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libvirt/libvirt,libvirt,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mailman/mailmanclient,mailman,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +victorhck/privacytools-es,victorhck,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-build-images,gitlab-org,Shell,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +codingrights/radarlegislativo,codingrights,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +coala/coala-utils,coala,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hiroponz/sample-app,hiroponz,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barrel-db/erlang-rocksdb,barrel-db,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +coala/cobot,coala,CoffeeScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jobol/mustach,jobol,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aegir/aegir,aegir,CSS,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,TRUE +sat-metalab/splash,sat-metalab,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +zaaksysteem/zaaksysteem,zaaksysteem,Perl,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +srrg-software/srrg_mpr,srrg-software,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +emacs-ci/emacs,emacs-ci,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Project-FiFo/DalmatinerDB/dalmatinerdb,Project-FiFo,Erlang,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +rmenk/private-sphinx-test,rmenk,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +msvechla/kubehiera,msvechla,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pmorinerie/birdsite,pmorinerie,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/people-ops/employment,gitlab-com,,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +bluebank/braid,bluebank,Kotlin,TRUE,FALSE,TRUE,3,TRUE,FALSE,FALSE,TRUE +juanitobananas/scrambled-exif,juanitobananas,Java,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Flockademic/whereisscihub,Flockademic,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +shellyBits/v-chacheli,shellyBits,Vue,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sdnlab/jaguar,sdnlab,Java,TRUE,FALSE,TRUE,2,TRUE,TRUE,FALSE,FALSE +vuedoc/md,vuedoc,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +Niklan/dlog,Niklan,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +sanrod/go-tutorial,sanrod,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aar642/shadowos-boot,aar642,PHP,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sifoo/snigl,sifoo,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +NickBusey/inventario,NickBusey,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +latency.at/web,latency.at,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +vindarel/abelujo,vindarel,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +orcus/orcus,orcus,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ayufan/python-getting-started,ayufan,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/University,gitlab-org,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +j-pb/franz,j-pb,Clojure,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +siasar-project/admin,siasar-project,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +susurrus/gattii,susurrus,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gitlab-examples/kubernetes-example,gitlab-examples,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +eightnoteight/aschedule,eightnoteight,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +phlint/phlint,phlint,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +barrel-db/barrel-platform,barrel-db,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +minetest/minetest,minetest,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +aossie/CarbonFootprint-Mobile,aossie,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tmendes/BirthDayDroid,tmendes,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rfc2822/fdroid-firefox,rfc2822,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +smallstack/infrastructure/jira2gitlab,smallstack,TypeScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-org/csslab,gitlab-org,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +HearthProject/HearthLauncher,HearthProject,C++,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,TRUE +softwa/very-hungry-penguins,softwa,OCaml,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +metapensiero/metapensiero.pj,metapensiero,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +wrobell/remt,wrobell,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +charts/auto-deploy-app,charts,Smarty,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +BuildGrid/buildgrid,BuildGrid,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,FALSE +NullVoxPopuli/emberclear,NullVoxPopuli,TypeScript,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +jensstein/oandbackup,jensstein,Java,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +mindfulness-at-the-computer/mindfulness-at-the-computer,mindfulness-at-the-computer,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +hector.giron08/primeros-pasos-de-python,hector.giron08,CSS,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +inbitcoin/lighter,inbitcoin,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +datadrivendiscovery/d3m,datadrivendiscovery,Python,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +psono/psono-server,psono,Python,TRUE,TRUE,FALSE,4,TRUE,TRUE,TRUE,TRUE +fdroid/artwork,fdroid,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mibitzi/weiqi.gs,mibitzi,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stavros/sonoff,stavros,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +andrewbanchich/forty-jekyll-theme,andrewbanchich,CSS,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +passit/passit-frontend,passit,TypeScript,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,TRUE +marco_turi/ionic2-boilerplate,marco_turi,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +metachris/python-boilerplate-templates,metachris,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +Project-FiFo/FiFo/vmadm,Project-FiFo,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +kachkaev/website-frontend,kachkaev,TypeScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +gitlab-org/build/CNG,gitlab-org,Shell,TRUE,FALSE,FALSE,8,FALSE,TRUE,FALSE,TRUE +ElenQ/artodon,ElenQ,Clojure,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +4144/Nemo,4144,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +konrad.mrozek/cljfmt-graalvm,konrad.mrozek,Clojure,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,TRUE +semkodev/nelson.cli,semkodev,JavaScript,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +openpowerlifting/opl-data,openpowerlifting,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +KevinRoebert/ClearUrls,KevinRoebert,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +bor-sh/git-gitlab,bor-sh,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +nishtahir/linkbait,nishtahir,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +pages/middleman,pages,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +SingularityIO/LootBoxAPI,SingularityIO,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +axet/android-torrent-client,axet,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +bullbytes/scala-js-example,bullbytes,Scala,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fast-science/background-removal-server,fast-science,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +catalyst-it/vagrant-lxd,catalyst-it,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ar-/apple-flinger,ar-,Java,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +enigmail/enigmail,enigmail,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pdftk-java/pdftk,pdftk-java,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +autokent/pdf-parse,autokent,JavaScript,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,TRUE +uni10/uni10,uni10,C++,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-org/security-products/codequality,gitlab-org,Shell,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +Andrea.Ligios/Wiki2PDF,Andrea.Ligios,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DavidGriffith/minipro,DavidGriffith,Objective-C,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +rc0r/afl-utils,rc0r,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xomachine/SteamForwarder,xomachine,Nim,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +vala-panel-project/vala-panel-appmenu,vala-panel-project,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,TRUE +Douman/yukikaze,Douman,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cameronnemo/brillo,cameronnemo,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +xiayesuifeng/v2rayxplus,xiayesuifeng,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ColinDuquesnoy/MellowPlayer,ColinDuquesnoy,C++,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +inkscape/extensions,inkscape,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +gitlab-org/gitlab-git-http-server,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sane-project/backends,sane-project,C,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,TRUE +dennis-hamester/scd,dennis-hamester,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +oath-toolkit/oath-toolkit,oath-toolkit,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +arturbosch/detekt,arturbosch,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +aossie/CarbonFootprint-API,aossie,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cypress-io/cypress-example-docker-gitlab,cypress-io,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +ayufan/gitlab-compose-kit,ayufan,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +stolea/android-gitlab-ci,stolea,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +davidbittner/Screens,davidbittner,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +joneshf/purty,joneshf,Haskell,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +sawyerf/Youtube_subscription_manager,sawyerf,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mdds/mdds,mdds,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +blackfish/blackfish,blackfish,CSS,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +tstivers/GitLab.NET,tstivers,C#,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pmjones/ext-request,pmjones,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +susurrus/serialport-rs,susurrus,Rust,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +gitlab-com/gitlab-com-infrastructure,gitlab-com,HCL,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +flectra-hq/extra-addons,flectra-hq,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fediverse/fediverse.gitlab.io,fediverse,HTML,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +AtomMC/Atom,AtomMC,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +drizzt/vps2arch,drizzt,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +eidheim/Simple-WebSocket-Server,eidheim,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +librebob/athenaeum,librebob,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +postmarketOS/pmaports,postmarketOS,Shell,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +PushFish/PushFish-API,PushFish,Python,TRUE,TRUE,FALSE,3,TRUE,TRUE,FALSE,TRUE +lobaro/iot-dashboard,lobaro,JavaScript,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,TRUE +gitlab-examples/docker-cloud,gitlab-examples,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +crowdcontrol/crowdcontrol,crowdcontrol,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +itxtech/genisys,itxtech,PHP,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +aossie/Agora,aossie,Scala,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/mkdocs,pages,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ulm0/gitlab-runner,ulm0,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +sysu-gitlab/latex-group/thesis,sysu-gitlab,TeX,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +DMore/behat-chrome-extension,DMore,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +cordite/cordite,cordite,Kotlin,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +kadence/kadence,kadence,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +pycqa/flake8-docstrings,pycqa,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jekyll-themes/default-bundler,jekyll-themes,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +rusty-binder/rusty-binder,rusty-binder,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +luisfuentes/resume,luisfuentes,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/hakyll,pages,Haskell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +foodsharing-dev/foodsharing,foodsharing-dev,PHP,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +antora/antora-ui-default,antora,CSS,TRUE,FALSE,FALSE,3,FALSE,FALSE,TRUE,FALSE +juhani/go-semrel-gitlab,juhani,Go,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +skillcamp/gitnotes,skillcamp,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +RedFred7/Jongleur,RedFred7,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +leogx9r/DiscordCrypt,leogx9r,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +PoroCYon/Altar.NET,PoroCYon,C#,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/trello-power-up,gitlab-org,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +yorickpeterse/oga,yorickpeterse,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Manu343726/tinyrefl,Manu343726,C++,TRUE,FALSE,FALSE,4,FALSE,TRUE,FALSE,FALSE +weitzman/drupal-test-traits,weitzman,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-ui,gitlab-org,JavaScript,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,TRUE +xphnx/twelf_cm12_theme,xphnx,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +passit/passit-backend,passit,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-qa,gitlab-org,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +Serenata/Serenata,Serenata,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +stp-team/systemtestportal-webapp,stp-team,Go,TRUE,FALSE,FALSE,9,FALSE,TRUE,FALSE,TRUE +dekkoproject/dekko,dekkoproject,C++,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +librespacefoundation/satnogs/satnogs-network,librespacefoundation,Python,TRUE,TRUE,FALSE,5,TRUE,TRUE,TRUE,FALSE +code-stats/code-stats,code-stats,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +libtiff/libtiff,libtiff,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +shagu/pfQuest,shagu,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +altom/altunitytester,altom,C#,TRUE,FALSE,FALSE,5,FALSE,FALSE,TRUE,FALSE +aossie/CarbonFootprint,aossie,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pantomath-io/demo-tools,pantomath-io,Makefile,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +b0/spectral,b0,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Laravelium/Sitemap,Laravelium,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +juanitobananas/wave-up,juanitobananas,Kotlin,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +commonshost/server,commonshost,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-monitor,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +urn/urn,urn,CommonLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-triage,gitlab-org,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +gambas/gambas,gambas,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-svgs,gitlab-org,CSS,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +charts/gitlab-runner,charts,Smarty,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +saalen/highlight,saalen,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +subnetzero/iridium,subnetzero,Rust,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +SuperTuxParty/SuperTuxParty,SuperTuxParty,GDScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +xonotic/xonotic-data.pk3dir,xonotic,C,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +manaplus/manaplus,manaplus,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +eneiluj/gpxpod-oc,eneiluj,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +greysonp/gitlab-ci-android,greysonp,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +stuko/ovito,stuko,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +kashell/Kawa,kashell,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +doctorj/sairen,doctorj,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +recalbox/recalbox-emulationstation,recalbox,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +ercom/citbx4gitlab,ercom,Shell,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitlab-org/security-products/sast,gitlab-org,Go,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gitlab-com/support/support-team-meta,gitlab-com,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +Krzysztof-Cieslak/Fornax,Krzysztof-Cieslak,F#,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/gatsby,pages,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +apparmor/apparmor,apparmor,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +andreynech/dsched,andreynech,Go,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gdroid/gdroidclient,gdroid,Java,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +gitlab-org/gitlab_git,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +guyzmo/git-repo,guyzmo,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +anarcat/wallabako,anarcat,Go,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +PPW-2017/ppw-lab,PPW-2017,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +allianceauth/allianceauth,allianceauth,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +simple-nixos-mailserver/nixos-mailserver,simple-nixos-mailserver,Nix,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +inverted3/drum-machine,inverted3,JavaScript,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-org/cookbook-omnibus-gitlab,gitlab-org,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +stavros/python-yeelight,stavros,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +aossie/MindTheWord,aossie,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pages/nuxt,pages,Vue,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jarv/cmdchallenge,jarv,Roff,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +yale-sdmp/vesta,yale-sdmp,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +bitfireAT/icsdroid,bitfireAT,Kotlin,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +xphnx/ameixa,xphnx,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pages/org-mode,pages,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +EAVISE/lightnet,EAVISE,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +pages/sphinx,pages,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +latency.at/latencyAt,latency.at,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +gilrs-project/gilrs,gilrs-project,Rust,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +gitlab-org/takeoff,gitlab-org,Ruby,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +luspi/photoqt,luspi,QML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gpaw/gpaw,gpaw,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/pelican,pages,Makefile,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fengshaun/syncopoli,fengshaun,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +Kanedias/MARC-FS,Kanedias,C++,TRUE,FALSE,FALSE,9,FALSE,TRUE,FALSE,FALSE +Molcas/OpenMolcas,Molcas,Fortran,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +kovri-project/kovri,kovri-project,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +freedroid/freedroid-src,freedroid,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +patkennedy79/flask_recipe_app,patkennedy79,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +finestructure/pipeline-trigger,finestructure,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +ZeroDot1/CoinBlockerLists,ZeroDot1,Batchfile,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitmate/open-source/IGitt,gitmate,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +vstconsulting/polemarch,vstconsulting,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,FALSE,TRUE +luongvo209/Awesome-Linux-Software,luongvo209,Python,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +akihe/radamsa,akihe,Scheme,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +tarampampam/laravel-in-docker,tarampampam,PHP,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,FALSE +redox/redox,redox,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +solarus-games/solarus,solarus-games,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +jD91mZM2/termwm,jD91mZM2,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +orchardandgrove-oss/NoMADLogin-AD,orchardandgrove-oss,Swift,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +gitlab-org/gitlab-pages,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pages/pages.gitlab.io,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +NalaGinrut/artanis,NalaGinrut,Scheme,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +showcheap/android-ci,showcheap,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gableroux/unity3d,gableroux,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +formschema/native,formschema,JavaScript,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +gitlab-org/release-tools,gitlab-org,Ruby,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +dgmcguire/texas,dgmcguire,Elixir,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +dalibo/postgresql_anonymizer,dalibo,PLpgSQL,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +m2crypto/m2crypto,m2crypto,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +QEF/q-e,QEF,Fortran,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +javallone/regexper-static,javallone,JavaScript,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +fdroid/fdroid-website,fdroid,HTML,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,TRUE +CLIUtils/modern-cmake,CLIUtils,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +DDP2-CSUI/assignment,DDP2-CSUI,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +nvidia/cuda,nvidia,,TRUE,FALSE,FALSE,4,FALSE,TRUE,TRUE,FALSE +charts/charts.gitlab.io,charts,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +coldnight/ci-test,coldnight,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +fdroid/repomaker,fdroid,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +expliot_framework/expliot,expliot_framework,Python,TRUE,FALSE,FALSE,4,FALSE,FALSE,FALSE,FALSE +financier/financier,financier,JavaScript,TRUE,FALSE,FALSE,6,TRUE,TRUE,TRUE,TRUE +freedesktop-sdk/freedesktop-sdk,freedesktop-sdk,C++,TRUE,FALSE,FALSE,12,FALSE,TRUE,FALSE,TRUE +veloren/game,veloren,Rust,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +noosfero/noosfero,noosfero,Ruby,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +pgjones/hypercorn,pgjones,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +osslugaru/lugaru,osslugaru,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +eneiluj/phonetrack-oc,eneiluj,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +GrafX2/grafX2,GrafX2,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,FALSE,FALSE +rosie-pattern-language/rosie,rosie-pattern-language,HTML,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +gitmate/open-source/gitmate-2,gitmate,Python,TRUE,TRUE,FALSE,3,FALSE,TRUE,TRUE,TRUE +DMore/chrome-mink-driver,DMore,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +meltano/analytics,meltano,Python,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,TRUE +commento/commento-ce,commento,Go,TRUE,FALSE,FALSE,7,FALSE,FALSE,FALSE,FALSE +mailman/postorius,mailman,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/review-apps-nginx,gitlab-examples,HTML,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +honeyryderchuck/httpx,honeyryderchuck,Ruby,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +axet/android-book-reader,axet,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-com/www-remoteonly-org,gitlab-com,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/ssh-private-key,gitlab-examples,,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-examples/kubernetes-deploy,gitlab-examples,Shell,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +gitlab-examples/php,gitlab-examples,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +prism-break/prism-break,prism-break,HTML,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +IvanSanchez/Leaflet.GridLayer.GoogleMutant,IvanSanchez,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +axet/android-call-recorder,axet,Java,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +ric_harvey/nginx-php-fpm,ric_harvey,Shell,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +spacecowboy/Feeder,spacecowboy,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +fdroid/privileged-extension,fdroid,Java,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +davical-project/davical,davical-project,PHP,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +eidheim/Simple-Web-Server,eidheim,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +juergens/stabbot,juergens,Python,TRUE,TRUE,FALSE,2,TRUE,FALSE,TRUE,FALSE +gitlab-com/migration,gitlab-com,Shell,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +DDP2-CSUI/ddp-lab,DDP2-CSUI,Java,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +esr/reposurgeon,esr,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NTPsec/ntpsec,NTPsec,C,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +cppit/jucipp,cppit,C++,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +pages/hexo,pages,CSS,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/marketing/general,gitlab-com,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +MasterPassword/MasterPassword,MasterPassword,Objective-C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +NebulousLabs/Sia,NebulousLabs,Go,TRUE,FALSE,FALSE,3,FALSE,TRUE,TRUE,FALSE +BuildStream/buildstream,BuildStream,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,TRUE +gableroux/unity3d-gitlab-ci-example,gableroux,C#,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +pages/gitbook,pages,,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fdroid/rfp,fdroid,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Remmina/Remmina,Remmina,C,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +pdfgrep/pdfgrep,pdfgrep,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-workhorse,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/docker-distribution-pruner,gitlab-org,Go,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,TRUE +xuhaiyang1234/AAK-Cont,xuhaiyang1234,JavaScript,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +mbajur/prismo,mbajur,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mailman/hyperkitty,mailman,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,FALSE,FALSE +pikatrack/pikatrack,pikatrack,Ruby,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +postmarketOS/pmbootstrap,postmarketOS,Python,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +procps-ng/procps,procps-ng,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +jgkamat/rmsbolt,jgkamat,EmacsLisp,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-runner-docker-cleanup,gitlab-org,Go,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +sequoia-pgp/sequoia,sequoia-pgp,Rust,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +painlessMesh/painlessMesh,painlessMesh,C++,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +flectra-hq/flectra,flectra-hq,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-shell,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mojo42/Jirafeau,mojo42,PHP,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +ganttlab/ganttlab-live,ganttlab,Vue,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +antora/antora,antora,JavaScript,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +charts/gitlab,charts,Smarty,TRUE,FALSE,FALSE,9,FALSE,TRUE,FALSE,TRUE +pages/plain-html,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +openconnect/ocserv,openconnect,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,TRUE,FALSE +gnutls/gnutls,gnutls,C,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +kornelski/babel-preset-php,kornelski,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitaly,gitlab-org,Go,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +kivymd/KivyMD,kivymd,Python,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +muttmua/mutt,muttmua,C,TRUE,FALSE,FALSE,2,TRUE,FALSE,TRUE,FALSE +OpenMW/openmw,OpenMW,C++,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +meltano/meltano,meltano,Python,TRUE,TRUE,FALSE,4,FALSE,TRUE,FALSE,TRUE +gitlab-com/support-forum,gitlab-com,,TRUE,FALSE,FALSE,1,FALSE,FALSE,FALSE,FALSE +ase/ase,ase,Python,TRUE,TRUE,FALSE,1,FALSE,TRUE,FALSE,FALSE +Isleward/isleward,Isleward,JavaScript,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +pages/jekyll,pages,CSS,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +tezos/tezos,tezos,OCaml,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,TRUE +stavros/Spamnesty,stavros,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-design,gitlab-org,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +recalbox/recalbox,recalbox,GLSL,TRUE,FALSE,FALSE,4,TRUE,FALSE,FALSE,TRUE +pages/hugo,pages,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/runbooks,gitlab-com,Shell,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +xhang/gitlab,xhang,Ruby,TRUE,FALSE,FALSE,5,TRUE,TRUE,FALSE,FALSE +technomancy/bussard,technomancy,Lua,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +mailman/mailman,mailman,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fdroid/fdroidserver,fdroid,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +esr/open-adventure,esr,C,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +mayan-edms/mayan-edms,mayan-edms,Python,TRUE,TRUE,FALSE,8,FALSE,TRUE,TRUE,FALSE +gitlab-org/gitlab-ci,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pycqa/flake8,pycqa,Python,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +meno/dropzone,meno,JavaScript,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +graphviz/graphviz,graphviz,C,TRUE,FALSE,FALSE,3,TRUE,FALSE,TRUE,FALSE +leanlabsio/kanban,leanlabsio,JavaScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +Rich-Harris/buble,Rich-Harris,JavaScript,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/gitlab-development-kit,gitlab-org,Makefile,TRUE,FALSE,FALSE,2,TRUE,TRUE,FALSE,FALSE +mildlyparallel/pscircle,mildlyparallel,C,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +NickBusey/HomelabOS,NickBusey,HTML,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-org/omnibus-gitlab,gitlab-org,Ruby,TRUE,FALSE,FALSE,3,FALSE,TRUE,FALSE,FALSE +doctorj/interview-questions,doctorj,Python,TRUE,TRUE,FALSE,2,FALSE,TRUE,TRUE,FALSE +fdroid/fdroiddata,fdroid,Python,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/gitlab-ci-yml,gitlab-org,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +pgjones/quart,pgjones,Python,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +gitlab-com/www-gitlab-com,gitlab-com,HTML,TRUE,FALSE,FALSE,4,TRUE,TRUE,TRUE,FALSE +gitlab-org/gitter/webapp,gitlab-org,JavaScript,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +Commit451/LabCoat,Commit451,Kotlin,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +rosarior/awesome-django,rosarior,Makefile,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +inkscape/inkscape,inkscape,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,TRUE,FALSE +fdroid/fdroidclient,fdroid,Java,TRUE,FALSE,FALSE,2,FALSE,TRUE,TRUE,FALSE +gitlab-org/gitlab-runner,gitlab-org,Go,TRUE,FALSE,FALSE,8,TRUE,TRUE,FALSE,TRUE +Cacophony/Pong,Cacophony,Go,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +edgyemma/Postmill,edgyemma,PHP,TRUE,FALSE,FALSE,5,FALSE,TRUE,FALSE,TRUE +european-data-portal/ckan-dcatap-schema,european-data-portal,,TRUE,FALSE,FALSE,1,FALSE,FALSE,TRUE,FALSE +european-data-portal/metadata-quality-assurance,european-data-portal,Java,TRUE,FALSE,TRUE,2,FALSE,TRUE,TRUE,FALSE +failmap/failmap,failmap,Python,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,TRUE +gioxa/oc-runner/oc-runner,gioxa,C,TRUE,FALSE,FALSE,9,TRUE,FALSE,FALSE,TRUE +gitlab-com/gitlab-docs,gitlab-com,HTML,TRUE,FALSE,FALSE,5,TRUE,TRUE,TRUE,FALSE +gnuwget/wget2,gnuwget,C,TRUE,FALSE,FALSE,2,FALSE,FALSE,FALSE,FALSE +interscity/interscity-platform/resource-adaptor,interscity,Ruby,TRUE,FALSE,FALSE,1,FALSE,TRUE,FALSE,FALSE +kargo-ci/kubernetes-incubator/kubespray,kargo-ci,Python,TRUE,TRUE,FALSE,6,FALSE,TRUE,FALSE,FALSE +raxa/raxa,raxa,TypeScript,TRUE,FALSE,FALSE,1,TRUE,FALSE,FALSE,FALSE +remal/name.remal.gradle-plugins,remal,Kotlin,TRUE,FALSE,FALSE,6,TRUE,TRUE,FALSE,TRUE +romangrothausmann/FacetAnalyser,romangrothausmann,C++,TRUE,FALSE,FALSE,3,TRUE,TRUE,FALSE,TRUE +teuteuf/SpotTheDefuser,teuteuf,C#,TRUE,FALSE,FALSE,4,TRUE,TRUE,FALSE,FALSE +ucl-peach-public/trialslink,ucl-peach-public,Java,TRUE,FALSE,TRUE,3,TRUE,TRUE,FALSE,FALSE +wpdesk/wc-helpers,wpdesk,PHP,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +wpdesk/wp-builder,wpdesk,PHP,TRUE,FALSE,FALSE,5,FALSE,TRUE,TRUE,FALSE +ydkn/capistrano-git-copy-bundle,ydkn,Ruby,TRUE,FALSE,FALSE,3,TRUE,FALSE,FALSE,FALSE \ No newline at end of file diff --git a/datasets/good_bad_cd-practices.csv b/datasets/good_bad_cd-practices.csv new file mode 100644 index 0000000..8f6c1d6 --- /dev/null +++ b/datasets/good_bad_cd-practices.csv @@ -0,0 +1,71 @@ +Category,Sub-Category,Description,Concrete Practice,Type,Page reference +Configuration Managment,Manage dependencies," If your system grows or you have components that several projects depend on, you may consider splitting out your components’ builds into separate pipelines. If you do so, it’s important to have binary dependencies between your pipelines rather than source dependencies",binary dependencies between your pipelines,best practice,39 +Configuration Managment,Manage software configuration,"Configuration information can be injected into your application at several points (build time, packaging time, deployment time, startup time or run time). Bad practice to inject configuration information at build or packaging time.",inject configuration information at build or packaging time,anti-pattern,41 +Configuration Managment,Manage software configuration,"Configuration can be supplied in the form of environment variables, as arguments to the command used to start the system, registry settings, a database, configuration files, or an external configuration service (accessed via SOAP or a REST-style interface, for example). Supply all configuration information for all the applications and environments in your organization through the same mechanism",supply all configuration through the same mechanism,best practice,42 +Configuration Managment,testing,e.g. test whether references to external services in your configuration settings are good (e.g. through pinging),test configuration settings,best practice,46 +Configuration Managment,Manage software configuration,"keep a catalogue of all the configuration options that each of your applications has, where they are stored, what their lifecycle is, and how they can be changed. Should be generated automatically from each application’s code as part of the build process",keep a catalogue of all configurations,best practice,47 +Configuration Managment,Manage software configuration,,keep configuration options in the same place as the source code,best practice,48 +Configuration Managment,Manage software configuration,,keep configuration values not in the same place as source code,best practice,48 +Configuration Managment,Manage software configuration,Avoid obscure or cryptic names. without a manual—it should be possible to understand what the configuration properties are,clear naming conventions for your configuration options,best practice,48 +Configuration Managment,Managing your environments,Changes in the configuration of environments are directly and manually performed rather than being made in version control and then propagated to production through an automated process. It should be possible to re-create every environment in a automated way (e.g. through virtualization).,Manual configuration of environments,anti-pattern,49 +Configuration Managment,Managing your environments,,Automate creation of environments,best practice,50 +Configuration Managment,Managing your environments,"In terms of software configuration, testing environments should be exact replicas of the production ones, so configuration problems can be found early.",configuration of testing environments same as the production/staging ones,best practice,50 +Configuration Managment,Managing your environments,,Keep all configuration in one place,best practice,51 +Configuration Managment,Managing your environments,A production environment should be completely locked down. It should not be possible for anybody to make a change to it without going through your organization’s change management process.,Change production environment directly,anti-pattern,53 +Continuous Integration,testing,,Comprehensive automated test suite,best practice,60 +Continuous Integration,duration,"Ideally, the compile and test process that you run prior to check-in and on your CI server should take no more than a few minutes. We think that ten minutes is about the limit, five minutes is better, and about ninety seconds is ideal",Keep build and test process short,best practice,60/61 +Continuous Integration,testing,"First stage: to compile the software, run your suite of unit tests and create a deployable binary. Second stage: binaries from the first stage and run the acceptance tests, as well as integration tests, and performance tests",Split test process into multiple stages,best practice,61 +Continuous Integration,testing,smoke test should perform a few simple acceptance and integration tests to make sure that the most commonly used functionality isn’t broken,incorporate smoke tests in commit stage,best practice,61 +Continuous Integration,notification,"We’ve seen people use red and green lava lamps to show the status of the last build, or a CI system that sent the status to a Nabaztag wireless electronic rabbit. One developer we know, with some skill in electronics, created an extravagant tower of flashing lights and sirens which would explode into action to indicate the progress of various builds on a complex project. Another trick is to use text-to-speech to read out the name of the person who broke the build. Some continuous integration servers can display the status of the build, along with the avatars of the people who checked in—and this can be displayed on a big screen",Make build results well visible,best practice,63/64 +Continuous Integration,check-in,refresh local copy of the project by updating from the version control system,Pull before check-in,best practice,67 +Continuous Integration,check-in,"Many modern CI servers offer a feature variously known as pretested commit, personal build, or preflight build (wikipedia: gated commit, gated check-in). Using this facility, instead of checking in yourself, your CI server will take your local changes and run a build with them on the CI grid. If the build passes, the CI server will check your changes in for you. If the build fails, it will let you know what went wrong",Gated check-in,best practice,67 +Continuous Integration,check-in,,Run local test suite before check-in,best practice,36/67 +Continuous Integration,,"At the point of check-in, the developers who made it are responsible for monitoring the build’s progress. Until their check-in has compiled and passed its commit tests, the developers should not start any new task",Wait for Commit Tests to Pass before Moving On,best practice,68/69 +Continuous Integration,,"Establish a team rule: When the build breaks on check-in, try to fix it for ten minutes. If, after ten minutes, you aren’t finished with the solution, revert to the previous version from your version control system",Time-Box Fixing before Reverting,best practice,70 +Continuous Integration,,"It is your responsibility to fix all tests that are not passing as a result of your changes. This practice has several implications. It means that you need to have access to any code that you can break through your changes, so you can fix it if it breaks. It means that you can’t afford to have developers own a subset of the code that only they can work on",Everybody has access to the whole codebase,best practice,71 +Continuous Integration,testing,the only way to get excellent unit test coverage is through test-driven development.,Test-driven development,best practice,71 +Continuous Integration,,"For some projects failing the build on any warning may sound too draconian. One approach that we have used to introduce this practice gradually is ratcheting. This means comparing the number of things like warnings or TODOs with the number in the previous check-in. If the number increases, we fail the build. Using this approach, you can easily enforce a policy that every commit should reduce the number of warnings or TODOs at least by one",Fail build on compiler warnings,best practice,73/74 +Continuous Integration,,"For some projects failing the build on any warning may sound too draconian. One approach that we have used to introduce this practice gradually is ratcheting. This means comparing the number of things like warnings or TODOs with the number in the previous check-in. If the number increases, we fail the build. Using this approach, you can easily enforce a policy that every commit should reduce the number of warnings or TODOs at least by one",Fail build on code style breaches,best practice,73/74 +Testing,,Run unit tests before component and end2end tests,Run unit tests first,best practice,89 +Testing,,"Having been caught short many times by bad performance just before release, we recommend that you set up at least some basic nonfunctional tests towards the start of any project, no matter how simple or inconsequential",Have non-functional tests,best practice,91 +Testing,,start writing automated acceptance tests from the very beginning,Write tests from the beginning,best practice,92/93/94 +Testing,,"The best way to introduce automated testing is to begin with the most common, important, and high-value use cases of the application",Write tests for most important use cases first,best practice,94 +Testing,,"It is essential to ensure that you don’t hit a real external system unless you are in production, or you have some way of telling the service that you are sending it dummy transactions for testing purposes",Don’t hit a real external system,best practice,96/97 +Testing,,"It is essential that your test harness replicates not only the expected responses to service calls, but also unexpected ones.",Test harness simulates all conditions of external service,best practice,97/98 +Continuous Integration,,Several compilations are repeated during deployment stage.,Only Build Your Binaries Once,Anti-pattern,111-112 +Continuous Integration,,You should make sure that every component of your infrastructure is up and running.,Smoke testing,Best-practice,117 +Continuous Integration,,"Prior realising a change in the production environment, the change has to be tested in a similar environment",Simulate production environments,Best-practice,117 +Configuration,,"It is vital that you have the correct versions of all libraries, components, environments, which means the same versions that are know to work with the version of the source code you are working from. simplest solution of all is to commit these libraries into your version control system along with your source code",Specify exact version of external libraries/environment,best practice,38/62 +Deployment,,"For many organizations, a “build script” is a printed document with a series of instructions. Steps for deployment are performed manually rather than automating the process by using a single script.",Manual deployment,anti-pattern,5/165 +Deployment,,"During development, software is tested in a development environment only. Deployment to a staging/production environment happens after the development is finished rather than integrating them in the developing process.",Missing deployment,anti-pattern,7 +VC,,"Don't check passwords into VC. Use environment variables for passwords, SSH keys and credentials (https://docs.gitlab.com/ee/ci/variables/)",Passwords in VC,anti-pattern,44 +Build,,Jobs in same stages are executed in parallel,Run jobs in correct stages,best practice,https://docs.gitlab.com/ee/ci/pipelines.html +Build,,"Any artificats produced during the build (binaries, configuration, metadata, reports, ...) should be placed in the directory target/",Place build artifacts in target/,best practice,"https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html, 158/159" +Cleaning,,Remove generated output after/before build (e.g. with Maven's clean),Clean up artifacts,best practice,https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/How_Mozilla_s_build_system_works/Makefiles_-_Best_practices_and_suggestions +Build,,"Executable code should be the same executable code that is deployed into every environment, whether it is a testing environment or a production environment. Thus, executable code should not be rebuilt for other environments.",Same executable code for all environments,best practice,13 +Configuration,,Use relative paths rather than absolute ones.,Absolute paths,anti-pattern, +Deployment,,Using the same scripts to deploy to each environment and representing the differences between environments—such as service URIs and IP addresses—as configuration information to be managed separately. It is essential that both build and deployment scripts work on developers’ machines as well as on production-like environments,Same pipeline for every environment,best practice,115-116/153/154 +Deployment,,You’ll need to ensure that any libraries your application depends on are packaged up along with your application’s binaries as part of your deployment pipeline. Build tools such as Ivy and Maven have no place on production boxes.,Package libraries along with application,best practice,160 +Configuration,,It’s essential to be able to determine from any given binary which revision in version control was used to generate it. JAR files can include metadata in their manifests -> include the version control revision identifier,Build In Traceability from Binaries to Version Control,best practice,165/166 +Build,,"In some build systems, the default behavior is that the build fails immediately when a task fails. instead, record the fact that the activity has failed, and continue with the rest of the build process. Then, at the end of the process, see if any of the individual tasks failed and, if so, exit with a failure code.",Fail/Cancel build immediately when one task fails,anti-pattern,166/167 +Security,,Use safe protocols such as https,Use safe protocols,best practice, +Build,,Retrying a job in case of a failure.,Retry jobs,anti-pattern,https://docs.gitlab.com/ee/ci/yaml/README.html#retry +Build,,"No failures should be ""tolerated"" in the process. Each step should be set in a way that it can break the build. ",Allow failures for jobs,anti-pattern,https://docs.gitlab.com/ee/ci/yaml/README.html#allow_failure +Configuration,,Don’t mix the caching with passing artifacts between stages. `cache` is used for temporary storage for project dependencies. `artifacts` are used for stage results that will be passed between stages.,Don't mix 'cache' and 'artifacts',anti-pattern,"https://docs.gitlab.com/ee/ci/caching/index.html +https://docs.gitlab.com/ee/user/project/pipelines/job_artifacts.html" +Testing,,"Automated test coverage includes unit, component, and acceptance tests, each of which should cover 80% of the application",Sufficient test coverage,best practice,87 +Testing,,Developers comment out failing tests in order to get their changes checked in,Skip/Comment out tests,anti-pattern,70 +VC,,Explain what the change is in the commit message -> do not drop it or don't write unhelpful/meaningless messages. One style we like is a multiparagraph commit message in which the first paragraph is a summary and the following paragraphs add more detail.,Descriptive commit messages,best practice,37 +VC,,include a link to the identifier in your project management tool for the feature or bug you’re working on,Include link/ID of issue in commit message,best practice,38 +VC,,"The cardinal sin of continuous integration is checking in on a broken build. If the build breaks, the developers responsible are waiting to fix it",Don’t Check In on a Broken Build,best practice,66 +VC,,Commit changes to the version control system at the conclusion of each separate incremental change or refactoring,Introduce changes incrementally,best practice,37 +VC,,Commit changes to the trunk in version control on a regular and frequent basis rather than using branching to defer integration,Branching,anti-pattern,36/59 +VC,,Don't keep binary output of application’s compilation in version control,Binaries in VC,anti-pattern,35/166 +VC,,The target directory is used to store all output of the build.,target/ directory in VC,anti-pattern,159 +Build,,The build should be triggered whenever commits are pushed,Build on every push,best practice,55/56 +Testing,,Unit tests should run fast.,Slow unit tests,anti-pattern,60/73 +Configuration,,"Python: https://docs.python-guide.org/writing/structure/ +Java: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html",Use standard project layout,best practice,157/158 +Testing,,"Unit tests should be stored in a mirror of the package hierarchy of your code—that is, a test for a given class should be in the same package as that class.",Unit tests in a mirror of the package hierarchy,best practice,159 +VC,,"You have several options for managing libraries. One is to completely delegate library management to a tool like Maven or Ivy. In this case, you don’t need to check any libraries into version control—just declare the dependencies you require in your project specification. At the other end of the spectrum, you can check into source control all the libraries your project requires to build, test, or run the system, in which case it is common to put them into a directory called lib at the root of your project.",Check libraries into VC,best practice,160 +VC,,You should check in your code at least a couple of times a day into the master branch,Check in regularly to trunk,best practice,59 \ No newline at end of file diff --git a/datasets/rq1-cdsmells.csv b/datasets/rq1-cdsmells.csv new file mode 100644 index 0000000..a8e5d68 --- /dev/null +++ b/datasets/rq1-cdsmells.csv @@ -0,0 +1,146 @@ +id,category,reviewTag*,desc,linkToRepository,linkToOpenedIssue,fixed (y/n/m),cd-linter-bug,comment-labels,fix-labels,reaction,lastChecked,state,isAssigned,numUpvotes,numDownvotes,numComments,label*,monitoringTag*,contributors,contributorsSinceIssue,commitsSinceIssue,resolution-time +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/mauriciobaeza/empresa-libre,omitted,,,,,,200205-180809,deleted,FALSE,0,0,0,NULL,reaction:negative,-1,-1,-1, +deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/deltares/rtc-tools,omitted,n,pip-install,,,,200205-180809,closed,FALSE,0,0,0,NULL,reaction:negative,12,4,76, +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/flatiron-dc/learning-git2,omitted,,,,,,200205-180811,opened,FALSE,0,0,0,NULL,NULL,8,0,0, +indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/indybay/indybay-active,omitted,n,deploy-phase,,,,200205-180813,closed,FALSE,0,0,0,NULL,reaction:negative,5,2,22, +harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/harbottle/puppet-mattermost,omitted,n,deploy-phase,,,,200205-180816,closed,FALSE,0,0,0,NULL,NULL,11,3,17, +agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/agrumery/aGrUM,omitted,y,,,temporary-smell,positive,200205-180818,closed,TRUE,0,0,1,NULL,decision:pending,24,7,187,9993338524 +sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/sofreeus/aghi2gitlab,omitted,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,5,0,0, +georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/georgedorn/wonambi,omitted,,,,,,200205-180821,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +fluidattacks__asserts__Job-Retry__test,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/fluidattacks/asserts,omitted,y,,"use-in-paper, remove-all",,positive,200205-180831,closed,TRUE,2,0,3,NULL,use-in-paper,19,7,492,40597408 +vuedoc__parser__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/vuedoc/parser,omitted,,,,,,200205-180824,closed,TRUE,1,0,2,NULL,decision:accept,6,0,0, +postmarketOS__build-postmarketos-org__Manual-Job__test-phpcs,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/postmarketOS/build.postmarketos.org,omitted,y,,,job-removed,positive,200205-180841,closed,FALSE,0,0,3,NULL,long-lived-branch,3,3,315,4412981296 +coala__package_manager__Versioning__requirementstxt__hg-https---bitbucket-org-jayvdb-sarge-win-reg-lookup-egg-sarge__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/coala/package_manager,omitted,,,,,,200205-180826,opened,FALSE,0,1,1,NULL,decision:reject,32,0,0, +jonocarroll__mathpix__Job-Allow-Failure__r-oldrel,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/jonocarroll/mathpix,omitted,,,,,,200205-180827,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +Orange-OpenSource__gitlab-buildpkg-tools__Manual-Job__build_ubuntu_artful,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools,omitted,n,,,,,200205-180845,closed,FALSE,1,0,0,NULL,NULL,7,7,99, +pushrocks__smartcli__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/pushrocks/smartcli,omitted,,,,,,200205-180830,closed,FALSE,0,0,0,NULL,decision:ignored,8,0,0, +neachdainn__nng-rs__Job-Allow-Failure__nightly,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/neachdainn/nng-rs,omitted,n,,"nightly-build, no-trust, flaky-tool",,reject,200205-180847,closed,FALSE,0,2,5,NULL,decision:reject,5,3,35, +larsyunker__unithandler__Versioning__requirementstxt__numpy__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/larsyunker/unithandler,omitted,y,,,wrong-fix,positive,200205-180848,closed,FALSE,0,0,2,NULL,decision:fix,1,2,10,291505243 +runarberg__trompt__Job-Allow-Failure__test-unstable,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/runarberg/trompt,omitted,,,,,,200205-180840,opened,FALSE,0,0,0,NULL,NULL,2,0,0, +sherpa-team__sherpa__Manual-Job__test-clang-strict-LO_Z,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/sherpa-team/sherpa,omitted,y,,,,,200205-180851,closed,FALSE,0,0,0,NULL,reaction:negative,36,16,58,3600843163 +elad-noor__equilibrator-api__Versioning__gitlabyaml__wheel__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/elad.noor/equilibrator-api,omitted,,,,,,200205-180843,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +jamietanna__jvt-me__Job-Allow-Failure__test_links,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/jamietanna/jvt.me,omitted,y,,,,not-now,200205-180901,closed,FALSE,0,1,1,NULL,NULL,2,2,2173,5144456847 +psono__psono-server__Versioning__requirementstxt__six__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/psono/psono-server,omitted,y,,,,not-now,200205-181110,closed,FALSE,0,1,5,NULL,reason:benefitoffutureupdates,7,3,94,8845580793 +dalton__dalton__Job-Allow-Failure__nightly-mpi-int64,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/dalton/dalton,omitted,n,,nightly-build,job-removed,reject,200205-181115,closed,FALSE,0,0,3,NULL,decision:reject,70,11,80, +angreal__angreal__Job-Allow-Failure__init_gitlab_python,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/angreal/angreal,omitted,n,,,,reject,200205-181120,closed,FALSE,0,1,1,NULL,NULL,4,3,32, +eyeo__websites__web-adblockplus-org__Manual-Job__tests,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/eyeo/websites/web.adblockplus.org,omitted,,,,,,200205-180849,deleted,FALSE,1,0,3,NULL,temporary,-1,-1,-1, +john-carroll-p__rschedule__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/john.carroll.p/rschedule,omitted,y,,job-removed,,,200205-181122,closed,FALSE,0,1,0,NULL,reaction:negative,1,1,69, +experimentslabs__engine_elabs__Job-Allow-Failure__bundle-outdated,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/experimentslabs/engine_elabs,omitted,n,,depedency-scanning,,not-now,200205-181131,closed,FALSE,0,1,3,NULL,decision:reject,4,2,34, +inkscape__inkscape-web__Versioning__requirementstxt__django-extratest__any-upper-version,Versioning,any-upper-version,DROPPED FOR NOW,https://gitlab.com/inkscape/inkscape-web,omitted,n,,tool-upgrade,,reject,200205-181133,closed,FALSE,0,2,6,NULL,reason:benefitoffutureupdates,22,6,120, +litecord__litecord__Versioning__requirementstxt__pipenv__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/litecord/litecord,omitted,n,,tool-upgrade,,reject,200205-181138,closed,FALSE,0,0,3,NULL,reaction:negative,16,3,94, +linagora__petals-cockpit__Job-Retry__test-frontend,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/linagora/petals-cockpit,omitted,n,,flaky-tool,self-admitted,not-now,200205-181143,closed,FALSE,0,1,2,NULL,temporary,10,7,117, +juhani__go-semrel-gitlab__Manual-Job__test,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/juhani/go-semrel-gitlab,omitted,n,,,,,200205-181145,closed,FALSE,0,0,0,NULL,reaction:negative,3,1,4, +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__lxml__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/GitLabRGI/erdc/geopackage-python,omitted,,,,,,200205-181109,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +bitseater__meteo__Job-Allow-Failure__package-snap,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/bitseater/meteo,omitted,y,,,,positive,200205-181149,closed,TRUE,1,0,1,NULL,request-mr,15,3,22,3503753 +r1dScripts__chatty_server__Versioning__requirementstxt__dnspython__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/r1dScripts/chatty_server,omitted,,,,,,200205-181111,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +dataengi__marketing__www-dataengi-com__Manual-Job__check_links,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/dataengi/marketing/www.dataengi.com,omitted,,,,,,200205-181112,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +phyohtetarkar__github-jobs__Manual-Job__build,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/phyohtetarkar/github-jobs,omitted,,,,,,200205-181113,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +xomachine__NESM__Job-Allow-Failure__test-devel,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/xomachine/NESM,omitted,n,,optional-job,,reject,200205-181150,closed,FALSE,0,1,1,NULL,NULL,2,2,8, +librespacefoundation__satnogs__satnogs-docs__Versioning__requirementstxt__pyserial__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/librespacefoundation/satnogs/satnogs-docs,omitted,,,,,,200205-181118,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +emcrp__src__Manual-Job__build-and-push,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/emcrp/src,omitted,,,,,,200205-181119,opened,FALSE,0,0,0,NULL,NULL,12,0,0, +simulant__simulant__Job-Allow-Failure__test-dreamcast-sh4-gcc,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/simulant/simulant,omitted,n,,temporary-smell,self-admitted,reject,200205-181152,closed,FALSE,0,1,3,NULL,temporary,5,3,330, +perobertson__dotfiles__Manual-Job__py38,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/perobertson/dotfiles,omitted,y,,temporary-smell,,,200205-181159,closed,TRUE,0,0,0,NULL,NULL,9,1,51,5694944417 +charts__gitlab__Job-Allow-Failure__production_specs_eks,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/charts/gitlab,omitted,,,,,,200205-181123,deleted,FALSE,0,0,1,S4,decision:accept,-1,-1,-1, +aegir__aegir__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/aegir/aegir,omitted,,,,,,200205-181124,closed,FALSE,0,1,4,NULL,reaction:negative,3,0,0, +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__minimal_systemd_vm_powerpc64le,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,omitted,n,,"temporary-smell, agreement, optional-job, flaky-env",self-admitted,not-now,200205-181200,closed,FALSE,0,1,6,NULL,temporary,57,28,842, +anited__publish__Versioning__requirementstxt__Markdown__any-upper-version,Versioning,any-upper-version,DROPPED FOR NOW,https://gitlab.com/anited/publish,omitted,y,,no-trust,,reject,200205-181207,closed,FALSE,0,1,1,NULL,decision:fix,2,1,4,235684719 +dodgyville__pygltflib__Versioning__requirementstxt__dataclasses__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/dodgyville/pygltflib,omitted,y,,wrong-fix,,,200205-181209,closed,FALSE,0,0,0,NULL,decision:fix,3,2,17,68296527 +iba-aes__webcie__website__Job-Retry__Make-Docker-image,Job-Retry,script_failure,DROPPED FOR NOW,https://gitlab.com/iba-aes/webcie/website,omitted,,,,,,200205-181135,deleted,FALSE,0,0,2,Intern,reaction:positive,-1,-1,-1, +oly-exams__exam_tools__Versioning__requirementstxt__future__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/oly-exams/exam_tools,omitted,,,,,,200205-181136,opened,FALSE,0,0,0,NULL,NULL,11,0,0, +datadrivendiscovery__sklearn-wrap__Versioning__requirementstxt__git-https---gitlab-com-datadrivendiscovery-d3m-git-devel__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/datadrivendiscovery/sklearn-wrap,omitted,y,wrong-detection,,,positive,200205-181216,closed,FALSE,0,1,2,NULL,decision:reject,11,5,33, +Manu343726__tinyrefl__Job-Retry__conan-integration-clang60,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/Manu343726/tinyrefl,omitted,,,,,,200205-181141,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +gioxa__imagebuilder__Job-Retry__build_rootfs-pass_two,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/gioxa/imagebuilder,omitted,,,,,,200205-181141,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +elixire__elixire__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/elixire/elixire,omitted,n,pip-install,,,reject,200205-181224,closed,FALSE,0,1,2,NULL,reaction:negative,14,1,6, +offa__docker-images-ci__Job-Retry__stm32-eth_clang-5,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/offa/docker-images-ci,omitted,y,,new-linters-suggestion,,positive,200205-181228,closed,TRUE,1,0,1,enhancement,decision:fix,1,1,4,99809799 +vindarel__abelujo__Job-Allow-Failure__py-qa,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/vindarel/abelujo,omitted,n,"optional-job, code-quality",,,,200205-181229,closed,FALSE,0,1,0,NULL,reaction:negative,3,2,195, +gnutls__libtasn1__Job-Retry__x86,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/gnutls/libtasn1,omitted,y,,"flaky-env, no-trust",,not-now,200205-181250,closed,FALSE,1,0,4,NULL,decision:accept,22,5,33,12430914071 +valtron__msn-server__Versioning__requirementstxt__lxml__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/valtron/msn-server,omitted,n,,"agreement, no-time",,not-now,200205-181253,closed,FALSE,0,1,4,NULL,reason:benefitoffutureupdates,5,1,63, +fdroid__fdroidclient__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/fdroid/fdroidclient,omitted,n,,flaky-env,,reject,200205-181256,closed,FALSE,0,1,2,NULL,reaction:negative,120,11,148, +wpdesk__wp-dataset__Job-Retry__deploy-to-shop,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/wpdesk/wp-dataset,omitted,,,,,,200205-181151,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +atomap__atomap__Job-Allow-Failure__style_checks_flake8_docstrings,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/atomap/atomap,omitted,y,,,,,200205-181300,closed,FALSE,1,0,0,NULL,decision:fix,9,5,111,1939017040 +NTPsec__ntpsec__Job-Retry__ubuntu-rolling-refclocks,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/NTPsec/ntpsec,omitted,y,,,,positive,200205-181305,closed,FALSE,0,0,5,NULL,decision:fix,33,15,246,280389926 +DDP2-CSUI__assignment__Manual-Job__funtest-a1,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/DDP2-CSUI/assignment,omitted,,,,,,200205-181158,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +DMore__chrome-mink-driver__Job-Retry__Headed-chrome-unstable,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/DMore/chrome-mink-driver,omitted,n,,,,,200205-181314,closed,FALSE,0,1,0,NULL,reaction:negative,29,2,3, +materials-modeling__dynasor__Job-Allow-Failure__run_tests,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/materials-modeling/dynasor,omitted,n,,"no-time, agreement",,not-now,200205-181317,closed,FALSE,0,1,2,NULL,NULL,6,2,4, +abrahamwill__Assignment-DDP2__Manual-Job__funtest-a1,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/abrahamwill/Assignment-DDP2,omitted,,,,,,200205-181205,opened,FALSE,0,0,0,NULL,NULL,5,0,0, +ernesto-jimenez-ruiz__OptiqueVQS__Versioning__eu-optique-OptiqueVQS-1-0-0-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet-core__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/ernesto.jimenez.ruiz/OptiqueVQS,omitted,,,,,,200205-181206,opened,FALSE,0,0,0,NULL,NULL,4,0,0, +ase__ase__Versioning__requirementstxt__numpy__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/ase/ase,omitted,n,,let-it-run,,not-now,200205-181322,closed,FALSE,0,0,8,NULL,use-in-paper,87,80,1773, +guardianproject__checkey__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/guardianproject/checkey,omitted,,,,,,200205-181208,opened,FALSE,0,0,0,NULL,NULL,5,0,0, +expliot_framework__expliot__Job-Allow-Failure__pylint,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/expliot_framework/expliot,omitted,y,,,,reject,200205-181330,closed,FALSE,0,1,1,NULL,decision:reject,6,6,104,1515197282 +codingrights__radarlegislativo__Versioning__requirementstxt__beautifulsoup4__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/codingrights/radarlegislativo,omitted,,,,,,200205-181214,opened,FALSE,0,0,0,NULL,NULL,15,0,0, +sirimangalo__meditation-plus__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/sirimangalo/meditation-plus,omitted,y,,gitlab-template,job-removed,reject,200205-181331,closed,FALSE,0,1,2,NULL,decision:reject,11,7,37,6850062902 +lappis-unb__projects__SMI__smi-slave__Job-Allow-Failure__code_quality,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/lappis-unb/projects/SMI/smi-slave,omitted,,,,,,200205-181217,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +denkmal__denkmal-website__Job-Retry__deploy-production,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/denkmal/denkmal-website,omitted,n,,flaky-env,,reject,200205-181333,closed,TRUE,0,1,2,NULL,reason:flakiness,4,3,17, +jerrya__nextferry__Job-Retry__pages,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/jerrya/nextferry,omitted,,,,,,200205-181220,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +jkrooswyk__the-monolith__Job-Allow-Failure__stop_review,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/jkrooswyk/the-monolith,omitted,,,,,,200205-181221,opened,FALSE,0,1,1,NULL,NULL,7,0,0, +linux-wiiu__debian-wiiu-repo__Manual-Job__make-pkgs,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/linux-wiiu/debian-wiiu-repo,omitted,,,,,,200205-181223,closed,FALSE,0,1,1,NULL,NULL,2,0,0, +remram44__taguette__Versioning__gitlabyaml__psycopg2__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/remram44/taguette,omitted,n,pip-install,,,,200205-181335,closed,FALSE,0,1,0,R-invalid,decision:reject,9,3,69, +dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__code_quality,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach,omitted,,,,,,200205-181226,opened,TRUE,1,0,0,NULL,NULL,3,0,0, +sbarthelemy__conan-public-recipes__Manual-Job__package-toolchain-ubuntu-16-04,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/sbarthelemy/conan-public-recipes,omitted,n,,no-trust,,reject,200205-181341,closed,FALSE,0,0,2,NULL,NULL,8,2,7, +stavros__Spamnesty__Versioning__gitlabyaml__pipenv__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/stavros/Spamnesty,omitted,y,,,undirect-fix,reject,200205-181342,closed,FALSE,0,1,3,NULL,decision:reject,4,1,1,2786181858 +recalbox__recalbox__Manual-Job__build-odroidxu4-for-test,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/recalbox/recalbox,omitted,n,,,,,200205-181350,closed,FALSE,0,0,0,NULL,reaction:negative,108,11,152, +allianceauth__allianceauth__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/allianceauth/allianceauth,omitted,y,,,undirect-fix,invalid,200205-181358,closed,FALSE,0,1,1,NULL,decision:reject,48,7,49,12733180848 +remcohaszing__eslint-formatter-gitlab__Job-Allow-Failure__dependency-scanning,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/remcohaszing/eslint-formatter-gitlab,omitted,n,,depedency-scanning,,reject,200205-181400,closed,FALSE,0,1,2,NULL,decision:reject,2,1,2, +zoomonit__greenpepper__Manual-Job__create_builder,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/zoomonit/greenpepper,omitted,,,,,,200205-181240,opened,FALSE,0,0,0,NULL,NULL,7,0,0, +archbuild__packages__firefox-nightly__Job-Retry__package,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/archbuild/packages/firefox-nightly,omitted,,,,,,200205-181241,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +rpdev__opentodolist__Manual-Job__macos,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/rpdev/opentodolist,omitted,y,,no-enough-hardware,,not-now,200205-181411,closed,FALSE,0,0,3,NULL,use-in-paper,6,3,131,4785730492 +neonox31__podcast-server__Job-Retry__test-19,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/neonox31/podcast-server,omitted,,,,,,200205-181244,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +universe6__selfstudythai__Manual-Job__pages,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/universe6/selfstudythai,omitted,,,,,,200205-181244,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +pgjones__quart-cors__Versioning__gitlabyaml__tox__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/pgjones/quart-cors,omitted,,,,,,200205-181245,closed,FALSE,0,1,2,NULL,decision:reject,2,0,0, +formschema__native__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/formschema/native,omitted,,,,,,200205-181247,opened,TRUE,1,0,0,NULL,reaction:positive,3,0,0, +jlack__rdl__Job-Retry__build_and_test,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/jlack/rdl,omitted,,,,,,200205-181249,closed,FALSE,1,0,0,NULL,decision:reject,2,0,0, +randy408__libspng__Manual-Job__coverity,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/randy408/libspng,omitted,y,,,,positive,200205-181413,closed,FALSE,1,0,2,NULL,decision:fix,4,3,74,169779979 +picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/picos-api/picos,omitted,n,pip-install,,,,200205-181419,closed,FALSE,0,0,0,NULL,reaction:negative,21,1,4, +francois-travais__1tipi2bicycles__Job-Retry__deploy-production,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/francois.travais/1tipi2bicycles,omitted,,,,,,200205-181254,opened,FALSE,0,0,0,NULL,NULL,2,0,0, +vaghtgir__telegram-cli-binary__Manual-Job__build,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/vaghtgir/telegram-cli-binary,omitted,,,,,,200205-181255,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +passit__passit-backend__Versioning__requirementstxt__freezegun__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/passit/passit-backend,omitted,n,,tool-upgrade,,reject,200205-181421,closed,FALSE,0,0,2,NULL,reason:benefitoffutureupdates,11,1,9, +mayan-edms__mayan-edms__Versioning__gitlabyaml__psycopg2__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/mayan-edms/mayan-edms,omitted,y,,,,positive,200205-181422,closed,TRUE,0,0,1,Accepted,decision:accept,28,11,726,6429672846 +wallzero__jsplumb-react__Job-Retry__publish,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/wallzero/jsplumb-react,omitted,,,,,,200205-181302,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +wrobell__remt__Versioning__requirementstxt__asyncio-contextmanager__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/wrobell/remt,omitted,,,,,,200205-181304,closed,FALSE,0,0,6,NULL,reaction:negative,1,0,0, +smallstack__infrastructure__gitlab-runner-cli__Manual-Job__execute,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/smallstack/infrastructure/gitlab-runner-cli,omitted,,,,,,200205-181305,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +tglman__persy__Job-Allow-Failure__coverage_report,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/tglman/persy,omitted,y,,flaky-tool,,positive,200205-181427,closed,FALSE,0,0,3,NULL,decision:fix,7,7,177,790864771 +gableroux__unity3d__Job-Retry__build-master-unity_2019_1_14f1,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/gableroux/unity3d,omitted,n,,"flaky-tool, flaky-env, no-trust",,not-now,200205-181431,closed,FALSE,0,0,4,NULL,use-in-paper,20,9,177, +IonicZoo__pigeon-restful-provider__Job-Retry__build,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/IonicZoo/pigeon-restful-provider,omitted,,,,,,200205-181312,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +bagage__cadastre-conflation__Job-Retry__build_front,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/bagage/cadastre-conflation,omitted,,,,,,200205-181312,deleted,FALSE,1,0,1,NULL,decision:fix,-1,-1,-1, +demsking__image-downloader__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/demsking/image-downloader,omitted,,,,,,200205-181313,opened,TRUE,0,0,0,NULL,decision:pending,8,0,0, +sgrignard__serpyco__Versioning__requirementstxt__black__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/sgrignard/serpyco,omitted,y,,,,,200205-181432,closed,FALSE,1,0,0,NULL,NULL,2,1,11,4783396294 +terrasubmersa__terra-submersa-portal__Job-Retry__frontend_test_unit,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/terrasubmersa/terra-submersa-portal,omitted,,,,,,200205-181315,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +pipeline-patterns__django-cloudfoundry__Manual-Job__trigger_without_sample,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/pipeline-patterns/django-cloudfoundry,omitted,,,,,,200205-181316,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +Radiophonix__Radiophonix__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/Radiophonix/Radiophonix,omitted,,,,,,200205-181317,deleted,FALSE,0,0,0,NULL,reaction:negative,-1,-1,-1, +OpenMW__openmw__Job-Allow-Failure__MacOS,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/OpenMW/openmw,omitted,n,,"no-enough-hardware, temporary-smell, no-trust",,reject,200205-181433,closed,FALSE,0,0,2,NULL,reaction:negative,84,24,530, +mike-koch__Mods-for-HESK__Manual-Job__package,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/mike-koch/Mods-for-HESK,omitted,n,deploy-phase,,,,200205-181443,closed,FALSE,0,1,0,NULL,reaction:negative,14,2,10, +xonotic__xonstat__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/xonotic/xonstat,omitted,n,,,,,200205-180822,opened,FALSE,0,0,0,NULL,NULL,12,2,12, +susurrus__fat-rs__Job-Allow-Failure__x86_64-unknown-linux-gnux32,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/susurrus/fat-rs,omitted,,,,,,200205-181329,opened,FALSE,0,0,0,NULL,NULL,3,0,0, +gitlab-org__sidekiq-reliable-fetch__Job-Allow-Failure__integration_basic,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/gitlab-org/sidekiq-reliable-fetch,omitted,n,,,,,200205-180825,opened,FALSE,0,0,0,NULL,NULL,5,2,5, +vstconsulting__polemarch-ansible__Job-Retry__py27-coverage-ansible25,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/vstconsulting/polemarch-ansible,omitted,n,,,,,200205-180829,opened,FALSE,0,0,0,NULL,NULL,2,1,4, +hb9fxx__qrsspig__Job-Allow-Failure__report-cppcheck,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/hb9fxx/qrsspig,omitted,n,,"optional-job, code-quality",,not-now,200205-180837,opened,FALSE,1,0,2,NULL,decision:pending,7,3,35, +rolla__xpncms__Job-Allow-Failure__composer,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/rolla/xpncms,omitted,n,,,,,200205-180844,opened,FALSE,0,0,0,NULL,NULL,4,2,7, +bor-sh__git-gitlab__Versioning__gitlabyaml__mock__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/bor-sh/git-gitlab,omitted,,,,,,200205-181336,opened,FALSE,0,0,0,NULL,NULL,5,0,0, +kirara__reborn-modpack__Manual-Job__build_modpacks,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/kirara/reborn-modpack,omitted,,,,,,200205-181337,opened,FALSE,0,0,0,NULL,NULL,4,0,0, +fg-radi__osm2city__Versioning__requirementstxt__descartes__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/fg-radi/osm2city,omitted,,,,,,200205-181338,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +petelawler__LiBrew__Versioning__requirementstxt__Adafruit-BBIO__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/petelawler/LiBrew,omitted,n,,,,,200205-180854,opened,FALSE,0,0,0,NULL,NULL,9,1,5, +nerdocs__gdaps__Versioning__requirementstxt__django__any-upper-version,Versioning,any-upper-version,DROPPED FOR NOW,https://gitlab.com/nerdocs/gdaps,omitted,n,,,,reject,200205-180856,opened,FALSE,0,0,1,NULL,unknown,1,1,341, +cnpsaintmartin__arpa-network__Job-Allow-Failure__lint,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/cnpsaintmartin/arpa-network,omitted,n,,,,,200205-180900,opened,FALSE,0,0,0,NULL,NULL,4,2,17, +gitlab-com__www-gitlab-com__Manual-Job__check_links,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/gitlab-com/www-gitlab-com,omitted,n,,no-time,,,200205-180911,opened,FALSE,0,0,0,NULL,NULL,369,1235,32509, +tezos__tezos__Job-Retry__integration-sandboxes-voting,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/tezos/tezos,omitted,n,,,,,200205-181126,opened,FALSE,0,0,0,NULL,NULL,97,49,570, +digested__node-digest__Job-Retry__firefox,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/digested/node-digest,omitted,n,"skipped-job, wrong-jobname",,,,200205-181146,opened,FALSE,0,0,0,NULL,NULL,3,2,11, +dosuken123__thin-gdk__Job-Retry__monolith-build,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/dosuken123/thin-gdk,omitted,y,,job-removed,,,200205-181147,opened,FALSE,0,0,0,NULL,NULL,2,2,42,5769410026 +exosphere__exosphere__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/exosphere/exosphere,omitted,n,dependency-scanning,,,,200205-181156,opened,FALSE,0,0,0,NULL,NULL,9,5,153, +BuildGrid__buildgrid__Versioning__requirementstxt__janus__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/BuildGrid/buildgrid,omitted,y,,,,,200205-181217,opened,FALSE,0,0,0,NULL,NULL,27,16,159,14395242213 +flectra-hq__build-tools__Versioning__requirementstxt__coveralls__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/flectra-hq/build-tools,omitted,n,,,,not-now,200205-181227,opened,FALSE,0,0,4,NULL,decision:pending,3,1,1, +cppit__jucipp__Manual-Job__Clean-appveyor-cache,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/cppit/jucipp,omitted,n,,"temporary-smell, agreement",,not-now,200205-181234,opened,FALSE,0,0,3,NULL,decision:pending,39,1,43, +cordite__cordite__Job-Retry__test-nms,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/cordite/cordite,omitted,n,,,,,200205-181238,opened,FALSE,0,0,0,NULL,NULL,30,6,43, +webmaicon__sorterica__Manual-Job__gera_numero,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/webmaicon/sorterica,omitted,n,,,,,200205-181243,opened,FALSE,0,0,0,NULL,NULL,3,1,1, +Commit451__LabCoat__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/Commit451/LabCoat,omitted,n,,,,,200205-181309,opened,FALSE,0,0,0,NULL,NULL,27,2,26, +backstage-technical-services__laravel-site__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/backstage-technical-services/laravel-site,omitted,,,,,,200205-181421,deleted,FALSE,0,0,0,NULL,reaction:negative,-1,-1,-1, +gnukhata__gkcore__Versioning__requirementstxt__sqlalchemy__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/gnukhata/gkcore,omitted,n,,,,,200205-181318,opened,FALSE,0,0,0,NULL,NULL,36,12,179, +aceteam-kaist__ACE-Molecule__Job-Allow-Failure__run-cpplint,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/aceteam.kaist/ACE-Molecule,omitted,n,code-quality,,,,200205-181338,opened,FALSE,0,0,0,NULL,NULL,25,2,2, +juergen-kosel-jk__wireshark__Job-Retry__clang-6,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/juergen.kosel.jk/wireshark,omitted,n,,no-issue-monitoring,,invalid,200205-181343,opened,FALSE,0,0,1,NULL,NULL,193,131,1003, +mailman__postorius__Job-Allow-Failure__git-heads,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/mailman/postorius,omitted,n,,,,,200205-181354,opened,FALSE,0,0,0,NULL,NULL,113,44,148, +gis23__search_engine__Manual-Job__build_GCR,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/gis23/search_engine,omitted,,,,,,200205-181430,opened,FALSE,0,0,0,NULL,NULL,1,0,0, +districted__web-client__Job-Retry__deploy-staging,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/districted/web-client,omitted,n,deploy-phase,,,,200205-181414,opened,FALSE,0,0,0,NULL,NULL,4,2,4, +pantomath-io__panto__Job-Retry__docker_tag_stable,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/pantomath-io/panto,omitted,n,deploy-phase,,,,200205-181415,opened,FALSE,0,0,0,NULL,NULL,5,2,25, +signal9__cpp-env__Manual-Job__build,Manual-Job,NULL,DROPPED FOR NOW,https://gitlab.com/signal9/cpp-env,omitted,n,,,,,200205-181429,opened,FALSE,0,0,0,NULL,NULL,1,2,12, +lu-ci__sigma__apex-sigma__Versioning__requirementstxt__aiml__missing,Versioning,missing,DROPPED FOR NOW,https://gitlab.com/lu-ci/sigma/apex-sigma,omitted,,,,,,200205-181440,deleted,FALSE,0,0,0,NULL,NULL,-1,-1,-1, +mataara__Mataara-Server__Job-Allow-Failure__python_lint,Job-Allow-Failure,NULL,DROPPED FOR NOW,https://gitlab.com/mataara/Mataara-Server,omitted,n,code-quality,,,,200205-181438,opened,FALSE,0,0,0,NULL,NULL,20,4,44, +noosfero__noosfero__Job-Retry__selenium-4,Job-Retry,always,DROPPED FOR NOW,https://gitlab.com/noosfero/noosfero,omitted,n,,,,,200205-181441,opened,FALSE,0,0,0,NULL,unknown,61,8,45, \ No newline at end of file diff --git a/datasets/rq1-comment-sorting/card-sorting-agreement.csv b/datasets/rq1-comment-sorting/card-sorting-agreement.csv new file mode 100644 index 0000000..42c1462 --- /dev/null +++ b/datasets/rq1-comment-sorting/card-sorting-agreement.csv @@ -0,0 +1 @@ +id,category,reviewTag*,linkToRepository,fixed (y/n/m),comment-labels (sorter2),comment-labels (sorter1),comment-labels (agreed),reaction (sorter2),reaction (sorter1),reaction (agreed),resolution-time (ms) mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,https://gitlab.com/mauriciobaeza/empresa-libre,,,,,,,, deltares__rtc-tools__Versioning__gitlabyaml__codecov__missing,Versioning,missing,https://gitlab.com/deltares/rtc-tools,n,,,,,,, flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,Job-Retry,always,https://gitlab.com/flatiron-dc/learning-git2,,,,,,,, indybay__indybay-active__Manual-Job__build,Manual-Job,NULL,https://gitlab.com/indybay/indybay-active,n,,,,,,, harbottle__puppet-mattermost__Manual-Job__push,Manual-Job,NULL,https://gitlab.com/harbottle/puppet-mattermost,n,,,,,,, agrumery__aGrUM__Job-Retry__windows_agrum_2017,Job-Retry,always,https://gitlab.com/agrumery/aGrUM,y,fixed-independently,,fixed-independently,positive,positive,positive,9993338524 sofreeus__aghi2gitlab__Manual-Job__dev,Manual-Job,NULL,https://gitlab.com/sofreeus/aghi2gitlab,,,,,,,, georgedorn__wonambi__Versioning__gitlabyaml__coverage__missing,Versioning,missing,https://gitlab.com/georgedorn/wonambi,,,,,,,, fluidattacks__asserts__Job-Retry__test,Job-Retry,always,https://gitlab.com/fluidattacks/asserts,y,flaky-tool,"use-in-paper, remove-all","use-in-paper, remove-all, flaky-tool",positive,positive,positive,40597408 vuedoc__parser__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,https://gitlab.com/vuedoc/parser,,,,,,,, postmarketOS__build-postmarketos-org__Manual-Job__test-phpcs,Manual-Job,NULL,https://gitlab.com/postmarketOS/build.postmarketos.org,y,dead-branch,,dead-branch,not-now,positive,not-now,4412981296 coala__package_manager__Versioning__requirementstxt__hg-https---bitbucket-org-jayvdb-sarge-win-reg-lookup-egg-sarge__missing,Versioning,missing,https://gitlab.com/coala/package_manager,,,,,,,, jonocarroll__mathpix__Job-Allow-Failure__r-oldrel,Job-Allow-Failure,NULL,https://gitlab.com/jonocarroll/mathpix,,,,,,,, Orange-OpenSource__gitlab-buildpkg-tools__Manual-Job__build_ubuntu_artful,Manual-Job,NULL,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools,n,,,,,,, pushrocks__smartcli__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,https://gitlab.com/pushrocks/smartcli,,,,,,,, neachdainn__nng-rs__Job-Allow-Failure__nightly,Job-Allow-Failure,NULL,https://gitlab.com/neachdainn/nng-rs,n,third-party issue,"nightly-build, no-trust, flaky-tool","nightly-build, no-trust, flaky-tool",negative,negative,negative, larsyunker__unithandler__Versioning__requirementstxt__numpy__missing,Versioning,missing,https://gitlab.com/larsyunker/unithandler,y,agreement,,agreement,positive,positive,positive,291505243 runarberg__trompt__Job-Allow-Failure__test-unstable,Job-Allow-Failure,NULL,https://gitlab.com/runarberg/trompt,,,,,,,, sherpa-team__sherpa__Manual-Job__test-clang-strict-LO_Z,Manual-Job,NULL,https://gitlab.com/sherpa-team/sherpa,y,,,,,,,3600843163 elad-noor__equilibrator-api__Versioning__gitlabyaml__wheel__missing,Versioning,missing,https://gitlab.com/elad.noor/equilibrator-api,,,,,,,, jamietanna__jvt-me__Job-Allow-Failure__test_links,Job-Allow-Failure,NULL,https://gitlab.com/jamietanna/jvt.me,n,ok-to-fail,,let-it-run,negative,not-now,not-now,5144456847 psono__psono-server__Versioning__requirementstxt__six__missing,Versioning,missing,https://gitlab.com/psono/psono-server,n,prefer-last-version,,prefer-last-version,negative,not-now,not-now,8845580793 dalton__dalton__Job-Allow-Failure__nightly-mpi-int64,Job-Allow-Failure,NULL,https://gitlab.com/dalton/dalton,n,ok-to-fail,nightly-build,"nightly-build, let-it-run",not-now,negative,not-now, angreal__angreal__Job-Allow-Failure__init_gitlab_python,Job-Allow-Failure,NULL,https://gitlab.com/angreal/angreal,n,ok-to-fail,,let-it-run,negative,negative,negative, eyeo__websites__web-adblockplus-org__Manual-Job__tests,Manual-Job,NULL,https://gitlab.com/eyeo/websites/web.adblockplus.org,,,,,,,, john-carroll-p__rschedule__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,https://gitlab.com/john.carroll.p/rschedule,y,job-removed,,,,,, experimentslabs__engine_elabs__Job-Allow-Failure__bundle-outdated,Job-Allow-Failure,NULL,https://gitlab.com/experimentslabs/engine_elabs,n,third-party issue,"depedency-scanning, agreement","depedency-scanning, agreement",positive,not-now,not-now, inkscape__inkscape-web__Versioning__requirementstxt__django-extratest__any-upper-version,Versioning,any-upper-version,https://gitlab.com/inkscape/inkscape-web,n,prefer-last-version,tool-upgrade,"tool-upgrade, prefer-last-version",negative,negative,negative, litecord__litecord__Versioning__requirementstxt__pipenv__missing,Versioning,missing,https://gitlab.com/litecord/litecord,n,problem-acknowledged,"tool-upgrade, no-trust","tool-upgrade, no-trust",not-now,negative,negative, linagora__petals-cockpit__Job-Retry__test-frontend,Job-Retry,always,https://gitlab.com/linagora/petals-cockpit,n,flaky-env,flaky-tool,flaky-tool,not-now,not-now,not-now, juhani__go-semrel-gitlab__Manual-Job__test,Manual-Job,NULL,https://gitlab.com/juhani/go-semrel-gitlab,n,,,,,,, GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__lxml__missing,Versioning,missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,,,,,,,, bitseater__meteo__Job-Allow-Failure__package-snap,Job-Allow-Failure,NULL,https://gitlab.com/bitseater/meteo,y,use-in-paper,,use-in-paper,positive,positive,positive,3503753 r1dScripts__chatty_server__Versioning__requirementstxt__dnspython__missing,Versioning,missing,https://gitlab.com/r1dScripts/chatty_server,,,,,,,, dataengi__marketing__www-dataengi-com__Manual-Job__check_links,Manual-Job,NULL,https://gitlab.com/dataengi/marketing/www.dataengi.com,,,,,,,, phyohtetarkar__github-jobs__Manual-Job__build,Manual-Job,NULL,https://gitlab.com/phyohtetarkar/github-jobs,,,,,,,, xomachine__NESM__Job-Allow-Failure__test-devel,Job-Allow-Failure,NULL,https://gitlab.com/xomachine/NESM,n,flaky-tool,optional-job,"flaky-tool, optional-job",negative,negative,negative, librespacefoundation__satnogs__satnogs-docs__Versioning__requirementstxt__pyserial__missing,Versioning,missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-docs,,,,,,,, emcrp__src__Manual-Job__build-and-push,Manual-Job,NULL,https://gitlab.com/emcrp/src,,,,,,,, simulant__simulant__Job-Allow-Failure__test-dreamcast-sh4-gcc,Job-Allow-Failure,NULL,https://gitlab.com/simulant/simulant,n,incomplete-implementation,temporary-smell,"incomplete-implementation, temporary-smell",negative,negative,negative, perobertson__dotfiles__Manual-Job__py38,Manual-Job,NULL,https://gitlab.com/perobertson/dotfiles,y,temporary-smell,,,,,,5694944417 charts__gitlab__Job-Allow-Failure__production_specs_eks,Job-Allow-Failure,NULL,https://gitlab.com/charts/gitlab,,,,,,,, aegir__aegir__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,https://gitlab.com/aegir/aegir,,,,,,,, freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__minimal_systemd_vm_powerpc64le,Job-Allow-Failure,NULL,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,n,flaky-env,"temporary-smell, agreement, optional-job, flaky-env","temporary-smell, agreement, optional-job, flaky-env",not-now,not-now,not-now, anited__publish__Versioning__requirementstxt__Markdown__any-upper-version,Versioning,any-upper-version,https://gitlab.com/anited/publish,y,,no-trust,no-trust,negative,negative,negative,235684719 dodgyville__pygltflib__Versioning__requirementstxt__dataclasses__missing,Versioning,missing,https://gitlab.com/dodgyville/pygltflib,y,wrong-fix,,,,,,68296527 iba-aes__webcie__website__Job-Retry__Make-Docker-image,Job-Retry,script_failure,https://gitlab.com/iba-aes/webcie/website,,,,,,,, oly-exams__exam_tools__Versioning__requirementstxt__future__missing,Versioning,missing,https://gitlab.com/oly-exams/exam_tools,,,,,,,, datadrivendiscovery__sklearn-wrap__Versioning__requirementstxt__git-https---gitlab-com-datadrivendiscovery-d3m-git-devel__missing,Versioning,missing,https://gitlab.com/datadrivendiscovery/sklearn-wrap,y,false-positive,,,invalid,positive,positive, Manu343726__tinyrefl__Job-Retry__conan-integration-clang60,Job-Retry,always,https://gitlab.com/Manu343726/tinyrefl,,,,,,,, gioxa__imagebuilder__Job-Retry__build_rootfs-pass_two,Job-Retry,always,https://gitlab.com/gioxa/imagebuilder,,,,,,,, elixire__elixire__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,https://gitlab.com/elixire/elixire,n,prefer-last-version,,prefer-last-version,negative,negative,negative, offa__docker-images-ci__Job-Retry__stm32-eth_clang-5,Job-Retry,always,https://gitlab.com/offa/docker-images-ci,y,use-in-paper,new-linters-suggestion,"use-in-paper, new-linters-suggestions",positive,positive,positive,99809799 vindarel__abelujo__Job-Allow-Failure__py-qa,Job-Allow-Failure,NULL,https://gitlab.com/vindarel/abelujo,n,,,,,,, gnutls__libtasn1__Job-Retry__x86,Job-Retry,always,https://gitlab.com/gnutls/libtasn1,y,flaky-tool,"flaky-env, no-trust","flaky-env, no-trust",positive,not-now,not-now,12430914071 valtron__msn-server__Versioning__requirementstxt__lxml__missing,Versioning,missing,https://gitlab.com/valtron/msn-server,n,prefer-last-version,"agreement, no-time","prefer-last-version, agreement, no-time",not-now,not-now,not-now, fdroid__fdroidclient__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,always,https://gitlab.com/fdroid/fdroidclient,n,flaky-env,flaky-env,flaky-env,negative,negative,negative, wpdesk__wp-dataset__Job-Retry__deploy-to-shop,Job-Retry,always,https://gitlab.com/wpdesk/wp-dataset,,,,,,,, atomap__atomap__Job-Allow-Failure__style_checks_flake8_docstrings,Job-Allow-Failure,NULL,https://gitlab.com/atomap/atomap,y,,,,,,,1939017040 NTPsec__ntpsec__Job-Retry__ubuntu-rolling-refclocks,Job-Retry,always,https://gitlab.com/NTPsec/ntpsec,y,use-in-paper,,use-in-paper,positive,positive,positive,280389926 DDP2-CSUI__assignment__Manual-Job__funtest-a1,Manual-Job,NULL,https://gitlab.com/DDP2-CSUI/assignment,,,,,,,, DMore__chrome-mink-driver__Job-Retry__Headed-chrome-unstable,Job-Retry,always,https://gitlab.com/DMore/chrome-mink-driver,n,,,,,,, materials-modeling__dynasor__Job-Allow-Failure__run_tests,Job-Allow-Failure,NULL,https://gitlab.com/materials-modeling/dynasor,n,no-time,"no-time, agreement","no-time, agreement",positive,not-now,positive, abrahamwill__Assignment-DDP2__Manual-Job__funtest-a1,Manual-Job,NULL,https://gitlab.com/abrahamwill/Assignment-DDP2,,,,,,,, ernesto-jimenez-ruiz__OptiqueVQS__Versioning__eu-optique-OptiqueVQS-1-0-0-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet-core__missing,Versioning,missing,https://gitlab.com/ernesto.jimenez.ruiz/OptiqueVQS,,,,,,,, ase__ase__Versioning__requirementstxt__numpy__missing,Versioning,missing,https://gitlab.com/ase/ase,n,prefer-last-version,let-it-run,let-it-run,positive,not-now,positive, guardianproject__checkey__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,always,https://gitlab.com/guardianproject/checkey,,,,,,,, expliot_framework__expliot__Job-Allow-Failure__pylint,Job-Allow-Failure,NULL,https://gitlab.com/expliot_framework/expliot,y,ok-to-fail,,let-it-run,negative,negative,negative,1515197282 codingrights__radarlegislativo__Versioning__requirementstxt__beautifulsoup4__missing,Versioning,missing,https://gitlab.com/codingrights/radarlegislativo,,,,,,,, sirimangalo__meditation-plus__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,https://gitlab.com/sirimangalo/meditation-plus,y,ok-to-fail,gitlab-template,"let-it-run, gitlab-template",negative,negative,negative,6850062902 lappis-unb__projects__SMI__smi-slave__Job-Allow-Failure__code_quality,Job-Allow-Failure,NULL,https://gitlab.com/lappis-unb/projects/SMI/smi-slave,,,,,,,, denkmal__denkmal-website__Job-Retry__deploy-production,Job-Retry,always,https://gitlab.com/denkmal/denkmal-website,n,flaky-env,flaky-env,flaky-env,negative,negative,negative, jerrya__nextferry__Job-Retry__pages,Job-Retry,always,https://gitlab.com/jerrya/nextferry,,,,,,,, jkrooswyk__the-monolith__Job-Allow-Failure__stop_review,Job-Allow-Failure,NULL,https://gitlab.com/jkrooswyk/the-monolith,,,,,,,, linux-wiiu__debian-wiiu-repo__Manual-Job__make-pkgs,Manual-Job,NULL,https://gitlab.com/linux-wiiu/debian-wiiu-repo,,,,,,,, remram44__taguette__Versioning__gitlabyaml__psycopg2__missing,Versioning,missing,https://gitlab.com/remram44/taguette,n,,,,,,, dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__code_quality,Job-Allow-Failure,NULL,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach,,,,,,,, sbarthelemy__conan-public-recipes__Manual-Job__package-toolchain-ubuntu-16-04,Manual-Job,NULL,https://gitlab.com/sbarthelemy/conan-public-recipes,n,,no-trust,no-trust,negative,negative,negative, stavros__Spamnesty__Versioning__gitlabyaml__pipenv__missing,Versioning,missing,https://gitlab.com/stavros/Spamnesty,y,fixed-independently,tool-upgrade,tool-upgrade,not-now,negative,negative,2786181858 recalbox__recalbox__Manual-Job__build-odroidxu4-for-test,Manual-Job,NULL,https://gitlab.com/recalbox/recalbox,n,,,,,,, allianceauth__allianceauth__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,https://gitlab.com/allianceauth/allianceauth,y,fixed-independently,,,not-now,invalid,invalid,12733180848 remcohaszing__eslint-formatter-gitlab__Job-Allow-Failure__dependency-scanning,Job-Allow-Failure,NULL,https://gitlab.com/remcohaszing/eslint-formatter-gitlab,n,ok-to-fail,depedency-scanning,"let-it-run, dependency-scanning",not-now,negative,negative, zoomonit__greenpepper__Manual-Job__create_builder,Manual-Job,NULL,https://gitlab.com/zoomonit/greenpepper,,,,,,,, archbuild__packages__firefox-nightly__Job-Retry__package,Job-Retry,always,https://gitlab.com/archbuild/packages/firefox-nightly,,,,,,,, rpdev__opentodolist__Manual-Job__macos,Manual-Job,NULL,https://gitlab.com/rpdev/opentodolist,y,use-in-paper,no-enough-hardware,"use-in-paper, no-enough-hardware",positive,not-now,not-now,4785730492 neonox31__podcast-server__Job-Retry__test-19,Job-Retry,always,https://gitlab.com/neonox31/podcast-server,,,,,,,, universe6__selfstudythai__Manual-Job__pages,Manual-Job,NULL,https://gitlab.com/universe6/selfstudythai,,,,,,,, pgjones__quart-cors__Versioning__gitlabyaml__tox__missing,Versioning,missing,https://gitlab.com/pgjones/quart-cors,,,,,,,, formschema__native__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,https://gitlab.com/formschema/native,,,,,,,, jlack__rdl__Job-Retry__build_and_test,Job-Retry,always,https://gitlab.com/jlack/rdl,,,,,,,, randy408__libspng__Manual-Job__coverity,Manual-Job,NULL,https://gitlab.com/randy408/libspng,y,use-in-paper,,use-in-paper,positive,positive,positive,169779979 picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,Versioning,missing,https://gitlab.com/picos-api/picos,n,,,,,,, francois-travais__1tipi2bicycles__Job-Retry__deploy-production,Job-Retry,always,https://gitlab.com/francois.travais/1tipi2bicycles,,,,,,,, vaghtgir__telegram-cli-binary__Manual-Job__build,Manual-Job,NULL,https://gitlab.com/vaghtgir/telegram-cli-binary,,,,,,,, passit__passit-backend__Versioning__requirementstxt__freezegun__missing,Versioning,missing,https://gitlab.com/passit/passit-backend,n,tool-upgrade,tool-upgrade,tool-upgrade,negative,negative,negative, mayan-edms__mayan-edms__Versioning__gitlabyaml__psycopg2__missing,Versioning,missing,https://gitlab.com/mayan-edms/mayan-edms,y,,,,positive,positive,positive,6429672846 wallzero__jsplumb-react__Job-Retry__publish,Job-Retry,always,https://gitlab.com/wallzero/jsplumb-react,,,,,,,, wrobell__remt__Versioning__requirementstxt__asyncio-contextmanager__missing,Versioning,missing,https://gitlab.com/wrobell/remt,,,,,,,, smallstack__infrastructure__gitlab-runner-cli__Manual-Job__execute,Manual-Job,NULL,https://gitlab.com/smallstack/infrastructure/gitlab-runner-cli,,,,,,,, tglman__persy__Job-Allow-Failure__coverage_report,Job-Allow-Failure,NULL,https://gitlab.com/tglman/persy,y,third-party issue,flaky-tool,flaky-tool,positive,positive,positive,790864771 gableroux__unity3d__Job-Retry__build-master-unity_2019_1_14f1,Job-Retry,always,https://gitlab.com/gableroux/unity3d,n,flaky-env,"flaky-tool, flaky-env, no-trust","flaky-tool, flaky-env, no-trust",positive,not-now,not-now, IonicZoo__pigeon-restful-provider__Job-Retry__build,Job-Retry,always,https://gitlab.com/IonicZoo/pigeon-restful-provider,,,,,,,, bagage__cadastre-conflation__Job-Retry__build_front,Job-Retry,always,https://gitlab.com/bagage/cadastre-conflation,,,,,,,, demsking__image-downloader__Job-Allow-Failure__security-scan,Job-Allow-Failure,NULL,https://gitlab.com/demsking/image-downloader,,,,,,,, sgrignard__serpyco__Versioning__requirementstxt__black__missing,Versioning,missing,https://gitlab.com/sgrignard/serpyco,y,,,,,,,4783396294 terrasubmersa__terra-submersa-portal__Job-Retry__frontend_test_unit,Job-Retry,always,https://gitlab.com/terrasubmersa/terra-submersa-portal,,,,,,,, pipeline-patterns__django-cloudfoundry__Manual-Job__trigger_without_sample,Manual-Job,NULL,https://gitlab.com/pipeline-patterns/django-cloudfoundry,,,,,,,, Radiophonix__Radiophonix__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,https://gitlab.com/Radiophonix/Radiophonix,,,,,,,, OpenMW__openmw__Job-Allow-Failure__MacOS,Job-Allow-Failure,NULL,https://gitlab.com/OpenMW/openmw,n,,"no-enough-hardware, temporary-smell, no-trust","no-enough-hardware, temporary-smell, no-trust",not-now,negative,not-now, mike-koch__Mods-for-HESK__Manual-Job__package,Manual-Job,NULL,https://gitlab.com/mike-koch/Mods-for-HESK,n,,,,,,, xonotic__xonstat__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,https://gitlab.com/xonotic/xonstat,n,,,,,,, susurrus__fat-rs__Job-Allow-Failure__x86_64-unknown-linux-gnux32,Job-Allow-Failure,NULL,https://gitlab.com/susurrus/fat-rs,,,,,,,, gitlab-org__sidekiq-reliable-fetch__Job-Allow-Failure__integration_basic,Job-Allow-Failure,NULL,https://gitlab.com/gitlab-org/sidekiq-reliable-fetch,n,,,,,,, vstconsulting__polemarch-ansible__Job-Retry__py27-coverage-ansible25,Job-Retry,always,https://gitlab.com/vstconsulting/polemarch-ansible,n,,,,,,, hb9fxx__qrsspig__Job-Allow-Failure__report-cppcheck,Job-Allow-Failure,NULL,https://gitlab.com/hb9fxx/qrsspig,n,no-time,"optional-job, code-quality","optional-job, code-quality, no-time",positive,not-now,not-now, rolla__xpncms__Job-Allow-Failure__composer,Job-Allow-Failure,NULL,https://gitlab.com/rolla/xpncms,n,,,,,,, bor-sh__git-gitlab__Versioning__gitlabyaml__mock__missing,Versioning,missing,https://gitlab.com/bor-sh/git-gitlab,,,,,,,, kirara__reborn-modpack__Manual-Job__build_modpacks,Manual-Job,NULL,https://gitlab.com/kirara/reborn-modpack,,,,,,,, fg-radi__osm2city__Versioning__requirementstxt__descartes__missing,Versioning,missing,https://gitlab.com/fg-radi/osm2city,,,,,,,, petelawler__LiBrew__Versioning__requirementstxt__Adafruit-BBIO__missing,Versioning,missing,https://gitlab.com/petelawler/LiBrew,n,,,,,,, nerdocs__gdaps__Versioning__requirementstxt__django__any-upper-version,Versioning,any-upper-version,https://gitlab.com/nerdocs/gdaps,n,prefer-last-version,,,not-now,negative,not-now, cnpsaintmartin__arpa-network__Job-Allow-Failure__lint,Job-Allow-Failure,NULL,https://gitlab.com/cnpsaintmartin/arpa-network,n,,,,,,, gitlab-com__www-gitlab-com__Manual-Job__check_links,Manual-Job,NULL,https://gitlab.com/gitlab-com/www-gitlab-com,n,no-time,,,,,, tezos__tezos__Job-Retry__integration-sandboxes-voting,Job-Retry,always,https://gitlab.com/tezos/tezos,n,,,,,,, digested__node-digest__Job-Retry__firefox,Job-Retry,always,https://gitlab.com/digested/node-digest,n,,,,,,, dosuken123__thin-gdk__Job-Retry__monolith-build,Job-Retry,always,https://gitlab.com/dosuken123/thin-gdk,y,job-removed,,,,,,5769410026 exosphere__exosphere__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,https://gitlab.com/exosphere/exosphere,n,,,,,,, BuildGrid__buildgrid__Versioning__requirementstxt__janus__missing,Versioning,missing,https://gitlab.com/BuildGrid/buildgrid,y,,,,,,,14395242213 flectra-hq__build-tools__Versioning__requirementstxt__coveralls__missing,Versioning,missing,https://gitlab.com/flectra-hq/build-tools,n,prefer-last-version,,,positive,not-now,positive, cppit__jucipp__Manual-Job__Clean-appveyor-cache,Manual-Job,NULL,https://gitlab.com/cppit/jucipp,n,optional-job,"temporary-smell, agreement","optional-job, temporary-smell, agreement",not-now,not-now,not-now, cordite__cordite__Job-Retry__test-nms,Job-Retry,always,https://gitlab.com/cordite/cordite,n,,,,,,, webmaicon__sorterica__Manual-Job__gera_numero,Manual-Job,NULL,https://gitlab.com/webmaicon/sorterica,n,,,,,,, Commit451__LabCoat__Job-Allow-Failure__pages,Job-Allow-Failure,NULL,https://gitlab.com/Commit451/LabCoat,n,,,,,,, backstage-technical-services__laravel-site__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,NULL,https://gitlab.com/backstage-technical-services/laravel-site,,,,,,,, gnukhata__gkcore__Versioning__requirementstxt__sqlalchemy__missing,Versioning,missing,https://gitlab.com/gnukhata/gkcore,n,,,,,,, aceteam-kaist__ACE-Molecule__Job-Allow-Failure__run-cpplint,Job-Allow-Failure,NULL,https://gitlab.com/aceteam.kaist/ACE-Molecule,n,,,,,,, juergen-kosel-jk__wireshark__Job-Retry__clang-6,Job-Retry,always,https://gitlab.com/juergen.kosel.jk/wireshark,n,,no-issue-monitoring,,not-now,invalid,invalid, mailman__postorius__Job-Allow-Failure__git-heads,Job-Allow-Failure,NULL,https://gitlab.com/mailman/postorius,n,,,,,,, gis23__search_engine__Manual-Job__build_GCR,Manual-Job,NULL,https://gitlab.com/gis23/search_engine,,,,,,,, districted__web-client__Job-Retry__deploy-staging,Job-Retry,always,https://gitlab.com/districted/web-client,n,,,,,,, pantomath-io__panto__Job-Retry__docker_tag_stable,Job-Retry,always,https://gitlab.com/pantomath-io/panto,n,,,,,,, signal9__cpp-env__Manual-Job__build,Manual-Job,NULL,https://gitlab.com/signal9/cpp-env,n,,,,,,, lu-ci__sigma__apex-sigma__Versioning__requirementstxt__aiml__missing,Versioning,missing,https://gitlab.com/lu-ci/sigma/apex-sigma,,,,,,,, mataara__Mataara-Server__Job-Allow-Failure__python_lint,Job-Allow-Failure,NULL,https://gitlab.com/mataara/Mataara-Server,n,,,,,,, noosfero__noosfero__Job-Retry__selenium-4,Job-Retry,always,https://gitlab.com/noosfero/noosfero,n,,,,,,, \ No newline at end of file diff --git a/datasets/rq1-comment-sorting/card-sorting-labels.csv b/datasets/rq1-comment-sorting/card-sorting-labels.csv new file mode 100644 index 0000000..18f58d4 --- /dev/null +++ b/datasets/rq1-comment-sorting/card-sorting-labels.csv @@ -0,0 +1,31 @@ +comments-labels,,reaction,,bugs, +label,description,label,description,label,description +nightly-build,long tasks that cannot be performed at every build,positive,they agree with the smell,pip-install,the dependency is installed via yml file +temporary-smell,"the smell was introduced as temporal patch (e.g., tech debt to fix later) because of other tasks or tool limitations",negative,they disagree,deploy-phase,the job is executed during the deploy stage +use-in-paper,the issue contains interesting comments for the paper,not-now,the agree with the problem but think this is not applicable in that context,wrong-detection,the tool seems to not have the correct behaviour +job-removed,the job with the smell was completely removed,invalid,only one comment,skipped-job,the smelly job is skipped +remove-all,all smells were removed,,,wrong-jobname,the smelly job is mispelled +wrong-fix,"the smell was removed, however the fix has not been properly performed.",,,, +depedency-scanning,the job scan for the presence of outdated packages.,,,, +tool-upgrade,"the latest version is used, because the library is a tool",,,, +flaky-tool,the tool used for this task might unpredictably fail,,,, +self-admitted,they added a comment in the code (or in the commit) highlighting the presence of the smell,,,, +optional-job,"The job performs a task that is not crucial for the build success (e.g., check whether the compiler works)",,,, +agreement,they agree with the validity of the smell,,,, +flaky-env,the environment where the job is not stable and might introduce flakiness during the build execution.,,,, +new-linters-suggestion,they respondents were suggesting new linting rules,,,, +no-time,fixing the smell is not among their priorities,,,, +gitlab-template,"the template they are using contains this smell (e.g., sast template)",,,, +no-trust,the respondents do not trust a bot,,,, +undirect-fix,The problem was removed although no direct connection to our reporting,,,, +no-enough-hardware,there are no enough resources to run this job at every build,,,, +code-quality,the job performs some code-quality checks,,,, +let-it-run,if something goes wrong there will be a failure and we will react to it,,,, +fixed-independently,the developers fixed the smell independenly of the report,,,, +dead-branch,the branch is not used,,,, +third-party issue,"became ""flaky-tool"" after our the discussion",,,, +ok-to-fail,"became ""let-it-run"" after our the discussion",,,, +prefer-last-version,"prefer always the last version of libraries, e.g. for security purposes",,,, +problem-acknowledged,"became ""agreement"" after our the discussion",,,, +incomplete-implementation,,,,, +false-positive,removed after discussion,,,, diff --git a/datasets/rq1-comment-sorting/rejections_reasons_stats.txt b/datasets/rq1-comment-sorting/rejections_reasons_stats.txt new file mode 100644 index 0000000..83525d0 --- /dev/null +++ b/datasets/rq1-comment-sorting/rejections_reasons_stats.txt @@ -0,0 +1,62 @@ +#### Analysis of rejected issues #### +-> Overall stats + -> Category stats +Job-Allow-Failure 22 +Versioning 11 +Job-Retry 4 +Manual-Job 2 +Name: category, dtype: int64 + -> Label stats +com::agreement 4 +com::flaky-tool 3 +fix::self-admitted 3 +com::prefer-last-version 3 +com::tool-upgrade 3 +com::flaky-env 3 +com::no-trust 3 +bug::pip-install 2 +com::let-it-run 2 +com::no-time 2 +com::temporary-smell 2 +com::optional-job 2 +bug::code-quality 1 +bug::deploy-phase 1 +com::depedency-scanning 1 +com::nightly-build 1 +com::incomplete-implementation 1 +com::dependency-scanning 1 +bug::optional-job 1 +Name: label, dtype: int64 +-> Job-Allow-Failure : 22 +com::agreement 3 +com::flaky-tool 2 +fix::self-admitted 2 +com::optional-job 2 +com::temporary-smell 2 +com::let-it-run 2 +bug::optional-job 1 +com::depedency-scanning 1 +com::no-time 1 +bug::code-quality 1 +com::nightly-build 1 +com::flaky-env 1 +com::no-trust 1 +com::dependency-scanning 1 +com::incomplete-implementation 1 +Name: label, dtype: int64 +-> Job-Retry : 4 +com::flaky-env 2 +com::flaky-tool 1 +fix::self-admitted 1 +Name: label, dtype: int64 +-> Manual-Job : 2 +bug::deploy-phase 1 +com::no-trust 1 +Name: label, dtype: int64 +-> Versioning : 11 +com::prefer-last-version 3 +com::tool-upgrade 3 +bug::pip-install 2 +com::agreement 1 +com::no-time 1 +com::no-trust 1 \ No newline at end of file diff --git a/datasets/rq1-results.txt b/datasets/rq1-results.txt new file mode 100644 index 0000000..e2c6cb3 --- /dev/null +++ b/datasets/rq1-results.txt @@ -0,0 +1,181 @@ +### Tot opened issues: 145 + +#### Opened issues (active projects since September 2019) #### +Versioning: 24 +Manual-Job: 16 +Job-Retry: 19 +Job-Allow-Failure: 27 +Total: 86 (59 inactive) + +#### Issues (with a reaction) #### +Versioning: 21 +Manual-Job: 13 +Job-Retry: 11 +Job-Allow-Failure: 19 +Total issues with a reaction: 64 +Total num. of comments: 120 + +#### Ignored issues #### +Versioning: 2 +Manual-Job: 4 +Job-Retry: 0 +Job-Allow-Failure: 0 + +#### Rejected issues #### +Versioning: 6 +Manual-Job: 2 +Job-Retry: 4 +Job-Allow-Failure: 9 + +#### Accepted issues #### +Versioning: 2 +Manual-Job: 1 +Job-Retry: 1 +Job-Allow-Failure: 2 + +#### Fixed issues #### +Versioning: 10 +Manual-Job: 5 +Job-Retry: 6 +Job-Allow-Failure: 7 + +#### Pending issues #### +the remaining issues that have a pending reaction + +#### Overall stats #### + ignore reject pending accept fix reacted opened +Versioning 2 6 1 2 10 21 24 +Manual-Job 4 2 1 1 5 13 16 +Job-Retry 0 4 0 1 6 11 19 +Job-Allow-Failure 0 9 1 2 7 19 27 +overall 6 21 3 6 28 64 86 +-> Percentages + ignore reject pending accept fix +Versioning 9.523810 28.571429 4.761905 9.523810 47.619048 +Manual-Job 30.769231 15.384615 7.692308 7.692308 38.461538 +Job-Retry 0.000000 36.363636 0.000000 9.090909 54.545455 +Job-Allow-Failure 0.000000 47.368421 5.263158 10.526316 36.842105 +overall 9.375000 32.812500 4.687500 9.375000 43.750000 +-> Reaction rate +Versioning 87.500000 +Manual-Job 81.250000 +Job-Retry 57.894737 +Job-Allow-Failure 70.370370 +overall 74.418605 +dtype: float64 + +#### Analysis of rejected issues #### +-> Overall stats + -> Category stats +Job-Allow-Failure 22 +Versioning 11 +Job-Retry 4 +Manual-Job 2 +Name: category, dtype: int64 + -> Label stats +com::agreement 4 +com::tool-upgrade 3 +com::prefer-last-version 3 +com::flaky-env 3 +com::flaky-tool 3 +com::no-trust 3 +fix::self-admitted 3 +com::let-it-run 2 +com::no-time 2 +com::temporary-smell 2 +bug::pip-install 2 +com::optional-job 2 +com::incomplete-implementation 1 +bug::deploy-phase 1 +com::depedency-scanning 1 +bug::optional-job 1 +com::dependency-scanning 1 +com::nightly-build 1 +bug::code-quality 1 +Name: label, dtype: int64 +-> Job-Allow-Failure : 22 +com::agreement 3 +com::flaky-tool 2 +com::let-it-run 2 +fix::self-admitted 2 +com::temporary-smell 2 +com::optional-job 2 +com::nightly-build 1 +com::dependency-scanning 1 +bug::optional-job 1 +com::no-trust 1 +com::depedency-scanning 1 +com::incomplete-implementation 1 +com::flaky-env 1 +com::no-time 1 +bug::code-quality 1 +Name: label, dtype: int64 +-> Job-Retry : 4 +com::flaky-env 2 +fix::self-admitted 1 +com::flaky-tool 1 +Name: label, dtype: int64 +-> Manual-Job : 2 +com::no-trust 1 +bug::deploy-phase 1 +Name: label, dtype: int64 +-> Versioning : 11 +com::tool-upgrade 3 +com::prefer-last-version 3 +bug::pip-install 2 +com::no-trust 1 +com::no-time 1 +com::agreement 1 +Name: label, dtype: int64 + +#### Analysis of the resolution time #### +-> Overall + resolution-time +count 26.000000 +mean 50.788187 +std 50.436171 +min 0.040553 +25% 3.277416 +50% 46.376299 +75% 72.507027 +max 166.611600 +-> Job-Allow-Failure + resolution-time +count 6.000000 +mean 31.333145 +std 31.098236 +min 0.040553 +25% 11.249397 +50% 19.989666 +75% 50.267325 +max 79.283135 +-> Job-Retry + resolution-time +count 6.000000 +mean 55.197646 +std 63.669235 +min 0.469877 +25% 1.677718 +50% 35.010416 +75% 103.441625 +max 143.876320 +-> Manual-Job + resolution-time +count 5.000000 +mean 43.204350 +std 24.643433 +min 1.965046 +25% 41.676425 +50% 51.076172 +75% 55.390399 +max 65.913709 +-> Versioning + resolution-time +count 9.000000 +mean 65.031818 +std 62.809709 +min 0.790469 +25% 3.373903 +50% 55.363383 +75% 102.379407 +max 166.611600 \ No newline at end of file diff --git a/datasets/rq2-precision.csv b/datasets/rq2-precision.csv new file mode 100644 index 0000000..1440a0a --- /dev/null +++ b/datasets/rq2-precision.csv @@ -0,0 +1,869 @@ +ID,TYPE,SUBTYPE,RATING +FraME-projects__PyFraME__Job-Retry__codecov,Job-Retry,,TRUE +HiSchoolProject__BackSchool__Versioning__requirementstxt__djangorestframework__missing,Versioning,missing,TRUE +carmenbianca__pyparadox__Job-Allow-Failure__coverage,Job-Allow-Failure,,TRUE +cravacuore__rawRSS__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +barrel__barrel-wordpress__Manual-Job__create_merge_request,Manual-Job,,FALSE +paurosello__sparkpost_integration__Versioning__requirementstxt__python-slugify__missing,Versioning,missing,TRUE +picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,Versioning,missing,TRUE +agrumery__aGrUM__Job-Retry__macos_pyagrum,Job-Retry,,TRUE +eightnoteight__rss_channel_bot__Versioning__requirementstxt__aiohttp__missing,Versioning,missing,TRUE +artem-sidorenko__chef-rkt__Job-Allow-Failure__kitchen-testing-packages,Job-Allow-Failure,,TRUE +jknix__sspyrs__Versioning__requirementstxt__openpyxl__any-upper-version,Versioning,any-upper-version,TRUE +naveenlj__alerta__Versioning__requirementstxt____missing,Versioning,missing,TRUE +junquera__toc-toc-ssh__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +elixire__elixire__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,TRUE +zelebez6969__sbpy3__Versioning__requirementstxt__youtube_dl__missing,Versioning,missing,TRUE +AnakiKaiver297__Requiem-Project__Versioning__requirementstxt__bs4__missing,Versioning,missing,TRUE +chamilotools__chamilotools__Versioning__requirementstxt__xlwt__missing,Versioning,missing,TRUE +v01d-gl__translator-text__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +gitlab-examples__php__Job-Allow-Failure__test-php7-mysql,Job-Allow-Failure,,TRUE +bigapplepy__yak-bak__Versioning__requirementstxt__diff-match-patch__only-major-number,Versioning,only-major-number,TRUE +juergen-kosel-jk__wireshark__Job-Retry__gcc-6,Job-Retry,,TRUE +unylmz__CICD-tst__Versioning__com-sahabt-sample-jsf-1-0-0-SNAPSHOT__javax-inject-javax-inject__only-major-number,Versioning,only-major-number,TRUE +kimlab__uniparc_xml_parser__Job-Allow-Failure__test-pages,Job-Allow-Failure,,TRUE +ccis-irad__nifi-calrissian-processors__Versioning__com-keywcorp-ccis-irad-nifi-nifi-calrissian-processors-__org-slf4j-slf4j-simple__missing,Versioning,missing,TRUE +Dennovin__kqb__Versioning__requirementstxt__trueskill__missing,Versioning,missing,TRUE +masakura__issues__Job-Allow-Failure__firefox-branches,Job-Allow-Failure,,TRUE +gwasser__django-helpdesk__Versioning__requirementstxt__django-bootstrap-form__only-major-number,Versioning,only-major-number,TRUE +gpaw__gpaw__Versioning__gitlabyaml__ase__missing,Versioning,missing,TRUE +honeyryderchuck__httpx__Job-Allow-Failure__test_jruby,Job-Allow-Failure,,TRUE +unhangout__reunhangout__Versioning__requirementstxt__selenium__any-upper-version,Versioning,any-upper-version,TRUE +ColoradoSchoolOfMines__acm-officer-resources__Versioning__requirementstxt__sphinx_rtd_theme__missing,Versioning,missing,FALSE +mauriciobaeza__empresa-libre__Versioning__requirementstxt__falcon__missing,Versioning,missing,TRUE +eyeo__adblockplus__adblockpluscore__Job-Retry__docs,Job-Retry,,TRUE +subnetzero__iridium__Job-Allow-Failure__cargo-test,Job-Allow-Failure,,TRUE +neo0x3d__ffp_infoscreen__Versioning__requirementstxt__geopy__missing,Versioning,missing,TRUE +vitkin__sfdc-email-to-case-agent__Versioning__com-sforce-sfdc-email-to-case-agent-1-9__junit-junit__only-major-number,Versioning,only-major-number,FALSE +pgerber__zbase32-rust__Job-Allow-Failure__nightly,Job-Allow-Failure,,TRUE +Manu343726__tinyrefl__Job-Retry__conan-integration-gcc5,Job-Retry,,TRUE +pleasantone__intel-times__Versioning__requirementstxt__python-dateutil__missing,Versioning,missing,TRUE +gitlab-org__quality__triage-ops__Manual-Job__dry-run-stage-and-groups-labels-hygiene-gitlab-org,Manual-Job,,TRUE +XRevan86__hptoad__Versioning__requirementstxt__slixmpp__missing,Versioning,missing,TRUE +opolat__dropwizard-example__Versioning__akquinet-hello-world-1-0-SNAPSHOT__io-dropwizard-dropwizard-core__missing,Versioning,missing,TRUE +ciferkey__soup-bot__Versioning__requirementstxt__fs__missing,Versioning,missing,TRUE +BVollmerhaus__blurwal__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +open-sourceress__violet__Versioning__requirementstxt__pint__missing,Versioning,missing,TRUE +vectoridau__awebus__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +CommandCrafterHD__level-bot__Versioning__requirementstxt__git-https---github-com-Rapptz-discord-py-rewrite__missing,Versioning,missing,TRUE +JonathonReinhart__gitlab-artifact-cleanup__Versioning__requirementstxt__python-gitlab__any-upper-version,Versioning,any-upper-version,TRUE +VSI-TUGraz__Dynasaur__Versioning__requirementstxt__Pillow__missing,Versioning,missing,TRUE +offa__docker-images-ci__Job-Retry__stm32-eth_clang-5,Job-Retry,,TRUE +Retr0_System__LBRY__Versioning__requirementstxt__git-https---github-com-lbryio-lbryum-git-v3-2-1-egg-lbryum__missing,Versioning,missing,FALSE +j-marchini__nap__Versioning__requirementstxt__python-dateutil__missing,Versioning,missing,TRUE +xonotic__xonstat__Versioning__requirementstxt__SQLAlchemy__missing,Versioning,missing,TRUE +pycqa__pydocstyle__Versioning__requirementstxt____missing,Versioning,missing,FALSE +code-stats__code-stats-vim__Versioning__gitlabyaml__neovim__missing,Versioning,missing,TRUE +chand3040__suryan_odoo_sose__Versioning__requirementstxt__http---download-gna-org-pychart-PyChart-1-39-tar-gz-egg-PyChart__missing,Versioning,missing,TRUE +sarpdev__asyncbot__Versioning__requirementstxt__discord-py__missing,Versioning,missing,TRUE +ev9__ssh_multi__Versioning__requirementstxt__paramiko__missing,Versioning,missing,TRUE +sirimangalo__meditation-plus__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +thorgate-public__django-project-template__Versioning__requirementstxt__PyYAML__any-upper-version,Versioning,any-upper-version,TRUE +mmmickmason2__ether-router-master__Job-Allow-Failure__codequality,Job-Allow-Failure,,TRUE +deadc0de6__dotdrop__Versioning__requirementstxt____missing,Versioning,missing,TRUE +crwxrws__psycheled__Job-Allow-Failure__rust-nightly,Job-Allow-Failure,,TRUE +Banzyme2__django-cloud9-dokcer__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,TRUE +failmap__admin__Job-Retry__build_test,Job-Retry,,TRUE +oprudkyi__laravel-bootstrap-adminlte-starter-kit__Job-Allow-Failure__test-php71,Job-Allow-Failure,,TRUE +development-incolume__incolumepy-utils__Versioning__requirementstxt__deprecated__missing,Versioning,missing,TRUE +vstconsulting__polemarch__Job-Allow-Failure__release_pypi,Job-Allow-Failure,,TRUE +Vertana__lolresearchbot__Job-Allow-Failure__stop_review,Job-Allow-Failure,,TRUE +oly-exams__exam_tools__Versioning__requirementstxt__django-crispy-forms__missing,Versioning,missing,TRUE +fpdpy__fpd__Job-Allow-Failure__test_docstrings-p3,Job-Allow-Failure,,TRUE +denkmal__denkmal-website__Job-Retry__deploy-production,Job-Retry,,TRUE +bachtungvantung__gitlab-ce__Job-Allow-Failure__rspec-pg-rails5-22-30,Job-Allow-Failure,,TRUE +radek-sprta__mariner__Job-Retry__test-python37,Job-Retry,,TRUE +rosarior__django-inventory__Versioning__requirementstxt____missing,Versioning,missing,FALSE +smartbgp__yabgp__Versioning__requirementstxt__oslo-config__any-upper-version,Versioning,any-upper-version,TRUE +rafael-santana__poc-multi-tenant__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +Semama__Wall-E__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +passit__passit-backend__Versioning__requirementstxt__freezegun__missing,Versioning,missing,TRUE +opencraft__opencraft__Versioning__requirementstxt____missing,Versioning,missing,TRUE +systent__dj_chart__Versioning__requirementstxt__django__any-upper-version,Versioning,any-upper-version,TRUE +cyberbudy__django-postie__Versioning__requirementstxt____missing,Versioning,missing,FALSE +webprogrammingUniTN__webproject__Versioning__com-soapandtherest-shoppinglist-shoppinglist-data-__javax-inject-javax-inject__only-major-number,Versioning,only-major-number,TRUE +JonathonReinhart__gitlab-artifact-cleanup__Versioning__requirementstxt__python-dateutil__missing,Versioning,missing,TRUE +MaphsterB__pyramid-rlp__Versioning__requirementstxt____missing,Versioning,missing,TRUE +kai-richard-koenig__easytainer-cli__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +FloweeTheHub__thehub__Job-Allow-Failure__createHubDocker,Job-Allow-Failure,,TRUE +timelord__sklearn_transformers__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +tglman__persy__Job-Allow-Failure__upload_report,Job-Allow-Failure,,TRUE +francois-travais__1tipi2bicycles__Job-Retry__build-test,Job-Retry,,TRUE +AnjiProject__anji-core__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +codelibre__schroot__Job-Allow-Failure__debian-unstable,Job-Allow-Failure,,TRUE +rolla__xpncms__Job-Allow-Failure__yarn,Job-Allow-Failure,,TRUE +arma3-server-tools__modmanager__Versioning__requirementstxt__networkx__any-upper-version,Versioning,any-upper-version,TRUE +thoughtvector__grpc-ping-pong__Versioning__requirementstxt__grpcio-tools__missing,Versioning,missing,FALSE +luichan__official-wireshark__Job-Retry__clang-5,Job-Retry,,TRUE +rpdev__opentodolist__Manual-Job__macos,Manual-Job,,TRUE +xhang__gitlab__Manual-Job__build-package,Manual-Job,,TRUE +petervaro__pcd__Versioning__requirementstxt__uncompyle6__any-upper-version,Versioning,any-upper-version,TRUE +gitzone__npmts__Job-Allow-Failure__testLEGACY,Job-Allow-Failure,,TRUE +ponyweb-ensemble__PonyWeb__Versioning__requirementstxt__BeautifulSoup4__missing,Versioning,missing,TRUE +vstconsulting__polemarch-docker__Versioning__requirementstxt__bash__missing,Versioning,missing,TRUE +tessia-project__tessia__Versioning__requirementstxt__jsonschema__any-upper-version,Versioning,any-upper-version,TRUE +jankubierecki__UEKPartnership__Versioning__requirementstxt__django-admin-list-filter-dropdown__missing,Versioning,missing,TRUE +formschema__native__Job-Allow-Failure__npm-outdated,Job-Allow-Failure,,TRUE +jakesys__aws__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +lucj__sophia-events__Job-Allow-Failure__image_scanning_clair,Job-Allow-Failure,,TRUE +serial-lab__quartet_capture__Versioning__requirementstxt__django-model-utils__any-upper-version,Versioning,any-upper-version,TRUE +Synder__Tokage__Versioning__requirementstxt__lxml__any-upper-version,Versioning,any-upper-version,TRUE +vstconsulting__polemarch-ansible__Job-Retry__py36-install-ansible25,Job-Retry,,TRUE +librespacefoundation__satnogs__satnogs-docs__Versioning__requirementstxt__APScheduler__missing,Versioning,missing,TRUE +daxm__Cisco-SDA-Setup-Notes__Versioning__requirementstxt__jinja2__missing,Versioning,missing,TRUE +anatoli__InstaPy__Versioning__requirementstxt__webdriverdownloader__missing,Versioning,missing,TRUE +jwcha__my-interactive-coding-challenges__Versioning__requirementstxt__prompt_toolkit__any-upper-version,Versioning,any-upper-version,TRUE +mosaic-mfg__palette-2-plugin__Versioning__requirementstxt__-__missing,Versioning,missing,FALSE +galacteek__galacteek__Versioning__requirementstxt__json-traverse__any-upper-version,Versioning,any-upper-version,TRUE +linran__wistomgraden__Versioning__requirementstxt__diff-match-patch__only-major-number,Versioning,only-major-number,TRUE +hexoshi__hexoshi__Versioning__requirementstxt__pygame__any-upper-version,Versioning,any-upper-version,TRUE +cyberfighter-org__environment-readme-md__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +enzanki_ars__live-tv__Versioning__requirementstxt____missing,Versioning,missing,TRUE +npolar__sphinx-docs-template__Versioning__requirementstxt__sphinx-rtd-theme__missing,Versioning,missing,TRUE +jeff-triplett__django-pghero__Versioning__requirementstxt__check-manifest__missing,Versioning,missing,FALSE +remcohaszing__eslint-formatter-gitlab__Job-Allow-Failure__dependency-scanning,Job-Allow-Failure,,TRUE +radek-sprta__mariner__Versioning__gitlabyaml__mkdocs__missing,Versioning,missing,FALSE +rubickcz__chat__Job-Allow-Failure__code-quality,Job-Allow-Failure,,TRUE +efunb__read_input__Job-Allow-Failure__cratesio,Job-Allow-Failure,,TRUE +finding-ray__antikythera__Job-Allow-Failure__test_armv7l,Job-Allow-Failure,,TRUE +Flockademic__plaudit__Job-Retry__e2e-chrome,Job-Retry,,TRUE +gotfix__docker-gitlab__Job-Allow-Failure__lint,Job-Allow-Failure,,TRUE +demsking__image-downloader__Job-Allow-Failure__npm-outdated,Job-Allow-Failure,,TRUE +mataara__Mataara-Server__Versioning__requirementstxt____missing,Versioning,missing,FALSE +metaperl__surgetrader__Versioning__requirementstxt__marrow-mailer__missing,Versioning,missing,TRUE +leopardm__dnd__Versioning__gitlabyaml__requests__missing,Versioning,missing,TRUE +the-vision__botorosa__Versioning__requirementstxt__https---storage-googleapis-com-tensorflow-linux-cpu-tensorflow-0-10-0-cp35-cp35m-linux_x86_64-whl__missing,Versioning,missing,FALSE +martynbristow__gabbi__Versioning__requirementstxt__urllib3__any-upper-version,Versioning,any-upper-version,TRUE +aurorafossorg__apps__tuna__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +ID4me__id4me-rp-client-python__Versioning__requirementstxt__typing__any-upper-version,Versioning,any-upper-version,FALSE +laurentbachelier__weboob__Job-Allow-Failure__unittests-modules-3,Job-Allow-Failure,,TRUE +hop23typhu__baseapp__Job-Allow-Failure__codequality,Job-Allow-Failure,,TRUE +ultreiaio__jgit-flow__Manual-Job__latest-site,Manual-Job,,FALSE +e0__nbviewer__Versioning__requirementstxt__pylibmc__missing,Versioning,missing,TRUE +Ritubh__kubernetes__Job-Allow-Failure__codequality,Job-Allow-Failure,,TRUE +alrazi__ini_xmiconverter__Versioning__COBHUNI-ini_xmiconverter-0-0-1-SNAPSHOT__de-tudarmstadt-ukp-dkpro-core-de-tudarmstadt-ukp-dkpro-core-testing-asl__missing,Versioning,missing,FALSE +EAVISE__lightnet__Versioning__requirementstxt__--visual-__missing,Versioning,missing,TRUE +valtron__msn-server__Versioning__requirementstxt__git-https---gitlab-com-valtron-sqlaltery-git-0-1-0__missing,Versioning,missing,FALSE +o9000__google-code-to-gitlab__Versioning__requirementstxt__requests__any-upper-version,Versioning,any-upper-version,TRUE +rigrassm__plexrequests-python__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +emilopez__testeame__Versioning__requirementstxt__Pygments__missing,Versioning,missing,TRUE +mkleehammer__servant__Versioning__requirementstxt____missing,Versioning,missing,FALSE +q4d__vote-app__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +vnphp__request-logger-bundle__Job-Allow-Failure__phpcs,Job-Allow-Failure,,TRUE +leinardi__gkraken__Versioning__requirementstxt__pygobject__missing,Versioning,missing,TRUE +atomap__atomap__Job-Allow-Failure__style_checks_flake8_docstrings,Job-Allow-Failure,,TRUE +juanfgs__yt-browser__Versioning__requirementstxt__oauth2client__missing,Versioning,missing,TRUE +ric_harvey__getAWSdocs__Versioning__requirementstxt__urlparse3__missing,Versioning,missing,TRUE +decko__epracas-backend__Versioning__requirementstxt____missing,Versioning,missing,FALSE +nimbus__django_template__Versioning__requirementstxt__xinge_push__any-upper-version,Versioning,any-upper-version,TRUE +finding-ray__antikythera__Versioning__requirementstxt__wheel__missing,Versioning,missing,FALSE +codeearth__drawdown__Versioning__requirementstxt__matplotlib__any-upper-version,Versioning,any-upper-version,TRUE +highside__node-amqp__Job-Allow-Failure__fmt-check,Job-Allow-Failure,,TRUE +KatHamer__HackWM__Versioning__requirementstxt__Xlib__any-upper-version,Versioning,any-upper-version,TRUE +lu-ci__sigma__apex-sigma__Versioning__requirementstxt__ftfy__missing,Versioning,missing,TRUE +digested__node-digest__Job-Retry__build-demo-typescript-library,Job-Retry,,TRUE +dalton__dalton__Job-Allow-Failure__nightly-coverage,Job-Allow-Failure,,TRUE +wolphin__wolphin-win__Versioning__gitlabyaml__wheel__missing,Versioning,missing,FALSE +neo-cs__addressbook__Versioning__mx-neocs-addressbook-addressbook-1-10-0-SNAPSHOT__org-hibernate-hibernate-jpamodelgen__missing,Versioning,missing,TRUE +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,Versioning,missing,TRUE +simulabio__simulabio__Versioning__requirementstxt__beautifulsoup4__missing,Versioning,missing,TRUE +franksonet__bypy__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +whendrik__zazu__Versioning__requirementstxt__argparse__missing,Versioning,missing,TRUE +dmantis__bitshares-assistant__Versioning__requirementstxt__sqlalchemy__missing,Versioning,missing,TRUE +ralphembree__Loquitor-Heroku__Versioning__requirementstxt__git-https---github-com-ralphembree-Loquitor__missing,Versioning,missing,TRUE +ALU__nuage_vsd_abstraction_from_yaml__Versioning__requirementstxt__vspk__missing,Versioning,missing,TRUE +wpdesk__wp-dataset__Manual-Job__phpmetric-metrics,Manual-Job,,TRUE +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-leo,Job-Allow-Failure,,TRUE +clorichel__vue-gitlab-api__Job-Allow-Failure__npm-publish,Job-Allow-Failure,,TRUE +samba__webapptitude__Versioning__requirementstxt__stripe__missing,Versioning,missing,TRUE +IPMsim__Virtual-IPM__Versioning__requirementstxt__scipy__missing,Versioning,missing,TRUE +MinoMino__mindl__Versioning__requirementstxt__selenium__missing,Versioning,missing,TRUE +butala__pyrsss__Versioning__requirementstxt__more-itertools__missing,Versioning,missing,TRUE +balasankarc__python-gemdeps__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +danialbehzadi__danialassist__Versioning__requirementstxt__pyrogram__missing,Versioning,missing,TRUE +wallzero__jsplumb-react__Job-Retry__pages,Job-Retry,,TRUE +dataengi__marketing__www-dataengi-com__Job-Allow-Failure__check_links,Job-Allow-Failure,,TRUE +LuWaWaSP__T-brain-trendmicro__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +cromse__django-plataform-colegio__Versioning__requirementstxt____missing,Versioning,missing,FALSE +fluidattacks__asserts__Job-Retry__deploy,Job-Retry,,TRUE +metapensiero__metapensiero-sqlalchemy-asyncpg__Versioning__requirementstxt____missing,Versioning,missing,FALSE +stp-team__systemtestportal-webapp__Job-Allow-Failure__lint-source,Job-Allow-Failure,,TRUE +github-cloud-corp__django-rest-framework__Versioning__requirementstxt____missing,Versioning,missing,FALSE +moorepants__skijumpdesign__Versioning__requirementstxt____missing,Versioning,missing,FALSE +mauriciofrivera__text_scorekeeper__Versioning__requirementstxt____missing,Versioning,missing,FALSE +edelweiss-linux__backend__Versioning__requirementstxt__django__only-major-number,Versioning,only-major-number,TRUE +tp-ppw__tp1_ppw_2018_2019_1__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +Cayan_HacktheHub__TamaTrainer__Versioning__requirementstxt__matplotlib__missing,Versioning,missing,TRUE +clinton-lawrence2__hockey-alert__Versioning__requirementstxt__pytz__missing,Versioning,missing,TRUE +alakantti__alakantti__Versioning__requirementstxt____missing,Versioning,missing,FALSE +dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +juergens__stabbot__Versioning__requirementstxt____missing,Versioning,missing,TRUE +java-tutorials__messenger__Versioning__org-nyna-messenger-1-0-SNAPSHOT__org-glassfish-jersey-jersey-bom__missing,Versioning,missing,TRUE +rubickcz__chat__Versioning__gitlabyaml__docker__missing,Versioning,missing,TRUE +sj1k__grizzbot__Versioning__requirementstxt__git-https---github-com-Rapptz-discord-py-rewrite__missing,Versioning,missing,TRUE +kousu__fbgate__Versioning__requirementstxt__thrift__missing,Versioning,missing,TRUE +dansiviter__cito__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +fablabnapoli__EngraveCube__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +bandaa__carrecognizer__Versioning__requirementstxt__gunicorn-19-9-0__missing,Versioning,missing,TRUE +rhab__PyOTRS__Versioning__requirementstxt__colorama__any-upper-version,Versioning,any-upper-version,TRUE +vijaiaeroastro__ScrapeForFun__Versioning__gitlabyaml__requests__missing,Versioning,missing,TRUE +carmenbianca__pyparadox__Versioning__requirementstxt____missing,Versioning,missing,FALSE +larsyunker__unithandler__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +fudaa__fudaa-crue__Versioning__org-fudaa-soft-fudaa-crue-ui-aoc-__org-fudaa-framework-ebli-ebli-1d__missing,Versioning,missing,TRUE +ChristophS__aws_adfs__Versioning__requirementstxt__beautifulsoup4__missing,Versioning,missing,TRUE +veloren__game__Job-Allow-Failure__clippy,Job-Allow-Failure,,TRUE +ser__beton__Versioning__requirementstxt____missing,Versioning,missing,FALSE +raeq__pciq__Versioning__requirementstxt__pytz__any-upper-version,Versioning,any-upper-version,TRUE +daniellawrence__go-links__Versioning__requirementstxt__flask_sqlalchemy__missing,Versioning,missing,TRUE +huyderman__lamassu__Job-Allow-Failure__rubocop,Job-Allow-Failure,,TRUE +materials-modeling__hiphive__Job-Allow-Failure__run_flake8,Job-Allow-Failure,,TRUE +buzzcode__Bamboo-Veracode__Versioning__com-veracode-bamboo-uploadscan-1-0-0__javax-inject-javax-inject__only-major-number,Versioning,only-major-number,TRUE +femprocomuns__ldapclient__Versioning__requirementstxt____missing,Versioning,missing,TRUE +binarioetico__flask-ci-demo__Versioning__requirementstxt__Flask-DotEnv__missing,Versioning,missing,TRUE +zachbresser__chbresser-public__Versioning__requirementstxt____missing,Versioning,missing,FALSE +nowayout__yara_sweeper__Versioning__requirementstxt__yara__missing,Versioning,missing,TRUE +rudy_dv__projet-django__Versioning__requirementstxt____missing,Versioning,missing,TRUE +obob__pymatreader__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +openrail__uk__referencedata-nodejs__Job-Allow-Failure__code_coverage,Job-Allow-Failure,,TRUE +runarberg__trompt__Job-Allow-Failure__test-beta,Job-Allow-Failure,,TRUE +DMore__chrome-mink-driver__Job-Retry__PHP-7-0,Job-Retry,,TRUE +tsgkdt__sphinx-plantuml__Versioning__requirementstxt__sphinxbootstrap4theme__any-upper-version,Versioning,any-upper-version,TRUE +burke-software__django-report-builder__Versioning__requirementstxt__model_mommy__missing,Versioning,missing,TRUE +lambdait__mai-schedule-vk__Versioning__requirementstxt__aiopg__missing,Versioning,missing,TRUE +dhoomakethu__pymodbus__Versioning__requirementstxt__mock__any-upper-version,Versioning,any-upper-version,TRUE +anonymous-prodject__ZeroNet__Versioning__requirementstxt__gevent__any-upper-version,Versioning,any-upper-version,TRUE +anjanatiha__Distributed-Machine-Learning-for-Big-Data__Versioning__requirementstxt__https---cdn-mysql-com-Downloads-Connector-Python-mysql-connector-python-2-0-4-tar-gz__missing,Versioning,missing,FALSE +Bottersnike__crypko-py__Versioning__requirementstxt__web3__missing,Versioning,missing,TRUE +leroywarnt__sdlc__Versioning__gitlabyaml__requests__missing,Versioning,missing,TRUE +tezos__tezos__Job-Allow-Failure__integration-sandboxes-voting,Job-Allow-Failure,,TRUE +SunyataZero__remembering__Versioning__requirementstxt__PyQt5__any-upper-version,Versioning,any-upper-version,TRUE +Ma_124__build-py__Versioning__requirementstxt__termcolor__missing,Versioning,missing,TRUE +mgoral__subconvert__Versioning__requirementstxt__-__missing,Versioning,missing,FALSE +gbraad__fedora-wsl__Manual-Job__pages,Manual-Job,,TRUE +cuiyuan2012__P2PFileSharing__Versioning__cui-yuan-P2PFileSharing-1-0-SNAPSHOT__commons-cli-commons-cli__missing,Versioning,missing,TRUE +ewdurbin__chalice-github-auth__Versioning__requirementstxt__github3-py__missing,Versioning,missing,TRUE +bilalbox__panos_tester__Versioning__requirementstxt__tinydb__missing,Versioning,missing,TRUE +gnutls__gnutls__Job-Retry__abi-coverage,Job-Retry,,TRUE +dosuken123__thin-gdk__Job-Retry__postgresql-build,Job-Retry,,TRUE +maximedenes__coq__Job-Allow-Failure__ci-geocoq,Job-Allow-Failure,,TRUE +eyeo__adblockplus__abpui__adblockplusui__Manual-Job__uploadcrowdin,Manual-Job,,TRUE +guyzmo__git-repo__Versioning__requirementstxt__lxml__missing,Versioning,missing,TRUE +apifie__nodems__node-microservice__Job-Allow-Failure__license_management,Job-Allow-Failure,,TRUE +sue445__gitlab_awesome_release__Job-Allow-Failure__rubocop,Job-Allow-Failure,,TRUE +alexandre-tranchant__australian-client__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +gioxa__odagrun__odagrun__Job-Retry__build_docs,Job-Retry,,TRUE +kimlab__rnapulse__Versioning__requirementstxt__tqdm__any-upper-version,Versioning,any-upper-version,TRUE +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,Versioning,missing,TRUE +kaliko__python-musicpd__Versioning__gitlabyaml__sphinx_rtd_theme__missing,Versioning,missing,TRUE +yuanliu9__QANet-pytorch__Versioning__requirementstxt____missing,Versioning,missing,TRUE +gitmate__open-source__IGitt__Versioning__requirementstxt__cryptography__only-major-number,Versioning,only-major-number,TRUE +Niloc37__traceanalyzer__Job-Allow-Failure__all-builds-clang,Job-Allow-Failure,,TRUE +tomecki__winietki__Versioning__requirementstxt__Jinja2__any-upper-version,Versioning,any-upper-version,TRUE +dhoomakethu__pymodbus__Versioning__requirementstxt____missing,Versioning,missing,FALSE +passit__passit-backend__Versioning__requirementstxt__ipdb__missing,Versioning,missing,TRUE +recalbox__recalbox__Manual-Job__build-rpi2-for-test,Manual-Job,,TRUE +melvinvermeeren__template_cpp__Job-Allow-Failure__regex_check,Job-Allow-Failure,,TRUE +Orange-OpenSource__lfn__onap__onap-tests__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,FALSE +meltano__meltano__Versioning__gitlabyaml__black__missing,Versioning,missing,FALSE +xomachine__SteamForwarder__Job-Allow-Failure__test-devel,Job-Allow-Failure,,TRUE +zetok__epaste__Job-Allow-Failure__rust_nightly,Job-Allow-Failure,,TRUE +ajth__interactive-coding-challenges__Versioning__requirementstxt__prompt_toolkit__any-upper-version,Versioning,any-upper-version,TRUE +gserv-me__Smithy__Versioning__requirementstxt__peewee-async__missing,Versioning,missing,TRUE +LazzyTeam__roguelike-pygame__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +davcri91__pyADB__Versioning__requirementstxt____missing,Versioning,missing,FALSE +reinimaurer1__coolvib__Versioning__requirementstxt____missing,Versioning,missing,FALSE +proot__proot__Job-Allow-Failure__check,Job-Allow-Failure,,TRUE +sherpa-team__sherpa__Manual-Job__build,Manual-Job,,TRUE +sumner__offlinemsmtp__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +AyraHikari__EmiliaHikari__Versioning__requirementstxt__python-telegram-bot__any-upper-version,Versioning,any-upper-version,TRUE +starshell__question__Job-Allow-Failure__rustfmt-stable-cargo,Job-Allow-Failure,,TRUE +FlumeAutomation__GRBL_Server__Versioning__requirementstxt__pyserial__missing,Versioning,missing,TRUE +seen__java__seen-retrofit-examples__Versioning__ir-co-dpq-seen-seen-retrofit-example-cms-download-__ir-co-dpq-seen-seen-retrofit-user__missing,Versioning,missing,TRUE +galacteek__galacteek__Versioning__requirementstxt__jsonschema__only-major-number,Versioning,only-major-number,TRUE +cmc_system__cmc__Job-Allow-Failure__deploy,Job-Allow-Failure,,TRUE +flectra-hq__build-tools__Versioning__requirementstxt__pyserial__missing,Versioning,missing,TRUE +r05323028__ptt_crawler__Versioning__requirementstxt____missing,Versioning,missing,TRUE +fmakdemir__cs533-assignment-4__Versioning__requirementstxt__nltk__missing,Versioning,missing,TRUE +PushFish__PushFish-Connectors__Versioning__requirementstxt__txzmq__missing,Versioning,missing,TRUE +Trilarion__civil__Versioning__requirementstxt__PyGame__any-upper-version,Versioning,any-upper-version,TRUE +ayan-b__plagiarism__Versioning__requirementstxt____missing,Versioning,missing,FALSE +simp__simp-core__Job-Retry__rpm_el6-puppet5,Job-Retry,,TRUE +askhl__python-ase__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +nutanix__curie__Job-Allow-Failure__pylint,Job-Allow-Failure,,TRUE +linagora__petals-cockpit__Job-Retry__test-frontend,Job-Retry,,TRUE +onepoint__junit-5-extensions__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +mrein__project-munsterroll__Versioning__munsterroll-munsterrollapp-1-0-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet-core__missing,Versioning,missing,TRUE +mshepherd__ludoj-recommender__Versioning__requirementstxt__turicreate__missing,Versioning,missing,TRUE +headlines-analyzer__scrapper__Versioning__requirementstxt____missing,Versioning,missing,FALSE +catalyst-it__catascope__Versioning__requirementstxt____missing,Versioning,missing,FALSE +ardilabs__sams-garden__Job-Allow-Failure__test_coverage,Job-Allow-Failure,,TRUE +bagage__cadastre-conflation__Job-Retry__build_citystats-refresher,Job-Retry,,TRUE +mdaffin__nand2tetris__Job-Allow-Failure__nightly,Job-Allow-Failure,,TRUE +finwo__ws-rc4__Job-Retry__publish-to-npmjs-com,Job-Retry,,TRUE +Pagure__pagure__Versioning__requirementstxt__python3-openid-python_version__any-upper-version,Versioning,any-upper-version,TRUE +tottokotkd__benicky__Job-Allow-Failure__rails_best_practices,Job-Allow-Failure,,TRUE +HyphanBot__HyphanBot__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +auto-breakfast__eggs__Versioning__gitlabyaml__bluepy__missing,Versioning,missing,TRUE +eLeCtrOssSnake__GMOD-Magic-Carpets__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +anited__publish__Versioning__requirementstxt__Jinja2__any-upper-version,Versioning,any-upper-version,TRUE +pantomath-io__panto__Job-Retry__packages_index,Job-Retry,,TRUE +mike-koch__hitman-maps__Manual-Job__Refresh-Stage-DB,Manual-Job,,TRUE +jcreinhold__intensity-normalization__Versioning__requirementstxt__nibabel__missing,Versioning,missing,TRUE +Lucidiot__python-usda__Versioning__requirementstxt__requests__any-upper-version,Versioning,any-upper-version,TRUE +beardog__Onionr__Versioning__requirementstxt____missing,Versioning,missing,TRUE +neonox31__podcast-server__Job-Retry__test-18,Job-Retry,,TRUE +Callahan93__headless__Job-Allow-Failure__doxygen_pdf,Job-Allow-Failure,,TRUE +geoffreyp__django-cook__Versioning__requirementstxt__django-bootstrap4__missing,Versioning,missing,TRUE +bluefu__python-simple-webauth__Versioning__requirementstxt__pymysql__missing,Versioning,missing,TRUE +meltano__meltano__Versioning__gitlabyaml__---dev--__missing,Versioning,missing,FALSE +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__chalice__missing,Versioning,missing,TRUE +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-sql-common__missing,Versioning,missing,TRUE +arma3-server-tools__modmanager__Versioning__requirementstxt__git-git---github-com-reclosedev-requests-cache-git-5fe2bc23ba29c2aeeb55be15458f6443264db3a2-egg-requests-cache__missing,Versioning,missing,FALSE +petelawler__LiBrew__Versioning__requirementstxt__queuelib__missing,Versioning,missing,TRUE +jeremiecook__snips-skill-mpc__Versioning__requirementstxt__hermes-python__any-upper-version,Versioning,any-upper-version,TRUE +datrv4__probemon__Versioning__requirementstxt__scapy__missing,Versioning,missing,TRUE +ColoradoSchoolOfMines__visplay__Job-Allow-Failure__lint_js,Job-Allow-Failure,,TRUE +biotransistor__zerogravity__Versioning__requirementstxt__docker__any-upper-version,Versioning,any-upper-version,TRUE +eic__ejpm__Versioning__requirementstxt____missing,Versioning,missing,TRUE +DMore__chrome-mink-driver__Job-Retry__Headed-chrome-unstable,Job-Retry,,TRUE +jsonsonson__wily-cli__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +vitvickiy__news_maker__Versioning__requirementstxt__alembic__missing,Versioning,missing,TRUE +joshlambert__minimal-ruby-app__Job-Allow-Failure__license_management,Job-Allow-Failure,,TRUE +user2589__ghd__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +HexerBeta__MNIST_AI__Versioning__requirementstxt____missing,Versioning,missing,TRUE +coreynwops__decred-dev-docs__Job-Allow-Failure__layout_link_check,Job-Allow-Failure,,TRUE +airc-ntu__ayame__Versioning__jp-go-aist-ayame-ayame-context-console-0-1-SNAPSHOT__jp-go-aist-ayame-ayame-context-common__missing,Versioning,missing,TRUE +C0DK__refcoin__Job-Allow-Failure__type_checking,Job-Allow-Failure,,TRUE +kargo-ci__kubernetes-incubator__kargo__Versioning__requirementstxt__jinja2__any-upper-version,Versioning,any-upper-version,TRUE +gf-bl__python-geolink-formatter__Job-Allow-Failure__codequality,Job-Allow-Failure,,TRUE +kermit-js__kermit__Job-Allow-Failure__publish-coveralls,Job-Allow-Failure,,TRUE +occam-archive__occam__Versioning__requirementstxt__psycopg2__missing,Versioning,missing,TRUE +tomecki__winietki__Versioning__requirementstxt__progressbar2__missing,Versioning,missing,TRUE +mike-koch__Mods-for-HESK__Manual-Job__package,Manual-Job,,TRUE +noppo__gevent-websocket__Versioning__requirementstxt__greenlet__missing,Versioning,missing,TRUE +toby3d__telegraph__Job-Allow-Failure__lint_code,Job-Allow-Failure,,TRUE +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__publish_powerpc64le,Job-Allow-Failure,,TRUE +ismail-s__JTime__Job-Allow-Failure__android-unittest,Job-Allow-Failure,,TRUE +crondaemon__wireshark__Job-Retry__gcc-7,Job-Retry,,TRUE +samsartor__dynpool__Job-Allow-Failure__tests-semver,Job-Allow-Failure,,TRUE +mobicoop__mobicoop__Manual-Job__pages,Manual-Job,,FALSE +BurkHufnagel__learningloop__Job-Allow-Failure__sonarqube-scan,Job-Allow-Failure,,TRUE +Manza13__Jueves__Versioning__requirementstxt__win10toast__missing,Versioning,missing,TRUE +Verner__django-assets-livereload__Versioning__requirementstxt__Django__any-upper-version,Versioning,any-upper-version,TRUE +AnDroidEL__requestcep__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +Salamek__version__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +ajostergaard__saleor__Versioning__requirementstxt____missing,Versioning,missing,FALSE +adin__journal-list__Versioning__requirementstxt__ruamel-yaml__any-upper-version,Versioning,any-upper-version,TRUE +metaperl__surgetrader__Versioning__requirementstxt__pyrogram__any-upper-version,Versioning,any-upper-version,TRUE +larsfp__rutercli__Versioning__requirementstxt__tabulate__missing,Versioning,missing,TRUE +koyagami__libneko__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +sedrubal__gitlabcicli__Versioning__requirementstxt__termcolor__missing,Versioning,missing,TRUE +perobertson__scripts__Manual-Job__fedora_26,Manual-Job,,TRUE +MggMuggins__aurum__Job-Allow-Failure__build-cargo-stable,Job-Allow-Failure,,TRUE +superchain__superchainpy__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +afourmy__eNMS__Versioning__requirementstxt__slackclient__only-major-number,Versioning,only-major-number,TRUE +sshoney__sshoney__Versioning__requirementstxt__csirtgsdk__any-upper-version,Versioning,any-upper-version,TRUE +notpushkin__poormansbot__Versioning__requirementstxt__gunicorn__missing,Versioning,missing,TRUE +Harmon758__Harmonbot__Versioning__requirementstxt__git-git---github-com-Harmon758-Py3kAiml-git__missing,Versioning,missing,TRUE +NTPsec__ntpsec__Job-Retry__ubuntu-rolling-refclocks,Job-Retry,,TRUE +noosfero__noosfero__Job-Retry__controllers,Job-Retry,,TRUE +decko__epracas-backend__Versioning__requirementstxt__pendulum__any-upper-version,Versioning,any-upper-version,TRUE +Philbrick__rilcontour__Versioning__requirementstxt__zlib__missing,Versioning,missing,TRUE +CodeBabel__hello-world__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +shashankchakelam__NamoDB__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,FALSE +sagemath__sage__Job-Retry__build-from-clean,Job-Retry,,TRUE +andrebsguedes__das-caffe-images__Versioning__requirementstxt__python-dateutil__only-major-number,Versioning,only-major-number,TRUE +coala__coala-bear-management__Versioning__requirementstxt__coala_utils__any-upper-version,Versioning,any-upper-version,TRUE +puzzlement__spam-all-the-links__Versioning__requirementstxt__twitter__missing,Versioning,missing,TRUE +publicmarket__public-market-storefront__Job-Retry__rspec,Job-Retry,,TRUE +mvgames__ataque_zombie__Manual-Job__bin_linux_en,Manual-Job,,TRUE +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +OwlGamingCommunity__docs__Versioning__requirementstxt__Sphinx__any-upper-version,Versioning,any-upper-version,FALSE +albina-euregio__albina-server__Versioning__eu-albina-albina-0-0-1-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet__missing,Versioning,missing,TRUE +tezos__tezos__Job-Retry__unit-storage,Job-Retry,,TRUE +Philbrick__rilcontour__Versioning__requirementstxt__appdirs__any-upper-version,Versioning,any-upper-version,TRUE +qwasli__component-help__Versioning__ch-meemin-component-help-demo-1-2__com-vaadin-vaadin-client-compiler__missing,Versioning,missing,TRUE +Make-Munich__SaBoT__Versioning__requirementstxt__django-recaptcha__any-upper-version,Versioning,any-upper-version,TRUE +offa__docker-images-ci__Job-Retry__stm32-eth_gcc-8,Job-Retry,,TRUE +mgoral__twweb__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +dogtagpki__pki__Versioning__org-dogtagpki-pki-10-7-SNAPSHOT__com-fasterxml-jackson-core-jackson-databind__any-upper-version,Versioning,any-upper-version,TRUE +dansiviter__cito__Versioning__io-cito-root-0-1-0-SNAPSHOT__javax-jms-javax-jms-api__missing,Versioning,missing,TRUE +o9000__google-code-to-gitlab__Versioning__requirementstxt__six__missing,Versioning,missing,TRUE +xhang__gitlab__Job-Allow-Failure__ee_compat_check,Job-Allow-Failure,,TRUE +tikiwiki__tiki__Job-Allow-Failure__composer-lock,Job-Allow-Failure,,TRUE +EltraEden__APRS__Versioning__gitlabyaml__docker__missing,Versioning,missing,TRUE +ribamar-org__ribamar__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +bachtungvantung__gitlab-ce__Job-Retry__rspec-mysql-10-30,Job-Retry,,TRUE +sofreeus__aghi2gitlab__Manual-Job__qa,Manual-Job,,TRUE +bhattsameer__Pyblock__Versioning__requirementstxt__huepy__missing,Versioning,missing,TRUE +guyzmo__git-repo__Versioning__requirementstxt__python-gitlab__any-upper-version,Versioning,any-upper-version,TRUE +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-3-SNAPSHOT__net-morimekta-utils-testing-util__missing,Versioning,missing,TRUE +bachtungvantung__gitlab-ce__Manual-Job__package-and-qa,Manual-Job,,TRUE +fgoudreault__buzzword_beamer_generator__Versioning__requirementstxt__matplotlib__missing,Versioning,missing,TRUE +linagora__petals-cockpit__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +elitist_neckbeard__tagfs__Versioning__requirementstxt__fusepy__missing,Versioning,missing,TRUE +hackoon__tootstream__Versioning__requirementstxt__colored__any-upper-version,Versioning,any-upper-version,TRUE +mraxel__m-cubed-live__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +mads__Mads-jl__Job-Allow-Failure__test-0-5-0-dev,Job-Allow-Failure,,TRUE +Baasie__continuous-delivery-faas__Job-Allow-Failure__Automated-Acceptance-Test-TF,Job-Allow-Failure,,TRUE +Flockademic__Flockademic__Job-Allow-Failure__license_management,Job-Allow-Failure,,TRUE +devops-df__2017-brasilia-devopsdays-com-br__Job-Allow-Failure__test-contentbuild--FD,Job-Allow-Failure,,TRUE +simulant__simulant__Job-Allow-Failure__test-windows-x64-mingw,Job-Allow-Failure,,TRUE +perobertson__scripts__Job-Allow-Failure__fedora_31,Job-Allow-Failure,,TRUE +redsharpbyte__fets__Versioning__requirementstxt__joblib__missing,Versioning,missing,FALSE +KageKirin__git-lab-py__Versioning__requirementstxt__giturlparse__missing,Versioning,missing,TRUE +equake__aws-spot-fleet-helper__Versioning__requirementstxt__botocore__any-upper-version,Versioning,any-upper-version,TRUE +Flockademic__plaudit__Manual-Job__stop_terraform,Manual-Job,,TRUE +abiproject__abisuite__Versioning__requirementstxt__tqdm__missing,Versioning,missing,TRUE +fdroid__repomaker__Versioning__requirementstxt__qrcode__missing,Versioning,missing,TRUE +mikulaspoul__fibaro_power_reader__Versioning__requirementstxt__blinker__missing,Versioning,missing,TRUE +Sumaid__supermario__Versioning__requirementstxt____missing,Versioning,missing,TRUE +dslackw__USBdev__Versioning__requirementstxt____missing,Versioning,missing,TRUE +blenderone__public__materialx-blender__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +lee-pai-long__boom__Versioning__requirementstxt__requests__any-upper-version,Versioning,any-upper-version,TRUE +mario-kart-analyzer__datacollector__Versioning__requirementstxt__sklearn__missing,Versioning,missing,TRUE +personal-server-community__pschecker__Versioning__requirementstxt____missing,Versioning,missing,FALSE +crondaemon__wireshark__Job-Retry__clang-7,Job-Retry,,TRUE +clearglass__clearglass-community__Job-Allow-Failure__undeploy-review,Job-Allow-Failure,,TRUE +kkopper__oraclejdk-gradle__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +pixstem__pixstem__Job-Allow-Failure__pydocstyle_checks,Job-Allow-Failure,,TRUE +haggl__dotmgr__Versioning__requirementstxt__gitpython__missing,Versioning,missing,TRUE +trakt__script-trakt__Versioning__gitlabyaml__python__missing,Versioning,missing,FALSE +fast_pixelated_detectors__merlin_interface__Job-Allow-Failure__style_checks,Job-Allow-Failure,,TRUE +attakei__yagura__Versioning__requirementstxt__django-registration__any-upper-version,Versioning,any-upper-version,TRUE +pika-lab__lpaas__lpaas-ws__Versioning__it-unibo-alice-lpaas-ws-0-2__javax-javaee-api__any-upper-version,Versioning,any-upper-version,TRUE +classtag__recsys__Job-Allow-Failure__sonar-analyze,Job-Allow-Failure,,TRUE +xivo-solutions__xivo-ctid__Versioning__requirementstxt__git-https---gitlab-com-xivo-solutions-xivo-agentd-client-git-xivo-16-08__missing,Versioning,missing,TRUE +fdroid__fdroid-website__Job-Allow-Failure__spellcheck,Job-Allow-Failure,,TRUE +FraME-projects__PyFraME__Versioning__requirementstxt__numba__missing,Versioning,missing,FALSE +gnukhata__gkcore__Versioning__requirementstxt__natsort__missing,Versioning,missing,TRUE +SavoyRoad__savoybot__Versioning__requirementstxt__discord-py__missing,Versioning,missing,TRUE +deejcunningham__skill-score__Versioning__requirementstxt__mlbgame__missing,Versioning,missing,TRUE +pavel-krupala__pyqt-node-editor-tutorials__Versioning__requirementstxt__PyQt5__any-upper-version,Versioning,any-upper-version,TRUE +shingonoide__php__Job-Allow-Failure__test-php7-mysql,Job-Allow-Failure,,TRUE +steamdriven80__essie-backend__Versioning__requirementstxt__flask-cors__missing,Versioning,missing,TRUE +mailman__postorius__Job-Allow-Failure__django-latest,Job-Allow-Failure,,TRUE +attakei__yagura__Versioning__requirementstxt__django-crontab__missing,Versioning,missing,TRUE +occam-archive__occam__Versioning__requirementstxt__python-sql__any-upper-version,Versioning,any-upper-version,TRUE +Kampi__TychusFindlay__Versioning__requirementstxt__git-https---github-com-Dentosal-python-sc2__missing,Versioning,missing,TRUE +fudaa__fudaa-prepro__Job-Allow-Failure__generate_sonar_report,Job-Allow-Failure,,TRUE +deckar01__ctf-api__Versioning__gitlabyaml__virtualenv__missing,Versioning,missing,FALSE +elad-noor__equilibrator-cache__Versioning__gitlabyaml__wheel__missing,Versioning,missing,FALSE +kargo-ci__kubernetes-incubator__kargo__Manual-Job__tox-inventory-builder,Manual-Job,,TRUE +OpenMW__openmw__Job-Allow-Failure__MacOS,Job-Allow-Failure,,TRUE +brenddongontijo__SMI-UnB__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +atomfrede__jhipster-ci-example-maven__Job-Allow-Failure__gatling-test,Job-Allow-Failure,,TRUE +mondwan__py-use_mock__Versioning__requirementstxt__-__missing,Versioning,missing,FALSE +tifredfr__debserver__Job-Allow-Failure__debian-testing,Job-Allow-Failure,,TRUE +deposer__deposer__Versioning__requirementstxt__Flask__missing,Versioning,missing,TRUE +aegir__aegir__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +geoadmin-opensource__django-file-context__Versioning__requirementstxt__django-common-models__any-upper-version,Versioning,any-upper-version,TRUE +mbajur__prismo__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +strategic-zone__server_ledsAPA102__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +jdesodt__seneca-entity-crud__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +rldotai__cspy3__Versioning__requirementstxt__sphinx__missing,Versioning,missing,FALSE +cfreksen__llvm--emulator__Versioning__requirementstxt____missing,Versioning,missing,TRUE +gioxa__odagrun__odagrun__Job-Allow-Failure__reviewb-image,Job-Allow-Failure,,TRUE +chaica__feed2tweet__Versioning__requirementstxt__tweepy__any-upper-version,Versioning,any-upper-version,TRUE +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,Versioning,missing,FALSE +kayiwa__dnflow__Versioning__requirementstxt__luigi__missing,Versioning,missing,FALSE +FraME-projects__PyFraME__Job-Allow-Failure__codecov,Job-Allow-Failure,,TRUE +engel__bowhead__Versioning__requirementstxt__scikit-image__missing,Versioning,missing,TRUE +SilentTeaCup__congo__Job-Allow-Failure__lint-dupl,Job-Allow-Failure,,TRUE +Panamo__ModularTwitterBot__Versioning__de-panamo-modulartwitterbot-1-0-SNAPSHOT__org-twitter4j-twitter4j-core__any-upper-version,Versioning,any-upper-version,TRUE +mygnu__spark_post__Job-Allow-Failure__rust-nightly,Job-Allow-Failure,,TRUE +gbenson__i8c__Versioning__requirementstxt__arpy__missing,Versioning,missing,TRUE +rmoe__c2log__Versioning__gitlabyaml__sphinx__missing,Versioning,missing,FALSE +neachdainn__nng-rs__Job-Allow-Failure__nightly,Job-Allow-Failure,,TRUE +bitseater__meteo__Job-Allow-Failure__package-snap,Job-Allow-Failure,,TRUE +flectra-hq__pylint-flectra__Versioning__requirementstxt__lxml__any-upper-version,Versioning,any-upper-version,TRUE +StevenBlack__hosts__Versioning__requirementstxt__lxml__any-upper-version,Versioning,any-upper-version,TRUE +jenx__bacon__Versioning__requirementstxt__PySide2__missing,Versioning,missing,TRUE +flatiron-dc__wedding_invitation__Job-Retry__s3-branch-deployment,Job-Retry,,TRUE +davfsa__casino-bot__Versioning__requirementstxt__aiofiles__missing,Versioning,missing,TRUE +gableroux__unity3d__Job-Retry__build-master-unity_2019_1_14f1,Job-Retry,,TRUE +thnee__zsm-lib__Versioning__requirementstxt____missing,Versioning,missing,FALSE +ubuntourist__paculator__Versioning__requirementstxt__ubuntu-requirements__missing,Versioning,missing,FALSE +aegir__aegir__Job-Allow-Failure__notify-irc-failure,Job-Allow-Failure,,TRUE +jryannel__qauto-admin__Versioning__requirementstxt__mkdocs__missing,Versioning,missing,FALSE +SirEdvin__sanic-oauth__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +doctorj__interview-questions__Versioning__requirementstxt__jsonschema__missing,Versioning,missing,TRUE +jensstein__oandbackup__Job-Allow-Failure__cargo-test-nightly,Job-Allow-Failure,,TRUE +radek-sprta__mariner__Job-Allow-Failure__test-python38,Job-Allow-Failure,,TRUE +spare-time-demos__intime2__Job-Allow-Failure__qa-test-e2e-testcafe,Job-Allow-Failure,,TRUE +jnanar__opus__Versioning__requirementstxt__PyQt5__any-upper-version,Versioning,any-upper-version,TRUE +petronetto__interactive-coding-challenges__Versioning__requirementstxt__prompt_toolkit__any-upper-version,Versioning,any-upper-version,TRUE +EclectickMediaSolutions__SignLightup__Versioning__requirementstxt__PySerial__missing,Versioning,missing,TRUE +BuildGrid__buildgrid__Versioning__requirementstxt____missing,Versioning,missing,TRUE +SITTV__sittv-gitlab-io__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +ultreiaio__jgit-flow__Versioning__io-ultreia-java4all-jgitflow-jgitflow-maven-plugin-__javax-inject-javax-inject__only-major-number,Versioning,only-major-number,TRUE +Radiophonix__Radiophonix__Job-Allow-Failure__deploy-review,Job-Allow-Failure,,TRUE +yefengchun__beg-hibernate-4ed__Versioning__com-redhat-osas-books-hibernate-util-__com-mchange-c3p0__any-upper-version,Versioning,any-upper-version,TRUE +mkdk__cidemon__Job-Retry__testing,Job-Retry,,TRUE +dspechnikov__django-slugger__Job-Allow-Failure__py36-djangomaster,Job-Allow-Failure,,TRUE +nuke-group__preferencesManager__Versioning__gitlabyaml__m2r__missing,Versioning,missing,TRUE +deepset-ai__open-source__word2vec-embeddings-de__Versioning__requirementstxt__numpy__missing,Versioning,missing,TRUE +Pagure__pagure__Versioning__requirementstxt__markdown__missing,Versioning,missing,TRUE +Aragami1408__drgnzsearch__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +Graphics3D__MyLittleSynth__Versioning__be-manudahmen-mylittlesynth-70__be-manudahmen-empty3__only-major-number,Versioning,only-major-number,TRUE +kamilgregorczyk__instalike__Versioning__requirementstxt__markdown__missing,Versioning,missing,TRUE +math4youbyusgroupillinois__lascaux__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +jlecomte__gl-webhooks__Versioning__requirementstxt__xdg__missing,Versioning,missing,TRUE +xygeng__jaguar__Versioning__org-future-jaguar-features-0-1-0-SNAPSHOT__org-opendaylight-netconf-features-restconf__missing,Versioning,missing,TRUE +willhallonline__demo-project__Job-Allow-Failure__phpcs-cakephp,Job-Allow-Failure,,TRUE +european-data-portal__licensing-assistant__Versioning__de-fhg-fokus-edp-licensing-service-1-0__javax-inject-javax-inject__only-major-number,Versioning,only-major-number,TRUE +backstage-technical-services__laravel-site__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +blumug__celstash__Versioning__requirementstxt__python-logstash__missing,Versioning,missing,TRUE +ECOM-Mycamping__mycamping__Job-Allow-Failure__sonar-analyze,Job-Allow-Failure,,TRUE +guiriduro__pyra__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +unhangout__reunhangout__Versioning__requirementstxt__django-celery-results__missing,Versioning,missing,TRUE +artur-scholz__stretchy__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__redis__missing,Versioning,missing,TRUE +xythrez__musct__Versioning__requirementstxt__PyYAML__any-upper-version,Versioning,any-upper-version,TRUE +yefengchun__beg-hibernate-4ed__Versioning__com-redhat-osas-books-hibernate-hibernate-parent-1-0-SNAPSHOT__org-hsqldb-hsqldb__missing,Versioning,missing,TRUE +metachris__python-boilerplate-templates__Versioning__requirementstxt__logzero__missing,Versioning,missing,TRUE +fdroid__fdroidclient__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,,TRUE +katyukha__odoo-rpc-client__Versioning__requirementstxt__simplejson__missing,Versioning,missing,TRUE +pushrocks__gulp-function__Job-Allow-Failure__codequality,Job-Allow-Failure,,TRUE +blndr__lyfe__Versioning__requirementstxt____missing,Versioning,missing,FALSE +HyphanBot__HyphanBot__Versioning__requirementstxt__python-telegram-bot__any-upper-version,Versioning,any-upper-version,TRUE +philbooth__pdfpages__Versioning__requirementstxt__PyPDF2__missing,Versioning,missing,TRUE +artemklevtsov__r-alpine__Job-Allow-Failure__shiny-server,Job-Allow-Failure,,TRUE +expliot_framework__expliot__Job-Allow-Failure__flake8,Job-Allow-Failure,,TRUE +luiztoni__geeky__Versioning__br-luiz-toni-geeky-1-0-0__io-thorntail-jsf__missing,Versioning,missing,TRUE +ahangarha__telegram-group-sanetizer-bot__Versioning__requirementstxt__python-dotenv__missing,Versioning,missing,TRUE +edelweiss-linux__backend__Versioning__requirementstxt__djangorestframework__any-upper-version,Versioning,any-upper-version,TRUE +tessia-project__tessia__Versioning__requirementstxt__git-https---gitlab-com-tessia-project-tessia-baselib-git-0-3-3-egg-tessia-baselib__missing,Versioning,missing,FALSE +nerdocs__medux__MedUX__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +freedesktop-sdk__freedesktop-sdk__Manual-Job__minimal_systemd_vm_powerpc64le,Manual-Job,,TRUE +randy408__libspng__Manual-Job__coverity,Manual-Job,,TRUE +PythonDevCommunity__pythondev-site__Versioning__requirementstxt__flask-security__missing,Versioning,missing,TRUE +ma1uta__mxtoot__Versioning__io-github-ma1uta-mxtoot-0-4-6__org-glassfish-jersey-test-framework-providers-jersey-test-framework-provider-grizzly2__missing,Versioning,missing,TRUE +cordite__cordite__Job-Allow-Failure__build-pages,Job-Allow-Failure,,TRUE +SirEdvin__docker-prometheus-exporter__Versioning__requirementstxt__prometheus_async__any-upper-version,Versioning,any-upper-version,TRUE +rubdos__cffipp__Versioning__requirementstxt__coala__any-upper-version,Versioning,any-upper-version,FALSE +abiproject__abisuite__Versioning__requirementstxt__tabulate__any-upper-version,Versioning,any-upper-version,TRUE +PhysikP-Seminar__CNC__Versioning__requirementstxt__flask__missing,Versioning,missing,TRUE +HelloZeroNet__ZeroNet__Versioning__requirementstxt__gevent__any-upper-version,Versioning,any-upper-version,TRUE +flib99__i3-workspace-names__Versioning__requirementstxt__pyxdg__missing,Versioning,missing,TRUE +bachtungvantung__gitlab-ce__Job-Retry__update-tests-metadata,Job-Retry,,TRUE +Xynnect__MLRSS__Versioning__requirementstxt____missing,Versioning,missing,TRUE +indybay__indybay-active__Manual-Job__build,Manual-Job,,TRUE +sj14__go-heroku__Job-Allow-Failure__lint,Job-Allow-Failure,,TRUE +mvgames__ataque_zombie__Manual-Job__bin_windows_en,Manual-Job,,TRUE +jmabey__docker-sqitch__Manual-Job__push,Manual-Job,,FALSE +andrebsguedes__das-caffe-images__Versioning__requirementstxt__scipy__any-upper-version,Versioning,any-upper-version,TRUE +ckhurewa__pyroot-zen__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +nllgg__dustpuppy__Job-Allow-Failure__markdown_lint,Job-Allow-Failure,,TRUE +rbax81__DAT__Versioning__requirementstxt__tdparser__any-upper-version,Versioning,any-upper-version,TRUE +brd-com__brd-js__Job-Allow-Failure__test,Job-Allow-Failure,,TRUE +flectra-community__devops__oca2fc__Versioning__requirementstxt__jinja2__missing,Versioning,missing,TRUE +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_1_additional,Job-Allow-Failure,,TRUE +OctoNezd__autogram__Versioning__requirementstxt__bs4__missing,Versioning,missing,TRUE +JFT__BT_By_KT__Job-Allow-Failure__clang-coverage,Job-Allow-Failure,,TRUE +gwasser__django-helpdesk__Versioning__requirementstxt__django-markdown-deux__missing,Versioning,missing,TRUE +Retr0_System__LBRY__Versioning__requirementstxt__six__any-upper-version,Versioning,any-upper-version,TRUE +alantrick__django-agenda__Versioning__requirementstxt__Django__any-upper-version,Versioning,any-upper-version,TRUE +thefinn93__signald__Job-Allow-Failure__checkupdates-gradle,Job-Allow-Failure,,TRUE +gt8__open-source__elixir__eidetic-projector-elasticsearch__Job-Allow-Failure__lint,Job-Allow-Failure,,TRUE +startmat__document_analyzer__Versioning__requirementstxt____missing,Versioning,missing,FALSE +smc__mlmorph-libreoffice-spellchecker__Versioning__requirementstxt__mlmorph-spellchecker__missing,Versioning,missing,TRUE +osevg__python-flask-gunicorn__Versioning__requirementstxt__Flask__missing,Versioning,missing,TRUE +NullVoxPopuli__emberclear__Job-Allow-Failure__Application-Tests--a11y-,Job-Allow-Failure,,TRUE +martynbristow__gabbi__Job-Allow-Failure__lint_job,Job-Allow-Failure,,TRUE +bhowell__the-screenless-office__Versioning__requirementstxt__git-git---gitlab-com-bhowell-bc128-git-egg-bc128__missing,Versioning,missing,TRUE +manifiestoSL2015__web__Versioning__requirementstxt__ipdb__missing,Versioning,missing,TRUE +eyeo__websites__web-adblockplus-org__Manual-Job__tests,Manual-Job,,TRUE +simulant__simulant__Job-Allow-Failure__test-dreamcast-sh4-gcc,Job-Allow-Failure,,TRUE +bplatta__proto-api__Versioning__gitlabyaml__pep8__missing,Versioning,missing,FALSE +denkmal__denkmal-website__Job-Retry__deploy-preview,Job-Retry,,TRUE +trustable__mustard__Versioning__requirementstxt__PyYAML__missing,Versioning,missing,TRUE +SunyataZero__well-being-diary__Versioning__requirementstxt__PyQt5__missing,Versioning,missing,TRUE +magda-data__magda__Job-Retry__buildtest-opa-policies,Job-Retry,,TRUE +nihal-mirpuri__hangoutsbot__Versioning__requirementstxt____missing,Versioning,missing,TRUE +audron__YaTWi__Job-Allow-Failure__stop_review,Job-Allow-Failure,,TRUE +VoliKoN__pushfish-poc__Versioning__requirementstxt__qrcode-pil-__missing,Versioning,missing,TRUE +attakei__yagura__Job-Allow-Failure__migration-test,Job-Allow-Failure,,TRUE +aaronkho__GPR1D__Versioning__gitlabyaml__sphinx__missing,Versioning,missing,FALSE +kimlab__kmtools__Versioning__gitlabyaml__nbsphinx__missing,Versioning,missing,FALSE +tahoma-robotics__bear-simulation__Versioning__org-tahomarobotics-bear-simulation-2019-1-0-SNAPSHOT__org-openjfx-javafx-controls__only-major-number,Versioning,only-major-number,TRUE +vindarel__replic__Job-Allow-Failure__test,Job-Allow-Failure,,TRUE +seeqlabs__api-python__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +afourmy__eNMS__Versioning__requirementstxt__flask-restful__missing,Versioning,missing,TRUE +cathaldallan__saltypie__Versioning__requirementstxt__termcolor__missing,Versioning,missing,TRUE +bugbiteme__inventory-wildfly-swarm__Versioning__com-redhat-cloudnative-inventory-1-0-SNAPSHOT__org-wildfly-swarm-jpa__missing,Versioning,missing,TRUE +sgj__platform__Versioning__requirementstxt__https---github-com-mir06-django-ical-archive-rrule-zip__missing,Versioning,missing,TRUE +codingblocksslack__blocksbot__Versioning__requirementstxt__nltk__missing,Versioning,missing,TRUE +clearglass__clearglass-community__Job-Retry__UI-machines-1-2,Job-Retry,,TRUE +upe-consulting__TypedJSON__Job-Allow-Failure__test-node-4,Job-Allow-Failure,,TRUE +bob-mirror__bob__Versioning__requirementstxt__bob-db-biosecure__missing,Versioning,missing,TRUE +AyraHikari__EmiliaHikari__Versioning__requirementstxt__future__missing,Versioning,missing,TRUE +ae-dir__python-aedir__Versioning__requirementstxt__ldap0__missing,Versioning,missing,TRUE +fumail__fuglu__Versioning__gitlabyaml__sphinx__missing,Versioning,missing,FALSE +admicos__urlmirror__Versioning__requirementstxt__pyhocon__missing,Versioning,missing,TRUE +canarduck__flumel__Versioning__gitlabyaml__pypandoc__missing,Versioning,missing,TRUE +mraureliusr__IceCreamBot__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +OsloMet-ABI__nikita-noark5-core__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +sorsasampo__played__Versioning__requirementstxt__pyxdg__missing,Versioning,missing,TRUE +goauth__dex__Versioning__requirementstxt__gitchangelog__missing,Versioning,missing,TRUE +almarklein__bsdf__Versioning__gitlabyaml__markdown__missing,Versioning,missing,TRUE +mmccarry__compose-control__Versioning__requirementstxt__colorlog__missing,Versioning,missing,TRUE +andreas-h__emiprep__Versioning__requirementstxt__-__missing,Versioning,missing,FALSE +bor-sh__git-gitlab__Versioning__gitlabyaml__unittest2__missing,Versioning,missing,FALSE +bfa__bfa_django__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +mkourim__cfme-testcases__Versioning__requirementstxt____missing,Versioning,missing,TRUE +wireshark__wireshark__Job-Retry__gcc-8-nopcap,Job-Retry,,TRUE +veox__pygments-lexer-solidity__Versioning__requirementstxt__pygments__any-upper-version,Versioning,any-upper-version,TRUE +mauriciobaeza__cfdi-descarga__Versioning__requirementstxt__Pillow__missing,Versioning,missing,TRUE +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,Versioning,missing,TRUE +PushFish__PushFish-API__Job-Allow-Failure__pylint,Job-Allow-Failure,,TRUE +glenveegee__PDBeCIF__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +coisa__gitlab-ci-sandbox__Job-Allow-Failure__Security-Checker,Job-Allow-Failure,,TRUE +PythonDevCommunity__pythondev-site__Versioning__requirementstxt__click__any-upper-version,Versioning,any-upper-version,TRUE +expliot_framework__expliot__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +sanpi__effitask__Job-Allow-Failure__lint-clippy,Job-Allow-Failure,,TRUE +wrobell__remt__Versioning__requirementstxt__asyncio-contextmanager__missing,Versioning,missing,TRUE +gf-bl__python-geolink-formatter__Versioning__requirementstxt__sphinxcontrib-versioning__missing,Versioning,missing,FALSE +fintechlabs__fapi-conformance-suite__Job-Allow-Failure__stop_review,Job-Allow-Failure,,TRUE +gitlab-com__www-gitlab-com__Job-Allow-Failure__generate-handbook-changelog-rss,Job-Allow-Failure,,TRUE +derSchabi__tttrsss__Manual-Job__build,Manual-Job,,FALSE +scaphilo__koalixcrm__Versioning__requirementstxt____missing,Versioning,missing,FALSE +remram44__taguette__Versioning__gitlabyaml__psycopg2__missing,Versioning,missing,TRUE +martensoderberg__wambot__Job-Allow-Failure__check_pep-8,Job-Allow-Failure,,TRUE +Salamek__gitlab-tools__Versioning__requirementstxt__pycrypto__any-upper-version,Versioning,any-upper-version,TRUE +jacket0__python3-webservice__Versioning__requirementstxt__Django__missing,Versioning,missing,TRUE +alexdemari__pyplate__Versioning__requirementstxt____missing,Versioning,missing,FALSE +kunglab__ddnn__Versioning__requirementstxt__chainer__missing,Versioning,missing,TRUE +xylok__networkparse__Versioning__requirementstxt____missing,Versioning,missing,FALSE +experimentslabs__engine_elabs__Job-Allow-Failure__bundle-outdated,Job-Allow-Failure,,TRUE +esrifrance-public__orionpy__orionpy__Versioning__requirementstxt__urllib3__missing,Versioning,missing,TRUE +omniprof__web_project_dependencies__Versioning__com-kfwebstandard-web_project_dependencies-1-0__org-jboss-arquillian-junit-arquillian-junit-container__missing,Versioning,missing,TRUE +john-carroll-p__rschedule__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +fablabnapoli__EngraveCube__Versioning__requirementstxt__WTForms__any-upper-version,Versioning,any-upper-version,TRUE +artanicus__python-cozify__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +fdroid__repomaker__Versioning__requirementstxt__six__any-upper-version,Versioning,any-upper-version,TRUE +empurrandojuntos__pushtogether-math__Versioning__requirementstxt____missing,Versioning,missing,FALSE +Plasticity__magnitude__Versioning__requirementstxt__xxhash__any-upper-version,Versioning,any-upper-version,TRUE +SoHigh__Nergigante__Job-Allow-Failure__container_scanning,Job-Allow-Failure,,TRUE +flaxandteal__commandment__Versioning__requirementstxt__mock__missing,Versioning,missing,TRUE +Wazzaps__spark-kit-pythonbase__Versioning__requirementstxt__pyserial__missing,Versioning,missing,TRUE +freshcode-public__i-video-editor__Job-Allow-Failure__rancher-upgrade,Job-Allow-Failure,,TRUE +utf-crawler__utf-crawler__Job-Allow-Failure__rust-nightly,Job-Allow-Failure,,TRUE +SchoolOrchestration__libs__microservicetool__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +laurih__matid__Versioning__requirementstxt__spglib__any-upper-version,Versioning,any-upper-version,TRUE +resume__resume-gitlab-io__Job-Allow-Failure__deploy-production,Job-Allow-Failure,,TRUE +Freso__spotify2musicbrainz__Versioning__requirementstxt__setuptools_scm__missing,Versioning,missing,FALSE +harkwell__recipes__Versioning__recipes-recipes-0-1-1__io-dropwizard-dropwizard-core__missing,Versioning,missing,TRUE +vindarel__syp__Versioning__requirementstxt____missing,Versioning,missing,FALSE +iron-oxide__cogwheel__Job-Allow-Failure__nightly-cargo,Job-Allow-Failure,,TRUE +codingrights__radarlegislativo__Versioning__requirementstxt__python-decouple__missing,Versioning,missing,TRUE +Radiophonix__Radiophonix__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +libnice__libnice__Job-Allow-Failure__test-autotools-valgrind,Job-Allow-Failure,,TRUE +LineageOS__infra__updater__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +gitlab-org__gitlab-qa__Job-Allow-Failure__ce-update-quarantine,Job-Allow-Failure,,TRUE +hb9fxx__qrsspig__Job-Allow-Failure__unittests-valgrind,Job-Allow-Failure,,TRUE +aapjeisbaas__coin-trail__Versioning__requirementstxt__git-https---github-com-bartosh-backtrader-git-ccxt__missing,Versioning,missing,TRUE +wireshark__wireshark__Job-Retry__clang-5,Job-Retry,,TRUE +NifTK__NiftyNet__Versioning__gitlabyaml__bundle__missing,Versioning,missing,FALSE +ydkn__redmine_airbrake_backend__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +dpizetta__mrsprint__Job-Allow-Failure__stop_review,Job-Allow-Failure,,TRUE +synterest__Nextotel__Versioning__requirementstxt__selenium__missing,Versioning,missing,TRUE +psono__psono-server__Versioning__requirementstxt__pycryptodomex__missing,Versioning,missing,TRUE +oleksandromelchuk__rust-osm-reader__Job-Allow-Failure__rust-nightly,Job-Allow-Failure,,TRUE +gbraad__gitlab-client__Versioning__requirementstxt__pyapi-gitlab__missing,Versioning,missing,TRUE +Bernt__MITOS__Versioning__requirementstxt__-__missing,Versioning,missing,FALSE +frozenfoxx__gym-schemaverse__Versioning__requirementstxt__pyyaml__any-upper-version,Versioning,any-upper-version,TRUE +fanshenium__site-template-django__Versioning__requirementstxt__Django-1-11-3__missing,Versioning,missing,TRUE +painless-software__painless-continuous-delivery__Job-Allow-Failure__bandit,Job-Allow-Failure,,TRUE +n303p4__kitsuchan__Versioning__requirementstxt____missing,Versioning,missing,TRUE +datadrivendiscovery__sklearn-wrap__Versioning__requirementstxt____missing,Versioning,missing,TRUE +gnss-sdr__gnss-sdr__Manual-Job__position-L5-static,Manual-Job,,TRUE +opentracing-workshop__spring-petclinic-kubernetes__Job-Allow-Failure__deploy-services,Job-Allow-Failure,,TRUE +WillDaSilva__smug__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +ire4ever1190__app4flask__Versioning__requirementstxt__mechanicalsoup__missing,Versioning,missing,TRUE +OpenMW__openmw__Job-Allow-Failure__Windows,Job-Allow-Failure,,TRUE +leggettc18__fundwarrior__Job-Allow-Failure__rust-nightly,Job-Allow-Failure,,TRUE +dzamlo__gitlab-ci-rust-test__Manual-Job__test-prerelase,Manual-Job,,FALSE +chukwuemeka__zappa__Versioning__requirementstxt__requests__any-upper-version,Versioning,any-upper-version,TRUE +vladgo__build-nginx__Manual-Job__centos7,Manual-Job,,FALSE +lansharkconsulting__sysadmin__py-mysql2pgsql__Versioning__requirementstxt__argparse__missing,Versioning,missing,TRUE +johnjawed__ror__Job-Allow-Failure__performance,Job-Allow-Failure,,TRUE +wondermonger__koa-session-mongoose__Job-Allow-Failure__outdated,Job-Allow-Failure,,TRUE +Lucidiot__python-usda__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +NERSC__nersc-gitlab-io__Job-Allow-Failure__filesize,Job-Allow-Failure,,TRUE +estsauver__pyFirmata__Versioning__requirementstxt__pyserial__missing,Versioning,missing,TRUE +gableroux__unity3d__Job-Retry__build-unity_2019_1_14f1-facebook,Job-Retry,,TRUE +wpdesk__wp-basic-requirements__Job-Allow-Failure__churn-metrics,Job-Allow-Failure,,TRUE +demo-clusters__i2p-online__Manual-Job__delete-cluster,Manual-Job,,FALSE +unhangout__reunhangout__Versioning__requirementstxt__selenium__only-major-number,Versioning,only-major-number,TRUE +meelisreha__Vali-It-projekt__Versioning__com-example-vali-it-webapp-1-0-SNAPSHOT__org-glassfish-jersey-ext-jersey-mvc-freemarker__missing,Versioning,missing,TRUE +Oxylibrium__Nest__Versioning__requirementstxt__nsfw_dl__missing,Versioning,missing,TRUE +inkscape__inkscape-web__Versioning__requirementstxt__django-extratest__any-upper-version,Versioning,any-upper-version,TRUE +sehnem__pynmet__Versioning__gitlabyaml__sqlalchemy__missing,Versioning,missing,TRUE +sscherfke__async-channel__Versioning__requirementstxt__async-generator__missing,Versioning,missing,TRUE +mikefromit__sir-bot-a-lot__Versioning__requirementstxt____missing,Versioning,missing,FALSE +Tmpod__cyborgtoast__Versioning__requirementstxt__motor__missing,Versioning,missing,TRUE +chicken231__eat-a-py__Versioning__requirementstxt____missing,Versioning,missing,TRUE +aaxsh__simple-amazon-scraper__Versioning__requirementstxt__lxml__missing,Versioning,missing,TRUE +laurih__matid__Versioning__requirementstxt__ase__missing,Versioning,missing,TRUE +MTIpython__MTIpython__Versioning__gitlabyaml__www-coolprop-dreamhosters-com__missing,Versioning,missing,TRUE +JuliaGPU__CUDAapi-jl__Job-Allow-Failure__coverage,Job-Allow-Failure,,TRUE +pages__frozen-flask__Versioning__requirementstxt__frozen-flask__missing,Versioning,missing,TRUE +romainhk__plan10__Versioning__requirementstxt__Flask__missing,Versioning,missing,TRUE +atomix-io__atomix__Versioning__io-atomix-atomix-cluster-__io-netty-netty-handler__missing,Versioning,missing,TRUE +nwmitchell__zendesk-downloader__Versioning__requirementstxt__unidecode__missing,Versioning,missing,TRUE +failmap__admin__Versioning__requirementstxt__django-jet__missing,Versioning,missing,TRUE +dropwizard__dropwizard__Versioning__io-dropwizard-dropwizard-auth-__io-dropwizard-dropwizard-core__missing,Versioning,missing,TRUE +kbGit__kbde__Versioning__requirementstxt____missing,Versioning,missing,FALSE +vuedoc__md__Job-Allow-Failure__npm-outdated,Job-Allow-Failure,,TRUE +NTPsec__ntpsec__Job-Retry__ubuntu-devel-refclocks,Job-Retry,,TRUE +r2p2__stopwatch__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +rldotai__cspy3__Versioning__requirementstxt__wheel__any-upper-version,Versioning,any-upper-version,FALSE +magda-data__magda__Job-Retry__dockerize-connectors,Job-Retry,,TRUE +IonicZoo__pigeon-restful-provider__Job-Retry__publish,Job-Retry,,TRUE +oly-exams__exam_tools__Versioning__requirementstxt__CairoSVG__any-minor-number,Versioning,any-minor-number,TRUE +wrobell__remt__Versioning__requirementstxt__pycairo__missing,Versioning,missing,TRUE +SpeciesFileGroup__taxonworks__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +MUSIT-Norway__musit-frontend__Manual-Job__build,Manual-Job,,TRUE +tongyang__okhttp__Versioning__com-squareup-okhttp-sample-simple-client-__com-google-code-gson-gson__missing,Versioning,missing,TRUE +coq__coq__Job-Allow-Failure__build-quick,Job-Allow-Failure,,TRUE +e0__koalixcrm__Versioning__requirementstxt__Mezzanine__any-upper-version,Versioning,any-upper-version,TRUE +je-cspantoja__whats_app_chat_api-python__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +cyphar__kepler-utils__Versioning__requirementstxt__astropy__any-upper-version,Versioning,any-upper-version,TRUE +skickar__SHA1cracker__Versioning__requirementstxt__hashlib__any-upper-version,Versioning,any-upper-version,TRUE +vindarel__abelujo-website__Versioning__requirementstxt__lektor__only-major-number,Versioning,only-major-number,TRUE +danielhones__pycategories__Job-Allow-Failure__lint,Job-Allow-Failure,,TRUE +joseph-choufani__blog-builder__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +katyukha__odoo-rpc-client__Versioning__requirementstxt__six__any-upper-version,Versioning,any-upper-version,TRUE +flipcoder__bomberoni__Versioning__requirementstxt__euclid__missing,Versioning,missing,TRUE +Megver83__hypersocial__Versioning__requirementstxt__argparse__any-upper-version,Versioning,any-upper-version,TRUE +superchain__superchainpy__Job-Allow-Failure__python36,Job-Allow-Failure,,TRUE +recalbox__recalbox-configgen__Versioning__gitlabyaml__pygame__missing,Versioning,missing,TRUE +gnowledge__gstudio__Versioning__requirementstxt__recommonmark__missing,Versioning,missing,TRUE +biotransistor__zerogravity__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +susurrus__fat-rs__Job-Allow-Failure__sparc64-unknown-linux-gnu,Job-Allow-Failure,,TRUE +NTPsec__ntpsec__Job-Allow-Failure__openSUSE-tumbleweed-refclocks,Job-Allow-Failure,,TRUE +riccardoferrari__SnakePy__Versioning__requirementstxt__pygame__missing,Versioning,missing,TRUE +gdevops__tuto_devops__Versioning__requirementstxt____missing,Versioning,missing,FALSE +mxklb__cuteproject__Job-Allow-Failure__debug_tests_devel,Job-Allow-Failure,,TRUE +SporeDB__sporedb__Job-Retry__unit-tests,Job-Retry,,TRUE +Jarbay__Electra__Versioning__requirementstxt__PyQt5__missing,Versioning,missing,TRUE +erkkikeranen__rest-api-with-junit-and-arquillian__Versioning__erkkikeranen-restapiexample-1-0-0-SNAPSHOT__org-jboss-arquillian-protocol-arquillian-protocol-servlet__missing,Versioning,missing,TRUE +demo-clusters__i2p-online__Manual-Job__helm-delete,Manual-Job,,FALSE +illwill__skiptracer__Versioning__requirementstxt__tqdm__missing,Versioning,missing,TRUE +simp__simp-core__Job-Retry__forge_install_el7-puppet5,Job-Retry,,TRUE +dspechnikov__django-slugger__Versioning__gitlabyaml__wheel__missing,Versioning,missing,FALSE +arcfire__rumba__Versioning__gitlabyaml__sphinx_rtd_theme__missing,Versioning,missing,TRUE +recalbox__recalbox__Job-Allow-Failure__lint-commits,Job-Allow-Failure,,TRUE +sapsan14__Vali-IT-feedback__Versioning__com-example-vali-it-webapp-1-0-SNAPSHOT__org-glassfish-jersey-ext-jersey-mvc-freemarker__missing,Versioning,missing,TRUE +l-w-jasons__SWProxy__Versioning__requirementstxt__dpkt__missing,Versioning,missing,TRUE +toys-projects__lazy-url-shorter__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,Versioning,missing,TRUE +vali-it-201804__webdemos__Versioning__com-example-vali-it-webapp-1-0-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet-core__missing,Versioning,missing,TRUE +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__wait_for_end_of_install_medium,Job-Allow-Failure,,TRUE +open-sourceress__violet__Versioning__requirementstxt__click__any-upper-version,Versioning,any-upper-version,TRUE +toastengineer__INJECTION__Versioning__requirementstxt__dill__missing,Versioning,missing,TRUE +psono__psono-server__Versioning__requirementstxt__six__missing,Versioning,missing,TRUE +blendergeek__apps__Job-Allow-Failure__connected-28-default-x86_64,Job-Allow-Failure,,TRUE +IPMsim__Virtual-IPM__Versioning__requirementstxt__numpy__any-upper-version,Versioning,any-upper-version,TRUE +gnowledge__gstudio__Versioning__requirementstxt__ox__any-upper-version,Versioning,any-upper-version,TRUE +containos__containos__Job-Allow-Failure__qemux86_build,Job-Allow-Failure,,TRUE +noosfero__noosfero__Job-Allow-Failure__code_quality,Job-Allow-Failure,,TRUE +hgg__webpymail__Versioning__requirementstxt__git-https---github-com-mozilla-bleach-git__missing,Versioning,missing,TRUE +sshoney__sshoney__Versioning__requirementstxt__python-dateutil__missing,Versioning,missing,TRUE +pdftools__python-ghostscript__Versioning__requirementstxt__wheel__missing,Versioning,missing,FALSE +sethbergman__node-express-demo__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +angreal__angreal__Job-Allow-Failure__init_presentation,Job-Allow-Failure,,TRUE +bhargav461995__BSNL-usage__Versioning__requirementstxt__pywin32__only-major-number,Versioning,only-major-number,TRUE +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-features-0-1-1-SNAPSHOT__org-opendaylight-yangtools-features-yangtools__missing,Versioning,missing,TRUE +Songoda__EpicHoppers__Versioning__com-songoda-EpicHoppers-maven-version-number__com-songoda-songodaupdater__only-major-number,Versioning,only-major-number,TRUE +webprogrammingUniTN__webproject__Versioning__com-soapandtherest-shoppinglist-shoppinglist-data-__com-amazonaws-aws-java-sdk-s3__missing,Versioning,missing,TRUE +sigmavirus24__github3-py__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +abre__lorikeet__Versioning__gitlabyaml__poetry__missing,Versioning,missing,FALSE +kwant__kwant__Job-Allow-Failure__check-for-dependencies-installed,Job-Allow-Failure,,TRUE +inkscape__inkscape__Job-Allow-Failure__inkscape-mac,Job-Allow-Failure,,TRUE +dalibo__postgresql_anonymizer__Job-Allow-Failure__make9-4,Job-Allow-Failure,,TRUE +anatoli__InstaPy__Versioning__requirementstxt__future__any-upper-version,Versioning,any-upper-version,TRUE +postmarketOS__build-postmarketos-org__Manual-Job__test-phpcs,Manual-Job,,TRUE +3MI__SoftwareDesignProject__Versioning__requirementstxt__systemd-python__only-major-number,Versioning,only-major-number,TRUE +cfmm__dcmrcvr__Versioning__requirementstxt__git-https---github-com-pydicom-pynetdicom3-289b082b56794ef80a15ee4fb99f66540f200782__missing,Versioning,missing,FALSE +mrc_es__gae_gen__Versioning__requirementstxt__astunparse__missing,Versioning,missing,TRUE +TortueMat__simple_lib__Versioning__gitlabyaml__--__missing,Versioning,missing,FALSE +slndrmn__pyfm__Versioning__requirementstxt__spotipy__missing,Versioning,missing,TRUE +n0mjs710__DMRlink__Versioning__requirementstxt__Twisted__any-upper-version,Versioning,any-upper-version,TRUE +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_42-3,Job-Retry,,TRUE +fluidattacks__asserts__Job-Retry__test,Job-Retry,,TRUE +systemsengineers__se01-ansible-testing__Versioning__requirementstxt__deepmerge__any-upper-version,Versioning,any-upper-version,TRUE +pipeline-patterns__django-cloudfoundry__Manual-Job__trigger,Manual-Job,,TRUE +anited__publish__Versioning__requirementstxt__Markdown__any-upper-version,Versioning,any-upper-version,TRUE +MateuszZ3__hajs__Versioning__requirementstxt__Jinja2__missing,Versioning,missing,TRUE +baserock__ybd__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +viluon__Desktox__Job-Allow-Failure__lint,Job-Allow-Failure,,TRUE +allthethings__allthethings-gitlab-io__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +hadrien__aws_lambda_logging__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE +lo_extensions__l10n-utility__Versioning__requirementstxt__itstool__missing,Versioning,missing,TRUE +asish11__ABCSocialNetwork__Versioning__ABC-api-0-0-1-SNAPSHOT__org-glassfish-jersey-media-jersey-media-json-binding__missing,Versioning,missing,TRUE +Plasticity__magnitude__Versioning__gitlabyaml__for__missing,Versioning,missing,FALSE +wpdesk__wp-settings__Job-Retry__deploy-to-shop,Job-Retry,,TRUE +MarkEWaite__git-client-plugin__Versioning__org-jenkins-ci-plugins-git-client---revision---changelist-__junit-junit__missing,Versioning,missing,FALSE +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__javax-enterprise-cdi-api__missing,Versioning,missing,TRUE +generik__consul-watchdog__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +ada-chem__ada_core__Versioning__requirementstxt__git-https---gitlab-com-ada-chem-ftdi_serial__missing,Versioning,missing,TRUE +WzukW__oclaunch__Job-Allow-Failure__ocaml_402,Job-Allow-Failure,,TRUE +balping__laravel-hashslug__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +odinjv__contador__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +shaarli__devtools__Versioning__requirementstxt__restructuredtext_lint__missing,Versioning,missing,FALSE +camshift__RTSPbrute__Versioning__requirementstxt__cv2__missing,Versioning,missing,TRUE +jorgeer__ansible-demo__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +Nooka10__local-food__Job-Allow-Failure__code_quality-api,Job-Allow-Failure,,TRUE +TUHH-TIE__SoccerScraping__Versioning__requirementstxt__scrapy__missing,Versioning,missing,TRUE +Bubu__fdroidclassic__Job-Allow-Failure__connected10,Job-Allow-Failure,,TRUE +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__defusedxml__missing,Versioning,missing,TRUE +serial-lab__quartet_epcis__Versioning__gitlabyaml__sphinx__missing,Versioning,missing,FALSE +hyper-expanse__open-source__conventional-gitlab-releaser__Job-Allow-Failure__node_next_yarn_latest,Job-Allow-Failure,,TRUE +user2589__ghd__Versioning__requirementstxt__pandas__any-upper-version,Versioning,any-upper-version,TRUE +open-sismo__coordinate-api__Versioning__requirementstxt____missing,Versioning,missing,FALSE +Louie_ru__InnoSchedule__Versioning__requirementstxt__urllib3__missing,Versioning,missing,TRUE +spease__WeaverForumSoftware__Versioning__gitlabyaml__safety__missing,Versioning,missing,FALSE +alelec__aioeasywebdav__Job-Allow-Failure__test,Job-Allow-Failure,,TRUE +CreaTIKZ-groupe4__CreaTIKZ__Versioning__org-glassfish-jersey-archetypes-jersey-quickstart-grizzly2-0-0-1-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-grizzly2-http__missing,Versioning,missing,TRUE +vgavro__godville_bot__Versioning__requirementstxt__pyyaml__missing,Versioning,missing,TRUE +rhab__PyOTRS__Versioning__requirementstxt__deprecation__missing,Versioning,missing,TRUE +rodo__lolyx__Versioning__requirementstxt__launchpadlib__missing,Versioning,missing,TRUE +matthieu-bruneaux__guide-r-rstudio-git-gitlab__Versioning__gitlabyaml__sphinx__missing,Versioning,missing,FALSE +peiyi__from-my-garden__Versioning__requirementstxt__pyodbc__missing,Versioning,missing,TRUE +coala__community__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +hawer-forero__MovilidadAcademica__Versioning__hawer-net-eis-MAc-0-0-1-SNAPSHOT__javax-enterprise-cdi-api__missing,Versioning,missing,TRUE +groovy-lang__101-scripts__Job-Allow-Failure__build-pdf,Job-Allow-Failure,,TRUE +systemsengineers__se01-ansible-testing__Versioning__requirementstxt__python-vagrant__missing,Versioning,missing,TRUE +andrebsguedes__das-caffe-images__Versioning__requirementstxt__django__missing,Versioning,missing,TRUE +expliot_framework__expliot__Job-Allow-Failure__pylint,Job-Allow-Failure,,TRUE +iggdrasil__ishtar__Versioning__requirementstxt__six__any-upper-version,Versioning,any-upper-version,TRUE +robconnolly__mycroft-home-assistant__Versioning__requirementstxt__requests__any-upper-version,Versioning,any-upper-version,TRUE +jensastrup__pyOutlook__Versioning__requirementstxt__python-dateutil__missing,Versioning,missing,TRUE +Workshoft__PackagingTutorial__Versioning__requirementstxt__twine__missing,Versioning,missing,FALSE +districted__media-read-service__Job-Retry__deploy-staging,Job-Retry,,TRUE +zefiris__tenhou-client__Manual-Job__bot,Manual-Job,,TRUE +blendergeek__apps__Job-Retry__connected-22-default-armeabi-v7a,Job-Retry,,TRUE +ParkerMc__bling-edit-exporter__Versioning__requirementstxt__PyQt5__missing,Versioning,missing,TRUE +SchoolOrchestration__libs__microservicetool__Versioning__requirementstxt__Django__any-minor-number,Versioning,any-minor-number,TRUE +pothitos__Python_Pipeline__Job-Allow-Failure__static-analysis,Job-Allow-Failure,,TRUE +flat-galaxy__flattrack__Versioning__requirementstxt__requests__missing,Versioning,missing,TRUE +rubdos__cffipp__Versioning__requirementstxt__libclang-py3__missing,Versioning,missing,TRUE +Gustafsson-lab__lassim__Versioning__requirementstxt__pandas__any-upper-version,Versioning,any-upper-version,TRUE +acrandal__cubsat__Versioning__requirementstxt__smbus__missing,Versioning,missing,TRUE +signal9__conanfiles__Versioning__gitlabyaml__zc-buildout__missing,Versioning,missing,FALSE +dalibo__postgresql_anonymizer__Manual-Job__make9-4,Manual-Job,,TRUE +canarduck__disques__Job-Allow-Failure__pages,Job-Allow-Failure,,TRUE +ase__ase__Versioning__requirementstxt__psycopg2-binary__missing,Versioning,missing,TRUE +fg-radi__osm2city__Versioning__requirementstxt__psycopg2-binary__missing,Versioning,missing,TRUE +brandmateriel__brandmateriel__Versioning__requirementstxt__pyvirtualdisplay__missing,Versioning,missing,TRUE +multicloud-openstack-k8s__app__Job-Allow-Failure__dependency_scanning,Job-Allow-Failure,,TRUE +gitmate__coala-incremental__Versioning__requirementstxt__GitPython__missing,Versioning,missing,TRUE +joshburkart__gpscale__Versioning__requirementstxt__attrs__missing,Versioning,missing,TRUE +ultreiaio__jgit-flow__Manual-Job__snapshot,Manual-Job,,FALSE +cediddi__FG-15_dspec__Versioning__requirementstxt__pillow__missing,Versioning,missing,TRUE +ZEEKOEtech__manateefood__Versioning__requirementstxt__django-bower__missing,Versioning,missing,FALSE +project-meerkat__concierge__Versioning__requirementstxt__git-git---github-com-Pleio-django-oauth-toolkit-eab43c9-egg-django-oauth-toolkit__missing,Versioning,missing,TRUE +YoEight__eventstore-rs__Job-Allow-Failure__Linting,Job-Allow-Failure,,TRUE +magnus-odman__audentes__Versioning__gitlabyaml__twine__missing,Versioning,missing,FALSE diff --git a/datasets/rq2-recall/recall-results.csv b/datasets/rq2-recall/recall-results.csv new file mode 100644 index 0000000..64f4a4f --- /dev/null +++ b/datasets/rq2-recall/recall-results.csv @@ -0,0 +1,92 @@ +repo,category,subcategory,location,manual validation,match with cd-linter,Entity,Reason +https://gitlab.com/clitellum/clitellum,Versioning,No Version,omitted,YES,VALIDATOR,pip3 install pika,outside a job +https://gitlab.com/EAVISE/brambox,Versioning,No Version,omitted,YES,VALIDATOR,pip install numpy,outside a job +https://gitlab.com/EAVISE/brambox,Versioning,No Version,omitted,YES,YES,pip install IPython, +https://gitlab.com/floscher/gradle-josm-plugin,Job-Allow-Failure,,omitted,YES,YES,assemble on java13, +https://gitlab.com/floscher/gradle-josm-plugin,Job-Allow-Failure,,omitted,YES,YES,assemble on java14, +https://gitlab.com/floscher/gradle-josm-plugin,Job-Allow-Failure,,omitted,YES,YES,test on java13, +https://gitlab.com/floscher/gradle-josm-plugin,Job-Allow-Failure,,omitted,YES,YES,test on java14, +https://gitlab.com/floscher/gradle-josm-plugin,Job-Allow-Failure,,omitted,NO,LINTER,demo, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Allow-Failure,,omitted,YES,YES,containerize, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Allow-Failure,,omitted,YES,YES,renovate, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Retry,,omitted,YES,YES,test, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Retry,,omitted,YES,YES,test-all, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Retry,,omitted,YES,YES,test_e2e, +https://gitlab.com/gitlab-org/gitter/webapp,Job-Retry,,omitted,YES,YES,test_e2e_manual, +https://gitlab.com/gitlab-org/gitter/webapp,Manual-Job,,omitted,YES,VALIDATOR,test_e2e_manual,because it has manual in the name +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,QA-Master, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,QA-Tag, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,upgrade, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,license-upload, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,HA-Validate-Tagged, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,AWS-Ultimate, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,AWS, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Allow-Failure,,omitted,YES,YES,AWS-Premium, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,update-knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Docker-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,QA-Master, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Docker-QA, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Docker, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,QA-Tag, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,AWS, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,AWS-Premium, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,AWS-Ultimate, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Centos 6 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Centos 7 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Centos 8 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-6, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-6-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-6-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-6-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-7, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-7-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-7-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-7-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-8, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-8-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-8-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,CentOS-8-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian 10 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian 8 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian 9 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-10, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-10-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-10-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-10-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-8, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-8-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-8-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-8-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-9, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-9-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-9-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Debian-9-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Docker, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,OpenSUSE 15.1 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,OpenSUSE-15.1, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,OpenSUSE-15.1-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,OpenSUSE-15.1-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,OpenSUSE-15.1-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Raspberry-Pi-2-Stretch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Raspberry-Pi-2-Stretch-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Raspberry-Pi-2-Stretch-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,SLES-12, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,SLES-12-branch, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,SLES-12-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,SLES-12-staging, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Ubuntu 16.04 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Ubuntu 18.04 knapsack, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Ubuntu-16.04-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Job-Retry,,omitted,YES,YES,Ubuntu-18.04-release, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,Trigger:measure-memory:, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,Trigger:ha-validate, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,VALIDATOR,Docker-measure-memory,it contains docker in the name +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,upgrade, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,license-upload, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,Trigger:ha-validate, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,Trigger:ce-package, +https://gitlab.com/gitlab-org/omnibus-gitlab,Manual-Job,,omitted,YES,YES,Trigger:ee-package, +https://gitlab.com/MrWildcard/a-nice-app,Versioning,No Version,omitted,YES,YES,pip install awscli,it behaves correctly here (the project was not scheduled for linting) +https://gitlab.com/MrWildcard/a-nice-app,Versioning,No Version,omitted,YES,YES,pip install awscli,it behaves correctly here (the project was not scheduled for linting) +https://gitlab.com/MrWildcard/a-nice-app,Versioning,No Version,omitted,YES,YES,pip install awscli,it behaves correctly here (the project was not scheduled for linting) +https://gitlab.com/rodo/pg_tools,Versioning,No Version,omitted,YES,VALIDATOR,anosql,it's not the txt \ No newline at end of file diff --git a/datasets/rq2-recall/recall-sample.csv b/datasets/rq2-recall/recall-sample.csv new file mode 100644 index 0000000..2bd5656 --- /dev/null +++ b/datasets/rq2-recall/recall-sample.csv @@ -0,0 +1 @@ +project https://gitlab.com/aiakos/dj12 https://gitlab.com/alelec/navdy/android-navdy-client-old https://gitlab.com/amrelk/frcds https://gitlab.com/antora/antora https://gitlab.com/barrel-db/erlang-lru https://gitlab.com/bitingbytes/onion-engine https://gitlab.com/bunnyblue/AndroidSDKMirror https://gitlab.com/caro-sdu/caros https://gitlab.com/cc-wdesign/django-project-boilerplate https://gitlab.com/checkmein2/checkmein2-ui https://gitlab.com/chriseaton/malk-storage https://gitlab.com/clitellum/clitellum https://gitlab.com/ColinKinloch/LatinIME_apk https://gitlab.com/damoebius/codeofwar https://gitlab.com/Danno131313/everyone https://gitlab.com/dark0dave/NBclassifier https://gitlab.com/datadrivendiscovery/images https://gitlab.com/dgmcguire/texas https://gitlab.com/diggan/archiveteam-infra https://gitlab.com/dirn/stonestyle https://gitlab.com/EAVISE/brambox https://gitlab.com/edvorg/spray https://gitlab.com/empurrandojuntos/frontend https://gitlab.com/ercom/android-emulator https://gitlab.com/ercom/citbx4gitlab https://gitlab.com/eschnell/ft_hexdump https://gitlab.com/fiveop/ultimate-drill-cards https://gitlab.com/floscher/gradle-josm-plugin https://gitlab.com/floscher/gradle-josm-plugin https://gitlab.com/floscher/gradle-josm-plugin https://gitlab.com/floscher/gradle-josm-plugin https://gitlab.com/flosscoach/flosscoach https://gitlab.com/frank_ak/formation_PMP https://gitlab.com/frontendne/devs-against-humanity https://gitlab.com/gitlab-examples/kubernetes-deploy https://gitlab.com/gitlab-jp/www-gitlab-jp https://gitlab.com/gitlab-org/async-retrospectives https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gitter/webapp https://gitlab.com/gitlab-org/gl-vue-cli https://gitlab.com/gitlab-org/merge-train https://gitlab.com/gitlab-org/omnibus-gitlab https://gitlab.com/gitlab-pkg/gitlab-gitaly https://gitlab.com/gitmate/open-source/coala-incremental-results https://gitlab.com/Guilhermeb/gitlabdemo https://gitlab.com/harshniketseta/cricket-scorer-ui https://gitlab.com/hiroponz/sample-app https://gitlab.com/hotfury/Multitask https://gitlab.com/i-tre-brutti/terraformer https://gitlab.com/itxtech/genisys https://gitlab.com/jekyll-themes/default-bundler https://gitlab.com/jhasse/jngl https://gitlab.com/leipert-projects/no-thank-you https://gitlab.com/libidn/libidn2 https://gitlab.com/LibraryGenesis/exodus https://gitlab.com/linux-wiiu/linux-loader https://gitlab.com/living-map/frontend-builder https://gitlab.com/LTTaylor/bet https://gitlab.com/LucasLeandroBR/learncode https://gitlab.com/maratkalibek/rf-gitlab https://gitlab.com/MasterProject/MasterProject https://gitlab.com/MasterProject/MasterProject https://gitlab.com/mdraw/predictingdeeper-seminar https://gitlab.com/Mishio595/disml https://gitlab.com/Mizux/cpp-101 https://gitlab.com/MrWildcard/a-nice-app https://gitlab.com/MrWildcard/a-nice-app https://gitlab.com/MrWildcard/a-nice-app https://gitlab.com/multoo/datatable https://gitlab.com/multoo/error-handler https://gitlab.com/murchik/django-smelly-tokens https://gitlab.com/nystrome/sciit https://gitlab.com/openProjects/gitlab-project-issues-with-time-gpit https://gitlab.com/pantacor/pvr https://gitlab.com/paulgibbs/bporg https://gitlab.com/penkit/penkit https://gitlab.com/PPW-2017/ppw-lab-ki https://gitlab.com/precognition-llc/aeonvera https://gitlab.com/precognition-llc/aeonvera-ui https://gitlab.com/prism-break/prism-break https://gitlab.com/pwoolcoc/soup https://gitlab.com/rilis/rili/color https://gitlab.com/rodo/pg_tools https://gitlab.com/rodo/pygcat https://gitlab.com/rootmodels/OpenSimRoot https://gitlab.com/sailfishos-porters-ci/cancro-ci https://gitlab.com/scull7/bs-crud-functors https://gitlab.com/Serenata/Serenata https://gitlab.com/sesela/multi-spring-startup-mybatis https://gitlab.com/sifoo/snigl https://gitlab.com/sigma-web-app/s-container https://gitlab.com/smc/mlmorph https://gitlab.com/smondet/misuja https://gitlab.com/taichunmin/progit2-zh-tw https://gitlab.com/tim-m89/clr-haskell https://gitlab.com/tobyfoord/rancher-cli https://gitlab.com/TollStudios/justanothernetworklib https://gitlab.com/TomasHubelbauer/bloggo-dotnet-core-gitlab-ci https://gitlab.com/trackmyride/TrackMyRide https://gitlab.com/tref/demo-no-ops-lando https://gitlab.com/unduthegun/stellaris-emblem-lab https://gitlab.com/vhschlenker/mensa https://gitlab.com/vinopravin/findmehere https://gitlab.com/VV5/food-security https://gitlab.com/xphnx/icon-request-tool https://gitlab.com/Zatherz/scaleinator \ No newline at end of file diff --git a/datasets/rq3-analysis/dataset_yml-update.csv b/datasets/rq3-analysis/dataset_yml-update.csv new file mode 100644 index 0000000..90873d6 --- /dev/null +++ b/datasets/rq3-analysis/dataset_yml-update.csv @@ -0,0 +1,5218 @@ +project,owner,language,hasYaml,hasRequirements,hasPoms,stages,hasBuildStage,hasTestStage,hasDeployStage,hasCustomDeployStage,yml_size +ModioAB/base-image,ModioAB,Python,true,false,false,3,true,false,true,false,227 +swe-nrb/sbp-begreppslista,swe-nrb,JavaScript,true,false,false,3,true,false,true,false,40 +redmic-project/client/web,redmic-project,JavaScript,true,false,false,5,true,true,false,false,146 +assembl/assembl,assembl,JavaScript,true,false,false,4,true,true,false,false,69 +geometalab/osmybiz,geometalab,JavaScript,true,false,false,4,true,true,true,false,107 +foci-open-source/Foci.OrbitalBus,foci-open-source,C#,true,false,false,6,true,true,true,true,438 +cloudigrade/frontigrade,cloudigrade,JavaScript,true,false,false,5,true,true,true,true,274 +cmc_system/cmc,cmc_system,JavaScript,true,false,false,4,true,true,true,false,161 +PPL2018csui/Kelas-A/Kel-5,PPL2018csui,JavaScript,true,false,false,3,true,true,true,false,43 +sbarthelemy/conan-public-recipes,sbarthelemy,Python,true,false,false,6,true,true,false,false,280 +pleio/pleio,pleio,PHP,true,false,false,3,true,true,true,false,106 +Radiophonix/Radiophonix,Radiophonix,PHP,true,false,false,4,true,true,true,true,330 +mergetb/engine,mergetb,Go,true,false,false,4,true,true,true,false,87 +arturlwwwmods/ArtUrlWWW_MegaMod,arturlwwwmods,Python,true,false,false,1,true,false,false,false,60 +akeinhell/redfoxbot,akeinhell,PHP,true,false,false,3,true,true,true,false,120 +trustable/distros/minimal-distro,trustable,Python,true,false,false,4,true,true,true,false,298 +PPL2017csui/PPLB5,PPL2017csui,JavaScript,true,false,false,3,true,true,true,false,65 +corunahacks/2018/aloha/aloha-front,corunahacks,JavaScript,true,false,false,4,true,true,true,true,59 +PPL2018csui/Kelas-A/Kel-1,PPL2018csui,JavaScript,true,false,false,4,true,true,true,false,85 +masakura/issues,masakura,C#,true,false,false,3,true,true,true,false,199 +jankubierecki/UEKPartnership,jankubierecki,Python,true,true,false,3,true,true,false,false,42 +kimlab/kmbio,kimlab,Python,true,false,false,4,true,true,true,false,193 +kimlab/pagnn,kimlab,Python,true,false,false,5,true,true,true,false,199 +monetha/ico-rating-web,monetha,JavaScript,true,false,false,2,false,false,false,false,33 +hendisantika/siap-diskanlut,hendisantika,JavaScript,true,false,true,2,true,false,true,false,44 +mergetb/site,mergetb,Python,true,false,false,1,true,false,false,false,30 +hotfury/Multitask,hotfury,C#,true,false,false,3,true,false,true,false,64 +openrail/uk/common-nodejs,openrail,JavaScript,true,false,false,3,true,true,true,false,250 +tottokotkd/hinapedia,tottokotkd,JavaScript,true,false,false,4,true,true,true,false,81 +sat-mtl/telepresence/scenic-core,sat-mtl,JavaScript,true,false,false,4,false,true,true,false,59 +harbottle/epypel,harbottle,Ruby,true,false,false,4,true,true,true,false,92 +tabi/tabi-backend,tabi,Go,true,false,false,3,true,true,true,false,152 +francois.travais/1tipi2bicycles,francois.travais,Python,true,false,false,5,true,true,true,false,169 +mrvik/jdrive,mrvik,JavaScript,true,false,false,2,true,true,false,false,107 +Valtech-Amsterdam/MvcHoneyPot,Valtech-Amsterdam,JavaScript,true,false,false,2,true,false,true,false,104 +gl-support/gitlab-support-bot,gl-support,Ruby,true,false,false,3,true,true,true,false,54 +offcourse/ui-components,offcourse,JavaScript,true,false,false,2,true,false,true,false,70 +tedtramonte/TalentedDiscord,tedtramonte,Python,true,false,false,2,true,false,true,false,38 +mergetb/xir,mergetb,Go,true,false,false,1,true,false,false,false,15 +the-spartans/Dashboard,the-spartans,JavaScript,true,false,false,3,true,true,true,false,43 +brd.com/brd.js,brd.com,JavaScript,true,false,false,5,true,true,true,true,112 +htagen/sadarada,htagen,JavaScript,true,false,false,2,true,false,true,false,21 +courcelm/clmsvault,courcelm,JavaScript,true,false,false,1,true,false,false,false,30 +project-meerkat/concierge,project-meerkat,Python,true,true,false,3,true,true,true,false,42 +Sk1f3r/eoxer-web,Sk1f3r,JavaScript,true,false,false,4,true,true,false,false,84 +enterit/rtpomodoro,enterit,JavaScript,true,false,false,2,true,false,true,false,39 +fsfe/fsfe-cd,fsfe,Python,true,false,false,4,true,true,true,false,83 +angular-material-home/apps/amh-elearn,angular-material-home,JavaScript,true,false,false,2,true,false,true,false,45 +cleanunicorn/eth-tipper,cleanunicorn,Go,true,false,false,3,true,true,true,false,63 +uspcodelab/projects/iris/api,uspcodelab,Python,true,true,false,3,true,false,true,true,105 +angular-material-dashboard/apps/my-dashboard,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false,38 +brianwald/gitlab-training-library,brianwald,JavaScript,true,false,false,5,true,true,true,false,120 +angular-material-home/apps/amh-home,angular-material-home,JavaScript,true,false,false,2,true,false,true,false,45 +javi31170/cicd-pipeline-train-schedule-dockerdeploy,javi31170,JavaScript,true,false,false,3,true,false,true,false,143 +mardy/speculo,mardy,C,true,false,false,3,true,true,true,false,45 +mardy/mappero,mardy,C++,true,false,false,2,true,true,false,false,42 +gitlab-org/gollum-lib,gitlab-org,Ruby,true,false,false,1,false,true,false,false,22 +gitlab-org/omniauth-ldap,gitlab-org,Ruby,true,false,false,1,false,true,false,false,12 +multoo/router,multoo,PHP,true,false,false,1,false,true,false,false,15 +agilob/qfakturat,agilob,C++,true,false,false,2,true,true,false,false,26 +adin/guia-documentos-tecnicos,adin,TeX,true,false,false,1,false,true,false,false,25 +rizon/acid,rizon,Python,true,false,false,1,false,true,false,false,13 +mads/Mads.jl,mads,Julia,true,false,false,1,false,true,false,false,55 +multoo/datatable,multoo,PHP,true,false,false,1,false,true,false,false,14 +multoo/twig,multoo,PHP,true,false,false,1,false,true,false,false,7 +ccliu52/my-Awesome-project,ccliu52,,true,false,false,1,true,false,false,false,20 +vindarel/abelujo-website,vindarel,Python,true,true,false,1,false,false,true,false,11 +rolla/xpncms,rolla,PHP,true,false,false,2,true,false,true,false,95 +evol/hercules,evol,C,true,false,false,5,false,true,false,false,742 +warsaw/flufl.lock,warsaw,Python,true,false,false,1,false,true,false,false,3 +suttungdigital/nox-engine,suttungdigital,C++,true,false,false,1,false,true,false,false,45 +cpran/plugin_serialise,cpran,Perl,true,false,false,1,false,true,false,false,17 +joaodarcy/perttool,joaodarcy,Java,true,false,false,1,false,true,false,false,3 +accounts-sso/signon-plugin-oauth2,accounts-sso,C++,true,false,false,3,true,true,true,false,45 +accounts-sso/libsignon-glib,accounts-sso,C,true,false,false,3,true,true,true,false,64 +accounts-sso/gsignond-plugin-oa,accounts-sso,C,true,false,false,3,true,true,true,false,59 +accounts-sso/gsignond-plugin-sasl,accounts-sso,C,true,false,false,3,true,true,true,false,58 +accounts-sso/libgsignon-glib,accounts-sso,C,true,false,false,3,true,true,true,false,58 +uhttpmock/uhttpmock,uhttpmock,C,true,false,false,1,true,false,false,false,24 +indybay/indybay-active,indybay,PHP,true,false,false,1,false,true,false,false,28 +jaming/panicboard,jaming,JavaScript,true,false,false,2,false,true,true,false,35 +radiognu/radiognu-widget-legacy,radiognu,JavaScript,true,false,false,1,false,true,false,false,10 +radiognu/radiognu-widget,radiognu,JavaScript,true,false,false,1,false,false,true,false,14 +jamie_ca/blog.tracefunc.com,jamie_ca,JavaScript,true,false,false,1,false,true,false,false,12 +Tablesaw/Alpaca-Farm,Tablesaw,Ruby,true,false,false,1,false,true,false,false,26 +4144/paranucker,4144,C++,true,false,false,3,true,false,false,false,30 +s4m-chef-repositories/confluent-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false,33 +0X1A/yabs,0X1A,Rust,true,false,false,1,false,true,false,false,6 +oleksandromelchuk/rust-osm-reader,oleksandromelchuk,Rust,true,false,false,1,true,false,false,false,17 +breadmaker/ctmcorp.cl,breadmaker,HTML,true,false,false,1,false,false,true,false,16 +asura/data,asura,,true,false,false,1,false,true,false,false,3 +ilpianista/HostIsDown,ilpianista,Java,true,false,false,2,true,true,false,false,47 +multoo/error-handler,multoo,PHP,true,false,false,1,false,true,false,false,10 +0X1A/rpf,0X1A,Rust,true,false,false,1,false,true,false,false,4 +s4m-chef-repositories/storm-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false,35 +timothyw/lisp,timothyw,C,true,false,false,1,false,true,false,false,8 +bromancer/nodejs-gitlab-bot,bromancer,JavaScript,true,false,false,1,false,true,false,false,5 +iggdrasil/morrigan-ng,iggdrasil,Python,true,true,false,2,true,true,false,false,31 +ICM-VisLab/JSciC,ICM-VisLab,Java,true,false,true,1,false,true,false,false,8 +ICM-VisLab/JLargeArrays,ICM-VisLab,Java,true,false,true,1,false,true,false,false,8 +rodo/pg_tools,rodo,Python,true,false,false,1,false,true,false,false,32 +gbraad/gauth,gbraad,JavaScript,true,false,false,2,true,true,false,false,38 +gitlab-pivotal/gitlab-ee-bosh-release,gitlab-pivotal,HTML,true,false,false,1,false,true,false,false,117 +joaopizani/piware,joaopizani,TeX,true,false,false,1,false,false,true,false,12 +almonsin/fmt11,almonsin,C++,true,false,false,1,false,true,false,false,4 +mahdaen/singclude,mahdaen,JavaScript,true,false,false,1,false,true,false,false,9 +stepwo/catalog-page-generator,stepwo,Java,true,false,true,1,false,true,false,false,8 +mgoral/quicksend,mgoral,Python,true,true,false,1,false,true,false,false,21 +radiognu/PPTLS,radiognu,JavaScript,true,false,false,1,false,false,true,false,16 +htgoebel/OSD-Neo2,htgoebel,Python,true,true,false,1,false,false,true,false,16 +TXCobalt/TXCobalt.Core,TXCobalt,C#,true,false,false,1,false,true,false,false,11 +jbydeley/go-semaphore,jbydeley,Go,true,false,false,1,false,true,false,false,9 +jensj/spelltinkle,jensj,Python,true,false,false,1,false,true,false,false,7 +rodo/pygcat,rodo,Python,true,false,false,2,false,false,false,false,34 +rootcaid/pki-websdk-build,rootcaid,JavaScript,true,false,false,1,false,true,false,false,19 +k-chaney/redteam_sd_repo,k-chaney,C++,true,false,false,3,true,true,false,false,42 +hallison/git-lighttp,hallison,Ruby,true,false,false,1,false,true,false,false,5 +kb/checkout,kb,Python,true,false,false,1,false,true,false,false,8 +BlackEdder/ggplotd,BlackEdder,D,true,false,false,1,false,true,false,false,11 +RyDroid/PlanetWars2dRT-core,RyDroid,C,true,false,false,1,false,false,false,false,65 +kylemanna/nanotest,kylemanna,C,true,false,false,1,false,true,false,false,24 +luizmiranda7/easy-router-app,luizmiranda7,JavaScript,true,false,false,1,false,true,false,false,28 +fast_pixelated_detectors/merlin_interface,fast_pixelated_detectors,Python,true,false,false,2,false,true,true,false,52 +fast_pixelated_detectors/fpd_live_imaging,fast_pixelated_detectors,Python,true,false,false,2,false,true,true,false,63 +juliancarrivick/band-manager-frontend,juliancarrivick,TypeScript,true,false,false,2,false,true,false,false,34 +arose/dokuwiki-userprofile-plugin,arose,PHP,true,false,false,1,false,true,false,false,21 +rbertoncelj/wildfly-singleton-service,rbertoncelj,Java,true,false,true,1,false,true,false,false,3 +ogre3d/clean-project,ogre3d,C++,true,false,false,1,false,true,false,false,11 +hotoo/gitlab-notifications,hotoo,JavaScript,true,false,false,1,false,true,false,false,10 +shashankchakelam/NamoDB,shashankchakelam,Python,true,false,false,4,false,false,false,false,82 +GoatGames/GoatEngine,GoatGames,Java,true,false,false,1,false,true,false,false,16 +aatos/rust-ping,aatos,Rust,true,false,false,1,false,true,false,false,11 +worr/rcstring,worr,Rust,true,false,false,1,false,true,false,false,9 +phunehehe/runix,phunehehe,Nix,true,false,false,1,false,true,false,false,3 +wesleyceraso/linlib,wesleyceraso,C++,true,false,false,1,true,false,false,false,11 +jangorecki/big.data.table,jangorecki,R,true,false,false,1,false,true,false,false,33 +hylcos/InChat,hylcos,C,true,false,false,1,false,true,false,false,6 +wildan-anky/PMPL_Wildan,wildan-anky,Python,true,true,false,1,false,true,false,false,16 +sane-project/ci-envs,sane-project,Makefile,true,false,false,1,true,false,false,false,38 +axil/phantomjs-debian,axil,JavaScript,true,false,false,1,false,true,false,false,11 +wahyuoi/Quiz3,wahyuoi,Python,true,false,false,1,false,true,false,false,5 +fa13/build,fa13,Java,true,false,false,1,true,false,false,false,59 +craigbarnes/tally,craigbarnes,C,true,false,false,1,false,true,false,false,15 +jubianchi/hubot-gitlab-ops,jubianchi,CSS,true,false,false,2,false,false,false,false,23 +sgimeno/angularjs-gulp-browserify-boilerplate,sgimeno,JavaScript,true,false,false,1,false,true,false,false,35 +lummei/libfasta,lummei,C,true,false,false,1,true,false,false,false,13 +sytses/sytses.gitlab.io,sytses,CSS,true,false,false,2,false,true,true,false,28 +cerebralpower/Variance,cerebralpower,Python,true,false,false,1,false,true,false,false,8 +baldurmen/rename-flac,baldurmen,Python,true,false,false,3,true,true,false,false,33 +unplugstudio/mezzy,unplugstudio,Python,true,false,false,1,false,true,false,false,39 +osasto-kuikka/kge,osasto-kuikka,C++,true,false,false,2,false,true,false,true,40 +thelabnyc/ci,thelabnyc,Go,true,false,false,1,false,true,false,false,97 +joaosilva2095/dotfiles,joaosilva2095,Vimscript,true,false,false,1,false,true,false,false,8 +gitlab-com/gitlab-contributors,gitlab-com,Ruby,true,false,false,1,false,true,false,false,42 +signal9/cpp-skeleton,signal9,Meson,true,false,false,2,true,true,false,false,23 +mdsnouck/NodeStartApp,mdsnouck,JavaScript,true,false,false,1,false,true,false,false,6 +mdsnouck/SMSmessageParty,mdsnouck,JavaScript,true,false,false,1,false,true,false,false,6 +nany-lang/nanyc,nany-lang,C++,true,false,false,3,true,false,false,false,116 +gnutls/nettle,gnutls,C,true,false,false,1,false,true,false,false,163 +connorshea/connorshea.gitlab.io,connorshea,CSS,true,false,false,3,true,true,true,false,45 +waylon531/waylos,waylon531,Rust,true,false,false,1,false,true,false,false,7 +twittner/redis-resp,twittner,Haskell,true,false,false,1,false,true,false,false,29 +bindslabteam/projecteyeframe,bindslabteam,Java,true,false,false,1,false,true,false,false,16 +twittner/wai-routing,twittner,Haskell,true,false,false,1,false,true,false,false,25 +Rich-Harris/stacking-order,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false,10 +bgrolleman/puppet,bgrolleman,Puppet,true,false,false,1,false,false,false,false,25 +mayan-edms/cookiecutter-mayan,mayan-edms,Python,true,false,false,1,false,true,false,false,5 +jangorecki/r.pkg.gitlab.ci,jangorecki,R,true,false,false,1,false,true,false,false,20 +jangorecki/dockerfiles,jangorecki,,true,false,false,3,false,true,false,false,53 +agilob/qfiction,agilob,C++,true,false,false,1,false,true,false,false,8 +sorenmat/botbrother,sorenmat,Go,true,false,false,2,true,true,false,false,46 +timrs2998/umd-nlp-question-answering,timrs2998,Perl,true,false,false,1,true,false,false,false,25 +wayless/wayless,wayless,Rust,true,false,false,2,true,true,false,false,44 +wyago/mantra,wyago,C#,true,false,false,1,false,false,true,false,11 +chamilotools/chamilotools,chamilotools,Python,true,true,false,1,false,true,false,false,18 +LukBukkit/XWeb,LukBukkit,Java,true,false,true,1,false,true,false,false,9 +perobertson/requisition,perobertson,Ruby,true,false,false,3,true,true,true,false,137 +perobertson/dotfiles,perobertson,Vimscript,true,false,false,2,false,true,true,false,69 +iyulab/iyulab.gitlab.io,iyulab,CSS,true,false,false,1,false,false,true,false,9 +bmcallis/library-skeleton,bmcallis,JavaScript,true,false,false,1,false,true,false,false,7 +HackerSir/VSDK,HackerSir,PHP,true,false,false,2,false,true,true,false,103 +cabargas/cabargas.gitlab.io,cabargas,JavaScript,true,false,false,1,false,false,true,false,12 +jekyll-themes/carte-noire,jekyll-themes,CSS,true,false,false,1,false,false,true,false,18 +ottonello/gossipDemo,ottonello,Go,true,false,false,1,true,false,false,false,29 +chriseaton/recaptcha,chriseaton,Go,true,false,false,1,true,false,false,false,37 +tem_leonov/FluentMailer,tem_leonov,C#,true,false,false,2,false,true,false,true,55 +VeraKolotyuk/hexo_examples,VeraKolotyuk,CSS,true,false,false,1,false,true,false,false,20 +pages/harp,pages,CSS,true,false,false,1,false,true,false,false,15 +l214/msender,l214,JavaScript,true,false,false,1,false,true,false,false,17 +dgriffen/iron_session,dgriffen,Rust,true,false,false,1,false,true,false,false,9 +frntn/docker-cloud9,frntn,,true,false,false,2,true,true,false,false,18 +cky/emojisweeper,cky,Clojure,true,false,false,1,false,true,false,false,9 +themes-templates/hexo,themes-templates,CSS,true,false,false,2,false,true,true,false,51 +ajm113/pixelHell,ajm113,C,true,false,false,1,false,true,false,false,5 +en15for/gitlabr,en15for,R,true,false,false,5,true,true,false,false,58 +european-data-portal/licensing-assistant,european-data-portal,HTML,true,false,true,1,false,false,true,false,4 +jberkel/digero,jberkel,Java,true,false,false,1,false,true,false,false,9 +pwoolcoc/cmudict,pwoolcoc,Rust,true,false,false,1,false,true,false,false,14 +jasperdenkers/play-scala-heroku-sample-app,jasperdenkers,Scala,true,false,false,2,false,true,true,false,26 +sbatman/Sbatman.Networking,sbatman,C#,true,false,false,2,true,false,false,true,32 +eitelkalk/Recown,eitelkalk,Java,true,false,false,1,false,false,true,false,36 +AngeloStavrow/gitlab-ci-for-ios-projects,AngeloStavrow,Swift,true,false,false,2,true,false,false,false,25 +themes-templates/hyde,themes-templates,HTML,true,false,false,2,false,true,true,false,44 +padouppadoup/paris-agreement,padouppadoup,JavaScript,true,false,false,1,false,false,true,false,11 +tiago.dias/btc-stats,tiago.dias,JavaScript,true,false,false,1,false,false,true,false,9 +pantacor/pantahub-base,pantacor,Go,true,false,false,2,true,false,true,false,100 +ismail-s/cis194-homework,ismail-s,Haskell,true,false,false,1,false,true,false,false,8 +HackLabCormano/hacklabcormano.it,HackLabCormano,TeX,true,false,false,1,false,true,false,false,33 +vikserver/vikserver-backend,vikserver,JavaScript,true,false,false,3,true,true,false,false,136 +twittner/cql,twittner,Haskell,true,false,false,1,false,true,false,false,40 +twittner/tinylog,twittner,Haskell,true,false,false,1,false,true,false,false,30 +melkorm/php-testing,melkorm,PHP,true,false,false,2,false,true,true,false,45 +themes-templates/lektor,themes-templates,HTML,true,false,false,1,false,true,false,false,15 +thelabnyc/instrumented-soap,thelabnyc,Python,true,true,false,1,false,true,false,false,29 +twittner/json-codec,twittner,Rust,true,false,false,2,false,true,true,false,22 +yurb/getmusic,yurb,Python,true,false,false,1,false,true,false,false,6 +thelabnyc/django-oscar/django-oscar-cch,thelabnyc,Python,true,true,false,1,false,true,false,false,65 +buckybox/core,buckybox,Ruby,true,false,false,1,false,true,false,false,31 +bennyp/kupat-givat-hamivtar,bennyp,JavaScript,true,false,false,1,true,false,false,false,26 +jamie_ca/codex,jamie_ca,HTML,true,false,false,1,false,true,false,false,17 +saintcon/SaintCon2016Badge,saintcon,Lua,true,false,false,5,true,true,true,false,143 +d-e/blender-addon-boilerplate,d-e,Python,true,false,false,1,false,true,false,false,8 +barrel/barrel-shopify,barrel,Liquid,true,false,false,2,false,true,true,false,18 +Boelensman1/SpaceS-DB,Boelensman1,JavaScript,true,false,false,3,false,true,false,false,29 +shiplix/shiplix,shiplix,Ruby,true,false,false,2,true,true,false,false,21 +socrates-chile/socrates-chile,socrates-chile,JavaScript,true,false,false,1,false,false,true,false,9 +jadelab/jadegit,jadelab,C++,true,false,false,2,true,false,true,false,79 +pushrocks/smartcli,pushrocks,TypeScript,true,false,false,4,false,true,false,true,125 +chriseaton/malk-storage-file,chriseaton,Go,true,false,false,2,true,true,false,false,70 +chriseaton/malk-storage-sqlite,chriseaton,Go,true,false,false,2,true,true,false,false,78 +ethanfrogers/ethanfrogers.gitlab.io,ethanfrogers,HTML,true,false,false,1,false,true,false,false,15 +fabiocosta0305/fabiocosta0305.gitlab.io,fabiocosta0305,HTML,true,false,false,1,false,false,true,false,30 +cdietrich/xtext-maven-example,cdietrich,Xtend,true,false,false,1,false,true,false,false,9 +pendingchaos/shooty-game,pendingchaos,HTML,true,false,false,1,false,false,true,false,14 +foxnewsnetwork/ember-gitlab-pages,foxnewsnetwork,JavaScript,true,false,false,1,false,true,false,false,10 +ubuntuforhope/ubuntuforhope.org,ubuntuforhope,Python,true,false,false,3,true,false,false,false,60 +carey.pridgeon/Mopfile,carey.pridgeon,C++,true,false,false,1,false,true,false,false,5 +werwurm/ichi_reloaded,werwurm,C,true,false,false,1,true,false,false,false,9 +sunng/sunng.gitlab.io,sunng,HTML,true,false,false,1,false,false,true,false,13 +chriseaton/malk-storage,chriseaton,Go,true,false,false,2,true,true,false,false,72 +Rich-Harris/buble-demo,Rich-Harris,HTML,true,false,false,1,false,true,false,false,8 +thelabnyc/django-exact-target,thelabnyc,Python,true,false,false,1,false,true,false,false,39 +apetitbois/electron-polymer,apetitbois,HTML,true,false,false,1,true,false,false,false,17 +jxml/JXML,jxml,Java,true,false,false,1,false,true,false,false,6 +relan/elektrichki,relan,Java,true,false,false,1,false,true,false,false,26 +ymorin/buildroot,ymorin,Makefile,true,false,false,1,false,true,false,false,502 +zloster/zloster.gitlab.io,zloster,CSS,true,false,false,1,false,false,true,false,16 +aniemsh/aniemsh.gitlab.io,aniemsh,HTML,true,false,false,1,false,true,false,false,12 +pendingchaos/Celery,pendingchaos,C,true,false,false,1,false,false,true,false,14 +YerkoPalma/YerkoPalma.gitlab.io,YerkoPalma,JavaScript,true,false,false,1,false,false,true,false,11 +DarkDNA/gentoo-overlay,DarkDNA,Shell,true,false,false,1,false,true,false,false,8 +bconway/go-resteasy,bconway,Ruby,true,false,false,1,false,true,false,false,19 +anspress/anspress,anspress,PHP,true,false,false,1,false,true,false,false,45 +maratkalibek/rf-gitlab,maratkalibek,RobotFramework,true,false,false,1,false,true,false,false,11 +phunehehe/foomail,phunehehe,JavaScript,true,false,false,1,false,true,false,false,12 +xuv/git-visualization-for-designers,xuv,HTML,true,false,false,1,false,true,false,false,10 +dvd0101/amaze-chemaze,dvd0101,C,true,false,false,2,true,true,false,false,28 +ercom/codebeautifier,ercom,Shell,true,false,false,2,true,true,false,false,83 +htfy96/network_algo,htfy96,C++,true,false,false,1,false,true,false,false,12 +gregwinn/ystock,gregwinn,Ruby,true,false,false,1,false,true,false,false,17 +benoitldr/cours-maths-blandrieu,benoitldr,TeX,true,false,false,1,false,true,false,false,11 +tnir/centos-for-ci,tnir,,true,false,false,1,false,true,false,false,36 +thelabnyc/django-oscar/django-oscar-bluelight,thelabnyc,Python,true,false,false,1,false,true,false,false,84 +michael.lill/foodcoop,michael.lill,TypeScript,true,false,false,1,false,true,false,false,13 +s2u/s2u-firewall,s2u,PHP,true,false,false,1,false,false,true,false,13 +build-docker-images/odoo-docker-builder,build-docker-images,Shell,true,false,false,1,false,false,false,false,29 +exarh-team/skaro-qml,exarh-team,C++,true,false,false,1,false,false,true,false,7 +smart-city-platform/resource-adaptor,smart-city-platform,Ruby,true,false,false,1,false,true,false,false,41 +sqlobject/sqlobject.gitlab.io,sqlobject,HTML,true,false,false,1,false,false,true,false,11 +GustavoARod/bank-demo,GustavoARod,Java,true,false,true,1,false,true,false,false,6 +minzhang/gitci_test,minzhang,,true,false,false,3,true,true,false,false,33 +Gluttton/PslRK,Gluttton,C++,true,false,false,12,false,false,false,false,145 +smart-city-platform/resources-catalog,smart-city-platform,Ruby,true,false,false,1,false,true,false,false,13 +duncan-bayne/toy-robot,duncan-bayne,Ruby,true,false,false,1,false,true,false,false,8 +unq-ing-laannn/qflix,unq-ing-laannn,Ruby,true,false,false,1,false,true,false,false,14 +SouWilliams/docker-gitlab,SouWilliams,Shell,true,false,false,1,false,true,false,false,5 +pallavagarwal07/pallavagarwal07.gitlab.io,pallavagarwal07,HTML,true,false,false,1,false,false,true,false,14 +bchevalier/gitutils,bchevalier,Shell,true,false,false,2,false,true,true,false,47 +cage1016/gae-flask,cage1016,Python,true,true,false,2,false,true,true,false,23 +jimakker/appkg,jimakker,JavaScript,true,false,false,1,false,true,false,false,12 +victorhck/git_chuleta_comandos,victorhck,JavaScript,true,false,false,1,false,true,false,false,10 +mobilinepl/fedoraprovisioning,mobilinepl,Shell,true,false,false,1,false,true,false,false,20 +eternalconstruct/analyst,eternalconstruct,Swift,true,false,false,1,true,false,false,false,13 +sycom/sycom.gitlab.io,sycom,HTML,true,false,false,1,false,false,true,false,11 +courses-online/materialize,courses-online,HTML,true,false,false,1,false,true,false,false,10 +Boelensman1/SpaceS-DB-Frontend,Boelensman1,JavaScript,true,false,false,3,true,true,false,false,32 +Zatherz/minifs,Zatherz,MoonScript,true,false,false,1,false,false,true,false,10 +infmagic2047/minetest-lexip16,infmagic2047,Python,true,false,false,1,false,true,false,false,10 +orobardet/3DPTools,orobardet,HTML,true,false,false,2,true,false,false,false,162 +SpaceTrucker/modular-spring-contexts,SpaceTrucker,Java,true,false,true,1,false,true,false,false,8 +brenddongontijo/SMI-UnB,brenddongontijo,Python,true,true,false,1,false,true,false,false,18 +pank/org-mode-gitlab-pages,pank,EmacsLisp,true,false,false,1,false,true,false,false,8 +thelabnyc/django-oscar/django-oscar-wfrs,thelabnyc,Python,true,true,false,1,false,true,false,false,65 +seanclayton/neato,seanclayton,JavaScript,true,false,false,2,true,true,false,false,35 +tsgkdt/sphinx-plantuml,tsgkdt,Python,true,true,false,1,true,false,false,false,16 +drdaeman/firesync,drdaeman,Python,true,true,false,2,true,false,false,true,36 +burke-software/simple-asymmetric-python,burke-software,Python,true,true,false,1,false,true,false,false,8 +OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false,155 +welcheb/docker_slides2txt,welcheb,Shell,true,false,false,2,true,true,false,false,34 +dromi/dromi,dromi,Go,true,false,false,2,true,true,false,false,23 +dragonislands/web,dragonislands,HTML,true,false,false,1,false,false,true,false,13 +coala/coala-bear-management,coala,Python,true,true,false,1,false,true,false,false,11 +jangorecki/macrobenchmark,jangorecki,R,true,false,false,2,false,true,true,false,34 +jmabey/docker-sqitch,jmabey,Makefile,true,false,false,1,true,false,false,false,29 +docker-tor/tor-browser,docker-tor,Shell,true,false,false,1,true,false,false,false,16 +jensastrup/pyOutlook,jensastrup,Python,true,true,false,1,false,false,false,false,29 +sycom/userScripts,sycom,JavaScript,true,false,false,1,false,false,true,false,11 +kaliko/mkdocs-cluster,kaliko,HTML,true,false,false,1,false,true,false,false,20 +xinef/brainy-config-frontend,xinef,JavaScript,true,false,false,1,false,true,false,false,15 +lechuckcaptain/discount-ascii-warehouse,lechuckcaptain,Java,true,false,false,1,false,true,false,false,33 +chubbssolutions/hnbot,chubbssolutions,Go,true,false,false,1,false,false,false,false,34 +improbible/improbible,improbible,JavaScript,true,false,false,1,false,false,false,false,49 +xinef/brainy-config-backend-java,xinef,Java,true,false,false,1,false,true,false,false,5 +dockdogs/dockdogs-affiliate-handbook,dockdogs,JavaScript,true,false,false,1,false,true,false,false,12 +jzelner/hotspotr,jzelner,CSS,true,false,false,2,true,false,true,false,24 +dlozeve/dlozeve.gitlab.io,dlozeve,CSS,true,false,false,1,false,true,false,false,10 +ananthurv/finite-automaton,ananthurv,JavaScript,true,false,false,1,false,true,false,false,6 +bnc9/map-publish,bnc9,JavaScript,true,false,false,1,false,true,false,false,10 +attila.farago.hu/EV3TreeVisualizer,attila.farago.hu,C#,true,false,false,3,true,true,true,false,53 +csfalcao/gitlabsite,csfalcao,JavaScript,true,false,false,1,false,false,true,false,11 +heatray/innovation,heatray,CSS,true,false,false,1,false,false,true,false,14 +IPMsim/Virtual-IPM,IPMsim,Python,true,true,false,1,false,false,true,false,25 +brett.timperman/ab-reference,brett.timperman,Shell,true,false,false,2,true,false,true,false,30 +4geit/blog,4geit,JavaScript,true,false,false,2,false,true,true,false,28 +samba/webapptitude,samba,Python,true,true,false,4,false,true,true,false,76 +nkovacs/docker_test,nkovacs,,true,false,false,1,false,true,false,false,15 +gitlab-examples/lfs,gitlab-examples,,true,false,false,1,false,true,false,false,16 +barkerja/Hal,barkerja,Ruby,true,false,false,1,false,true,false,false,12 +bahmutov/cypress-example-kitchensink,bahmutov,HTML,true,false,false,2,true,true,false,false,106 +joaoevangelista/fireplace,joaoevangelista,Ruby,true,false,false,3,false,true,false,false,49 +adrian.io/wsdemo,adrian.io,JavaScript,true,false,true,1,false,true,false,false,10 +wikiti-random-stuff/jquery-paginate,wikiti-random-stuff,HTML,true,false,false,1,false,true,false,false,11 +simonbreiter/node-text-adventure-engine,simonbreiter,JavaScript,true,false,false,1,false,true,false,false,10 +unduthegun/stellaris-emblem-lab,unduthegun,CommonWorkflowLanguage,true,false,false,1,false,true,false,false,15 +tfSheol/Omegle-Client,tfSheol,Java,true,false,true,1,false,true,false,false,10 +4geit/domains,4geit,JavaScript,true,false,false,1,false,false,true,false,21 +starke/domains,starke,JavaScript,true,false,false,1,false,false,true,false,21 +victorhck/GNU-Linux_clock,victorhck,CSS,true,false,false,1,false,true,false,false,10 +voj-tech/vtcompose,voj-tech,PHP,true,false,false,1,true,false,false,false,26 +gbraad/openstack-client,gbraad,Shell,true,false,false,1,false,true,false,false,43 +mfgames-writing/mfgames-writing-format-js,mfgames-writing,TypeScript,true,false,false,1,false,false,false,true,22 +hsafoundation-spb/HSAIL-Tools,hsafoundation-spb,C++,true,false,false,1,false,true,false,false,73 +xinef/brainy-web-frontend,xinef,JavaScript,true,false,false,2,true,false,false,false,33 +richizo/ichizo.me,richizo,JavaScript,true,false,false,2,false,true,true,false,23 +rh-kernel-stqe/python-libsan,rh-kernel-stqe,Python,true,false,false,2,false,true,true,false,59 +gbraad/byo-atomic-fedora,gbraad,Shell,true,false,false,1,false,true,false,false,11 +gbraad/c9ide,gbraad,Shell,true,false,false,2,true,false,false,false,62 +kermit-js/kermit-js.gitlab.io,kermit-js,HTML,true,false,false,1,false,true,false,false,10 +laescalera/twister-jekyll-theme,laescalera,HTML,true,false,false,2,false,true,true,false,25 +janslow/gitlab-swagger-client,janslow,TypeScript,true,false,false,4,true,true,false,true,77 +ngthorg/graphql-demo,ngthorg,JavaScript,true,false,false,1,false,true,false,false,15 +bogaert/alpine-lftp,bogaert,,true,false,false,1,true,false,false,false,31 +jpahullo/php-project,jpahullo,PHP,true,false,false,1,false,true,false,false,23 +ajclarke/neo-fighting-dojo,ajclarke,C++,true,false,false,2,true,true,false,false,42 +Mumba/node-config,Mumba,TypeScript,true,false,false,1,false,true,false,false,7 +Mumba/node-config-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false,7 +Mumba/node-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false,7 +AnnaDodson/annadodson,AnnaDodson,CSS,true,false,false,1,false,true,false,false,13 +victorhck/guia_openSUSE,victorhck,HTML,true,false,false,1,false,true,false,false,10 +universe6/selfstudythai,universe6,JavaScript,true,false,false,1,false,true,false,false,14 +nkovacs/docker-builder,nkovacs,Shell,true,false,false,1,false,true,false,false,11 +wayanjimmy/wayanjimmy.gitlab.io,wayanjimmy,CSS,true,false,false,1,false,true,false,false,14 +lightningwolf/lightningwolf-sds,lightningwolf,Python,true,false,false,5,false,true,false,false,110 +gggauravgandhi/preeminence-website,gggauravgandhi,HTML,true,false,false,1,false,false,true,false,13 +honma.shun/sample-app,honma.shun,Ruby,true,false,false,1,false,true,false,false,21 +gitlab-examples/manual-actions,gitlab-examples,,true,false,false,1,false,true,false,false,23 +wurssb/NG-Tax,wurssb,Java,true,false,false,1,false,false,false,false,84 +thinkking/thinkking.gitlab.io,thinkking,CSS,true,false,false,1,false,true,false,false,20 +cleto/accli,cleto,Python,true,false,false,1,false,true,false,false,7 +ChangjunZhao/helloworld_goweb,ChangjunZhao,Go,true,false,false,1,false,true,false,false,3 +saasdm/angular-saasdm,saasdm,JavaScript,true,false,false,1,false,true,false,false,15 +jasperdenkers/lunatech-demo-ci-scala-sbt,jasperdenkers,Scala,true,false,false,1,false,true,false,false,23 +jasperdenkers/lunatech-demo-cd-play-scala-heroku,jasperdenkers,Scala,true,false,false,2,false,true,true,false,34 +Mumba/node-microservice-vault,Mumba,TypeScript,true,false,false,1,false,true,false,false,10 +wulingying/wulingying.gitlab.io,wulingying,JavaScript,true,false,false,1,false,false,true,false,8 +iladin/dotfiles,iladin,Shell,true,false,false,1,false,true,false,false,24 +systent/dj_auth,systent,Python,true,true,false,1,false,true,false,false,16 +nikhiljha/Gradebook,nikhiljha,Java,true,false,false,1,false,true,false,false,27 +andrewbanchich/highlights-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,14 +andrewbanchich/future-imperfect-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false,23 +andrewbanchich/strata-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false,23 +andrewbanchich/lens-jekyll-theme,andrewbanchich,CSS,true,false,false,1,false,false,true,false,14 +fiveop/ultimate-drill-cards,fiveop,TeX,true,false,false,1,true,false,false,false,10 +davidwiggins3/visiting-route-planner,davidwiggins3,Java,true,false,false,1,false,true,false,false,6 +lexxyfox/TCSGE_H5,lexxyfox,LiveScript,true,false,false,1,false,true,false,false,13 +brianstarke/go-beget,brianstarke,Go,true,false,false,1,false,true,false,false,13 +markpundsack/velociraptor,markpundsack,HTML,true,false,false,3,true,true,false,true,109 +tfSheol/Gitlab-Builds-updater,tfSheol,Java,true,false,true,1,false,true,false,false,10 +blue-media/online-payments-php,blue-media,PHP,true,false,false,1,false,true,false,false,120 +deckar01/xterm-display,deckar01,JavaScript,true,false,false,1,false,true,false,false,7 +Rich-Harris/pathologist-demo,Rich-Harris,HTML,true,false,false,1,false,true,false,false,8 +gbraad/blog,gbraad,Makefile,true,false,false,2,true,false,false,true,43 +aldgagnon/betterWMU,aldgagnon,JavaScript,true,false,false,3,true,true,true,false,51 +haeqs/haeqs.gitlab.io,haeqs,HTML,true,false,false,1,false,true,false,false,11 +waylon531/merkle-rs,waylon531,Rust,true,false,false,3,true,true,true,false,24 +AGausmann/samurai,AGausmann,Java,true,false,true,3,true,true,true,false,24 +my-application.bjoernbartels.earth/ZfcUser,my-application.bjoernbartels.earth,PHP,true,false,false,1,false,true,false,false,36 +barrel-db/erlang-lru,barrel-db,Erlang,true,false,false,1,false,true,false,false,6 +buckybox/buckybox-api-ruby,buckybox,Ruby,true,false,false,1,false,true,false,false,20 +akrisiun/Folder,akrisiun,C#,true,false,false,1,true,false,false,false,8 +vnphp/geocoder-bundle,vnphp,PHP,true,false,false,1,false,true,false,false,31 +sgj/platform,sgj,Python,true,true,false,1,false,true,false,false,35 +wurssb/ngtax,wurssb,HTML,true,false,false,1,false,true,false,false,21 +martynbristow/gabbi,martynbristow,Python,true,true,false,2,false,true,false,false,148 +idlemoor/idlemoor.gitlab.io,idlemoor,HTML,true,false,false,2,false,true,true,false,23 +baldvinth/eve.singlesignon,baldvinth,C#,true,false,false,2,true,false,false,false,33 +Adam-/jircd,Adam-,Java,true,false,true,1,false,true,false,false,5 +scrambledrk/huntsman,scrambledrk,Haxe,true,false,false,1,true,false,false,false,10 +davabe/aged,davabe,Ruby,true,false,false,5,true,true,true,true,85 +jangorecki/pkg-openCRAN,jangorecki,R,true,false,false,2,false,true,true,false,62 +vnphp/fragment-bundle,vnphp,PHP,true,false,false,2,false,true,true,false,41 +sukalde/sukalde.gitlab.io,sukalde,HTML,true,false,false,1,false,true,false,false,15 +ttd/ttd.gitlab.io,ttd,HTML,true,false,false,1,false,false,true,false,11 +barraponto/barraponto.gitlab.io,barraponto,CSS,true,false,false,1,false,false,true,false,18 +mallgroup/mpapi-client,mallgroup,PHP,true,false,false,1,false,false,false,false,15 +sommd/multimedia-majorwork,sommd,CSS,true,false,false,1,false,false,true,false,13 +Plague_Doctor/plague-nvim,Plague_Doctor,Vimscript,true,false,false,1,false,true,false,false,8 +villagedefrance/OpenCart-Overclocked,villagedefrance,PHP,true,false,false,1,false,true,false,false,4 +AdamSimpson/cuda_mpi_benchmark,AdamSimpson,C++,true,false,false,1,false,true,false,false,5 +bahmutov/batched-semantic-release,bahmutov,,true,false,false,2,false,true,true,false,30 +sirile/go-image-test,sirile,Go,true,false,false,1,true,false,false,false,17 +sf-byte-days/sms2bot,sf-byte-days,Java,true,false,true,1,false,true,false,false,13 +thangngoc89/dnh-cpp,thangngoc89,JavaScript,true,false,false,2,false,true,true,false,31 +unifi-f4w/oauth2-checker,unifi-f4w,Ruby,true,false,false,1,false,true,false,false,11 +karlmarx80/palarust,karlmarx80,Rust,true,false,false,1,false,true,false,false,24 +SnareChops/notator.online,SnareChops,TypeScript,true,false,false,1,false,true,false,false,10 +sverweij/state-machine-cat,sverweij,JavaScript,true,false,false,1,false,true,false,false,54 +libereco/fsmk-web-build,libereco,HTML,true,false,false,2,false,true,true,false,23 +lobaro/firefly-go,lobaro,Go,true,false,false,2,true,false,false,false,37 +melihovv/petri-dish,melihovv,Java,true,false,false,2,true,true,false,false,32 +gbraad/blog-content,gbraad,Shell,true,false,false,2,true,false,true,false,36 +webarch/webarch-status,webarch,HTML,true,false,false,1,false,false,true,false,14 +Zatherz/robot,Zatherz,Crystal,true,false,false,1,false,true,false,false,12 +icalF/node-dashboard,icalF,JavaScript,true,false,false,1,false,true,false,false,17 +vnphp/calendar,vnphp,PHP,true,false,false,1,false,true,false,false,23 +fcv/hello-spring-rest-service,fcv,Java,true,false,true,2,true,true,false,false,34 +lambdait/slack-vk-bot,lambdait,Python,true,true,false,2,true,true,false,false,33 +rubygems/instagram-ripper,rubygems,Ruby,true,false,false,1,false,true,false,false,22 +abhi18av/ToDo.abhi18av.gitlab.io,abhi18av,HTML,true,false,false,2,false,true,true,false,54 +DublinAnime/dublinanime.ie,DublinAnime,CSS,true,false,false,1,false,false,true,false,11 +sivsushruth/barrel,sivsushruth,Erlang,true,false,false,1,false,true,false,false,11 +fweber-de/docker-php,fweber-de,Shell,true,false,false,1,true,false,false,false,23 +dblel/adioh,dblel,Ruby,true,false,false,1,false,true,false,false,11 +craftsmen/spock-example,craftsmen,Groovy,true,false,true,2,true,true,false,false,101 +painless-software/painless-continuous-delivery,painless-software,PHP,true,false,false,3,false,true,true,false,67 +getmetorajesh/BakeryChallenge,getmetorajesh,Scala,true,false,false,1,false,true,false,false,13 +gitlab-cookbooks/gitlab-chef-util,gitlab-cookbooks,Ruby,true,false,false,1,false,true,false,false,11 +Mizux/android-101,Mizux,Shell,true,false,false,2,true,true,false,false,17 +derobert/CueISRC,derobert,Perl,true,false,false,2,false,true,true,false,110 +qaclana/www.qaclana.io,qaclana,CSS,true,false,false,1,false,false,true,false,19 +SaiAshirwadInformatia/Labs/Jekyll-Creative,SaiAshirwadInformatia,HTML,true,false,false,3,false,true,true,true,54 +thesecretmaster/atd,thesecretmaster,Ruby,true,false,false,1,false,true,false,false,86 +HyphanBot/HyphanBot,HyphanBot,Python,true,true,false,1,false,true,false,false,13 +perlstalker/octopress-deploy,perlstalker,Ruby,true,false,false,2,true,false,false,true,34 +duelinmarkers/steel-cent,duelinmarkers,Rust,true,false,false,2,false,true,true,false,34 +rubdos/pyreflink,rubdos,Python,true,true,false,4,false,true,true,false,84 +Animarathon/animarathon.gitlab.io,Animarathon,HTML,true,false,false,1,false,false,true,false,22 +ayufan/docker-networking,ayufan,HTML,true,false,false,1,false,true,false,false,9 +deubeuliou/parameter-framework,deubeuliou,C++,true,false,false,1,true,false,false,false,52 +brendanjerwin/testing-elm-serverless,brendanjerwin,Elm,true,false,false,2,true,true,false,false,53 +fossht/asic_tools,fossht,Python,true,false,false,2,false,true,false,true,105 +ixilon/nukkit-docker,ixilon,Java,true,false,false,2,true,false,false,false,118 +dekzitfz/GitlabCIExample,dekzitfz,Java,true,false,false,1,false,true,false,false,23 +paddatrapper/ansible,paddatrapper,Shell,true,false,false,2,false,true,true,false,37 +librespacefoundation/lsf-org,librespacefoundation,,true,false,false,2,true,false,true,false,25 +kfrz/ticketbuster,kfrz,Ruby,true,false,false,1,false,true,false,false,44 +jamietanna/jvt.me,jamietanna,CSS,true,false,false,3,true,false,false,true,104 +stefan-it/array_hash_map,stefan-it,C++,true,false,false,1,false,true,false,false,84 +skanur/ubench_rust,skanur,Rust,true,false,false,3,true,true,true,false,234 +mario-kart-analyzer/datacollector,mario-kart-analyzer,Python,true,true,false,1,false,true,false,false,6 +twiceyuan/twiceyuan.gitlab.io,twiceyuan,CSS,true,false,false,1,false,true,false,false,17 +eamon.woortman/unity3d-unit-testing-example,eamon.woortman,C#,true,false,false,1,true,false,false,false,38 +skydavid/RF1-Webshop,skydavid,PHP,true,false,false,1,false,true,false,false,14 +benoitc/openkvs,benoitc,Erlang,true,false,false,1,false,true,false,false,11 +gitlab-org/gitlab-markup,gitlab-org,Ruby,true,false,false,1,false,true,false,false,26 +agfranco19/tsb-tpi-vocabulary,agfranco19,Java,true,false,false,2,true,true,false,false,35 +s4m-gems/maven-cli,s4m-gems,Ruby,true,false,false,2,false,true,true,false,44 +spice/spice-space-pages,spice,,true,false,false,2,false,true,true,false,17 +foodsharing-dev/foodsharing-android-legacy,foodsharing-dev,JavaScript,true,false,false,1,true,false,false,false,22 +Edistra/tactic-arena,Edistra,TypeScript,true,false,false,2,true,false,true,false,45 +bagga.atul/myproject,bagga.atul,,true,false,false,2,true,true,false,false,27 +cprecioso/pipify,cprecioso,TypeScript,true,false,false,1,false,true,false,false,17 +milton.bose/scallops,milton.bose,Scala,true,false,false,1,false,true,false,false,12 +siasar-project/data,siasar-project,JavaScript,true,false,false,2,true,false,false,false,51 +sycom/TiddlyWiki-Plugins,sycom,JavaScript,true,false,false,1,false,true,false,false,19 +michaeljdeeb/michaeljdeeb.gitlab.io,michaeljdeeb,CSS,true,false,false,1,false,true,false,false,14 +oskopek/TransportEditor,oskopek,Java,true,false,true,3,true,true,true,false,132 +living-map/frontend-builder,living-map,Shell,true,false,false,1,false,true,false,false,11 +karlson2k/libmicrohttpd,karlson2k,C,true,false,false,1,false,true,false,false,124 +rilis/docker-ci,rilis,Shell,true,false,false,2,true,false,false,true,30 +HaydenSD/kcdsredstone,HaydenSD,,true,false,false,1,false,false,true,false,12 +fresheyeball/Shpadoinkle,fresheyeball,PureScript,true,false,false,2,true,true,false,false,35 +vnphp/fineproxy,vnphp,PHP,true,false,false,2,false,true,true,false,32 +CIAvash/MovieInfo,CIAvash,Elm,true,false,false,1,false,true,false,false,13 +jahanjoo/jahanjoo-angular-search-example,jahanjoo,JavaScript,true,false,false,1,false,true,false,false,15 +adn-latex/adnamc,adn-latex,TeX,true,false,false,1,false,true,false,false,16 +bagage/colorlog,bagage,C++,true,false,false,2,true,true,false,false,29 +nehemie/rkeos,nehemie,R,true,false,false,1,false,true,false,false,36 +Legiew/osoms,Legiew,TypeScript,true,false,false,1,false,true,false,false,12 +stiemannkj1/stiemannkj1.gitlab.io,stiemannkj1,CSS,true,false,false,1,false,false,true,false,20 +arsouyes/bookmaker,arsouyes,Makefile,true,false,false,2,true,true,false,false,30 +barrel-db/teleport,barrel-db,Erlang,true,false,false,1,false,true,false,false,6 +gitlab-com/githost-runbooks,gitlab-com,,true,false,false,1,false,true,false,false,4 +johnnyzz/pharo-nos-build,johnnyzz,,true,false,false,1,true,false,false,false,43 +craigbarnes/ltcn,craigbarnes,Lua,true,false,false,1,false,true,false,false,4 +signal9/cpp-env,signal9,Shell,true,false,false,1,true,false,false,false,12 +thogg4/terraform-ruby,thogg4,Ruby,true,false,false,1,false,true,false,false,10 +kohoutovice/Sirius,kohoutovice,C++,true,false,false,3,true,false,true,true,277 +mdaffin/mdaffin.gitlab.io,mdaffin,HTML,true,false,false,1,false,true,false,false,25 +hft_stuttgart_swp2_ws2016/Server,hft_stuttgart_swp2_ws2016,Java,true,false,true,3,true,true,true,false,56 +rubdos/texlive-vub,rubdos,PostScript,true,false,false,1,false,true,false,false,20 +craigbarnes/dockerfiles,craigbarnes,Shell,true,false,false,1,true,false,false,false,22 +librehealth/librehealth.io,librehealth,CSS,true,false,false,1,false,true,false,false,19 +spice/spice-common,spice,C,true,false,false,1,false,true,false,false,18 +finding-ray/proto,finding-ray,Python,true,true,false,1,false,false,false,false,27 +commonshost/core,commonshost,JavaScript,true,false,false,1,false,true,false,false,17 +adi90x/rancher-gen-rap,adi90x,Go,true,false,false,2,true,false,true,false,30 +BluemlJ/GSAT,BluemlJ,HTML,true,false,false,3,true,true,false,false,53 +LostRedSky/utils,LostRedSky,CMake,true,false,false,2,true,true,false,false,114 +aelita/docker-docker-compose,aelita,,true,false,false,3,true,true,false,false,30 +zetok/disk_io,zetok,Rust,true,false,false,1,false,true,false,false,34 +sebdeckers/base-emoji-512,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,7 +hadesrofl/Jimmey,hadesrofl,Java,true,false,true,2,true,true,false,false,27 +evanstoner/kudzu,evanstoner,Java,true,false,true,2,true,true,false,false,19 +thoelken/astarget,thoelken,PHP,true,false,false,1,false,true,false,false,27 +mmosconi/mediawiki,mmosconi,,true,false,false,1,true,false,false,false,14 +ubpaxum/sql-drus,ubpaxum,Java,true,false,false,2,true,true,false,false,48 +kylehqcom/goapi,kylehqcom,Go,true,false,false,1,false,true,false,false,8 +OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false,135 +nozzleman101/electron-boilerplate,nozzleman101,JavaScript,true,false,false,2,false,true,false,false,67 +kargathia/PRC_Sluice,kargathia,C++,true,false,false,1,true,false,false,false,22 +roddhjav/roddhjav.gitlab.io,roddhjav,HTML,true,false,false,1,false,true,false,false,21 +sebdeckers/cache-digest-immutable,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,10 +robigalia/sel4,robigalia,Makefile,true,false,false,1,false,true,false,false,15 +taciturn-pachyderm/knights-of-something-notable,taciturn-pachyderm,Java,true,false,false,2,true,true,false,false,42 +trustable/trustable.gitlab.io,trustable,CSS,true,false,false,1,false,true,false,false,22 +garantiertnicht/MobTest,garantiertnicht,Java,true,false,false,1,true,false,false,false,34 +vnphp/request-logger-bundle,vnphp,PHP,true,false,false,2,false,true,true,false,43 +bradanlane/ros-i2cpwmboard,bradanlane,C++,true,false,false,1,false,false,true,false,11 +vnphp/presenter-bundle,vnphp,PHP,true,false,false,2,false,true,true,false,43 +andrewbanchich/editorial-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,17 +seeqlabs/api-python,seeqlabs,Python,true,false,false,1,false,true,false,false,46 +vnphp/media-extension-bundle,vnphp,PHP,true,false,false,2,false,true,true,false,43 +srrg-software/srrg_nw_calibration,srrg-software,C++,true,false,false,2,true,true,false,false,38 +Guilhermeb/gitlabdemo,Guilhermeb,Python,true,false,false,1,true,false,false,false,8 +OpenMusicKontrollers/midi_matrix.lv2,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false,115 +dariom/lbdm,dariom,C,true,false,false,5,false,false,false,false,343 +equake/aws-spot-fleet-helper,equake,Python,true,true,false,1,false,true,false,false,10 +NTPsec/blog,NTPsec,CSS,true,false,false,3,true,true,true,false,34 +janslow/ci-build-version,janslow,TypeScript,true,false,false,2,false,true,true,false,73 +coderlex/beauty-of-lake,coderlex,HTML,true,false,false,1,false,false,true,false,21 +andrewbanchich/dimension-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,14 +Fodoj/packt-terraform-book,Fodoj,HCL,true,false,false,2,false,true,true,false,22 +wanderlandtravelers/wanderlandtravelers.gitlab.io,wanderlandtravelers,JavaScript,true,false,false,1,false,true,false,false,12 +knocte/fsx,knocte,F#,true,false,false,4,false,true,false,false,82 +fitzinger/formation-python,fitzinger,JupyterNotebook,true,false,false,1,false,true,false,false,14 +Lunar.Lopez/test-project-01,Lunar.Lopez,Shell,true,false,false,1,false,true,false,false,10 +transportengineering/radixtree,transportengineering,Haskell,true,false,false,1,false,true,false,false,10 +phyks/weboob,phyks,Python,true,false,false,3,true,true,true,false,27 +ruby-a-la-cluj/smart-badge,ruby-a-la-cluj,,true,false,false,1,false,true,false,false,55 +emojido/emojido,emojido,Java,true,false,false,2,false,true,true,false,40 +naortega/Indivisible,naortega,C,false,false,false,0,false,false,false,false,1 +riggeddice/rpg,riggeddice,JupyterNotebook,true,false,false,2,false,true,true,false,24 +markpundsack/rails-on-heroku-via-docker,markpundsack,Ruby,true,false,false,4,true,false,false,true,120 +csaron92/poker-player-silly-gray-wolf,csaron92,C#,true,false,false,1,false,true,false,false,4 +yashdsaraf/mm-project,yashdsaraf,JavaScript,true,false,false,1,true,false,false,false,22 +gitlab-org/eclipse-gitlab-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false,31 +sebdeckers/babel-plugin-transform-string-literal-replace,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,14 +infertux/easy-login,infertux,Elm,true,false,false,1,false,true,false,false,16 +dvalenzu/CHIC,dvalenzu,C++,true,false,false,1,false,true,false,false,14 +packaging/logrotate-no-compress-apt-hook,packaging,Shell,true,false,false,2,false,false,false,false,24 +ayufan/kubernetes-deploy,ayufan,Shell,true,false,false,1,false,false,true,false,24 +tuomashatakka/atom-ui-reduced-dark,tuomashatakka,CSS,true,false,false,1,false,false,true,false,23 +open-sismo/coordinate-api,open-sismo,Python,true,true,false,4,true,true,true,true,63 +bff/rn,bff,Rust,true,false,false,1,false,true,false,false,31 +eval/pipeclient,eval,Clojure,true,false,false,3,true,true,false,true,44 +yogonza524/fletz,yogonza524,JavaScript,true,false,true,3,true,false,true,true,56 +atsaloli/gitlab-ci-tutorial,atsaloli,PHP,true,false,false,1,false,true,false,false,9 +dvalenzu/PanVC,dvalenzu,C++,true,false,false,1,false,true,false,false,19 +daniellawrence/go-links,daniellawrence,Python,true,true,false,1,false,true,false,false,10 +siegcollado/gitlab-ci-build-images,siegcollado,Shell,true,false,false,3,false,true,false,false,60 +infertux/lifechart,infertux,Elm,true,false,false,1,false,true,false,false,11 +ConorIA/alpine-pandoc,ConorIA,Shell,true,false,false,2,true,false,true,false,53 +sims1253/linespots-lib,sims1253,Python,false,false,false,0,false,false,false,false,1 +CLARIN-ERIC/docker-vlo-beta,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true,43 +s4m-chef-repositories/consul-platform,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false,34 +saasdm/saasdm-material,saasdm,JavaScript,true,false,false,1,false,true,false,false,12 +onsip/sipjs.com,onsip,JavaScript,true,false,false,1,false,true,false,false,11 +kargathia/ES_Application,kargathia,C++,true,false,false,1,true,false,false,false,28 +BlackEdder/AODVRouter,BlackEdder,C++,true,false,false,1,false,true,false,false,18 +hansroh/skitai,hansroh,Python,true,false,false,1,false,true,false,false,98 +schpaper/schpaper.gitlab.io,schpaper,HTML,true,false,false,2,false,true,true,false,35 +angular-material-home/apps/amh-template-builder,angular-material-home,JavaScript,true,false,false,2,true,false,true,false,45 +indicproject/indic-keyboard-website,indicproject,HTML,true,false,false,1,false,true,false,false,10 +pcapriotti/agda-base,pcapriotti,Agda,true,false,false,1,false,true,false,false,10 +openstreetcraft/wms,openstreetcraft,Java,true,false,false,3,true,true,true,false,61 +cubekrowd/system/cubebot,cubekrowd,Java,true,false,false,2,true,false,true,false,32 +vajda.stefan/vajda.stefan.gitlab.io,vajda.stefan,HTML,true,false,false,1,false,false,true,false,10 +bbaldassari/Alambic,bbaldassari,Perl,true,false,false,1,false,true,false,false,10 +codelibre/schroot,codelibre,C++,true,false,false,2,true,true,false,false,31 +penang-hokkien/penang-hokkien.gitlab.io,penang-hokkien,CSS,true,false,false,2,false,true,true,false,27 +prashere/exifdata,prashere,JavaScript,true,false,false,1,false,false,true,false,11 +niksaak/lofi,niksaak,Rust,true,false,false,1,false,true,false,false,12 +hamakor/organ,hamakor,Python,true,false,false,1,false,true,false,false,31 +kylehqcom/whatjson,kylehqcom,Go,true,false,false,1,false,true,false,false,8 +weburger/am-wb/am-wb-copyright,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +isd/layout-dsl,isd,Haskell,true,false,false,1,false,true,false,false,12 +wictor/TreoSMS,wictor,Java,true,false,true,3,true,true,true,false,69 +insightgit/Project-Avenue-Concept,insightgit,C++,true,false,false,1,true,false,false,false,28 +containos/containos,containos,Shell,true,false,false,3,true,true,false,false,147 +niaquinto/nicks-recipies,niaquinto,,true,false,false,1,true,false,false,false,14 +AmosEgel/smuthi,AmosEgel,Fortran,true,false,false,2,false,true,true,false,22 +akita/akita,akita,Go,true,false,false,2,true,true,false,false,24 +sssvip/helloworld,sssvip,Java,true,false,false,1,true,false,false,false,15 +abre/lorikeet,abre,Python,true,false,false,2,false,true,false,false,36 +jimschubert/iggy,jimschubert,Java,true,false,false,3,true,true,true,false,42 +InstitutMaupertuis/davidSDK,InstitutMaupertuis,C++,true,false,false,1,true,false,false,false,9 +gpcentre/wordpress-nginx-fpm,gpcentre,PHP,true,false,false,2,true,false,false,true,40 +dhanesh95/dhanesh95.gitlab.io,dhanesh95,HTML,true,false,false,1,false,true,false,false,18 +gandra404/ticketbeast,gandra404,PHP,true,false,false,1,false,true,false,false,13 +jerrya/nextferry,jerrya,HTML,true,false,false,1,false,false,false,false,135 +cgcladera/ci-diy,cgcladera,TypeScript,true,false,false,4,false,true,false,true,67 +ergot/ifocop-snake,ergot,JavaScript,true,false,false,1,false,false,true,false,11 +jordimonegallopez/m02html,jordimonegallopez,CSS,true,false,false,1,false,false,true,false,11 +alimaldev/cv,alimaldev,,true,false,false,1,false,false,true,false,13 +wsw0108/go-proj4,wsw0108,C,true,false,false,1,false,true,false,false,11 +wsw0108/go-proj4-mars,wsw0108,Go,true,false,false,1,false,true,false,false,13 +powan/CoreRobotics,powan,C++,true,false,false,3,true,true,true,false,106 +tramwayjs/tramway-connection-rest-api,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +BuildStream/buildstream-tests,BuildStream,Shell,true,false,false,1,false,true,false,false,29 +kooki/kooki,kooki,Python,true,false,false,2,false,false,true,false,72 +tspiteri/rox,tspiteri,Rust,true,false,false,1,false,true,false,false,55 +mykhailokoretskyi/test-deep-mock,mykhailokoretskyi,Perl,true,false,false,1,true,false,false,false,11 +openstreetcraft/overpass-api,openstreetcraft,Java,true,false,false,3,true,true,true,false,27 +boormat/khana-results,boormat,JavaScript,true,false,false,1,false,true,false,false,12 +davch/jsredir,davch,HTML,true,false,false,1,false,false,true,false,10 +runarberg/trompt,runarberg,Rust,true,false,false,1,false,true,false,false,34 +lusimeon/bem-slides,lusimeon,JavaScript,true,false,false,1,false,false,false,false,18 +luca-heltai/bare-dealii-app,luca-heltai,C++,true,false,false,1,false,true,false,false,16 +liscioapps/ask-jocko,liscioapps,JavaScript,true,false,false,4,true,true,true,false,110 +nvidia/caffe,nvidia,,true,false,false,2,false,false,false,false,41 +minishift/minishift,minishift,Go,true,false,false,1,false,true,false,false,20 +signal9/conanfiles,signal9,Python,true,false,false,1,false,true,false,false,13 +InstitutMaupertuis/raspberry_stepper_demo,InstitutMaupertuis,C++,true,false,false,2,true,false,true,false,23 +albertoluna/moon-video-sync-api,albertoluna,TypeScript,true,false,false,1,false,true,false,false,17 +salay14/sklad,salay14,Java,true,false,true,2,true,true,false,false,103 +wdd/rtsharp-rtorrent-sds,wdd,D,true,false,false,2,false,false,false,false,30 +alan.t.negrete1/nodeapi-gcloud-boilerplate,alan.t.negrete1,JavaScript,true,false,false,6,true,false,true,false,118 +codelogs/codelogs-backend,codelogs,Java,true,false,true,3,true,false,true,false,42 +tannerlake/dungeonbot,tannerlake,Python,true,false,false,1,false,true,false,false,26 +socrates-peru/socrates-peru.gitlab.io,socrates-peru,JavaScript,true,false,false,1,false,false,true,false,9 +kaacode2/html2017,kaacode2,HTML,true,false,false,1,false,false,true,false,10 +Salvus/salvus_seismo,Salvus,Python,true,false,false,3,false,false,true,false,56 +naym333/gitlab-timer,naym333,JavaScript,true,false,false,1,false,true,false,false,17 +chris-morgan/symlink,chris-morgan,Rust,true,false,false,1,false,true,false,false,26 +lyda/gqgmc,lyda,Go,true,false,false,1,false,true,false,false,11 +plut0n/Bluebird,plut0n,C++,true,false,false,1,true,false,false,false,27 +smizy/docker-keras-tensorflow,smizy,Makefile,true,false,false,1,true,false,false,false,71 +roddhjav/pass-update,roddhjav,Shell,true,false,false,3,false,true,true,false,92 +weburger/am-wb/am-wb-carousel,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +gitlab-cookbooks/gitlab_consul,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true,34 +angular-material-dashboard/apps/amd-teacher,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false,38 +fargie_s/pipo,fargie_s,JavaScript,true,false,false,2,false,true,false,false,47 +parroty/gitlab_sample,parroty,Elixir,true,false,false,1,false,true,false,false,10 +fsfe/fsfe-cd-dummy-postgres,fsfe,Shell,true,false,false,2,true,false,true,false,31 +byteball/faq,byteball,HTML,true,false,false,1,false,false,true,false,11 +jorge.aguilera/grocker,jorge.aguilera,CSS,true,false,false,2,true,false,true,false,32 +servercharlie/servercharlie.gitlab.io,servercharlie,CSS,true,false,false,1,false,true,false,false,10 +livewords-oss/livewords-gitlab-runner,livewords-oss,Shell,true,false,false,3,true,true,false,true,35 +simonbreiter/rest-cms,simonbreiter,,true,false,false,2,true,true,false,false,36 +meno/vocal-coach,meno,Dart,true,false,false,1,false,false,true,false,24 +akita/mem,akita,Go,true,false,false,3,true,false,false,false,43 +KitaitiMakoto/scrollspy-example,KitaitiMakoto,HTML,true,false,false,1,false,true,false,false,16 +nestal/spaghetti,nestal,C++,true,false,false,1,true,false,false,false,18 +Gluttton/BronKerbosch,Gluttton,C++,true,false,false,1,false,true,false,false,18 +thebastedo/thebastedo.com,thebastedo,JavaScript,true,false,false,3,true,true,true,false,46 +codeandsupplyfund/codeandsupply.fund,codeandsupplyfund,HTML,true,false,false,2,true,false,true,false,33 +CruAlbaniaDigital/broshura-4-ligjet,CruAlbaniaDigital,HTML,true,false,false,1,false,true,false,false,10 +vladgo/ansible-minio,vladgo,,true,false,false,2,false,false,false,false,45 +lagbotics/current,lagbotics,Java,true,false,false,1,false,true,false,false,27 +territoires/caligram-react,territoires,JavaScript,true,false,false,2,false,true,true,false,18 +zetok/epaste,zetok,Rust,true,false,false,1,true,false,false,false,30 +vaghtgir/telegram-cli-binary,vaghtgir,,true,false,false,1,true,false,false,false,24 +tsktsktsktsk/website_attempt_two,tsktsktsktsk,JavaScript,true,false,false,1,false,true,false,false,9 +vaghtgir/Semantic-UI-RTL,vaghtgir,,true,false,false,1,true,false,false,false,28 +webhook-to-mqtt/webhook-to-mqtt-server,webhook-to-mqtt,Clojure,true,false,false,1,false,true,false,false,7 +valeth/anidb.rb,valeth,Ruby,true,false,false,1,false,true,false,false,9 +sumner/tracktime,sumner,Python,true,false,false,5,true,true,true,true,86 +PPL2017csui/PPLC2,PPL2017csui,HTML,true,false,false,3,true,true,true,false,44 +PPL2017csui/PPLA1,PPL2017csui,JavaScript,true,false,false,2,false,true,true,false,69 +michaelbarton/gaet,michaelbarton,Python,true,false,false,2,false,true,false,true,39 +allima/my-similarity-project,allima,Java,true,false,true,1,true,false,false,false,12 +albina-euregio/albina-server,albina-euregio,Java,true,false,true,2,true,false,true,false,40 +jorge.aguilera/codemidi,jorge.aguilera,Groovy,true,false,false,2,true,false,true,false,30 +pavelgopanenko/margo-cookery,pavelgopanenko,HTML,true,false,false,2,false,false,false,true,34 +P5YCH0D3/MUN,P5YCH0D3,JavaScript,true,false,false,1,false,true,false,false,12 +CruAlbaniaDigital/hapitjeter,CruAlbaniaDigital,JavaScript,true,false,false,1,false,true,false,false,32 +authenticity/enrollment-js,authenticity,JavaScript,true,false,false,2,true,true,false,false,25 +shingonoide/php,shingonoide,PHP,true,false,false,1,false,true,false,false,41 +anarcat/kobo-ssh,anarcat,Shell,true,false,false,1,true,false,false,false,15 +swe-nrb/nrb-sbp-shopfront,swe-nrb,HTML,true,false,false,3,true,false,true,false,41 +finnyapp/finny-api,finnyapp,Clojure,true,false,false,2,false,true,true,false,78 +DIGITALR00TS-Demo/ci-jekyll,DIGITALR00TS-Demo,HTML,true,false,false,4,true,true,true,false,90 +ultreiaio/gitlab-maven-plugin,ultreiaio,Java,true,false,false,4,false,true,false,false,92 +remyGrandry/Myre,remyGrandry,C,true,false,false,2,true,false,false,true,33 +griest/pexi,griest,JavaScript,true,false,false,3,true,true,true,false,66 +engineering-projekt/examibur,engineering-projekt,Java,true,false,false,7,true,true,true,false,145 +openrail/uk/referencedata-nodejs,openrail,JavaScript,true,false,false,4,true,true,true,false,194 +thelabnyc/certbot-django,thelabnyc,Python,true,false,false,1,false,true,false,false,32 +azdle/stockfaces-api,azdle,Rust,true,false,false,2,true,false,false,false,45 +OpenMusicKontrollers/synthpod,OpenMusicKontrollers,C,true,false,false,3,true,true,true,false,79 +robconnolly/hass-config,robconnolly,,true,false,false,5,false,false,true,false,189 +kylehqcom/qupid,kylehqcom,Go,true,false,false,1,false,true,false,false,8 +Bladou/logstash-indexer-example,Bladou,Ruby,true,false,false,1,false,true,false,false,8 +ffffm/docker-salt-minion,ffffm,,true,false,false,1,true,false,false,false,21 +tramwayjs/tramway-core-router,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +dgoo2308/jekyll-plantuml-url,dgoo2308,Ruby,true,false,false,2,true,true,false,false,82 +ehiggs/ripawk,ehiggs,Rust,true,false,false,1,false,true,false,false,16 +antongnutov/scala-js-prototype,antongnutov,Scala,true,false,false,3,true,true,true,false,72 +jswrenn/nlptk,jswrenn,Rust,true,false,false,1,false,true,false,false,10 +matthiasstock/monolith,matthiasstock,Java,true,false,false,2,true,true,false,false,44 +universal-playlist/pls2upl,universal-playlist,Python,true,false,false,1,false,false,false,false,12 +ngx-filemanager/ngx-filemanager,ngx-filemanager,TypeScript,true,false,false,3,true,true,true,false,68 +wayanjimmy/warungmoneer,wayanjimmy,CSS,true,false,false,1,false,true,false,false,16 +mtg-archive/magic-laravel,mtg-archive,JavaScript,true,false,false,2,false,true,true,false,41 +penkit/packages,penkit,Shell,true,false,false,1,false,true,false,false,16 +dgoo2308/testapi_access,dgoo2308,,true,false,false,1,false,true,false,false,5 +tastapod/bddbyexample,tastapod,CSS,true,false,false,1,false,true,false,false,23 +spicycms.com/dev-SpicyCMS_Chief_Editor,spicycms.com,Shell,true,false,false,3,true,false,false,false,100 +gismala/ongisline,gismala,JavaScript,true,false,false,1,false,false,false,false,11 +gbraad/minishift,gbraad,,true,false,false,1,false,true,false,false,21 +ZORALab/BaSHELL,ZORALab,Shell,true,false,false,3,true,true,false,true,36 +monasca-installer/monasca-installer,monasca-installer,Shell,true,false,false,2,false,true,true,false,26 +yorickpeterse/load-testing,yorickpeterse,,true,false,false,1,false,true,false,false,23 +mikekoetter/node-varint,mikekoetter,C++,true,false,false,1,false,true,false,false,32 +automatedtrading/questrade,automatedtrading,Go,true,false,false,1,false,true,false,false,29 +Mizux/cpp-101,Mizux,CMake,true,false,false,1,false,false,false,true,50 +nielsmokkenstorm/dungeontool,nielsmokkenstorm,PHP,true,false,false,1,true,false,false,false,14 +alelec/docker-arm-none-eabi,alelec,,true,false,false,1,false,true,false,false,22 +carmenbianca/en-pyssant,carmenbianca,Python,true,true,false,3,false,true,true,false,139 +chatterops/chatterops.gitlab.io,chatterops,CSS,true,false,false,1,false,true,false,false,34 +mfgames-writing/example-frankenstein,mfgames-writing,,true,false,false,1,false,false,true,false,35 +crazybus/crazybus.gitlab.io,crazybus,CSS,true,false,false,1,false,true,false,false,28 +edwardwang1/biomodUBC,edwardwang1,HTML,true,false,false,1,false,false,true,false,11 +mgoral/feed-commas,mgoral,Python,true,true,false,2,false,true,true,false,52 +Queuecumber/linux-acs-override,Queuecumber,Python,true,false,false,2,true,false,false,false,73 +checkmein2/checkmein2-user-management-service,checkmein2,JavaScript,true,false,false,1,false,false,false,false,23 +checkmein2/checkmein2-campaign-service,checkmein2,JavaScript,true,false,false,1,false,false,false,false,16 +zaaksysteem/converter-service,zaaksysteem,Perl,true,false,false,3,true,true,false,false,73 +Vondracek/JustATeam_IVS,Vondracek,HTML,true,false,false,2,true,true,false,false,36 +angular-material-home/apps/amh-blog,angular-material-home,JavaScript,true,false,false,2,true,false,true,false,45 +fpirola/scala-js-matrix,fpirola,Scala,true,false,false,1,false,true,false,false,23 +joshlambert/prometheus-demo,joshlambert,Ruby,true,false,false,8,true,true,false,true,471 +kalug/kalug-meetup,kalug,HTML,true,false,false,1,false,false,true,false,11 +perlstalker/hugo-docker,perlstalker,,true,false,false,3,false,false,false,true,65 +gotfix/docker-gitlab,gotfix,Shell,true,false,false,4,true,true,false,true,165 +swathanthram/swathanthram.gitlab.io,swathanthram,JavaScript,true,false,false,2,false,true,true,false,28 +joustie/joustie.gitlab.io,joustie,HTML,true,false,false,1,false,true,false,false,22 +fsci/fsci.org.in,fsci,JavaScript,true,false,false,1,false,false,true,false,15 +general-purpose-libraries/graph,general-purpose-libraries,Java,true,false,true,2,true,true,false,false,104 +audron/YaTWi,audron,TypeScript,true,false,false,13,true,true,false,true,941 +mogaiskii/Maclaurin,mogaiskii,C++,true,false,false,1,true,false,false,false,6 +Swizi/swizi-community/swizi-community-plugin,Swizi,JavaScript,true,false,false,1,false,false,true,false,17 +thallian/gog-sync,thallian,Rust,true,false,false,1,false,true,false,false,9 +jgsqware/playbook-cli,jgsqware,Go,true,false,false,3,true,false,false,true,42 +ayufan/code-coverage-test,ayufan,,true,false,false,1,false,true,false,false,7 +alelec/python-certifi-win32,alelec,Python,true,false,false,1,false,false,true,false,15 +general-purpose-libraries/huge-collections,general-purpose-libraries,Java,true,false,true,2,true,true,false,false,104 +yshui/sdpc,yshui,D,true,false,false,2,false,true,true,false,15 +bigapplepy/bigapplepy.gitlab.io,bigapplepy,HTML,true,false,false,1,false,false,true,false,12 +mujeebcpy/mujeebcpy.gitlab.io,mujeebcpy,JavaScript,true,false,false,1,false,false,true,false,11 +Vinnl/wdio-webpack-dev-server-service,Vinnl,JavaScript,true,false,false,2,true,false,false,true,43 +williamyaoh/nix-config,williamyaoh,EmacsLisp,true,false,false,1,true,false,false,false,18 +Technovasoft/Django-Music,Technovasoft,CSS,true,false,false,1,false,true,false,false,9 +Rtzq0/completely-reasonable-job-requirements,Rtzq0,JavaScript,true,false,false,1,false,false,true,false,14 +named-data/TR-NDN-0021-NFD-dev-guide,named-data,TeX,true,false,false,1,true,false,false,false,14 +formaltech/rtnetlink-hs,formaltech,Haskell,true,false,false,1,false,true,false,false,15 +foxycode/workshop-gitlab-ci,foxycode,HTML,true,false,false,2,false,true,false,false,58 +hugocf/sandbox,hugocf,,true,false,false,3,true,true,true,false,43 +wisdomwolf/pitftmenu,wisdomwolf,Python,true,false,false,1,false,false,true,false,7 +AlexR1712/messenger-to-telegram,AlexR1712,JavaScript,true,false,false,1,true,false,false,false,14 +deeksha25/starter-springboot-pipeline,deeksha25,Java,true,false,true,1,true,false,false,false,13 +tramwayjs/tramway-command,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +likeno/soko,likeno,Python,true,false,false,4,false,false,true,false,98 +i-am-root/umami,i-am-root,PHP,true,false,false,3,true,false,true,false,75 +msifeed/misca,msifeed,Java,true,false,false,1,true,false,false,false,23 +satskiy.a/WebFax,satskiy.a,JavaScript,true,false,false,1,false,false,false,false,22 +o.lelenkov/docker-minideb,o.lelenkov,Makefile,true,false,false,1,true,false,false,false,14 +fnordian/kubernetes-sshfs-provisioner,fnordian,Go,true,false,false,1,true,false,false,false,24 +o.lelenkov/docker-dlang-dev,o.lelenkov,Shell,true,false,false,1,true,false,false,false,12 +o.lelenkov/docker-dlang-runtime,o.lelenkov,Shell,true,false,false,1,true,false,false,false,13 +Lunatix89/GStreamer-Sharp,Lunatix89,C#,true,false,false,3,true,true,false,false,42 +gitlab-cog/swat,gitlab-cog,Ruby,true,false,false,1,false,true,false,false,20 +rafael.santana/poc-multi-tenant,rafael.santana,Java,true,false,true,3,true,true,false,false,60 +viluon/Desktox,viluon,Lua,true,false,false,3,false,true,false,false,63 +lparcq/rsws,lparcq,Rust,true,false,false,1,false,true,false,false,10 +alfageme/client-GUI-tests,alfageme,JavaScript,true,false,false,1,false,true,false,false,21 +niklas-dahl/angular-cli-e2e-test,niklas-dahl,TypeScript,true,false,false,1,false,true,false,false,13 +acme101/angular-hello-world,acme101,TypeScript,true,false,false,1,true,false,false,false,46 +PRTG/Device-Templates/Aruba,PRTG,,true,false,false,1,true,false,false,false,33 +barrel-db/e2qc,barrel-db,C,true,false,false,1,false,true,false,false,10 +wheleph/the-adventures-of-dennis,wheleph,HTML,true,false,false,1,false,false,true,false,11 +DmitryDorofeev/msu-go-bot,DmitryDorofeev,Go,true,false,false,1,false,true,false,false,16 +sangrey/sangrey.gitlab.io,sangrey,HTML,true,false,false,1,false,true,false,false,16 +jasonmm/hunt-the-wumpus,jasonmm,Clojure,true,false,false,1,false,false,true,false,27 +guardianproject/fdroid-repo,guardianproject,HTML,true,false,false,1,false,true,false,false,8 +wearetwitter/wearetwitter.global,wearetwitter,JavaScript,true,false,false,1,false,false,true,false,26 +angular-material-dashboard/angular-material-dashboard-account,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +angular-material-dashboard/angular-material-dashboard-user,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +angular-material-dashboard/angular-material-dashboard-cms,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +weburger/am-wb/am-wb-common,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +GenaDyomin/Lab2,GenaDyomin,C++,true,false,false,1,true,false,false,false,16 +trud/CfL-AV1-Presentation,trud,TeX,true,false,false,1,false,true,false,false,12 +mariocesar/tesla,mariocesar,CSS,true,false,false,3,true,false,true,false,31 +michaeltlombardi/needful-docs,michaeltlombardi,Shell,true,false,false,2,false,true,true,false,21 +anagabriel/pumpkin-spice-latte,anagabriel,C++,true,false,false,2,false,true,false,false,36 +somatorio/somatorio.org,somatorio,HTML,true,false,false,2,true,false,true,false,33 +rmoe/c2log,rmoe,Python,true,true,false,3,false,true,true,false,42 +weburger/am-wb-seen/am-wb-seen-collection,weburger,JavaScript,true,false,false,1,false,true,false,false,12 +dewet/quis-es,dewet,Python,true,true,false,1,true,false,false,false,14 +jum-s/understanding_linked_geodata,jum-s,JavaScript,true,false,false,1,false,false,true,false,11 +HalfwayDead/rl-deadzone,HalfwayDead,JavaScript,true,false,false,1,false,false,true,false,13 +ssugm/ssugm.gitlab.io,ssugm,CSS,true,false,false,1,false,false,true,false,11 +ratmice/gitlab-urweb-pages,ratmice,UrWeb,true,false,false,1,false,true,false,false,9 +mtuchowski/rake-protect,mtuchowski,Ruby,true,false,false,1,false,true,false,false,37 +apetitbois/packt-sync,apetitbois,Go,true,false,false,2,true,true,false,false,29 +CSUI-AdvProg-2017/week-8-template,CSUI-AdvProg-2017,Python,true,true,false,1,false,true,false,false,8 +upe-consulting/TypedJSON,upe-consulting,TypeScript,true,false,false,4,true,true,true,false,98 +GitLabRGI/nsg/gpep-mapproxy,GitLabRGI,Python,true,false,false,1,false,true,false,false,11 +cwenck/bittorrent,cwenck,C,true,false,false,1,false,true,false,false,11 +Shawniac/shawniac.gitlab.io,Shawniac,HTML,true,false,false,1,false,true,false,false,10 +gnuwget/wget,gnuwget,C,true,false,false,2,false,false,false,false,435 +paolofalomo/codexa,paolofalomo,PHP,true,false,false,1,false,true,false,false,39 +GabrielTK/OnlinkCheats,GabrielTK,C#,true,false,false,1,true,false,false,false,29 +wldhx/reactNativeGitlabCIAndroidCDTest,wldhx,JavaScript,true,false,false,1,true,false,false,false,49 +upe-consulting/npm/decorators,upe-consulting,TypeScript,true,false,false,4,true,true,true,false,98 +rekahsoft/blog-rekahsoft,rekahsoft,Haskell,true,false,false,2,true,false,true,false,43 +Winsonic/CB0P01-S5P6818,Winsonic,,true,false,false,1,true,false,false,false,19 +v01d-sk/v01d.sk,v01d-sk,CSS,true,false,false,1,false,true,false,false,10 +eunleem/gopack,eunleem,Go,true,false,false,2,false,false,false,false,23 +credizian/untrackme,credizian,CSS,true,false,false,1,false,false,true,false,11 +fsmk/embedded-for-her,fsmk,JavaScript,true,false,false,1,false,true,false,false,11 +kb/block,kb,Python,true,false,false,1,false,true,false,false,14 +lucassabreu/k8s-pr-envs,lucassabreu,Shell,true,false,false,5,true,false,false,true,84 +devops-df/2017.brasilia.devopsdays.com.br,devops-df,HTML,true,false,false,4,false,true,true,true,78 +kb/login,kb,Python,true,false,false,1,false,true,false,false,11 +kb/base,kb,Python,true,false,false,1,false,true,false,false,15 +kb/mail,kb,Python,true,false,false,1,false,true,false,false,18 +lzukowski/acd,lzukowski,Python,true,false,false,2,false,true,false,true,46 +planet-innovation/gitlab-ci-angular-webapp,planet-innovation,JavaScript,true,false,false,2,false,false,false,false,37 +gliniak/cossacks3-units-ranking,gliniak,JavaScript,true,false,false,1,false,false,true,false,12 +gitmate/open-source/result-bouncer,gitmate,Python,true,false,false,3,true,true,false,true,39 +angular-material-dashboard/angular-material-dashboard-seo,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +andrewbanchich/massively-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,14 +mardy/photokinesis,mardy,C++,true,false,false,2,true,true,false,false,43 +MariusLab/Less-Real,MariusLab,PHP,true,false,false,1,false,true,false,false,11 +GolangVE/SitioWeb,GolangVE,JavaScript,true,false,false,1,false,true,false,false,10 +betse/betsee,betse,Python,true,false,false,1,false,true,false,false,235 +CLARIN-ERIC/docker-alpine-supervisor-base,CLARIN-ERIC,Shell,true,false,false,2,true,false,false,true,29 +barrel-db/lab/instrument,barrel-db,Erlang,true,false,false,1,false,true,false,false,15 +PascalSmeets/psek-fitnesse-fixtures-demo,PascalSmeets,CSS,true,false,true,2,false,true,false,true,34 +canarduck/disques,canarduck,CSS,true,false,false,4,false,true,true,false,107 +order-tracking/restaurant_app,order-tracking,TypeScript,true,false,false,3,true,true,true,false,100 +erisfrison/rtcg,erisfrison,Rust,true,false,false,1,false,true,false,false,6 +frodesigns-group/pwa-skeleton,frodesigns-group,Vue,true,false,false,3,true,false,true,false,49 +tombousso/gnu-bytecode2,tombousso,Java,true,false,false,1,false,false,false,false,19 +fluxcess/fluxcess_admin,fluxcess,PHP,true,false,false,1,true,false,false,false,9 +laraveluk/laraveluk.gitlab.io,laraveluk,CSS,true,false,false,1,false,true,false,false,25 +angular-material-home/angular-material-home-user,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +panchoaby/cityos,panchoaby,C#,true,false,false,1,false,true,false,false,21 +tramwayjs/tramway-callback-adapter,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +redpine/api-client,redpine,JavaScript,true,false,false,1,false,true,false,false,8 +angular-material-dashboard/angular-material-dashboard-collection,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +varikin/romen,varikin,Go,true,false,false,2,false,true,false,false,26 +kv025java/AuraCore,kv025java,Java,true,false,false,5,true,true,false,false,95 +gitmate/open-source/coala-incremental-results,gitmate,Python,true,false,false,2,false,true,false,true,31 +solanpaa/bill2d,solanpaa,C++,true,false,false,2,false,false,true,false,39 +goern/oe2k,goern,Go,true,false,false,3,false,false,false,false,99 +amercader/mor,amercader,JavaScript,true,false,false,1,false,false,true,false,11 +htmleditor/htmleditor.gitlab.io,htmleditor,HTML,true,false,false,1,false,false,true,false,11 +accounts-sso/libauthentication,accounts-sso,C++,true,false,false,3,true,true,true,false,51 +DMore/behat-chrome-skeleton,DMore,Gherkin,true,false,false,1,false,true,false,false,28 +tramwayjs/tramway-router-react-strategy,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +gf-bl/python-geolink-formatter,gf-bl,Python,true,true,false,3,false,true,true,false,110 +6uellerBpanda/omd-mattermost,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false,13 +cjwebb/myblog,cjwebb,JavaScript,true,false,false,1,false,true,false,false,20 +DanielSiepmann/neotags,DanielSiepmann,Python,true,false,false,2,true,true,false,false,29 +pwmc/gsvg,pwmc,Vala,true,false,false,2,true,false,true,false,52 +_zngguvnf/org-static-blog-example,_zngguvnf,EmacsLisp,true,false,false,1,false,true,false,false,16 +BalmungSan/spark-kmeans,BalmungSan,HTML,true,false,false,1,false,false,true,false,12 +LibreGames/libregames.gitlab.io,LibreGames,Python,true,false,false,1,false,true,false,false,20 +evilj0e1/urban-snake-2k17,evilj0e1,JavaScript,true,false,false,1,false,true,false,false,25 +mzdonline/cmu-cli-tools,mzdonline,Shell,true,false,false,1,false,true,false,false,16 +gitlab-cookbooks/gitlab-monitoring,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true,33 +thelabnyc/wagtail-links,thelabnyc,Python,true,false,false,1,false,true,false,false,39 +mdraw/predictingdeeper-seminar,mdraw,TeX,true,false,false,1,false,true,false,false,17 +strburst/strburst.gitlab.io,strburst,HTML,true,false,false,1,false,true,false,false,15 +fsfe/ams-docker-compose,fsfe,Shell,true,false,false,1,false,true,false,false,13 +ovysotska/online_place_recognition,ovysotska,C++,true,false,false,2,true,true,false,false,53 +bahmutov/cypress-ts-example,bahmutov,JavaScript,true,false,false,1,false,true,false,false,22 +primedio/delivery-primedjs,primedio,JavaScript,true,false,false,1,false,true,false,false,33 +jonathan-kosgei/gitlab-ci-angular-e2e-unit-test,jonathan-kosgei,TypeScript,true,false,false,2,false,false,false,false,27 +jamietanna/user-cookbook,jamietanna,Ruby,true,false,false,1,false,true,false,false,19 +TC01/python-bautils,TC01,Python,true,false,false,1,false,true,false,false,22 +rolodato/rolodato.gitlab.io,rolodato,HTML,true,false,false,1,false,true,false,false,8 +reinholdt/polarizationsolver,reinholdt,Python,true,false,false,1,false,true,false,false,8 +deliverous/blog,deliverous,Makefile,true,false,false,2,true,false,true,false,15 +FodyWeaving/Aspects,FodyWeaving,C#,true,false,false,4,true,true,false,true,88 +jkantarek/kafka_ex_helpers,jkantarek,Elixir,true,false,false,2,false,true,true,false,25 +float.cf/proxy,float.cf,,true,false,false,2,true,false,true,false,34 +ubcbiomod/biomod2017,ubcbiomod,HTML,true,false,false,1,false,true,false,false,26 +weburger/am-wb/am-wb-mailchimp,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +monetha/ico-reputation-analyzer,monetha,Go,true,false,false,2,true,false,false,false,58 +sowebdev/battleship-game,sowebdev,PHP,true,false,false,1,false,true,false,false,19 +fast-science/background-removal-vue,fast-science,JavaScript,true,false,false,1,false,false,true,false,18 +adamldavis/groocss,adamldavis,Groovy,true,false,false,2,true,true,false,false,18 +smondet/vecosek,smondet,OCaml,true,false,false,1,false,true,false,false,48 +cgascoig/netdevops,cgascoig,Python,true,false,false,4,false,true,true,false,103 +huygens/unifi-docker,huygens,Shell,true,false,false,1,false,true,false,false,51 +kirara/reborn-modpack,kirara,HTML,true,false,false,1,true,false,false,false,24 +gitmate/documentation,gitmate,,true,false,false,1,false,true,false,false,27 +kybernetics/hypershot,kybernetics,Python,true,true,false,2,false,true,true,false,75 +carmenbianca/changelogdir,carmenbianca,Python,true,true,false,2,false,true,true,false,92 +jakubsacha/cli-table,jakubsacha,Rust,true,false,false,1,false,true,false,false,11 +ilug-bom/www.ilug-bom.org.in,ilug-bom,CSS,true,false,false,1,false,false,true,false,16 +zach-geek/songbook,zach-geek,Ruby,true,false,false,2,true,false,true,false,41 +ucgc/discord,ucgc,Go,true,false,false,2,true,false,false,false,29 +4151/WebExt/ReqBlock,4151,JavaScript,true,false,false,1,true,false,false,false,20 +picter/frontier,picter,TypeScript,true,false,false,2,false,true,true,false,43 +alecshaw/alecshaw.gitlab.io,alecshaw,HTML,true,false,false,1,false,false,true,false,13 +recalbox/ops/env2file,recalbox,Shell,true,false,false,1,true,false,false,false,14 +puravida-software/asciidoctor-extensions,puravida-software,CSS,true,false,false,2,true,false,true,false,63 +aiakos/dj12,aiakos,Python,true,false,false,1,false,true,false,false,30 +jjacobson/rancher-cockroachdb,jjacobson,Shell,true,false,false,1,true,false,false,false,18 +Milihhard/echec-java,Milihhard,Java,true,false,true,3,false,true,false,false,28 +weburger/am-wb-seen/am-wb-seen-core,weburger,JavaScript,true,false,false,1,false,true,false,false,12 +Kwilco/kwil.co,Kwilco,Shell,true,false,false,1,false,true,false,false,16 +whacks/daily-reddit,whacks,Java,true,false,true,1,false,true,false,false,5 +dlab-indecol/web_trawler,dlab-indecol,Python,true,false,false,1,false,true,false,false,8 +AnjiProject/anji-core,AnjiProject,Python,true,false,false,2,false,true,false,false,26 +scrolliris/scrolliris-readability-tracker,scrolliris,JavaScript,true,false,false,3,false,false,false,false,80 +fnordian/swagger-viewer-react,fnordian,JavaScript,true,false,false,1,false,true,false,false,10 +harbottle/docker-rpm,harbottle,,true,false,false,1,true,false,false,false,13 +mextrix/matrix-appservice-signal,mextrix,Kotlin,true,false,false,2,true,true,false,false,41 +spicydog/example-ci-cd-golang,spicydog,Go,true,false,false,2,true,true,false,false,30 +hegdevinayi/kelpie,hegdevinayi,Python,true,false,false,1,true,false,false,false,13 +egolib/ego,egolib,Go,true,false,false,1,true,false,false,false,12 +kpmeen/clammyscan,kpmeen,Scala,true,false,false,2,false,true,false,false,53 +recalbox/ops/savior,recalbox,Shell,true,false,false,1,true,false,false,false,14 +andreybolonin/clickhouse_crud,andreybolonin,PHP,true,false,false,1,false,true,false,false,38 +winniehell/water-child,winniehell,HTML,true,false,false,1,false,false,true,false,14 +6massote/users-profile-manager,6massote,CSS,true,false,false,6,true,true,false,false,47 +pubsweet/pubsweet.gitlab.io,pubsweet,HTML,true,false,false,1,false,false,true,false,21 +alexey-martynov/cl-json-object,alexey-martynov,CommonLisp,true,false,false,1,false,true,false,false,24 +pantacor/pvr,pantacor,Go,true,false,false,1,true,false,false,false,103 +seifriedc/seifriedc.gitlab.io,seifriedc,EmacsLisp,true,false,false,1,false,true,false,false,11 +pkinold/lightning-docker-test,pkinold,PHP,true,false,false,1,true,false,false,false,23 +sigma-web-app/s-container,sigma-web-app,JavaScript,true,false,false,1,false,false,true,false,21 +shazbot89/shaunbur.ch,shazbot89,CSS,true,false,false,1,false,false,true,false,26 +VickySteeves/Women-Leaders-Openness,VickySteeves,JavaScript,true,false,false,2,false,true,true,false,27 +Vondracek/TodoApp,Vondracek,JavaScript,true,false,false,1,false,true,false,false,20 +fpirola/scala-js-breakout,fpirola,Scala,true,false,false,1,false,true,false,false,23 +commonshost/website,commonshost,CSS,true,false,false,1,false,true,false,false,12 +unee-t/bugzilla,unee-t,CSS,true,false,false,2,true,false,true,false,29 +weburger/am-wb/am-wb-chart,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +feinfinger/feinfinger.gitlab.io,feinfinger,JavaScript,true,false,false,1,false,false,true,false,13 +precognition-llc/aeonvera,precognition-llc,Ruby,true,false,false,2,false,true,false,true,221 +alelec/future_thread,alelec,Python,true,false,false,1,false,false,true,false,24 +CoreDockWorker/CoreDockWorker.setup.public,CoreDockWorker,Shell,true,false,false,1,true,false,false,false,22 +lopin_dockerfiles/lopalpinegit,lopin_dockerfiles,,true,false,false,1,true,false,false,false,14 +angular-material-home/angular-material-home-bank,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +BestPracticesWorkgroup/UsabilityBestPractices,BestPracticesWorkgroup,TeX,true,false,false,1,false,true,false,false,14 +cosban/nebula,cosban,Go,true,false,false,2,false,true,false,false,27 +amenezes/ansible-gitlab-ci-multi-runner,amenezes,Shell,true,false,false,1,false,false,false,false,13 +chusiang/helloworld.ansible.role,chusiang,Makefile,true,false,false,1,false,true,false,false,11 +thengOS/thengos.gitlab.io,thengOS,CSS,true,false,false,1,false,false,true,false,11 +cpfr/CriticalMission.gitlab.io,cpfr,CSS,true,false,false,1,false,false,true,false,18 +demo-clusters/i2p.online,demo-clusters,,true,false,false,2,false,false,true,false,60 +Zatherz/dcr,Zatherz,Crystal,true,false,false,1,false,true,false,false,10 +druidgreeneyes/rivet-core.java,druidgreeneyes,Java,true,false,true,2,true,true,false,false,113 +nazarmx/mega,nazarmx,Rust,true,false,false,1,false,true,false,false,25 +gitlab-org/rubocop-gitlab-security,gitlab-org,Ruby,true,false,false,1,false,true,false,false,10 +karisch/docker/terraform,karisch,,true,false,false,3,true,true,false,true,41 +cosme/ai_driver,cosme,JavaScript,true,false,false,1,false,false,true,false,13 +Rdatatable/data.table,Rdatatable,C,true,false,false,5,true,true,true,false,393 +Yuri_yy/yuri_gmf,Yuri_yy,,true,false,false,2,false,true,true,false,30 +creosteanu/lambda-data-collection,creosteanu,TypeScript,true,false,false,1,false,true,false,false,20 +hexagon-soft/public/shop-demo,hexagon-soft,Java,true,false,true,1,false,true,false,false,9 +giorgioazzinnaro/giorgioazzinnaro.gitlab.io,giorgioazzinnaro,CSS,true,false,false,1,false,true,false,false,28 +daily-five/framework,daily-five,PHP,true,false,false,1,false,true,false,false,29 +nathanfaucett/rs-bezier2,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +nathanfaucett/rs-data_structure_traits,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +nathanfaucett/rs-lexer,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +joshlambert/demo-be,joshlambert,Java,true,false,true,5,true,true,true,false,88 +joshlambert/demo-app,joshlambert,Java,true,false,true,5,true,true,true,false,52 +grahamc/mac-nix-multi-user,grahamc,HTML,true,false,false,1,false,false,true,false,15 +anoneko/japari-parkman,anoneko,JavaScript,true,false,false,1,false,false,true,false,11 +TomasHubelbauer/asp-net-test,TomasHubelbauer,C#,true,false,false,1,false,true,false,false,13 +rawsec/Rawsec-website,rawsec,CSS,true,false,false,2,false,true,true,false,36 +comzeradd/vuejs-spa,comzeradd,Vue,true,false,false,1,false,false,true,false,14 +morganrallen/OSHChip_BLED,morganrallen,C,true,false,false,1,false,true,false,false,6 +AQuadro/AtacSimulator,AQuadro,HTML,true,false,false,1,false,true,false,false,10 +Molcas/doc,Molcas,TeX,true,false,false,2,true,false,false,false,80 +tobyfoord/rancher-cli,tobyfoord,,true,false,false,2,true,false,false,true,32 +westerjn/awesomesauce,westerjn,HTML,true,false,false,1,false,false,true,false,11 +hafiyyan94/MyUI,hafiyyan94,Java,true,false,false,1,false,true,false,false,16 +adrian.kozlowski/ircbot,adrian.kozlowski,Java,true,false,true,3,true,true,true,false,97 +mtchavez/ex_cc_validation,mtchavez,Elixir,true,false,false,2,false,true,false,false,40 +creare-com/tabsint,creare-com,JavaScript,true,false,false,1,false,true,false,false,9 +sigscale/ocs,sigscale,Erlang,true,false,false,3,true,true,true,false,166 +mmclaughlin/helloworld-cpp,mmclaughlin,Shell,true,false,false,1,true,false,false,false,24 +tifredfr/debserver,tifredfr,Shell,true,false,false,1,false,true,false,false,38 +fhuitelec/slides-template,fhuitelec,HTML,true,false,false,1,false,false,true,false,19 +nickdonnelly/req,nickdonnelly,Rust,true,false,false,2,false,false,false,false,16 +deployctl/deployctl,deployctl,C,true,false,false,6,true,true,false,true,228 +efnet-moto/efnet-moto.gitlab.io,efnet-moto,Makefile,true,false,false,1,false,true,false,false,9 +LazzyTeam/politsim,LazzyTeam,PHP,true,false,false,1,false,true,false,false,16 +nobodyinperson/python3-numericalmodel,nobodyinperson,Python,true,false,false,3,false,true,true,false,97 +saprykingerman/flutter-docker,saprykingerman,,true,false,false,1,false,true,false,false,12 +terramias/graph-routing,terramias,JavaScript,true,false,false,2,false,true,true,false,32 +pedrohjordao/rust-pbrt,pedrohjordao,Rust,true,false,false,2,true,true,false,false,19 +alelec/gitlab-tags-to-pip-index,alelec,Python,true,false,false,2,false,false,true,false,39 +joniogerg/RHMarioParty,joniogerg,Java,true,false,false,1,false,false,true,false,13 +isciences/wsim/wsim,isciences,R,true,false,false,3,true,true,false,true,47 +robin-good/docker-build-image,robin-good,,true,false,false,1,true,false,false,false,23 +kotmonstr/kotmonstr.ru,kotmonstr,JavaScript,true,false,false,1,false,true,false,false,7 +rocket_launcher/jekyll,rocket_launcher,Ruby,true,false,false,2,false,true,true,false,28 +dasch8/angular-ci,dasch8,,true,false,false,1,true,false,false,false,18 +ysb33rOrg/packer-gradle-plugin,ysb33rOrg,Groovy,true,false,false,3,true,true,false,true,77 +gitlab-cookbooks/gitlab_dns,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true,27 +hooksie1/ansible-prometheus,hooksie1,,true,false,false,1,false,true,false,false,8 +LTTaylor/bet,LTTaylor,JavaScript,true,false,false,1,false,false,true,false,24 +kornelski/autobatch,kornelski,JavaScript,true,false,false,1,false,true,false,false,15 +cristianvitortrucco/docker-git-nginx,cristianvitortrucco,HTML,true,false,false,2,true,false,true,false,24 +opendevise-projects/opendevise-site-generator-express,opendevise-projects,JavaScript,true,false,false,1,false,true,false,false,5 +seen/angular/seen-core,seen,JavaScript,true,false,false,2,false,true,true,false,46 +seen/test/frisby-core,seen,JavaScript,true,false,false,2,false,true,true,false,26 +flaxandteal/commandment,flaxandteal,Python,true,true,false,4,true,true,true,true,45 +JAMstack/cobalt,JAMstack,HTML,true,false,false,1,false,true,false,false,11 +dbnZA/Jita,dbnZA,C#,true,false,false,4,true,true,true,false,117 +certik/ci-images,certik,Shell,true,false,false,1,true,false,false,false,31 +lorepirri/jekyll-theme-simple-blog,lorepirri,HTML,true,false,false,2,false,true,true,false,32 +seen/angular/seen-tenant,seen,JavaScript,true,false,false,2,false,true,true,false,46 +groovy-lang/101-scripts,groovy-lang,Groovy,true,false,false,2,true,false,true,false,55 +rogeruiz/thelou,rogeruiz,JavaScript,true,false,false,1,false,true,false,false,16 +thx8411_j2ee/melodyexporter,thx8411_j2ee,Java,true,false,true,2,false,false,false,false,24 +cyberscape/amptweet/amptweet-web,cyberscape,JavaScript,true,false,false,1,false,true,false,false,10 +gitlab-examples/cross-project-java/java-frontend,gitlab-examples,Java,true,false,true,5,true,true,true,true,56 +gitlab-examples/cross-project-java/java-lib,gitlab-examples,Java,true,false,true,5,true,true,true,true,89 +arthurrump/csharpforfun,arthurrump,CSS,true,false,false,1,false,true,false,false,15 +robit.a/spatsoc,robit.a,R,true,false,false,2,false,true,false,false,34 +vijaiaeroastro/ScrapeForFun,vijaiaeroastro,Python,true,false,false,1,false,true,false,false,13 +xuhdev/optimum-shell,xuhdev,Python,true,false,false,1,false,true,false,false,21 +tmaczukin/hanging-droplets-cleaner,tmaczukin,Go,true,false,false,4,false,true,false,true,66 +Johnsoct/lemon-kiwis,Johnsoct,HTML,true,false,false,2,false,true,true,false,26 +McNase/MinecraftOfflineUUID,McNase,Ruby,true,false,false,5,false,false,false,false,82 +thesecretmaster/ChatX,thesecretmaster,Ruby,true,false,false,1,false,true,false,false,27 +node-microservice/microservice,node-microservice,TypeScript,true,false,false,1,false,true,false,false,11 +rh-kernel-stqe/python-stqe,rh-kernel-stqe,Python,true,false,false,2,false,true,true,false,54 +paddy-hack/devuan,paddy-hack,Shell,true,false,false,3,true,false,false,false,70 +kornelski/exclude_from_backups,kornelski,Rust,true,false,false,1,false,true,false,false,10 +SistemasOperativos-Ciencias-UNAM/sistemasoperativos-ciencias-unam.gitlab.io,SistemasOperativos-Ciencias-UNAM,HTML,true,false,false,1,false,false,true,false,13 +Banzyme2/django-cloud9-dokcer,Banzyme2,Python,true,true,false,4,true,true,true,true,89 +thislight/web.dart,thislight,Dart,true,false,false,1,false,true,false,false,15 +antoinentl/readme.book,antoinentl,TeX,true,false,false,3,true,true,false,false,102 +Marnes/plain-text-linker,Marnes,JavaScript,true,false,false,1,true,false,false,false,12 +librespacefoundation/satnogs/satnogs-client-ansible,librespacefoundation,Shell,true,false,false,1,false,false,false,false,20 +clavem/clavem.gitlab.io,clavem,HTML,true,false,false,2,false,false,false,false,58 +deployctl/www.deployctl.com,deployctl,HTML,true,false,false,4,true,false,false,true,105 +jrop-js/gifnoc,jrop-js,JavaScript,true,false,false,1,false,true,false,false,10 +JanGregor/async-processing-slides,JanGregor,HTML,true,false,false,1,false,false,true,false,13 +idearium/eslint-config-idearium,idearium,JavaScript,true,false,false,1,false,false,true,false,19 +mgoral/subconvert,mgoral,Python,true,true,false,2,false,true,true,false,85 +seen/java/seen-retrofit,seen,Java,true,false,true,2,false,true,true,false,45 +Jenselme/daiquiri-rollbar,Jenselme,Python,true,false,false,2,false,true,false,false,28 +zg2pro/cv.gregory.anne,zg2pro,CSS,true,false,false,2,true,false,true,false,36 +chillcoding-at-the-beach/I-love,chillcoding-at-the-beach,Kotlin,true,false,false,1,true,false,false,false,61 +fast_pixelated_detectors/fpd_data_processing,fast_pixelated_detectors,,true,false,false,1,false,false,true,false,31 +modle-share/knights-of-something-notable,modle-share,Java,true,false,false,3,true,true,true,false,42 +EwneoN/Queste,EwneoN,C#,true,false,false,3,true,true,true,false,79 +gtauzin/metaLBM_private,gtauzin,C++,true,false,false,1,false,true,false,false,8 +kyaniheessels/cashflow,kyaniheessels,JavaScript,true,false,false,2,true,false,true,false,65 +tref/demo-no-ops-lando,tref,PHP,true,false,false,8,false,false,false,false,201 +craigbarnes/craigbarnes.gitlab.io,craigbarnes,Makefile,true,false,false,1,true,false,false,false,8 +ilya2306/siv-boilerplate,ilya2306,JavaScript,true,false,false,3,false,true,false,false,31 +cjvnjde/psychopathy-online,cjvnjde,JavaScript,true,false,false,4,true,true,true,true,61 +redpop/gulp-firestarter,redpop,JavaScript,true,false,false,1,false,true,false,false,35 +t-munk/gipsy,t-munk,,true,false,false,1,false,true,false,false,5 +nicosingh/rpi-openvpn-keygenerator,nicosingh,Shell,true,false,false,2,false,false,false,false,55 +nicosingh/rpi-openvpn-server,nicosingh,,true,false,false,2,false,false,false,false,55 +nicosingh/rpi-fr24feed,nicosingh,Shell,true,false,false,2,false,false,false,false,55 +alxrem/html2tg,alxrem,Go,true,false,false,1,false,true,false,false,9 +frederikcreemers/frederikcreemers.be,frederikcreemers,JavaScript,true,false,false,1,false,true,false,false,10 +circuit-simulator/documentation,circuit-simulator,TeX,true,false,false,1,false,true,false,false,12 +Urosch/knjige,Urosch,,true,false,false,1,false,false,true,false,11 +berublan/vscode-log-viewer,berublan,TypeScript,true,false,false,2,true,true,false,false,46 +cheminfIBB/tfbio,cheminfIBB,Python,true,false,false,1,false,true,false,false,11 +rubemlrm/laravel,rubemlrm,PHP,true,false,false,1,false,true,false,false,82 +brianegan/flutter_redux_dev_tools,brianegan,Dart,true,false,false,1,false,true,false,false,11 +electronic-gulden-foundation/egulden,electronic-gulden-foundation,C++,true,false,false,2,true,true,false,false,174 +jkarteaga/hugo,jkarteaga,HTML,true,false,false,1,false,true,false,false,16 +monks.de/ember-filter-sort,monks.de,JavaScript,true,false,false,2,false,true,true,false,28 +ercom/rats-pkg,ercom,C,true,false,false,1,true,false,false,false,13 +x2v3/CallBlocker,x2v3,Java,true,false,false,2,true,true,false,false,39 +deployctl/github_go_release2rpm,deployctl,Shell,true,false,false,3,true,false,true,false,121 +canarduck/systranio,canarduck,Python,true,true,false,2,false,true,true,false,45 +dhanar_santika/lab-01,dhanar_santika,JavaScript,true,false,false,2,false,true,true,false,38 +zero-gravity/zero-gravity-cms,zero-gravity,PHP,true,false,false,1,false,true,false,false,57 +zero-gravity/zero-gravity-cms-bundle,zero-gravity,PHP,true,false,false,1,false,true,false,false,57 +friss-robotics/backend,friss-robotics,JavaScript,true,false,false,1,false,true,false,false,20 +classiga/classiga,classiga,Java,true,false,true,2,true,false,true,false,27 +stanleys97/git-introduction-tutorial,stanleys97,Python,true,true,false,2,false,true,true,false,31 +luqi/PPW-Tutorial,luqi,JavaScript,true,false,false,2,false,true,true,false,39 +eosio/eos,eosio,C++,true,false,false,1,false,true,false,false,7 +nickdonnelly/horus-server,nickdonnelly,Rust,true,false,false,1,false,false,false,false,9 +Didou/poc_ci,Didou,PHP,true,false,false,4,true,true,true,false,111 +juanfperezperez/ip-and-network-calculator-module,juanfperezperez,PowerShell,true,false,false,4,true,true,true,false,99 +engell/engell.gitlab.io,engell,HTML,true,false,false,1,false,true,false,false,14 +guildship/guildship,guildship,Elixir,true,false,false,1,false,true,false,false,66 +davidhsianturi/laravel-test-deploy,davidhsianturi,PHP,true,false,false,2,false,true,true,false,40 +ulm0/graphql-docker-api,ulm0,Go,true,false,false,3,true,false,false,false,85 +nbs-it/ng-ui-library,nbs-it,JavaScript,true,false,false,1,true,false,false,false,12 +iron-oxide/cogwheel,iron-oxide,Rust,true,false,false,3,true,true,true,false,64 +myrrlyn/endian_trait,myrrlyn,Rust,true,false,false,1,false,true,false,false,7 +lbexresearch/populate,lbexresearch,Python,true,false,false,1,false,false,false,false,25 +ibnufirdaus/Labs,ibnufirdaus,Python,true,true,false,2,false,true,true,false,38 +ercom/android-emulator,ercom,Shell,true,false,false,1,true,false,false,false,18 +ciemat-psa/surf-simulator,ciemat-psa,CSS,true,false,false,2,false,true,true,false,27 +rafiedharmawan/rafie-Lab,rafiedharmawan,JavaScript,true,false,false,2,false,true,true,false,38 +IonicZoo/chameleon-mask-directive,IonicZoo,TypeScript,true,false,false,1,false,false,true,false,12 +pdftools/python-ghostscript,pdftools,Python,true,true,false,2,true,true,false,false,45 +ubunturox104/imagenes,ubunturox104,CSS,true,false,false,1,false,true,false,false,14 +arkthusk/Lab_ppw_02,arkthusk,Python,true,true,false,2,false,true,true,false,38 +smallstack/infrastructure/smallstack-webpage-renderer,smallstack,JavaScript,true,false,false,1,true,false,false,false,25 +seen/angular/seen-shop,seen,JavaScript,true,false,false,2,false,true,true,false,46 +seen/angular/seen-assort,seen,JavaScript,true,false,false,2,false,true,true,false,43 +AlexTEko/monitor.home,AlexTEko,HTML,true,false,false,1,false,true,false,false,12 +AlexTEko/pmx-console,AlexTEko,Python,true,true,false,1,false,true,false,false,16 +ralt/isoostrap,ralt,CommonLisp,true,false,false,1,false,true,false,false,74 +noraj/nvd_api,noraj,Ruby,true,false,false,2,false,true,true,false,55 +kristiantokt/repo-ppw,kristiantokt,JavaScript,true,false,false,2,false,true,true,false,39 +SvdLeegte/Varifyfirst,SvdLeegte,HTML,true,false,false,1,false,true,false,false,16 +Ekt0s/android-boilerplate,Ekt0s,Java,true,false,false,2,true,true,false,false,54 +PPW-2017/ppw-lab-ki,PPW-2017,Python,true,true,false,2,false,true,true,false,27 +hop23typhu/baseapp,hop23typhu,JavaScript,true,false,false,9,true,true,false,true,543 +bmgaynor/react-16-presentation,bmgaynor,JavaScript,true,false,false,3,true,true,true,false,45 +nathanfaucett/rs-specs_time,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +RLesur/bookdown-gitlab-pages,RLesur,HTML,true,false,false,1,false,false,true,false,11 +cslucr/ubuntu-ucr,cslucr,Shell,true,false,false,1,false,true,false,false,41 +vise890/parseq,vise890,Clojure,true,false,false,2,false,true,true,false,24 +openvm/console,openvm,HTML,true,false,false,1,false,true,false,false,16 +cw-andrews/url_utm_combinator,cw-andrews,Python,true,true,false,1,false,true,false,false,7 +zanny/oidc-reqwest,zanny,Rust,true,false,false,1,false,true,false,false,9 +ledangfamily/duyle.gitlab.io,ledangfamily,JavaScript,true,false,false,1,false,true,false,false,11 +jpsamaroo/Tasklets.jl,jpsamaroo,Julia,true,false,false,1,false,true,false,false,5 +datenstrom/home,datenstrom,Nix,true,false,false,2,false,true,true,false,24 +geoffrey-grebert/sii-spring,geoffrey-grebert,Java,true,false,true,6,true,true,true,false,269 +tomarashish/taxonomyCompare,tomarashish,JavaScript,true,false,false,1,false,false,true,false,11 +alcrsg/blog,alcrsg,HTML,true,false,false,1,false,true,false,false,16 +IonicZoo/pigeon-restful-provider,IonicZoo,TypeScript,true,false,false,2,true,false,true,false,46 +IonicZoo/eagle-map-component,IonicZoo,TypeScript,true,false,false,1,false,false,true,false,12 +IonicZoo/ioniczoo.gitlab.io,IonicZoo,HTML,true,false,false,1,false,false,true,false,11 +librespacefoundation/satnogs/satnogs-rotator-firmware,librespacefoundation,C++,true,false,false,1,false,true,false,false,23 +cw-andrews/project_template,cw-andrews,Python,true,true,false,1,false,true,false,false,7 +gitlab-pkg/gitlab-vault,gitlab-pkg,Makefile,true,false,false,3,true,false,false,true,47 +rust-algorithms/queues,rust-algorithms,Rust,true,false,false,2,true,true,false,false,58 +gitlab-com/gl-infra/gitlab-patcher,gitlab-com,Go,true,false,false,1,false,true,false,false,23 +incaper/sispreco,incaper,PHP,true,false,false,2,true,true,false,false,42 +paololaurenti_cp/paololaurenti_cp.gitlab.io,paololaurenti_cp,CSS,true,false,false,2,false,true,true,false,34 +cw-andrews/hug_test,cw-andrews,Python,true,true,false,1,false,true,false,false,7 +croosen/my-personal-website,croosen,CSS,true,false,false,3,true,true,true,false,31 +brilliant-data/d3brush-frelard,brilliant-data,CSS,true,false,false,1,false,false,true,false,13 +angular-material-dashboard/apps/amd-siteonclouds,angular-material-dashboard,JavaScript,true,false,false,2,true,false,true,false,38 +javatar-2017-2018/manadium-laravel,javatar-2017-2018,PHP,true,false,false,1,false,true,false,false,41 +schedule4j/schedule4j-cron,schedule4j,,true,false,true,1,false,true,false,false,15 +graphviz/graphviz.gitlab.io,graphviz,HTML,true,false,false,2,false,true,true,false,32 +eigan/mediasort,eigan,PHP,true,false,false,1,false,true,false,false,32 +Project-FiFo/FiFo/howl,Project-FiFo,Erlang,true,false,false,2,false,true,false,false,99 +Project-FiFo/FiFo/cerberus,Project-FiFo,JavaScript,true,false,false,2,false,true,false,false,77 +Project-FiFo/DalmatinerDB/dalmatinerpx,Project-FiFo,Erlang,true,false,false,2,false,true,false,false,102 +Project-FiFo/DalmatinerDB/dalmatinerfe,Project-FiFo,JavaScript,true,false,false,2,false,true,false,false,102 +Project-FiFo/DalmatinerDB/bitmap,Project-FiFo,Erlang,true,false,false,4,false,false,false,false,59 +ismail-s/my-build-your-own-lisp,ismail-s,C,true,false,false,2,true,true,false,false,46 +bottroper-werkstatt-cvjm/bottroper-werkstatt-cvjm.gitlab.io,bottroper-werkstatt-cvjm,Haskell,true,false,false,1,false,true,false,false,22 +openvm/openvm,openvm,Go,true,false,false,3,true,true,false,false,50 +Nicd/mbu,Nicd,Elixir,true,false,false,1,false,true,false,false,11 +sampadashboard/infocity,sampadashboard,Ruby,true,false,false,1,false,true,false,false,30 +asqatasun-websites/www-asqatasun-org,asqatasun-websites,CSS,true,false,false,1,false,true,false,false,16 +mmmickmason2/ether-router-master,mmmickmason2,JavaScript,true,false,false,7,true,true,false,true,408 +Conan_Kudo/snapcore-mkrpmtree,Conan_Kudo,Python,true,false,false,1,true,false,false,false,40 +laai/website,laai,HTML,true,false,false,2,false,false,true,false,31 +willhallonline/demo-project,willhallonline,PHP,true,false,false,1,false,true,false,false,35 +uts-magic-lab/react-ros-boilerplate,uts-magic-lab,JavaScript,true,false,false,1,false,true,false,false,18 +gt8/open-source/elixir/eidetic,gt8,Elixir,true,false,false,3,true,true,false,false,31 +gt8/open-source/elixir/eidetic-eventstore-mongodb,gt8,Elixir,true,false,false,3,false,false,false,false,53 +tripetto/blocks/boilerplate,tripetto,JavaScript,true,false,false,1,false,false,false,false,20 +tslocum/medinet,tslocum,Go,true,false,false,2,true,false,false,false,26 +geoffrey-grebert/pgadmin4-importer,geoffrey-grebert,C++,true,false,false,3,true,true,false,false,33 +bplatta/proto-api,bplatta,Python,true,true,false,5,true,true,false,false,126 +vise890/zookareg,vise890,Clojure,true,false,false,2,false,true,true,false,24 +improbible/landing-page,improbible,CSS,true,false,false,1,true,false,false,false,31 +Avris/Dotenv,Avris,PHP,true,false,false,1,false,true,false,false,5 +lebrad/lebrad.gitlab.io,lebrad,CSS,true,false,false,2,false,true,true,false,27 +training-telkomsigma-201710/catalog,training-telkomsigma-201710,Java,true,false,true,2,true,false,true,false,36 +RomanowAlex/deploy,RomanowAlex,Java,true,false,false,2,true,false,true,false,21 +municz/books.rb,municz,Ruby,true,false,false,1,false,true,false,false,32 +txl/home,txl,CSS,true,false,false,1,false,false,true,false,13 +txl/resumeold,txl,CSS,true,false,false,1,false,false,true,false,13 +eSpace-epfl/rospace/core,eSpace-epfl,Python,true,false,false,1,false,true,false,false,55 +tjvb/testreportmixer,tjvb,PHP,true,false,false,1,false,true,false,false,47 +tripetto/demo,tripetto,TypeScript,true,false,false,1,false,false,false,false,18 +sebuah-grup/PPWDioBrando,sebuah-grup,Python,true,true,false,2,false,true,true,false,39 +KelompokB10PPW2017/konekin,KelompokB10PPW2017,CSS,true,false,false,2,false,true,true,false,60 +mrifqifathurrahman/tugas1kelompokppw,mrifqifathurrahman,CSS,true,false,false,2,false,true,true,false,52 +noraj/ruby-cheatsheet,noraj,,true,false,false,1,false,true,false,false,17 +PRTG/Device-Templates/Checkpoint,PRTG,,true,false,false,1,true,false,false,false,33 +dhanar_santika/Tugas-1-PPW-C-14,dhanar_santika,JavaScript,true,false,false,2,false,true,true,false,30 +serpro/gamification-dashboard,serpro,CSS,true,false,false,2,true,true,false,false,76 +nexthub-br/nexthub.com.br,nexthub-br,CSS,true,false,false,1,false,false,true,false,11 +nav/the-snake-pipeline,nav,JavaScript,true,false,false,2,false,true,true,false,25 +jimsy/ip,jimsy,Elixir,true,false,false,1,false,true,false,false,32 +Calinou/godot-builds,Calinou,Batchfile,true,false,false,4,true,true,true,false,175 +mxklb/cuteproject,mxklb,Shell,true,false,false,5,true,true,true,true,136 +arthurzinck/site-cv17,arthurzinck,HTML,false,false,false,0,false,false,false,false,1 +dosshell/tinycsockets,dosshell,C++,true,false,false,1,false,true,false,false,53 +tollyx/tollyx.gitlab.io,tollyx,CSS,true,false,false,1,false,true,false,false,18 +tenzing/shared-array,tenzing,C,true,false,false,2,true,false,true,false,47 +griest/pokeplayer,griest,JavaScript,true,false,false,3,true,true,true,false,61 +tripetto/examples/react,tripetto,TypeScript,true,false,false,1,false,true,false,false,18 +gitlab-com/ci-prometheus-configuration,gitlab-com,,true,false,false,2,false,true,false,false,36 +judahnator/isjudahonfire,judahnator,HTML,true,false,false,1,false,true,false,false,8 +chvanikoff/mnesia-demo,chvanikoff,Elixir,true,false,false,1,true,false,false,false,18 +novy4/telegram-bot,novy4,Python,true,false,false,3,true,true,true,false,147 +PushTheLimits/Sourcemod/RoundEndEnforcer,PushTheLimits,SourcePawn,true,false,false,1,true,false,false,false,17 +reading-room/www,reading-room,Go,true,false,false,1,true,false,false,false,19 +BuildStream/bst-external,BuildStream,Python,true,false,false,5,false,true,false,false,206 +zyrthofar/immutable,zyrthofar,Ruby,true,false,false,1,false,true,false,false,17 +libertarian-party/party_website,libertarian-party,Ruby,true,false,false,4,false,true,true,false,59 +guiriduro/pyra,guiriduro,Python,true,true,false,8,true,true,false,true,441 +ibcomputing/ibcomputing.gitlab.io,ibcomputing,CSS,true,false,false,1,false,true,false,false,9 +toni.martincic/Eureka,toni.martincic,JavaScript,true,false,true,1,true,false,false,false,14 +evman/environment,evman,Shell,true,false,false,1,true,false,false,false,13 +freedesktop-sdk/json2bst,freedesktop-sdk,Python,true,false,false,4,true,true,false,false,61 +uit-sfb/jobmanager,uit-sfb,Java,true,false,true,3,true,true,true,false,97 +nathanfaucett/rs-specs_guided_join,nathanfaucett,Rust,true,false,false,1,false,true,false,false,7 +waterkip/webservice-overheidio,waterkip,Perl,true,false,false,1,false,true,false,false,10 +nathanfaucett/rs-specs_sprite,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +isf-traffic/isf-traffic.gitlab.io,isf-traffic,HTML,true,false,false,3,true,false,true,false,88 +VV5/climate-change,VV5,Vue,true,false,false,1,false,true,false,false,14 +TortueMat/simple_lib,TortueMat,Python,true,false,false,2,true,true,false,false,20 +zyrthofar/api_errors,zyrthofar,Ruby,true,false,false,1,false,true,false,false,13 +aleks001/haproxy18-centos,aleks001,Shell,true,false,false,1,false,true,false,false,18 +openchess/openchessdb,openchess,Kotlin,true,false,false,2,true,true,false,false,34 +freshcode-public/i-video-editor,freshcode-public,TypeScript,true,false,false,4,true,true,true,true,88 +eyeo/websites/help.eyeo.com,eyeo,CSS,true,false,false,2,true,false,true,false,57 +Dragas/Khan-4,Dragas,Kotlin,true,false,false,2,true,true,false,false,46 +flat-galaxy/flattrack,flat-galaxy,Python,true,true,false,1,false,true,false,false,11 +sumner/offlinemsmtp,sumner,Python,true,false,false,5,true,true,true,true,74 +lisp-journey/lisp-journey.gitlab.io,lisp-journey,Makefile,true,false,false,1,false,true,false,false,14 +gitlab-escuela-it/pruebas-clase-2,gitlab-escuela-it,,true,false,false,3,true,true,true,false,33 +energyincities/python-ehub,energyincities,Python,true,true,false,1,false,true,false,false,25 +doerfli/wo-ist,doerfli,Kotlin,true,false,false,1,true,false,false,false,54 +harbottle/omnibus-bolt,harbottle,Ruby,true,false,false,2,true,false,false,true,176 +Samantha.ai/Samantha.jl,Samantha.ai,Julia,true,false,false,1,false,true,false,false,8 +cyphercodes/GitlabApp,cyphercodes,TypeScript,true,false,false,1,false,false,true,false,16 +rafaelff/scripts,rafaelff,Shell,true,false,false,1,false,true,false,false,6 +ilovedevops/my-project-1,ilovedevops,,true,false,false,3,true,true,true,false,36 +KimSumac/BlogKim,KimSumac,HTML,true,false,false,1,false,true,false,false,17 +marius-rizac/docker-manager,marius-rizac,PHP,true,false,false,2,true,true,false,false,28 +00dani/lemoncurry,00dani,Python,true,false,false,1,false,true,false,false,21 +ndevox/nick.sarbicki.com,ndevox,Python,true,true,false,1,true,false,false,false,19 +cfmm/dcmproxy,cfmm,C++,true,false,false,1,true,false,false,false,33 +nathanfaucett/rs-rand_num_gen,nathanfaucett,Rust,true,false,false,1,false,true,false,false,7 +pantacor/docs,pantacor,,true,false,false,3,true,false,true,false,69 +rogerclotet/amicinvisible-server,rogerclotet,Go,true,false,false,2,false,true,true,false,55 +ikruchkov0/med-reg,ikruchkov0,C#,true,false,false,1,true,false,false,false,11 +seftp/SeFTP,seftp,Go,true,false,false,1,true,false,false,false,28 +CLARIN-ERIC/docker-solr,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true,42 +pipeline-patterns/django-cloudfoundry,pipeline-patterns,Python,true,true,false,3,false,true,true,false,103 +do-lagos-meetup/ansible-demo,do-lagos-meetup,Ruby,true,false,false,1,false,false,true,false,29 +do-lagos-meetup/terraform-demo,do-lagos-meetup,HCL,true,false,false,2,false,false,true,false,37 +goern/bn-bruecken,goern,JavaScript,true,false,false,4,false,true,true,true,61 +atsaloli/cicd,atsaloli,CSS,false,false,false,0,false,false,false,false,1 +petervaro/pcd,petervaro,Python,true,true,false,1,false,true,false,false,10 +6uellerBpanda/check_pve,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false,15 +w4tweaks/wiki,w4tweaks,,true,false,false,1,false,true,false,false,17 +starshell/question,starshell,Rust,true,false,false,4,true,true,true,false,138 +gt8/open-source/elixir/bungee,gt8,Elixir,true,false,false,4,false,true,false,false,70 +i-tre-brutti/beholder,i-tre-brutti,Go,true,false,false,2,true,true,false,false,32 +lievendoclo/project-kali-server,lievendoclo,Kotlin,true,false,false,2,true,false,false,true,63 +bennyp/math-canvas,bennyp,HTML,true,false,false,1,false,false,false,false,80 +PhysikP-Seminar/CNC,PhysikP-Seminar,Python,true,true,false,2,true,true,false,false,16 +waylon531/wayless,waylon531,Rust,true,false,false,2,true,true,false,false,44 +yorickpeterse/yorickpeterse.com,yorickpeterse,CSS,true,false,false,3,false,false,true,true,69 +canarduck/flumel,canarduck,Python,true,true,false,2,false,true,true,false,77 +shadowburn/shadowburn,shadowburn,Elixir,true,false,false,1,false,true,false,false,19 +kimlab/jobsubmitter,kimlab,Python,true,false,false,4,true,true,true,false,174 +avernois/nossl.eu,avernois,HTML,true,false,false,1,false,false,true,false,11 +mark.underseth/sandbox,mark.underseth,,true,false,false,1,false,true,false,false,15 +moueza/autowired,moueza,Java,true,false,false,1,true,false,false,false,26 +kornelski/openmp-rs,kornelski,Rust,true,false,false,1,false,true,false,false,10 +thelamer/taisun-gateway,thelamer,JavaScript,true,false,false,1,true,false,false,false,18 +zinaliev/testbed,zinaliev,Java,true,false,false,1,false,false,false,false,23 +CLARIN-ERIC/docker-alpine-supervisor-java-tomcat-base,CLARIN-ERIC,Shell,true,false,false,3,true,true,false,true,42 +quantr/toolchain/Assembler,quantr,Java,true,false,true,3,true,true,true,false,31 +pwmc/gsvgtk,pwmc,HTML,true,false,false,2,true,false,true,false,48 +RyDroid/proxy-php,RyDroid,PHP,true,false,false,1,false,false,false,false,35 +thelamer/taisun-dyndns,thelamer,Shell,true,false,false,1,true,false,false,false,18 +casette/sauna-project,casette,HTML,true,false,false,2,true,true,false,false,62 +offa/ci-playground,offa,,true,false,false,1,false,true,false,false,12 +offa/docker-images,offa,Shell,true,false,false,5,false,false,false,true,168 +cha-node/ng,cha-node,,true,false,false,2,false,false,false,false,105 +cha-node/ng-testplat,cha-node,Shell,true,false,false,3,false,false,false,false,108 +althonos/compiler,althonos,OCaml,true,false,false,1,false,true,false,false,16 +yethiel/RVDocs,yethiel,HTML,true,false,false,1,false,false,true,false,11 +optimisedlabs/slackhook,optimisedlabs,Swift,true,false,false,5,false,false,false,false,53 +petervaro/fixer,petervaro,D,true,false,false,1,false,true,false,false,11 +commonshost/cache-digest-koel,commonshost,JavaScript,true,false,false,1,false,true,false,false,8 +xylok/networkparse,xylok,Python,true,true,false,3,true,true,true,false,43 +MasterProject/MasterProject,MasterProject,Java,true,false,true,2,true,false,false,false,28 +fruits.confits/qt-builder,fruits.confits,QMake,true,false,false,3,true,true,false,true,61 +jorge.suit/user-auth-jsonrpc,jorge.suit,JavaScript,true,false,false,1,false,true,false,false,24 +offa/plug,offa,C++,true,false,false,2,true,false,false,false,124 +terrasubmersa/terra-submersa-portal,terrasubmersa,Scala,true,false,false,9,true,false,false,false,240 +binero/mpw-gtk,binero,Rust,true,false,false,1,false,true,false,false,11 +gis23/search_engine,gis23,Python,true,false,false,3,true,true,true,false,92 +NAdamo/metujump01-blog,NAdamo,HTML,true,false,false,1,false,false,true,false,13 +islands-wars/guidelines,islands-wars,CSS,true,false,false,1,false,false,true,false,9 +pidila/checklist-pidila,pidila,JavaScript,true,false,false,2,false,true,true,false,20 +colic.christian/bfh-telematik-c,colic.christian,C,true,false,false,1,true,false,false,false,16 +adbci/marketPlace,adbci,PHP,true,false,false,2,true,true,false,false,17 +chrispappas/laravel-ci-cd-demos,chrispappas,PHP,true,false,false,1,false,true,false,false,66 +stephane.arrami/flexbox,stephane.arrami,HTML,true,false,false,1,false,false,true,false,11 +signal9/chrome_remote,signal9,C++,true,false,false,1,false,true,false,false,28 +toon/lisa,toon,Go,true,false,false,2,false,false,true,false,28 +loppear/social-coop-policies,loppear,,true,false,false,1,false,false,true,false,25 +jgarr/k8os,jgarr,Makefile,true,false,false,1,false,true,false,false,13 +nolith/codeclimate-gocyclo,nolith,Go,true,false,false,3,true,true,false,true,72 +nilenso/relay-ops,nilenso,HTML,true,false,false,3,false,false,false,false,110 +dartika/laravel-gitlab-envoy-deploy,dartika,HTML,true,false,false,2,false,true,true,false,42 +sam-uq/luqness,sam-uq,C++,true,false,false,3,true,true,false,false,57 +sam-uq/sphinx,sam-uq,C++,true,false,false,4,true,false,true,false,94 +nathannAttendPas/dysapps,nathannAttendPas,HTML,true,false,false,1,false,false,true,false,11 +lambdait/mai-schedule-vk,lambdait,Python,true,true,false,1,false,true,false,false,28 +Toby56/Calcifer-Old,Toby56,Python,true,false,false,1,false,false,true,false,11 +deepin-espanol/deepin-espanol.gitlab.io,deepin-espanol,HTML,true,false,false,2,false,true,true,false,30 +debops/debops,debops,Shell,true,false,false,8,false,true,false,false,1782 +ckhurewa/pyroot-zen,ckhurewa,Python,true,false,false,2,false,true,true,false,44 +dziki/lb-service-haproxy,dziki,,true,false,false,2,true,false,true,false,25 +ExtropicStudios/trilithon,ExtropicStudios,PHP,true,false,false,1,false,true,false,false,21 +diegomartincorrea/diegomartincorrea.gitlab.io,diegomartincorrea,HTML,true,false,false,1,false,false,true,false,11 +vladgo/build-nginx,vladgo,Shell,true,false,false,2,false,false,false,false,47 +shivrajbisht/gitlab-test,shivrajbisht,Shell,true,false,false,1,false,true,false,false,8 +nilenso/relay-chat.com,nilenso,HTML,true,false,false,1,false,false,true,false,11 +n11t/tombola,n11t,PHP,true,false,false,3,true,false,false,false,39 +dirn/flake8-confusables,dirn,Python,true,false,false,1,false,true,false,false,38 +LineageOS/infra/builds-ui,LineageOS,Python,true,true,false,3,true,true,true,false,85 +mixingrid/grid,mixingrid,HTML,true,false,false,1,false,false,true,false,13 +thatscloud/pubj,thatscloud,Java,true,false,false,4,true,true,false,true,53 +CycleOfTheAbsurd/inf3135-aut2017-tp3,CycleOfTheAbsurd,C,true,false,false,1,true,false,false,false,13 +victorm95/express-todo,victorm95,JavaScript,true,false,false,1,false,true,false,false,10 +ilpianista/arch-audit,ilpianista,Rust,true,false,false,1,false,true,false,false,8 +stefanotorresi/php-hello,stefanotorresi,PHP,true,false,false,2,true,true,false,false,37 +open-source-devex/toolbox,open-source-devex,Shell,true,false,false,1,false,false,false,true,28 +HearthProject/Hearth,HearthProject,C#,true,false,false,1,true,false,false,false,6 +xapix/clj-soap,xapix,Clojure,true,false,false,1,false,true,false,false,18 +eclufsc/eda/ophidian_project_template,eclufsc,CMake,true,false,false,1,true,false,false,false,89 +icecream95/mastodon-fortune-bot,icecream95,Shell,true,false,false,1,false,true,false,false,11 +wolphin/prometheus-export,wolphin,Go,true,false,false,1,true,false,false,false,26 +VictLecl/2Movies1Actor_android,VictLecl,Java,true,false,false,2,true,true,false,false,56 +nkls/memoize-last,nkls,TypeScript,true,false,false,2,false,true,false,true,30 +wolphin/wolphin.fluentd,wolphin,Ruby,true,false,false,1,true,false,false,false,25 +wolphin/wolphin.telegraf,wolphin,Shell,true,false,false,1,true,false,false,false,25 +wolphin/eventpile,wolphin,Go,true,false,false,1,true,false,false,false,29 +wolphin/wolphin.parallel,wolphin,,true,false,false,1,true,false,false,false,26 +wolphin/wolphin.cli,wolphin,Python,true,false,false,1,true,false,false,false,26 +wolphin/wolphin.etl,wolphin,Python,true,false,false,1,true,false,false,false,25 +wolphin/wolphin.admin,wolphin,JavaScript,true,false,false,2,true,true,false,false,60 +ercom/docker,ercom,Shell,true,false,false,1,true,false,false,false,25 +i-tre-brutti/terraformer,i-tre-brutti,Go,true,false,false,2,true,true,false,false,27 +beardedio/terraria,beardedio,Shell,true,false,false,1,true,false,false,false,26 +epicdocker/bloonix_server,epicdocker,Smarty,true,false,false,3,true,false,false,true,85 +Callahan93/headless,Callahan93,Python,true,false,false,3,false,true,true,false,117 +i-tre-brutti/common,i-tre-brutti,Go,true,false,false,2,true,true,false,false,25 +rilis/rilis,rilis,JavaScript,true,false,false,1,false,false,true,false,27 +alphaDev/libTimeSeries,alphaDev,Java,true,false,true,1,false,true,false,false,51 +web3-sh/web3,web3-sh,Shell,true,false,false,1,false,true,false,false,106 +open-source-devex/containers/build-packer,open-source-devex,Shell,true,false,false,3,true,true,false,true,55 +opentransitmap/public-transport-enabler,opentransitmap,Java,true,false,false,2,true,false,false,false,39 +barrel-db/memstore,barrel-db,Erlang,true,false,false,1,false,true,false,false,6 +KelompokB10PPW2017/konekin-enterprise,KelompokB10PPW2017,JavaScript,true,false,false,2,false,true,true,false,60 +C0DK/refcoin,C0DK,Python,true,true,false,2,false,false,false,false,28 +pcuisinaud/auth-service,pcuisinaud,Java,true,false,true,2,true,true,false,false,35 +covcom/continuous-integration-example,covcom,JavaScript,true,false,false,3,false,false,false,false,80 +seen/angular/seen-elearn,seen,JavaScript,true,false,false,2,false,true,true,false,46 +datadrivendiscovery/tests-data,datadrivendiscovery,Python,true,false,false,1,true,false,false,false,42 +jredmond/ld40,jredmond,Lua,true,false,false,1,false,true,false,false,10 +metapensiero/metapensiero.sqlalchemy.asyncpg,metapensiero,Python,true,true,false,2,false,true,false,false,72 +Pyrex-FWI/DeejayPoolBundle,Pyrex-FWI,PHP,true,false,false,1,false,true,false,false,17 +Pyrex-FWI/sapar-id3,Pyrex-FWI,PHP,true,false,false,2,false,false,false,true,47 +wolphin/wolphin.win,wolphin,Python,true,false,false,2,true,true,false,false,137 +role_unit/role_unit,role_unit,Shell,true,false,false,3,false,false,false,false,61 +Elypia/Alexis,Elypia,Java,true,false,false,5,false,true,false,false,69 +Elypia/Elypiai,Elypia,Java,true,false,false,3,true,true,true,false,44 +sebuah-grup/PPWKirito,sebuah-grup,Python,true,true,false,2,false,true,true,false,39 +showcheap/adonis-demo,showcheap,JavaScript,true,false,false,1,false,true,false,false,12 +nathanfaucett/rs-polygon2,nathanfaucett,Rust,true,false,false,1,false,true,false,false,7 +xiangpeng.wu/ThirdProject,xiangpeng.wu,,true,false,false,1,false,true,false,false,25 +venkateshd/blog,venkateshd,HTML,true,false,false,1,false,false,true,false,12 +encircle360/iri,encircle360,Java,true,false,true,2,true,false,false,false,34 +MengZn/gitlab-ci-ansible,MengZn,HTML,true,false,false,5,true,true,true,true,92 +dsncode/FileManager,dsncode,Java,true,false,true,3,true,true,true,false,50 +tuxaua/kafka-connect-ftp,tuxaua,Scala,true,false,false,1,false,true,false,false,8 +xygeng/jaguar,xygeng,Java,true,false,true,1,false,true,false,false,4 +tacoprophet/slf4j-esapi,tacoprophet,Java,true,false,true,2,false,true,true,false,39 +the-casual-trade-and-fun-server/server-manager,the-casual-trade-and-fun-server,F#,true,false,false,2,true,true,false,false,76 +eQuation/jekyll-website,eQuation,CSS,true,false,false,2,true,false,true,false,25 +archbuild/packages/firefox-nightly,archbuild,Shell,true,false,false,1,false,false,false,false,44 +VV5/vietnam-war,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +open-source-devex/terraform-modules/aws/ecs-cluster,open-source-devex,HCL,true,false,false,2,true,false,false,true,35 +VV5/world-war-two,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +alibitek-flutter/flutter-docker-images,alibitek-flutter,,true,false,false,1,true,false,false,false,21 +tjvb/laravel-mail-catchall,tjvb,PHP,true,false,false,2,false,true,false,false,135 +marcheing/spn,marcheing,C++,true,false,false,1,true,false,false,false,21 +sanpi/effitask,sanpi,Rust,true,false,false,1,false,true,false,false,23 +Sylhare/integration-tests,Sylhare,,true,false,false,3,true,true,true,false,39 +gt8/open-source/elixir/eidetic-plug,gt8,Elixir,true,false,false,3,true,true,false,false,35 +uniqx/provi,uniqx,Python,true,false,false,1,false,true,false,false,9 +jbarascut/blog,jbarascut,HTML,true,false,false,1,false,true,false,false,20 +adamzelycz/cms42,adamzelycz,CSS,true,false,false,2,false,false,true,false,70 +dietsoda/yail,dietsoda,Java,true,false,true,1,false,false,true,false,64 +slon/shad-ts,slon,Python,true,true,false,1,false,true,false,false,12 +mattbell87/spin-the-wheel,mattbell87,JavaScript,true,false,false,2,false,true,true,false,29 +jsonsonson/wily-cli,jsonsonson,JavaScript,true,false,false,4,false,true,false,false,60 +Arasto/gitlabinlemningenenn,Arasto,Java,true,false,true,1,false,true,false,false,5 +Svensson92/RobinSvensson,Svensson92,Java,true,false,true,1,false,true,false,false,5 +gitlab-pkg/gitlab-gitaly,gitlab-pkg,Makefile,true,false,false,3,true,false,false,true,41 +xapix/cnvrt,xapix,Clojure,true,false,false,1,false,true,false,false,9 +taichunmin/progit2-zh-tw,taichunmin,CSS,true,false,false,3,true,false,true,true,56 +moorepants/skijumpdesign,moorepants,Python,true,true,false,1,false,true,false,false,48 +quentin.rillet/cv,quentin.rillet,VisualBasic,true,false,false,2,true,false,true,false,55 +thomasscottterry121/Compiler,thomasscottterry121,C#,true,false,false,1,true,false,false,false,11 +vilmosnagy/restdea,vilmosnagy,Kotlin,true,false,false,1,true,false,false,false,22 +jordankueh/slackr,jordankueh,Go,true,false,false,2,true,true,false,false,121 +Ritubh/kubernetes,Ritubh,Ruby,true,false,false,2,true,true,false,false,379 +bdjnk/js-aoc,bdjnk,JavaScript,true,false,false,1,false,false,true,false,11 +IAI-GL3-17-18/TP-SIG-GROUPE-2,IAI-GL3-17-18,JavaScript,true,false,false,1,false,false,true,false,11 +Indexyz/docker-torrent-alpine,Indexyz,,true,false,false,1,true,false,false,false,25 +infomasternotes/PSS,infomasternotes,TeX,true,false,false,1,false,true,false,false,7 +learnercfd/metaLBM,learnercfd,C++,true,false,false,1,false,true,false,false,9 +qui-a-mange-le-graphiste/qui-a-mange-le-graphiste.gitlab.io,qui-a-mange-le-graphiste,HTML,true,false,false,1,false,false,true,false,11 +VV5/magazine-editor,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +laszlobarabas/nodejs-ci-demo,laszlobarabas,JavaScript,true,false,false,3,false,true,true,false,47 +fluorine/compositor,fluorine,C,true,false,false,1,true,false,false,false,14 +bfcarpio/Student-Money-guide,bfcarpio,TeX,true,false,false,1,false,true,false,false,7 +atuncatunc/hanim-ne-alayim,atuncatunc,JavaScript,true,false,false,1,false,false,true,false,12 +camelot/kickc,camelot,Java,true,false,true,1,true,false,false,false,23 +rtxrulez/demo,rtxrulez,CSS,true,false,false,2,false,true,true,false,27 +disastor/AstorlandHTML,disastor,HTML,true,false,false,1,false,false,true,false,13 +robotmachine/QuickLedger,robotmachine,Python,true,false,false,1,false,false,true,false,11 +attila.farago.hu/EV3TreeVisASPApp,attila.farago.hu,JavaScript,true,false,false,1,true,false,false,false,18 +ColinDuquesnoy/Absolute,ColinDuquesnoy,QML,true,false,false,3,true,true,false,false,35 +legoktm/semver-checker,legoktm,PHP,true,false,false,1,false,true,false,false,31 +smallworldnews/social-first-news-strategy,smallworldnews,JavaScript,true,false,false,2,true,false,false,false,59 +ViDA-NYU/d3m/ta2ta3-stubs,ViDA-NYU,Python,true,true,false,1,true,false,false,false,20 +zer0load/zer0load.gitlab.io,zer0load,CSS,true,false,false,1,false,true,false,false,16 +peradnya/balinese-date-java-lib,peradnya,Java,true,false,false,2,true,true,false,false,31 +lybt/lybt,lybt,HTML,true,false,false,1,false,false,true,false,11 +VV5/symbolism,VV5,Vue,true,false,false,1,false,true,false,false,14 +Finwood/rt2,Finwood,TeX,true,false,false,2,true,false,false,false,46 +floscher/gradle-josm-plugin,floscher,Kotlin,true,false,false,3,true,true,true,false,177 +Kami-Kami/discord.js,Kami-Kami,JavaScript,true,false,false,1,false,true,false,false,23 +Avris/Localisator,Avris,PHP,true,false,false,1,false,true,false,false,5 +SoroushSharing/soroushsharing.gitlab.io,SoroushSharing,JavaScript,true,false,false,1,false,true,false,false,13 +prettycoldramen/gradle-maven-comparison,prettycoldramen,Java,true,false,true,4,true,true,false,false,126 +rilis/rili/promise,rilis,C++,true,false,false,3,false,true,false,false,72 +rilis/rili/pattern,rilis,C++,true,false,false,3,false,true,false,false,66 +rilis/rili/test,rilis,C++,true,false,false,3,false,true,false,false,85 +rilis/rili/compatibility,rilis,CMake,true,false,false,2,false,false,false,false,33 +rilis/rili/service/time,rilis,C++,true,false,false,3,false,true,false,false,79 +rilis/rili/service/compute,rilis,C++,true,false,false,3,false,true,false,false,79 +cmontella/hivemind,cmontella,Rust,true,false,false,1,false,true,false,false,14 +islands-wars/hub,islands-wars,Java,true,false,false,2,false,false,true,false,25 +satelligence/classifier,satelligence,Python,true,true,false,3,true,false,false,true,92 +rilis/rili/rili,rilis,JavaScript,true,false,false,2,false,false,true,false,40 +tobiaskoch/gitlab-ci-example-mono,tobiaskoch,C#,true,false,false,2,false,true,true,false,42 +VV5/wttj,VV5,Vue,true,false,false,1,false,true,false,false,14 +VV5/vatv,VV5,Vue,true,false,false,1,false,true,false,false,14 +sane-project/website,sane-project,HTML,true,false,false,1,false,false,true,false,31 +FiveScoreStudios/Website,FiveScoreStudios,HTML,true,false,false,1,false,false,true,false,11 +madcapjake/buncbone,madcapjake,CoffeeScript,true,false,false,1,false,true,false,false,8 +baldwinchang/baldwinchang,baldwinchang,,true,false,false,1,false,true,false,false,24 +jeeon/docker/docker-node-ionic-android,jeeon,,true,false,false,2,true,false,false,false,92 +angular-material-home/angular-material-home-supertenant,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +FlorestanII/LanguageManager,FlorestanII,Java,true,false,false,2,false,false,false,false,24 +thelamer/taisun-vdi,thelamer,Shell,true,false,false,1,true,false,false,false,22 +thelamer/taisun-dev,thelamer,Ruby,true,false,false,1,true,false,false,false,22 +bauen1/myunix,bauen1,C,true,false,false,1,false,true,false,false,6 +skofgar/jomis-neuralnetwork,skofgar,JavaScript,true,false,false,1,false,false,true,false,39 +eighthave/ci-image-git-buildpackage,eighthave,Shell,true,false,false,3,true,true,false,true,59 +mayermic/smartvineyards-dhms,mayermic,Java,true,false,true,2,true,false,false,false,39 +akash_rawal/dispatch_ng,akash_rawal,C,true,false,false,1,false,true,false,false,40 +protechig/protech-2018,protechig,CSS,true,false,false,1,false,false,false,false,29 +AOBlockchain/docs.aoblockchain.io,AOBlockchain,,true,false,false,1,false,true,false,false,17 +kubiq/eveblues,kubiq,PHP,true,false,false,1,false,true,false,false,39 +mwetoolkit/mwetoolkit3,mwetoolkit,Python,true,false,false,1,false,true,false,false,5 +kodeking/hypnodrama,kodeking,C++,true,false,false,2,true,true,false,false,26 +handycodejob/MyStreamerCoinWallet,handycodejob,JavaScript,true,false,false,1,false,false,true,false,27 +kaine119/sccl-dictionary,kaine119,Python,true,false,false,3,false,true,true,false,46 +Fus10n/Fusion,Fus10n,TypeScript,true,false,false,3,true,false,false,false,48 +jannik.keye/trump-or-orange-api,jannik.keye,JavaScript,true,false,false,1,false,false,true,false,26 +arcfire/rlite,arcfire,C,true,false,false,1,false,false,false,false,28 +TMW2/clientdata,TMW2,HTML,true,false,false,3,false,true,false,false,87 +kachaloali/automate-cellulaire,kachaloali,CSS,true,false,false,2,false,true,true,false,27 +angular-material-home/angular-material-home-spa,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +angular-material-home/angular-material-home-help,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,46 +kai.richard.koenig/easytainer-cli,kai.richard.koenig,Python,true,true,false,5,false,true,true,false,55 +angular-material-home/angular-material-home-theme,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +DBMGE/Maps,DBMGE,JavaScript,true,false,false,1,false,false,false,false,13 +angular-material-home/angular-material-home-language,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,44 +samuel-garratt/soaspec,samuel-garratt,Ruby,true,false,false,2,false,true,true,false,65 +offa/docker-images-ci,offa,Shell,true,false,false,1,false,true,false,false,296 +sims1253/ml-voodoo,sims1253,Python,true,true,false,1,false,true,false,false,4 +islands-wars/research/graylog,islands-wars,Java,true,false,false,1,true,false,false,false,15 +gableroux/gitlab-ci-example-docker,gableroux,,true,false,false,1,true,false,false,false,25 +VV5/pineville,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +circle-eh/docker/docker-pocketmine,circle-eh,Makefile,true,false,false,1,true,false,false,false,28 +dougalg/vue-in-out,dougalg,JavaScript,true,false,false,1,false,true,false,false,16 +uni10/uni10.gitlab.io,uni10,Ruby,true,false,false,2,false,true,true,false,29 +serial-lab/quartet_epcis,serial-lab,Python,true,true,false,3,false,false,false,false,77 +oskopek/irsee.net,oskopek,C#,true,false,false,3,true,true,true,false,73 +elmacko-open-source/node-cryptography,elmacko-open-source,JavaScript,true,false,false,2,false,true,true,false,69 +piratsky-institut/institut,piratsky-institut,HTML,true,false,false,1,false,false,true,false,13 +LibrifyJS/LibrifyJS,LibrifyJS,JavaScript,true,false,false,1,false,false,true,false,11 +maxmckenzie/berepublic-infustructure-specification,maxmckenzie,JavaScript,true,false,false,4,true,true,true,true,384 +ntnsndr/questions,ntnsndr,TeX,true,false,false,2,false,true,true,false,35 +islands-wars/countdown,islands-wars,HTML,true,false,false,1,false,false,true,false,9 +vinopravin/findmehere,vinopravin,JavaScript,true,false,false,1,false,false,true,false,11 +islands-wars/assets,islands-wars,,true,false,false,1,false,false,true,false,10 +rommon/docker,rommon,PHP,true,false,false,1,false,false,false,false,59 +bskrtich/dotfiles,bskrtich,Shell,true,false,false,1,false,false,true,false,11 +eighthave/rfp-test,eighthave,Python,true,false,false,1,false,true,false,false,12 +dmitriy.gnedoy/music-app-server,dmitriy.gnedoy,JavaScript,true,false,false,1,false,true,false,false,19 +snehaldangroshiya/treemd,snehaldangroshiya,Go,true,false,false,2,true,true,false,false,36 +axual-training/alertevent-generator,axual-training,Java,true,false,true,3,true,false,true,true,45 +antoni.kozielewski/trailPathPlaner,antoni.kozielewski,JavaScript,true,false,false,1,false,false,true,false,11 +gitlab-pages-demo2/jekyll,gitlab-pages-demo2,CSS,true,false,false,2,false,true,true,false,27 +gitlab-cookbooks/gitlab-exporters,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true,53 +glancr/mirros_api,glancr,Ruby,true,false,false,2,false,true,false,false,61 +glancr/mirros_display,glancr,Vue,true,false,false,1,false,true,false,false,30 +glancr/mirros_settings,glancr,Vue,true,false,false,2,true,true,false,false,48 +MoritzBru/cartography-playground,MoritzBru,JavaScript,true,false,false,1,false,false,true,false,20 +isciences/wsim/wsim_geoserver,isciences,Python,true,true,false,2,true,false,false,true,30 +csc-492-denim/machine-assisted-data-mining,csc-492-denim,Go,true,false,false,4,false,true,true,false,57 +gt8/open-source/elixir/eidetic-projector-elasticsearch,gt8,Elixir,true,false,false,3,false,true,false,false,71 +Valtech-Amsterdam/PowerShell/WakeUpAzureWebApp,Valtech-Amsterdam,PowerShell,true,false,false,2,false,true,false,true,43 +PushTheLimits/Sourcemod/MagicDice,PushTheLimits,SourcePawn,true,false,false,2,true,false,false,false,77 +jryannel/qauto-admin,jryannel,Python,true,true,false,1,false,true,false,false,14 +chezgi/jekyll,chezgi,CSS,true,false,false,2,false,true,true,false,27 +ramiel/caravaggio,ramiel,JavaScript,true,false,false,2,false,true,true,false,100 +rilis/rili/service/socket,rilis,C++,true,false,false,3,false,true,false,false,69 +AperiKube/aperisite,AperiKube,CSS,true,false,false,1,true,false,false,false,16 +niklasnisbeth/mpc-internals,niklasnisbeth,CSS,true,false,false,1,false,false,true,false,14 +gitlabci-demo/angular-demo,gitlabci-demo,CSS,true,false,false,2,true,false,true,false,24 +nathanfaucett/rs-virtual_view,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +rhendric/tap-appveyor,rhendric,JavaScript,true,false,false,1,false,true,false,false,39 +gherman/No.Comparers,gherman,C#,true,false,false,3,true,true,false,true,84 +pcarbo/wflow-divvy,pcarbo,HTML,true,false,false,1,false,false,true,false,13 +VV5/verbal-irony,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +saraedum/apps-android-wikivoyage,saraedum,Java,true,false,false,4,true,true,false,false,59 +CerealBusTechBlog/cerealbustechblog.gitlab.io,CerealBusTechBlog,CSS,true,false,false,2,false,true,true,false,27 +pablodiehl/color-poker,pablodiehl,JavaScript,true,false,false,1,false,false,true,false,11 +kolorahl/amplitude,kolorahl,Ruby,true,false,false,2,false,true,true,false,24 +rilis/rili/xml,rilis,C++,true,false,false,3,false,true,false,false,80 +ttpcodes/mb2thw,ttpcodes,JavaScript,true,false,false,1,false,true,false,false,12 +jbweston/gitlab-ci-tools,jbweston,Python,true,false,false,1,false,true,false,false,8 +cathaldallan/saltypie,cathaldallan,Python,true,true,false,2,false,true,true,false,38 +ownnotif/ownnotif-server-api,ownnotif,Batchfile,true,false,false,1,false,true,false,false,6 +djm.im/jLocalCoin,djm.im,Java,true,false,false,2,true,true,false,false,39 +daily-five/plates-components,daily-five,PHP,true,false,false,1,false,true,false,false,39 +consumer-driven-contract-helm-deployment/catalog-service,consumer-driven-contract-helm-deployment,Ruby,true,false,false,6,true,true,false,false,108 +Bitergia/devops/indexwarrior,Bitergia,Python,true,true,false,1,false,true,false,false,6 +VV5/tone-learning,VV5,JavaScript,true,false,false,1,false,true,false,false,14 +sorenmat/certgen,sorenmat,Go,true,false,false,2,true,false,true,false,31 +Snipey/SmelteryCMS,Snipey,JavaScript,true,false,false,1,false,true,false,false,13 +remram44/vigilant-steel,remram44,Rust,true,false,false,2,true,false,true,false,32 +gecko.io/geckoEMF,gecko.io,Java,false,false,false,0,false,false,false,false,1 +baldurmen/puppet-xerox,baldurmen,Puppet,true,false,false,1,false,true,false,false,20 +baldurmen/puppet-plymouth,baldurmen,Puppet,true,false,false,1,false,true,false,false,20 +kjk.designs/fa2018,kjk.designs,CSS,true,false,false,2,false,true,true,false,35 +cathaldallan/codebox,cathaldallan,Python,true,true,false,2,false,true,true,false,38 +unlessgames/algwalk,unlessgames,CoffeeScript,true,false,false,1,false,false,true,false,12 +janmasrovira/phileas,janmasrovira,Haskell,true,false,false,2,true,true,false,false,29 +craigbarnes/lua-sass,craigbarnes,Makefile,true,false,false,1,false,true,false,false,9 +correaa/boost-multi,correaa,C++,true,false,false,1,false,true,false,false,49 +sasol/gitlab-ci-git-tools,sasol,Shell,true,false,false,3,true,true,false,true,101 +ostrokach-forge/cgal,ostrokach-forge,Shell,true,false,false,3,true,true,true,false,149 +npolar/sphinx-docs-template,npolar,Python,true,true,false,1,false,true,false,false,31 +nerzhul/ncsmsgo,nerzhul,Go,true,false,false,1,true,false,false,false,35 +azahrandani/My_First_Git_Repo,azahrandani,Python,true,false,false,1,false,true,false,false,99 +eeronen/reseptisovellus,eeronen,TypeScript,true,false,false,4,true,true,true,false,51 +gnss-sdr/gnss-sdr,gnss-sdr,C++,true,false,false,4,true,true,true,false,983 +quesog/aos-lecturenotes,quesog,HTML,true,false,false,1,false,false,true,false,62 +asludds/flaskserver,asludds,Python,true,false,false,1,false,true,false,false,48 +Aeizzz/blog,Aeizzz,CSS,true,false,false,1,false,true,false,false,17 +nobodyinperson/make-utils,nobodyinperson,Makefile,true,false,false,3,true,true,true,false,40 +TalesofNewerth/ToN-Website,TalesofNewerth,PHP,true,false,false,1,false,true,false,false,88 +mvochoa/hackerrank,mvochoa,Go,true,false,false,1,false,false,false,false,23 +omicronns.main/cpp-project-template,omicronns.main,CMake,true,false,false,3,true,true,false,false,69 +gecko.io/geckoMongoEMF,gecko.io,Java,true,false,false,2,true,true,false,false,37 +ilias.redissi/emojis-for-slack,ilias.redissi,JavaScript,true,false,false,1,true,false,false,false,14 +willmitchell/secret_runner_aws,willmitchell,Go,true,false,false,3,true,true,true,false,44 +rilis/rili/service/console,rilis,C++,true,false,false,3,false,true,false,false,37 +Erk/rsget,Erk,Rust,true,false,false,1,true,false,false,false,16 +sik-tests/sik-rest-api-dice,sik-tests,Shell,true,false,false,1,false,true,false,false,25 +maxwellbridges/styleguide,maxwellbridges,CSS,true,false,false,1,false,true,false,false,13 +Silvers_Gw2/Market_Data_Processer,Silvers_Gw2,JavaScript,true,false,false,3,true,true,true,false,49 +nanocurrency/raiblocks,nanocurrency,C++,true,false,false,2,true,true,false,false,161 +Baasie/continuous-delivery-faas,Baasie,TypeScript,true,false,false,5,true,false,false,true,134 +PPL2018csui/Kelas-C/PPL2018-C3,PPL2018csui,JavaScript,true,false,false,2,false,true,true,false,106 +PPL2018csui/Kelas-D/PPL2018-D4,PPL2018csui,Java,true,false,false,2,true,true,false,false,218 +PPL2018csui/Kelas-D/PPL2018-D6,PPL2018csui,Java,true,false,false,2,false,true,true,false,102 +amagpiesnest/amagpiesnest.gitlab.io,amagpiesnest,HTML,true,false,false,1,false,false,true,false,13 +canarduck/pays,canarduck,Python,true,true,false,2,false,true,true,false,58 +CyanogenMod13/Kernel,CyanogenMod13,,true,false,false,1,false,true,false,false,16 +ichlaffterlalu/advprog-lab,ichlaffterlalu,Python,true,false,false,1,false,true,false,false,86 +StellarStorm/DVH_Helper,StellarStorm,Python,true,false,false,1,false,true,false,false,27 +serial-lab/quartet_capture,serial-lab,Python,true,true,false,3,false,false,false,false,65 +allotrope-open-source/shape-editor,allotrope-open-source,Xtend,true,false,false,2,true,false,true,false,60 +allotrope-open-source/adf-validator,allotrope-open-source,Java,true,false,true,2,true,false,true,false,51 +Pasu/Advance-Programing,Pasu,Python,true,false,false,1,false,true,false,false,86 +alvinraih/advprog-tutorial,alvinraih,Java,true,false,false,1,false,true,false,false,99 +iota-foundation/doc/documentation,iota-foundation,JavaScript,true,false,false,3,false,false,true,false,43 +argaghulamahmad/advprog-tutorial,argaghulamahmad,Java,true,false,false,1,false,true,false,false,126 +rilis/rili/stream,rilis,C++,true,false,false,3,false,true,false,false,69 +Simpom/tare,Simpom,Python,true,false,false,1,false,true,false,false,49 +jnmoal-docker/debian-ansible,jnmoal-docker,Shell,true,false,false,3,true,true,false,true,54 +r0x.fr/docs,r0x.fr,,true,false,false,1,false,true,false,false,18 +tobias47n9e/wkdr,tobias47n9e,Rust,true,false,false,1,false,true,false,false,6 +nathanfaucett/rs-virtual_view_dom,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +dshevchenkoo/color-runner,dshevchenkoo,JavaScript,true,false,false,1,false,false,true,false,25 +pothitos/hands-on-exercise,pothitos,C,true,false,false,2,true,true,false,false,23 +dziki/rancher-nginx-ssl-proxy,dziki,,true,false,false,1,true,false,false,false,14 +zauster/blog,zauster,HTML,true,false,false,1,false,true,false,false,27 +Keo1711/ChatMode,Keo1711,Java,true,false,true,1,false,true,false,false,12 +Calinou/minetest-builds,Calinou,Shell,true,false,false,1,true,false,false,false,38 +metinerk/asdf,metinerk,TypeScript,true,false,false,1,false,false,true,false,17 +breithbarbot/cropper,breithbarbot,JavaScript,true,false,false,1,false,true,false,false,24 +pietrom_cp/spring-class,pietrom_cp,Java,true,false,false,2,true,true,false,false,32 +Nkzn/ReVIEW-Template,Nkzn,TeX,true,false,false,1,false,true,false,false,14 +SiLA2/sila_csharp,SiLA2,C#,true,false,false,4,true,true,false,true,143 +transact/node-transact,transact,TypeScript,true,false,false,3,true,true,false,false,50 +ysb33rOrg/gradleTest,ysb33rOrg,Groovy,true,false,false,4,true,true,false,true,221 +dirn/stonestyle,dirn,Python,true,false,false,1,false,true,false,false,20 +axk4545/axk4545.gitlab.io,axk4545,CSS,true,false,false,1,false,false,true,false,24 +fresheyeball/control-iso,fresheyeball,Haskell,true,false,false,1,true,false,false,false,12 +luichan/official-wireshark,luichan,C,true,false,false,2,true,true,false,false,191 +SandraKriemann/Microservice-Picking-Usecase,SandraKriemann,Go,true,false,false,2,true,false,true,false,27 +runStudies/runStudies,runStudies,TypeScript,true,false,false,1,false,true,false,false,4 +nyxcharon/PassVault,nyxcharon,CSS,true,false,false,2,true,true,false,false,30 +ttpcodes/debate.js-readers,ttpcodes,JavaScript,true,false,false,1,false,true,false,false,13 +LeBronse/taskers,LeBronse,Rust,true,false,false,1,false,true,false,false,24 +VV5/palmistry,VV5,Vue,true,false,false,1,false,true,false,false,14 +DBotThePony/DLib,DBotThePony,Lua,true,false,false,1,true,false,false,false,29 +DBotThePony/PPM,DBotThePony,MoonScript,true,false,false,1,true,false,false,false,19 +libmicrohttpd/libmicrohttpd,libmicrohttpd,C,true,false,false,1,false,true,false,false,124 +STRL/STEMsalabim,STRL,C++,true,false,false,2,true,true,false,false,33 +peradnya/balinese-date-js-lib,peradnya,TypeScript,true,false,false,3,true,true,true,false,49 +tonychang/csp-tws-roads,tonychang,HTML,true,false,false,2,false,true,true,false,27 +DamienCassou/emacs-ci-docker,DamienCassou,Shell,true,false,false,3,true,false,false,true,127 +Iranium/Iranium,Iranium,PHP,true,false,false,1,false,true,false,false,32 +nickvde/Practice_enterprise,nickvde,Java,true,false,false,2,true,true,false,false,46 +joewreschnig/emacs-cask-docker-image,joewreschnig,,true,false,false,1,false,true,false,false,9 +isaagar/isaagar.gitlab.io,isaagar,,true,false,false,1,false,true,false,false,13 +sndevs/hub,sndevs,JavaScript,true,false,false,1,false,false,true,false,11 +Dreae/kvasir,Dreae,JavaScript,true,false,false,1,true,false,false,false,20 +dirn/doozerify,dirn,Python,true,false,false,1,false,true,false,false,23 +antora/docker-antora,antora,,true,false,false,2,true,false,true,false,49 +Calinou/hugo.pro,Calinou,HTML,true,false,false,1,true,false,false,false,27 +catalyst-it/catascope,catalyst-it,Python,true,true,false,3,false,true,false,false,86 +gitlab-org/security-products/zaproxy,gitlab-org,Java,true,false,false,1,true,false,false,false,19 +demipel8/bodorrio,demipel8,JavaScript,true,false,false,2,false,true,true,false,16 +badsectorlabs/blog,badsectorlabs,HTML,true,false,false,2,true,false,true,false,59 +omawhite/react-pspfrontend,omawhite,JavaScript,true,false,false,2,true,true,false,false,21 +obob/pymatreader,obob,HTML,true,false,false,1,false,true,false,false,104 +commonshost/manifest,commonshost,JavaScript,true,false,false,1,false,true,false,false,11 +CaflischLab/SEED,CaflischLab,C++,true,false,false,2,true,true,false,false,43 +tobias47n9e/wikibase_rs_rocket_example,tobias47n9e,Rust,true,false,false,1,false,true,false,false,6 +MendesKing/plain-html,MendesKing,HTML,true,false,false,1,false,false,true,false,11 +zauster/riot,zauster,R,true,false,false,1,false,true,false,false,63 +greenfox/upvotes,greenfox,JavaScript,true,false,false,3,true,false,true,true,45 +dhimmel/pmc-citation-styles,dhimmel,JupyterNotebook,true,false,false,1,false,true,false,false,14 +oddnetworks/oddworks/core,oddnetworks,JavaScript,true,false,false,1,false,true,false,false,47 +nikigan/AwesomeStrings,nikigan,C#,true,false,false,1,true,false,false,false,12 +dynastini1337/youcoub,dynastini1337,Go,true,false,false,1,false,false,false,false,9 +rlbekkema/mariobot-ts,rlbekkema,TypeScript,true,false,false,2,true,true,false,false,26 +williamchia/git-merge-2018,williamchia,CSS,true,false,false,1,false,false,true,false,13 +PrajjwalDimri/prajjwaldimri.gitlab.io,PrajjwalDimri,HTML,true,false,false,1,false,false,true,false,11 +angular-material-home/angular-material-home-shop,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +RizkiMufrizal/Heroku-Container,RizkiMufrizal,Kotlin,true,false,false,3,true,false,false,false,54 +infomasternotes/BIO,infomasternotes,TeX,true,false,false,1,false,true,false,false,7 +infomasternotes/SDP,infomasternotes,TeX,true,false,false,1,false,true,false,false,7 +AmigaSourcePres/amigasourcepres.gitlab.io,AmigaSourcePres,HTML,true,false,false,1,false,true,false,false,17 +ffrraannkk/reactapella,ffrraannkk,JavaScript,true,false,false,2,false,true,false,false,22 +yurifbeck/engcivil,yurifbeck,Vue,true,false,false,1,false,false,true,false,12 +morenstrat/drupal-runner,morenstrat,JavaScript,true,false,false,1,false,false,true,false,11 +b.urrito/b.ackend,b.urrito,C#,true,false,false,2,true,false,true,false,29 +rilis/rili/color,rilis,C++,true,false,false,3,false,true,false,false,69 +abrahamwill/Assignment-DDP2,abrahamwill,Java,true,false,false,2,true,true,false,false,112 +sigscale/m3ua,sigscale,Erlang,true,false,false,3,true,true,true,false,152 +cirruscreative/cirruscreative,cirruscreative,JavaScript,true,false,false,1,false,false,true,false,24 +whatthedev/polybius-engine,whatthedev,Objective-C,true,false,false,1,true,false,false,false,4 +maximedenes/coq,maximedenes,OCaml,true,false,false,2,true,true,false,false,313 +godq/lianjia,godq,Python,true,false,false,1,false,true,false,false,16 +auto-breakfast/eggs,auto-breakfast,Python,true,true,false,1,false,true,false,false,9 +HokieGeek/nexus-lifecycle-gitlab,HokieGeek,Shell,true,false,false,1,true,false,false,false,17 +cmontella/hivemindwebsite,cmontella,JavaScript,true,false,false,1,false,false,true,false,13 +mech-lang/website,mech-lang,HTML,true,false,false,1,false,false,true,false,11 +gpsd/gpsd,gpsd,C,true,false,false,3,true,true,false,false,277 +jbake-org/jbake,jbake-org,CSS,true,false,false,1,false,true,false,false,9 +flisolfsa/flisolfsa.gitlab.io,flisolfsa,CSS,true,false,false,1,false,false,true,false,9 +aby.bayu003/myproject,aby.bayu003,Ruby,true,false,false,1,false,true,false,false,24 +upe-consulting/npm/ngx/forms,upe-consulting,TypeScript,true,false,false,3,true,true,false,true,71 +mblowfish/mblowfish-core,mblowfish,JavaScript,true,false,false,2,false,true,true,false,44 +HeinousTugboat/travgen,HeinousTugboat,TypeScript,true,false,false,1,false,false,true,false,14 +mihbor/sila-hackathon,mihbor,Java,true,false,false,1,true,false,false,false,10 +kable.tv/docker-satis,kable.tv,,true,false,false,2,true,true,false,false,32 +thejacer87/scoregoals,thejacer87,JavaScript,true,false,false,1,true,false,false,false,36 +lokat/HiLive2,lokat,C++,true,false,false,1,false,true,false,false,27 +gitlab-com/gl-infra/butterbot,gitlab-com,Go,true,false,false,2,true,false,false,true,46 +taichunmin/mp-minioasis-docker,taichunmin,Shell,true,false,false,1,false,false,false,true,18 +damoebius/codeofwar,damoebius,Haxe,true,false,false,1,true,false,false,false,29 +SimplePLC/documentation,SimplePLC,TeX,true,false,false,1,false,false,true,false,14 +florian.sureau/babyfoot,florian.sureau,TypeScript,true,false,false,1,true,false,false,false,19 +jsivori/CurriculumVitae,jsivori,JavaScript,true,false,false,1,false,false,true,false,11 +leipert-projects/is-gitlab-pretty-yet,leipert-projects,Vue,true,false,false,2,true,false,true,false,30 +pablouhc/forgemods/cablo,pablouhc,Java,true,false,false,2,true,true,false,false,39 +SilentTeaCup/congo,SilentTeaCup,Go,true,false,false,2,true,true,false,false,69 +bmallred/namecloud,bmallred,JavaScript,true,false,false,1,false,false,true,false,13 +StaubSauger/StaubSaugerWeb,StaubSauger,HTML,true,false,false,1,false,true,false,false,17 +InstaffoOpenSource/JavaScript/eslint-config-instaffo,InstaffoOpenSource,JavaScript,true,false,false,1,false,true,false,false,18 +costrouc/dftfit,costrouc,Python,true,false,false,3,false,true,true,false,81 +cn-ds/ionic-app,cn-ds,TypeScript,true,false,false,1,false,false,true,false,15 +robfaber/microservices,robfaber,Java,true,false,true,2,true,false,false,false,29 +datadrivendiscovery/sklearn-wrap,datadrivendiscovery,Python,true,true,false,2,true,false,true,false,112 +tomschr/docbook-kurs,tomschr,XSLT,true,false,false,1,true,false,false,false,30 +slime-man/HouseEmoji,slime-man,Python,true,false,false,1,false,true,false,false,12 +costrouc/lammps-cython,costrouc,Python,true,false,false,3,false,true,true,false,109 +mgerhardy/docker-debian-slim-file,mgerhardy,,true,false,false,1,false,false,false,false,17 +oer/oer-on-oer-infrastructure,oer,EmacsLisp,true,false,false,1,false,false,true,false,15 +eyeo/adblockplus/abpui/adblockplusui,eyeo,JavaScript,true,false,false,8,true,true,false,false,273 +juergen.kosel.jk/wireshark,juergen.kosel.jk,C,true,false,false,2,true,true,false,false,191 +arpecop/iztegli,arpecop,HTML,true,false,false,2,false,true,true,false,25 +fgiraldeau/unnom,fgiraldeau,JavaScript,true,false,false,1,false,true,false,false,17 +rstacruz/devhints-engine,rstacruz,JavaScript,false,false,false,0,false,false,false,false,1 +binarioetico/flask-ci-demo,binarioetico,Python,true,true,false,2,false,true,true,false,30 +francoisb/scoutinv,francoisb,Ruby,true,false,false,1,false,true,false,false,42 +ramseymcgrath/MEMESERVICES,ramseymcgrath,HTML,true,false,false,2,true,false,true,false,56 +lae/java-stack-source,lae,Java,true,false,true,1,true,false,false,false,10 +emelle/editor,emelle,JavaScript,true,false,false,1,false,false,true,false,24 +mtnygard/m2m.munchen,mtnygard,Ruby,true,false,false,3,true,false,true,false,61 +gdevops/tuto_ansible,gdevops,Python,true,true,false,1,false,true,false,false,13 +yaffy/bkey.tech,yaffy,HTML,true,false,false,1,false,false,true,false,11 +gdevops/tuto_documentation,gdevops,Python,true,true,false,1,false,true,false,false,12 +gdevops/tuto_databases,gdevops,Python,true,true,false,1,false,true,false,false,12 +gdevops/tuto_git,gdevops,Shell,true,false,false,1,false,true,false,false,12 +gdevops/tuto_devops,gdevops,Python,true,true,false,1,false,true,false,false,12 +ecruzolivera/eHSM,ecruzolivera,C++,true,false,false,3,true,true,true,false,54 +dzamlo/gitlab-ci-rust-test,dzamlo,Rust,true,false,false,2,false,true,false,true,86 +ralsina/boxes-book,ralsina,HTML,true,false,false,1,false,false,true,false,14 +johnjawed/ror,johnjawed,Ruby,true,false,false,9,true,true,false,true,593 +VV5/freevonation,VV5,Vue,true,false,false,1,false,true,false,false,14 +SumNeuron/multitags,SumNeuron,JavaScript,true,false,false,1,false,false,true,false,13 +aos2/aos2.gitlab.io,aos2,HTML,true,false,false,2,false,false,false,false,30 +webprogrammingUniTN/webproject,webprogrammingUniTN,Java,true,false,true,2,false,true,true,false,70 +LukeHowellDev/docker-http-redirects,LukeHowellDev,Go,true,false,false,3,true,true,true,false,66 +nickdonnelly/from_int,nickdonnelly,Rust,true,false,false,1,false,false,false,false,8 +BryanQuigley/ScoutPlane,BryanQuigley,Python,true,false,false,1,false,true,false,false,9 +tclavier/jersey-skeleton,tclavier,Java,true,false,true,2,true,true,false,false,20 +noyez_examples/diesel_rs_example_1,noyez_examples,Rust,true,false,false,1,true,false,false,false,60 +mech-lang/notebook,mech-lang,TypeScript,true,false,false,1,false,true,false,false,13 +gdevops/tuto_ides,gdevops,Python,true,true,false,1,false,true,false,false,12 +Redsamuri/samuri,Redsamuri,,true,false,false,1,false,true,false,false,33 +JFT/BT-Deps,JFT,CMake,true,false,false,4,true,true,false,true,90 +rhbayuprabowo/rhbayuprabowo.gitlab.io,rhbayuprabowo,HTML,true,false,false,1,false,false,true,false,11 +eic/ejana,eic,C++,true,false,false,1,false,true,false,false,5 +serpro/fatiador,serpro,Java,true,false,true,3,false,true,false,true,32 +flirt/flirt.gitlab.io,flirt,HTML,true,false,false,1,false,false,true,false,11 +mrvik/listas,mrvik,JavaScript,true,false,false,3,true,true,true,false,44 +gdevops/tuto_kubernetes,gdevops,Python,true,true,false,1,false,true,false,false,12 +doerfli/reeper,doerfli,Ruby,true,false,false,2,true,true,false,false,50 +spare-time-demos/intime2,spare-time-demos,TypeScript,true,false,false,4,false,true,true,false,197 +to1ne/use-package-hydra,to1ne,EmacsLisp,true,false,false,1,false,true,false,false,13 +to1ne/gross.css,to1ne,HTML,true,false,false,2,false,true,true,false,32 +ricmaco/ricmaco.gitlab.io,ricmaco,HTML,true,false,false,2,false,true,true,false,20 +VictorLamoine/arduino_stm32_ci_test,VictorLamoine,C++,true,false,false,1,true,false,false,false,11 +triplewhy/RRCS,triplewhy,C#,true,false,false,3,true,true,true,false,52 +thiagodebastos_study/eng101x-eportfolio,thiagodebastos_study,JavaScript,true,false,false,1,false,true,false,false,17 +lxkl/lec-basic-math,lxkl,TeX,true,false,false,1,false,true,false,false,13 +louisq/substance,louisq,JavaScript,true,false,false,2,false,false,false,false,28 +regen-network/regen-ledger,regen-network,Go,true,false,false,2,true,true,false,false,41 +simbas/portal,simbas,TypeScript,true,false,false,1,true,false,false,false,39 +LolloneS/Tesi-Triennale,LolloneS,TeX,true,false,false,1,true,false,false,false,15 +bonobows/placebo,bonobows,PHP,true,false,false,2,true,true,false,false,53 +teonite/inspectr-dashboard,teonite,JavaScript,true,false,false,1,true,false,false,false,21 +integer32llc/rustbeltrust2018,integer32llc,CSS,true,false,false,1,false,false,true,false,10 +davidbittner/raur,davidbittner,Rust,true,false,false,1,false,true,false,false,28 +maetshju/LexicalCharacteristics.jl,maetshju,Julia,true,false,false,1,false,true,false,false,16 +gitlab-org/gitlab-pages-proto,gitlab-org,Ruby,true,false,false,1,false,true,false,false,14 +singulared/blog,singulared,HTML,true,false,false,1,true,false,false,false,41 +KDemeul/nebula,KDemeul,Python,true,true,false,3,true,true,true,false,77 +DylanGriffith/dylans-home,DylanGriffith,HTML,true,false,false,1,false,true,false,false,43 +micro5k/microg-unofficial-installer,micro5k,Shell,true,false,false,1,true,false,false,false,37 +micro5k/google-sync-addon,micro5k,Shell,true,false,false,1,true,false,false,false,38 +leipert-projects/gitlab-history,leipert-projects,JavaScript,true,false,false,2,true,false,true,false,33 +gitlab-org/security-products/release,gitlab-org,Ruby,true,false,false,2,false,true,false,false,91 +painlessMesh/ESPUnify,painlessMesh,C,true,false,false,1,false,true,false,false,8 +ckhurewa/qhist,ckhurewa,Python,true,true,false,2,false,true,true,false,35 +aguslr/aguslr.gitlab.io,aguslr,HTML,true,false,false,1,false,false,true,false,24 +MadLittleMods/gitlab-ci-access-main-container-from-service-container,MadLittleMods,JavaScript,true,false,false,2,true,true,false,false,100 +smc/mlmorph,smc,Lex,true,false,false,2,true,true,false,false,24 +gdevops/config,gdevops,Python,true,true,false,1,false,true,false,false,13 +nickdonnelly/yogi,nickdonnelly,Crystal,true,false,false,2,false,true,false,false,17 +float.cf/landing,float.cf,CSS,true,false,false,2,true,false,true,false,33 +Silvers_Gw2/Stats_Frontend,Silvers_Gw2,JavaScript,true,false,false,3,true,true,true,false,43 +Beksultan/StarWars,Beksultan,Java,true,false,true,2,true,true,false,false,35 +caedes/workspace,caedes,JavaScript,true,false,false,1,false,true,false,false,16 +marbu/pylatest-copr,marbu,,true,false,false,1,false,true,false,false,9 +cynovg/WG-API,cynovg,Perl,true,false,false,1,false,true,false,false,18 +cloudamatic/mu_demo_platform,cloudamatic,Ruby,true,false,false,3,false,false,false,false,61 +monoc44/ns-beans,monoc44,Java,true,false,false,2,true,true,false,false,33 +falloonalan/MarsRoverProblem,falloonalan,JavaScript,true,false,false,1,false,true,false,false,20 +dagerikhl/watcher-in-the-cloud,dagerikhl,TypeScript,true,false,false,1,true,false,false,false,10 +nuest/rticle-copernicus-demo,nuest,TeX,true,false,false,1,false,false,true,false,12 +c3d/make-it-quick,c3d,Makefile,true,false,false,1,false,true,false,false,24 +jesusalva/sistema-contabil-basico,jesusalva,PHP,true,false,false,1,false,true,false,false,37 +RepositorioDeCultura/Tier1,RepositorioDeCultura,QML,true,false,false,2,true,true,false,false,33 +denkmal/denkmal-website-admin,denkmal,,true,false,false,2,false,true,true,false,27 +denkmal/denkmal-api,denkmal,TypeScript,true,false,false,2,true,false,false,true,49 +zeesy/dEARdiary,zeesy,JavaScript,true,false,false,2,false,true,false,false,47 +waylon531/lando,waylon531,Rust,true,false,false,3,true,true,true,false,78 +frnck/kotlin-gradle-eclipse,frnck,Kotlin,true,false,false,2,true,true,false,false,36 +mickaelw/henri_potier,mickaelw,TypeScript,true,false,false,1,false,false,false,false,10 +ketiko/art,ketiko,Ruby,true,false,false,1,false,true,false,false,31 +dmitrz/dmitrz.gitlab.io,dmitrz,HTML,true,false,false,1,false,true,false,false,20 +Kissaki/docker-hugo,Kissaki,,true,false,false,2,false,true,true,false,34 +nathanfaucett/rs-gmath,nathanfaucett,Rust,true,false,false,1,false,true,false,false,6 +wpdesk/wp-basic-requirements,wpdesk,PHP,true,false,false,3,false,true,false,false,154 +fkrull/deploy-ostree,fkrull,Python,true,false,false,5,true,true,false,true,107 +Elypia/Commandler,Elypia,Java,true,false,false,3,true,true,true,false,44 +costrouc/chrisostrouchov.com-polymer-static,costrouc,HTML,true,false,false,3,false,false,true,false,48 +MakerTim/FunctionalMaker,MakerTim,Java,true,false,false,2,false,true,true,false,24 +Cacophony/AWS-CLI,Cacophony,Shell,true,false,false,1,true,false,false,false,25 +ericapisani/guelph-conf-2018,ericapisani,JavaScript,true,false,false,2,false,true,true,false,29 +anton.koro/testing-html-artifacts,anton.koro,HTML,true,false,false,1,false,false,false,false,13 +gitlab-examples/security/security-reports,gitlab-examples,Java,true,false,false,1,false,true,false,false,42 +disastor/gitlab-cucumber-selenium-ci-test-setup,disastor,Gherkin,true,false,false,1,false,true,false,false,14 +Cacophony/dhelpers,Cacophony,Go,true,false,false,1,false,true,false,false,37 +warpcom/warpdev-docs,warpcom,,true,false,false,1,false,true,false,false,17 +Titan-C/org-cv,Titan-C,EmacsLisp,true,false,false,1,false,true,false,false,29 +HorseGO/doa-doa-android,HorseGO,Java,true,false,false,3,true,true,true,false,40 +gitlab-org/security-products/analyzers/common,gitlab-org,Go,true,false,false,1,false,true,false,false,32 +Cacophony/Processor,Cacophony,Go,true,false,false,5,false,false,false,false,47 +jiangzhiping/EnhancedConsoleText,jiangzhiping,C++,true,false,false,1,false,true,false,false,14 +canderegg/bantam-js,canderegg,HTML,true,false,false,1,false,false,true,false,9 +socrates-conference/socrates-admin-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true,256 +nandawtek/book-sense,nandawtek,JavaScript,true,false,false,1,false,true,false,false,18 +TeamCK/LD41,TeamCK,JavaScript,true,false,false,1,false,false,true,false,11 +ayufan-repos/rock64/linux-rootfs,ayufan-repos,Shell,true,false,false,4,true,false,false,true,74 +Averor/json-mapper,Averor,PHP,true,false,false,1,false,true,false,false,28 +Averor/php-ext,Averor,PHP,true,false,false,1,false,true,false,false,18 +epinxteren/ts-eventsourcing,epinxteren,TypeScript,true,false,false,1,false,true,false,false,13 +ToxiClaw/LAfI,ToxiClaw,TeX,true,false,false,1,false,true,false,false,11 +0xF61/ssgBuilder,0xF61,CSS,true,false,false,1,false,false,true,false,32 +ALSchwalm/pISO,ALSchwalm,Rust,true,false,false,1,false,true,false,false,39 +gitlab-org/grape-path-helpers,gitlab-org,Ruby,true,false,false,1,false,true,false,false,18 +VV5/sound-devices,VV5,Vue,true,false,false,1,false,true,false,false,14 +Cacophony/Worker,Cacophony,Go,true,false,false,5,false,false,false,false,47 +waterkip/perl-net-saml2,waterkip,Perl,true,false,false,2,true,true,false,false,27 +jozefhajnala/jhaddins,jozefhajnala,R,true,false,false,6,true,true,true,false,75 +davidrolle/f-strings,davidrolle,Clojure,true,false,true,1,false,true,false,false,5 +Axect/axect.gitlab.io,Axect,HTML,true,false,false,1,false,false,true,false,20 +coala/solar/shortlinks,coala,Shell,true,false,false,1,false,true,false,false,15 +adhenawer/laradep,adhenawer,PHP,true,false,false,1,false,false,false,false,46 +imagedb/ansible-lint,imagedb,,true,false,false,4,true,true,false,true,73 +mvojacek/execasm,mvojacek,C,true,false,false,1,true,false,false,false,31 +onofreliscano/UCV,onofreliscano,JavaScript,true,false,false,1,false,false,true,false,11 +olson.levi/website,olson.levi,HTML,true,false,false,2,false,true,true,false,39 +Valeness/spacesim,Valeness,HTML,true,false,false,1,false,false,true,false,11 +kimbm/Testers,kimbm,Ruby,true,false,false,1,false,true,false,false,24 +PRTG/Device-Templates/dell-storage,PRTG,,true,false,false,1,true,false,false,false,33 +dreinull/oer-db-normalization,dreinull,JavaScript,true,false,false,1,false,true,false,false,26 +dbrattli/NAisParser,dbrattli,F#,true,false,false,2,true,true,false,false,29 +ruefo/ruefo.gitlab.io,ruefo,HTML,true,false,false,1,false,true,false,false,20 +abhinavdhasmana/ci_cd_demo,abhinavdhasmana,Shell,true,false,false,2,false,true,true,false,29 +dimonkov/SD3,dimonkov,C++,true,false,false,1,false,true,false,false,18 +socrates-conference/socrates-attendee-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true,247 +TheCapsLock/fdroid-patched-apps,TheCapsLock,HTML,true,false,false,1,false,true,false,false,8 +awesome-keto/awesome-keto,awesome-keto,,true,false,false,1,false,true,false,false,8 +mech-lang/server,mech-lang,Rust,true,false,false,1,false,true,false,false,10 +mikegustin/crestron-ui-mockup,mikegustin,CSS,true,false,false,1,false,false,true,false,11 +apoorwanand/jekyll,apoorwanand,CSS,true,false,false,2,false,true,true,false,27 +jindal.manishkumar1/node-todo,jindal.manishkumar1,JavaScript,true,false,false,2,true,true,false,false,38 +uQA3/firmware_esp32,uQA3,C,true,false,false,2,true,false,false,false,32 +deandre/wtf,deandre,CSS,true,false,false,1,true,false,false,false,12 +haseebeqx/ssh_cert_parser,haseebeqx,Ruby,true,false,false,1,false,true,false,false,15 +aossie/CrowdAlert-Mobile,aossie,JavaScript,true,false,false,5,true,true,false,true,68 +stanstrup-teaching/XCMS-course,stanstrup-teaching,HTML,true,false,false,1,false,false,true,false,22 +gitlab-org/gitter/realtime-client,gitlab-org,JavaScript,true,false,false,2,true,true,false,false,40 +gitlab-org/gitter/halley,gitlab-org,JavaScript,true,false,false,2,true,true,false,false,31 +VickySteeves/lis-628-datalibrarianship,VickySteeves,CSS,true,false,false,1,false,false,true,false,16 +dgarlitt/urban-gopher,dgarlitt,Go,true,false,false,3,true,true,false,false,70 +crankykernel/cryptoxscanner,crankykernel,TypeScript,true,false,false,1,false,true,false,false,26 +VV5/writing,VV5,Vue,true,false,false,1,false,true,false,false,14 +mickaelw/demo-clean-architecture-backend,mickaelw,TypeScript,true,false,false,2,false,false,false,false,21 +TFSThiagoBR98/Antx,TFSThiagoBR98,C#,true,false,false,1,false,false,true,false,16 +macta/WillowPagerDuty,macta,Smalltalk,true,false,false,2,true,false,true,false,61 +myrdin/myrdin-web,myrdin,HTML,true,false,false,1,false,false,true,false,13 +trustable/gitect,trustable,HTML,true,false,false,3,true,false,false,false,331 +omunroe-com/sitemap-bundle,omunroe-com,PHP,true,false,false,2,false,true,false,false,52 +soka/TallerTrello,soka,Batchfile,true,false,false,2,false,true,true,false,35 +bramceulemans/filesharer,bramceulemans,PHP,true,false,false,1,false,true,false,false,61 +gitlab-org/security-products/tests/sast,gitlab-org,Ruby,true,false,false,1,false,true,false,false,40 +charts/gitlab-rails,charts,Smarty,true,false,false,2,false,true,false,true,19 +melvinvermeeren/template_cpp,melvinvermeeren,CMake,true,false,false,4,false,true,true,false,219 +PyNorte-RO/pyro-site,PyNorte-RO,HTML,true,false,false,1,false,true,false,false,9 +wpdesk/wp-settings,wpdesk,PHP,true,false,false,5,false,true,true,false,310 +Spittal/terraforming-mars-tools,Spittal,JavaScript,true,false,false,1,true,false,false,false,29 +nnadeau/nnadeau.gitlab.io,nnadeau,CSS,true,false,false,1,false,false,true,false,27 +flat-galaxy/edm,flat-galaxy,Python,true,true,false,1,true,false,false,false,22 +timelord/sklearn_transformers,timelord,Python,true,true,false,1,false,true,false,false,17 +obestwalter/commodorificator,obestwalter,Python,true,false,false,1,false,true,false,false,5 +ian.hamilton/ng-chat,ian.hamilton,TypeScript,true,false,false,1,false,true,false,false,23 +voidspiral/imghost,voidspiral,HTML,true,false,false,1,false,false,true,false,11 +cw-andrews/new-guid,cw-andrews,Python,true,true,false,3,false,false,false,false,25 +seanwasere/BPMHeartRateMonitor,seanwasere,HTML,true,false,false,1,false,false,true,false,13 +EltraEden/APRS,EltraEden,Python,true,false,false,1,false,true,false,false,13 +matheushmion/siteconfiam,matheushmion,HTML,true,false,false,1,false,false,true,false,11 +ramene/hugo,ramene,HTML,true,false,false,1,false,true,false,false,20 +kspt-templates/report,kspt-templates,TeX,true,false,false,1,false,true,false,false,8 +kspt-templates/thesis,kspt-templates,TeX,true,false,false,1,false,true,false,false,7 +bmallred/learn-abc,bmallred,JavaScript,true,false,false,1,false,false,true,false,15 +grote/briar-reproducer,grote,Python,true,false,false,3,true,true,false,true,42 +conversence/hyperknowledge,conversence,HTML,true,false,false,2,true,true,false,false,29 +wpdesk/wp-dataset,wpdesk,PHP,true,false,false,5,false,true,true,false,310 +wpdesk/wp-view,wpdesk,PHP,true,false,false,3,false,true,false,false,74 +sensiolabs-de/php-build,sensiolabs-de,,false,false,false,0,false,false,false,false,1 +ChristophS/aws_adfs,ChristophS,Python,true,true,false,2,true,false,false,true,44 +ayufan-repos/rock64/linux-mainline-kernel,ayufan-repos,,true,false,false,1,true,false,false,false,47 +gdevops/tuto_project,gdevops,Python,true,true,false,1,false,true,false,false,12 +timvisee/ffsend-api,timvisee,Rust,true,false,false,4,false,true,false,true,81 +cunity/cunit,cunity,C,true,false,false,4,true,true,false,true,154 +aalonzolu/drupal-8-docker,aalonzolu,PHP,true,false,false,2,false,true,true,false,72 +pantacor/pantahub-pvr,pantacor,Go,true,false,false,1,true,false,false,false,21 +pwa-minimus/pwa-minimus.gitlab.io,pwa-minimus,HTML,true,false,false,1,false,false,true,false,14 +pantacor/pv-platforms/alpine-router,pantacor,Makefile,true,false,false,1,true,false,false,false,24 +gitmate-micro/listen,gitmate-micro,Go,true,false,false,1,true,false,false,false,40 +VV5/south-china-sea,VV5,Vue,true,false,false,1,false,true,false,false,14 +105021108/final_project,105021108,JavaScript,true,false,false,1,false,false,true,false,13 +SpeciesFileGroup/taxonworks,SpeciesFileGroup,Ruby,true,false,false,1,false,true,false,false,16 +aapjeisbaas/hello-container,aapjeisbaas,Python,true,false,false,3,true,true,true,false,77 +bradwood/pyclibase,bradwood,Python,true,false,false,4,false,false,false,false,74 +vladradi/channelstat,vladradi,HTML,true,false,false,2,false,true,true,false,29 +mdbouchard/TogglJiraSync,mdbouchard,Groovy,true,false,false,3,true,false,false,false,65 +cagatay-y/tootle-flatpak,cagatay-y,,true,false,false,1,false,true,false,false,11 +oscar6echo/ipyauth,oscar6echo,JupyterNotebook,true,false,false,1,false,true,false,false,16 +roddhjav/pass-audit,roddhjav,Shell,true,false,false,3,false,true,true,false,84 +arsouyes/byte-overflow,arsouyes,QML,true,false,false,2,true,false,false,false,84 +redsharpbyte/fets,redsharpbyte,Python,true,true,false,1,false,true,false,false,20 +boxbox557/SS-2018-final-project,boxbox557,JavaScript,true,false,false,1,false,false,true,false,13 +matej.plavevski/HackathonFlask,matej.plavevski,Python,true,true,false,1,false,true,false,false,36 +webuild.world/WeBuild.World,webuild.world,TypeScript,true,false,false,2,true,false,true,false,35 +brendan/sast-example,brendan,Ruby,true,false,false,1,false,true,false,false,31 +projeto-es/caboabanana,projeto-es,JavaScript,true,false,false,2,false,true,false,false,25 +mtnygard/m2m.router,mtnygard,JavaScript,true,false,false,1,false,true,false,false,10 +Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,Orange-OpenSource,Shell,true,false,false,1,false,true,false,false,11 +jonas_jostmann/oer-meltdown,jonas_jostmann,EmacsLisp,true,false,false,1,false,false,true,false,15 +Vertana/lolresearchbot,Vertana,C#,true,false,false,9,true,true,false,true,774 +rso_2018_twitter_clone/hydrogen,rso_2018_twitter_clone,Python,true,true,false,3,true,true,false,true,41 +jackorp/jekyll-git-authors,jackorp,Ruby,true,false,false,2,false,true,true,false,33 +ajiro/ajiro.fr,ajiro,HTML,true,false,false,3,true,true,true,false,54 +Ivo1971/ILUStateMachine,Ivo1971,C++,true,false,false,1,false,true,false,false,92 +drx-tw/cdws-2.0-team-a,drx-tw,HTML,true,false,false,5,true,true,true,true,111 +drx-tw/cdws-2.0-team-b,drx-tw,HTML,true,false,false,5,true,true,true,true,122 +gitm8/npmpty,gitm8,JavaScript,true,false,false,2,false,true,true,false,85 +Hatscat/bytebeat-sequencer,Hatscat,Elm,true,false,false,1,false,true,false,false,17 +Selet/SisPetShop,Selet,Java,true,false,false,2,true,true,false,false,36 +Redrield/SaturnShell,Redrield,Kotlin,true,false,false,2,true,true,false,false,20 +ipynb/z3,ipynb,Python,true,false,false,1,false,true,false,false,12 +pgrangeiro/python-coinmarketcap-client,pgrangeiro,Python,true,false,false,1,false,true,false,false,5 +sjugge/aws-helper,sjugge,Python,true,false,false,1,false,true,false,false,18 +johngian/agoodplace,johngian,Ruby,true,false,false,1,false,true,false,false,29 +Sigma-One/sigma-one.gitlab.io,Sigma-One,HTML,true,false,false,1,false,false,true,false,11 +philbooth/pbvi,philbooth,Rust,true,false,false,1,false,true,false,false,22 +jacquesherren/smartphysio-webapp,jacquesherren,JavaScript,true,false,false,1,false,false,true,false,15 +veryeasily/veryeasily.gitlab.io,veryeasily,HTML,true,false,false,1,false,false,true,false,11 +jquagga/Washboard,jquagga,HTML,true,false,false,1,false,false,true,false,11 +HispaGatos/hispagatos.org,HispaGatos,HTML,true,false,false,1,false,false,true,false,13 +jashankj/admtools,jashankj,Haskell,true,false,false,1,false,true,false,false,14 +chusiang/gup,chusiang,CSS,true,false,false,1,false,false,true,false,16 +chusiang/wiki.drx.tw,chusiang,HTML,true,false,false,1,false,false,true,false,16 +serebit/logkat,serebit,Kotlin,true,false,false,3,true,true,true,false,43 +serebit/autotitan,serebit,Kotlin,true,false,false,1,true,false,false,false,23 +betseg/minestest,betseg,C,true,false,false,1,false,true,false,false,2 +deikatsuo/manuk,deikatsuo,Rust,true,false,false,1,true,false,false,false,14 +jonocarroll/mathpix,jonocarroll,R,true,false,false,1,false,true,false,false,43 +gaioso/lpic1,gaioso,Shell,true,false,false,2,false,true,true,false,37 +ire4ever1190/app4flask,ire4ever1190,Python,true,true,false,1,false,true,false,false,10 +edvorg/spray,edvorg,Rust,true,false,false,1,false,true,false,false,35 +jaller94/silvy-matrix,jaller94,JavaScript,true,false,false,1,false,true,false,false,14 +kot-zrodlowy/kot-zrodlowy.gitlab.io,kot-zrodlowy,HTML,true,false,false,2,false,true,true,false,30 +r2p2/stopwatch,r2p2,C++,true,false,false,1,false,true,false,false,31 +iskcrew/isk,iskcrew,Ruby,true,false,false,4,true,true,true,false,86 +hb9fxx/qrsspig,hb9fxx,C++,true,false,false,7,true,true,false,false,852 +KonradBorowski/enum-map,KonradBorowski,Rust,true,false,false,1,false,true,false,false,32 +ShirOS/LunaFramework/Luna,ShirOS,PHP,true,false,false,1,false,true,false,false,23 +arigato-java/alexa-javabutton,arigato-java,JavaScript,true,false,false,1,false,true,false,false,19 +ultsi-projects/blakkisvuohi,ultsi-projects,JavaScript,true,false,false,1,false,true,false,false,20 +MonkeyLog/BrewStillery,MonkeyLog,Rust,true,false,false,1,false,false,false,false,14 +philbooth/mixbot,philbooth,JavaScript,true,false,false,1,false,true,false,false,25 +philbooth/FxHey,philbooth,JavaScript,true,false,false,1,false,true,false,false,21 +philbooth/scrumpy,philbooth,JavaScript,true,false,false,1,false,true,false,false,25 +philbooth/surch,philbooth,JavaScript,true,false,false,1,false,true,false,false,25 +philbooth/tryer,philbooth,JavaScript,true,false,false,1,false,true,false,false,29 +philbooth/vagueTime.js,philbooth,JavaScript,true,false,false,1,false,true,false,false,29 +more-cores/discord-message-builder,more-cores,PHP,true,false,false,1,false,true,false,false,34 +agravgaard/cbctrecon,agravgaard,C++,true,false,false,1,false,true,false,false,68 +rmcgregor/aio-msgpack-rpc,rmcgregor,Python,true,false,false,3,true,true,true,false,57 +rnickson/wykop-gif-to-gfy,rnickson,JavaScript,true,false,false,1,false,true,false,false,11 +mudar-ca/SnooZy,mudar-ca,Java,true,false,false,1,false,false,true,false,10 +n9n/apl,n9n,JavaScript,true,false,false,1,false,false,true,false,11 +nmud/nmud-core,nmud,Java,true,false,false,2,false,false,true,false,28 +griest/pokeforge,griest,JavaScript,true,false,false,3,true,true,true,false,69 +custom_components/cloudflare,custom_components,Python,true,false,false,2,true,false,true,false,9 +custom_components/brewdog,custom_components,Python,true,false,false,2,true,false,true,false,9 +mziescha/perl6-DBIx-NamedQueries,mziescha,Perl6,true,false,false,1,false,true,false,false,41 +pgerber/zbase32-rust,pgerber,Rust,true,false,false,1,false,true,false,false,37 +aheger/train-svelte,aheger,CSS,true,false,false,1,false,false,true,false,17 +eliaskosunen/eliaskosunen.gitlab.io,eliaskosunen,HTML,true,false,false,1,false,false,true,false,13 +xomachine/NESM,xomachine,Nim,true,false,false,2,false,true,true,false,62 +categulario/karel-vue,categulario,JavaScript,true,false,false,1,true,false,false,false,30 +mrvik/loadlify,mrvik,JavaScript,true,false,false,3,false,true,true,true,34 +zerodogg/ampache-docker,zerodogg,Shell,true,false,false,1,true,false,false,false,15 +arrem/Clam,arrem,Kotlin,true,false,true,3,true,true,true,false,31 +sbrl/TraceRoutePlus,sbrl,C#,true,false,false,1,true,false,false,false,26 +Salamek/version,Salamek,Python,true,true,false,4,false,true,true,false,106 +Gahr/hyperdav,Gahr,Rust,true,false,false,1,false,false,false,false,32 +Rhialto/macro11,Rhialto,C,true,false,false,2,false,false,false,false,31 +rek2/GoEnumerator,rek2,Go,true,false,false,1,true,false,false,false,13 +softwareperonista/nomeolvides,softwareperonista,Vala,true,false,false,1,true,false,false,false,15 +BartWillems/octaaf,BartWillems,Go,true,false,false,2,true,false,true,false,55 +vikserver/vikserver2,vikserver,JavaScript,true,false,false,2,true,true,false,false,49 +vikserver/vshort,vikserver,JavaScript,true,false,false,1,false,true,false,false,6 +jcfandino/leveleditor,jcfandino,Scala,true,false,true,1,false,true,false,false,4 +lu-ci/kyanite,lu-ci,Python,true,false,false,4,true,true,false,true,86 +akii0008/lwbot-rewrite,akii0008,JavaScript,true,false,false,1,false,true,false,false,10 +csicar/MensaPlan,csicar,Kotlin,true,false,false,2,true,true,false,false,47 +Energy1011/monsterpenguin,Energy1011,HTML,true,false,false,2,false,true,true,false,27 +NobbZ/exercism-solutions,NobbZ,C++,true,false,false,2,false,true,false,true,143 +jeanfi/find-duplicate-files,jeanfi,Java,true,false,true,1,false,true,false,false,4 +rvs314/rvs314.gitlab.io,rvs314,HTML,true,false,false,1,false,false,true,false,11 +tacoda/jaws,tacoda,Rust,true,false,false,1,false,true,false,false,5 +Xeom/edil,Xeom,C,true,false,false,2,true,false,false,false,27 +bhavyanshu/chatbase-php,bhavyanshu,PHP,true,false,false,1,false,true,false,false,30 +cwesson/LinkAlert,cwesson,JavaScript,true,false,false,1,true,false,false,false,17 +lucidlylogicole/paddle,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false,13 +jgkamat/dotfiles,jgkamat,EmacsLisp,true,false,false,1,true,false,false,false,17 +Gostavikyi/Home,Gostavikyi,HTML,true,false,false,1,false,false,true,false,13 +waringer/Alexa-Wetterochs,waringer,Go,true,false,false,2,true,true,false,false,39 +chucksys/clj-editor,chucksys,Clojure,true,false,false,1,false,true,false,false,8 +thehumaneffort/rails-5-base,thehumaneffort,Ruby,true,false,false,3,true,false,true,false,109 +scull7/bs-sql-composer,scull7,OCaml,true,false,false,1,false,true,false,false,21 +scull7/bs-crud-functors,scull7,OCaml,true,false,false,3,true,true,true,false,59 +r05323028/ptt_crawler,r05323028,Python,true,true,false,1,false,true,false,false,5 +isqad/ubastation,isqad,JavaScript,true,false,false,1,true,false,false,false,44 +tvo/Nodata,tvo,C#,true,false,false,3,true,true,false,true,41 +ksichien/ts-list-organizer,ksichien,TypeScript,true,false,false,3,true,true,true,false,58 +vala-panel-project/xfce4-sntray-plugin,vala-panel-project,Vala,true,false,false,2,true,false,false,true,39 +vala-panel-project/vala-panel-extras,vala-panel-project,Vala,true,false,false,2,true,false,false,true,53 +Syping/gta5view-cmd,Syping,C++,true,false,false,1,true,false,false,false,24 +slowpokex/angular-mp,slowpokex,TypeScript,true,false,false,2,false,true,false,true,24 +Slack06/yadg,Slack06,Python,true,true,false,1,true,false,false,false,24 +scarabeusiv/presentations,scarabeusiv,TeX,true,false,false,1,true,false,false,false,21 +zeiot-backup/rpi-cert-manager,zeiot-backup,Makefile,true,false,false,4,true,true,true,false,106 +gratefulfrog/ArduGuitar,gratefulfrog,Python,true,false,false,1,false,false,true,false,12 +simcav/simcav.gitlab.io,simcav,CSS,true,false,false,1,false,false,true,false,13 +khaledhosny/emacs,khaledhosny,EmacsLisp,true,false,false,1,false,true,false,false,41 +rdi-eg/wfile,rdi-eg,C++,true,false,false,2,true,true,false,false,46 +rdi-eg/rdi_utils,rdi-eg,C++,true,false,false,2,true,true,false,false,46 +nwmitchell/zendesk-downloader,nwmitchell,Python,true,true,false,2,true,true,false,false,44 +lucenaproject/lucena.py,lucenaproject,Python,true,true,false,1,false,true,false,false,7 +pgampe/authenticator,pgampe,PHP,true,false,false,2,false,true,false,true,101 +JuliaGPU/CUDAapi.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false,92 +JuliaGPU/CuArrays.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false,194 +JuliaGPU/GPUArrays.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false,50 +JuliaGPU/CUDAdrv.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false,139 +fatihacet/vue-spa,fatihacet,Vue,true,false,false,1,false,true,false,false,21 +katyukha/odoo-helper-scripts,katyukha,Shell,true,false,false,4,true,true,true,false,110 +raatiniemi/sonar-objective-c,raatiniemi,Java,true,false,false,3,true,true,true,false,50 +laurih/matid,laurih,Python,true,true,false,1,false,true,false,false,16 +janvv/janban,janvv,JavaScript,true,false,false,1,false,false,true,false,55 +zub2/somfy-tools,zub2,C++,true,false,false,2,true,true,false,false,27 +venture-api/gate,venture-api,JavaScript,true,false,false,2,false,true,true,false,30 +ivoanjo/persistent-dmnd,ivoanjo,Ruby,true,false,false,1,false,true,false,false,364 +jacquesherren/smartphysio-android,jacquesherren,Java,true,false,false,2,true,true,false,false,44 +rodrigondec/gmail-signature,rodrigondec,HTML,true,false,false,1,false,false,true,false,11 +mhuber84/klickibunti-deployment,mhuber84,PHP,true,false,false,11,false,false,false,false,395 +aurelien.chabot/cv,aurelien.chabot,Python,true,false,false,4,false,false,true,false,64 +f2e-practice/todolist,f2e-practice,Vue,true,false,false,2,false,false,true,false,32 +mkourim/cfme-testcases,mkourim,Python,true,true,false,4,false,true,true,true,86 +archmac/packages,archmac,Shell,true,false,false,2,true,false,false,false,79 +murchik/django-smelly-tokens,murchik,Python,true,false,false,1,false,true,false,false,7 +jdesodt/rqlite-disco-express,jdesodt,JavaScript,true,false,false,2,true,true,false,false,24 +jdesodt/seneca-rqlite-store,jdesodt,JavaScript,true,false,false,2,true,true,false,false,36 +h4xrk1m/slinkie,h4xrk1m,Python,true,false,false,1,false,true,false,false,9 +JuliaGPU/CLBLAS.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false,21 +JuliaGPU/CLFFT.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false,21 +daberlin/sap-reposrc-decompressor,daberlin,C++,true,false,false,2,true,true,false,false,28 +toby3d/telegraph,toby3d,Go,true,false,false,2,false,true,false,false,39 +bob6664569/blockfolio-api-client,bob6664569,JavaScript,true,false,false,1,false,true,false,false,15 +fawcio/design_patters_examples,fawcio,C++,true,false,false,1,true,false,false,false,23 +m00dawg/FilmLog,m00dawg,JavaScript,true,false,false,1,false,true,false,false,35 +solarliner/terrainlib,solarliner,Python,true,false,false,1,false,true,false,false,26 +bashrc2/freedombone,bashrc2,Shell,true,false,false,4,true,true,true,false,159 +carymrobbins/scalaz-deriving,carymrobbins,Scala,true,false,false,2,true,false,true,false,39 +wdullaer/vplayer,wdullaer,Kotlin,true,false,false,1,false,false,false,true,31 +xdrixxyz/pepperoni,xdrixxyz,JavaScript,true,false,false,1,false,false,true,false,14 +dynomite567/docker-plex-beta-armhf,dynomite567,,true,false,false,1,true,false,false,false,11 +loxal/muctool,loxal,HTML,true,false,false,2,false,false,false,false,34 +duncan-bayne/heroku-app-clozure-common-lisp,duncan-bayne,CommonLisp,true,false,false,1,false,true,false,false,7 +codingJWilliams/Assassin,codingJWilliams,Python,true,false,false,1,false,false,true,false,27 +Poly_Rueda/scheduling-app-ray,Poly_Rueda,Vue,true,false,false,1,false,false,true,false,20 +itukikikuti/XLibrary11,itukikikuti,C++,true,false,false,1,false,true,false,false,19 +jgkamat/jgkamat.gitlab.io,jgkamat,EmacsLisp,true,false,false,1,false,false,true,false,13 +jabranham/mixed-pitch,jabranham,EmacsLisp,true,false,false,1,false,true,false,false,7 +biovm/biovm.gitlab.io,biovm,HTML,true,false,false,1,false,true,false,false,14 +vasanthdeveloper/vasanthdeveloper.gitlab.io,vasanthdeveloper,HTML,true,false,false,1,false,false,true,false,11 +Swapnil273/my-library,Swapnil273,JavaScript,true,false,false,1,false,false,true,false,11 +estinet/gFeatures,estinet,Java,true,false,false,1,false,true,false,false,11 +Ma_124/build.py,Ma_124,Python,true,true,false,1,false,false,true,false,14 +hexgearinc/seven-sun-downs,hexgearinc,CSS,true,false,false,1,false,true,false,false,14 +philmd/qemu,philmd,C,true,false,false,1,false,true,false,false,88 +bigapplepy/yak-bak,bigapplepy,Python,true,true,false,2,false,true,false,false,90 +pantacor/pantahub-www,pantacor,JavaScript,true,false,false,2,true,false,true,false,123 +ChaoticEnigma/libchaos,ChaoticEnigma,C++,true,false,false,2,true,true,false,false,36 +pok3r-custom/pok3rconf,pok3r-custom,C++,true,false,false,2,true,true,false,false,41 +pok3r-custom/pok3rtool,pok3r-custom,C++,true,false,false,2,true,true,false,false,40 +pok3r-custom/qmk_pok3r,pok3r-custom,C,true,false,false,1,true,false,false,false,25 +clickable/clickable-gitlab-ci-test,clickable,CMake,true,false,false,1,false,true,false,false,22 +xonvanetta/gerish,xonvanetta,Go,true,false,false,2,true,true,false,false,28 +zeropaper/fiha,zeropaper,JavaScript,true,false,false,2,false,true,true,false,45 +gkrishnaks/auto-deploy-webextensions,gkrishnaks,JavaScript,true,false,false,1,false,false,false,false,17 +hectorj/test-nix-gitlab-ci,hectorj,Nix,true,false,false,1,true,false,false,false,24 +zjw88282740/pwn-firewall,zjw88282740,C,true,false,false,1,true,false,false,false,34 +jckimble/go-health,jckimble,Go,true,false,false,1,false,true,false,false,15 +estinet/EstiConsole,estinet,Go,true,false,false,1,false,true,false,false,22 +estinet/ClioteSky,estinet,Go,true,false,false,1,false,true,false,false,19 +estinet/gFeaturesBungee,estinet,Java,true,false,false,1,false,true,false,false,11 +psachin/psachin.gitlab.io,psachin,CSS,true,false,false,1,false,true,false,false,18 +hajidalakhtar/profil,hajidalakhtar,JavaScript,true,false,false,1,false,false,true,false,11 +statscloud.io/statscloud.io-nodejs-client,statscloud.io,JavaScript,true,false,false,1,true,false,false,false,14 +Tuuux/GalaxieDrakeCLI,Tuuux,Python,true,true,false,1,false,true,false,false,12 +Tuuux/galaxie-bob,Tuuux,Python,true,true,false,1,false,true,false,false,11 +intr0/intr0.gitlab.io,intr0,HTML,true,false,false,1,false,false,true,false,11 +aeremeev/saturna,aeremeev,TypeScript,true,false,false,1,false,true,false,false,20 +cloudnativewales/dockeronwindows,cloudnativewales,HTML,true,false,false,1,false,true,false,false,19 +kienan/puppet-alternc,kienan,Puppet,true,false,false,2,false,true,true,false,30 +k33g/k33g.gitlab.io,k33g,JavaScript,true,false,false,1,false,true,false,false,15 +probono/gs-plugin-appimage,probono,C,true,false,false,1,false,true,false,false,13 +oddcoder/GP_Template,oddcoder,TeX,true,false,false,1,false,true,false,false,59 +satisfiability01/mios,satisfiability01,Haskell,true,false,false,1,true,false,false,false,9 +shnarazk/haskell/PDP11,shnarazk,Haskell,true,false,false,2,true,true,false,false,20 +ykyuen/docker-boatswain,ykyuen,Shell,true,false,false,1,true,false,false,false,23 +StonedMoose/manual-testing-manager,StonedMoose,Java,true,false,false,6,true,true,true,false,75 +moueza/lesMacDonaldsDeNantes,moueza,JavaScript,true,false,false,3,true,true,true,false,96 +ydkn/rails-menu-manager,ydkn,Ruby,true,false,false,4,true,true,false,false,138 +ydkn/redmine_airbrake_backend,ydkn,Ruby,true,false,false,4,true,true,false,false,50 +ydkn/logged,ydkn,Ruby,true,false,false,4,true,true,false,false,187 +ydkn/jquery-watcher,ydkn,CoffeeScript,true,false,false,3,true,false,false,false,41 +ydkn/capistrano-logtail,ydkn,Ruby,true,false,false,3,true,false,false,false,41 +ydkn/auto_locale,ydkn,Ruby,true,false,false,3,true,false,false,false,41 +ihkawiss/bachelor-thesis,ihkawiss,PLpgSQL,true,false,false,2,true,true,false,false,14 +alexdemari/pyplate,alexdemari,Python,true,true,false,2,false,true,true,false,74 +oxford-data/yieldcurve,oxford-data,HTML,true,false,false,1,false,false,true,false,11 +forthy42/thinking-forth,forthy42,TeX,true,false,false,1,true,false,false,false,21 +aceteam.kaist/ACE-Molecule,aceteam.kaist,C++,true,false,false,3,true,true,false,false,82 +jenx/rectify,jenx,Python,true,false,false,2,false,true,true,false,46 +pashinin.com/frontend,pashinin.com,Vue,true,false,false,2,true,false,true,false,73 +pashinin.com/docs,pashinin.com,Makefile,true,false,false,2,true,false,true,false,40 +junquera/toc-toc-ssh,junquera,Python,true,true,false,2,false,true,true,false,25 +davidrolle/clj-cukes,davidrolle,Clojure,true,false,false,1,false,true,false,false,5 +hendisantika/spring-boot-kotlin-sample,hendisantika,Kotlin,true,false,true,2,true,false,true,false,44 +CptS/ltw2018-plakat-konfigurator,CptS,Vue,true,false,false,2,false,false,false,false,32 +devscola/perseidas,devscola,HTML,true,false,false,1,false,false,true,false,13 +yanlinnthor/yanlinnthor.gitlab.io,yanlinnthor,HTML,true,false,false,1,false,true,false,false,20 +SunyataZero/well-being-diary,SunyataZero,Python,true,true,false,2,false,true,true,false,48 +arquolo/kerasify,arquolo,C++,true,false,false,3,true,true,false,false,67 +bluehotdog/lunch-with-me-backend,bluehotdog,Elixir,true,false,false,4,true,true,false,false,91 +martensoderberg/wambot,martensoderberg,Python,true,false,false,4,false,true,true,false,63 +LibraryGenesis/exodus,LibraryGenesis,CSS,true,false,false,1,false,false,true,false,11 +navdy-hackers/Navdy-MapDownloader,navdy-hackers,Java,true,false,false,2,true,false,false,false,42 +dansiviter/cito,dansiviter,Java,true,false,true,3,true,true,true,false,59 +MTIpython/MTIpython,MTIpython,Python,true,true,false,1,false,true,false,false,128 +muhaaliss/muhaaliss.gitlab.io,muhaaliss,CSS,true,false,false,2,false,true,true,false,27 +09jwater/Needle,09jwater,TypeScript,true,false,false,3,true,true,false,false,31 +toolsweet/toolsweet,toolsweet,JavaScript,true,false,false,1,false,true,false,false,13 +douaneapp/douane-dkms,douaneapp,C,true,false,false,2,true,false,false,false,30 +alantrick/django-agenda,alantrick,Python,true,true,false,2,false,true,true,false,31 +hemanth22/MyJavaLearning,hemanth22,Java,true,false,false,2,true,true,false,false,28 +three11/gitlab-pages-vuepress,three11,JavaScript,true,false,false,1,false,true,false,false,13 +bestmethod/go-acp,bestmethod,Go,true,false,false,1,true,false,false,false,23 +jaymoulin/docker-torrench,jaymoulin,Makefile,true,false,false,1,true,false,false,false,21 +NifTK/NiftyNet,NifTK,Python,true,false,false,5,false,false,false,false,512 +keronos/infusion,keronos,CSS,true,false,false,1,false,false,true,false,18 +jakesys/aws,jakesys,Shell,true,false,false,4,true,true,false,false,369 +sumner/sumnerevans.com,sumner,HTML,true,false,false,1,false,false,true,false,18 +revolunet/test-cypress,revolunet,JavaScript,true,false,false,3,true,true,true,false,83 +ohboi/tg.d,ohboi,D,true,false,false,2,false,true,false,false,38 +atul-mourya/datavisualizer,atul-mourya,JavaScript,true,false,false,1,false,false,true,false,11 +bookchin/gitty,bookchin,JavaScript,true,false,false,2,false,true,false,false,32 +bookchin/granax,bookchin,JavaScript,true,false,false,2,false,true,true,false,27 +higkoohk/Mash,higkoohk,Python,true,false,false,3,true,true,true,false,25 +markwetter/mc-wrap,markwetter,Rust,true,false,false,1,true,false,false,false,24 +custom_components/root,custom_components,Shell,true,false,false,1,false,false,true,false,10 +Tech_Advancer/retirement-calculator,Tech_Advancer,PHP,false,false,false,0,false,false,false,false,1 +gioxa/imagebuilder,gioxa,Shell,true,false,false,4,false,true,false,false,154 +gioxa/oc-runner/buildimage,gioxa,Shell,true,false,false,4,true,true,false,false,172 +nyker510/book-clustering,nyker510,JupyterNotebook,true,false,false,1,false,true,false,false,12 +ellsclytn/waas,ellsclytn,TypeScript,true,false,false,1,false,true,false,false,13 +RTbecard/ezPSD,RTbecard,R,true,false,false,1,false,true,false,false,11 +trustgit/nodebot,trustgit,JavaScript,true,false,false,1,false,true,false,false,10 +opencf/opencf,opencf,PHP,true,false,false,1,false,true,false,false,51 +adleatherwood/DrivenDb,adleatherwood,C#,true,false,false,3,true,true,false,true,51 +SunyataZero/trees,SunyataZero,Python,true,true,false,1,false,true,false,false,35 +geoadmin-opensource/django-workflow-fsm,geoadmin-opensource,Python,true,true,false,1,false,true,false,false,14 +geoadmin-opensource/django-common-models,geoadmin-opensource,Python,true,true,false,1,false,true,false,false,14 +geoadmin-opensource/django-file-context,geoadmin-opensource,Python,true,true,false,1,false,true,false,false,14 +hostedprometheus/hostedprometheus,hostedprometheus,Go,true,false,false,2,true,true,false,false,30 +ktsepelev/rabbitmq-mailer-golang,ktsepelev,Go,true,false,false,3,true,true,true,false,40 +yttriumtyclief/thinkbase,yttriumtyclief,HTML,true,false,false,2,false,true,true,false,38 +www.hohee/NodeJSTest,www.hohee,JavaScript,true,false,false,2,false,false,false,false,45 +biancode/node-red-contrib-iiot-opcua,biancode,JavaScript,true,false,false,1,false,true,false,false,14 +commonshost/sherlock,commonshost,JavaScript,true,false,false,1,false,true,false,false,11 +AccessNowHelpline/community-documentation,AccessNowHelpline,HTML,true,false,false,1,false,false,true,false,59 +flib99/i3-workspace-names,flib99,Python,true,true,false,1,false,true,false,false,29 +TheDarkula/code-artistry,TheDarkula,HTML,true,false,false,1,false,true,false,false,18 +uptimeventures/gatsby-source-rss,uptimeventures,JavaScript,true,false,false,1,false,true,false,false,22 +brno32/math-game,brno32,Python,true,true,false,1,false,true,false,false,8 +tigefa/ubuntu-bionic,tigefa,Python,true,false,false,1,true,false,false,false,18 +keithwberry/wetty,keithwberry,JavaScript,true,false,false,3,true,true,false,true,35 +ylzat/javaproject,ylzat,Java,true,false,true,2,true,true,false,false,75 +OpenPlaygroundMap/OpenPlaygroundMap,OpenPlaygroundMap,JavaScript,true,false,false,4,true,true,true,true,99 +elliotbouvier/workshop-git,elliotbouvier,JavaScript,true,false,false,4,true,true,false,false,49 +swe-nrb/demo-infopack-rollbeskrivningar,swe-nrb,JavaScript,true,false,false,4,true,false,true,false,56 +ComposePress/core,ComposePress,PHP,true,false,false,1,false,true,false,false,38 +amathew/yoginth.ml,amathew,HTML,true,false,false,1,false,true,false,false,6 +barsoosayque/a-tale-about-tail,barsoosayque,Lua,true,false,false,1,false,true,false,false,40 +joshburkart/gpscale,joshburkart,Python,true,true,false,1,false,true,false,false,9 +mdaffin/scribe,mdaffin,Rust,true,false,false,2,true,true,false,false,26 +JohnBlood/project-trident,JohnBlood,HTML,true,false,false,1,false,true,false,false,20 +kaashif/decomp,kaashif,HTML,true,false,false,1,false,false,true,false,11 +sebastianhutter/urt-server,sebastianhutter,Shell,true,false,false,1,true,false,false,false,27 +TheChosenEvilOne/Mindustry,TheChosenEvilOne,Java,true,false,false,1,true,false,false,false,24 +brancengregory/brancengregory.gitlab.io,brancengregory,HTML,true,false,false,1,false,false,true,false,11 +dickoa/humanitarian-datasci-pres,dickoa,HTML,true,false,false,1,false,true,false,false,16 +nystrome/sciit,nystrome,Python,true,true,false,2,false,false,false,false,51 +shnarazk/haskell/haskell-on-heroku,shnarazk,Haskell,true,false,false,2,true,false,true,false,11 +arma3-server-tools/modmanager,arma3-server-tools,Python,true,true,false,1,true,false,false,false,25 +joprotin/docker/apache,joprotin,Shell,true,false,false,1,false,false,false,true,23 +clivejo/solus,clivejo,,true,false,false,1,false,false,true,false,11 +kdeleteme/Hectic-old,kdeleteme,Dart,true,false,false,1,false,true,false,false,17 +wahomekevin/website-sonos,wahomekevin,CSS,true,false,false,2,true,false,true,false,26 +adleatherwood/ezrep,adleatherwood,Go,true,false,false,3,true,true,false,true,51 +chaynHQ/soul-medicine,chaynHQ,Ruby,true,false,false,1,false,true,false,false,69 +endlesscodegroup/inspector,endlesscodegroup,Kotlin,false,false,false,0,false,false,false,false,1 +zach-brennan/LaTeX-Resume,zach-brennan,TeX,true,false,false,2,true,false,true,false,31 +uzluisf/piensaperl6,uzluisf,TeX,true,false,false,2,true,false,true,false,25 +zeen3/uuidgen4,zeen3,TypeScript,true,false,false,1,false,false,true,false,19 +highway900/operata_test,highway900,Go,true,false,false,4,true,true,true,true,73 +newroseji/laravel,newroseji,PHP,true,false,false,2,false,true,true,false,40 +sprat/debpack,sprat,Shell,true,false,false,2,true,true,false,false,70 +ArthurJordao/docusaurus-example,ArthurJordao,JavaScript,true,false,false,1,false,true,false,false,17 +vincentdavy/soundcloud-extractor,vincentdavy,Go,true,false,false,5,true,true,false,true,76 +jeanfi/ubuntu-desktop,jeanfi,Shell,true,false,false,1,false,false,false,false,14 +drom/jtag,drom,JavaScript,true,false,false,1,false,true,false,false,14 +modding-legacy/Glacidus,modding-legacy,Java,true,false,false,1,false,true,false,false,22 +frozenfoxx/docker-zandronum,frozenfoxx,Shell,true,false,false,1,true,false,false,false,24 +IntelieChallenge/event-store,IntelieChallenge,C++,true,false,false,2,true,true,false,false,27 +actondev/org-mode-ci,actondev,Shell,true,false,false,1,false,true,false,false,9 +njam/ttn-experiments,njam,JavaScript,true,false,false,2,true,false,false,true,50 +jaymoulin/docker-ddgr,jaymoulin,Makefile,true,false,false,1,true,false,false,false,20 +jaymoulin/docker-google-music-downloader,jaymoulin,Makefile,true,false,false,1,true,false,false,false,20 +jaymoulin/docker-googler,jaymoulin,Makefile,true,false,false,1,true,false,false,false,20 +sehnem/pynmet,sehnem,Python,true,false,false,1,false,true,false,false,25 +mrpudn/mrpudn.gitlab.io,mrpudn,Ruby,true,false,false,2,false,true,true,false,27 +angular-material-dashboard/angular-material-dashboard-sdp,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +semla/secret-key-to-bitcoin-address-balance,semla,TypeScript,true,false,false,2,false,true,true,false,52 +orioks/android-app,orioks,Kotlin,true,false,false,2,true,false,true,false,58 +femtopixel/docker-kompose,femtopixel,Makefile,true,false,false,1,true,false,false,false,20 +logi-ce/docker-tsung,logi-ce,Makefile,true,false,false,1,true,false,false,false,20 +cisl407/classroom/pdp11-server,cisl407,Haskell,true,false,false,2,true,false,true,false,13 +VincentTam/vincenttam.gitlab.io,VincentTam,HTML,true,false,false,1,false,true,false,false,13 +gitzup/deployster,gitzup,Python,true,true,false,1,false,true,false,false,6 +just-python/website,just-python,HTML,true,false,false,1,false,true,false,false,12 +vstconsulting/polemarch-docker,vstconsulting,Python,true,true,false,2,false,true,false,false,24 +kesslerdev/generator-skimia,kesslerdev,JavaScript,true,false,false,3,true,true,true,false,38 +starbelly/hydro,starbelly,Erlang,true,false,false,1,false,true,false,false,5 +PierreFaniel/react-calculator,PierreFaniel,JavaScript,true,false,false,1,false,false,true,false,20 +Tim-S/asterixjs,Tim-S,TypeScript,true,false,false,3,true,true,true,false,46 +NikolayS/docker-postgres-sqitch,NikolayS,,true,false,false,1,false,true,false,false,8 +eryshev/cryptocurrencies.monitoring.with.prometheus,eryshev,HTML,true,false,false,1,false,false,true,false,11 +hassbian/hassbian-scripts,hassbian,Shell,true,false,false,3,true,true,true,false,30 +pdiemi/mibrary,pdiemi,Python,true,false,false,1,false,true,false,false,5 +chevdor/oss-starter-template,chevdor,JavaScript,true,false,false,3,true,true,false,false,60 +freetux/freetux.gitlab.io,freetux,HTML,true,false,false,1,false,false,true,false,11 +TheGamecraft/c-cms,TheGamecraft,HTML,true,false,false,2,true,false,true,false,102 +remram44/unix-at,remram44,Python,true,false,false,2,false,false,false,false,26 +attakei/yagura,attakei,Python,true,true,false,4,false,true,false,false,97 +openschoolmaps/OpenSchoolMaps.ch,openschoolmaps,QML,true,false,false,2,true,false,false,false,90 +cbray/autoMEGA,cbray,C++,true,false,false,2,true,false,true,false,27 +tanukitalks/tanukitalks.gitlab.io,tanukitalks,CSS,true,false,false,2,false,true,true,false,33 +volviq/cmake-testing,volviq,C++,true,false,false,1,true,false,false,false,13 +shubhamagarwal3010/LetThingsSpeak,shubhamagarwal3010,Java,true,false,false,1,true,false,false,false,52 +tezos/opam-repository,tezos,Shell,true,false,false,1,true,false,false,false,31 +rnickson/wykop-v2-js,rnickson,TypeScript,true,false,false,1,false,true,false,false,9 +llhe/mace,llhe,C++,true,false,false,5,true,true,false,false,155 +llhe/mace-models,llhe,,true,false,false,2,false,false,false,true,55 +nicolas.poste/message-manager,nicolas.poste,Java,true,false,true,3,true,true,true,false,66 +nicolas.poste/process-manager,nicolas.poste,Java,true,false,true,3,true,true,true,false,66 +redmic-project/gis/geoserver,redmic-project,Shell,true,false,false,1,false,true,false,false,126 +sj1k/impd,sj1k,Python,true,true,false,2,false,true,true,false,20 +glenveegee/PDBeCIF,glenveegee,Python,true,true,false,3,false,true,false,false,80 +mausy5043/uss_cygnus,mausy5043,Shell,true,false,false,2,false,true,false,false,49 +dark0dave/NBclassifier,dark0dave,Scala,true,false,false,1,true,false,false,false,21 +dark0dave/reversible-human-readable-id,dark0dave,JavaScript,true,false,false,1,false,true,false,false,10 +dark0dave/rss_feed,dark0dave,,true,false,false,1,false,true,false,false,8 +nuke-group/preferencesManager,nuke-group,Python,true,false,false,1,false,true,false,false,19 +griest/generator-griest,griest,JavaScript,true,false,false,2,true,false,true,false,71 +kubic-ci/ci3,kubic-ci,Python,true,false,false,1,false,true,false,false,10 +fhightower/html-to-json,fhightower,HTML,true,false,false,1,false,true,false,false,30 +coisa/gitlab-ci-sandbox,coisa,Shell,true,false,false,8,true,true,true,false,252 +yunity/ukuvota,yunity,F#,true,false,false,5,true,true,false,true,78 +jdesodt/easy-log-watcher,jdesodt,JavaScript,true,false,false,2,true,true,false,false,21 +AtteLynx/bt-desktop,AtteLynx,JavaScript,true,false,false,3,true,false,false,false,46 +keithwberry/worldtime-crystal,keithwberry,Makefile,true,false,false,2,true,false,false,true,21 +guzart/sirkit,guzart,Vue,true,false,false,1,false,false,true,false,26 +alosarjos/steam-provider,alosarjos,TypeScript,true,false,false,2,false,true,true,false,33 +interscity/cep-handler/cep-cataloger,interscity,Ruby,true,false,true,1,true,false,false,false,22 +dilawar/Resonance2018,dilawar,TeX,true,false,false,1,false,true,false,false,5 +custom_components/untapped,custom_components,Python,true,false,false,1,true,false,false,false,4 +olanguage/olang,olanguage,Go,true,false,false,1,true,false,false,false,15 +trustable/distros/overview,trustable,,true,false,false,2,false,false,false,false,40 +vladimir18/find-the-pair,vladimir18,JavaScript,true,false,false,4,true,true,true,true,65 +PresentationsTechniques/Impression3D,PresentationsTechniques,Ruby,true,false,false,1,false,false,true,false,19 +rgcalsaverini/iff-iat,rgcalsaverini,JavaScript,true,false,false,2,true,true,false,false,44 +milan44/statistics,milan44,JavaScript,true,false,false,1,false,true,false,false,23 +NebulousLabs/writeaheadlog,NebulousLabs,Go,true,false,false,2,false,true,false,false,19 +Paccos/mensa-thumb-bot,Paccos,Python,true,true,false,3,false,true,true,false,37 +FascinatedBox/lily-docs,FascinatedBox,JavaScript,true,false,false,1,false,false,true,false,28 +gutoglup/CarFlow,gutoglup,Swift,true,false,false,1,true,false,false,false,11 +ce1011/ict-mc-ans,ce1011,JavaScript,true,false,false,1,false,false,true,false,13 +absassi/asap_app_console,absassi,CMake,true,false,false,1,true,false,false,false,53 +bilalbox/panos_tester,bilalbox,Python,true,true,false,1,true,false,false,false,19 +jaredfholgate/DropBoxFileSorter.Go,jaredfholgate,Go,true,false,false,1,false,false,false,false,26 +jeanmorais/sonar-maven-ci-example,jeanmorais,Java,true,false,true,2,true,false,false,false,61 +daktak/pebble_uqm_watchface,daktak,C,true,false,false,1,true,false,false,false,43 +ajason41/joyride,ajason41,JavaScript,true,false,false,1,false,false,true,false,11 +webmaicon/sorterica,webmaicon,PHP,true,false,false,2,false,false,false,false,28 +scottchayaa/scottchayaa.gitlab.io,scottchayaa,CSS,true,false,false,1,false,true,false,false,25 +openmicroscopy/incubator/omero-grafana-json-datasource,openmicroscopy,Python,true,true,false,2,false,true,false,false,26 +lucidlylogicole/slate,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false,13 +Matrixcoffee/matrixcoffee.gitlab.io,Matrixcoffee,Python,true,false,false,1,false,false,true,false,12 +merlodicus/jenkins-docker,merlodicus,Groovy,true,false,false,2,true,false,false,false,118 +remram44/dockerimage,remram44,Python,true,false,false,1,false,true,false,false,19 +intr0/A-New-Declaration-of-Independence,intr0,HTML,true,false,false,1,false,false,true,false,11 +LoganBarnes/tom-the-tool,LoganBarnes,TypeScript,true,false,false,2,false,true,true,false,19 +thekitchenagency/swiss-post-labels,thekitchenagency,PHP,true,false,false,1,false,true,false,false,17 +Aragami1408/drgnzsearch,Aragami1408,CSS,true,false,false,9,true,true,false,true,802 +moodlenet/clients/contacts-import,moodlenet,JavaScript,true,false,false,1,false,false,true,false,11 +gserv.me/InfoBot,gserv.me,Python,true,true,false,2,true,true,false,false,30 +olaris/olaris-react,olaris,JavaScript,true,false,false,1,true,false,false,false,18 +finite-loop/flutils,finite-loop,Python,true,false,false,1,false,true,false,false,6 +costrouc/knoxpy-fizzbuzz-complete,costrouc,Python,true,false,false,3,false,true,true,false,53 +mikeyjkmo/nameko-payee-notifier,mikeyjkmo,Python,true,false,false,1,false,true,false,false,10 +lduros/quartet-ui-plugins-boilerplate,lduros,JavaScript,true,false,false,2,false,true,false,false,45 +tkint/MiniDAO,tkint,Java,true,false,true,5,true,true,true,true,78 +LeMilliard/DecisionTree,LeMilliard,Java,true,false,true,3,true,true,true,false,27 +gke-deploy-patterns/pipelines/cli,gke-deploy-patterns,Go,true,false,false,1,false,false,false,true,12 +teozkr/sbt-lockfile,teozkr,Scala,true,false,false,3,true,true,true,false,52 +nlabbe/gold,nlabbe,JavaScript,true,false,false,3,true,true,false,true,61 +magnus.odman/audentes,magnus.odman,Python,true,true,false,1,false,false,false,false,27 +freddieptf/manga-scraper,freddieptf,Go,true,false,false,2,true,true,false,false,41 +fswb/fswb.gitlab.io,fswb,HTML,true,false,false,1,false,false,true,false,11 +angusmfdotcom/HelloBuild,angusmfdotcom,ShaderLab,true,false,false,1,true,false,false,false,41 +sinclair2/easygg,sinclair2,Shell,true,false,false,1,false,true,false,false,24 +sky-kun/marsch-cmd,sky-kun,HTML,true,false,false,1,true,false,false,false,21 +rakenodiax/rust-client,rakenodiax,Rust,true,false,false,1,false,true,false,false,15 +ngxa/utils,ngxa,TypeScript,true,false,false,6,true,true,true,true,182 +gnaar/gear,gnaar,Python,true,false,false,1,false,true,false,false,11 +hieu.vo/testJavaApp,hieu.vo,Java,true,false,true,3,true,false,true,false,75 +drim-consulting/public/devops/git-flow-ci-cd,drim-consulting,TypeScript,true,false,false,2,true,false,true,false,155 +iVOID/hosts,iVOID,HTML,true,false,false,1,false,false,true,false,11 +atomfrede/micronaut-beer,atomfrede,Java,true,false,false,2,true,true,false,false,26 +prosign/server,prosign,Go,true,false,false,2,true,true,false,false,39 +nazarmx/odbc-futures,nazarmx,Rust,true,false,false,3,true,true,true,false,198 +gappan/terraform-provider-jira,gappan,Go,true,false,false,2,true,true,false,false,33 +lacsed/clDES,lacsed,C++,true,false,false,1,false,true,false,false,14 +mertkahyaoglu/zeplin-challenge,mertkahyaoglu,JavaScript,true,false,false,1,false,true,false,false,19 +IceHe/lib,IceHe,CSS,true,false,false,1,false,false,false,false,24 +MaxIV/test-runner,MaxIV,,true,false,false,1,false,true,false,false,7 +Eudaimonstro/Steves-Rules-of-Order,Eudaimonstro,JavaScript,true,false,false,1,false,true,false,false,16 +USSRM/API,USSRM,Rust,true,false,false,1,false,true,false,false,15 +adaedra/derpy,adaedra,TypeScript,true,false,false,2,true,true,false,false,33 +katyukha/odoo-rpc-client,katyukha,Python,true,true,false,3,false,false,false,false,115 +charts/deploy-image-helm-base,charts,Shell,true,false,false,1,true,false,false,false,65 +custom_components/hassbian_config,custom_components,Python,true,false,false,2,true,false,true,false,9 +debuglevel/greeting-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true,76 +jurelou/trust,jurelou,JavaScript,true,false,false,2,true,false,true,false,26 +tomvidm/ssml,tomvidm,C++,true,false,false,1,false,true,false,false,16 +IronLions/Interna/Core,IronLions,PHP,true,false,false,1,false,true,false,false,34 +m3hr24d/docker-symfony,m3hr24d,Shell,true,false,false,1,false,false,true,false,20 +korinets-name/korinets-name.gitlab.io,korinets-name,JavaScript,true,false,false,1,false,false,true,false,14 +beyondbitcoin/wlsjs,beyondbitcoin,JavaScript,true,false,false,1,true,false,false,false,15 +coteafs/config,coteafs,Java,true,false,false,3,true,true,false,false,31 +hop23typhu/fullstack-graphql,hop23typhu,JavaScript,true,false,false,1,false,true,false,false,28 +ohboi/goinsu,ohboi,D,true,false,false,2,true,true,false,false,80 +lucidlylogicole/pristine,lucidlylogicole,JavaScript,true,false,false,1,false,false,true,false,13 +to1ne/debut,to1ne,Makefile,true,false,false,1,false,true,false,false,11 +spease/WeaverForumSoftware,spease,Python,true,true,false,1,false,true,false,false,49 +thecodechef/vue-test,thecodechef,,true,false,false,1,false,true,false,false,28 +wdblckmma/aaa,wdblckmma,,true,false,false,1,false,true,false,false,52 +boardcrew/instalador,boardcrew,Scala,true,false,false,1,true,false,false,false,33 +dzaporozhets/mvn-example,dzaporozhets,Java,true,false,true,1,false,true,false,false,7 +joielechong/belajar-go-dengan-tes,joielechong,Go,true,false,false,2,false,true,true,false,35 +mexus/take-some-rs,mexus,Rust,true,false,false,1,false,true,false,false,26 +thiagotrennepohl/gourmet-game,thiagotrennepohl,Go,true,false,false,2,false,true,false,false,34 +MidoriApp/backend,MidoriApp,PHP,true,false,false,1,false,true,false,false,34 +thecodechef/vue-cli-plugin-editorconfig,thecodechef,JavaScript,true,false,false,1,false,true,false,false,20 +fvafrcu/fakemake,fvafrcu,R,true,false,false,4,true,true,true,false,40 +ncrmro/preon,ncrmro,TypeScript,true,false,false,1,false,true,false,false,13 +cloudigrade/images/test-container,cloudigrade,,true,false,false,2,false,true,true,false,31 +kkopper/oraclejdk-gradle,kkopper,,true,false,false,4,true,false,true,false,154 +ribamar-org/ribamar,ribamar-org,JavaScript,true,false,false,3,false,true,true,false,86 +pothitos/C_Pipeline,pothitos,C,true,false,false,3,true,true,false,false,48 +finestructure/bitrise-trigger,finestructure,Python,true,false,false,3,true,true,false,true,95 +harbottle/docker-wix,harbottle,C,true,false,false,1,true,false,false,false,11 +kudotnet/dotnetfun,kudotnet,C#,true,false,false,1,false,true,false,false,13 +rapidhaskell2018/ws1,rapidhaskell2018,Haskell,true,false,false,3,true,true,false,false,24 +ZissiTheBee/Ernst,ZissiTheBee,Java,true,false,false,2,true,true,false,false,51 +vincentdavy/replay-api,vincentdavy,Go,true,false,false,4,true,true,false,true,64 +0xF61/MAOYYK2018,0xF61,HTML,true,false,false,1,false,false,true,false,11 +lpireyn/cmcm,lpireyn,Shell,true,false,false,1,false,true,false,false,15 +cleider87/weather,cleider87,JavaScript,true,false,false,3,false,false,false,false,30 +codesections/personal,codesections,HTML,true,false,false,1,false,false,true,false,14 +svsamipillai/gitlab-hw,svsamipillai,HTML,true,false,false,2,true,false,true,false,27 +Calinou/clr,Calinou,Nim,true,false,false,2,true,false,true,false,79 +strburst/pelican-site,strburst,HTML,true,false,false,1,false,true,false,false,25 +pothitos/CPP_Pipeline,pothitos,C++,true,false,false,3,true,true,false,false,50 +je-cspantoja/whats_app_chat_api-python,je-cspantoja,Python,true,true,false,1,false,true,false,false,8 +gitlab-org/backstage-changelog,gitlab-org,CSS,true,false,false,1,false,true,false,false,22 +anited/publish,anited,Python,true,true,false,1,false,true,false,false,19 +objectia/api-docs,objectia,JavaScript,true,false,false,1,false,true,false,false,16 +CodeBabel/hello-world,CodeBabel,Python,true,true,false,1,false,false,false,false,20 +shukerov/myblog,shukerov,CSS,true,false,false,1,false,true,false,false,26 +isabellesandow/unity4j-meme-generator,isabellesandow,CSS,true,false,false,1,false,false,true,false,11 +maksim.dadzerkin/go-build-example,maksim.dadzerkin,Go,true,false,false,2,true,true,false,false,44 +lgbtplus/youth-bot-java,lgbtplus,Java,true,false,true,1,false,true,false,false,4 +kimlab/uniparc_xml_parser,kimlab,Python,true,false,false,3,true,true,true,false,123 +datto/engineering/spacewalk-debian-client-packages,datto,Shell,true,false,false,2,true,false,false,false,36 +rbx-cone/cone-plugin,rbx-cone,Lua,true,false,false,1,false,true,false,false,15 +centerorbit/depcharge,centerorbit,Go,true,false,false,4,true,true,false,true,228 +gnaar/piste,gnaar,Python,true,false,false,1,false,true,false,false,16 +gnaar/powder,gnaar,JavaScript,true,false,false,1,false,true,false,false,13 +gnaar/edge,gnaar,JavaScript,true,false,false,1,false,true,false,false,13 +morimekta/providence,morimekta,Java,true,false,true,2,false,false,false,false,86 +phyohtetarkar/github-jobs,phyohtetarkar,Kotlin,true,false,false,1,true,false,false,false,37 +nerones/pdf-signature,nerones,PHP,true,false,false,1,false,true,false,false,20 +willianpaixao/willianpaixao.gitlab.io,willianpaixao,,true,false,false,2,false,true,true,false,21 +jochembroekhoff/motorscript-compiler,jochembroekhoff,Java,true,false,true,3,true,false,false,false,74 +gnaar/off-piste,gnaar,Python,true,false,false,1,false,true,false,false,16 +gitlab-org/gitter/gitter-marked,gitlab-org,HTML,true,false,false,2,true,true,false,false,31 +pothitos/Python_Pipeline,pothitos,Python,true,false,false,3,true,true,false,false,45 +gjs-guide/gjs-guide.gitlab.io,gjs-guide,,true,false,false,1,false,true,false,false,15 +YoshiRulz/VexilLogos,YoshiRulz,JavaScript,true,false,true,1,false,false,true,false,11 +daurnimator/docker-hererocks,daurnimator,Shell,true,false,false,1,false,true,false,false,10 +to1source-open-source/jsonqltools,to1source-open-source,JavaScript,true,false,false,1,false,false,true,false,11 +jgxvx/cilician,jgxvx,PHP,true,false,false,2,false,true,false,true,32 +LCaraccio/tes-lib,LCaraccio,Shell,true,false,false,3,false,true,true,false,91 +cn-ds/web-app,cn-ds,CSS,true,false,false,1,false,false,true,false,24 +ryanaghdam/stoneham.town,ryanaghdam,HTML,true,false,false,1,false,false,true,false,13 +rygoo/raven,rygoo,Go,true,false,false,3,true,true,false,true,85 +daktak/pebble-phone-batt-bar,daktak,C,true,false,false,1,true,false,false,false,39 +mexus/and-then2,mexus,Rust,true,false,false,1,false,true,false,false,17 +codecentricnl/summercourse-ci-cd,codecentricnl,Java,true,false,false,1,false,true,false,false,3 +tinkererr/ember,tinkererr,Java,true,false,true,1,false,true,false,false,10 +apastuhov/i18next-tui,apastuhov,TypeScript,true,false,false,3,true,true,true,false,62 +XBagon/force_remove,XBagon,Rust,true,false,false,1,false,true,false,false,6 +cegal/MOE,cegal,Python,true,false,false,2,false,false,false,false,32 +vstconsulting/polemarch-ansible,vstconsulting,Python,true,false,false,3,false,true,false,true,71 +sethbergman/node-express-demo,sethbergman,JavaScript,true,false,false,9,true,true,false,true,814 +jnda/FlashAlert,jnda,Kotlin,true,false,false,1,true,false,false,false,19 +DoS-Project/project_making,DoS-Project,,true,false,false,1,false,true,false,false,5 +charts/components/gitlab-operator,charts,Go,false,false,false,0,false,false,false,false,1 +fhightower/ioc-utility,fhightower,Python,true,false,false,1,false,true,false,false,30 +nd-cse-30341-fa18/cse-30341-fa18-website,nd-cse-30341-fa18,CSS,true,false,false,1,false,true,false,false,4 +gnaar/gear-ci-base,gnaar,,true,false,false,1,true,false,false,false,10 +gfoss/phygital-site,gfoss,CSS,true,false,false,2,false,true,true,false,28 +frank_ak/formation_PMP,frank_ak,,true,false,false,1,false,false,true,false,16 +publiclab/plots2,publiclab,Ruby,true,false,false,1,false,true,false,false,24 +laurentbachelier/weboob,laurentbachelier,Python,true,false,false,3,true,true,true,false,80 +c410-f3r/mop,c410-f3r,Rust,true,false,false,1,false,true,false,false,24 +akibisuto/direkuta,akibisuto,Rust,true,false,false,3,true,true,false,false,51 +crave/meepwnctf2018-esor,crave,TeX,true,false,false,1,false,true,false,false,8 +willianpaixao/awesome-bjj,willianpaixao,,true,false,false,1,false,true,false,false,19 +chin123/chin123.gitlab.io,chin123,HTML,true,false,false,1,false,false,true,false,11 +Madis0/Firefox-tweaks,Madis0,JavaScript,true,false,false,1,false,false,true,false,13 +samsartor/dynpool,samsartor,Rust,true,false,false,2,false,true,true,false,50 +Yonder-Dynamics/misc/wiki-home,Yonder-Dynamics,,true,false,false,1,false,false,true,false,11 +cosban/persistence,cosban,Go,true,false,false,2,true,true,false,false,32 +hosco/ops-deploy-kubernetes,hosco,Shell,true,false,false,1,true,false,false,false,18 +deepset-ai/open-source/glove-embeddings-de,deepset-ai,C,true,false,false,1,true,false,false,false,20 +vrresto/il2ge,vrresto,C++,true,false,false,1,true,false,false,false,77 +bryceschober/conan-cpputest,bryceschober,Python,true,false,false,1,false,true,false,false,74 +satisfiability01/splr,satisfiability01,Rust,true,false,false,1,true,false,false,false,9 +judahnator/json-manipulator,judahnator,PHP,true,false,false,2,false,false,false,false,41 +lfiolhais/AdeptSim,lfiolhais,Rust,true,false,false,2,true,false,false,false,36 +JOSM/docker-library,JOSM,Shell,true,false,false,1,true,false,false,false,22 +aleks001/haproxy19-centos,aleks001,Shell,true,false,false,1,false,true,false,false,18 +raffaeldutra/raffaeldutra.github.io,raffaeldutra,HTML,true,false,false,2,true,false,true,false,45 +ummels/www.ummels.de,ummels,HTML,true,false,false,2,true,false,false,false,58 +s.fuchs/prophane,s.fuchs,Python,true,false,false,2,false,true,false,false,23 +ectucker/ld42,ectucker,Dart,true,false,false,1,true,false,false,false,33 +GhastFilms/PieBot,GhastFilms,C++,true,false,false,1,true,false,false,false,23 +simonbreiter/color-name,simonbreiter,JavaScript,true,false,false,3,true,true,true,false,23 +SITTV/sittv.gitlab.io,SITTV,CSS,true,false,false,2,false,false,false,false,80 +usherbrooke/igl-601/demo-gitlab,usherbrooke,JavaScript,true,false,false,2,true,true,false,false,51 +3MI/SoftwareDesignProject,3MI,Python,true,true,false,1,false,true,false,false,37 +fenrirunbound/pipeline-queue,fenrirunbound,Go,true,false,false,2,true,false,false,true,40 +the_usk/libuctest,the_usk,C,true,false,false,1,true,false,false,false,11 +tue-umphy/python3-sensemapi,tue-umphy,Python,true,false,false,3,false,true,true,false,143 +JelF/monad_router,JelF,Ruby,true,false,false,2,false,true,false,false,56 +victorlapin/usage-stats,victorlapin,Kotlin,true,false,false,1,true,false,false,false,27 +joprotin/symfony/custom-user-management-sf4,joprotin,PHP,true,false,false,1,false,false,false,true,22 +Dxc123/GitlabTestDemo,Dxc123,Objective-C,true,false,false,4,true,false,true,false,54 +DrCherry/photography,DrCherry,HTML,true,false,false,1,false,false,true,false,28 +custom_components/wienerlinien,custom_components,Python,true,false,false,2,true,false,true,false,9 +nd-cse-30341-fa18/cse-30341-fa18-assignments,nd-cse-30341-fa18,Python,true,false,false,1,false,true,false,false,4 +p8n/verso,p8n,JavaScript,true,false,false,1,false,true,false,false,21 +michelsantos10/game-question-service,michelsantos10,Java,true,false,true,1,true,false,false,false,7 +cryogenweb/cryogenweb.gitlab.io,cryogenweb,HTML,true,false,false,1,false,false,true,false,13 +amunizp/c4ad-hugo,amunizp,HTML,true,false,false,1,false,true,false,false,20 +simeunovics/triangle,simeunovics,JavaScript,true,false,false,1,false,true,false,false,8 +GeneralKenobee/Thesis-Title-Generator,GeneralKenobee,HTML,true,false,false,1,false,false,true,false,11 +maike.me/maike.me,maike.me,HTML,true,false,false,1,false,true,false,false,16 +ShakedHazon/LearnReact,ShakedHazon,JavaScript,true,false,false,1,false,false,true,false,13 +fathom/contracts,fathom,JavaScript,true,false,false,3,false,true,true,false,40 +ldjam/writespace,ldjam,Lua,true,false,false,2,true,false,true,false,62 +Myzh/audio-visualizer,Myzh,JavaScript,true,false,false,1,false,false,true,false,13 +flatiron-dc/wedding_invitation,flatiron-dc,HTML,true,false,false,1,false,false,true,false,12 +centerorbit/release-github,centerorbit,PHP,true,false,false,2,true,false,false,false,41 +IDF31/idf31.gitlab.io,IDF31,HTML,true,false,false,1,false,false,true,false,13 +karuppiah7890/gitlab-ci-console-colors,karuppiah7890,JavaScript,true,false,false,1,false,true,false,false,23 +open-archives-data-rescue/climate-data-rescue,open-archives-data-rescue,Ruby,true,false,false,1,true,false,false,false,49 +romeroyonatan/truco,romeroyonatan,CSS,true,false,false,1,false,false,true,false,13 +CoalZombik/CDAR,CoalZombik,C#,true,false,false,1,true,false,false,false,37 +kirbo/cozify-rest-api-client,kirbo,TypeScript,true,false,false,4,true,true,false,true,75 +ColoradoSchoolOfMines/acm-officer-resources,ColoradoSchoolOfMines,Python,true,true,false,1,false,false,true,false,20 +DatacenterSec/NomadCluster,DatacenterSec,Ruby,true,false,false,2,false,false,false,false,98 +phinicota/godoit,phinicota,Go,true,false,false,2,true,true,false,false,34 +Lexinek/nette-camp-deployer,Lexinek,PHP,true,false,false,3,true,true,true,false,49 +mech-lang/mech,mech-lang,Rust,true,false,false,1,false,true,false,false,13 +zieone/website,zieone,CSS,true,false,false,1,false,true,false,false,19 +link2xt/pwsafe-rs,link2xt,Rust,true,false,false,1,false,true,false,false,9 +jackobrien22/jackobrien22.gitlab.io,jackobrien22,CSS,true,false,false,1,false,false,true,false,13 +WorldBrain/memex-root-server,WorldBrain,TypeScript,true,false,false,4,true,false,true,false,87 +gitlab-org/async-retrospectives,gitlab-org,Ruby,true,false,false,2,false,true,false,false,18 +IvanSanchez/Leaflet.RepeatedMarkers,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +Volobuev/ks-book-shelf,Volobuev,TypeScript,true,false,false,1,false,true,false,false,16 +cypress-io/cypress-example-kitchensink,cypress-io,HTML,true,false,false,2,true,true,false,false,64 +coreynwops/decred-dev-docs,coreynwops,HTML,true,false,false,3,false,true,true,false,75 +luishck/librecademy,luishck,Ruby,true,false,false,1,false,true,false,false,47 +dosuken123/JUnit-test-reports,dosuken123,HTML,true,false,false,1,false,true,false,false,37 +X3n0m0rph59/precached,X3n0m0rph59,Rust,true,false,false,1,false,true,false,false,25 +X3n0m0rph59/precached-gui,X3n0m0rph59,Rust,true,false,false,1,false,true,false,false,24 +objectia/help-center,objectia,CSS,true,false,false,1,false,true,false,false,17 +YottaDB/DBMS/YDBOcto,YottaDB,C,true,false,false,4,true,true,false,true,139 +cartr/macrodcl,cartr,Rust,true,false,false,1,false,true,false,false,7 +m03geek/fastify-status,m03geek,JavaScript,true,false,false,3,false,true,false,true,65 +SoHigh/Nergigante,SoHigh,JavaScript,true,false,false,9,true,true,false,true,817 +lae/intellij-actions-tree,lae,Kotlin,true,false,false,1,true,false,false,false,14 +ModernisingMedicalMicrobiology/groupBug,ModernisingMedicalMicrobiology,Python,true,true,false,1,false,true,false,false,10 +JuliaCN/JuliaZH.jl,JuliaCN,Julia,true,false,false,1,false,false,true,false,19 +semilattice/snowflake,semilattice,Lua,true,false,false,1,false,false,true,false,26 +willianpaixao/spoon,willianpaixao,Shell,true,false,false,1,false,false,false,false,12 +julia-pub/Aux.jl,julia-pub,Julia,true,false,false,1,false,true,false,false,14 +nicolaspanel/TrainingSpeech,nicolaspanel,Python,true,false,false,1,false,true,false,false,20 +usu-amr/usu-amr.gitlab.io,usu-amr,CSS,true,false,false,1,false,false,true,false,12 +cs1331/cs1331.gitlab.io,cs1331,Java,true,false,false,1,false,true,false,false,11 +lyndsysimon/columnist,lyndsysimon,Python,true,false,false,1,false,true,false,false,12 +m/m.gitlab.io,m,CSS,true,false,false,1,false,true,false,false,16 +binarymist/mocksse,binarymist,JavaScript,true,false,false,1,false,true,false,false,20 +deepset-ai/open-source/word2vec-embeddings-de,deepset-ai,Python,true,true,false,1,true,false,false,false,20 +Noughmad/ptree,Noughmad,Rust,true,false,false,1,false,true,false,false,10 +gitote/git-module,gitote,Go,true,false,false,1,true,false,false,false,13 +rit-scg/rit-scg.gitlab.io,rit-scg,CSS,true,false,false,1,false,true,false,false,15 +edwingamedev/Day3,edwingamedev,JavaScript,true,false,false,1,false,false,true,false,11 +thealik/clcalc,thealik,JavaScript,true,false,false,3,true,true,true,false,50 +Liferenko/poehali_info,Liferenko,JavaScript,true,false,false,2,false,true,false,false,43 +msh1011/CAI,msh1011,JavaScript,true,false,false,1,false,true,false,false,19 +DFDS/Autobots/samples-pipeline-dotnet,DFDS,C#,true,false,false,5,true,true,true,true,63 +custom_components/versions,custom_components,Python,true,false,false,2,true,false,true,false,9 +mergetb/tech/sled,mergetb,Go,true,false,false,4,true,false,false,false,121 +BlockSharp/BlockSharp,BlockSharp,C#,true,false,false,2,true,false,true,false,43 +grigorye/SimulatorRecorder,grigorye,Swift,true,false,false,1,true,false,false,false,20 +alelec/jupyter_micropython_remote,alelec,Python,true,false,false,1,false,false,true,false,21 +SumNeuron/cookie-cutter-rollup-vue,SumNeuron,JavaScript,true,false,false,1,false,false,true,false,13 +sys-fiuba/julia/SySTools.jl,sys-fiuba,Julia,true,false,false,1,false,true,false,false,14 +lokiproject/loki-network,lokiproject,C++,true,false,false,1,true,false,false,false,70 +deepset-ai/open-source/fasttext-embeddings-de,deepset-ai,Shell,true,false,false,1,true,false,false,false,20 +vickyjackson/ichoose-app,vickyjackson,Java,true,false,true,2,true,false,false,false,27 +tomabolt/flask-starter-aws-elastic-beanstalk,tomabolt,Shell,true,false,false,2,false,true,true,false,29 +iba-aes/webcie/website,iba-aes,PHP,true,false,false,3,true,true,true,false,105 +AlexL777/Bolt-Service-Rostock,AlexL777,,true,false,false,1,false,false,true,false,13 +ronald-chun/hello-gitlab-heroku,ronald-chun,TypeScript,true,false,false,1,false,true,false,false,6 +Szmok/Genetic-Inheritance-System,Szmok,Python,true,true,false,1,false,true,false,false,10 +tuerbot/tuerbot,tuerbot,Python,true,false,false,1,false,true,false,false,18 +purpleteam-labs/purpleteam,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false,20 +cravacuore/rawRSS,cravacuore,JavaScript,true,false,false,13,true,true,false,true,907 +a-chernov/epm_test,a-chernov,C,true,false,false,2,true,true,false,false,42 +zeen3/ripsters,zeen3,JavaScript,true,false,false,1,false,false,true,false,34 +adelkhafizova/mipt-stats,adelkhafizova,CSS,true,false,false,1,false,false,true,false,19 +PaulBrownMagic/OptiTruckPredict,PaulBrownMagic,HTML,true,false,false,1,false,true,false,false,10 +maheshhegde/blog,maheshhegde,HTML,true,false,false,1,false,true,false,false,20 +hrbrmstr/worldtilegrid,hrbrmstr,R,true,false,false,1,false,true,false,false,8 +jimsy/huia,jimsy,Rust,true,false,false,1,false,true,false,false,39 +Lucidiot/python-usda,Lucidiot,Python,true,true,false,2,false,true,true,false,94 +clear-code/lua-web-driver,clear-code,Lua,true,false,false,2,false,true,true,false,53 +bimlas/tw5-asciidoctor,bimlas,JavaScript,true,false,false,1,false,true,false,false,22 +cjvnjde_template/webpack_html_sass_template,cjvnjde_template,JavaScript,true,false,false,2,false,false,false,true,34 +c4g/draco/libdraco_ue4,c4g,C#,true,false,false,3,true,false,true,false,439 +Bosi/docker-compose-collection,Bosi,Shell,true,false,false,1,false,false,false,false,39 +freundchen/spring-boot-and-react,freundchen,JavaScript,true,false,true,3,true,false,true,false,41 +openlp/web-remote,openlp,TypeScript,true,false,false,3,true,true,true,false,54 +osm-ui/react,osm-ui,JavaScript,true,false,false,3,true,false,false,false,76 +Req/raidgroups,Req,Ruby,true,false,false,1,false,true,false,false,26 +recalbox/website,recalbox,,true,false,false,2,true,true,false,false,35 +CDAGaming/CraftPresence,CDAGaming,Java,true,false,false,1,false,true,false,false,22 +qezz/tg-sed-bot,qezz,Rust,true,false,false,2,true,true,false,false,15 +tmkn/wagtail-storages,tmkn,Python,true,false,false,2,false,true,false,false,39 +purpleteam-labs/purpleteam-logger,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false,20 +training-devops-201801/belajar-devops,training-devops-201801,Java,true,false,true,2,false,false,true,false,57 +purpleteam-labs/purpleteam-orchestrator,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false,21 +purpleteam-labs/purpleteam-app-scanner,purpleteam-labs,JavaScript,true,false,false,1,false,true,false,false,21 +mexus/sedregex,mexus,Rust,true,false,false,1,false,true,false,false,17 +pmercado12/tutorial-git-lab,pmercado12,JavaScript,true,false,false,1,false,false,true,false,13 +ClementLin/ZWaveBrowser,ClementLin,Java,true,false,false,2,true,true,false,false,35 +gperdomor/vapor-response-time,gperdomor,Swift,true,false,false,1,false,true,false,false,34 +SchoolOrchestration/libs/microservicetool,SchoolOrchestration,Python,true,true,false,3,false,true,true,true,50 +FlightChain2/FlightChainAPI,FlightChain2,TypeScript,true,false,false,3,true,false,true,false,410 +FlightChain2/FlightChainUI,FlightChain2,TypeScript,true,false,false,2,true,false,false,false,76 +Polkabot/polkabot-plugin-blocthday,Polkabot,JavaScript,true,false,false,2,true,false,false,false,80 +ap6yc/MEDICOM,ap6yc,TeX,true,false,false,3,false,false,false,false,75 +ty-test-dev/cake3-test,ty-test-dev,PHP,true,false,false,1,false,true,false,false,35 +localg-host/website,localg-host,JavaScript,true,false,false,2,true,false,true,false,27 +iblech/bb,iblech,Haskell,true,false,false,1,false,false,true,false,11 +whatisaphone/rlbot-rust,whatisaphone,Rust,true,false,false,1,false,false,false,false,27 +0x1d/illucat,0x1d,JavaScript,true,false,false,2,true,false,false,true,40 +josiekate/cs373,josiekate,CSS,true,false,false,2,false,true,true,false,28 +dave.bell/alarm,dave.bell,JavaScript,true,false,false,3,true,false,true,false,45 +float.cf/broadcaster,float.cf,JavaScript,true,false,false,2,true,false,true,false,33 +VincentTam/test-hugo-staticman,VincentTam,,true,false,false,1,false,true,false,false,13 +DanielWhitston/pip_test_1,DanielWhitston,Ruby,true,false,false,1,false,true,false,false,61 +aurorafossorg/apps/tuna,aurorafossorg,D,true,false,false,9,true,true,false,true,834 +CedricQ/testProj,CedricQ,C++,true,false,false,1,true,false,false,false,15 +adventuscalendar/prrepo,adventuscalendar,Shell,true,false,false,2,false,false,false,false,49 +adventuscalendar/utils/docker-prototool,adventuscalendar,,true,false,false,3,false,false,false,false,45 +gperdomor/vapor-request-id,gperdomor,Swift,true,false,false,1,false,true,false,false,34 +leroywarnt/sdlc,leroywarnt,Python,true,true,false,3,false,true,false,true,91 +timvisee/cant-touch-this-project,timvisee,CSS,true,false,false,1,false,false,true,false,21 +cccheck-mate/server,cccheck-mate,Rust,true,false,false,1,false,true,false,false,8 +mbedsys/citbx4gitlab,mbedsys,Shell,true,false,false,2,true,true,false,false,85 +matt-lindsay/folder-poller,matt-lindsay,JavaScript,true,false,false,1,false,true,false,false,30 +rarenet/dfak,rarenet,HTML,true,false,false,3,true,false,true,false,73 +eritikass/tpt-2018-2,eritikass,JavaScript,true,false,false,4,false,true,true,true,43 +dudi/simple-maven-dep,dudi,Java,true,false,true,2,false,true,true,false,65 +irenepixel/labPPW,irenepixel,HTML,true,false,false,2,false,true,true,false,38 +elazkani/rundeck-resources,elazkani,Python,true,false,false,1,false,true,false,false,46 +georgematthewl/story9-ppw,georgematthewl,Python,true,true,false,2,false,true,true,false,38 +monetha/reputation-contracts,monetha,JavaScript,true,false,false,1,false,true,false,false,27 +ninuxorg/docker/ansible-centos,ninuxorg,,true,false,false,3,true,true,false,true,110 +swergas/swergas-belenios-ci,swergas,OCaml,true,false,false,3,false,false,false,false,70 +librespacefoundation/gr-leo,librespacefoundation,C++,true,false,false,3,false,false,false,false,184 +Baby-AC/expenses-tracker-backend,Baby-AC,JavaScript,true,false,false,1,false,false,true,false,17 +flatiron-dc/learning-git2,flatiron-dc,HTML,true,false,false,1,false,false,true,false,11 +apifie/nodems/node-microservice,apifie,JavaScript,true,false,false,1,false,true,false,false,102 +gamearians/Games-list,gamearians,,true,false,false,1,false,false,true,false,25 +shaktiproject/software/shakti-linux,shaktiproject,Makefile,true,false,false,1,false,true,false,false,11 +bitoftrust/bitoftrust.gitlab.io,bitoftrust,CSS,true,false,false,1,false,true,false,false,19 +ninuxorg/docker/ansible-ubuntu,ninuxorg,Shell,true,false,false,3,true,true,false,true,109 +ninuxorg/docker/ansible-debian,ninuxorg,Shell,true,false,false,3,true,true,false,true,130 +ninuxorg/docker/ansible-fedora,ninuxorg,,true,false,false,3,true,true,false,true,108 +thepiercingarrow/microbot,thepiercingarrow,JavaScript,true,false,false,1,false,false,true,false,11 +mgi/gpm/gpm,mgi,LabVIEW,true,false,false,2,true,false,true,false,60 +KageKirin/kagekirin.gitlab.io,KageKirin,Makefile,true,false,false,2,false,true,true,false,24 +vijai/MCS-Controller,vijai,Java,true,false,false,1,true,false,false,false,20 +freckles-io/freckles,freckles-io,HTML,true,false,false,2,false,true,false,true,136 +adrianlemess/starwars-project,adrianlemess,TypeScript,true,false,false,4,true,true,true,false,61 +morimekta/io-util,morimekta,Java,true,false,true,2,false,false,false,false,87 +morimekta/diff-util,morimekta,Java,true,false,true,2,false,false,false,false,82 +morimekta/console-util,morimekta,Java,true,false,true,2,false,false,false,false,82 +morimekta/testing-util,morimekta,Java,true,false,true,2,false,false,false,false,82 +superchain/superchainpy,superchain,Python,true,true,false,1,false,false,false,false,16 +opennota/check,opennota,Go,true,false,false,2,true,true,false,false,20 +opennota/re2dfa,opennota,Go,true,false,false,2,true,true,false,false,20 +opennota/screengen,opennota,Go,true,false,false,2,true,true,false,false,22 +custom_components/uptimerobot,custom_components,Python,true,false,false,2,true,false,true,false,9 +eLeCtrOssSnake/GMOD-Magic-Carpets,eLeCtrOssSnake,Lua,true,false,false,1,false,true,false,false,13 +Xynnect/MarkdownRumianaCV,Xynnect,HTML,true,false,false,1,false,false,true,false,11 +BurkHufnagel/learningloop,BurkHufnagel,JavaScript,true,false,false,9,true,true,false,true,648 +bunnyblue/AndroidSDKMirror,bunnyblue,HTML,true,false,false,1,true,false,false,false,19 +moodlenet/clients/react,moodlenet,TypeScript,true,false,false,1,false,true,false,false,111 +timvisee/cant-touch-this,timvisee,Rust,true,false,false,3,true,true,false,false,56 +lucj/sophia.events,lucj,CSS,true,false,false,4,true,true,true,false,95 +elziojr/jhipster-playground-registry,elziojr,Java,true,false,true,3,true,false,true,true,60 +hrbrmstr/curlparse,hrbrmstr,C++,true,false,false,1,false,true,false,false,8 +alelain/atti-snake,alelain,JavaScript,true,false,false,1,false,false,true,false,17 +bitingbytes/onion-engine,bitingbytes,C++,true,false,false,3,true,true,true,false,68 +haoict/searchable-book-fullstack,haoict,JavaScript,true,false,false,1,true,false,false,false,9 +HeavyLightStudios/HLSWebComponents/Heavy-Navbar,HeavyLightStudios,TypeScript,true,false,false,3,true,true,true,false,23 +philstollery/bristol-ki-aikido,philstollery,HTML,true,false,false,1,false,true,false,false,21 +eval/otarta,eval,Clojure,true,false,true,2,false,false,false,true,51 +luxish/cv-luxish,luxish,JavaScript,true,false,false,1,false,false,true,false,18 +ld18bari/linuxday,ld18bari,CSS,true,false,false,1,false,false,true,false,14 +kilik/tools/mysql-filter-dump,kilik,PHP,true,false,false,1,true,false,false,false,26 +ablu/mana_elixir,ablu,Elixir,true,false,false,1,false,true,false,false,17 +donatocardoso/snake-game,donatocardoso,JavaScript,true,false,false,1,false,false,true,false,11 +hosweetim/timx-site,hosweetim,TypeScript,true,false,false,5,true,true,true,false,153 +ehsaan/ehsaan.me,ehsaan,HTML,true,false,false,1,false,false,true,false,11 +1MansiS/JavaCrypto,1MansiS,Java,true,false,false,1,true,false,false,false,16 +fiveop/krautschluessel,fiveop,Java,true,false,false,1,true,false,false,false,16 +openrail/uk/stomp-client-nodejs,openrail,JavaScript,true,false,false,3,true,true,true,false,250 +zieone/comic,zieone,CSS,true,false,false,2,false,true,true,false,28 +dylanbstorey/maev,dylanbstorey,Python,true,false,false,3,false,false,false,true,67 +pibigstar/Mybatis,pibigstar,Java,true,false,true,3,true,true,true,false,28 +maalni/crunchysync,maalni,TypeScript,true,false,false,1,false,false,false,false,19 +n0r1sk/docker-volume-glusterfs,n0r1sk,Go,true,false,false,1,true,false,false,false,47 +Dog2puppy/Roblox-Ads,Dog2puppy,,true,false,false,1,false,true,false,false,17 +echocat/echocat.org,echocat,Go,true,false,false,2,true,false,true,false,29 +fredriklarsen/AirBrush,fredriklarsen,Kotlin,true,false,false,3,true,false,true,false,68 +Acklen/glee2,Acklen,TypeScript,false,false,false,0,false,false,false,false,1 +pkuyken/hexmap-generator,pkuyken,Go,true,false,false,2,true,true,false,false,34 +amy-assistant/amy-assistant.gitlab.io,amy-assistant,CSS,true,false,false,1,false,false,true,false,19 +amy-assistant/graphics,amy-assistant,CSS,true,false,false,1,false,false,true,false,12 +dbohdan/hosts,dbohdan,Tcl,true,false,false,1,false,true,false,false,16 +uilianries/native-floripa,uilianries,CMake,true,false,false,3,false,true,true,false,90 +jsonsonson/in-command,jsonsonson,JavaScript,true,false,false,4,false,true,false,false,60 +multicloud-openstack-k8s/app,multicloud-openstack-k8s,HTML,true,false,false,9,true,true,false,true,817 +MaxIV/web-maxiv-tangogql,MaxIV,JavaScript,true,false,false,2,true,false,true,false,44 +fufuhu/hands_on_sample,fufuhu,Python,true,false,false,2,true,true,false,false,34 +homescreen.rocks/lanpartyscreen-beamer,homescreen.rocks,TypeScript,true,false,false,1,true,false,false,false,36 +morimekta/idltool,morimekta,Java,true,false,true,2,false,false,false,true,61 +abduljamiasi2014/testapp,abduljamiasi2014,HTML,true,false,false,1,false,false,true,false,13 +diggan/archiveteam-infra,diggan,JavaScript,true,false,false,3,true,false,true,false,58 +danielgaston/converse,danielgaston,Objective-C,true,false,false,1,true,false,false,false,27 +bachtungvantung/gitlab-ce,bachtungvantung,Ruby,true,false,false,6,true,true,false,false,929 +monetha/reputation-go-sdk,monetha,Go,true,false,false,1,false,true,false,false,16 +phygitalproject/phygitalproject.gitlab.io,phygitalproject,CSS,true,false,false,2,false,true,true,false,28 +gopherburrow/mux,gopherburrow,Go,true,false,false,1,false,true,false,false,11 +gopherburrow/proxyheaders,gopherburrow,Go,true,false,false,1,false,true,false,false,11 +gopherburrow/csrfcookie,gopherburrow,Go,true,false,false,1,false,true,false,false,11 +pothitos/Java_Pipeline,pothitos,Java,true,false,false,2,true,true,false,false,26 +Nooka10/local-food,Nooka10,HTML,true,false,false,4,true,true,true,true,155 +tref/drupal-kubernetes-builder,tref,,true,false,false,1,true,false,false,false,33 +perswayable/bot,perswayable,JavaScript,true,false,false,1,false,false,true,false,38 +dunossauro/batatinhas,dunossauro,Python,true,false,false,1,false,true,false,false,20 +RLesur/pulpdown,RLesur,CSS,true,false,false,1,false,false,true,false,14 +FlatBuffersX/flatbufferx,FlatBuffersX,Java,true,false,false,1,true,false,false,false,33 +toonaive0618/guile-zmq,toonaive0618,Shell,true,false,false,1,false,true,false,false,45 +rusben/smx-m08-uf5,rusben,HTML,true,false,false,1,false,false,true,false,11 +interscity/health-dashboard/datahealth-api,interscity,Ruby,true,false,false,2,false,true,false,false,38 +sailfishos-porters-ci/cancro-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false,20 +sailfishos-porters-ci/mido-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false,20 +sailfishos-porters-ci/onyx-ci,sailfishos-porters-ci,Shell,true,false,false,1,true,false,false,false,19 +districted/web-client,districted,TypeScript,true,false,false,6,false,false,false,false,105 +districted/auth-server,districted,Java,true,false,false,6,true,true,false,false,91 +districted/district-command-service,districted,Java,true,false,false,6,true,true,false,false,92 +districted/district-query-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/api-gateway,districted,Java,true,false,false,6,true,true,false,false,91 +districted/configuration-server,districted,Java,true,false,false,6,true,true,false,false,92 +districted/discovery-server,districted,Java,true,false,false,6,true,true,false,false,95 +districted/feedback-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/message-command-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/message-query-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/media-read-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/media-write-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/profile-command-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/profile-query-service,districted,Java,true,false,false,6,true,true,false,false,91 +districted/notification-service,districted,Java,true,false,false,6,true,true,false,false,86 +Aexol/graphql-editor,Aexol,TypeScript,true,false,false,1,true,false,false,false,14 +goauth/dex,goauth,Python,true,true,false,3,true,true,true,false,80 +gioxa/odagrun/website,gioxa,HTML,true,false,false,4,true,false,false,true,110 +jorgecarleitao/schemaflow,jorgecarleitao,Python,true,true,false,3,false,true,true,false,67 +Lepardo/SimpleWebSpider-Android,Lepardo,Java,true,false,false,2,true,true,false,false,52 +Lepardo/chestrucon,Lepardo,Awk,true,false,false,1,true,false,false,false,20 +Lepardo/simplewebspider,Lepardo,Java,true,false,true,3,true,true,true,false,103 +rbuer2007/ideas,rbuer2007,Java,true,false,true,1,false,true,false,false,5 +OctoNezd/autogram,OctoNezd,Python,true,true,false,2,true,true,false,false,49 +ahmad_fauzan458/story,ahmad_fauzan458,JavaScript,true,false,false,1,false,false,true,false,16 +2ndkauboy/gitlab-ci-git-deploy,2ndkauboy,,true,false,false,3,true,true,false,true,38 +mygnu/spark_post,mygnu,Rust,true,false,false,1,true,false,false,false,17 +Hurds/python-book,Hurds,HTML,true,false,false,2,false,true,true,false,35 +Hurds/C-Book,Hurds,CSS,true,false,false,2,false,true,true,false,35 +latex-template/thesis,latex-template,TeX,true,false,false,1,true,false,false,false,40 +TollStudios/justanothernetworklib,TollStudios,C#,true,false,false,3,true,true,false,false,55 +leggettc18/fundwarrior,leggettc18,Rust,true,false,false,1,true,false,false,false,17 +diamondburned/go-nhentai,diamondburned,Go,true,false,false,1,true,false,false,false,28 +c57fr/c57,c57fr,PHP,true,false,false,1,false,false,true,false,8 +joseporto/carbon-vue,joseporto,JavaScript,true,false,false,3,false,true,false,true,57 +leopardm/dnd,leopardm,Python,true,true,false,2,false,false,false,true,23 +darinamanda/ppwlab,darinamanda,CSS,true,false,false,2,false,true,true,false,39 +sarsyifa/ppw-syifa,sarsyifa,CSS,true,false,false,1,false,false,true,false,14 +serphacker/webace,serphacker,Java,true,false,true,4,true,true,true,false,98 +burdickjp/burdickjp.gitlab.io,burdickjp,Ruby,true,false,false,2,false,true,true,false,28 +hexLucifer/hexlucifer.gitlab.io,hexLucifer,CSS,true,false,false,1,false,false,true,false,13 +gtrias/genar-radio,gtrias,JavaScript,true,false,false,2,false,true,true,false,29 +webwirtschaft/structured-content,webwirtschaft,PHP,true,false,false,1,false,true,false,false,22 +zimmalex/git-lab-create-react-app,zimmalex,JavaScript,true,false,false,1,false,false,true,false,18 +IT-Berater/twmindmapgenerator,IT-Berater,HTML,true,false,true,2,false,false,false,false,27 +mike-koch/hitman-maps,mike-koch,,true,false,false,3,false,false,false,false,106 +Mishio595/disml,Mishio595,OCaml,true,false,false,2,true,false,true,false,29 +ci-and-cd/maven-build,ci-and-cd,Shell,true,false,true,5,true,true,false,true,200 +jorgemurta/docker-for-laravel,jorgemurta,PHP,true,false,false,2,true,true,false,false,30 +dark_rotations/dark_addon,dark_rotations,Lua,true,false,false,1,false,true,false,false,22 +gioxa/build-images/build-rpmbuild-ruby,gioxa,,true,false,false,3,true,true,false,false,100 +JohnPirate/image-editor,JohnPirate,JavaScript,true,false,false,1,false,true,false,false,15 +nikko.miu/jest-simple-summary,nikko.miu,JavaScript,true,false,false,2,false,true,true,false,35 +sequence-point/open-source/libirina,sequence-point,C++,true,false,false,1,false,false,false,false,14 +spare-time-demos/project-template,spare-time-demos,Java,true,false,false,3,false,true,false,false,74 +gioxa/rpm-build/ruby,gioxa,,true,false,false,2,true,false,true,false,95 +mek-manager/core-client,mek-manager,,true,false,false,2,true,true,false,false,34 +aswinshenoy/inctf-from-bs4,aswinshenoy,HTML,true,false,false,1,false,false,true,false,11 +mtishauser/leadership-track-pipeline,mtishauser,Python,true,true,false,2,false,false,true,false,35 +zackfalcon/dashboard-epitech,zackfalcon,JavaScript,true,false,false,4,false,false,false,false,32 +franjmartin21/mysmartlocker,franjmartin21,Kotlin,true,false,false,1,true,false,false,false,28 +lytedev/elixir_gameserver,lytedev,Elixir,true,false,false,2,true,true,false,false,20 +gioxa/build-images/centos7-ruby-node,gioxa,Shell,true,false,false,4,true,true,false,true,156 +adrianrobotka/moth-server,adrianrobotka,C,true,false,false,2,false,false,false,false,42 +multicloud-openstack-k8s/clusters,multicloud-openstack-k8s,HCL,true,false,false,4,false,true,false,false,382 +cedrickrause/cmn-tls,cedrickrause,TypeScript,true,false,false,2,false,true,true,false,28 +nickdaly/cs736-p2,nickdaly,TeX,true,false,false,2,false,true,true,false,22 +b0/libqtolm,b0,C++,true,false,false,2,true,true,false,false,22 +FullStacker/learningnodejs,FullStacker,JavaScript,true,false,false,1,false,true,false,false,23 +flectra-community/devops/oca2fc,flectra-community,Python,true,true,false,1,false,true,false,false,17 +SER401_Team8/educational-augmented-reality,SER401_Team8,Java,true,false,false,2,true,true,false,false,58 +luxish/node-seed,luxish,JavaScript,true,false,false,1,true,false,false,false,13 +mbarkhau/lib3to6,mbarkhau,Python,true,false,false,2,true,true,false,false,33 +tabos/tvguide,tabos,C,true,false,false,1,false,true,false,false,41 +Skalman/river-rss,Skalman,Rust,true,false,false,2,true,false,true,false,55 +oleh.kurachenko/cv-skills-updator,oleh.kurachenko,JavaScript,true,false,false,1,false,false,false,false,12 +akori/tenjinr,akori,Python,true,false,false,1,false,true,false,false,25 +xavierbaude/hello-world,xavierbaude,Shell,true,false,false,2,true,false,false,true,27 +grigorye/URLHelperApp,grigorye,Swift,true,false,false,1,true,false,false,false,19 +richjyoung/challenges,richjyoung,JavaScript,true,false,false,2,true,true,false,false,42 +ryanpavlik/cxxgraph,ryanpavlik,C++,true,false,false,3,true,true,true,false,83 +mbarkhau/straitjacket,mbarkhau,Python,true,false,false,2,true,true,false,false,32 +sequence-point/open-source/libunittest,sequence-point,C++,true,false,false,1,false,false,false,false,14 +PalouseRobosub/Software/robosub,PalouseRobosub,C++,true,false,false,1,false,true,false,false,35 +jonathanGuzman/ibm-recognition,jonathanGuzman,JavaScript,true,false,false,1,false,false,false,true,16 +oleh.kurachenko/jetbrains-filetemplates-sync,oleh.kurachenko,Python,true,false,false,1,false,true,false,false,9 +N-Lang/N-Lang,N-Lang,C,true,false,false,1,false,true,false,false,14 +Fifal/pia,Fifal,JavaScript,true,false,false,1,true,false,false,false,10 +let-me-help/letmehelp-backend,let-me-help,Python,true,false,false,1,false,true,false,false,36 +opentracing-workshop/spring-petclinic-kubernetes,opentracing-workshop,Java,true,false,true,4,true,false,true,true,90 +merrickluo/fehstats,merrickluo,Ruby,true,false,false,1,true,false,false,false,21 +herber523/scylladb-k8s,herber523,Python,true,false,false,1,false,false,false,false,21 +huhn/piri-web,huhn,Vue,true,false,false,2,true,false,false,true,52 +thengOS/coming-soon-website,thengOS,CSS,true,false,false,1,false,false,true,false,12 +tcherivan/ice-db,tcherivan,JavaScript,true,false,false,2,false,true,false,false,38 +ID4me/id4me-rp-client-python,ID4me,Python,true,true,false,2,false,true,true,false,39 +debuglevel/monitoring-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true,75 +SnejUgal/tbot,SnejUgal,Rust,true,false,false,2,false,true,false,false,48 +web3j/web3j,web3j,Java,false,false,false,0,false,false,false,false,1 +marion-deveaud/python-web-apps,marion-deveaud,CSS,true,false,false,1,false,false,true,false,17 +datadrivendiscovery/simple-ta3,datadrivendiscovery,Vue,true,false,false,1,true,false,false,false,87 +E3-PPW-1/storytugas1,E3-PPW-1,JavaScript,true,false,false,3,false,true,true,true,57 +ognarb/docugen,ognarb,,true,false,false,1,false,false,false,false,16 +ilcine/ilcine.gitlab.io,ilcine,HTML,true,false,false,1,false,false,true,false,13 +tp-ppw/tp1_ppw_2018_2019_1,tp-ppw,Python,true,true,false,2,false,true,true,false,38 +btc_simon/bitmex-api-dashboard,btc_simon,JavaScript,true,false,false,1,false,false,true,false,11 +ghostwriter-deb/ghostwriter-deb,ghostwriter-deb,C++,true,false,false,1,false,true,false,false,7 +FarrasHakim/a5,FarrasHakim,JavaScript,true,false,false,2,false,true,true,false,39 +crane-game/controller-arduino,crane-game,C++,true,false,false,1,false,true,false,false,13 +fuchsia/fuchsia.gitlab.io,fuchsia,HTML,true,false,false,1,false,true,false,false,13 +engalar/docker-android,engalar,,true,false,false,1,true,false,false,false,25 +Khiyara/ppw-lab-2,Khiyara,HTML,true,false,false,3,false,true,true,false,54 +IgorPolyakov/try_uchi_ru,IgorPolyakov,Ruby,true,false,false,1,false,true,false,false,58 +2heoh/casino,2heoh,Go,true,false,false,1,false,true,false,false,18 +sofreeus/aghi2gitlab,sofreeus,,true,false,false,3,true,true,true,false,56 +thefinn93/piston-go,thefinn93,Go,true,false,false,3,true,false,true,false,64 +braneproject/Bitcoin.jl,braneproject,Julia,true,false,false,2,false,true,true,false,77 +quandoo-recruitment/senior-android-engineer,quandoo-recruitment,Java,true,false,false,2,true,true,false,false,46 +m3m3nto/zorbalinux,m3m3nto,Shell,true,false,false,1,false,true,false,false,5 +mdimo/mdimo.gitlab.io,mdimo,CSS,true,false,false,1,false,true,false,false,25 +philbooth/unicode-bom,philbooth,Rust,true,false,false,2,false,true,false,false,46 +inivation/caer,inivation,C,true,false,false,2,true,false,true,false,329 +apartment1/jakir,apartment1,CSS,true,false,false,1,false,false,true,false,11 +iprods-os/guild,iprods-os,Go,true,false,false,3,true,false,false,true,59 +faya/happy-trigger-phaser-3,faya,TypeScript,true,false,false,1,false,false,true,false,14 +dtjm/linky,dtjm,Go,true,false,false,1,false,true,false,false,10 +hev/hev-rinput,hev,C,true,false,false,1,false,true,false,false,28 +MaryChelo/data_science_from_scratch,MaryChelo,JupyterNotebook,true,false,false,1,false,false,true,false,24 +allthethings/deployments/spinnaker,allthethings,Shell,true,false,true,4,false,false,false,false,47 +amritpandey/the-c-programming-language,amritpandey,C,true,false,false,1,false,false,true,false,11 +cape-modeler/frontend,cape-modeler,JavaScript,true,false,false,3,false,true,true,false,52 +crane-game/wii-reciver,crane-game,C++,true,false,false,1,false,true,false,false,13 +edwindj/crandeps,edwindj,HTML,true,false,false,1,false,false,true,false,15 +nylsoo/razzle-typescript-express-boilerplate,nylsoo,TypeScript,true,false,false,2,false,true,false,false,26 +surister/misty-hats-3code-jam-tests,surister,Python,true,false,false,1,false,true,false,false,8 +thomasmendez/cs329e-idb,thomasmendez,HTML,true,false,false,1,false,true,false,false,16 +utf-crawler/utf-crawler,utf-crawler,Rust,true,false,false,1,true,false,false,false,31 +Morriar/inf3135-183-tp2,Morriar,C,true,false,false,2,true,true,false,false,18 +Isleward/isleward-webview-client,Isleward,JavaScript,true,false,false,1,true,false,false,false,54 +zhiymatt/zhiymatt.gitlab.io,zhiymatt,JupyterNotebook,true,false,false,1,false,true,false,false,20 +xldrkp/kollaboratives-schreiben,xldrkp,,true,false,false,1,false,true,false,false,10 +fudaa/fudaa-prepro,fudaa,Java,true,false,true,4,true,true,true,true,109 +fudaa/fudaa-framework,fudaa,Java,true,false,true,5,true,true,true,true,118 +fkrull/rust-libostree,fkrull,Rust,true,false,false,2,true,false,false,true,94 +fudaa/fudaa-crue,fudaa,Java,true,false,true,3,false,true,true,true,105 +philipstaffordwood/karate-tests-for-bvnk-api,philipstaffordwood,Gherkin,true,false,true,1,false,true,false,false,28 +zellepj/philipp.zelle,zellepj,HTML,true,false,false,1,false,false,true,false,11 +ciniml/ultra96_debian,ciniml,Makefile,true,false,false,2,true,false,false,true,47 +yumingchang/pi,yumingchang,C,true,false,false,1,false,true,false,false,2 +PushFish/PushFish-Landing,PushFish,CSS,true,false,false,2,false,true,true,false,28 +Xterat/sample-gitlabci-cpp-project,Xterat,Shell,true,false,false,3,true,true,true,false,37 +burakb/hello-world,burakb,Java,true,false,true,3,true,false,true,true,54 +semaio/salesforce-connector-php,semaio,PHP,true,false,false,1,false,true,false,false,54 +davereid/vote,davereid,HTML,true,false,false,1,false,false,true,false,11 +MatiAedo/club-de-la-lucha,MatiAedo,HTML,true,false,false,1,false,false,true,false,13 +gitlab-examples/ruby-openshift-example,gitlab-examples,Ruby,true,false,false,2,true,false,true,false,58 +licence-mmi/projetweb_stationservice,licence-mmi,HTML,true,false,false,1,false,false,true,false,15 +kuzmych/kuzmych.gitlab.io,kuzmych,HTML,true,false,false,1,false,false,true,false,10 +ZingO-Labs/webextension,ZingO-Labs,JavaScript,true,false,false,1,false,true,false,false,22 +Defite/nuxt-wp-docker,Defite,Vue,true,false,false,1,false,false,true,false,30 +dark0dave/beam-eloquent-shakespeare,dark0dave,Java,true,false,false,1,false,true,false,false,7 +european-data-portal/mqa-metric-service,european-data-portal,Java,true,false,true,6,false,false,false,false,106 +fer-rum/fdl-for-noobs,fer-rum,TeX,true,false,false,1,true,false,false,false,12 +t.datebashvili/enbuscadelafelicidad,t.datebashvili,CSS,true,false,false,1,false,false,true,false,13 +riffraph/road-mapping,riffraph,Python,true,true,false,1,false,true,false,false,6 +ciniml/ultra96_kernel,ciniml,,true,false,false,2,false,false,false,true,48 +simulant/simulant,simulant,C++,true,false,false,4,true,true,true,false,392 +YuRaNnNzZZ/findhooks,YuRaNnNzZZ,Java,true,false,false,1,true,false,false,false,28 +jdierberger1/tree-markup-language,jdierberger1,Java,true,false,false,2,true,true,false,false,55 +mtnygard/m2m.modlog,mtnygard,Go,true,false,false,2,true,false,true,false,33 +diamondburned/forematerial,diamondburned,,true,false,false,1,true,false,false,false,19 +Danno131313/actix-ratscrew,Danno131313,Rust,true,false,false,2,true,false,true,false,48 +vitvickiy/news_maker,vitvickiy,Python,true,true,false,1,false,false,false,false,15 +iandesj/pingpong,iandesj,C#,true,false,false,1,false,true,false,false,22 +tweet.dimitri/jga,tweet.dimitri,Java,true,false,false,4,false,true,true,false,98 +tereshko/chicken,tereshko,C++,true,false,false,1,false,true,false,false,19 +mjkochell/music-sniper,mjkochell,TypeScript,true,false,false,2,true,false,true,false,47 +software-garden/software-garden.gitlab.io,software-garden,Elm,true,false,false,1,false,false,true,false,17 +intangiblerealities/narupa-server,intangiblerealities,C#,true,false,false,2,false,true,true,false,42 +lisaac/vue-pm,lisaac,Vue,true,false,false,1,false,true,false,false,17 +oliverkeeble/code-jam-3,oliverkeeble,Python,true,false,false,1,false,true,false,false,26 +biskette/code-jam-3,biskette,Python,true,false,false,1,false,true,false,false,26 +tagptroll1/code-jam-3,tagptroll1,Python,true,false,false,1,false,true,false,false,26 +Calinou/gits,Calinou,Nim,true,false,false,2,true,false,true,false,78 +avhs-suas/pidgin,avhs-suas,CMake,true,false,false,1,false,true,false,false,7 +leipert-projects/no-thank-you,leipert-projects,Shell,true,false,false,3,true,true,true,false,34 +jebster/portfolio,jebster,HTML,true,false,false,2,true,false,true,false,26 +luis.pinedo22/construyendo-sistemas-de-aprendizaje-de-maquina-con-python,luis.pinedo22,JupyterNotebook,true,false,false,1,false,false,true,false,24 +acrom18/manjaro-buildiso,acrom18,,true,false,false,1,true,false,false,false,15 +beannaich/psxact,beannaich,C++,true,false,false,1,true,false,false,false,20 +rafaelcaviquioli/meetup-integracao-continua,rafaelcaviquioli,JavaScript,true,false,false,4,true,true,true,false,64 +alexandre.tranchant/australian-client,alexandre.tranchant,JavaScript,true,false,false,1,false,true,false,false,78 +space-essentials/membership,space-essentials,Ruby,true,false,false,2,true,false,false,true,28 +bluekay/shopping-list,bluekay,PHP,true,false,false,1,false,true,false,false,9 +KashF/day1,KashF,HTML,true,false,false,1,false,false,true,false,11 +favasconcelos/adidas-color-game,favasconcelos,JavaScript,true,false,false,2,false,true,true,false,23 +oconomy/ocon,oconomy,C++,true,false,false,4,true,true,false,true,55 +gitlab-examples/ruby-autodeploy,gitlab-examples,Ruby,true,false,false,2,true,false,true,false,32 +bijeshshrestha/googlepay,bijeshshrestha,JavaScript,true,false,false,1,false,false,false,true,16 +robit.a/toast,robit.a,R,true,false,false,2,false,true,false,false,25 +botux-fr/docker/grav,botux-fr,Shell,true,false,false,1,true,false,false,false,40 +hypnoglow/example-go-docker-gitlab,hypnoglow,Go,true,false,false,3,true,true,false,false,50 +KashF/10-photo-gallery,KashF,HTML,true,false,false,1,false,false,true,false,11 +boyzhaotian/server-frontend,boyzhaotian,Vue,true,false,false,1,false,true,false,false,17 +puzle-project/pixelmancer,puzle-project,C++,true,false,false,1,false,true,false,false,11 +jreinert/fogtrack,jreinert,Crystal,true,false,false,2,true,false,false,true,62 +monnef/beesn,monnef,TypeScript,true,false,false,1,false,true,false,false,21 +sagikazarmark/modern-go-application,sagikazarmark,Go,true,false,false,4,true,true,false,false,110 +bferoudj/projet_yottayocto,bferoudj,Java,true,false,false,2,true,true,false,false,53 +briancaffey/verbose-equals-true,briancaffey,Vue,true,false,false,1,false,false,false,false,37 +dunossauro/locaweb-grupy-2018,dunossauro,Python,true,false,false,1,false,true,false,false,20 +bzim/owned-alloc,bzim,Rust,true,false,false,1,false,false,true,false,15 +Ash258/scrapers,Ash258,JavaScript,true,false,false,3,true,true,false,true,33 +hr567/Ana,hr567,Rust,true,false,false,1,false,true,false,false,20 +AbiramK/methtimer,AbiramK,Python,true,false,false,1,false,true,false,false,39 +oleh.kurachenko/cpp-algorithms-test,oleh.kurachenko,C++,true,false,false,1,true,false,false,false,20 +eharastasan/image-gallery,eharastasan,JavaScript,true,false,false,1,false,false,true,false,22 +oleh.kurachenko/pl-algorithms-test-system,oleh.kurachenko,Python,true,false,false,1,false,false,false,false,23 +cngroup/training-devops,cngroup,JavaScript,true,false,false,4,true,true,true,true,52 +ASharpPen/mtaw2_referencesheets,ASharpPen,TeX,true,false,false,1,true,false,false,false,19 +emcrp/src,emcrp,Python,true,true,false,1,false,false,false,false,16 +akavoukis/meta-gateway,akavoukis,BitBake,true,false,false,1,false,true,false,false,53 +lydra/gitlab-ci-templates,lydra,Python,true,false,false,1,false,true,false,false,47 +lappis-unb/projects/SMI/smi-slave,lappis-unb,Python,true,true,false,2,true,true,false,false,81 +openmicroscopy/incubator/omero-py-alpine,openmicroscopy,Shell,true,false,false,1,true,false,false,false,15 +xenud/tunables,xenud,,true,false,false,1,false,true,false,false,2 +adrielsantiago/echarts-proof-of-concept,adrielsantiago,Vue,true,false,false,1,false,false,true,false,13 +Alsabila/smartescape,Alsabila,Python,true,true,false,2,false,true,true,false,39 +ghammad/hugo,ghammad,,true,false,false,1,false,true,false,false,20 +sat-mtl/telepresence/ui-components,sat-mtl,JavaScript,true,false,false,3,false,true,true,false,34 +cecton/ddssd,cecton,Rust,true,false,false,2,false,true,false,false,24 +homes-made-simple/hms-website,homes-made-simple,HTML,true,false,false,1,false,false,true,false,13 +mraxel/m-cubed-live,mraxel,HTML,true,false,false,2,true,true,false,false,47 +oleh.kurachenko/python-algorithms-test,oleh.kurachenko,Python,true,false,false,1,true,false,false,false,13 +ucsd-gitlab/library/ldap_sync,ucsd-gitlab,Ruby,true,false,false,1,true,false,false,false,17 +uninen/heimlich,uninen,Python,true,true,false,1,false,true,false,false,55 +AbiramK/numextract,AbiramK,Python,true,false,false,1,false,true,false,false,40 +erikmd/docker-coq-gitlab-ci-demo-2,erikmd,Coq,true,false,false,2,true,true,false,false,38 +erikmd/docker-coq-gitlab-ci-demo-1,erikmd,Coq,true,false,false,2,true,true,false,false,44 +emcrp/emcrp.gitlab.io,emcrp,HTML,true,false,false,1,false,false,true,false,11 +our-sci/documentation,our-sci,,true,false,false,1,false,false,true,false,12 +gfelbing/openwall,gfelbing,Vue,true,false,false,1,true,false,false,false,18 +ScrambleSim/Scramble,ScrambleSim,,true,false,false,5,true,true,true,false,188 +Artemix/validator,Artemix,Java,true,false,false,1,false,true,false,false,6 +gbstringer/owc2,gbstringer,Python,true,true,false,1,false,true,false,false,50 +assemblea.pdm.collegiomazza/statuto-assemblea,assemblea.pdm.collegiomazza,Python,true,false,false,1,false,false,false,true,17 +samosaara/desenho_animado_clojure,samosaara,Clojure,true,false,false,2,true,true,false,false,35 +vtrack/vtrack-webapp,vtrack,Vue,true,false,false,2,true,true,false,false,23 +Firejail/firejail_ci,Firejail,C,true,false,false,1,false,true,false,false,84 +souldzin/js-math-creativity,souldzin,JavaScript,true,false,false,2,false,true,true,false,27 +classtag/recsys,classtag,Vue,true,false,false,4,true,true,false,false,92 +highside/node-amqp,highside,Rust,true,false,false,2,true,true,false,false,61 +LineageOS/infra/issue-bot,LineageOS,Python,true,true,false,1,true,false,false,false,21 +DrWursterich/CLI,DrWursterich,Java,true,false,false,4,true,true,true,false,211 +danobr/pytemplate,danobr,Python,true,true,false,2,false,false,true,false,65 +personal-server-community/personal-database,personal-server-community,,true,false,false,1,false,true,false,false,23 +fabrom/clipboardmemo,fabrom,CSS,true,false,false,2,true,false,true,false,68 +mwillema/grpc-spring-boot-starter,mwillema,Java,true,false,true,3,true,true,true,false,32 +mwillema/common,mwillema,Java,true,false,true,3,true,true,true,false,32 +erb/EDAN95-applied-machine-learning,erb,JupyterNotebook,true,false,false,1,false,true,false,false,13 +phrdxm/o2o,phrdxm,Java,true,false,true,3,false,false,true,false,22 +vrcca-examples/java/spring/configuration-server,vrcca-examples,Java,true,false,true,3,true,true,false,false,40 +dbkblk/rand_launcher,dbkblk,C++,true,false,false,1,false,true,false,false,4 +plant/plant,plant,JupyterNotebook,false,false,false,0,false,false,false,false,1 +404busters/inventory-management/frontend,404busters,Vue,true,false,false,2,false,true,false,false,24 +stexkcpxelece/zcwcdpqmzemdx,stexkcpxelece,HTML,true,false,false,1,false,false,true,false,11 +zauster/ormisc,zauster,R,true,false,false,1,false,true,false,false,14 +ksheerasagar17/search-ux-4-selenium-tests-chrome-headless,ksheerasagar17,C#,true,false,false,1,false,true,false,false,28 +homecontrolsystem/temperatureservice,homecontrolsystem,Go,true,false,false,1,true,false,false,false,18 +spatter/spatter,spatter,Kotlin,true,false,false,3,true,true,false,true,81 +gdroid/gdroiddata,gdroid,Shell,true,false,false,1,false,false,false,false,30 +AyaCross/komodev-air-do,AyaCross,Ruby,true,false,false,1,true,false,false,false,38 +wsd-l-2018z/sewagediscount,wsd-l-2018z,Java,true,false,true,2,true,true,false,false,76 +gioxa/fake_arch,gioxa,Shell,true,false,false,3,true,false,true,false,88 +mwillema/eventstore,mwillema,Java,true,false,true,3,true,true,true,false,32 +reaktivo/callbag-interval-immediate,reaktivo,TypeScript,true,false,false,1,false,true,false,false,8 +X99/swiftnmeaparser,X99,Swift,true,false,false,1,true,false,false,false,13 +knative-examples/knative-ruby-app,knative-examples,Ruby,true,false,false,1,false,true,false,false,8 +kottkrig/teckenlingo,kottkrig,CSS,true,false,false,1,true,false,false,false,20 +q4d/vote-app,q4d,Python,true,true,false,3,true,true,false,true,45 +Heyyiou/nuit-de-l-info-not-another-name,Heyyiou,HTML,true,false,false,1,false,false,true,false,11 +mkdk/cidemon,mkdk,Python,true,true,false,3,true,false,false,false,26 +augfab/game-of-life,augfab,C,true,false,false,2,true,false,false,false,18 +MatteoCampinoti94/faapi-go,MatteoCampinoti94,Go,true,false,false,2,true,true,false,false,32 +poof/swisscheese,poof,,true,false,true,2,true,true,false,false,14 +VincentTam/bhdemo,VincentTam,JavaScript,true,false,false,1,false,true,false,false,13 +msaby/atelier-openrefine-MASA,msaby,HTML,true,false,false,1,false,false,true,false,13 +alantrick/django-adminstats,alantrick,Python,true,false,false,1,false,true,false,false,18 +srrg-software/srrg_hbst_examples,srrg-software,C++,true,false,false,1,true,false,false,false,103 +aaratika/cactus,aaratika,Python,true,false,false,1,false,true,false,false,53 +thesoy_sauce/http-echo,thesoy_sauce,Go,true,false,false,1,true,false,false,false,19 +ronron22/ngbs,ronron22,Shell,true,false,false,1,false,false,false,false,13 +mirabeau/cloud-framework/aws-vpc,mirabeau,Python,true,false,false,1,false,true,false,false,15 +dagrende/rpn3d,dagrende,JavaScript,true,false,false,1,false,false,true,false,31 +diamondburned/gobat-cli,diamondburned,Go,true,false,false,1,true,false,false,false,24 +ubports/app-dev/music-app,ubports,QML,true,false,false,1,false,true,false,false,22 +gimerstedt/hotkey-overlay-aurelia,gimerstedt,TypeScript,true,false,false,1,false,false,true,false,13 +RJain12/rishab-jain,RJain12,HTML,true,false,false,1,false,true,false,false,18 +tereshko/labyrinth,tereshko,C++,true,false,false,2,false,true,true,false,23 +andybalaam/cross-the-road,andybalaam,JavaScript,true,false,false,1,false,false,true,false,11 +markus-wa/demoinfocs-wasm,markus-wa,JavaScript,true,false,false,1,true,false,false,false,14 +dns2utf8/live_timetable_server,dns2utf8,JavaScript,true,false,false,1,false,true,false,false,24 +veenj/cinit,veenj,Rust,true,false,false,2,false,false,false,false,44 +fredrik.svard/nightstar,fredrik.svard,Ruby,true,false,false,1,false,true,false,false,9 +neilspink/aws-lambda-price-grabber,neilspink,HTML,true,false,false,4,true,true,true,false,55 +walt.moorhouse/myplus,walt.moorhouse,JavaScript,true,false,false,2,true,false,false,true,842 +sebadebona/density-dependent-dispersal,sebadebona,R,true,false,false,2,true,false,true,false,41 +tionis/uni-passau-bot,tionis,Go,true,false,false,2,true,true,false,false,38 +kommunalcrowd/platform,kommunalcrowd,PHP,true,false,false,2,false,true,false,false,102 +skydome/istanbot,skydome,Go,true,false,false,1,false,false,false,true,17 +Mesabloo/webdoc,Mesabloo,JavaScript,true,false,false,1,false,false,true,false,15 +Booteille/privacytools,Booteille,HTML,true,false,false,2,false,true,true,false,30 +vanderhoofen/diagnostics,vanderhoofen,,true,false,false,1,true,false,false,false,31 +dekku/dekku.gitlab.io,dekku,JavaScript,true,false,false,1,false,false,true,false,11 +Niloc37/traceanalyzer,Niloc37,C++,true,false,false,3,true,true,false,false,62 +vectoridau/awebus,vectoridau,Python,true,false,false,2,false,true,false,true,49 +developer-utilities/restrabbit,developer-utilities,C#,true,false,false,2,true,false,false,true,48 +mathomp4/PreciseSum,mathomp4,Fortran,true,false,false,2,true,true,false,false,70 +developer-utilities/signalr-recorder,developer-utilities,C#,true,false,false,2,true,false,false,true,47 +mhausenblas/imgn,mhausenblas,Go,true,false,false,1,false,true,false,false,2 +hristokgj/automata-builder,hristokgj,Python,true,false,false,1,false,true,false,false,20 +4LT/gif2spr,4LT,C,true,false,false,1,true,false,false,false,29 +karel-houf/react-face-detection,karel-houf,JavaScript,true,false,false,1,false,false,true,false,17 +vindarel/replic,vindarel,CommonLisp,true,false,false,2,true,true,false,false,30 +spoorcc/rocketmock,spoorcc,C,true,false,false,2,true,true,false,false,40 +csui-kominfo-digitalent/calculator-web-api,csui-kominfo-digitalent,Java,true,false,false,2,false,true,true,false,23 +LazyBun/2pietro,LazyBun,HTML,true,false,false,1,false,false,true,false,17 +mindroot/projects,mindroot,Ruby,true,false,false,2,false,true,true,false,36 +chriseaton/gitlab-ci-example-go,chriseaton,Go,true,false,false,3,true,true,true,false,63 +smc/mlmorph-web,smc,JavaScript,true,false,false,1,false,false,true,false,12 +Vishwas-Adiga/LibreHealth,Vishwas-Adiga,CSS,true,false,false,1,false,true,false,false,20 +masterspline/build2-linux-packages,masterspline,,true,false,false,1,false,true,false,false,16 +mardy/qqc2-desktop,mardy,QML,true,false,false,2,true,true,false,false,85 +Starrzan/single-page-mockup,Starrzan,CSS,true,false,false,1,false,false,true,false,11 +chrysn/sealingslice,chrysn,Rust,true,false,false,1,false,true,false,false,21 +whoisniek/niekkeijzer.com,whoisniek,HTML,true,false,false,2,true,false,true,false,49 +ruivieira/naive-bayes,ruivieira,Rust,true,false,false,1,false,true,false,false,26 +lodi-g/spotify-control-chrome-extension-backend,lodi-g,JavaScript,true,false,false,1,false,false,true,false,24 +amrelk/frcds,amrelk,Rust,true,false,false,1,false,true,false,false,8 +miraj09/to-do-app,miraj09,JavaScript,true,false,false,1,false,false,true,false,14 +intr0/DNSCrypt-BLACKLIST,intr0,,true,false,false,1,false,false,true,false,11 +daksh7011/eagle,daksh7011,PHP,true,false,false,2,false,true,true,false,29 +kinnison/cassava,kinnison,Rust,true,false,false,3,false,true,false,false,65 +clinton.lawrence2/hockey-alert,clinton.lawrence2,Python,false,true,false,0,false,false,false,false,1 +srrg-software/srrg2_integration_testing,srrg-software,Shell,true,false,false,1,true,false,false,false,54 +harshniketseta/cricket-scorer-ui,harshniketseta,JavaScript,true,false,false,2,false,true,true,false,26 +stabfem/StabFem,stabfem,Matlab,true,false,false,2,false,true,false,true,65 +abiproject/abisuite,abiproject,Python,true,true,false,2,false,true,false,false,61 +tegila/j2m,tegila,JavaScript,true,false,false,1,false,true,false,false,36 +sesela/multi-spring-startup-mybatis,sesela,Java,true,false,false,2,false,true,false,false,95 +neosun100/ubuntu_init,neosun100,Shell,true,false,false,3,true,true,true,false,39 +debuglevel/bookmetadata-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true,76 +ruivieira/random-forests,ruivieira,Rust,true,false,false,1,false,true,false,false,25 +remcohaszing/eslint-formatter-gitlab,remcohaszing,JavaScript,true,false,false,2,false,true,false,true,51 +hathi-social/hathi-protocol,hathi-social,,true,false,false,2,true,true,false,false,15 +oleh.kurachenko/cpp-architecture-test,oleh.kurachenko,C++,true,false,false,2,true,true,false,false,21 +sebidude/public-page,sebidude,Makefile,true,false,false,2,true,false,false,true,32 +edricus/minetest-garage,edricus,RPC,true,false,false,1,false,false,true,false,11 +jswhetstone/cposc-2018,jswhetstone,HTML,true,false,false,1,false,false,true,false,11 +ccrpc/ccrpc-charts,ccrpc,TypeScript,true,false,false,1,false,true,false,false,19 +mindroot/quests,mindroot,HTML,true,false,false,2,false,true,true,false,37 +agunkeka900/literasi,agunkeka900,JavaScript,true,false,false,1,false,false,true,false,13 +JeSuisUnDesDeux/jesuisundesdeux-website,JeSuisUnDesDeux,JavaScript,true,false,false,1,false,true,false,false,13 +reuse/reuse,reuse,Python,true,true,false,2,false,true,true,false,84 +aurorafossorg/apps/be-happy,aurorafossorg,Dart,true,false,false,13,true,true,false,true,903 +arasari/backend-framework,arasari,CSS,true,false,false,1,false,true,false,false,45 +arasari/frontend-framework,arasari,CSS,true,false,false,1,false,true,false,false,18 +danielkraic/version-id,danielkraic,HTML,true,false,false,1,false,false,true,false,11 +brunoamancio/vulcan,brunoamancio,C#,true,false,false,2,true,true,false,false,27 +tvo/csharpimmutabilitytest,tvo,C#,true,false,false,3,true,true,false,true,41 +tblah/rustylisp,tblah,Rust,true,false,false,1,true,false,false,false,13 +ThomasVestergaardFredsted/MemExchange-dotnetcore,ThomasVestergaardFredsted,C#,true,false,false,1,false,false,false,false,12 +eristic/kashimashi,eristic,Elixir,true,false,false,1,false,true,false,false,18 +Zebatuq/zfh,Zebatuq,C#,true,false,false,1,false,true,false,false,9 +datalocale/dataviz-migration-gironde,datalocale,,true,false,false,2,true,false,true,false,23 +kelompok1-PPWC/kelompok1_ppwc,kelompok1-PPWC,CSS,true,false,false,2,false,true,true,false,38 +tigrr/circle-progress,tigrr,JavaScript,true,false,false,1,false,false,true,false,11 +ubports/app-dev/gallery-app,ubports,C++,true,false,false,2,true,false,true,false,49 +debuglevel/omnitrackerdocumentation-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true,75 +Crumble/pokemon-shiny-calculator,Crumble,JavaScript,true,false,false,1,false,false,true,false,21 +rancher1/wp1-build/wordpress1-template,rancher1,Smarty,true,false,false,1,true,false,false,false,19 +codingstones1/ndi-front,codingstones1,TypeScript,true,false,false,1,false,true,false,false,34 +karel-houf/movie-app,karel-houf,JavaScript,true,false,false,1,false,false,true,false,17 +aimber/ScreenPlayDocs,aimber,,true,false,false,1,false,true,false,false,15 +zerok/container-inventory,zerok,Go,true,false,false,1,false,true,false,false,12 +amplab/ampherman,amplab,HTML,true,false,false,1,false,false,true,false,11 +brendan/hnsuite,brendan,CSS,true,false,false,2,false,false,true,false,48 +stavros/pysignald,stavros,Python,true,false,false,1,false,true,false,false,8 +uplex/varnish/k8s-ingress,uplex,Go,true,false,false,1,false,true,false,false,29 +proot/proot,proot,C,true,false,false,5,false,false,true,false,67 +BuildGrid/buildbox/buildbox-worker,BuildGrid,,true,false,false,3,true,true,false,true,78 +UnicornPowered/AWS-Client-Bootstrap,UnicornPowered,Python,true,false,false,3,true,false,false,false,135 +dashohoxha/101-problema-programimi,dashohoxha,,true,false,false,1,false,true,false,false,10 +devopspbs/kerberos-manual,devopspbs,Ruby,true,false,false,1,false,true,false,false,17 +kevinpiac/cmsjs-front,kevinpiac,JavaScript,true,false,false,4,true,true,true,false,47 +ae-dir/python-aedir,ae-dir,Python,true,true,false,1,false,true,false,false,65 +postmarketOS/mrhlpr,postmarketOS,Python,true,false,false,1,false,true,false,false,8 +cyberfighter-org/environment-readme.md,cyberfighter-org,,true,false,false,13,true,true,false,true,893 +ninjahoahong/unstoppable,ninjahoahong,Kotlin,true,false,false,2,true,false,false,false,44 +DrWursterich/ResourceManager,DrWursterich,Java,true,false,false,4,true,true,true,false,211 +dark0dave/template,dark0dave,,true,false,false,3,true,true,false,false,36 +debuglevel/activedirectory-microservice,debuglevel,Kotlin,true,false,false,2,true,false,false,true,76 +kube-laravel/hellolara,kube-laravel,PHP,true,false,false,2,true,false,false,false,57 +coala/community,coala,Python,true,true,false,3,true,true,true,false,43 +lavachat/magma,lavachat,Python,true,false,false,1,false,true,false,false,24 +reclaimid/demo,reclaimid,Ruby,true,false,false,1,true,false,false,false,21 +reclaimid/ui,reclaimid,TypeScript,true,false,false,1,true,false,false,false,17 +rushsteve1/tornado,rushsteve1,Rust,true,false,false,3,false,false,false,true,85 +bahorn/awesome-ci,bahorn,JavaScript,true,false,false,2,false,true,false,false,32 +jinyexin/core,jinyexin,TypeScript,true,false,false,1,false,true,false,false,27 +jinyexin/corecli,jinyexin,TypeScript,true,false,false,1,false,true,false,false,27 +openProjects/gitlab-project-issues-with-time-gpit,openProjects,TypeScript,true,false,false,1,false,true,false,false,10 +oofga/oofga-pages,oofga,Ruby,true,false,false,1,false,false,true,false,17 +devscola/rekaizen,devscola,CSS,true,false,false,2,true,false,true,false,73 +mediamoose/async-thumbnail,mediamoose,Python,true,true,false,4,false,true,false,true,153 +yaal/readonlystorage,yaal,Python,true,false,false,1,false,true,false,false,36 +ShawnWitte/3D-werkomgeving,ShawnWitte,C#,true,false,false,3,true,true,true,false,87 +magda-data/magda,magda-data,JavaScript,true,false,false,8,false,false,false,true,768 +fluidattacks/asserts,fluidattacks,Python,true,true,false,6,false,true,true,false,249 +baserock/ybd,baserock,Python,true,true,false,5,true,false,true,false,107 +1git/1git,1git,JavaScript,true,false,false,8,false,true,true,false,287 +precognition-llc/aeonvera-ui,precognition-llc,JavaScript,true,false,false,2,false,true,true,false,86 +fsfe/oidcp,fsfe,Python,true,false,false,4,true,true,true,false,90 +kimlab/kmtools,kimlab,Python,true,false,false,5,true,true,true,false,318 +WzukW/oclaunch,WzukW,OCaml,true,false,false,3,false,true,false,false,94 +rizon/moo,rizon,Java,true,false,true,1,false,true,false,false,5 +free-electrons-labs/dka-homepage,free-electrons-labs,CSS,true,false,false,1,false,true,false,false,10 +leap/platform,leap,Ruby,true,false,false,2,true,false,false,false,45 +agilob/sudokusolver,agilob,Java,true,false,false,2,true,true,false,false,40 +shared-puppet-modules-group/tor,shared-puppet-modules-group,HTML,true,false,false,2,false,true,true,false,36 +evol/evol-tools,evol,Python,true,false,false,3,false,true,false,false,36 +ensitools/ensitools,ensitools,Shell,true,false,false,1,false,true,false,false,10 +caro-sdu/caros,caro-sdu,C++,true,false,false,3,true,true,true,false,92 +Screwtapello/bdflib,Screwtapello,Python,true,false,false,1,false,true,false,false,7 +accounts-sso/libaccounts-qt,accounts-sso,C++,true,false,false,3,true,true,true,false,53 +accounts-sso/libaccounts-glib,accounts-sso,C,true,false,false,3,true,true,true,false,63 +structural-fragment-search/super,structural-fragment-search,C,true,false,false,2,true,true,false,false,34 +jhasse/jngl,jhasse,C++,true,false,false,2,true,false,true,false,74 +radiognu/radiognu-app,radiognu,JavaScript,true,false,false,1,false,true,false,false,10 +core-utils/core-utils,core-utils,Rust,true,false,false,1,false,true,false,false,6 +iggdrasil/ishtar,iggdrasil,Python,true,true,false,2,true,true,false,false,96 +conradoqg/doc-server,conradoqg,HTML,true,false,false,1,false,true,false,false,8 +calafou/eco-gnomy,calafou,Python,true,false,false,1,false,true,false,false,8 +PascalSmeets/psek-fitnesse-fixtures,PascalSmeets,Java,true,false,true,1,false,true,false,false,11 +pbek/QOwnNotes,pbek,C,true,false,false,1,false,true,false,false,51 +geos/libgeos,geos,C++,true,false,false,1,false,true,false,false,14 +kaliko/python-musicpd,kaliko,Python,true,false,false,2,true,true,false,false,57 +atrus6/pynoise,atrus6,Python,true,true,false,1,false,true,false,false,7 +dzaporozhets/checked,dzaporozhets,Clojure,true,false,false,1,false,true,false,false,16 +s4m-chef-repositories/bind-ddns,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false,34 +robigalia/devbox,robigalia,Shell,true,false,false,1,false,true,false,false,27 +joolean/gzochi,joolean,C,true,false,false,1,false,true,false,false,12 +stater/node-bridge,stater,JavaScript,true,false,false,1,false,true,false,false,12 +greysonp/gitlab-ci-android-example,greysonp,Java,true,false,false,1,false,true,false,false,6 +energyharvesting/angulardf,energyharvesting,HTML,true,false,false,1,false,false,true,false,10 +thelabnyc/wagtail_polls,thelabnyc,Python,true,true,false,1,false,true,false,false,12 +kwant/kwant,kwant,Python,true,false,false,3,true,true,true,false,207 +JFT/BT_By_KT,JFT,C++,true,false,false,5,true,true,false,false,149 +juliancarrivick/band-manager-backend,juliancarrivick,PHP,true,false,false,3,false,true,true,false,45 +NTPsec/www,NTPsec,Python,true,false,false,1,true,false,false,false,24 +gitlab-examples/mysql,gitlab-examples,,true,false,false,1,false,true,false,false,12 +andreas-h/pyatran,andreas-h,Python,true,false,false,1,false,true,false,false,100 +viu/launchpad,viu,JavaScript,true,false,false,1,false,true,false,false,18 +gitlab-com/teampage-map,gitlab-com,JavaScript,true,false,false,2,true,false,true,false,22 +dzaporozhets/dzaporozhets.gitlab.io,dzaporozhets,HTML,true,false,false,1,false,false,true,false,11 +baldurmen/genfo,baldurmen,Python,true,false,false,3,true,true,false,false,42 +usingnamespace/pyramid_authsanity,usingnamespace,Python,true,false,false,1,false,true,false,false,75 +9000-volts/pages-md-parse,9000-volts,Ruby,true,false,false,1,false,false,true,false,16 +homeautomationqt/elisa,homeautomationqt,C++,true,false,false,1,false,true,false,false,23 +vhschlenker/mensa,vhschlenker,Java,true,false,false,1,false,true,false,false,22 +kudos/hostr,kudos,HTML,true,false,false,1,false,true,false,false,33 +buckybox/webstore,buckybox,HTML,true,false,false,1,false,true,false,false,23 +jekyll-themes/grayscale,jekyll-themes,HTML,true,false,false,1,false,false,true,false,10 +html-themes/artcore,html-themes,JavaScript,true,false,false,1,false,false,true,false,11 +gnutls/libtasn1,gnutls,C,true,false,false,1,false,true,false,false,231 +pages/brunch,pages,HTML,true,false,false,1,false,true,false,false,16 +apgoucher/apgmera,apgoucher,C++,true,false,false,3,false,true,false,true,31 +slashdeploy/blog,slashdeploy,CSS,true,false,false,1,false,true,false,false,24 +trakt/script.trakt,trakt,Python,true,false,false,1,false,true,false,false,6 +baserock/definitions,baserock,Shell,true,false,false,5,false,true,false,false,230 +adrianovieira/rapps,adrianovieira,CSS,true,false,false,1,false,false,false,false,73 +hackmildegia/hackmildegia.gitlab.io,hackmildegia,CSS,true,false,false,1,false,true,false,false,16 +RKIBioinformaticsPipelines/Mapping,RKIBioinformaticsPipelines,Python,true,false,false,2,false,true,false,false,33 +nasirkhan/laravel-5-starter,nasirkhan,PHP,true,false,false,1,false,true,false,false,46 +coala/PyPrint,coala,Python,true,true,false,1,false,true,false,false,74 +gitmate/bugspots3,gitmate,Python,true,false,false,1,false,true,false,false,14 +eval/respectable,eval,Ruby,true,false,false,1,false,true,false,false,10 +dnne/proiectsd2,dnne,HTML,true,false,false,1,false,true,false,false,33 +humb1t/anduin,humb1t,Rust,true,false,false,1,false,true,false,false,6 +KodeKreatif/erpiko,KodeKreatif,C++,true,false,false,1,true,false,false,false,47 +jonata/kihvim,jonata,Python,true,false,false,1,false,true,false,false,37 +smart-city-platform/smart_parking_maps,smart-city-platform,JavaScript,true,false,false,1,false,true,false,false,37 +orvice/ss-panel,orvice,PHP,true,false,false,2,true,false,false,false,24 +sycom/post-Gitlab-issues,sycom,HTML,true,false,false,1,false,false,true,false,11 +smart-city-platform/data_collector,smart-city-platform,Ruby,true,false,false,1,false,true,false,false,24 +siasar-project/maps,siasar-project,Scheme,true,false,false,2,false,true,true,false,50 +slashdeploy/kpis,slashdeploy,JavaScript,true,false,false,2,false,true,true,false,24 +spice/spice,spice,C,true,false,false,1,false,true,false,false,46 +codeandsupply/supplybot,codeandsupply,JavaScript,true,false,false,1,false,true,false,false,7 +passit/simple-asymmetric-js,passit,TypeScript,true,false,false,1,false,true,false,false,8 +siasar-project/mobile,siasar-project,CSS,true,false,false,3,true,true,true,false,45 +PiotrekDlang/DraftLib,PiotrekDlang,D,true,false,false,1,false,true,false,false,11 +pushrocks/smartlog-destination-local,pushrocks,TypeScript,true,false,false,4,false,true,false,true,117 +sane-project/frontends,sane-project,C,true,false,false,1,false,false,false,false,28 +thelabnyc/django-oscar/django-oscar-api-checkout,thelabnyc,Python,true,true,false,1,false,true,false,false,65 +DerekKent/derekkent.com,DerekKent,HTML,true,false,false,4,true,true,false,true,81 +digidoci/web/angular-digidoki,digidoci,JavaScript,true,false,false,1,false,true,false,false,24 +limitland/flatbedcursors,limitland,Shell,true,false,false,2,true,false,true,false,42 +artemklevtsov/benchr,artemklevtsov,R,true,false,false,3,false,true,true,false,115 +plotnikau/telebotapi,plotnikau,Java,true,false,true,2,false,false,false,true,23 +ArtOfCode/qpixel,ArtOfCode,Ruby,true,false,false,1,false,true,false,false,21 +dimitrieh/terms-of-service-CI-boilerplate,dimitrieh,Shell,true,false,false,1,false,true,false,false,23 +central-node/CNSS,central-node,CSS,true,false,false,2,false,true,true,false,30 +steve-perkins/fitnessjiffy-spring,steve-perkins,Java,true,false,true,1,false,true,false,false,9 +ETGL/DistriBoissons,ETGL,,true,false,false,3,true,true,true,false,102 +snowdream/Citest,snowdream,Java,true,false,false,1,false,true,false,false,8 +xymus/sputnit,xymus,Nit,true,false,false,2,false,true,true,false,40 +twoBirds/twobirds-core,twoBirds,JavaScript,true,false,false,1,false,false,true,false,11 +pages/zim,pages,HTML,true,false,false,2,false,true,true,false,24 +passit/passit-sdk-js,passit,TypeScript,true,false,false,2,false,true,true,false,20 +imp/chrono-humanize-rs,imp,Rust,true,false,false,2,false,true,true,false,35 +pycqa/infrastructure,pycqa,,true,false,false,1,false,true,false,false,10 +nasa-jsc-robotics/val_description,nasa-jsc-robotics,Python,true,false,false,3,true,false,true,false,144 +pierreduchemin/save-diamond,pierreduchemin,Java,true,false,false,3,true,true,false,true,53 +angular-material-dashboard/angular-material-dashboard,angular-material-dashboard,JavaScript,true,false,false,2,false,true,true,false,46 +StanfordLegion/legion,StanfordLegion,C++,true,false,false,1,false,true,false,false,799 +meteor-columbus/meteor-react-redux-spectacle,meteor-columbus,JavaScript,true,false,false,2,false,true,true,false,29 +andrewbanchich/phantom-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,13 +andrewbanchich/hyperspace-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false,23 +andrewbanchich/stellar-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false,23 +andrewbanchich/multiverse-jekyll-theme,andrewbanchich,CSS,true,false,false,2,false,true,true,false,23 +andrewbanchich/spectral-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,14 +gjhenrique/gjhenrique.gitlab.io,gjhenrique,CSS,true,false,false,3,false,false,false,true,62 +officernd/officernd.gitlab.io,officernd,RAML,true,false,false,2,true,false,true,false,33 +coala/cib,coala,Python,true,true,false,1,false,true,false,false,21 +kylehqcom/kevin,kylehqcom,Go,true,false,false,1,false,true,false,false,12 +BenjaminVanRyseghem/SandGlass,BenjaminVanRyseghem,JavaScript,true,false,false,1,false,true,false,false,22 +flosscoach/flosscoach,flosscoach,CSS,true,false,false,1,false,true,false,false,14 +spechide/spechide.gitlab.io,spechide,JavaScript,true,false,false,1,false,true,false,false,16 +kevinkhill/lavacharts,kevinkhill,PHP,true,false,false,1,false,true,false,false,24 +almondcms/application,almondcms,JavaScript,true,false,false,1,false,true,false,false,20 +BeayemX/Emblem,BeayemX,JavaScript,true,false,false,1,false,false,true,false,11 +decko/epracas-backend,decko,Python,true,true,false,1,false,true,false,false,20 +SomeKittens/rx-viz,SomeKittens,CSS,true,false,false,1,false,false,true,false,17 +artemklevtsov/r-alpine,artemklevtsov,Shell,true,false,false,2,false,false,false,false,93 +alexmohr/openmilight,alexmohr,C++,true,false,false,2,true,true,false,false,57 +adin/mcv-academic,adin,TeX,true,false,false,1,false,true,false,false,22 +emergenzeHack/terremotocentro,emergenzeHack,JavaScript,true,false,false,2,false,true,true,false,31 +IvanSanchez/Leaflet.Marker.SlideTo,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +interscity/interscity-platform/resource-cataloguer,interscity,Ruby,true,false,false,1,false,true,false,false,23 +interscity/interscity-platform/resource-discoverer,interscity,Ruby,true,false,false,1,false,true,false,false,11 +morph027/gitlab-ci-aptly-cli,morph027,Shell,true,false,false,1,false,true,false,false,9 +dwmw2/openconnect,dwmw2,C,true,false,false,1,false,true,false,false,273 +IvanSanchez/Leaflet.GridLayer.FadeOut,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +ilab-public/python2-scientific,ilab-public,,true,false,false,1,false,false,true,false,15 +jahanjoo/angular-jahanjoo,jahanjoo,JavaScript,true,false,false,1,false,true,false,false,15 +frissdiegurke/oddlog,frissdiegurke,JavaScript,true,false,false,1,false,true,false,false,42 +adin/journal-list,adin,Python,true,true,false,1,false,true,false,false,21 +willemmali-sh/chegit,willemmali-sh,Shell,true,false,false,2,false,true,false,true,26 +gitlab-cookbooks/gitlab-elk,gitlab-cookbooks,Ruby,true,false,false,3,false,false,false,true,53 +stavros/TimeTaco,stavros,JavaScript,true,false,false,1,false,true,false,false,35 +maxv/pangoling,maxv,CSS,true,false,false,4,true,true,false,false,104 +atomfrede/jhipster-ci-example-maven,atomfrede,Java,true,false,true,4,true,true,false,true,86 +simonbreiter/issue-tracker-web-view,simonbreiter,JavaScript,true,false,false,1,false,true,false,false,8 +interscity/interscity-platform/resource-viewer,interscity,JavaScript,true,false,false,1,false,true,false,false,13 +hadrien/aws_lambda_logging,hadrien,Python,true,false,false,2,false,false,false,false,35 +hbomb79/Titanium,hbomb79,Lua,true,false,false,1,false,true,false,false,77 +sebdeckers/babel-plugin-transform-commonjs-es2015-modules,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,8 +amitthekumar/code-and-craft,amitthekumar,JavaScript,true,false,false,1,false,true,false,false,7 +widerin/vlbg-webdev-1016,widerin,Python,true,false,false,2,true,true,false,false,69 +robigalia/book,robigalia,CSS,true,false,false,1,false,true,false,false,28 +thelabnyc/wagtail-hallo-plugins,thelabnyc,JavaScript,true,false,false,1,false,true,false,false,8 +abre/cookiecutter-python,abre,Python,true,false,false,1,false,true,false,false,6 +BulbThinker/Ankh,BulbThinker,C++,true,false,false,1,false,true,false,false,5 +probability/prob140,probability,JupyterNotebook,true,false,false,2,false,true,true,false,36 +janslow/gitlab-ci-variables,janslow,TypeScript,true,false,false,2,false,true,true,false,71 +nickdonnelly/Horus,nickdonnelly,C++,true,false,false,4,false,false,false,false,66 +aossie/Scavenger,aossie,Scala,true,false,false,1,false,true,false,false,15 +quantcoin/graphene,quantcoin,C++,true,false,false,3,true,true,true,false,71 +sf-projects/doc-server,sf-projects,Java,true,false,true,1,true,false,false,false,26 +IvanSanchez/Leaflet.TileLayer.MBTiles,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +thelabnyc/wagtail-nav-menus,thelabnyc,Python,true,false,false,1,false,true,false,false,31 +somatorio/slides-gui-em-docker,somatorio,CSS,true,false,false,1,false,false,true,false,21 +Valtech-Amsterdam/AspnetCoreHoneyPot,Valtech-Amsterdam,C#,true,false,false,3,true,false,false,true,115 +osslugaru/osslugaru.gitlab.io,osslugaru,Python,true,false,false,1,false,true,false,false,30 +crondaemon/wireshark,crondaemon,C,true,false,false,2,true,true,false,false,191 +catalyst-it/vagrant-puppetfile,catalyst-it,Ruby,true,false,false,1,false,true,false,false,13 +craigbarnes/lua-discount,craigbarnes,C,true,false,false,2,false,true,false,false,24 +serpro/double-agent-validator,serpro,JavaScript,true,false,true,4,false,true,false,true,51 +csprenger/docker-qt-gcc,csprenger,Shell,true,false,false,3,true,true,false,false,48 +angular-material-home/angular-material-home,angular-material-home,JavaScript,true,false,false,2,false,true,true,false,48 +Plague_Doctor/spw,Plague_Doctor,Python,true,false,false,1,false,true,false,false,56 +timlyo/Hitman,timlyo,Rust,true,false,false,1,false,true,false,false,17 +simp/simp-core,simp,Ruby,true,false,false,2,false,true,false,false,226 +wdd/rt-sharp,wdd,C#,true,false,false,2,false,false,false,false,25 +cgmp/gta,cgmp,C#,true,false,false,1,true,false,false,false,19 +anarcat/stressant,anarcat,Python,false,false,false,0,false,false,false,false,1 +sNewell/thenewells,sNewell,TypeScript,true,false,false,1,true,false,false,false,35 +tdely/freischutz,tdely,PHP,true,false,false,1,false,true,false,false,21 +notch8/stack_car,notch8,HTML,true,false,false,1,false,true,false,false,17 +cubekrowd/website,cubekrowd,HTML,true,false,false,1,false,true,false,false,37 +tramwayjs/tramway-core,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +fwilhe/ingo,fwilhe,Ruby,true,false,false,1,false,true,false,false,10 +velmuruganv/ci-api,velmuruganv,Java,true,false,true,3,true,false,true,false,121 +gandra404/vue-hello-world,gandra404,JavaScript,true,false,false,1,false,true,false,false,21 +roddhjav/pass-import,roddhjav,Python,true,false,false,5,false,true,true,false,124 +fdroid/jekyll-fdroid,fdroid,Ruby,true,false,false,1,false,true,false,false,15 +buildfunthings/qttt,buildfunthings,Clojure,true,false,false,1,false,true,false,false,25 +bent10/stacked-menu,bent10,JavaScript,true,false,false,1,false,false,true,false,11 +tspiteri/gmp-mpfr-sys,tspiteri,C,true,false,false,1,false,true,false,false,118 +tvaughan/terraform-aws-starterkit,tvaughan,HCL,true,false,false,1,false,true,false,false,8 +dxld/ghc-mod,dxld,Haskell,true,false,false,2,true,true,false,false,55 +CinemaPress/cinemapress.gitlab.io,CinemaPress,HTML,true,false,false,1,false,true,false,false,10 +inkscape/inkscape-web-i18n,inkscape,Shell,true,false,false,1,false,true,false,false,9 +tramwayjs/tramway-core-dependency-injector,tramwayjs,JavaScript,true,false,false,1,false,true,false,false,16 +exo-one/svst-docker,exo-one,Objective-C,true,false,false,1,false,false,false,false,26 +ezrast/crometheus,ezrast,Crystal,true,false,false,2,false,true,true,false,22 +rlbaker/wav,rlbaker,Rust,true,false,false,1,false,true,false,false,24 +Sakuhl/pwgenr,Sakuhl,Rust,true,false,false,1,false,true,false,false,6 +doctorj/interview-prep,doctorj,Python,true,true,false,1,false,true,false,false,14 +trustworthy-refactoring/refactorer,trustworthy-refactoring,OCaml,true,false,false,1,true,false,false,false,62 +tocodev/parcel,tocodev,JavaScript,true,false,false,1,false,true,false,false,18 +kitlaan/mwoskill,kitlaan,JavaScript,true,false,false,1,false,false,true,false,16 +PPL2017csui/PPLA3,PPL2017csui,HTML,true,false,false,1,false,true,false,false,76 +PPL2017csui/PPLB3,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false,57 +PPL2017csui/PPLD4,PPL2017csui,Java,true,false,false,2,false,true,true,false,62 +PPL2017csui/PPLB4,PPL2017csui,Ruby,true,false,false,2,false,true,true,false,91 +PPL2017csui/PPLD3,PPL2017csui,PHP,true,false,false,1,false,true,false,false,38 +exitlive/gitlab-dart,exitlive,Dart,true,false,false,2,false,true,true,false,18 +revaz/Gtools,revaz,Python,true,false,false,1,true,false,false,false,47 +revaz/pNbody,revaz,C,true,false,false,1,true,false,false,false,53 +lumi/minidom-rs,lumi,Rust,false,false,false,0,false,false,false,false,1 +redhat-crypto/fedora-crypto-policies,redhat-crypto,Perl,true,false,false,1,false,true,false,false,18 +nucleus-uog/nucleus,nucleus-uog,Python,true,true,false,1,true,false,false,false,20 +joshlambert/hello-world,joshlambert,Shell,true,false,false,1,false,false,true,false,14 +akita/gcn3,akita,Go,true,false,false,4,true,true,true,false,144 +memosa/meteor-gitlab-ci,memosa,JavaScript,true,false,false,2,false,true,true,false,96 +sue445/gitlab-meetup-tokyo-1,sue445,Ruby,true,false,false,1,false,false,true,false,27 +patkennedy79/picture_video_organizer,patkennedy79,Python,true,true,false,1,false,true,false,false,9 +perobertson/scripts,perobertson,Shell,true,false,false,3,true,true,true,false,130 +wallzero/ui-router-react-digest,wallzero,TypeScript,true,false,false,5,true,true,true,true,235 +neachdainn/aspen,neachdainn,Rust,true,false,false,3,true,true,false,false,92 +mailcare/mailcare,mailcare,PHP,true,false,false,1,false,true,false,false,53 +fresheyeball/Compactable,fresheyeball,Haskell,true,false,false,1,true,false,false,false,12 +laconfdev/symposion_app,laconfdev,HTML,true,false,false,3,true,true,true,false,184 +house7/bullets,house7,JavaScript,true,false,false,1,false,true,false,false,9 +robblue2x/magnesium,robblue2x,JavaScript,true,false,false,3,true,false,true,true,135 +eval/lemme-pry,eval,Ruby,true,false,false,1,false,true,false,false,20 +libidn/libidn2,libidn,C,true,false,false,2,false,false,false,false,245 +Trezdog44/mazdatweaks,Trezdog44,CSS,true,false,false,2,false,true,true,false,27 +makeorg/platform/semantic-api,makeorg,Scala,true,false,false,1,true,false,false,false,19 +blitzgren/gitlab-game-demo,blitzgren,TypeScript,true,false,false,1,false,true,false,false,44 +f1ssi0n/F1-source-sdk-2013,f1ssi0n,C++,true,false,false,1,true,false,false,false,15 +projectbodhi/projectbodhi.gitlab.io,projectbodhi,CSS,true,false,false,1,false,true,false,false,10 +somatorio/cv,somatorio,,true,false,false,2,true,true,false,false,27 +grails-3-book/asciibooks,grails-3-book,CSS,true,false,false,2,true,true,false,false,42 +pantomath-io/panto,pantomath-io,Go,true,false,false,5,true,true,false,true,529 +kollavarsham/smc-webfonts,kollavarsham,CSS,true,false,false,1,false,true,false,false,22 +ismail-s/JTime,ismail-s,Kotlin,true,false,false,6,true,true,true,false,209 +endymuhardin/belajar-gitlab-ci,endymuhardin,,true,false,false,3,true,false,true,false,51 +roddhjav/pass-tomb,roddhjav,Shell,true,false,false,1,false,false,false,false,10 +Ambraven/TootFic,Ambraven,TeX,true,false,false,1,false,true,false,false,19 +TSnake41/darkbox,TSnake41,C,true,false,false,1,false,true,false,false,7 +smondet/misuja,smondet,C,true,false,false,1,false,true,false,false,61 +spindp14/spindp14,spindp14,Python,true,false,false,1,false,true,false,false,12 +jeremlvt/dawn_arrival,jeremlvt,Nit,true,false,false,1,false,true,false,false,19 +fftr/forteso,fftr,Java,true,false,false,1,false,true,false,false,26 +encripta/encripta.gitlab.io,encripta,CSS,true,false,false,1,false,true,false,false,11 +czechitas/kurz_web,czechitas,HTML,true,false,false,3,true,true,true,false,24 +reusable-tools/barebone-plugin,reusable-tools,Shell,true,false,false,1,false,true,false,false,17 +tottokotkd/napoleon-blue.gitlab.io,tottokotkd,CSS,true,false,false,1,true,false,false,false,78 +INTER-Mediator/INTER-Mediator,INTER-Mediator,PHP,true,false,false,2,false,true,true,false,48 +gbraad/fedora-wsl,gbraad,Shell,true,false,false,1,false,true,false,false,10 +td7x/s6,td7x,TypeScript,true,false,false,5,true,false,true,false,107 +blueoakinteractive/boi_ci,blueoakinteractive,PHP,true,false,false,2,false,true,true,false,27 +wallzero/react-digest,wallzero,TypeScript,true,false,false,4,true,true,true,true,136 +susurrus/fat-rs,susurrus,Rust,true,false,false,2,true,false,false,false,291 +commonshost/cli,commonshost,JavaScript,true,false,false,1,false,true,false,false,8 +dewet/ensmallen,dewet,Python,true,true,false,1,true,false,false,false,14 +andreascian/python-test-1,andreascian,Python,true,false,false,1,false,true,false,false,12 +SklaveDaniel/BeatmeterGenerator,SklaveDaniel,Scala,true,false,false,1,true,false,false,false,28 +gitlab-examples/cross-branch-pipelines,gitlab-examples,,true,false,false,1,false,true,false,false,35 +abonnet/pasclang,abonnet,C++,true,false,false,2,true,true,false,false,32 +jlalande/vue-auth-image,jlalande,JavaScript,true,false,false,3,true,true,false,false,27 +drakonka/gosnaillife,drakonka,Go,true,false,false,3,false,true,true,false,124 +winni/angular-sudoku,winni,TypeScript,true,false,false,1,false,false,true,false,23 +nobodyinperson/simbuto,nobodyinperson,R,true,false,false,5,true,false,true,false,125 +bennyp/polymer-test,bennyp,Shell,true,false,false,1,false,true,false,false,10 +movie_thumbnailer/mtn,movie_thumbnailer,C,true,false,false,1,true,false,false,false,181 +ercom/cijw4gitlab,ercom,Shell,true,false,false,1,true,false,false,false,16 +bikespace/Bicycle-parking,bikespace,Python,true,true,false,2,false,true,true,false,79 +paulgibbs/bporg,paulgibbs,PHP,true,false,false,1,false,true,false,false,24 +fyi-project/fyi-help,fyi-project,CSS,true,false,false,2,false,true,true,false,30 +monashdiversit/monashdiversit.gitlab.io,monashdiversit,HTML,true,false,false,1,false,true,false,false,16 +ahamtech/coap/aadya,ahamtech,CSS,true,false,false,2,false,true,false,false,27 +bennya/shrink-path.el,bennya,EmacsLisp,true,false,false,2,true,true,false,false,37 +ysb33rOrg/grolifant,ysb33rOrg,Groovy,true,false,false,3,true,true,false,true,145 +JAForbes/manuel,JAForbes,JavaScript,true,false,false,1,false,true,false,false,14 +rawsec/rawsec-cybersecurity-list,rawsec,HTML,true,false,false,2,false,true,true,false,49 +nokwin/freshcode-moderator,nokwin,JavaScript,true,false,false,1,true,false,false,false,25 +Johnsoct/andybeverlyschool,Johnsoct,HTML,true,false,false,2,false,true,true,false,25 +tg-team/methoden,tg-team,JavaScript,true,false,false,1,false,false,true,false,11 +khmercoders/khmercoders.io,khmercoders,PHP,true,false,false,1,false,true,false,false,36 +passit/passit-mobile,passit,TypeScript,true,false,false,2,true,false,true,false,44 +Marnes/public-ip-display,Marnes,JavaScript,true,false,false,1,true,false,false,false,12 +wengych/gitflow-ci,wengych,Kotlin,true,false,true,3,true,false,true,false,61 +kutelev/gost_forms,kutelev,C++,true,false,false,1,true,false,false,false,31 +typemytype/robofont_com,typemytype,Python,true,false,false,1,false,false,true,false,55 +Baasie/serenityjs-rest-example,Baasie,TypeScript,true,false,false,2,false,false,true,false,26 +4geit/swagger-packages,4geit,JavaScript,true,false,false,3,false,true,true,true,83 +hydrasoftware/hydra,hydrasoftware,PLpgSQL,true,false,false,1,false,true,false,false,8 +nicopaez/memo2-2017,nicopaez,Ruby,true,false,false,1,true,false,false,false,8 +brianegan/flutter_redux,brianegan,Dart,true,false,false,2,false,true,true,false,27 +smondet/vimebac,smondet,OCaml,true,false,false,1,false,true,false,false,30 +sinajames/resume,sinajames,TeX,true,false,false,3,false,false,false,false,72 +ykyuen/gitlab-ci-demo,ykyuen,JavaScript,true,false,false,3,false,false,false,false,38 +cardoe/enum-primitive-derive,cardoe,Rust,true,false,false,1,true,false,false,false,33 +petejohanson/fore-scorer,petejohanson,F#,true,false,false,3,false,true,false,true,150 +somlabs/somlabs-buildroot,somlabs,Makefile,true,false,false,1,false,true,false,false,260 +MazeChaZer/json-bouncer,MazeChaZer,TypeScript,true,false,false,1,false,true,false,false,12 +librespacefoundation/satnogs/satnogs-pi-gen,librespacefoundation,Shell,true,false,false,1,true,false,false,false,43 +izznfkhrlislm/ppw-lab,izznfkhrlislm,JavaScript,true,false,false,2,false,true,true,false,38 +cold-icy-ice/epitaph,cold-icy-ice,PHP,true,false,false,1,false,false,true,false,15 +Glenans-CDMEB/Guide-CDMEB,Glenans-CDMEB,CSS,true,false,false,2,true,false,true,false,53 +gitlab-org/openssh-packages,gitlab-org,Shell,true,false,false,1,false,false,false,false,18 +derhansen/comments,derhansen,PHP,true,false,false,4,false,true,true,false,108 +sampadashboard/sampa-smart-map,sampadashboard,JavaScript,true,false,false,1,false,true,false,false,17 +orvium.io/token,orvium.io,JavaScript,true,false,false,1,false,true,false,false,15 +gitlab-org/gitaly-bench,gitlab-org,Go,true,false,false,1,true,false,false,false,14 +librespacefoundation/pqws/pqws-main-sw,librespacefoundation,C,true,false,false,1,true,false,false,false,14 +JAForbes/hickery,JAForbes,JavaScript,true,false,false,2,false,true,false,false,77 +EAVISE/brambox,EAVISE,Python,true,true,false,2,false,true,true,false,72 +quarmony-free-html/veggie,quarmony-free-html,CSS,true,false,false,1,false,false,true,false,11 +apparently/readonly/fdroid-data,apparently,Python,true,false,false,2,false,true,true,false,144 +nobodyinperson/python3-meteorology,nobodyinperson,Python,true,false,false,3,false,true,true,false,93 +IonicZoo/bird-format-pipe,IonicZoo,TypeScript,true,false,false,1,false,false,true,false,12 +mbarbry/python-scalapack,mbarbry,Python,true,false,false,1,false,true,false,false,42 +subins2000/subinsb.com,subins2000,CSS,true,false,false,1,false,true,false,false,13 +ninjin/ninjin.gitlab.io,ninjin,HTML,true,false,false,2,false,true,true,false,29 +interscity/health-dashboard/health-smart-city,interscity,JavaScript,true,false,false,2,false,false,false,false,44 +dspechnikov/django-slugger,dspechnikov,Python,true,false,false,3,false,true,false,true,81 +failmap/admin,failmap,Python,true,true,false,3,false,false,false,true,247 +kachkaev/website-graphql-server,kachkaev,TypeScript,true,false,false,2,false,false,false,false,34 +arthurmoore85/pi_romulus,arthurmoore85,Python,true,true,false,1,false,true,false,false,17 +tijsg/swagger-template,tijsg,HTML,true,false,false,3,true,true,true,false,52 +monetha/trust-reputation-smart-contracts,monetha,JavaScript,true,false,false,1,false,true,false,false,24 +tripetto/examples/react-material-ui,tripetto,TypeScript,true,false,false,1,false,true,false,false,18 +pygotham/2018,pygotham,JavaScript,true,false,false,2,false,true,true,false,29 +fdroid/fdroidclient-nightly,fdroid,,true,false,false,1,false,true,false,false,8 +MatthiasHu/kategorientheorie-WS1718,MatthiasHu,TeX,true,false,false,2,false,false,true,false,30 +thelabnyc/django-vault-helpers,thelabnyc,Python,true,false,false,1,false,true,false,false,29 +wondermonger/koa-session-mongoose,wondermonger,JavaScript,true,false,false,1,false,true,false,false,21 +CLIUtils/CLI11Tutorial,CLIUtils,C++,true,false,false,2,false,true,true,false,32 +fdroid/fdroid-website-search,fdroid,Python,true,true,false,2,true,false,false,true,35 +Freika/random_newsletter,Freika,Ruby,true,false,false,1,false,true,false,false,37 +southwestohiogivecamp/drug-inventory,southwestohiogivecamp,Java,true,false,false,2,true,true,false,false,41 +shu-iro/studb,shu-iro,JavaScript,true,false,false,1,false,true,false,false,8 +mpapp-public/couchbase-lite-node,mpapp-public,C,true,false,false,1,false,true,false,false,20 +alelec/aioeasywebdav,alelec,Python,true,false,false,2,false,true,true,false,27 +boats/failure,boats,Rust,true,false,false,1,false,true,false,false,10 +timtizio/Bookmark-Manager,timtizio,PHP,true,false,false,1,false,true,false,false,83 +Dreae/luajit-rs,Dreae,Rust,true,false,false,2,false,true,false,false,42 +yorickpeterse/ruby-ll,yorickpeterse,Ruby,true,false,false,1,false,true,false,false,33 +VV5/food-security,VV5,Vue,true,false,false,1,false,true,false,false,14 +code-stats/code-stats-zsh,code-stats,Shell,true,false,false,1,false,true,false,false,6 +schmidt.simon/hypothesis-drf,schmidt.simon,Python,true,false,false,2,false,true,true,false,42 +jimschubert/barebones-ebook,jimschubert,CSS,true,false,false,1,true,false,false,false,39 +barzilay/gitlab-cucumber-selenium-ci-test-setup,barzilay,Gherkin,true,false,false,1,false,true,false,false,15 +djm.im/nlf,djm.im,Java,true,false,true,2,false,true,true,false,13 +devscola/consensus,devscola,JavaScript,true,false,false,1,false,true,false,false,15 +kornelski/wild,kornelski,Rust,true,false,false,1,false,true,false,false,10 +cloud-oscilloscope/qtloscope,cloud-oscilloscope,C++,true,false,false,1,true,false,false,false,16 +fboisselier52/eureka-synchronizer,fboisselier52,JavaScript,true,false,false,2,true,false,false,true,31 +distributopia/fetch-the-badge,distributopia,HTML,true,false,false,1,false,false,true,false,11 +kornelski/dunce,kornelski,Rust,true,false,false,1,false,true,false,false,10 +wallzero/jsplumb-react,wallzero,TypeScript,true,false,false,4,true,true,true,true,134 +distributopia/all-logos-in-one-basket,distributopia,HTML,true,false,false,1,false,false,true,false,11 +4U6U57/wsl-open,4U6U57,Shell,true,false,false,1,false,true,false,false,17 +k0001/xmlbf,k0001,Haskell,true,false,false,1,true,false,false,false,26 +clojurebridge-mn/clojurebridgemn.org,clojurebridge-mn,Clojure,true,false,false,2,true,false,true,false,37 +wolphin/wolphin,wolphin,Python,true,true,false,3,true,true,false,false,122 +unused/geo-chat,unused,Ruby,true,false,false,1,false,true,false,false,52 +evanp/activitypub-mock,evanp,JavaScript,true,false,false,1,false,true,false,false,20 +SirEdvin/docker-prometheus-exporter,SirEdvin,Python,true,true,false,2,false,true,false,true,27 +gitlab-org/gl-performance,gitlab-org,JavaScript,true,false,false,2,true,true,false,false,29 +baldurmen/puppet-borg,baldurmen,Puppet,true,false,false,1,false,true,false,false,19 +zoomonit/greenpepper,zoomonit,Java,true,false,true,3,true,true,false,false,84 +moy/generate-skeletons,moy,Python,true,false,false,1,false,true,false,false,18 +nilenso/relay-backend,nilenso,Clojure,true,false,false,5,false,true,false,false,101 +IAI-GL3-17-18/TP-SIG-GROUPE-8,IAI-GL3-17-18,JavaScript,true,false,false,1,false,false,true,false,11 +sscherfke/aiomas,sscherfke,Python,true,true,false,2,true,true,false,false,51 +TortueMat/jira-issue-bot,TortueMat,Go,true,false,false,2,true,true,false,false,30 +infomasternotes/Svigruppo,infomasternotes,TeX,true,false,false,1,false,true,false,false,7 +Calinou/godot-builds-ci,Calinou,Shell,true,false,false,1,false,true,false,false,232 +beardog/Onionr,beardog,Python,true,true,false,1,false,true,false,false,9 +sinclair2/lecert,sinclair2,Shell,true,false,false,2,false,true,false,false,46 +rpadovani/my-gitlab-ci,rpadovani,JavaScript,true,false,false,2,false,true,true,false,85 +islands-wars/research/crochet,islands-wars,Rust,true,false,false,3,true,true,true,false,36 +Orange-OpenSource/ScriptSuiteForAnsible/keepalived,Orange-OpenSource,Shell,true,false,false,1,false,true,false,false,38 +clearglass/clearglass-community,clearglass,HTML,true,false,false,6,true,true,true,true,571 +rilis/rili/json,rilis,C++,true,false,false,3,false,true,false,false,80 +artur-scholz/clubhub,artur-scholz,Python,true,true,false,1,false,true,false,false,12 +CapsAdmin/goluwa,CapsAdmin,Lua,true,false,false,1,false,true,false,false,9 +nd-cse-20289-sp18/cse-20289-sp18-website,nd-cse-20289-sp18,CSS,true,false,false,1,false,true,false,false,4 +open-pipeline/open-pipeline.gitlab.io,open-pipeline,HTML,true,false,false,1,false,true,false,false,16 +radek-sprta/mariner,radek-sprta,Python,true,false,false,5,true,true,true,true,116 +AOBlockchain/aoblockchain.io,AOBlockchain,CSS,true,false,false,1,false,true,false,false,29 +kamilgregorczyk/instalike,kamilgregorczyk,Python,true,true,false,1,false,true,false,false,18 +guardianproject/checkey,guardianproject,Java,true,false,false,2,false,true,true,false,146 +Manu343726/clang-conan-packages,Manu343726,Python,true,false,false,55,false,false,false,false,14585 +seattlelinux/gslug,seattlelinux,HTML,true,false,false,1,false,true,false,false,14 +TMW2/serverdata,TMW2,C,true,false,false,4,true,true,false,false,218 +xaviuzz/kanbang,xaviuzz,Ruby,true,false,false,1,false,true,false,false,16 +materials-modeling/vcsgc-lammps,materials-modeling,C++,true,false,false,1,false,false,true,false,26 +SirEdvin/sanic-oauth,SirEdvin,Python,true,false,false,2,false,true,false,false,27 +agamigo/material,agamigo,Go,true,false,false,1,false,true,false,false,27 +cyberbudy/django-postie,cyberbudy,Python,true,true,false,3,true,true,false,true,56 +xianbaum/red-x,xianbaum,TypeScript,true,false,false,1,false,true,false,false,30 +gravoo/my_game,gravoo,HTML,true,false,false,1,true,false,false,false,15 +fdroid/basebox,fdroid,Python,true,false,false,1,false,true,false,false,16 +tnir/docs.djangoproject.jp,tnir,Go,true,false,false,2,false,true,true,false,38 +gitlab-cookbooks/gitlab_fluentd,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true,61 +fkumro/lake_effect,fkumro,Elixir,true,false,false,2,false,true,true,false,37 +fkumro/thunder_snow,fkumro,JavaScript,true,false,false,1,false,true,false,false,25 +Kwilco/konosuba-gifs,Kwilco,Python,true,false,false,4,true,true,true,true,45 +ekaitz-zarraga/talks,ekaitz-zarraga,JavaScript,true,false,false,1,false,false,true,false,11 +vindarel/cl-bookshops,vindarel,CommonLisp,true,false,false,1,true,false,false,false,19 +thelabnyc/wagtail_blog,thelabnyc,Python,true,false,false,1,false,true,false,false,16 +stephane.codazzi/power5online,stephane.codazzi,JavaScript,true,false,false,1,true,false,false,false,23 +trustable/documents,trustable,,true,false,false,2,false,false,false,false,60 +drypack/main,drypack,PHP,true,false,false,1,false,true,false,false,39 +fdroid/android_vendor_fdroid,fdroid,Shell,true,false,false,1,false,true,false,false,14 +dataengi/marketing/www.dataengi.com,dataengi,HTML,true,false,false,3,true,false,true,false,184 +crconte/opx,crconte,Shell,true,false,false,2,false,true,false,true,17 +balazs4/gitlab-pipeline-monitor,balazs4,JavaScript,true,false,false,2,false,true,false,true,35 +docker-hub/texlive,docker-hub,Shell,true,false,false,6,false,true,false,false,93 +dickoa/rhdx,dickoa,R,true,false,false,1,false,false,true,false,19 +PPL2018csui/Kelas-D/PPL2018-D3,PPL2018csui,JavaScript,true,false,false,3,false,true,true,true,123 +PPL2018csui/Kelas-D/PPL2018-D5,PPL2018csui,Java,true,false,false,3,true,true,false,false,199 +ahrs/gentoo-stuff,ahrs,Shell,true,false,false,1,false,true,false,false,83 +msvechla/vaultbeat,msvechla,Go,true,false,false,2,false,true,false,true,46 +lortet/AndroidBaseProject,lortet,Java,true,false,false,3,true,true,false,false,172 +souissi.anis/ng-super-heroes,souissi.anis,TypeScript,true,false,false,2,true,false,true,false,65 +zcash-docs/zcash-docs,zcash-docs,Python,true,false,false,3,true,false,true,false,50 +chowner/investogator,chowner,Python,true,false,false,1,false,true,false,false,7 +tezos/tezos-faucet,tezos,JavaScript,true,false,false,1,false,true,false,false,14 +glorwinger/nwnsc,glorwinger,C++,true,false,false,1,true,false,false,false,15 +jensj/myqueue,jensj,Python,true,false,false,1,false,true,false,false,9 +CaflischLab/CampaRi,CaflischLab,R,true,false,false,4,false,true,true,false,84 +mkjeldsen/commitmsgfmt,mkjeldsen,Rust,true,false,false,1,false,true,false,false,7 +DBotThePony/DBotProjects,DBotThePony,Lua,true,false,false,1,true,false,false,false,27 +publicmarket/public-market-storefront,publicmarket,Ruby,true,false,false,3,false,false,false,false,120 +gitlab-org/gitlab_kramdown,gitlab-org,Ruby,true,false,false,1,false,true,false,false,70 +danieltorrer/danieltorrer.gitlab.io,danieltorrer,CSS,true,false,false,1,false,false,true,false,24 +PrajjwalDimri/itg-cse-web-tech,PrajjwalDimri,HTML,true,false,false,1,false,false,true,false,11 +mkjeldsen/git-mr-to,mkjeldsen,Shell,true,false,false,1,false,true,false,false,13 +tkpapp/GitlabJuliaDemo.jl,tkpapp,Julia,true,false,false,2,false,true,true,false,24 +oax/dex-poc,oax,JavaScript,true,false,false,2,false,true,true,false,45 +pathfinder-fr/pf2-jekyll,pathfinder-fr,JavaScript,true,false,false,2,false,true,true,false,28 +vsu/avs/backend,vsu,HTML,true,false,false,2,true,true,false,false,47 +angreal/angreal,angreal,Python,true,false,false,4,false,true,false,true,222 +onepoint/junit-5-extensions,onepoint,Java,true,false,true,5,false,false,false,false,69 +cajen/cajen,cajen,PHP,true,false,false,2,true,true,false,false,59 +onepoint/onecss,onepoint,HTML,true,false,false,1,false,false,false,false,19 +fathom/bridger,fathom,TypeScript,true,false,false,2,true,false,true,false,18 +mamyn0va/php-template,mamyn0va,PHP,true,false,false,2,false,true,true,false,39 +Hardroid/GdgAndroidSantiagoCI,Hardroid,Java,true,false,false,4,true,true,true,true,43 +upbhack/upbhack.gitlab.io,upbhack,Verilog,true,false,false,1,false,true,false,false,18 +valeth/discord-rpc-client.rs,valeth,Rust,true,false,false,4,true,true,false,true,99 +dxld/cabal-helper,dxld,Haskell,true,false,false,1,true,false,false,false,45 +Cayan_HacktheHub/TamaTrainer,Cayan_HacktheHub,Python,true,true,false,1,false,true,false,false,10 +beskhlebnyi/bes-todo-list,beskhlebnyi,Ruby,true,false,false,1,false,true,false,false,34 +PerplexedPeach/dynamic-avatar-drawer,PerplexedPeach,HTML,true,false,false,1,false,false,true,false,17 +aapjeisbaas/spot-ecs,aapjeisbaas,Shell,true,false,false,1,false,true,false,false,14 +srikanthlogic/gstin-validator,srikanthlogic,JavaScript,true,false,false,1,false,true,false,false,12 +t3r/mpmap,t3r,JavaScript,true,false,false,1,true,false,false,false,29 +gilrs-project/gilrs-core,gilrs-project,Rust,true,false,false,3,true,true,true,false,67 +devscola/asesora,devscola,Ruby,true,false,false,1,false,true,false,false,29 +net-as-artwork/networking,net-as-artwork,Makefile,true,false,false,2,true,false,true,false,17 +igrep/main-tester,igrep,Haskell,true,false,false,1,false,true,false,false,27 +all-mangas-reader/all-mangas-reader-2-mirrors,all-mangas-reader,JavaScript,true,false,false,2,true,false,false,false,25 +teonite/inspectr,teonite,Python,true,false,false,2,true,false,false,false,34 +gdevops/tuto_docker,gdevops,Python,true,true,false,1,false,true,false,false,12 +jpotisch/petbooth,jpotisch,JavaScript,true,false,false,1,false,true,false,false,8 +denkmal/denkmal-website,denkmal,Vue,true,false,false,3,true,true,false,true,88 +sAnIc-ND/sAnIc,sAnIc-ND,Python,true,false,false,1,false,false,true,false,13 +Cacophony/Gateway,Cacophony,Go,true,false,false,5,false,false,false,false,47 +uweschmitt/pytest-regtest,uweschmitt,Python,true,true,false,1,false,false,false,false,10 +coq/coq,coq,OCaml,true,false,false,7,false,true,true,true,758 +publishing-reform/publishing-reform.gitlab.io,publishing-reform,CSS,true,false,false,2,false,true,true,false,27 +smc/fonts/gayathri,smc,HTML,true,false,false,4,true,true,true,true,63 +it_schoolprojects/informatikprojekt/marsme,it_schoolprojects,Java,true,false,false,3,true,true,false,true,49 +gedl/phaser-tiled-physics,gedl,JavaScript,true,false,false,1,false,false,true,false,11 +teamanubot/LineEtotJS,teamanubot,JavaScript,true,false,false,1,false,true,false,false,34 +brukhabtu/femtow,brukhabtu,Python,true,false,false,1,false,true,false,false,52 +danielhones/pycategories,danielhones,Python,true,false,false,2,false,true,false,false,46 +librehealth/lh-toolkit-webcomponents,librehealth,JavaScript,true,false,false,2,false,true,true,false,27 +coala/bears/coala-antlr,coala,Python,true,true,false,1,false,true,false,false,81 +meesvandongen/gitlab-pages-react-app,meesvandongen,JavaScript,true,false,false,1,false,false,true,false,17 +BrawlDB/frontend,BrawlDB,TypeScript,true,false,false,2,true,false,true,false,27 +Haldoryn/DHBWTemplate,Haldoryn,TeX,true,false,false,1,false,true,false,false,7 +mihails.strasuns/dtoh,mihails.strasuns,D,true,false,false,1,false,true,false,false,27 +plut0n/MLNL,plut0n,Python,true,false,false,1,false,true,false,false,16 +chris-olbrich/emacs-reveal-transaction-processing,chris-olbrich,EmacsLisp,true,false,false,1,false,false,true,false,15 +dfederschmidt/docker-pipenv-sample,dfederschmidt,Python,true,false,false,3,true,true,false,true,42 +h5cli/h5cli,h5cli,Python,true,false,false,2,false,true,true,false,30 +ggggabri/browser-startpage,ggggabri,CSS,true,false,false,1,false,false,true,false,11 +angular-material-home/apps/my-home,angular-material-home,JavaScript,true,false,false,2,true,false,true,false,45 +aquachain/aquachain,aquachain,Go,true,false,false,1,false,true,false,false,22 +gabmus/HydraPaper,gabmus,Python,true,false,false,2,false,true,true,false,24 +philbooth/hoopy,philbooth,JavaScript,true,false,false,1,false,true,false,false,25 +ZeroDot1/Startpage,ZeroDot1,HTML,true,false,false,1,false,false,true,false,12 +ColinKinloch/LatinIME_apk,ColinKinloch,,true,false,false,1,true,false,false,false,41 +zavan/monetus-fia-bot,zavan,JavaScript,true,false,false,1,false,true,false,false,12 +cyberatuc/cyberatuc.org,cyberatuc,HTML,true,false,false,2,false,true,true,false,30 +shagu/arch-install,shagu,Shell,true,false,false,3,true,true,true,false,73 +scorputty/vagrant-ha-openshift,scorputty,Shell,true,false,false,1,false,true,false,false,20 +bagage/cadastre-conflation,bagage,TypeScript,true,false,false,2,true,true,false,false,89 +huldra/arctic,huldra,C++,true,false,false,2,true,true,false,false,87 +dbeniamine/todo.txt-vim,dbeniamine,Vimscript,true,false,false,1,false,true,false,false,17 +infragravity/charts,infragravity,Smarty,true,false,false,2,false,true,true,false,29 +aki237/pin,aki237,Go,true,false,false,2,true,true,false,false,26 +unixispower/jcard-template,unixispower,CSS,true,false,false,1,false,false,true,false,13 +nwmitchell/homeassistant-config,nwmitchell,Python,true,false,false,1,false,true,false,false,24 +cjlyth/resume-app,cjlyth,JavaScript,true,false,false,2,false,true,true,false,28 +nsi-public/s3-proxy,nsi-public,Shell,true,false,false,3,true,true,true,false,82 +4w/hunger_ng,4w,Lua,true,false,false,1,false,true,false,false,18 +mraureliusr/Learn,mraureliusr,TeX,true,false,false,1,false,false,true,false,18 +saeedtrb/simple-use-ci,saeedtrb,HTML,true,false,false,2,true,true,false,false,43 +vala-panel-project/cmake-vala,vala-panel-project,CMake,true,false,false,1,true,false,false,false,25 +tim241/pacman-src,tim241,Shell,true,false,false,2,true,true,false,false,25 +evtest-qt/evtest-qt,evtest-qt,C++,true,false,false,1,true,false,false,false,129 +jstest-gtk/jstest-gtk,jstest-gtk,C++,true,false,false,1,true,false,false,false,84 +JuliaGPU/CUDAnative.jl,JuliaGPU,Julia,true,false,false,2,false,true,true,false,184 +kottkrig/sprout-tree,kottkrig,Elixir,true,false,false,2,false,true,true,false,39 +sdl-jstest/sdl-jstest,sdl-jstest,C,true,false,false,1,true,false,false,false,101 +alinex/node-portal,alinex,JavaScript,true,false,false,1,false,false,true,false,22 +jdesodt/seneca-triggers,jdesodt,JavaScript,true,false,false,2,true,true,false,false,24 +jdesodt/seneca-entity-crud,jdesodt,JavaScript,true,false,false,2,true,true,false,false,55 +toby3d/dialogs,toby3d,Go,true,false,false,1,false,true,false,false,41 +exosphere/exosphere,exosphere,Elm,true,false,false,3,true,true,true,false,102 +gun1x/frr_ansible_ebgp,gun1x,,true,false,false,3,false,true,true,false,26 +mgoral/twweb,mgoral,Python,true,true,false,3,false,true,true,true,75 +sdwolfz/dotfiles,sdwolfz,EmacsLisp,true,false,false,1,false,true,false,false,18 +costrouc/knoxville-opendata-notebooks,costrouc,JupyterNotebook,true,false,false,1,false,true,false,false,18 +utsushi/utsushi,utsushi,C++,true,false,false,6,true,true,false,true,134 +Tuuux/galaxie-curses,Tuuux,Python,true,true,false,1,false,true,false,false,12 +dmejer/spring-angular-docker-example,dmejer,Java,true,false,true,5,true,true,false,false,128 +DomainVoider.GitLab.io/DomainVoider,DomainVoider.GitLab.io,HTML,true,false,false,1,false,false,true,false,11 +woblight/GitAddonsManager,woblight,C++,true,false,false,1,true,false,false,false,32 +experimentslabs/engine_elabs,experimentslabs,Ruby,true,false,false,4,false,true,false,false,102 +Danno131313/everyone,Danno131313,Rust,true,false,false,1,true,false,false,false,20 +szabobogdan3/trial,szabobogdan3,D,true,false,false,5,true,true,false,false,426 +semkodev/nelson.gui,semkodev,JavaScript,true,false,false,2,false,false,false,true,85 +adrianhall/awsmobile-weekly,adrianhall,HTML,true,false,false,1,false,false,true,false,17 +chaoslab/repoman,chaoslab,,true,false,false,2,true,false,false,false,32 +cppit/libclangmm,cppit,C++,true,false,false,1,false,true,false,false,26 +efunb/gyrus,efunb,Rust,true,false,false,6,false,true,true,true,173 +DrRoach/DynamicImage,DrRoach,PHP,true,false,false,1,false,true,false,false,8 +vuedoc/parser,vuedoc,JavaScript,true,false,false,2,false,true,false,true,75 +vmgabriel/giweb,vmgabriel,CSS,true,false,false,2,false,true,true,false,27 +gc-ar/web,gc-ar,HTML,true,false,false,1,false,true,false,false,16 +blevy/redpwn-ctf-writeups,blevy,C,true,false,false,1,false,true,false,false,20 +BuildGrid/buildbox/buildbox-fuse,BuildGrid,C++,true,false,false,2,true,true,false,false,63 +Bettehem/SecureMessengerAndroid,Bettehem,Kotlin,true,false,false,1,true,false,false,false,21 +aurorafossorg/pages-framework-webndocs,aurorafossorg,CSS,true,false,false,1,false,false,true,false,24 +matthieusegret/yummy-phoenix-graphql,matthieusegret,Elixir,true,false,false,2,false,true,false,true,71 +aurorafossorg/pages-home,aurorafossorg,CSS,true,false,false,1,false,false,true,false,24 +danzik/art-dan-cloud,danzik,Java,true,false,false,3,true,true,true,false,38 +kriuvi/timetronom,kriuvi,JavaScript,true,false,false,1,false,false,true,false,13 +tmorin/pine64-docker-images,tmorin,Shell,true,false,false,1,false,false,false,false,21 +revas-io/revas.app,revas-io,Vue,true,false,false,1,false,false,true,false,21 +mudar-ca/PeaceOfMind,mudar-ca,Java,true,false,false,1,false,false,true,false,10 +bitemyapp/totto,bitemyapp,Makefile,true,false,false,1,true,false,false,false,11 +soykje/lscss,soykje,HTML,true,false,false,1,false,false,true,false,11 +alelec/navdy/NavdyOBD,alelec,JavaScript,true,false,false,2,false,false,false,true,27 +daktak/ColourAnalog,daktak,C,true,false,false,1,true,false,false,false,42 +jaymoulin/docker-transmission,jaymoulin,Makefile,true,false,false,1,true,false,false,false,21 +jaymoulin/docker-google-musicmanager,jaymoulin,Shell,true,false,false,1,true,false,false,false,20 +transfire/crystal-cli,transfire,Crystal,true,false,false,1,false,false,true,false,13 +apurebase/arkenv,apurebase,Kotlin,true,false,false,2,false,true,false,true,77 +klems/ansible-aws,klems,Python,true,true,false,1,false,true,false,false,7 +synappio/free-email-domains,synappio,Python,true,false,false,1,false,true,false,false,6 +RLesur/xaringan-gitlab-pages,RLesur,,true,false,false,2,true,false,true,false,28 +mindfulness-at-the-computer/mindfulness-at-the-computer.gitlab.io,mindfulness-at-the-computer,CSS,true,false,false,2,false,true,true,false,34 +chris.amini/FightingPoverty,chris.amini,Python,true,false,false,2,false,false,false,true,72 +MonsieurMan/ng-refactor,MonsieurMan,TypeScript,true,false,false,1,false,true,false,false,11 +SopaXorzTaker/tpt3d,SopaXorzTaker,JavaScript,true,false,false,1,false,false,true,false,11 +adleatherwood/FunctionalLink,adleatherwood,C#,true,false,false,2,false,true,false,true,66 +smondet/febusy,smondet,OCaml,true,false,false,1,false,true,false,false,38 +castlecraft/building-blocks,castlecraft,TypeScript,true,false,false,2,false,false,false,false,524 +xiayesuifeng/arch-go-qt,xiayesuifeng,,true,false,false,1,true,false,false,false,12 +CromFr/matrix-logger,CromFr,Rust,true,false,false,2,true,false,true,false,38 +gnaar/base,gnaar,,true,false,false,1,true,false,false,false,10 +emelle/emelle,emelle,OCaml,true,false,false,3,true,true,true,false,44 +devlife-apps/connect2sql,devlife-apps,Kotlin,true,false,false,5,false,false,false,true,123 +severity1/aws-auth,severity1,Go,true,false,false,3,true,true,false,false,75 +zedtux/restful-json-api-client,zedtux,JavaScript,true,false,false,1,false,true,false,false,15 +ngxa/testing,ngxa,TypeScript,true,false,false,6,true,true,true,true,166 +gfanz/genomics-tools,gfanz,Shell,true,false,false,3,true,true,true,false,45 +ipcalc/ipcalc,ipcalc,C,true,false,false,3,false,true,true,false,95 +mrvik/pakku-gui,mrvik,Python,true,false,false,1,false,true,false,false,16 +Psy-Kai/ESI-Maya22USBControl,Psy-Kai,C++,true,false,false,3,true,true,false,false,60 +korora/buildkorora,korora,,true,false,false,1,true,false,false,false,50 +gitlab-org/gitter/services,gitlab-org,JavaScript,true,false,false,2,true,true,false,false,31 +felixcool98/Libgdx_Extensions,felixcool98,Java,true,false,false,3,true,true,true,false,72 +nvllsvm/cloneholio,nvllsvm,Python,true,false,false,1,false,true,false,false,18 +daksh7011/username-checker,daksh7011,PHP,true,false,false,1,false,false,true,false,13 +daksh7011/neptune-animations,daksh7011,JavaScript,true,false,false,1,false,false,true,false,13 +kreikenbaum/suntime-app,kreikenbaum,Java,true,false,false,2,true,true,false,false,46 +tagbottle/tomato-puree,tagbottle,TypeScript,true,false,false,2,true,false,false,true,75 +mobiforge/sensors,mobiforge,HTML,true,false,false,1,false,false,true,false,13 +KavenTheriault/aws_lambda_python_deployment,KavenTheriault,Python,true,false,false,1,false,true,false,false,6 +fraction/ssb-current-events,fraction,JavaScript,true,false,false,1,false,true,false,false,15 +hpierce1102/ClassFinder,hpierce1102,PHP,true,false,false,1,false,true,false,false,7 +newbranltd/server-io-core,newbranltd,JavaScript,true,false,false,1,false,true,false,false,10 +VERTORIO/VERTORIO-WEBSITE,VERTORIO,HTML,true,false,false,1,false,false,true,false,18 +b0/matrique-repo,b0,,true,false,false,1,false,false,true,false,11 +DhruvKoolRajamani/dhruvkoolrajamani.gitlab.io,DhruvKoolRajamani,CSS,true,false,false,1,false,false,true,false,11 +mrnagydavid/typic,mrnagydavid,TypeScript,true,false,false,2,false,true,true,false,27 +moeenzarrinfam/cloud-task-runner-ruby,moeenzarrinfam,Ruby,true,false,false,1,false,true,false,false,31 +exitlive/cooky,exitlive,Dart,true,false,false,2,false,true,true,false,18 +kiel-data-hub/kiel-data-hub,kiel-data-hub,TypeScript,true,false,false,2,true,false,true,false,180 +tspiteri/fixed,tspiteri,Rust,true,false,false,1,false,true,false,false,86 +QwantResearch/mimir-geocoder-tester,QwantResearch,Python,true,false,false,1,false,true,false,false,53 +john.carroll.p/rschedule,john.carroll.p,TypeScript,true,false,false,2,true,true,false,false,170 +Nurose/Nurose,Nurose,C#,true,false,false,1,true,false,false,false,52 +OpenCoop/opencoop.gitlab.io,OpenCoop,HTML,true,false,false,2,false,true,true,false,37 +netfarm.gq/cl-decentralise,netfarm.gq,CommonLisp,true,false,false,1,false,true,false,false,12 +mohamnag/javafx-webview-debugger,mohamnag,Java,true,false,false,1,false,true,false,false,25 +shaktiproject/tools/aapg,shaktiproject,Python,true,false,false,2,false,true,false,true,32 +JeisonSanchez/borrar,JeisonSanchez,HTML,true,false,false,1,false,false,true,false,11 +nuntius35/extremal_peaks,nuntius35,JavaScript,true,false,false,1,false,false,true,false,10 +DGothrek/ipyaggrid,DGothrek,JupyterNotebook,true,false,false,1,false,true,false,false,22 +demsking/vue-cli-plugin-env-validator,demsking,JavaScript,true,false,false,2,false,true,false,true,42 +MggMuggins/aurum,MggMuggins,Rust,true,false,false,3,true,true,false,false,50 +Laravelium/Feed,Laravelium,PHP,true,false,false,1,false,true,false,false,63 +cunity/windows-cmake-docker,cunity,PowerShell,true,false,false,2,true,false,false,false,35 +HugoDel/QuickCRM,HugoDel,Python,true,true,false,1,false,true,false,false,60 +Polkabot/polkabot,Polkabot,JavaScript,true,false,false,2,true,false,false,false,79 +Laravelium/Disqus,Laravelium,PHP,true,false,false,1,false,true,false,false,95 +scion-scxml/core,scion-scxml,JavaScript,true,false,false,1,false,true,false,false,19 +YoEight/eventstore-rs,YoEight,Rust,true,false,false,4,true,true,true,false,54 +opendatahub/opendatahub.io,opendatahub,HTML,true,false,false,2,false,true,true,false,28 +shackra/secretaria,shackra,EmacsLisp,true,false,false,1,false,true,false,false,30 +opennota/fb2index,opennota,Go,true,false,false,2,true,true,false,false,18 +opennota/tl,opennota,Go,true,false,false,4,true,true,true,true,41 +golang-commonmark/mdtool,golang-commonmark,Go,true,false,false,2,true,true,false,false,20 +phata/hook,phata,PHP,true,false,false,2,false,true,true,false,58 +mexus/rustup-components-availability,mexus,Rust,true,false,false,1,false,true,false,false,17 +rittenberry/bryanswebsite,rittenberry,JavaScript,true,false,false,3,true,false,true,false,59 +mavnn/elmish-tutorial,mavnn,F#,true,false,false,2,true,false,true,false,32 +fablab-allgaeu/fablab-allgaeu.gitlab.io,fablab-allgaeu,CSS,true,false,false,2,false,true,true,false,28 +bunny-team/bunny-team.gitlab.io,bunny-team,HTML,true,false,false,1,false,false,true,false,12 +georgedorn/wonambi,georgedorn,Python,true,true,false,1,false,true,false,false,9 +4LT/steam-game-launchers,4LT,Tcl,true,false,false,1,false,false,false,false,7 +clickable/clickable,clickable,Python,true,false,false,1,false,true,false,false,9 +chuongnd/hocdiban-front-end,chuongnd,,true,false,false,1,false,false,true,false,18 +altek/accountant,altek,PHP,true,false,false,1,false,true,false,false,64 +witchpou/lj-projectbuilder,witchpou,Java,true,false,false,3,false,false,false,false,112 +apgoucher/slmake,apgoucher,C++,true,false,false,2,false,true,false,true,21 +denis4net/gphotosync,denis4net,Go,true,false,false,1,true,false,false,false,21 +tales/tales-client,tales,C++,true,false,false,2,true,false,true,false,33 +kanna-kobayashi/kanna-bot,kanna-kobayashi,JavaScript,true,false,false,3,false,true,true,false,52 +let-me-help/letmehelp.life,let-me-help,JavaScript,true,false,false,1,false,true,false,false,31 +jckimble/smsprovider,jckimble,Go,true,false,false,1,false,true,false,false,15 +oleh.kurachenko/ubuntu_setup,oleh.kurachenko,Shell,true,false,false,2,false,true,false,true,27 +MVMC-lab/asalib,MVMC-lab,C,true,false,false,3,true,false,false,true,42 +r3dlight/akabox,r3dlight,CSS,true,false,false,2,true,true,false,false,59 +gerardomares/npolink,gerardomares,JavaScript,true,false,false,3,true,true,false,false,44 +vault25/pipboy,vault25,QML,true,false,false,1,true,false,false,false,20 +ECOM-Mycamping/mycamping,ECOM-Mycamping,Java,true,false,true,5,true,true,false,true,94 +olexandr.kucher/geekhub8,olexandr.kucher,Java,true,false,false,1,false,true,false,false,11 +NEKERAFA/Talkative,NEKERAFA,HTML,true,false,false,1,false,false,true,false,11 +cloudnet-interface/cloudnet-interface-extension,cloudnet-interface,Java,true,false,true,3,true,true,true,false,43 +mjaworski8/projecte-web-flautilla-hero,mjaworski8,CSS,true,false,false,1,false,false,true,false,11 +cahyanugraha12/ppw_e_kelompok2,cahyanugraha12,Python,true,true,false,2,false,true,true,false,40 +Khiyara/ppw-tp-10c,Khiyara,JavaScript,true,false,false,2,false,true,true,false,38 +anchore/gitlab-demo,anchore,JavaScript,true,false,false,3,true,false,false,true,81 +xiayesuifeng/goblog,xiayesuifeng,Go,true,false,false,2,true,true,false,false,26 +inivation/libcaer,inivation,C,true,false,false,3,true,true,true,false,257 +joshlambert/minimal-ruby-app,joshlambert,Ruby,true,false,false,13,true,true,false,true,898 +mobicoop/mobicoop,mobicoop,PHP,true,false,false,5,false,false,true,false,289 +samlachance/job-board,samlachance,Elixir,true,false,false,1,false,true,false,false,21 +domatskiy/laravel-html-cache,domatskiy,PHP,true,false,false,1,false,true,false,false,41 +crespum/polaris,crespum,JupyterNotebook,true,false,false,4,true,true,true,false,52 +gioxa/odagrun/odagrun,gioxa,C,true,false,false,9,true,false,false,true,520 +Songoda/EpicHeads,Songoda,Java,false,false,true,0,false,false,false,false,1 +Songoda/EpicAnchors,Songoda,Java,false,false,true,0,false,false,false,false,1 +Songoda/EpicHoppers,Songoda,Java,false,false,true,0,false,false,false,false,1 +Songoda/UltimateRepairing,Songoda,Java,false,false,true,0,false,false,false,false,1 +Songoda/EpicVouchers,Songoda,Java,false,false,true,0,false,false,false,false,1 +python-actorio/actorio,python-actorio,Python,true,false,false,3,true,true,false,true,68 +FedericoBottoni/pss-assignment1,FedericoBottoni,JavaScript,true,false,false,2,false,true,false,true,41 +zaber-core-libs/core-python,zaber-core-libs,Python,true,false,false,2,false,true,true,false,134 +eschnell/ft_hexdump,eschnell,C,true,false,false,2,true,true,false,false,26 +pymedphys/pymedphys,pymedphys,Python,true,false,false,1,false,false,false,false,23 +training-microservices-2018-03/config-service,training-microservices-2018-03,Java,true,false,true,2,true,false,true,false,27 +intangiblerealities/narupaXR,intangiblerealities,C#,true,false,false,1,false,true,false,false,15 +MindustryModders/mindustry-documentation,MindustryModders,,true,false,false,1,false,true,false,false,17 +Songoda/epicbuckets,Songoda,Java,true,false,true,1,true,false,false,false,21 +raeq/pciq,raeq,Python,true,true,false,1,false,true,false,false,50 +Songoda/EpicBosses,Songoda,Java,false,false,true,0,false,false,false,false,1 +LineageOS/builder/android,LineageOS,Python,true,true,false,2,true,false,false,false,63 +jdip/jdip,jdip,Java,true,false,false,3,true,true,false,false,64 +tomkukral/keyforce,tomkukral,Go,true,false,false,3,false,true,false,true,75 +ubports/app-dev/calculator-app,ubports,QML,true,false,false,1,false,true,false,false,22 +dadana/woffelskrach,dadana,CSS,true,false,false,2,false,true,true,false,28 +srwalker101/rust-jupyter-client,srwalker101,Rust,true,false,false,2,false,true,false,false,72 +collaba-tube/frontend,collaba-tube,Vue,true,false,false,3,true,true,true,false,58 +pierrenn/gobitmex,pierrenn,Go,true,false,false,1,false,true,false,false,13 +Slyso/AdventureGame,Slyso,Java,true,false,true,1,false,true,false,false,8 +Songoda/ultimatetimber,Songoda,Java,false,false,true,0,false,false,false,false,1 +NateDogg1232/passgen-rs,NateDogg1232,Rust,true,false,false,1,false,true,false,false,24 +PierreNicol/rss-feed,PierreNicol,Java,true,false,false,2,true,false,false,false,18 +Songoda/UltimateStacker,Songoda,Java,false,false,true,0,false,false,false,false,1 +collaba-tube/api-docker-nginx-dev,collaba-tube,,true,false,false,2,true,true,false,false,31 +collaba-tube/api-docker-php-dev,collaba-tube,,true,false,false,2,true,true,false,false,31 +cc-wdesign/django-project-boilerplate,cc-wdesign,Python,true,false,false,1,false,true,false,false,37 +sat-mtl/telepresence/node-switcher,sat-mtl,C++,true,false,false,3,false,true,true,false,53 +backstage-technical-services/laravel-site,backstage-technical-services,PHP,true,false,false,3,false,true,true,false,126 +unimatrix-one/zero,unimatrix-one,C#,true,false,false,1,true,false,false,false,21 +alienscience/mailin,alienscience,HTML,true,false,false,3,true,false,true,true,54 +SemkaProd1/task-manager-nc,SemkaProd1,Java,true,false,true,1,false,true,false,false,14 +robin.roschlau/advent-of-code-solver,robin.roschlau,Kotlin,true,false,false,2,true,true,false,false,29 +Boluge/polytechfindroom,Boluge,Go,true,false,false,2,true,true,false,false,30 +kaszaq/jiratomkdocs,kaszaq,Java,true,false,true,2,true,false,true,false,31 +hkex/pyr2,hkex,JupyterNotebook,true,false,false,1,false,true,false,false,29 +BVollmerhaus/blurwal,BVollmerhaus,Python,true,false,false,3,true,true,false,true,70 +elad.noor/equilibrator-cache,elad.noor,Python,true,false,false,2,false,true,true,false,33 +fdroid/planet,fdroid,Python,true,false,false,1,false,false,true,false,29 +ccrpc/lrtp2045,ccrpc,Batchfile,true,false,false,1,false,true,false,false,17 +jckimble/dockerssh,jckimble,Vue,true,false,false,3,true,true,false,true,61 +collaba-tube/api,collaba-tube,TypeScript,true,false,false,3,true,true,true,false,51 +juliendubreuil/gitlab-ci-example-drupal,juliendubreuil,PHP,true,false,false,2,true,false,true,false,88 +diamondburned/noschat,diamondburned,Go,true,false,false,1,true,false,false,false,25 +admicos/task-studio,admicos,Vue,true,false,false,1,false,false,true,false,15 +XBagon/term_stone,XBagon,Rust,true,false,false,1,false,true,false,false,6 +daksh7011/nemean,daksh7011,CSS,true,false,false,1,false,false,true,false,9 +mattmatters/opencv-wasm,mattmatters,JavaScript,true,false,false,4,true,true,true,true,98 +sorenmat/gosmtpd,sorenmat,Go,true,false,false,3,true,true,true,false,40 +recalbox/ops/recaleur,recalbox,Go,true,false,false,2,true,false,true,false,54 +MrWildcard/a-nice-app,MrWildcard,JavaScript,true,false,false,3,true,true,true,false,70 +Antmounds/Antennae,Antmounds,JavaScript,true,false,false,4,true,true,true,false,215 +tottokotkd/benicky,tottokotkd,Ruby,true,false,false,3,true,true,true,false,74 +rubickcz/chat,rubickcz,Python,true,false,false,3,true,true,true,false,79 +allamand/example-voting-app,allamand,JavaScript,true,false,false,4,true,true,true,false,110 +materials-modeling/dynasor,materials-modeling,Python,true,false,false,3,true,true,true,false,58 +rubdos/cffipp,rubdos,Python,true,true,false,3,true,true,true,false,26 +saasdm/saasdm-phoenix,saasdm,JavaScript,true,false,false,2,true,false,true,false,30 +YottaDB/Lang/YDBGo,YottaDB,Go,true,false,false,3,true,true,true,false,141 +flaxandteal/phpbelfast-demo,flaxandteal,PHP,true,false,false,4,true,true,true,true,78 +one-more/acropole,one-more,Go,true,false,false,4,true,true,true,true,73 +custom_components/hadockermon,custom_components,Python,true,false,false,2,true,false,true,false,9 +mtnygard/m2m.solingen,mtnygard,Ruby,true,false,false,3,true,false,true,false,58 +matthieu-bruneaux/guide-r-rstudio-git-gitlab,matthieu-bruneaux,Python,true,false,false,2,true,false,true,false,28 +jitesoft/open-source/javascript/cookie-consent,jitesoft,JavaScript,true,false,false,1,false,true,false,false,12 +griest/pixi-actor,griest,JavaScript,true,false,false,3,true,true,true,false,71 +griest/vue-component-proxy,griest,JavaScript,true,false,false,3,true,true,true,false,53 +custom_components/ruter,custom_components,Python,true,false,false,2,true,false,true,false,9 +custom_components/launchlibrary,custom_components,Python,true,false,false,2,true,false,true,false,9 +b0/matrix-nsfw,b0,Go,true,false,false,2,true,false,true,false,33 +custom_components/weatheralerts,custom_components,Python,true,false,false,2,true,false,true,false,9 +collaba-tube/old-api,collaba-tube,PHP,true,false,false,3,true,true,true,false,50 +saycle.xyz/saycle.web,saycle.xyz,JavaScript,true,false,false,3,true,true,true,false,39 +esyt63/Gitlab_CI_ReactJs,esyt63,JavaScript,true,false,false,5,true,true,true,true,119 +gitlab-org/gitter/sidecar,gitlab-org,JavaScript,true,false,false,3,true,true,true,false,71 +LineageOS/infra/updater,LineageOS,Python,true,true,false,2,true,true,false,false,69 +dimakow/myFirstGoAppOnSCP,dimakow,Go,true,false,false,3,true,true,true,false,36 +MaxIV/webjive,MaxIV,JavaScript,true,false,false,2,true,false,true,false,25 +gitlab-org/gitlab-insights,gitlab-org,Ruby,true,false,false,4,true,true,true,false,291 +cloudigrade/cloudigrade,cloudigrade,Python,true,false,false,5,true,true,true,true,541 +gitlab-org/gitlab-grit,gitlab-org,Ruby,true,false,false,1,false,true,false,false,10 +shared-puppet-modules-group/backupninja,shared-puppet-modules-group,Puppet,true,false,false,2,false,true,true,false,34 +shared-puppet-modules-group/common,shared-puppet-modules-group,Ruby,true,false,false,1,false,true,false,false,47 +latexpand/latexpand,latexpand,Perl,true,false,false,1,false,true,false,false,18 +Boojum/python-securepay,Boojum,Python,true,false,false,1,false,true,false,false,6 +accounts-sso/gsignond,accounts-sso,C,true,false,false,3,true,true,true,false,57 +carmenbianca/pyparadox,carmenbianca,Python,true,true,false,1,false,true,false,false,17 +bor-sh-infrastructure/libsaas_gitlab,bor-sh-infrastructure,Python,true,false,false,2,false,true,true,false,38 +jas/libidn2,jas,C,true,false,false,1,false,true,false,false,70 +tmatth/polygnome,tmatth,C++,true,false,false,1,true,false,false,false,29 +libnice/libnice,libnice,C,true,false,false,3,true,true,true,false,248 +ayufan/ruby-getting-started,ayufan,Ruby,true,false,false,1,false,true,false,false,19 +s4m-chef-repositories/gitlab-ci-runner,s4m-chef-repositories,Ruby,true,false,false,1,false,true,false,false,35 +tgc-dk/pysword,tgc-dk,Python,true,false,false,1,false,true,false,false,22 +localg-host/watchghost,localg-host,JavaScript,true,false,false,4,false,true,false,false,44 +agilob/BadCellDetector,agilob,Java,true,false,false,2,true,true,false,false,40 +smc/fonts/manjari,smc,Makefile,true,false,false,3,true,true,false,true,49 +breadmaker/universal-html5-audio,breadmaker,JavaScript,true,false,false,1,false,true,false,false,10 +sue445/gitlab_awesome_release,sue445,Ruby,true,false,false,2,false,true,true,false,92 +jangorecki/data.cube,jangorecki,R,true,false,false,4,true,true,false,false,189 +dpizetta/mrsprint,dpizetta,Python,true,false,false,7,true,true,false,true,408 +ackwell/attunement,ackwell,Lua,true,false,false,1,false,true,false,false,22 +gitlab-org/allocations,gitlab-org,C,true,false,false,1,false,true,false,false,12 +robigalia/hello-world,robigalia,Rust,true,false,false,1,false,true,false,false,28 +robigalia/meta,robigalia,HTML,true,false,false,1,false,true,false,false,33 +gitlab-examples/gitlab-examples.gitlab.io,gitlab-examples,CSS,true,false,false,1,false,false,true,false,12 +chillcoding-at-the-beach/chillcoding-at-the-beach.gitlab.io,chillcoding-at-the-beach,JavaScript,true,false,false,4,true,true,false,true,82 +xphnx/icon-request-tool,xphnx,Java,true,false,false,2,true,true,false,false,41 +MagmaTV/magmatv,MagmaTV,Shell,true,false,false,1,false,true,false,false,8 +twittner/redis-io,twittner,Haskell,true,false,false,1,false,true,false,false,36 +AdvProg2016/weekly-exercises,AdvProg2016,Python,true,false,false,1,false,true,false,false,55 +dogtail/dogtail,dogtail,Python,true,false,false,2,false,false,false,false,23 +Zatherz/scaleinator,Zatherz,Lua,true,false,false,1,false,false,true,false,10 +html-themes/genius,html-themes,HTML,true,false,false,1,false,false,true,false,11 +european-data-portal/MetadataTransformerService,european-data-portal,Java,true,false,true,2,true,false,true,false,33 +ascendingcreations/Xeris.Source,ascendingcreations,C#,true,false,false,1,true,false,false,false,16 +pages/lektor,pages,HTML,true,false,false,1,false,true,false,false,11 +passit/passit-marketing,passit,CSS,true,false,false,2,false,true,true,false,27 +epixelgame/epixel,epixelgame,C,true,false,false,1,true,false,false,false,23 +twittner/cbor-codec,twittner,Rust,true,false,false,3,false,true,true,false,28 +neucrypt/anonize2,neucrypt,C++,true,false,false,1,true,false,false,false,18 +pushrocks/gulp-function,pushrocks,TypeScript,true,false,false,4,false,true,false,true,126 +LaiCare/laicare,LaiCare,Java,true,false,false,1,false,true,false,false,19 +stackshuttle/blogie,stackshuttle,Elixir,true,false,false,1,false,true,false,false,23 +stavros/esp-boilerplate,stavros,C++,true,false,false,1,false,true,false,false,11 +sflcin/internetshutdowns,sflcin,HTML,true,false,false,1,false,false,true,false,11 +ablu/bachelorthesis,ablu,TeX,true,false,false,1,false,true,false,false,10 +slashdeploy/docker-ruby-boilerplate,slashdeploy,Ruby,true,false,false,1,false,true,false,false,12 +mbukatov/pylatest,mbukatov,Python,true,false,false,1,false,true,false,false,33 +imp/cargo-info,imp,Rust,true,false,false,2,false,true,true,false,42 +CIAvash/App-Football,CIAvash,Perl6,true,false,false,1,false,true,false,false,11 +markpundsack/docker-example,markpundsack,HTML,true,false,false,3,true,true,false,true,121 +t.clastres/remod-racing,t.clastres,C,true,false,false,1,false,true,false,false,23 +maidsafe/maidsafe.gitlab.io,maidsafe,HTML,true,false,false,1,false,false,true,false,12 +nieper/rapid-scheme,nieper,Scheme,true,false,false,1,false,true,false,false,16 +alti2d/server_patches,alti2d,Java,true,false,false,2,true,false,false,true,38 +multiphenics/multiphenics,multiphenics,Python,true,false,false,4,true,true,false,true,133 +thelabnyc/django-logpipe,thelabnyc,Python,true,true,false,1,false,true,false,false,50 +gitlab-org/end-user-training-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false,30 +samcns/uzu,samcns,Perl6,true,false,false,1,false,true,false,false,12 +stavros/espota-server,stavros,Rust,true,false,false,1,true,false,false,false,12 +ArmaOnUnix/armaonunix.gitlab.io,ArmaOnUnix,HTML,true,false,false,1,false,false,true,false,11 +JaMeZ-B/LaTeX-WWU,JaMeZ-B,TeX,true,false,false,1,true,false,false,false,107 +fitters/xfitter,fitters,Fortran,true,false,false,2,false,false,false,false,33 +gitlab-examples/velociraptor,gitlab-examples,HTML,true,false,false,3,true,true,false,true,109 +saomc/saoui-1.10.2,saomc,HTML,true,false,false,1,false,true,false,false,27 +foodsharing-dev/images,foodsharing-dev,Shell,true,false,false,1,false,true,false,false,13 +Rich-Harris/pathologist,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false,12 +skyzohkey/PwassonEngine,skyzohkey,JavaScript,true,false,false,1,false,true,false,false,13 +janispritzkau/node-rcon-client,janispritzkau,TypeScript,true,false,false,1,false,true,false,false,9 +sofreeus/sfs-method,sofreeus,HTML,true,false,false,1,false,true,false,false,6 +mikefromit/sir-bot-a-lot,mikefromit,Python,true,true,false,2,true,true,false,false,26 +imp/rustdocker,imp,Shell,true,false,false,6,true,true,false,false,107 +digested/node-digest,digested,JavaScript,true,false,false,5,true,true,true,true,528 +creato/pub-sub,creato,Rust,true,false,false,1,false,true,false,false,20 +noosfero-themes/angular-theme,noosfero-themes,TypeScript,true,false,false,2,true,true,false,false,45 +bitfireAT/cert4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false,29 +e62Lab/e62numcodes,e62Lab,Mathematica,true,false,false,1,false,true,false,false,44 +buildfunthings/trivia,buildfunthings,Clojure,true,false,false,1,false,true,false,false,25 +anden3/Craftmine,anden3,C++,true,false,false,1,false,true,false,false,67 +HerculesWS/Hercules,HerculesWS,C,true,false,false,6,false,true,false,false,1232 +gitlab-cookbooks/gitlab-prometheus,gitlab-cookbooks,Ruby,true,false,false,3,false,true,false,true,43 +gitlab-cookbooks/gitlab-haproxy,gitlab-cookbooks,HTML,true,false,false,2,false,false,false,true,60 +weburger/angular-material-weburger,weburger,JavaScript,true,false,false,1,false,true,false,false,18 +poopsquare/rockbooks,poopsquare,Elixir,true,false,false,1,false,true,false,false,17 +tractatus/tractatus.gitlab.io,tractatus,JavaScript,true,false,false,1,false,true,false,false,11 +osas/community-cage-infra-ansible,osas,Python,true,false,false,1,false,true,false,false,37 +resume/resume.gitlab.io,resume,JavaScript,true,false,false,1,false,false,true,false,31 +open_nsfw/open_nsfw.gitlab.io,open_nsfw,HTML,true,false,false,1,false,true,false,false,10 +barrel-db/match_trie,barrel-db,Erlang,true,false,false,1,false,true,false,false,6 +packaging/nextcloud-client,packaging,Shell,true,false,false,3,false,false,false,false,51 +FraME-projects/PyFraME,FraME-projects,Python,true,true,false,3,false,true,false,false,60 +morph027/x2go-mate-docker,morph027,Shell,true,false,false,2,false,true,false,false,24 +BackStopThemes/ThemeCoreV2,BackStopThemes,CSS,false,false,false,0,false,false,false,false,1 +staywoke/catalyst,staywoke,Ruby,true,false,false,1,false,false,true,false,39 +lsilvest/ztsdb,lsilvest,C++,true,false,false,1,true,false,false,false,31 +UnderWaterRugbyHorn/underwaterrugbyhorn,UnderWaterRugbyHorn,JavaScript,true,false,false,1,false,true,false,false,15 +ArjunShankar/angular2-template-project,ArjunShankar,TypeScript,true,false,false,1,true,false,false,false,16 +sat-metalab/shmdata,sat-metalab,C++,true,false,false,5,false,true,true,false,84 +gitlab-cog/gitlab-admin,gitlab-cog,Ruby,true,false,false,2,false,true,true,false,55 +gitlab-examples/openshift-deploy,gitlab-examples,Shell,true,false,false,1,false,false,true,false,24 +mehranrasulian/laravel-sample,mehranrasulian,PHP,true,false,false,2,false,true,true,false,40 +axet/android-sms-gate,axet,JavaScript,true,false,false,1,false,false,true,false,10 +forrestab/dotnet-gitlab-ci,forrestab,C#,true,false,false,2,true,true,false,false,27 +mvgames/ataque_zombie,mvgames,C,true,false,false,2,true,true,false,false,67 +zefiris/tenhou-client,zefiris,JavaScript,true,false,false,1,false,true,false,false,7 +finding-ray/antikythera,finding-ray,Python,true,true,false,4,false,true,true,false,192 +tvaughan/docker-flask-starterkit,tvaughan,Python,true,false,false,3,false,true,false,false,57 +jlack/rdl,jlack,C++,true,false,false,3,false,true,false,false,105 +fatihacet/fatihacet.gitlab.io,fatihacet,CSS,true,false,false,1,false,true,false,false,17 +oly-exams/exam_tools,oly-exams,Python,true,true,false,2,true,false,false,true,43 +partylab/queue-dj,partylab,Vue,true,false,false,2,false,true,false,false,25 +yiisoft/yii2,yiisoft,PHP,true,false,false,2,false,true,false,false,113 +ContinuousEvolution/continuous-evolution,ContinuousEvolution,Go,true,false,false,5,true,true,false,false,163 +CSUI-AdvProg-2017/lab-exercises,CSUI-AdvProg-2017,Python,true,true,false,2,true,true,false,false,268 +mechaxl/dds-rs,mechaxl,Rust,true,false,false,1,false,true,false,false,49 +tahahawa/discord-markov-bot,tahahawa,Rust,true,false,false,2,true,false,false,false,73 +julrich/QtPromise,julrich,C++,true,false,false,3,true,true,true,false,89 +picter/labeljack,picter,TypeScript,true,false,false,1,false,true,false,false,23 +jasonmm/baseball-stats-db,jasonmm,PLpgSQL,true,false,false,1,false,true,false,false,26 +PPL2017csui/PPLA4,PPL2017csui,JavaScript,true,false,false,2,false,true,true,false,48 +PPL2017csui/PPLD1,PPL2017csui,Ruby,true,false,false,1,false,true,false,false,80 +PPL2017csui/PPLB2,PPL2017csui,Java,true,false,false,3,true,true,false,false,77 +to1ne/org-gitlab,to1ne,EmacsLisp,true,false,false,1,false,true,false,false,13 +PPL2017csui/PPLC3,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false,43 +PPL2017csui/PPLB1,PPL2017csui,JavaScript,true,false,false,1,false,true,false,false,34 +winniehell/file-name-linter,winniehell,JavaScript,true,false,false,2,false,true,false,false,33 +penkit/penkit,penkit,Ruby,true,false,false,2,true,true,false,false,13 +fatihacet/turkcekaynaklar-com,fatihacet,CSS,true,false,false,1,false,false,true,false,27 +eval/total_recall,eval,Ruby,true,false,false,1,false,true,false,false,21 +checkmein2/checkmein2-ui,checkmein2,JavaScript,true,false,false,1,false,false,false,false,16 +noppo/ember-quill,noppo,JavaScript,true,false,false,1,false,true,false,false,10 +haway-test/gitlab-class,haway-test,HTML,true,false,false,3,true,true,true,false,44 +anarcat/ecdysis,anarcat,Python,true,false,false,1,false,true,false,false,32 +kataik/EnvironmentTracker,kataik,C#,true,false,false,5,true,true,false,true,70 +GitLabRGI/nsg/gpep,GitLabRGI,JavaScript,true,false,false,4,false,false,false,false,80 +dotnetthoughts/MVCApp,dotnetthoughts,C#,true,false,false,1,false,true,false,false,10 +oer/OS,oer,TeX,true,false,false,1,false,false,true,false,18 +keerthik/dicestorm,keerthik,JavaScript,true,false,false,1,false,true,false,false,30 +grabl/grabl,grabl,Groovy,true,false,false,3,true,true,true,false,61 +altifalante/altifalante,altifalante,JavaScript,true,false,false,1,false,true,false,false,11 +metasyntactical/composer-plugin-license-check,metasyntactical,PHP,true,false,false,1,false,true,false,false,24 +c-sky/buildroot,c-sky,Makefile,true,false,false,7,true,true,false,false,541 +mondwan/py-use_mock,mondwan,Python,true,true,false,2,false,true,true,false,49 +atorresm/NASAImages,atorresm,Java,true,false,false,1,true,false,false,false,42 +documentarian/documentarian,documentarian,PowerShell,true,false,false,3,true,true,true,false,62 +inkscape/inkscape-ci-docker,inkscape,,true,false,false,1,true,false,false,false,12 +lolPants/stream-role-bot,lolPants,JavaScript,true,false,false,3,true,true,false,true,37 +recalbox/ops/nodebb,recalbox,Shell,true,false,false,1,true,false,false,false,29 +gitlab-cookbooks/gitlab_openvpn,gitlab-cookbooks,HTML,true,false,false,2,false,true,false,true,28 +sat-metalab/SATIE,sat-metalab,SuperCollider,true,false,false,1,false,true,false,false,14 +aaronkho/GPR1D,aaronkho,Python,true,false,false,1,false,true,false,false,71 +paveltizek/gitlab-api,paveltizek,PHP,true,false,false,3,false,true,true,true,33 +Orange-OpenSource/gitlab-buildpkg-tools,Orange-OpenSource,Shell,true,false,false,6,true,true,true,true,262 +SEMERU-Code-Public/Android/Mutation/MDroidPlus,SEMERU-Code-Public,Java,true,false,true,2,true,true,false,false,27 +mdymel/aspdocker,mdymel,C#,true,false,false,1,true,false,false,false,16 +gitlab-com/gitlab-dns,gitlab-com,,true,false,false,2,false,false,true,false,31 +chusiang/coscup2017-cd-demo,chusiang,HTML,true,false,false,4,true,true,true,true,68 +gitlab-org/gitter/gitter-markdown-processor,gitlab-org,JavaScript,true,false,false,2,true,true,false,false,38 +hectorm/hblock,hectorm,Shell,true,false,false,5,true,true,true,false,174 +samthursfield/tagcloud,samthursfield,Python,true,false,false,1,false,true,false,false,54 +hathi-social/hathi-server,hathi-social,Go,true,false,false,1,true,false,false,false,13 +qaclana/qaclana,qaclana,Go,true,false,false,3,true,false,false,true,72 +librespacefoundation/satnogs/satnogs-db,librespacefoundation,Python,true,true,false,8,true,true,true,false,216 +Dolori/Dolori,Dolori,C++,true,false,false,1,true,false,false,false,21 +nuntius35/wps,nuntius35,Java,true,false,false,1,true,false,false,false,33 +skosh/falcon-helpers,skosh,Python,true,false,false,1,false,true,false,false,14 +opensourcediversity/opensourcediversity.org,opensourcediversity,HTML,true,false,false,1,false,false,true,false,13 +dalton/lsdalton,dalton,Fortran,true,false,false,1,false,true,false,false,149 +camillebucatcat/bulma-templates,camillebucatcat,CSS,true,false,false,1,false,false,true,false,11 +seancl/screeps-autobahn,seancl,JavaScript,true,false,false,1,false,true,false,false,14 +gitlab-org/gitlab-ci-multi-runner-backup,gitlab-org,Go,true,false,false,6,true,true,false,true,271 +CSUI-ITProject-2017/KI2/Codebase,CSUI-ITProject-2017,Ruby,true,false,false,2,false,true,true,false,42 +yunity/ukuvota-quasar,yunity,Vue,true,false,false,5,true,true,false,true,78 +eigan/changelog,eigan,PHP,true,false,false,1,false,true,false,false,28 +aterlamia/ci-wallboard,aterlamia,TypeScript,true,false,false,1,false,false,true,false,25 +gitlab-org/gitlab-styles,gitlab-org,Ruby,true,false,false,1,false,true,false,false,13 +librespacefoundation/satnogs/gr-satnogs,librespacefoundation,C++,true,false,false,4,true,true,true,false,138 +rgaiacs/blogdown-gitlab,rgaiacs,HTML,true,false,false,1,false,true,false,false,16 +gxworks/Dib2Qm,gxworks,Java,true,false,false,1,false,true,false,false,25 +almarklein/bsdf,almarklein,Python,true,false,false,2,false,true,true,false,180 +fpdpy/fpd,fpdpy,Python,true,false,false,2,false,true,true,false,113 +spider-network/mindex,spider-network,Ruby,true,false,false,2,false,true,false,true,44 +energievalsabbia/aurorapy,energievalsabbia,Python,true,false,false,1,false,true,false,false,31 +ModernisingMedicalMicrobiology/CRuMPIT,ModernisingMedicalMicrobiology,Python,true,true,false,1,false,true,false,false,11 +manuelteillet/pict-tools,manuelteillet,Python,true,false,false,1,false,true,false,false,19 +ra_kete/android-sparse-rs,ra_kete,Rust,true,false,false,1,false,true,false,false,15 +kobvel/ng-gitlab-firebase,kobvel,TypeScript,true,false,false,2,false,true,true,false,33 +asu-capstone-team-6/ar-navigator,asu-capstone-team-6,Java,true,false,false,3,true,false,true,false,57 +gfelbing/annotate,gfelbing,TypeScript,true,false,false,2,true,false,true,false,39 +deltares/imod-python,deltares,Python,true,false,false,1,false,true,false,false,39 +SUSE-UIUX/eos-icons,SUSE-UIUX,HTML,true,false,false,2,false,true,false,true,24 +intr0/DomainVoider,intr0,HTML,true,false,false,1,false,false,true,false,11 +web3-sh/devkit,web3-sh,JavaScript,true,false,false,2,false,true,false,false,34 +inkscape/inkscape-docs/documentation,inkscape,HTML,true,false,false,2,true,false,true,false,103 +eclufsc/ophidian,eclufsc,C++,true,false,false,1,true,false,false,false,160 +TeamSPD/Chirp,TeamSPD,CSS,true,false,false,1,false,true,false,false,58 +gitlab-com/environments,gitlab-com,HCL,true,false,false,8,false,true,false,false,343 +frontendne/devs-against-humanity,frontendne,JavaScript,true,false,false,2,false,true,true,false,28 +clitellum/clitellum,clitellum,Python,true,false,false,1,false,true,false,false,9 +kubouch/ci-test,kubouch,,true,false,false,4,false,true,false,false,93 +NERSC/nersc.gitlab.io,NERSC,CSS,true,false,false,4,true,true,true,false,95 +gitlab-org/prometheus-storage-migrator,gitlab-org,Go,true,false,false,2,true,true,false,false,22 +smallstack/infrastructure/gitlab-runner-cli,smallstack,TypeScript,true,false,false,1,false,true,false,false,8 +inorton/junit2html,inorton,Python,true,false,false,1,false,true,false,false,27 +socrates-conference/socrates-server,socrates-conference,JavaScript,true,false,false,7,true,true,false,true,222 +Eusebius1920/ember-cli-build-variants,Eusebius1920,JavaScript,true,false,false,2,false,true,true,false,28 +vise890/scribe,vise890,Clojure,true,false,false,2,false,true,true,false,24 +RobertCzinege/freebie-api-server,RobertCzinege,JavaScript,true,false,false,1,true,false,false,false,25 +nd-cse-20289-sp18/cse-20289-sp18-assignments,nd-cse-20289-sp18,Shell,true,false,false,1,false,true,false,false,4 +flectra-hq/docker,flectra-hq,Shell,true,false,false,1,true,false,false,false,24 +jbrassard/revolvairapi,jbrassard,PHP,true,false,false,1,false,true,false,false,13 +gitlab-org/ci-cd/gcp-exporter,gitlab-org,Go,true,false,false,4,true,true,false,true,111 +williamyaoh/shrinkwraprs,williamyaoh,Rust,true,false,false,2,true,true,false,false,25 +tessia-project/tessia-baselib,tessia-project,Python,true,true,false,3,true,false,false,false,39 +linux-wiiu/linux-loader,linux-wiiu,C,true,false,false,1,true,false,false,false,13 +linux-wiiu/debian-wiiu-repo,linux-wiiu,HTML,true,false,false,2,true,false,true,false,25 +semantic-jail/php-ivoox-api-client,semantic-jail,PHP,true,false,false,2,false,false,false,false,42 +thorgate-public/django-project-template,thorgate-public,Python,true,false,false,1,false,true,false,false,56 +PPL2018csui/Kelas-D/PPL2018-D7,PPL2018csui,Java,true,false,false,5,true,false,true,false,117 +meltano/meltano-elt,meltano,Shell,true,false,false,2,true,false,false,false,39 +srwk/gitlab-handbook-kr,srwk,HTML,true,false,false,1,false,true,false,false,20 +FiniteReality/Finite.Commands,FiniteReality,C#,true,false,false,3,true,true,false,true,40 +orbtk/orbtk,orbtk,Rust,true,false,false,1,false,true,false,false,36 +Olympus_Labs/olympus-protocol,Olympus_Labs,JavaScript,true,false,false,4,true,true,true,false,69 +mexus/futures-retry,mexus,Rust,true,false,false,1,false,true,false,false,27 +coala/mobans,coala,Python,true,false,false,1,false,true,false,false,84 +libssh/libssh-mirror,libssh,C,true,false,false,1,false,true,false,false,429 +twitch4j/twitch4j,twitch4j,Java,true,false,false,5,true,true,false,false,90 +costrouc/pysrim,costrouc,Python,true,false,false,2,false,true,true,false,77 +ToxiClaw/LatexTemplate,ToxiClaw,TeX,true,false,false,1,false,true,false,false,21 +nutanix/xray-scenarios,nutanix,,true,false,false,1,true,false,false,false,11 +zhukovgreen/pozemky,zhukovgreen,Python,true,false,false,2,true,true,false,false,28 +alantrick/django-vox,alantrick,Python,true,false,false,2,false,true,true,false,31 +asyncjdbc/asyncjdbc,asyncjdbc,Java,true,false,false,3,true,true,true,false,40 +pgjones/quart-cors,pgjones,Python,true,false,false,1,false,true,false,false,11 +goodvibes/goodvibes,goodvibes,C,true,false,false,1,true,false,false,false,44 +atomsandbits/atomsandbits,atomsandbits,JavaScript,true,false,false,2,false,true,true,false,67 +kurant-open/m3d,kurant-open,Python,true,false,false,1,false,true,false,false,10 +GNULand/ubuntu-for-newcomers,GNULand,CSS,true,false,false,1,false,true,false,false,21 +Flockademic/plaudit,Flockademic,TypeScript,true,false,false,6,false,true,true,false,353 +sj14/gosh,sj14,Go,true,false,false,2,true,true,false,false,35 +python-devs/importlib_metadata,python-devs,Python,true,false,false,3,false,true,true,false,50 +kornelski/cloudflare-zlib-sys,kornelski,Rust,true,false,false,1,false,true,false,false,7 +serebit/diskord,serebit,Kotlin,true,false,false,3,true,true,true,false,79 +BrianAllred/NYoutubeDL,BrianAllred,C#,true,false,false,2,true,true,false,false,25 +more-cores/laravel-restcord,more-cores,PHP,true,false,false,1,false,true,false,false,28 +EMC-Framework/EMC,EMC-Framework,Java,true,false,false,1,false,true,false,false,6 +bitseater/meteo,bitseater,Vala,true,false,false,2,true,false,false,false,93 +Salamek/gitlab-tools,Salamek,Python,true,true,false,4,false,true,true,false,125 +barbalet/nobleape,barbalet,C,true,false,false,2,true,true,false,false,28 +georg.mittendorfer/piri,georg.mittendorfer,Java,true,false,true,1,false,true,false,false,21 +duncan-bayne/heroku-buildpack-common-lisp,duncan-bayne,Shell,true,false,false,1,false,true,false,false,7 +rilian-la-te/musl-locales,rilian-la-te,C,true,false,false,1,true,false,false,false,26 +videlec/pplpy,videlec,Python,true,true,false,1,false,true,false,false,40 +victorlapin/flasher,victorlapin,Kotlin,true,false,false,1,true,false,false,false,36 +elad.noor/equilibrator,elad.noor,HTML,true,false,false,1,false,true,false,false,12 +deltarena/hsgs-hackathon-18,deltarena,JavaScript,true,false,false,1,false,false,true,false,8 +JuliaGPU/LLVM.jl,JuliaGPU,Julia,true,false,false,1,false,true,false,false,55 +qeef/mapathoner,qeef,Java,true,false,false,3,true,true,true,false,67 +eidheim/react-simplified,eidheim,JavaScript,true,false,false,1,false,true,false,false,21 +vala-panel-project/vala-panel,vala-panel-project,C,true,false,false,2,true,false,false,true,49 +OsloMet-ABI/nikita-noark5-core,OsloMet-ABI,Java,true,false,true,3,true,true,false,false,99 +pingus/pingus,pingus,C++,true,false,false,1,true,false,false,false,105 +hesperos/napi,hesperos,Shell,true,false,false,3,true,true,true,false,49 +toby3d/mypackbot,toby3d,Go,true,false,false,2,true,true,false,false,47 +stinovlas/django-dkim,stinovlas,Python,true,false,false,3,false,true,false,false,52 +jenx/import-batteries-talk,jenx,JavaScript,true,false,false,1,false,false,true,false,13 +jtaimisto/bluewalker,jtaimisto,Go,true,false,false,2,true,true,false,false,17 +ydkn/capistrano-git-copy,ydkn,Ruby,true,false,false,3,true,false,false,false,41 +ourmarkas/gutenberg,ourmarkas,CSS,true,false,false,1,false,false,true,false,23 +Shinobi-Systems/ShinobiDocker,Shinobi-Systems,Shell,true,false,false,1,true,false,false,false,24 +aurorafossorg/p/framework/core,aurorafossorg,C,true,false,false,4,true,true,false,true,210 +otherbenji/TexFactory,otherbenji,C#,true,false,false,1,false,false,true,false,14 +Tmpod/cyborgtoast,Tmpod,Python,true,true,false,1,false,false,false,false,42 +Noughmad/serde_any,Noughmad,Rust,true,false,false,1,false,true,false,false,22 +nul.one/rundoc,nul.one,Python,true,false,false,1,false,true,false,false,7 +jaymoulin/docker-google-music-uploader,jaymoulin,Makefile,true,false,false,1,true,false,false,false,20 +starbelly/soda,starbelly,Erlang,true,false,false,1,false,true,false,false,5 +Piou-piou/ruined-world-front,Piou-piou,,true,false,false,1,false,true,false,false,12 +ColoradoSchoolOfMines/visplay,ColoradoSchoolOfMines,C++,true,false,false,4,false,true,true,false,153 +absassi/asap,absassi,CMake,true,false,false,1,true,false,false,false,50 +MohamedBahmed/google-loaders-redesign,MohamedBahmed,CSS,true,false,false,1,false,false,true,false,13 +picos-api/picos,picos-api,Python,true,false,false,2,false,true,true,false,112 +uptimeventures/gotham-middleware-jwt,uptimeventures,Rust,true,false,false,1,false,true,false,false,17 +dosuken123/thin-gdk,dosuken123,Shell,true,false,false,2,false,true,false,false,91 +THUGuide/ThuGuide,THUGuide,HTML,true,false,false,1,false,true,false,false,19 +blacknet-ninja/blacknet-ninja.gitlab.io,blacknet-ninja,JavaScript,true,false,false,1,false,true,false,false,31 +johandurancerdas/gitlab-cicd-tutorial,johandurancerdas,JavaScript,true,false,false,2,false,true,true,false,45 +ukfast/docs.ukfast.co.uk,ukfast,Shell,true,false,false,2,true,false,true,false,31 +equinox-sdr/equinox,equinox-sdr,C++,true,false,false,2,true,true,false,false,58 +alienspaces/arena-tactics,alienspaces,Go,true,false,false,1,false,true,false,false,24 +gitlab-org/jupyterhub-user-image,gitlab-org,,true,false,false,1,true,false,false,false,25 +ohboi/silly,ohboi,D,true,false,false,1,false,true,false,false,8 +llhe/mobile-ai-bench,llhe,C++,true,false,false,3,false,false,false,false,51 +LucasLeandroBR/learncode,LucasLeandroBR,HTML,true,false,false,1,false,false,false,true,16 +m03geek/fastify-oas,m03geek,JavaScript,true,false,false,3,false,true,false,true,67 +itu-auv/robosub19-main,itu-auv,CMake,true,false,false,1,true,false,false,false,27 +intr0/iVOID.GitLab.io,intr0,HTML,true,false,false,1,false,false,true,false,11 +teslex/gspinners,teslex,Groovy,true,false,false,2,true,false,false,true,25 +inko-lang/ienv,inko-lang,Shell,true,false,false,1,false,true,false,false,8 +wheresvic/software-dawg,wheresvic,CSS,true,false,false,1,false,true,false,false,14 +MrCustomizer/palaver,MrCustomizer,Kotlin,true,false,false,4,true,false,false,true,73 +DomainVoider.GitLab.io/iVOID,DomainVoider.GitLab.io,HTML,true,false,false,1,false,false,true,false,11 +seanwasere/Seans-Angular6-Python-Flask-Boilerplate,seanwasere,TypeScript,true,false,false,1,false,true,false,false,30 +aar642/shadow-appimage,aar642,Perl,true,false,false,1,true,false,false,false,16 +codeearth/drawdown,codeearth,Python,false,true,false,0,false,false,false,false,1 +spirited/comet,spirited,C#,true,false,false,2,true,true,false,false,28 +Orange-OpenSource/lfn/onap/onap-tests,Orange-OpenSource,Python,true,true,false,5,false,true,false,true,144 +schoolmouv-open-source/vue-log-worker,schoolmouv-open-source,JavaScript,true,false,false,2,false,true,false,true,21 +pop-planet/maco,pop-planet,Rust,true,false,false,1,false,true,false,false,16 +n0r1sk/docker-volume-cephfs,n0r1sk,Go,true,false,false,1,true,false,false,false,47 +remram44/taguette,remram44,Python,true,false,false,1,false,true,false,false,59 +foodsharing-dev/foodsharing-android,foodsharing-dev,Kotlin,true,false,false,4,true,true,false,true,136 +intr0/AppleBlock,intr0,,true,false,false,1,false,false,true,false,12 +gitlab-org/sidekiq-reliable-fetch,gitlab-org,Ruby,true,false,false,1,false,true,false,false,69 +hallowatcher/chat4osu,hallowatcher,TypeScript,true,false,false,2,true,true,false,false,28 +lebiniou/lebiniou,lebiniou,C,true,false,false,3,true,true,true,false,197 +blendergeek/apps,blendergeek,Java,true,false,false,2,false,true,true,false,184 +m03geek/fastify-metrics,m03geek,TypeScript,true,false,false,3,false,true,false,true,63 +cnpsaintmartin/arpa-network,cnpsaintmartin,Vue,true,false,false,3,false,true,false,true,75 +matteodc/civicwise-network-map,matteodc,JavaScript,true,false,false,1,false,false,true,false,13 +eyeo/adblockplus/libadblockplus-android,eyeo,Java,true,false,false,5,true,true,false,true,132 +postmarketOS/build.postmarketos.org,postmarketOS,PHP,true,false,false,1,false,true,false,false,37 +prvInSpace/pinit,prvInSpace,Shell,true,false,false,1,false,true,false,false,37 +Songoda/UltimateKits,Songoda,Java,false,false,true,0,false,false,false,false,1 +lmcandrew/markdown-issue-viewer,lmcandrew,Ruby,true,false,false,1,false,true,false,false,9 +Songoda/EpicSpawners,Songoda,Java,false,false,true,0,false,false,false,false,1 +Songoda/EpicFurnaces,Songoda,Java,false,false,true,0,false,false,false,false,1 +hershaw/novamud,hershaw,Python,true,true,false,1,false,true,false,false,19 +efunb/read_input,efunb,Rust,true,false,false,5,false,true,false,true,113 +internetarchive/kre8,internetarchive,Shell,false,false,false,0,false,false,false,false,86 +codeshelter/codeshelter-web,codeshelter,Python,true,false,false,1,false,true,false,false,36 +JeSuisUnDesDeux/jesuisundesdeux,JeSuisUnDesDeux,Shell,true,false,false,1,false,false,true,false,13 +sgrignard/serpyco,sgrignard,Python,true,true,false,3,false,true,false,false,61 +RodrigoEndellan/algo3-tp2,RodrigoEndellan,Java,true,false,false,1,false,true,false,false,4 +aossie/aossie-blogs,aossie,CSS,true,false,false,2,false,true,true,false,30 +gitlab-org/gl-vue-cli,gitlab-org,JavaScript,true,false,false,1,false,true,false,false,15 +openpowerlifting/openlifter,openpowerlifting,JavaScript,true,false,false,2,false,true,true,false,44 +gitlab-org/merge-train,gitlab-org,Shell,true,false,false,3,true,true,false,false,71 +NickBusey/mashio,NickBusey,PHP,true,false,false,1,false,true,false,false,70 +devops-df/2016.brasilia.devopsdays.com.br,devops-df,JavaScript,true,false,false,1,false,true,false,false,90 +packet.ninja/cl-cicd,packet.ninja,Ruby,true,false,false,2,false,true,true,false,30 +mjcarson/Auto-Encode,mjcarson,JavaScript,true,false,false,2,false,false,true,false,142 +digitalLumberjack/microservice-royale,digitalLumberjack,Go,true,false,false,3,true,false,true,false,178 +deltares/rtc-tools-channel-flow,deltares,Python,true,false,false,2,true,false,true,false,33 +harbottle/wine32,harbottle,Ruby,true,false,false,10,false,false,true,false,290 +zedtux/rails-react-devise-bootstrap,zedtux,Ruby,true,false,false,3,true,true,true,false,121 +avolokitin/neverNote,avolokitin,Python,true,true,false,3,true,true,true,false,37 +yamalight/building-products-with-js,yamalight,JavaScript,true,false,false,4,true,true,true,true,82 +L0gIn/git-file-downloader,L0gIn,JavaScript,true,false,false,3,true,true,true,false,123 +gitlab-org/apilab,gitlab-org,JavaScript,true,false,false,3,true,true,true,false,69 +librespacefoundation/satnogs/satnogs-decoders,librespacefoundation,Python,true,false,false,6,true,true,true,false,84 +saycle.xyz/saycle.server,saycle.xyz,C#,true,false,false,3,true,true,true,false,40 +gvarandas/bsb-dev-festival-ci,gvarandas,JavaScript,true,false,false,4,true,true,true,false,49 +nutanix/curie,nutanix,Python,true,false,false,3,false,false,false,false,239 +trainline-eu/stand,trainline-eu,Ruby,true,false,false,2,true,false,true,false,28 +ci-cd-demos/symfony,ci-cd-demos,PHP,true,false,false,3,true,true,true,false,61 +totakoko/onetimesecret,totakoko,Go,true,false,false,4,true,true,true,false,131 +materials-modeling/icet,materials-modeling,Python,true,false,false,3,true,true,true,false,143 +psono/psono-client,psono,JavaScript,true,false,false,4,true,true,true,true,264 +gitlab-org/gitlab_emoji,gitlab-org,Ruby,true,false,false,1,false,true,false,false,15 +shared-puppet-modules-group/apt,shared-puppet-modules-group,Puppet,true,false,false,1,false,true,false,false,39 +dobrado/dobrado,dobrado,JavaScript,true,false,false,1,false,true,false,false,17 +warsaw/flufl.bounce,warsaw,Python,true,false,false,1,false,true,false,false,21 +rpdev/opentodolist,rpdev,C++,true,false,false,4,true,false,true,false,343 +xphnx/onze_cm11_theme,xphnx,,true,false,false,1,false,true,false,false,31 +pdftools/pdfposter,pdftools,Python,true,false,false,1,false,true,false,false,45 +KitaitiMakoto/epub-parser,KitaitiMakoto,Ruby,true,false,false,2,false,true,true,false,78 +gitlab-jp/www-gitlab-jp,gitlab-jp,CSS,true,false,false,3,true,false,true,false,109 +lcg/tucano,lcg,C++,true,false,false,1,false,true,false,false,12 +hw-manager/android,hw-manager,Java,true,false,false,1,false,true,false,false,13 +atomap/atomap,atomap,Python,true,false,false,1,false,true,false,false,82 +craigbarnes/lua-gumbo,craigbarnes,C,true,false,false,2,false,true,false,false,55 +gtk/gtk-swift,gtk,Swift,true,false,false,1,false,true,false,false,10 +gitlab-org/gitlab-elasticsearch-git,gitlab-org,Ruby,true,false,false,1,false,true,false,false,16 +rubyonrailsbrasil/rubyonrailsbrasil.gitlab.io,rubyonrailsbrasil,Ruby,true,false,false,1,false,true,false,false,33 +european-data-portal/sparql-manager,european-data-portal,CSS,true,false,true,1,false,false,true,false,4 +pages/hyde,pages,HTML,true,false,false,2,false,true,true,false,44 +twittner/cql-io,twittner,Haskell,true,false,false,1,false,true,false,false,42 +denis4net/toxvpn,denis4net,C,true,false,false,1,true,false,false,false,19 +pages/nanoc,pages,HTML,true,false,false,1,false,true,false,false,11 +vindarel/bookshops,vindarel,Python,true,true,false,1,false,true,false,false,39 +JobV/jobv.gitlab.io,JobV,HTML,true,false,false,1,false,true,false,false,26 +pages/octopress,pages,CSS,true,false,false,1,false,true,false,false,14 +artem-sidorenko/chef-rkt,artem-sidorenko,Ruby,true,false,false,3,false,true,true,false,60 +rhab/PyOTRS,rhab,Python,true,true,false,3,false,true,false,false,63 +zombie-raptor/zombie-raptor,zombie-raptor,CommonLisp,true,false,false,1,false,true,false,false,15 +vasily_makarov/saedit2,vasily_makarov,C,true,false,false,1,false,true,false,false,6 +mudar-ca/huegoallight-android,mudar-ca,Java,true,false,false,1,false,false,true,false,10 +imp/requests-rs,imp,Rust,true,false,false,2,false,true,true,false,35 +JFT/Irrlicht_extended,JFT,C,true,false,false,1,true,false,false,false,14 +algomus.fr/dezrann,algomus.fr,HTML,true,false,false,1,false,true,false,false,53 +ITsvetkoFF/code-and-pain,ITsvetkoFF,JavaScript,true,false,false,1,false,true,false,false,14 +hunter2.app/hunter2,hunter2.app,Python,true,false,false,3,false,true,false,true,171 +atomicrex/atomicrex,atomicrex,C++,true,false,false,2,true,false,true,false,56 +camelot-project/camelot,camelot-project,Clojure,true,false,false,3,true,true,false,false,61 +jeffdn/rust-canteen,jeffdn,Rust,true,false,false,1,false,true,false,false,14 +harbottle/puppet-mattermost,harbottle,Ruby,true,false,false,2,false,true,false,false,20 +greysonp/gitlab-ci-shared-runner-android-example,greysonp,Java,true,false,false,1,false,true,false,false,11 +motorica-org/gitlab-ci-android,motorica-org,,true,false,false,1,true,false,false,false,34 +gitlab-cookbooks/gitlab-vault,gitlab-cookbooks,Ruby,true,false,false,2,false,true,false,true,27 +PythonDevCommunity/pythondev-site,PythonDevCommunity,Python,true,true,false,2,true,true,false,false,37 +gitlab-examples/review-apps-openshift,gitlab-examples,HTML,true,false,false,6,true,true,false,true,97 +nanodeath/kollapse,nanodeath,Kotlin,true,false,false,1,false,true,false,false,15 +algebra-und-zahlentheorie/analysis,algebra-und-zahlentheorie,TeX,true,false,false,2,false,true,true,false,21 +tensors/TuckerMPI,tensors,C++,true,false,false,2,true,true,false,false,38 +Conan_Kudo/snapcore-mkrpmdistcoresnap,Conan_Kudo,Python,true,false,false,1,true,false,false,false,49 +mbukatov/pytest-ansible-playbook,mbukatov,Python,true,false,false,1,false,true,false,false,25 +NobleworksSoftware/icon-overlay-plugin,NobleworksSoftware,Groovy,true,false,false,2,true,true,false,false,38 +clorichel/vue-gitlab-api,clorichel,JavaScript,true,false,false,2,false,true,true,false,47 +brianegan/flutter_stream_friends,brianegan,Dart,true,false,false,1,false,true,false,false,8 +moshmage/rxjs-socket.io,moshmage,TypeScript,true,false,false,2,false,true,true,false,21 +TomasHubelbauer/bloggo-dotnet-core-gitlab-ci,TomasHubelbauer,C#,true,false,false,1,false,true,false,false,14 +VictorLamoine/ros_gitlab_ci,VictorLamoine,Shell,true,false,false,1,true,false,false,false,50 +gibberfish/pancrypticon,gibberfish,Shell,true,false,false,2,false,false,false,false,37 +ditto/ditto,ditto,C#,true,false,false,1,false,true,false,false,15 +scastiel/crypticker,scastiel,JavaScript,true,false,false,2,false,true,true,false,30 +MUSIT-Norway/musit-frontend,MUSIT-Norway,TypeScript,true,false,false,2,true,true,false,false,98 +maikebing/GitLab.VisualStudio,maikebing,C#,true,false,false,1,false,false,false,false,21 +xmpp-rs/xmpp-rs,xmpp-rs,Rust,true,false,false,3,true,true,false,false,50 +quatomic/qengine,quatomic,C++,true,false,false,1,false,true,false,false,24 +grails-3-book/intro-concepts,grails-3-book,Groovy,true,false,false,2,true,true,false,false,42 +fampinheiro/git-to-live-source,fampinheiro,Shell,true,false,false,4,true,true,true,true,99 +pages/jigsaw,pages,CSS,true,false,false,1,false,true,false,false,25 +gitmate/open-source/gitmate-2-frontend,gitmate,TypeScript,true,false,false,3,true,false,true,true,54 +cheminfIBB/pafnucy,cheminfIBB,JupyterNotebook,true,false,false,1,false,true,false,false,33 +alelec/gitlab-release,alelec,Python,true,false,false,2,false,true,true,false,27 +aossie/Agora-Web,aossie,Scala,true,false,false,1,false,true,false,false,22 +metachris/python-boilerplate-frontend,metachris,CSS,true,false,false,1,false,true,false,false,12 +gitlab-org/prometheus-client-mmap,gitlab-org,Ruby,true,false,false,2,false,true,true,false,153 +fathom/fathom.gitlab.io,fathom,TeX,true,false,false,1,false,false,true,false,13 +textileio/Neuralyzer,textileio,Swift,true,false,false,1,true,false,false,false,11 +barrel-db/barrel,barrel-db,Erlang,true,false,false,1,false,true,false,false,21 +rinconresearch/raptor,rinconresearch,Verilog,true,false,false,1,false,true,false,false,12 +Zatherz/magicjson,Zatherz,Crystal,true,false,false,1,false,true,false,false,9 +macta/PharoLambda,macta,Smalltalk,true,false,false,3,true,false,true,false,135 +nobodyinperson/thunar-custom-actions,nobodyinperson,M4,true,false,false,5,true,false,true,false,136 +fdroid/docker-executable-fdroidserver,fdroid,,true,false,false,3,true,true,false,true,48 +franek_madej/obecnosc,franek_madej,Python,true,false,false,1,false,true,false,false,55 +nemolovich/codeplatform,nemolovich,HTML,true,false,false,1,false,false,true,false,11 +disarm/douma-app,disarm,HTML,true,false,false,1,false,true,false,false,15 +nobodyinperson/co2monitor,nobodyinperson,Makefile,true,false,false,5,true,false,true,false,126 +bgez/bgez,bgez,Python,true,false,false,1,false,false,false,false,21 +MadLittleMods/playing-with-selenium-on-gitlab-ci,MadLittleMods,JavaScript,true,false,false,2,true,true,false,false,83 +gitlab-com/gl-infra/oncall-robot-assistant,gitlab-com,Go,true,false,false,2,false,true,false,false,34 +vindarel/cl-torrents,vindarel,CommonLisp,true,false,false,2,true,true,false,false,48 +maratonlinuxero/maratonlinuxero.gitlab.io,maratonlinuxero,CSS,true,false,false,1,false,false,true,false,27 +bonobows/shadow-hunter-server,bonobows,Java,true,false,false,3,true,true,false,false,68 +fintechlabs/fapi-conformance-suite,fintechlabs,Java,true,false,true,8,true,true,false,true,590 +ftornil/lucilia,ftornil,JavaScript,true,false,false,1,true,false,false,false,30 +iblech/garben-und-logik,iblech,TeX,true,false,false,1,false,false,true,false,15 +sorenmat/seneferu,sorenmat,Go,true,false,false,3,true,false,false,true,75 +timrs2998/newsie,timrs2998,TypeScript,true,false,false,3,true,true,false,true,29 +SWEng2017/SWEng,SWEng2017,Java,true,false,false,4,true,true,true,false,256 +evanp/places-pub,evanp,JavaScript,true,false,false,3,true,true,false,true,60 +alexmart1989/Game,alexmart1989,C++,true,false,false,1,true,false,false,false,10 +burke-software/django-server-side-piwik,burke-software,Python,true,false,false,1,false,true,false,false,20 +deckar01/ctf-api,deckar01,Python,true,true,false,1,false,true,false,false,34 +dosuken123/java-sample-hello-world,dosuken123,Java,true,false,false,2,true,false,false,false,16 +systerel/S2OPC,systerel,C,true,false,false,5,true,true,false,false,360 +python-devs/importlib_resources,python-devs,Python,true,false,false,3,false,true,true,false,44 +zj/snippet,zj,Go,true,false,false,2,false,true,false,true,37 +tessia-project/tessia,tessia-project,Python,true,true,false,3,true,false,false,true,68 +datadrivendiscovery/images,datadrivendiscovery,Shell,true,false,false,2,true,false,true,false,36 +spdf/elektron,spdf,Go,true,false,false,1,false,true,false,false,27 +gableroux/gitlab-ci-example-nodejs,gableroux,JavaScript,true,false,false,1,false,true,false,false,10 +eyeo/adblockplus/adblockpluscore,eyeo,JavaScript,true,false,false,3,false,true,false,false,72 +eyeo/adblockplus/libadblockplus,eyeo,C++,true,false,false,2,true,false,false,false,39 +eyeo/adblockplus/adblockpluschrome,eyeo,JavaScript,true,false,false,5,true,true,false,true,223 +mappies/configurapi,mappies,JavaScript,true,false,false,2,false,false,false,false,21 +Oslandia/osgeo4w,Oslandia,Batchfile,true,false,false,1,true,false,false,false,35 +tobias47n9e/wikibase_rs,tobias47n9e,Rust,true,false,false,3,false,true,false,false,39 +hpdeifel/aurs,hpdeifel,Rust,true,false,false,1,false,true,false,false,15 +allthethings/allthethings.gitlab.io,allthethings,CSS,true,false,false,6,false,false,false,false,267 +Plasticity/magnitude,Plasticity,Python,true,true,false,3,false,false,false,false,190 +joewreschnig/gitlab-ci-mode-flycheck,joewreschnig,EmacsLisp,true,false,false,1,false,true,false,false,6 +trackmyride/TrackMyRide,trackmyride,TypeScript,true,false,false,3,true,true,true,false,163 +gitlab-com/chatops,gitlab-com,Ruby,true,false,false,2,true,true,false,false,131 +timvisee/ffsend,timvisee,Rust,true,false,false,5,true,true,false,true,393 +stemcellbioengineering/context-explorer,stemcellbioengineering,Python,true,false,false,1,false,true,false,false,36 +rockdaboot/libhsts,rockdaboot,C,true,false,false,1,false,true,false,false,160 +haboustak/gitlab-artifact-tools,haboustak,Python,true,false,false,2,true,true,false,false,18 +lkcamp/lkcamp.gitlab.io,lkcamp,HTML,true,false,false,1,false,true,false,false,20 +caspermeijn/onvifviewer,caspermeijn,C++,true,false,false,4,true,true,true,false,140 +gitlab-org/distribution/gitlab-provisioner,gitlab-org,HCL,true,false,false,3,false,false,false,false,148 +mash-graz/resolve,mash-graz,Python,true,false,false,2,false,false,true,false,48 +gitlab-org/gitter/irc-bridge,gitlab-org,JavaScript,true,false,false,2,false,true,true,false,70 +monaize-mnz/mnz-wallet,monaize-mnz,JavaScript,true,false,false,3,true,false,false,true,71 +charts/gitlab-omnibus,charts,Smarty,true,false,false,2,false,true,false,true,19 +jD91mZM2/powerline-rs,jD91mZM2,Rust,true,false,false,1,false,true,false,false,24 +Aberrantfox/WarmBot,Aberrantfox,Kotlin,true,false,true,2,true,true,false,false,11 +scarpetta/pdfmixtool,scarpetta,C++,true,false,false,1,true,false,false,false,20 +radar-parlamentar/radar,radar-parlamentar,Python,true,false,false,3,true,false,false,true,108 +PancakeSoftware/openHabAI,PancakeSoftware,C++,true,false,false,4,true,true,false,false,105 +pages/frozen-flask,pages,Python,true,true,false,1,false,true,false,false,11 +elad.noor/equilibrator-api,elad.noor,Python,true,false,false,2,false,true,true,false,51 +rwig/backify,rwig,JavaScript,true,false,false,1,false,false,true,false,11 +lramage94/mkdocs-bootstrap386,lramage94,HTML,true,false,false,1,false,true,false,false,17 +Codamic/hellhound,Codamic,Clojure,true,false,false,1,false,true,false,false,34 +makson/Recultis,makson,Python,true,false,false,1,false,true,false,false,14 +cmocka/cmocka,cmocka,C,true,false,false,1,false,true,false,false,390 +seanwasere/fork-me-on-gitlab,seanwasere,,true,false,false,1,false,false,true,false,13 +beerfactory.org/plasma,beerfactory.org,Scala,true,false,false,2,true,true,false,false,41 +pixstem/pixstem,pixstem,Python,true,false,false,1,false,true,false,false,74 +thefinn93/signald,thefinn93,Java,true,false,false,5,true,true,false,true,160 +dennismaxjung/vscode-dotnet-auto-attach,dennismaxjung,TypeScript,true,false,false,3,true,true,true,false,129 +mlcdresden/pages,mlcdresden,JavaScript,true,false,false,2,false,true,true,false,27 +Piou-piou/ruined-world-api,Piou-piou,,true,false,false,1,false,true,false,false,5 +Cydhra/Vibrant,Cydhra,Kotlin,true,false,false,1,true,false,false,false,21 +postmarketOS/osk-sdl,postmarketOS,C++,true,false,false,2,true,true,false,false,22 +davivc/gitlab-ci-google-cloud-kubernetes,davivc,HTML,true,false,false,3,true,true,true,false,143 +tmendes/waterydroid,tmendes,Java,true,false,false,1,false,false,true,false,11 +juliohm1978/easy-keepalived,juliohm1978,Shell,true,false,false,1,true,false,false,false,15 +tobiaswkjeldsen/carwingsflutter,tobiaswkjeldsen,Dart,true,false,false,1,true,false,false,false,9 +logotype/fixparser,logotype,JavaScript,true,false,false,5,false,true,true,false,53 +bloomberg/recc,bloomberg,C++,true,false,false,2,true,true,false,false,86 +claystation/laravel-gitlab-ci-docker,claystation,Shell,true,false,false,1,false,false,false,false,22 +crwxrws/psycheled,crwxrws,Rust,true,false,false,1,true,false,false,false,21 +exng/vuenote,exng,Vue,true,false,false,3,true,true,true,false,55 +MaphsterB/pyramid-rlp,MaphsterB,Python,true,true,false,1,false,true,false,false,44 +littlesaints/functional-streams,littlesaints,Java,true,false,false,2,true,false,true,false,34 +assoconnect/doctrine-validator-bundle,assoconnect,PHP,true,false,false,1,false,true,false,false,17 +mdaffin/nand2tetris,mdaffin,Rust,true,false,false,1,false,true,false,false,50 +omnileads/ominicontacto,omnileads,Python,true,false,false,2,true,true,false,false,269 +moodlenet/servers/federated,moodlenet,Elixir,true,false,false,2,true,true,false,false,92 +Flohack74/tg-plus,Flohack74,C++,true,false,false,5,true,true,false,true,122 +AutowareAuto/AutowareAuto,AutowareAuto,C++,false,false,false,0,false,false,false,false,1 +siper/Adept,siper,Kotlin,true,false,false,3,true,true,true,false,128 +opennota/findimagedupes,opennota,Go,true,false,false,2,true,true,false,false,22 +mtarif/programming-rust,mtarif,CSS,true,false,false,2,false,true,true,false,35 +lebedev.games/botox-di,lebedev.games,Python,true,false,false,2,false,true,true,false,19 +estrategies_per_apoderament_digital/estrategies_municipals_per_apoderament_digital,estrategies_per_apoderament_digital,CSS,true,false,false,2,false,true,true,false,35 +neachdainn/nng-rs,neachdainn,Rust,true,false,false,3,false,true,false,false,116 +Songoda/Arconix,Songoda,Java,true,false,true,1,true,false,false,false,11 +Songoda/EpicFarming,Songoda,Java,false,false,true,0,false,false,false,false,1 +daksh7011/metis,daksh7011,JavaScript,true,false,false,2,false,true,true,false,26 +jindraivanek/ast-viewer,jindraivanek,F#,true,false,false,3,true,false,true,false,50 +myii/ut-tweak-tool,myii,QML,true,false,false,1,true,false,false,false,31 +libreml/libreml,libreml,,true,false,false,5,true,true,false,false,173 +gitlab-cd/ssh-template,gitlab-cd,Shell,true,false,false,1,false,true,false,false,54 +jenswangenheim/itbs-android,jenswangenheim,JavaScript,true,false,false,1,false,false,true,false,11 +kermit-js/kermit,kermit-js,JavaScript,true,false,false,3,true,true,true,false,35 +deltares/rtc-tools,deltares,Python,true,false,false,6,true,true,true,false,122 +davical-project/awl,davical-project,PHP,true,false,false,1,false,true,false,false,11 +dzaporozhets/six,dzaporozhets,Ruby,true,false,false,1,false,true,false,false,31 +terceiro/chake,terceiro,Ruby,true,false,false,1,false,true,false,false,12 +evol/evol-hercules,evol,C,true,false,false,3,true,true,false,false,292 +kaliko/sima,kaliko,Python,true,false,false,2,true,true,false,false,60 +iggdrasil/chimere,iggdrasil,JavaScript,true,false,false,1,false,true,false,false,25 +gbraad/resume,gbraad,,true,false,false,2,true,false,true,false,49 +bitfireAT/vcard4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false,29 +jangorecki/r.gitlab.ci,jangorecki,R,true,false,false,1,false,true,false,false,6 +camd/cmr,camd,Python,true,false,false,1,false,true,false,false,10 +asap/asap,asap,C++,true,false,false,1,false,true,false,false,42 +middleman-themes/middleman,middleman-themes,CSS,true,false,false,2,false,true,true,false,31 +dennis-hamester/scraw,dennis-hamester,CSS,true,false,false,2,true,false,false,false,40 +craigbarnes/showdown,craigbarnes,Vala,true,false,false,1,true,false,false,false,34 +dovereem/xtcetools,dovereem,HTML,true,false,true,2,true,false,true,false,20 +gitlab-ci-testing/spiky,gitlab-ci-testing,JavaScript,true,false,false,1,false,true,false,false,14 +glancr/modules,glancr,Shell,true,false,false,2,true,false,true,false,62 +gitzone/npmts,gitzone,TypeScript,true,false,false,5,false,true,false,true,123 +GitLabRGI/erdc/geopackage-python,GitLabRGI,Python,true,true,false,3,false,true,true,false,97 +debtcollective/debtcollective,debtcollective,JavaScript,true,false,false,1,false,true,false,false,78 +nim-lang/nim,nim-lang,Nim,true,false,false,3,true,true,true,false,60 +political-revolution/political-revolution.gitlab.io,political-revolution,JavaScript,true,false,false,3,false,false,true,false,57 +foodsharing-dev/devblog,foodsharing-dev,CSS,true,false,false,2,false,true,true,false,55 +tglman/persy,tglman,Rust,true,false,false,3,false,false,false,false,61 +clemolgat-SBR/leopard-imaging,clemolgat-SBR,C++,true,false,false,2,true,false,false,false,102 +packaging/nextcloud,packaging,Shell,true,false,false,2,false,false,false,false,27 +itxtech/cenisys,itxtech,C++,true,false,false,3,true,true,true,false,77 +arcfire/rumba,arcfire,Python,true,false,false,2,false,true,true,false,20 +fatihacet/uzaktancalismak-com,fatihacet,CSS,true,false,false,1,false,false,true,false,20 +sat-metalab/switcher,sat-metalab,C,true,false,false,5,false,true,true,false,97 +sat-mtl/telepresence/scenic,sat-mtl,JavaScript,true,false,false,3,false,true,true,false,79 +olberger/org-teaching,olberger,HTML,true,false,false,1,false,false,true,false,17 +coala/landing,coala,Python,true,false,false,2,true,false,false,true,41 +agrumery/aGrUM,agrumery,C++,true,false,false,2,true,false,true,false,280 +nvidia/digits,nvidia,,true,false,false,1,false,false,false,false,44 +openconnect/openconnect,openconnect,C,true,false,false,1,false,true,false,false,333 +danielo515/tw5-auto-publish2gitlab-pages,danielo515,Shell,true,false,false,1,false,false,true,false,13 +scastiel/protonmail-theme-creator,scastiel,JavaScript,true,false,false,2,false,true,true,false,29 +omos/argon2-gpu,omos,C++,true,false,false,2,true,true,false,false,84 +MUSIT-Norway/musit,MUSIT-Norway,Scala,true,false,false,2,true,true,false,false,71 +LCaraccio/clever-sheep,LCaraccio,Python,true,false,false,4,false,true,true,false,237 +ostrokach-forge/graph-tool,ostrokach-forge,Shell,true,false,false,3,true,true,true,false,180 +demurgos/hre,demurgos,Haxe,true,false,false,1,false,true,false,false,19 +IvanSanchez/Leaflet.GLMarkers,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +radiolise/radiolise.gitlab.io,radiolise,JavaScript,true,false,false,1,false,false,true,false,14 +gitlab-org/gitlab-elasticsearch-indexer,gitlab-org,Go,true,false,false,1,false,true,false,false,103 +ahmedcharles/lua-rs,ahmedcharles,C,true,false,false,1,false,true,false,false,17 +dennis-hamester/vks,dennis-hamester,Rust,true,false,false,1,true,false,false,false,25 +phreakuencies/nuttx_book,phreakuencies,,true,false,false,1,false,false,true,false,25 +recalbox/recalbox-configgen,recalbox,Python,true,false,false,1,true,false,false,false,16 +aossie/CrowdAlert,aossie,JavaScript,true,false,false,1,false,true,false,false,13 +eladmaz/SSL-API,eladmaz,Java,true,false,true,2,true,true,false,false,23 +retro-coder/kickassemblerextension,retro-coder,TypeScript,true,false,false,1,false,true,false,false,34 +arm-hpc/packages,arm-hpc,Python,true,false,false,1,false,true,false,false,16 +ornix/ornix,ornix,JavaScript,true,false,false,1,false,true,false,false,14 +JAForbes/static-sum-type,JAForbes,JavaScript,true,false,false,1,false,true,false,false,14 +craigbarnes/dte,craigbarnes,C,true,false,false,2,false,true,false,false,92 +Mizux/gitlabci,Mizux,Shell,true,false,false,4,true,true,false,true,55 +haggl/dotmgr,haggl,Python,true,true,false,1,false,true,false,false,7 +dzaporozhets/clj-gitlab,dzaporozhets,Clojure,true,false,false,3,false,true,true,false,41 +sugarcube/sugarcube,sugarcube,JavaScript,true,false,false,1,false,true,false,false,9 +masaeedu/docker-client,masaeedu,Shell,true,false,false,2,true,false,true,false,41 +ablondin/inf3135-aut2017-tp2,ablondin,C,true,false,false,2,true,true,false,false,18 +timelord/timelord,timelord,Python,true,true,false,1,false,true,false,false,17 +iota-foundation/software/entangled,iota-foundation,C,true,false,false,1,false,true,false,false,17 +mueller-ma/View-android-version,mueller-ma,Java,true,false,false,2,true,true,false,false,29 +ercom/livebootp,ercom,Shell,true,false,false,2,true,false,false,false,86 +socrates-conference/socrates-client,socrates-conference,JavaScript,true,false,false,8,true,true,false,true,247 +omgtransit/omgtransit,omgtransit,JavaScript,true,false,false,1,false,false,true,false,20 +mech-lang/core,mech-lang,Rust,true,false,false,1,false,true,false,false,10 +tobiaskoch/gitlab-ci-example-dotnetcore,tobiaskoch,C#,true,false,false,2,false,true,true,false,80 +clumpy/CLUMPY,clumpy,C++,true,false,false,1,true,false,false,false,44 +gableroux/gitlab-ci-example-django,gableroux,Python,true,true,false,1,false,true,false,false,21 +csui-advprog-2018/lab,csui-advprog-2018,Python,true,false,false,1,false,true,false,false,112 +LKDevelopment/hetzner-cloud-mobile-app,LKDevelopment,TypeScript,true,false,false,5,true,true,true,false,84 +tfa-devs/tfa-base,tfa-devs,Lua,true,false,false,1,false,true,false,false,20 +sherpa-team/sherpa,sherpa-team,C,true,false,false,3,true,true,true,false,186 +seulkiro/node-heroku-dpl,seulkiro,JavaScript,true,false,false,1,false,false,false,true,16 +reefphp/reef,reefphp,PHP,true,false,false,1,false,true,false,false,44 +giomasce/asmc,giomasce,GAP,true,false,false,2,true,true,false,false,71 +alelec/navdy/android-navdy-client-old,alelec,Smali,true,false,false,1,true,false,false,false,20 +sagemath/sage,sagemath,Python,true,false,false,3,true,true,false,true,234 +craftyguy/networkd-dispatcher,craftyguy,Python,true,false,false,2,false,false,false,false,63 +saalen/ansifilter,saalen,C++,true,false,false,1,false,true,false,false,20 +miguelraggi/discreture,miguelraggi,C++,true,false,false,1,true,false,false,false,29 +huyderman/lamassu,huyderman,Ruby,true,false,false,2,false,true,true,false,84 +balping/laravel-hashslug,balping,PHP,true,false,false,1,false,true,false,false,48 +eidheim/tiny-process-library,eidheim,C++,true,false,false,1,false,true,false,false,14 +semkodev/field.cli,semkodev,JavaScript,true,false,false,3,false,true,false,true,85 +davidjpeacock/kurly,davidjpeacock,Go,true,false,false,2,true,true,false,false,38 +orcproject/orc,orcproject,JavaScript,true,false,false,3,false,true,false,false,44 +sj14/go-heroku,sj14,Go,true,false,false,3,false,false,true,false,51 +bartl/todo-txt-gnome-shell-extension,bartl,JavaScript,true,false,false,2,false,false,false,false,32 +zerkc/whatsdesk,zerkc,JavaScript,true,false,false,1,false,false,true,false,17 +koyagami/libneko,koyagami,Python,true,true,false,3,false,false,false,false,74 +inko-lang/website,inko-lang,CSS,true,false,false,4,false,false,true,true,88 +stavros/caduceus,stavros,Python,true,false,false,2,false,false,false,false,26 +cizen/cizen,cizen,Elixir,true,false,false,1,false,true,false,false,16 +gitlab-org/quality/triage-ops,gitlab-org,Shell,false,false,false,0,false,false,false,false,33 +sequoia-pgp/hagrid,sequoia-pgp,Rust,true,false,false,1,true,false,false,false,15 +git-for-dummies/slide-corso,git-for-dummies,TeX,true,false,false,1,true,false,false,false,12 +USSRM/kotlin,USSRM,Kotlin,true,false,false,3,true,true,true,false,39 +dunossauro/do-zero-ao-deploy,dunossauro,HTML,true,false,false,1,false,true,false,false,10 +Luigi311/linux_downloader,Luigi311,Shell,true,false,false,1,false,true,false,false,95 +limira-rs/simi,limira-rs,Rust,true,false,false,1,false,true,false,false,34 +datadrivendiscovery/primitive-interfaces,datadrivendiscovery,Python,true,false,false,2,true,false,true,false,54 +kartsims/vue-ci,kartsims,JavaScript,true,false,false,3,true,true,true,false,28 +pnieuwenhuis/newhouse-basket-service,pnieuwenhuis,C#,true,false,false,3,true,false,true,true,58 +fathom/app,fathom,JavaScript,true,false,false,3,true,false,true,false,34 +4geit/react-packages,4geit,JavaScript,true,false,false,4,true,true,true,true,174 +gitlab-org/gitlab-omnibus-builder,gitlab-org,Ruby,true,false,false,7,true,true,false,false,216 +evol/clientdata,evol,Shell,true,false,false,4,false,true,true,false,88 +Numergent/memento,Numergent,Clojure,true,false,false,3,true,true,true,false,64 +dennis-hamester/dotrix,dennis-hamester,Rust,true,false,false,1,true,false,false,false,6 +barrel/barrel-wordpress,barrel,PHP,true,false,false,3,false,true,true,false,90 +android-rebuilds/auto,android-rebuilds,Shell,false,false,false,0,false,false,false,false,1 +transformania/tt-game,transformania,PLpgSQL,true,false,false,2,true,false,true,false,31 +stackshuttle/grow_journal,stackshuttle,CSS,true,false,false,1,false,true,false,false,23 +gitlab-examples/scala-sbt,gitlab-examples,Scala,true,false,false,1,false,true,false,false,13 +rootmodels/OpenSimRoot,rootmodels,C++,true,false,false,3,true,true,true,false,59 +ryanguill/FPcfc,ryanguill,ColdFusion,true,false,false,1,false,true,false,false,18 +glancr/system,glancr,CSS,true,false,false,2,true,false,true,false,74 +jzelner/reproducible-stan,jzelner,R,true,false,false,1,false,true,false,false,11 +pages/ikiwiki,pages,,true,false,false,2,false,true,true,false,24 +danger-systems/danger.systems,danger-systems,HTML,true,false,false,1,false,true,false,false,54 +whrl/space_robotics_challenge,whrl,C++,true,false,false,1,true,false,false,false,93 +plumbis/cumulus-ci-cd,plumbis,Python,true,false,false,2,false,false,false,false,20 +linagora/petals-cockpit,linagora,TypeScript,true,false,true,3,true,true,false,false,318 +ikhemissi/gitlab-ci-releaser,ikhemissi,JavaScript,true,false,false,4,true,true,false,true,40 +PythonDevCommunity/sir-bot-a-lot,PythonDevCommunity,Python,true,true,false,3,false,true,true,false,29 +sadiq/sadiq.gitlab.io,sadiq,EmacsLisp,true,false,false,1,false,true,false,false,12 +ales.genova/pbcpy,ales.genova,Python,true,true,false,1,false,true,false,false,15 +TomasHubelbauer/gitlab-pages-custom-domain-lets-encrypt-info,TomasHubelbauer,,true,false,false,1,false,false,true,false,17 +adi90x/rancher-active-proxy,adi90x,Shell,true,false,false,1,false,true,false,false,13 +librehealth/radiology/lh-radiology,librehealth,JavaScript,true,false,true,3,true,true,false,false,54 +flimmerkiste/NewralNet,flimmerkiste,Java,true,false,false,1,false,false,true,false,9 +gitlab-org/notebooklab,gitlab-org,JavaScript,true,false,false,1,false,true,false,false,41 +itk.fr/lorhammer,itk.fr,Go,true,false,false,6,false,true,false,false,219 +SUSE-UIUX/eos,SUSE-UIUX,HTML,true,false,false,4,true,true,true,true,107 +slcu/teamHJ/Organism,slcu,C++,true,false,false,1,false,true,false,false,30 +samba-team/samba,samba-team,C,true,false,false,2,false,true,false,false,327 +sj1k/ytsearch,sj1k,Python,true,false,false,2,false,true,true,false,22 +bpcarm/trainings2017,bpcarm,C++,true,false,false,1,true,false,false,false,33 +Ercoin/ercoin,Ercoin,Erlang,true,false,false,3,true,true,false,true,42 +esdrastarsis/antarticaos,esdrastarsis,Rust,true,false,false,1,false,true,false,false,29 +dalton/dalton,dalton,Fortran,true,false,false,1,false,true,false,false,513 +oer/emacs-reveal-howto,oer,EmacsLisp,true,false,false,1,false,false,true,false,20 +gt8/open-source/elixir/weave,gt8,Elixir,true,false,false,3,true,true,false,false,51 +empurrandojuntos/frontend,empurrandojuntos,TypeScript,true,false,false,1,false,true,false,false,87 +chusiang/continuous-delivery-workshop,chusiang,Makefile,true,false,false,5,true,true,true,true,88 +pablo-ruth/go-init,pablo-ruth,Go,true,false,false,3,true,true,false,false,87 +mataara/Mataara-Server,mataara,Python,true,true,false,2,false,true,false,false,125 +evanp/tags-pub,evanp,JavaScript,true,false,false,3,true,true,false,true,62 +kornelski/cargo-xcode,kornelski,Rust,true,false,false,1,false,true,false,false,10 +blockforge/blockforge,blockforge,C,true,false,false,3,true,false,true,false,66 +qosenergy/squalus,qosenergy,Go,true,false,false,2,false,true,false,true,52 +nllgg/dustpuppy,nllgg,Ruby,true,false,false,2,false,true,true,false,26 +zerobias/effector,zerobias,JavaScript,true,false,false,2,false,true,true,false,54 +DDP2-CSUI/ddp-lab-ki,DDP2-CSUI,Java,true,false,false,2,true,true,false,false,44 +joewreschnig/gitlab-ci-mode,joewreschnig,EmacsLisp,true,false,false,1,false,true,false,false,24 +ID4me/Acme,ID4me,Java,true,false,false,2,true,false,false,true,47 +h3/django-emailhub,h3,JavaScript,true,false,false,1,false,true,false,false,62 +sirimangalo/meditation-plus,sirimangalo,TypeScript,true,false,false,2,false,true,true,false,151 +jramsay/git-lab,jramsay,Go,true,false,false,1,false,true,false,false,21 +wavedistrict/web-client,wavedistrict,TypeScript,true,false,false,1,false,true,false,false,10 +all-mangas-reader/all-mangas-reader-2,all-mangas-reader,JavaScript,true,false,false,2,true,false,false,false,102 +jkrooswyk/the-monolith,jkrooswyk,Ruby,true,false,false,8,true,true,false,true,142 +librehealth/ehr/lh-ehr,librehealth,PHP,true,false,false,1,true,false,false,false,23 +cordite/network-map-service,cordite,Kotlin,true,false,true,3,true,false,false,true,248 +gitlab-org/security-products/license-management,gitlab-org,Shell,true,false,false,3,true,true,false,false,79 +alelec/navdy/display-rom,alelec,Shell,true,false,false,2,true,false,false,true,32 +eurosfordocs/transparence-sante,eurosfordocs,HTML,true,false,false,3,false,true,false,false,61 +maxpert/crlocator,maxpert,Crystal,true,false,false,1,true,false,false,false,5 +demsking/image-downloader,demsking,JavaScript,true,false,false,2,false,true,false,true,75 +FloweeTheHub/thehub,FloweeTheHub,C++,true,false,false,3,true,true,true,false,136 +philbooth/bfj,philbooth,JavaScript,true,false,false,1,false,true,false,false,25 +bzim/lockfree,bzim,Rust,true,false,false,1,false,false,true,false,22 +jabranham/system-packages,jabranham,EmacsLisp,true,false,false,1,false,true,false,false,25 +ydkn/capistrano-rails-console,ydkn,Ruby,true,false,false,3,true,false,false,false,41 +betseg/vim-dcrpc,betseg,C,true,false,false,1,false,true,false,false,2 +litecord/litecord,litecord,Python,true,true,false,1,false,true,false,false,25 +guushoekman/train-journeys,guushoekman,HTML,true,false,false,1,false,false,true,false,12 +vijai/screenrecorder,vijai,Java,true,false,false,3,false,false,true,false,73 +YottaDB/DB/YDB,YottaDB,M,true,false,false,3,true,true,false,false,128 +cutecom/cutecom,cutecom,C++,true,false,false,1,false,true,false,false,21 +women-who-code/intro-to-git-and-gitlab,women-who-code,JavaScript,true,false,false,1,false,false,true,false,11 +Dp-140-Java/bikeChampionship,Dp-140-Java,Java,true,false,false,2,false,true,false,false,24 +arianvp/nixos-gitlab-runner,arianvp,Nix,true,false,false,1,false,true,false,false,3 +PushFish/PushFish-Android,PushFish,Java,true,false,false,1,true,false,false,false,32 +john.tucker/firebase-gitlab,john.tucker,JavaScript,true,false,false,4,true,true,true,true,83 +materials-modeling/hiphive,materials-modeling,Python,true,false,false,3,true,true,true,false,135 +tagbottle/tagbottle.com,tagbottle,JavaScript,true,false,false,2,true,false,false,true,156 +rizon/plexus4,rizon,C,true,false,false,2,true,true,false,false,45 +sunny256/utils,sunny256,Perl,true,false,false,1,false,true,false,false,32 +libvdwxc/libvdwxc,libvdwxc,Assembly,true,false,false,2,true,false,true,false,46 +RBniCS/RBniCS,RBniCS,Python,true,false,false,3,true,true,false,true,69 +robigalia/rust-sel4,robigalia,Rust,true,false,false,1,false,true,false,false,27 +mike-koch/Mods-for-HESK,mike-koch,PHP,true,false,false,3,false,true,false,false,71 +Nikchavan/test-wp-plugin,Nikchavan,Shell,true,false,false,1,false,true,false,false,46 +pages/metalsmith,pages,HTML,true,false,false,1,false,true,false,false,16 +ecoevomath/ulm,ecoevomath,Pascal,true,false,false,2,true,false,true,false,29 +twittner/zeromq-haskell,twittner,Haskell,true,false,false,1,false,true,false,false,38 +leapsight/bondy,leapsight,Erlang,true,false,false,1,false,true,false,false,15 +pages/doxygen,pages,C,true,false,false,1,false,true,false,false,23 +bkeys/DMUX,bkeys,C++,true,false,false,1,true,false,false,false,34 +betse/betse,betse,Python,true,false,false,1,false,true,false,false,303 +SporeDB/sporedb,SporeDB,Go,true,false,false,2,false,true,false,false,20 +kachkaev/graphiql-workspace-app,kachkaev,HTML,true,false,false,2,false,false,false,false,37 +coala/package_manager,coala,Python,true,true,false,1,false,true,false,false,355 +tensors/tensor_toolbox,tensors,Matlab,true,false,false,1,false,false,true,false,11 +passelecasque/varroa,passelecasque,Go,true,false,false,1,true,false,false,false,43 +tim-m89/clr-haskell,tim-m89,Haskell,true,false,false,1,false,true,false,false,24 +bipedalshark/stellaris-tech-tree,bipedalshark,JavaScript,true,false,false,1,false,false,true,false,9 +takluyver/jeepney,takluyver,Python,true,false,false,1,false,true,false,false,9 +orobardet/gitlab-ci-linter,orobardet,Go,true,false,false,4,true,false,false,false,99 +6uellerBpanda/check_gitlab,6uellerBpanda,Ruby,true,false,false,1,false,true,false,false,15 +gitlab-org/gitter/env,gitlab-org,HTML,true,false,false,2,true,true,false,false,47 +srrg-software/srrg_hbst,srrg-software,C++,true,false,false,1,false,false,false,false,71 +ultreiaio/jgit-flow,ultreiaio,Java,true,false,true,4,false,true,false,false,126 +zenprotocol/zenprotocol,zenprotocol,F#,true,false,false,1,true,false,false,false,15 +adimit/gitlab-time-tracking-button,adimit,JavaScript,true,false,false,2,false,true,false,false,44 +SiLA2/sila_java,SiLA2,Java,true,false,true,3,true,true,false,true,50 +eyeo/websites/web.adblockplus.org,eyeo,HTML,true,false,false,2,false,true,true,false,35 +huia-lang/stack-vm,huia-lang,Rust,true,false,false,3,false,true,false,true,48 +datadrivendiscovery/ta3ta2-api,datadrivendiscovery,Python,true,false,false,1,true,false,false,false,65 +code-stats/code-stats-vim,code-stats,Python,true,true,false,1,false,true,false,false,24 +tikiwiki/tiki,tikiwiki,PHP,true,false,false,6,true,false,false,false,342 +chaoslab/chaoslab-overlay,chaoslab,Shell,true,false,false,2,false,false,false,false,23 +DavidGriffith/frotz,DavidGriffith,C,true,false,false,1,false,false,true,false,11 +philbooth/check-types.js,philbooth,JavaScript,true,false,false,1,false,true,false,false,21 +derSchabi/tttrsss,derSchabi,Java,true,false,false,1,true,false,false,false,42 +fumail/fuglu,fumail,Python,true,false,false,5,true,true,true,false,167 +martin-tornqvist/ia,martin-tornqvist,C,true,false,false,1,true,false,false,false,32 +BrightOpen/BackYard/Samotop,BrightOpen,HTML,true,false,false,3,true,true,false,true,91 +FascinatedBox/lily,FascinatedBox,C,true,false,false,1,false,true,false,false,11 +orbtk/dces-rust,orbtk,Rust,true,false,false,1,false,true,false,false,34 +gitlab-org/gitter/gitter-android-app,gitlab-org,Java,true,false,false,7,true,true,false,true,129 +wireshark/wireshark,wireshark,C,true,false,false,2,true,true,false,false,191 +golang-commonmark/markdown,golang-commonmark,Go,true,false,false,2,true,true,false,false,18 +jeanfi/psensor,jeanfi,JavaScript,true,false,false,3,true,true,false,false,48 +wchandler/strace-parser,wchandler,Rust,true,false,false,1,false,true,false,false,17 +miguel.gonzalez1/tetris-en-android-con-kotlin,miguel.gonzalez1,Kotlin,true,false,false,1,true,false,false,false,34 +pwoolcoc/soup,pwoolcoc,Rust,true,false,false,2,false,true,false,false,35 +datadrivendiscovery/metadata,datadrivendiscovery,Python,true,false,false,2,true,false,true,false,70 +gitlab-com/doc-gitlab-com,gitlab-com,HTML,true,false,false,1,false,false,true,false,21 +evol/serverdata,evol,Shell,true,false,false,4,true,true,false,false,389 +psmisc/psmisc,psmisc,C,true,false,false,1,false,true,false,false,14 +bitfireAT/ical4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false,30 +robigalia/sel4-sys,robigalia,Python,true,false,false,1,false,true,false,false,27 +bitfireAT/dav4android,bitfireAT,Kotlin,true,false,false,1,false,true,false,false,25 +gitlab-examples/postgres,gitlab-examples,,true,false,false,1,false,true,false,false,15 +inkscape/lib2geom,inkscape,C++,true,false,false,1,true,false,false,false,25 +Scott.Tomaszewski/grokNotes,Scott.Tomaszewski,Java,true,false,false,1,false,true,false,false,11 +Varlorg/uNote,Varlorg,Java,true,false,false,2,true,false,false,true,41 +plumbis/interop-2016,plumbis,Python,true,false,false,2,false,false,false,false,20 +gitlab-examples/docker,gitlab-examples,,true,false,false,1,true,false,false,false,9 +davidpett/ember-cli-gitlab-ci,davidpett,JavaScript,true,false,false,1,false,true,false,false,13 +oprudkyi/laravel-bootstrap-adminlte-starter-kit,oprudkyi,PHP,true,false,false,2,false,true,true,false,69 +gitlab-org/ci-cd/docker-machine,gitlab-org,Go,true,false,false,5,true,true,false,true,151 +librehealth/toolkit/lh-toolkit,librehealth,Java,true,false,true,3,false,true,true,false,65 +sheerun/ping,sheerun,JavaScript,true,false,false,1,false,true,false,false,12 +stavros/gamelights,stavros,Python,true,false,false,1,false,true,false,false,10 +mailman/django-mailman3,mailman,Python,true,false,false,1,false,true,false,false,86 +ByteHamster/changelog,ByteHamster,Java,true,false,false,1,true,false,false,false,18 +Flockademic/Flockademic,Flockademic,TypeScript,true,false,false,8,false,true,false,false,456 +sebdeckers/unbundle,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,8 +gitlab-org/ci-training-slides,gitlab-org,JavaScript,true,false,false,2,true,false,false,false,31 +stavros/yeecli,stavros,Python,true,false,false,1,false,false,false,false,13 +BoltsJ/cuteNTR,BoltsJ,C++,true,false,false,1,false,true,false,false,12 +dennis-hamester/dacite,dennis-hamester,Rust,true,false,false,3,false,false,false,false,37 +degoos/WetSponge,degoos,Java,true,false,false,1,false,false,true,false,34 +librespacefoundation/satnogs/satnogs-client,librespacefoundation,Python,true,false,false,5,true,true,true,false,110 +burke-software/django-report-builder,burke-software,Python,true,true,false,1,false,true,false,false,30 +anarcat/feed2exec,anarcat,Python,true,true,false,1,false,true,false,false,16 +datadrivendiscovery/common-primitives,datadrivendiscovery,Python,true,false,false,1,true,false,false,false,85 +znixian/payday2-superblt,znixian,C++,true,false,false,1,true,false,false,false,16 +msvechla/vaultbot,msvechla,Go,true,false,false,3,false,true,false,true,70 +sebdeckers/tls-keygen,sebdeckers,JavaScript,true,false,false,1,false,true,false,false,11 +jojo_boulix/auto-multiple-choice,jojo_boulix,Perl,true,false,false,1,true,false,false,false,16 +bloodyhealth/drip,bloodyhealth,JavaScript,true,false,false,1,false,true,false,false,12 +CyanBlob/FlutterCI,CyanBlob,,true,false,false,1,false,true,false,false,22 +derSchabi/OCBookmarks,derSchabi,Java,true,false,false,2,true,true,false,false,48 +Openki/Openki,Openki,JavaScript,true,false,false,4,false,true,true,false,98 +ambrevar/ambrevar.gitlab.io,ambrevar,EmacsLisp,true,false,false,1,false,true,false,false,11 +pages/vuepress,pages,,true,false,false,1,false,true,false,false,17 +rayark/mast,rayark,C#,true,false,false,2,true,false,false,true,79 +jD91mZM2/rnix,jD91mZM2,Rust,false,false,false,0,false,false,false,false,1 +paulcarroty/vscodium-deb-rpm-repo,paulcarroty,Shell,true,false,false,1,true,false,false,false,10 +elegy0101/tutorial---blog-chido-con-django,elegy0101,Python,true,true,false,1,false,true,false,false,19 +harth/superouter,harth,JavaScript,true,false,false,2,false,true,false,false,36 +gitlab-org/security-products/dependency-scanning,gitlab-org,Go,true,false,false,6,true,true,true,false,235 +MazeChaZer/knobster,MazeChaZer,JavaScript,true,false,false,4,true,true,true,false,48 +adol-c/adol-c,adol-c,C++,true,false,false,1,true,false,false,false,13 +mailman/mailman-hyperkitty,mailman,Python,true,false,false,1,false,true,false,false,21 +asura/android,asura,Java,true,false,false,1,false,true,false,false,13 +pythonfoo/AA,pythonfoo,Python,true,true,false,2,false,true,true,false,35 +Numergent/relevance,Numergent,Clojure,true,false,false,1,false,true,false,false,11 +jekyll-themes/jasper,jekyll-themes,CSS,true,false,false,1,false,false,true,false,18 +rusty-binder/rusty-cheddar,rusty-binder,Rust,true,false,false,2,false,true,true,false,45 +pages/nikola,pages,Python,true,false,false,1,false,true,false,false,16 +slashdeploy/docker-node-boilerplate,slashdeploy,Makefile,true,false,false,1,false,true,false,false,13 +dimitrieh/curriculumvitae-ci-boilerplate,dimitrieh,Shell,true,false,false,1,false,true,false,false,26 +IvanSanchez/geogrids,IvanSanchez,HTML,true,false,false,1,false,false,true,false,15 +meutraa/mm,meutraa,Go,true,false,false,1,false,true,false,false,6 +Zettai-Nikoru-Man/GijiNikoru,Zettai-Nikoru-Man,PHP,true,false,false,1,false,true,false,false,20 +IvanSanchez/Leaflet.TileLayer.GL,IvanSanchez,JavaScript,true,false,false,1,false,false,true,false,13 +space-sh/space,space-sh,Shell,true,false,false,4,false,true,false,false,250 +shirazlug/shirazlug.gitlab.io,shirazlug,HTML,true,false,false,1,false,true,false,false,21 +snowball-dev-group/snowball-bot,snowball-dev-group,TypeScript,true,false,false,1,true,false,false,false,21 +CopyNippyJoin/emdl,CopyNippyJoin,JavaScript,true,false,false,1,false,false,true,false,21 +morph027/signal-web-gateway,morph027,Shell,true,false,false,3,false,true,false,true,65 +latency.at/latency_exporter,latency.at,Go,true,false,false,1,true,false,false,false,21 +tmaier/gitlab-auto-merge-request,tmaier,Shell,true,false,false,1,false,false,false,false,14 +asromzek/fmobile,asromzek,Vue,true,false,false,1,false,true,false,false,13 +kachkaev/website,kachkaev,,true,false,false,1,false,true,false,false,5 +pages/emacs-reveal,pages,EmacsLisp,true,false,false,1,false,false,true,false,14 +m.rakha.f/alphat-new-generation,m.rakha.f,JavaScript,true,false,false,1,false,true,false,false,28 +distributopia/share-connect-support,distributopia,HTML,true,false,false,1,false,false,true,false,11 +strace/strace,strace,C,true,false,false,1,false,true,false,false,82 +fgiraldeau/INF2005,fgiraldeau,HTML,true,false,false,1,false,true,false,false,18 +elixire/elixire,elixire,Python,true,true,false,1,false,true,false,false,55 +triq/triq,triq,Erlang,true,false,false,3,true,true,true,false,109 +randy408/libspng,randy408,C,true,false,false,2,false,true,false,false,42 +langurmonkey/gaiasky,langurmonkey,Java,true,false,false,1,false,false,false,false,13 +owl-lisp/owl,owl-lisp,Scheme,true,false,false,1,true,false,false,false,8 +solarus-games/solarus-quest-editor,solarus-games,C++,true,false,false,1,true,false,false,false,11 +Bubu/fdroidclassic,Bubu,Java,false,false,false,0,false,false,false,false,1 +mindsphere/devops-demo,mindsphere,JavaScript,true,false,false,3,false,true,true,false,112 +MaryChelo/web-scraping,MaryChelo,JupyterNotebook,true,false,false,1,false,true,false,false,21 +Songoda/SkyBlock,Songoda,Java,true,false,false,1,true,false,false,false,22 +AlessandroMilan/Design-Patterns-CSharp,AlessandroMilan,C#,true,false,false,3,true,true,true,false,49 +ixion/ixion,ixion,C++,true,false,false,1,true,false,false,false,13 +entangle/entangle,entangle,C,true,false,false,1,false,true,false,false,16 +libvirt/libvirt,libvirt,C,true,false,false,1,false,true,false,false,46 +mailman/mailmanclient,mailman,Python,true,false,false,1,false,true,false,false,51 +victorhck/privacytools-es,victorhck,HTML,true,false,false,1,false,true,false,false,10 +gitlab-org/gitlab-build-images,gitlab-org,Shell,true,false,false,3,true,true,false,false,208 +codingrights/radarlegislativo,codingrights,Python,true,true,false,1,false,true,false,false,11 +coala/coala-utils,coala,Python,true,true,false,1,false,true,false,false,63 +hiroponz/sample-app,hiroponz,Ruby,true,false,false,1,false,true,false,false,23 +barrel-db/erlang-rocksdb,barrel-db,C++,true,false,false,1,false,true,false,false,19 +coala/cobot,coala,CoffeeScript,true,false,false,1,false,true,false,false,5 +jobol/mustach,jobol,C,true,false,false,1,false,true,false,false,13 +aegir/aegir,aegir,CSS,true,false,false,4,false,true,false,true,208 +sat-metalab/splash,sat-metalab,C++,true,false,false,2,false,true,false,false,134 +zaaksysteem/zaaksysteem,zaaksysteem,Perl,true,false,false,4,true,true,true,false,154 +srrg-software/srrg_mpr,srrg-software,C++,true,false,false,2,true,true,false,false,38 +emacs-ci/emacs,emacs-ci,EmacsLisp,true,false,false,1,false,true,false,false,41 +Project-FiFo/DalmatinerDB/dalmatinerdb,Project-FiFo,Erlang,true,false,false,2,false,true,false,false,102 +rmenk/private-sphinx-test,rmenk,,true,false,false,1,false,false,true,false,15 +msvechla/kubehiera,msvechla,Go,true,false,false,1,true,false,false,false,21 +pmorinerie/birdsite,pmorinerie,JavaScript,true,false,false,1,false,true,false,false,14 +gitlab-com/people-ops/employment,gitlab-com,,false,false,false,0,false,false,false,false,1 +bluebank/braid,bluebank,Kotlin,true,false,true,3,true,false,false,true,110 +juanitobananas/scrambled-exif,juanitobananas,Java,true,false,false,1,true,false,false,false,53 +Flockademic/whereisscihub,Flockademic,JavaScript,true,false,false,2,false,false,true,false,56 +shellyBits/v-chacheli,shellyBits,Vue,true,false,false,2,true,false,true,false,31 +sdnlab/jaguar,sdnlab,Java,true,false,true,2,true,true,false,false,13 +vuedoc/md,vuedoc,JavaScript,true,false,false,2,false,true,false,true,83 +Niklan/dlog,Niklan,CSS,true,false,false,1,false,false,true,false,14 +sanrod/go-tutorial,sanrod,Go,true,false,false,1,false,true,false,false,8 +aar642/shadowos-boot,aar642,PHP,true,false,false,1,true,false,false,false,56 +sifoo/snigl,sifoo,C,true,false,false,2,true,true,false,false,19 +NickBusey/inventario,NickBusey,JavaScript,true,false,false,1,false,true,false,false,24 +latency.at/web,latency.at,JavaScript,true,false,false,2,true,false,true,false,43 +vindarel/abelujo,vindarel,Python,true,false,false,1,false,true,false,false,44 +orcus/orcus,orcus,C++,true,false,false,1,true,false,false,false,16 +ayufan/python-getting-started,ayufan,HTML,true,false,false,1,false,true,false,false,33 +gitlab-org/University,gitlab-org,CSS,true,false,false,1,false,true,false,false,17 +j-pb/franz,j-pb,Clojure,true,false,false,2,false,true,true,false,20 +siasar-project/admin,siasar-project,PHP,true,false,false,1,false,false,true,false,44 +susurrus/gattii,susurrus,Rust,true,false,false,3,true,true,false,false,82 +gitlab-examples/kubernetes-example,gitlab-examples,HTML,true,false,false,3,true,true,false,true,109 +eightnoteight/aschedule,eightnoteight,Python,true,true,false,1,false,true,false,false,21 +phlint/phlint,phlint,PHP,true,false,false,1,false,true,false,false,19 +barrel-db/barrel-platform,barrel-db,JavaScript,true,false,false,1,false,true,false,false,22 +minetest/minetest,minetest,C++,true,false,false,4,true,true,true,false,340 +aossie/CarbonFootprint-Mobile,aossie,JavaScript,true,false,false,1,true,false,false,false,72 +tmendes/BirthDayDroid,tmendes,Java,true,false,false,1,false,false,true,false,11 +rfc2822/fdroid-firefox,rfc2822,Python,true,false,false,1,false,false,true,false,30 +smallstack/infrastructure/jira2gitlab,smallstack,TypeScript,true,false,false,1,false,false,true,false,21 +gitlab-org/csslab,gitlab-org,HTML,true,false,false,3,true,true,true,false,113 +HearthProject/HearthLauncher,HearthProject,C++,true,false,false,4,true,true,true,true,102 +softwa/very-hungry-penguins,softwa,OCaml,true,false,false,1,false,true,false,false,8 +metapensiero/metapensiero.pj,metapensiero,Python,true,true,false,2,false,true,false,false,31 +wrobell/remt,wrobell,Python,true,true,false,1,false,true,false,false,30 +charts/auto-deploy-app,charts,Smarty,true,false,false,2,false,true,false,true,19 +BuildGrid/buildgrid,BuildGrid,Python,true,true,false,3,false,true,true,false,145 +NullVoxPopuli/emberclear,NullVoxPopuli,TypeScript,false,false,false,0,false,false,false,false,1 +jensstein/oandbackup,jensstein,Java,true,false,false,4,true,true,false,false,114 +mindfulness-at-the-computer/mindfulness-at-the-computer,mindfulness-at-the-computer,Python,true,true,false,1,false,true,false,false,33 +hector.giron08/primeros-pasos-de-python,hector.giron08,CSS,true,false,false,2,false,false,true,false,38 +inbitcoin/lighter,inbitcoin,Python,true,false,false,1,false,true,false,false,32 +datadrivendiscovery/d3m,datadrivendiscovery,Python,true,false,false,2,true,false,true,false,171 +psono/psono-server,psono,Python,true,true,false,4,true,true,true,true,222 +fdroid/artwork,fdroid,Shell,true,false,false,1,false,false,true,false,10 +mibitzi/weiqi.gs,mibitzi,Python,true,true,false,1,false,true,false,false,16 +stavros/sonoff,stavros,C++,true,false,false,1,false,true,false,false,10 +andrewbanchich/forty-jekyll-theme,andrewbanchich,CSS,true,false,false,1,true,false,false,false,12 +passit/passit-frontend,passit,TypeScript,true,false,false,4,false,true,true,true,224 +marco_turi/ionic2-boilerplate,marco_turi,JavaScript,true,false,false,2,false,true,true,false,50 +metachris/python-boilerplate-templates,metachris,Python,true,true,false,2,false,true,true,false,36 +Project-FiFo/FiFo/vmadm,Project-FiFo,Rust,true,false,false,2,false,true,false,false,54 +kachkaev/website-frontend,kachkaev,TypeScript,true,false,false,2,false,false,false,false,33 +gitlab-org/build/CNG,gitlab-org,Shell,true,false,false,13,false,true,false,true,991 +ElenQ/artodon,ElenQ,Clojure,true,false,false,1,false,true,false,false,17 +4144/Nemo,4144,Python,true,false,false,1,false,true,false,false,29 +konrad.mrozek/cljfmt-graalvm,konrad.mrozek,Clojure,true,false,false,1,false,false,false,true,14 +semkodev/nelson.cli,semkodev,JavaScript,true,false,false,3,false,true,false,true,85 +openpowerlifting/opl-data,openpowerlifting,HTML,true,false,false,2,false,true,true,false,38 +KevinRoebert/ClearUrls,KevinRoebert,JavaScript,true,false,false,2,true,false,true,false,66 +bor-sh/git-gitlab,bor-sh,Python,true,false,false,2,false,true,true,false,41 +nishtahir/linkbait,nishtahir,Kotlin,true,false,false,3,true,true,false,true,49 +pages/middleman,pages,Ruby,true,false,false,1,false,true,false,false,26 +SingularityIO/LootBoxAPI,SingularityIO,JavaScript,true,false,false,1,false,true,false,false,8 +axet/android-torrent-client,axet,Java,true,false,false,1,false,false,true,false,9 +bullbytes/scala-js-example,bullbytes,Scala,true,false,false,2,false,true,true,false,47 +fast-science/background-removal-server,fast-science,JavaScript,true,false,false,1,false,false,true,false,25 +catalyst-it/vagrant-lxd,catalyst-it,Ruby,true,false,false,1,false,true,false,false,13 +ar-/apple-flinger,ar-,Java,true,false,false,3,true,true,false,false,99 +enigmail/enigmail,enigmail,JavaScript,true,false,false,1,false,true,false,false,91 +pdftk-java/pdftk,pdftk-java,Java,true,false,false,2,false,true,true,false,70 +autokent/pdf-parse,autokent,JavaScript,true,false,false,5,false,true,false,true,94 +uni10/uni10,uni10,C++,true,false,false,3,true,true,true,false,83 +gitlab-org/security-products/codequality,gitlab-org,Shell,true,false,false,2,false,true,false,true,49 +Andrea.Ligios/Wiki2PDF,Andrea.Ligios,,true,false,false,1,false,true,false,false,316 +DavidGriffith/minipro,DavidGriffith,Objective-C,true,false,false,1,false,false,true,false,11 +rc0r/afl-utils,rc0r,Python,true,false,false,1,false,true,false,false,29 +xomachine/SteamForwarder,xomachine,Nim,true,false,false,2,false,true,true,false,104 +vala-panel-project/vala-panel-appmenu,vala-panel-project,C,true,false,false,2,true,false,false,true,94 +Douman/yukikaze,Douman,Rust,true,false,false,1,false,true,false,false,13 +cameronnemo/brillo,cameronnemo,C,true,false,false,2,true,false,false,false,22 +xiayesuifeng/v2rayxplus,xiayesuifeng,Go,true,false,false,2,true,true,false,false,35 +ColinDuquesnoy/MellowPlayer,ColinDuquesnoy,C++,true,false,false,5,true,true,true,false,117 +inkscape/extensions,inkscape,Python,true,false,false,3,false,true,true,false,107 +gitlab-org/gitlab-git-http-server,gitlab-org,Go,true,false,false,1,false,true,false,false,2 +sane-project/backends,sane-project,C,true,false,false,4,false,false,false,true,135 +dennis-hamester/scd,dennis-hamester,C++,true,false,false,1,true,false,false,false,29 +oath-toolkit/oath-toolkit,oath-toolkit,C,true,false,false,1,false,true,false,false,7 +arturbosch/detekt,arturbosch,Kotlin,true,false,false,1,true,false,false,false,24 +aossie/CarbonFootprint-API,aossie,JavaScript,true,false,false,3,true,true,true,false,58 +cypress-io/cypress-example-docker-gitlab,cypress-io,JavaScript,true,false,false,2,true,true,false,false,70 +ayufan/gitlab-compose-kit,ayufan,Shell,true,false,false,1,false,true,false,false,54 +stolea/android-gitlab-ci,stolea,Java,true,false,false,2,true,true,false,false,46 +davidbittner/Screens,davidbittner,C++,true,false,false,1,true,false,false,false,20 +joneshf/purty,joneshf,Haskell,true,false,false,1,true,false,false,false,25 +sawyerf/Youtube_subscription_manager,sawyerf,Python,true,false,false,2,true,true,false,false,50 +mdds/mdds,mdds,C++,true,false,false,1,true,false,false,false,14 +blackfish/blackfish,blackfish,CSS,true,false,false,1,false,false,true,false,12 +tstivers/GitLab.NET,tstivers,C#,true,false,false,2,true,true,false,false,42 +pmjones/ext-request,pmjones,C,true,false,false,1,false,true,false,false,51 +susurrus/serialport-rs,susurrus,Rust,true,false,false,2,true,false,false,false,298 +gitlab-com/gitlab-com-infrastructure,gitlab-com,HCL,true,false,false,6,false,true,false,false,1233 +flectra-hq/extra-addons,flectra-hq,Python,true,true,false,1,false,true,false,false,17 +fediverse/fediverse.gitlab.io,fediverse,HTML,true,false,false,3,true,true,true,false,63 +AtomMC/Atom,AtomMC,Java,true,false,false,1,false,true,false,false,9 +drizzt/vps2arch,drizzt,Shell,true,false,false,2,true,true,false,false,59 +eidheim/Simple-WebSocket-Server,eidheim,C++,true,false,false,1,false,true,false,false,36 +librebob/athenaeum,librebob,Python,true,true,false,1,false,true,false,false,14 +postmarketOS/pmaports,postmarketOS,Shell,true,false,false,3,false,true,false,false,145 +PushFish/PushFish-API,PushFish,Python,true,true,false,3,true,true,false,true,68 +lobaro/iot-dashboard,lobaro,JavaScript,true,false,false,3,true,false,true,true,68 +gitlab-examples/docker-cloud,gitlab-examples,Ruby,true,false,false,2,true,true,false,false,50 +crowdcontrol/crowdcontrol,crowdcontrol,HTML,true,false,false,1,false,true,false,false,15 +itxtech/genisys,itxtech,PHP,true,false,false,1,false,false,false,false,18 +aossie/Agora,aossie,Scala,true,false,false,1,false,true,false,false,19 +pages/mkdocs,pages,,true,false,false,1,false,true,false,false,17 +ulm0/gitlab-runner,ulm0,Shell,true,false,false,5,false,true,false,false,104 +sysu-gitlab/latex-group/thesis,sysu-gitlab,TeX,true,false,false,1,true,false,false,false,50 +DMore/behat-chrome-extension,DMore,PHP,true,false,false,1,false,true,false,false,30 +cordite/cordite,cordite,Kotlin,true,false,false,6,true,true,true,true,458 +kadence/kadence,kadence,JavaScript,true,false,false,2,false,true,false,false,27 +pycqa/flake8-docstrings,pycqa,Python,true,false,false,1,false,true,false,false,26 +jekyll-themes/default-bundler,jekyll-themes,CSS,true,false,false,2,false,true,true,false,32 +rusty-binder/rusty-binder,rusty-binder,Rust,true,false,false,2,false,true,true,false,36 +luisfuentes/resume,luisfuentes,CSS,true,false,false,1,false,true,false,false,14 +pages/hakyll,pages,Haskell,true,false,false,1,false,true,false,false,31 +foodsharing-dev/foodsharing,foodsharing-dev,PHP,true,false,false,5,true,true,true,false,227 +antora/antora-ui-default,antora,CSS,true,false,false,3,false,false,true,false,55 +juhani/go-semrel-gitlab,juhani,Go,true,false,false,4,true,false,false,true,174 +skillcamp/gitnotes,skillcamp,JavaScript,true,false,false,1,false,true,false,false,17 +RedFred7/Jongleur,RedFred7,Ruby,true,false,false,1,false,true,false,false,26 +leogx9r/DiscordCrypt,leogx9r,JavaScript,true,false,false,3,true,true,true,false,67 +PoroCYon/Altar.NET,PoroCYon,C#,true,false,false,2,false,true,true,false,31 +gitlab-org/trello-power-up,gitlab-org,JavaScript,true,false,false,2,false,true,true,false,17 +yorickpeterse/oga,yorickpeterse,Ruby,true,false,false,1,false,true,false,false,41 +Manu343726/tinyrefl,Manu343726,C++,true,false,false,4,false,true,false,false,343 +weitzman/drupal-test-traits,weitzman,PHP,true,false,false,1,false,true,false,false,29 +gitlab-org/gitlab-ui,gitlab-org,JavaScript,true,false,false,6,true,true,true,true,245 +xphnx/twelf_cm12_theme,xphnx,Shell,true,false,false,1,false,true,false,false,24 +passit/passit-backend,passit,Python,true,false,false,2,false,true,false,false,67 +gitlab-org/gitlab-qa,gitlab-org,Ruby,true,false,false,4,false,true,false,true,867 +Serenata/Serenata,Serenata,PHP,true,false,false,3,true,true,false,false,148 +stp-team/systemtestportal-webapp,stp-team,Go,true,false,false,9,false,true,false,true,523 +dekkoproject/dekko,dekkoproject,C++,true,false,false,1,false,false,false,false,40 +librespacefoundation/satnogs/satnogs-network,librespacefoundation,Python,true,true,false,5,true,true,true,false,138 +code-stats/code-stats,code-stats,Elixir,true,false,false,1,false,true,false,false,73 +libtiff/libtiff,libtiff,C,true,false,false,2,true,false,false,false,35 +shagu/pfQuest,shagu,Lua,true,false,false,1,false,true,false,false,72 +altom/altunitytester,altom,C#,true,false,false,4,true,true,true,false,242 +aossie/CarbonFootprint,aossie,JavaScript,true,false,false,1,false,true,false,false,18 +pantomath-io/demo-tools,pantomath-io,Makefile,true,false,false,2,true,true,false,false,60 +b0/spectral,b0,C++,true,false,false,1,true,false,false,false,72 +Laravelium/Sitemap,Laravelium,PHP,true,false,false,1,false,true,false,false,63 +juanitobananas/wave-up,juanitobananas,Kotlin,true,false,false,1,true,false,false,false,48 +commonshost/server,commonshost,JavaScript,true,false,false,1,false,true,false,false,16 +gitlab-org/gitlab-monitor,gitlab-org,Ruby,true,false,false,1,false,true,false,false,18 +urn/urn,urn,CommonLisp,true,false,false,1,false,true,false,false,33 +gitlab-org/gitlab-triage,gitlab-org,Ruby,true,false,false,3,false,true,false,false,117 +gambas/gambas,gambas,C,true,false,false,1,false,true,false,false,180 +gitlab-org/gitlab-svgs,gitlab-org,CSS,true,false,false,2,true,false,true,false,84 +charts/gitlab-runner,charts,Smarty,true,false,false,2,false,true,false,true,62 +saalen/highlight,saalen,Lua,true,false,false,1,false,true,false,false,37 +subnetzero/iridium,subnetzero,Rust,true,false,false,2,false,true,false,false,49 +SuperTuxParty/SuperTuxParty,SuperTuxParty,GDScript,true,false,false,2,false,false,true,false,114 +xonotic/xonotic-data.pk3dir,xonotic,C,true,false,false,2,false,true,true,false,81 +manaplus/manaplus,manaplus,C++,true,false,false,3,true,true,false,false,602 +eneiluj/gpxpod-oc,eneiluj,JavaScript,true,false,false,2,false,true,true,false,115 +greysonp/gitlab-ci-android,greysonp,Java,true,false,false,2,true,true,false,false,53 +stuko/ovito,stuko,C++,true,false,false,1,true,false,false,false,17 +kashell/Kawa,kashell,Java,true,false,false,1,false,false,false,false,15 +doctorj/sairen,doctorj,Python,true,true,false,1,false,true,false,false,13 +recalbox/recalbox-emulationstation,recalbox,C++,true,false,false,1,true,false,false,false,17 +ercom/citbx4gitlab,ercom,Shell,true,false,false,2,true,true,false,false,89 +gitlab-org/security-products/sast,gitlab-org,Go,true,false,false,4,true,true,true,false,219 +gitlab-com/support/support-team-meta,gitlab-com,,true,false,false,1,false,false,false,false,22 +Krzysztof-Cieslak/Fornax,Krzysztof-Cieslak,F#,true,false,false,1,false,true,false,false,8 +pages/gatsby,pages,CSS,true,false,false,1,false,true,false,false,15 +apparmor/apparmor,apparmor,Python,true,false,false,2,true,true,false,false,55 +andreynech/dsched,andreynech,Go,true,false,false,2,true,true,false,false,45 +gdroid/gdroidclient,gdroid,Java,true,false,false,2,true,false,false,false,39 +gitlab-org/gitlab_git,gitlab-org,Ruby,true,false,false,1,false,true,false,false,54 +guyzmo/git-repo,guyzmo,Python,true,true,false,1,false,true,false,false,10 +anarcat/wallabako,anarcat,Go,true,false,false,1,true,false,false,false,31 +PPW-2017/ppw-lab,PPW-2017,Python,true,true,false,2,false,true,true,false,38 +allianceauth/allianceauth,allianceauth,Python,true,false,false,2,false,true,true,false,61 +simple-nixos-mailserver/nixos-mailserver,simple-nixos-mailserver,Nix,true,false,false,1,false,true,false,false,65 +inverted3/drum-machine,inverted3,JavaScript,true,false,false,2,true,false,true,false,23 +gitlab-org/cookbook-omnibus-gitlab,gitlab-org,Ruby,true,false,false,2,false,true,false,false,19 +stavros/python-yeelight,stavros,Python,true,false,false,1,false,true,false,false,25 +aossie/MindTheWord,aossie,JavaScript,true,false,false,1,true,false,false,false,21 +pages/nuxt,pages,Vue,true,false,false,1,false,true,false,false,17 +jarv/cmdchallenge,jarv,Roff,true,false,false,3,true,true,true,false,51 +yale-sdmp/vesta,yale-sdmp,Ruby,true,false,false,1,false,true,false,false,42 +bitfireAT/icsdroid,bitfireAT,Kotlin,true,false,false,1,false,true,false,false,18 +xphnx/ameixa,xphnx,Java,true,false,false,2,true,true,false,false,44 +pages/org-mode,pages,EmacsLisp,true,false,false,1,false,true,false,false,18 +EAVISE/lightnet,EAVISE,Python,true,false,false,2,false,true,true,false,75 +pages/sphinx,pages,Python,true,false,false,2,false,true,true,false,22 +latency.at/latencyAt,latency.at,Go,true,false,false,3,true,true,false,false,42 +gilrs-project/gilrs,gilrs-project,Rust,true,false,false,2,false,true,true,false,69 +gitlab-org/takeoff,gitlab-org,Ruby,true,false,false,5,false,true,true,false,118 +luspi/photoqt,luspi,QML,true,false,false,1,false,true,false,false,28 +gpaw/gpaw,gpaw,Python,true,false,false,1,false,true,false,false,19 +pages/pelican,pages,Makefile,true,false,false,2,false,true,true,false,24 +fengshaun/syncopoli,fengshaun,Java,true,false,false,2,true,true,false,false,43 +Kanedias/MARC-FS,Kanedias,C++,true,false,false,9,false,true,false,false,225 +Molcas/OpenMolcas,Molcas,Fortran,true,false,false,2,true,true,false,false,362 +kovri-project/kovri,kovri-project,C++,true,false,false,1,true,false,false,false,42 +freedroid/freedroid-src,freedroid,C,true,false,false,2,false,false,false,false,46 +patkennedy79/flask_recipe_app,patkennedy79,Python,true,false,false,1,false,true,false,false,9 +finestructure/pipeline-trigger,finestructure,Python,true,true,false,3,true,true,false,true,228 +ZeroDot1/CoinBlockerLists,ZeroDot1,Batchfile,true,false,false,1,false,false,true,false,14 +gitmate/open-source/IGitt,gitmate,Python,true,true,false,1,false,true,false,false,49 +vstconsulting/polemarch,vstconsulting,Python,true,true,false,4,false,true,false,true,215 +luongvo209/Awesome-Linux-Software,luongvo209,Python,true,false,false,1,false,false,true,false,21 +akihe/radamsa,akihe,Scheme,true,false,false,1,true,false,false,false,18 +tarampampam/laravel-in-docker,tarampampam,PHP,true,false,false,3,true,true,false,false,183 +redox/redox,redox,Shell,true,false,false,1,false,true,false,false,44 +solarus-games/solarus,solarus-games,C++,true,false,false,1,true,false,false,false,8 +jD91mZM2/termwm,jD91mZM2,Rust,true,false,false,1,false,true,false,false,6 +orchardandgrove-oss/NoMADLogin-AD,orchardandgrove-oss,Swift,true,false,false,1,true,false,false,false,13 +gitlab-org/gitlab-pages,gitlab-org,Go,true,false,false,2,false,true,false,false,91 +pages/pages.gitlab.io,pages,HTML,true,false,false,1,false,false,true,false,11 +NalaGinrut/artanis,NalaGinrut,Scheme,true,false,false,1,false,true,false,false,37 +showcheap/android-ci,showcheap,,true,false,false,1,false,true,false,false,8 +gableroux/unity3d,gableroux,HTML,true,false,false,3,true,true,false,false,164 +formschema/native,formschema,JavaScript,true,false,false,4,true,true,false,true,82 +gitlab-org/release-tools,gitlab-org,Ruby,true,false,false,4,false,true,true,false,181 +dgmcguire/texas,dgmcguire,Elixir,true,false,false,1,false,true,false,false,24 +dalibo/postgresql_anonymizer,dalibo,PLpgSQL,true,false,false,3,true,true,true,false,227 +m2crypto/m2crypto,m2crypto,C,true,false,false,1,false,true,false,false,72 +QEF/q-e,QEF,Fortran,true,false,false,1,false,true,false,false,64 +javallone/regexper-static,javallone,JavaScript,true,false,false,3,true,true,true,false,73 +fdroid/fdroid-website,fdroid,HTML,true,false,false,2,false,false,true,true,198 +CLIUtils/modern-cmake,CLIUtils,,true,false,false,2,false,true,true,false,36 +DDP2-CSUI/assignment,DDP2-CSUI,Java,true,false,false,2,true,true,false,false,112 +nvidia/cuda,nvidia,,true,false,false,4,false,true,true,false,988 +charts/charts.gitlab.io,charts,Ruby,true,false,false,2,false,true,true,false,111 +coldnight/ci-test,coldnight,,true,false,false,1,false,true,false,false,13 +fdroid/repomaker,fdroid,Python,true,true,false,2,false,true,true,false,54 +expliot_framework/expliot,expliot_framework,Python,true,true,false,4,false,false,false,false,131 +financier/financier,financier,JavaScript,true,false,false,6,true,true,true,true,74 +freedesktop-sdk/freedesktop-sdk,freedesktop-sdk,C++,true,false,false,12,false,true,false,true,1011 +veloren/game,veloren,Rust,true,false,false,4,true,true,true,false,265 +noosfero/noosfero,noosfero,Ruby,true,false,false,4,true,true,false,false,195 +pgjones/hypercorn,pgjones,Python,true,false,false,1,false,true,false,false,68 +osslugaru/lugaru,osslugaru,C++,true,false,false,1,true,false,false,false,114 +eneiluj/phonetrack-oc,eneiluj,JavaScript,true,false,false,2,false,true,true,false,115 +GrafX2/grafX2,GrafX2,C,true,false,false,3,true,true,false,false,133 +rosie-pattern-language/rosie,rosie-pattern-language,HTML,true,false,false,2,true,true,false,false,36 +gitmate/open-source/gitmate-2,gitmate,Python,true,true,false,3,false,true,true,true,167 +DMore/chrome-mink-driver,DMore,PHP,true,false,false,1,false,true,false,false,81 +meltano/analytics,meltano,Python,true,false,false,5,false,true,false,false,204 +commento/commento-ce,commento,Go,true,false,false,6,false,false,false,false,114 +mailman/postorius,mailman,Python,true,false,false,1,false,true,false,false,122 +gitlab-examples/review-apps-nginx,gitlab-examples,HTML,true,false,false,4,true,false,false,true,79 +honeyryderchuck/httpx,honeyryderchuck,Ruby,true,false,false,2,false,true,true,false,85 +axet/android-book-reader,axet,Java,true,false,false,1,false,false,true,false,9 +gitlab-com/www-remoteonly-org,gitlab-com,Ruby,true,false,false,1,false,true,false,false,17 +gitlab-examples/ssh-private-key,gitlab-examples,,true,false,false,1,false,true,false,false,66 +gitlab-examples/kubernetes-deploy,gitlab-examples,Shell,true,false,false,1,false,false,true,false,34 +gitlab-examples/php,gitlab-examples,PHP,true,false,false,1,false,true,false,false,41 +prism-break/prism-break,prism-break,HTML,true,false,false,2,true,false,true,false,21 +IvanSanchez/Leaflet.GridLayer.GoogleMutant,IvanSanchez,JavaScript,true,false,false,2,false,true,true,false,28 +axet/android-call-recorder,axet,Java,true,false,false,1,false,false,true,false,9 +ric_harvey/nginx-php-fpm,ric_harvey,Shell,true,false,false,2,false,false,false,false,32 +spacecowboy/Feeder,spacecowboy,Kotlin,true,false,false,3,true,true,true,false,58 +fdroid/privileged-extension,fdroid,Java,true,false,false,1,false,true,false,false,128 +davical-project/davical,davical-project,PHP,true,false,false,2,true,true,false,false,73 +eidheim/Simple-Web-Server,eidheim,C++,true,false,false,1,false,true,false,false,48 +juergens/stabbot,juergens,Python,true,true,false,2,true,false,true,false,43 +gitlab-com/migration,gitlab-com,Shell,true,false,false,1,false,true,false,false,21 +DDP2-CSUI/ddp-lab,DDP2-CSUI,Java,true,false,false,2,true,true,false,false,44 +esr/reposurgeon,esr,Go,true,false,false,1,false,true,false,false,8 +NTPsec/ntpsec,NTPsec,C,true,false,false,2,true,true,false,false,660 +cppit/jucipp,cppit,C++,true,false,false,2,false,true,false,false,50 +pages/hexo,pages,CSS,true,false,false,1,false,true,false,false,19 +gitlab-com/marketing/general,gitlab-com,HTML,true,false,false,1,false,false,true,false,13 +MasterPassword/MasterPassword,MasterPassword,Objective-C,true,false,false,1,true,false,false,false,18 +NebulousLabs/Sia,NebulousLabs,Go,true,false,false,2,false,true,false,false,178 +BuildStream/buildstream,BuildStream,Python,true,false,false,3,false,true,false,true,503 +gableroux/unity3d-gitlab-ci-example,gableroux,C#,true,false,false,3,false,true,true,false,142 +pages/gitbook,pages,,true,false,false,2,false,true,true,false,33 +fdroid/rfp,fdroid,Python,true,false,false,1,false,true,false,false,16 +Remmina/Remmina,Remmina,C,true,false,false,1,true,false,false,false,126 +pdfgrep/pdfgrep,pdfgrep,C++,true,false,false,1,false,true,false,false,35 +gitlab-org/gitlab-workhorse,gitlab-org,Go,true,false,false,1,false,true,false,false,49 +gitlab-org/docker-distribution-pruner,gitlab-org,Go,true,false,false,2,false,true,false,true,32 +xuhaiyang1234/AAK-Cont,xuhaiyang1234,JavaScript,true,false,false,1,false,false,true,false,14 +mbajur/prismo,mbajur,Ruby,true,false,false,2,true,true,false,false,121 +mailman/hyperkitty,mailman,Python,true,false,false,2,false,true,false,false,86 +pikatrack/pikatrack,pikatrack,Ruby,true,false,false,2,true,true,false,false,47 +postmarketOS/pmbootstrap,postmarketOS,Python,true,false,false,3,false,true,false,false,107 +procps-ng/procps,procps-ng,C,true,false,false,1,false,true,false,false,11 +jgkamat/rmsbolt,jgkamat,EmacsLisp,true,false,false,1,false,true,false,false,9 +gitlab-org/gitlab-runner-docker-cleanup,gitlab-org,Go,true,false,false,1,false,true,false,false,7 +sequoia-pgp/sequoia,sequoia-pgp,Rust,true,false,false,1,false,true,false,false,28 +painlessMesh/painlessMesh,painlessMesh,C++,true,false,false,1,false,true,false,false,64 +flectra-hq/flectra,flectra-hq,Python,true,true,false,7,true,true,true,false,269 +gitlab-org/gitlab-shell,gitlab-org,Ruby,true,false,false,1,false,true,false,false,81 +mojo42/Jirafeau,mojo42,PHP,true,false,false,1,false,true,false,false,39 +ganttlab/ganttlab-live,ganttlab,Vue,true,false,false,2,true,false,true,false,61 +antora/antora,antora,JavaScript,true,false,false,2,false,false,false,false,63 +charts/gitlab,charts,Smarty,true,false,false,9,false,true,false,true,932 +pages/plain-html,pages,HTML,true,false,false,1,false,false,true,false,11 +openconnect/ocserv,openconnect,C,true,false,false,2,false,false,true,false,403 +gnutls/gnutls,gnutls,C,true,false,false,1,false,false,false,false,677 +kornelski/babel-preset-php,kornelski,JavaScript,true,false,false,1,false,true,false,false,15 +gitlab-org/gitaly,gitlab-org,Go,true,false,false,3,true,true,false,true,266 +kivymd/KivyMD,kivymd,Python,true,false,false,2,true,true,false,false,112 +muttmua/mutt,muttmua,C,true,false,false,2,true,false,true,false,24 +OpenMW/openmw,OpenMW,C++,true,false,false,1,true,false,false,false,62 +meltano/meltano,meltano,Python,true,true,false,1,false,true,false,false,27 +gitlab-com/support-forum,gitlab-com,,true,false,false,1,false,false,false,false,22 +ase/ase,ase,Python,true,true,false,2,false,true,true,false,154 +Isleward/isleward,Isleward,JavaScript,true,false,false,2,true,true,false,false,68 +pages/jekyll,pages,CSS,true,false,false,2,false,true,true,false,29 +tezos/tezos,tezos,OCaml,true,false,false,5,true,true,false,true,1333 +stavros/Spamnesty,stavros,Python,true,false,false,1,false,true,false,false,35 +gitlab-org/gitlab-design,gitlab-org,HTML,true,false,false,1,false,true,false,false,76 +recalbox/recalbox,recalbox,GLSL,true,false,false,4,true,false,false,true,229 +pages/hugo,pages,HTML,true,false,false,1,false,true,false,false,20 +gitlab-com/runbooks,gitlab-com,Shell,true,false,false,5,false,true,true,false,411 +xhang/gitlab,xhang,Ruby,true,false,false,5,true,true,false,false,558 +technomancy/bussard,technomancy,Lua,false,false,false,0,false,false,false,false,1 +mailman/mailman,mailman,Python,true,false,false,2,false,true,true,false,87 +fdroid/fdroidserver,fdroid,Python,true,false,false,1,false,true,false,false,231 +esr/open-adventure,esr,C,true,false,false,3,true,true,true,false,103 +mayan-edms/mayan-edms,mayan-edms,Python,true,true,false,8,false,true,true,false,314 +gitlab-org/gitlab-ci,gitlab-org,Ruby,true,false,false,1,false,true,false,false,23 +pycqa/flake8,pycqa,Python,true,false,false,3,true,true,false,true,89 +meno/dropzone,meno,JavaScript,true,false,false,2,false,true,true,false,43 +graphviz/graphviz,graphviz,C,true,false,false,3,true,false,true,false,159 +leanlabsio/kanban,leanlabsio,JavaScript,true,false,false,1,true,false,false,false,19 +Rich-Harris/buble,Rich-Harris,JavaScript,true,false,false,1,false,true,false,false,12 +gitlab-org/gitlab-development-kit,gitlab-org,Makefile,true,false,false,3,true,true,false,false,189 +mildlyparallel/pscircle,mildlyparallel,C,true,false,false,1,false,true,false,false,9 +NickBusey/HomelabOS,NickBusey,HTML,true,false,false,1,false,true,false,false,20 +gitlab-org/omnibus-gitlab,gitlab-org,Ruby,true,false,false,3,false,true,false,false,167 +doctorj/interview-questions,doctorj,Python,true,true,false,2,false,true,true,false,26 +fdroid/fdroiddata,fdroid,Python,true,false,false,2,false,true,true,false,144 +gitlab-org/gitlab-ci-yml,gitlab-org,Ruby,true,false,false,1,false,true,false,false,4 +pgjones/quart,pgjones,Python,true,false,false,1,false,true,false,false,25 +gitlab-com/www-gitlab-com,gitlab-com,HTML,true,false,false,2,true,false,true,false,480 +gitlab-org/gitter/webapp,gitlab-org,JavaScript,true,false,false,6,false,true,true,false,445 +Commit451/LabCoat,Commit451,Kotlin,true,false,false,3,true,true,true,false,41 +rosarior/awesome-django,rosarior,Makefile,true,false,false,1,false,true,false,false,8 +inkscape/inkscape,inkscape,C++,true,false,false,3,true,true,true,false,271 +fdroid/fdroidclient,fdroid,Java,true,false,false,2,false,true,true,false,146 +gitlab-org/gitlab-runner,gitlab-org,Go,false,false,false,0,false,false,false,false,22 +Cacophony/Pong,Cacophony,Go,true,false,false,5,true,true,true,false,153 +edgyemma/Postmill,edgyemma,PHP,true,false,false,6,false,true,false,true,189 +european-data-portal/ckan-dcatap-schema,european-data-portal,,true,false,false,1,false,false,true,false,4 +european-data-portal/metadata-quality-assurance,european-data-portal,Java,true,false,true,2,false,true,true,false,13 +failmap/failmap,failmap,Python,true,true,false,4,true,true,false,true,271 +gioxa/oc-runner/oc-runner,gioxa,C,true,false,false,9,true,false,false,true,444 +gitlab-com/gitlab-docs,gitlab-com,HTML,true,false,false,5,true,true,true,false,511 +gnuwget/wget2,gnuwget,C,true,false,false,2,false,false,false,false,628 +interscity/interscity-platform/resource-adaptor,interscity,Ruby,true,false,false,1,false,true,false,false,41 +raxa/raxa,raxa,TypeScript,true,false,false,1,true,false,false,false,35 +remal/name.remal.gradle-plugins,remal,Kotlin,true,false,false,6,true,true,false,true,138 +romangrothausmann/FacetAnalyser,romangrothausmann,C++,true,false,false,3,true,true,false,true,77 +teuteuf/SpotTheDefuser,teuteuf,C#,true,false,false,4,true,true,false,false,117 +ucl-peach-public/trialslink,ucl-peach-public,Java,true,false,true,3,true,true,false,false,90 +wpdesk/wc-helpers,wpdesk,PHP,true,false,false,5,false,true,true,false,310 +wpdesk/wp-builder,wpdesk,PHP,false,false,false,0,false,false,false,false,8 +ydkn/capistrano-git-copy-bundle,ydkn,Ruby,true,false,false,3,true,false,false,false,41 diff --git a/datasets/rq3-analysis/rq3-results-analysis.txt b/datasets/rq3-analysis/rq3-results-analysis.txt new file mode 100644 index 0000000..0fc9587 --- /dev/null +++ b/datasets/rq3-analysis/rq3-results-analysis.txt @@ -0,0 +1,157 @@ +Analyzable projects: 5176 + +### Describe dataset ### +Analyzable repositories: 5176 +Analyzable repositories (Versioning): 863 +Analyzable owners: 3535 +Analyzable owners (Versioning): 654 +YML-size (25%): 15.0 +YML-size (75%): 55.0 + +### Full-analysis of smells ### +-> Overall +#smells: 2874 +#smelly-projects: 680 +#smelly-owners: 501 + +-> Versioning +#smells: 1569(54.6%) +#smelly-projects: 320(37.1%) +#smelly-owners: 242(37.0%) + +-> Job-Allow-Failure +#smells: 633(22.0%) +#smelly-projects: 282(5.4%) +#smelly-owners: 217(6.1%) + +-> Job-Retry +#smells: 532(18.5%) +#smelly-projects: 82(1.6%) +#smelly-owners: 52(1.5%) + +-> Manual-Job +#smells: 140(4.9%) +#smelly-projects: 69(1.3%) +#smelly-owners: 56(1.6%) + +### YAML-size-based clustering analysis ### + +-> Projects (small yaml) +#smells: 218(7.6%) +#smelly-projects: 67(9.9%) +#smelly-owners: 52(10.4%) +-> Versioning +#smells: 206(13.1%) +-> Job-Allow-Failure +#smells: 5(0.8%) +-> Job-Retry +#smells: 2(0.4%) +-> Manual-Job +#smells: 5(3.6%) + +-> Projects (medium yaml) +#smells: 653(22.7%) +#smelly-projects: 208(30.6%) +#smelly-owners: 181(36.1%) +-> Versioning +#smells: 564(35.9%) +-> Job-Allow-Failure +#smells: 70(11.1%) +-> Job-Retry +#smells: 5(0.9%) +-> Manual-Job +#smells: 14(10.0%) + +-> Projects (long yaml) +#smells: 2003(69.7%) +#smelly-projects: 405(59.6%) +#smelly-owners: 303(60.5%) +-> Versioning +#smells: 799(50.9%) +-> Job-Allow-Failure +#smells: 558(88.2%) +-> Job-Retry +#smells: 525(98.7%) +-> Manual-Job +#smells: 121(86.4%) + +### YAML-size-based clustering analysis (Big YAML) ### +Analyzable repositories: 1296 +Analyzable repositories (Versioning): 280 +Analyzable owners: 940 +Analyzable owners (Versioning): 226 +#smells: 2003 +#smelly-projects: 405 +#smelly-owners: 303 + +-> Versioning +#smells: 799(39.9%) +#smelly-projects: 126(45.0%) +#smelly-owners: 104(46.0%) + +-> Job-Allow-Failure +#smells: 558(27.9%) +#smelly-projects: 222(17.1%) +#smelly-owners: 173(18.4%) + +-> Job-Retry +#smells: 525(26.2%) +#smelly-projects: 76(5.9%) +#smelly-owners: 47(5.0%) + +-> Manual-Job +#smells: 121(6.0%) +#smelly-projects: 51(3.9%) +#smelly-owners: 39(4.1%) + +# Analysis of versioning issues + +-> overall +tot_incidents: 1569 +affected_files: 379 +tot_yml_incidents: 686(43.72%) +affected_yml_files: 169 +tot_req_incidents: 757(48.25%) +affected_req_files: 167 +tot_pom_incidents: 126(8.03%) +affected_pom_files: 43 + +-> missing +tot_incidents: 1413 +affected_files: 350 +tot_yml_incidents: 684(48.41%) +affected_yml_files: 169 +tot_req_incidents: 609(43.1%) +affected_req_files: 143 +tot_pom_incidents: 120(8.49%) +affected_pom_files: 38 + +-> only-major-number +tot_incidents: 13 +affected_files: 11 +tot_yml_incidents: 0(0.0%) +affected_yml_files: 0 +tot_req_incidents: 7(53.85%) +affected_req_files: 5 +tot_pom_incidents: 6(46.15%) +affected_pom_files: 6 + +-> any-minor-number +tot_incidents: 3 +affected_files: 2 +tot_yml_incidents: 0(0.0%) +affected_yml_files: 0 +tot_req_incidents: 3(100.0%) +affected_req_files: 2 +tot_pom_incidents: 0(0.0%) +affected_pom_files: 0 + +-> any-upper-version +tot_incidents: 140 +affected_files: 40 +tot_yml_incidents: 2(1.43%) +affected_yml_files: 2 +tot_req_incidents: 138(98.57%) +affected_req_files: 38 +tot_pom_incidents: 0(0.0%) +affected_pom_files: 0 \ No newline at end of file diff --git a/datasets/rq3-analysis/rq3-results.csv b/datasets/rq3-analysis/rq3-results.csv new file mode 100644 index 0000000..ad5135c --- /dev/null +++ b/datasets/rq3-analysis/rq3-results.csv @@ -0,0 +1,2896 @@ +ID,Repository Link,Remote Configuration File Link,Local Configuration File Link,Project,Category,Sub-Category,Stage,Entity,Message,Line-Number,Configuration File Name,Owner,Repository Name +cmc_system__cmc__Job-Allow-Failure__deploy,https://gitlab.com/cmc_system/cmc,https://gitlab.com/cmc_system/cmc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cmc_system__cmc/.gitlab-ci.yml,cmc_system__cmc,Job-Allow-Failure,,deploy,deploy,Allows failure of job `deploy` at stage `deploy`,102,.gitlab-ci.yml,cmc_system,cmc_system/cmc +sbarthelemy__conan-public-recipes__Manual-Job__package-toolchain-ubuntu-16-04,https://gitlab.com/sbarthelemy/conan-public-recipes,https://gitlab.com/sbarthelemy/conan-public-recipes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sbarthelemy__conan-public-recipes/.gitlab-ci.yml,sbarthelemy__conan-public-recipes,Manual-Job,,build,package-toolchain:ubuntu-16.04,Manual job `package-toolchain:ubuntu-16.04` at stage `build`,187,.gitlab-ci.yml,sbarthelemy,sbarthelemy/conan-public-recipes +Radiophonix__Radiophonix__Job-Allow-Failure__pages,https://gitlab.com/Radiophonix/Radiophonix,https://gitlab.com/Radiophonix/Radiophonix/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Radiophonix__Radiophonix/.gitlab-ci.yml,Radiophonix__Radiophonix,Job-Allow-Failure,,deploy,pages,Allows failure of job `pages` at stage `deploy`,67,.gitlab-ci.yml,Radiophonix,Radiophonix/Radiophonix +Radiophonix__Radiophonix__Job-Allow-Failure__test-composer-outdated,https://gitlab.com/Radiophonix/Radiophonix,https://gitlab.com/Radiophonix/Radiophonix/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Radiophonix__Radiophonix/.gitlab-ci.yml,Radiophonix__Radiophonix,Job-Allow-Failure,,test,test:composer-outdated,Allows failure of job `test:composer-outdated` at stage `test`,57,.gitlab-ci.yml,Radiophonix,Radiophonix/Radiophonix +Radiophonix__Radiophonix__Job-Allow-Failure__deploy-review,https://gitlab.com/Radiophonix/Radiophonix,https://gitlab.com/Radiophonix/Radiophonix/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Radiophonix__Radiophonix/.gitlab-ci.yml,Radiophonix__Radiophonix,Job-Allow-Failure,,deploy,deploy:review,Allows failure of job `deploy:review` at stage `deploy`,117,.gitlab-ci.yml,Radiophonix,Radiophonix/Radiophonix +trustable__distros__minimal-distro__Versioning__gitlabyaml__pyyaml__missing,https://gitlab.com/trustable/distros/minimal-distro,https://gitlab.com/trustable/distros/minimal-distro/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/trustable__distros__minimal-distro/.gitlab-ci.yml,trustable__distros__minimal-distro,Versioning,missing,,pyyaml,version specifier is missing,292,.gitlab-ci.yml,trustable,trustable/distros/minimal-distro +masakura__issues__Job-Allow-Failure__chrome-branches,https://gitlab.com/masakura/issues,https://gitlab.com/masakura/issues/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/masakura__issues/.gitlab-ci.yml,masakura__issues,Job-Allow-Failure,,test,chrome:branches,Allows failure of job `chrome:branches` at stage `test`,124,.gitlab-ci.yml,masakura,masakura/issues +masakura__issues__Job-Allow-Failure__firefox-branches,https://gitlab.com/masakura/issues,https://gitlab.com/masakura/issues/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/masakura__issues/.gitlab-ci.yml,masakura__issues,Job-Allow-Failure,,test,firefox:branches,Allows failure of job `firefox:branches` at stage `test`,124,.gitlab-ci.yml,masakura,masakura/issues +jankubierecki__UEKPartnership__Versioning__requirementstxt__gunicorn__missing,https://gitlab.com/jankubierecki/UEKPartnership,https://gitlab.com/jankubierecki/UEKPartnership/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jankubierecki__UEKPartnership/requirements.txt,jankubierecki__UEKPartnership,Versioning,missing,,gunicorn,version specifier is missing,4,requirements.txt,jankubierecki,jankubierecki/UEKPartnership +jankubierecki__UEKPartnership__Versioning__requirementstxt__django-admin-list-filter-dropdown__missing,https://gitlab.com/jankubierecki/UEKPartnership,https://gitlab.com/jankubierecki/UEKPartnership/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jankubierecki__UEKPartnership/requirements.txt,jankubierecki__UEKPartnership,Versioning,missing,,django-admin-list-filter-dropdown,version specifier is missing,5,requirements.txt,jankubierecki,jankubierecki/UEKPartnership +jankubierecki__UEKPartnership__Versioning__requirementstxt__django-modeladmin-reorder__missing,https://gitlab.com/jankubierecki/UEKPartnership,https://gitlab.com/jankubierecki/UEKPartnership/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jankubierecki__UEKPartnership/requirements.txt,jankubierecki__UEKPartnership,Versioning,missing,,django-modeladmin-reorder,version specifier is missing,6,requirements.txt,jankubierecki,jankubierecki/UEKPartnership +jankubierecki__UEKPartnership__Versioning__requirementstxt__docker-compose__missing,https://gitlab.com/jankubierecki/UEKPartnership,https://gitlab.com/jankubierecki/UEKPartnership/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jankubierecki__UEKPartnership/requirements.txt,jankubierecki__UEKPartnership,Versioning,missing,,docker-compose,version specifier is missing,10,requirements.txt,jankubierecki,jankubierecki/UEKPartnership +jankubierecki__UEKPartnership__Versioning__gitlabyaml__docker__missing,https://gitlab.com/jankubierecki/UEKPartnership,https://gitlab.com/jankubierecki/UEKPartnership/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jankubierecki__UEKPartnership/.gitlab-ci.yml,jankubierecki__UEKPartnership,Versioning,missing,,docker,version specifier is missing,1,.gitlab-ci.yml,jankubierecki,jankubierecki/UEKPartnership +kimlab__kmbio__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/kmbio,https://gitlab.com/kimlab/kmbio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmbio/.gitlab-ci.yml,kimlab__kmbio,Versioning,missing,,sphinx,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/kmbio +kimlab__kmbio__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/kmbio,https://gitlab.com/kimlab/kmbio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmbio/.gitlab-ci.yml,kimlab__kmbio,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/kmbio +kimlab__kmbio__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/kmbio,https://gitlab.com/kimlab/kmbio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmbio/.gitlab-ci.yml,kimlab__kmbio,Versioning,missing,,recommonmark,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/kmbio +kimlab__kmbio__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/kmbio,https://gitlab.com/kimlab/kmbio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmbio/.gitlab-ci.yml,kimlab__kmbio,Versioning,missing,,nbsphinx,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/kmbio +kimlab__pagnn__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/pagnn,https://gitlab.com/kimlab/pagnn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__pagnn/.gitlab-ci.yml,kimlab__pagnn,Versioning,missing,,sphinx,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/pagnn +kimlab__pagnn__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/pagnn,https://gitlab.com/kimlab/pagnn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__pagnn/.gitlab-ci.yml,kimlab__pagnn,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/pagnn +kimlab__pagnn__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/pagnn,https://gitlab.com/kimlab/pagnn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__pagnn/.gitlab-ci.yml,kimlab__pagnn,Versioning,missing,,recommonmark,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/pagnn +kimlab__pagnn__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/pagnn,https://gitlab.com/kimlab/pagnn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__pagnn/.gitlab-ci.yml,kimlab__pagnn,Versioning,missing,,nbsphinx,version specifier is missing,113,.gitlab-ci.yml,kimlab,kimlab/pagnn +kimlab__pagnn__Job-Allow-Failure__test-py37,https://gitlab.com/kimlab/pagnn,https://gitlab.com/kimlab/pagnn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__pagnn/.gitlab-ci.yml,kimlab__pagnn,Job-Allow-Failure,,test,test-py37,Allows failure of job `test-py37` at stage `test`,93,.gitlab-ci.yml,kimlab,kimlab/pagnn +openrail__uk__common-nodejs__Job-Allow-Failure__code_quality,https://gitlab.com/openrail/uk/common-nodejs,https://gitlab.com/openrail/uk/common-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__common-nodejs/.gitlab-ci.yml,openrail__uk__common-nodejs,Job-Allow-Failure,,deploy,code_quality,Allows failure of job `code_quality` at stage `deploy`,184,.gitlab-ci.yml,openrail,openrail/uk/common-nodejs +openrail__uk__common-nodejs__Job-Allow-Failure__code_coverage,https://gitlab.com/openrail/uk/common-nodejs,https://gitlab.com/openrail/uk/common-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__common-nodejs/.gitlab-ci.yml,openrail__uk__common-nodejs,Job-Allow-Failure,,deploy,code_coverage,Allows failure of job `code_coverage` at stage `deploy`,161,.gitlab-ci.yml,openrail,openrail/uk/common-nodejs +openrail__uk__common-nodejs__Job-Allow-Failure__dependency_scanning,https://gitlab.com/openrail/uk/common-nodejs,https://gitlab.com/openrail/uk/common-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__common-nodejs/.gitlab-ci.yml,openrail__uk__common-nodejs,Job-Allow-Failure,,deploy,dependency_scanning,Allows failure of job `dependency_scanning` at stage `deploy`,208,.gitlab-ci.yml,openrail,openrail/uk/common-nodejs +francois-travais__1tipi2bicycles__Job-Retry__deploy-production,https://gitlab.com/francois.travais/1tipi2bicycles,https://gitlab.com/francois.travais/1tipi2bicycles/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/francois.travais__1tipi2bicycles/.gitlab-ci.yml,francois.travais__1tipi2bicycles,Job-Retry,always,deploy,deploy-production,2,124,.gitlab-ci.yml,francois.travais,francois.travais/1tipi2bicycles +francois-travais__1tipi2bicycles__Job-Retry__build-test,https://gitlab.com/francois.travais/1tipi2bicycles,https://gitlab.com/francois.travais/1tipi2bicycles/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/francois.travais__1tipi2bicycles/.gitlab-ci.yml,francois.travais__1tipi2bicycles,Job-Retry,always,build,build-test,2,17,.gitlab-ci.yml,francois.travais,francois.travais/1tipi2bicycles +francois-travais__1tipi2bicycles__Job-Retry__test,https://gitlab.com/francois.travais/1tipi2bicycles,https://gitlab.com/francois.travais/1tipi2bicycles/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/francois.travais__1tipi2bicycles/.gitlab-ci.yml,francois.travais__1tipi2bicycles,Job-Retry,always,test,test,2,12,.gitlab-ci.yml,francois.travais,francois.travais/1tipi2bicycles +francois-travais__1tipi2bicycles__Job-Retry__build,https://gitlab.com/francois.travais/1tipi2bicycles,https://gitlab.com/francois.travais/1tipi2bicycles/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/francois.travais__1tipi2bicycles/.gitlab-ci.yml,francois.travais__1tipi2bicycles,Job-Retry,always,build,build,2,32,.gitlab-ci.yml,francois.travais,francois.travais/1tipi2bicycles +francois-travais__1tipi2bicycles__Job-Retry__cleanup-production,https://gitlab.com/francois.travais/1tipi2bicycles,https://gitlab.com/francois.travais/1tipi2bicycles/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/francois.travais__1tipi2bicycles/.gitlab-ci.yml,francois.travais__1tipi2bicycles,Job-Retry,always,cleanup,cleanup-production,2,156,.gitlab-ci.yml,francois.travais,francois.travais/1tipi2bicycles +brd-com__brd-js__Job-Allow-Failure__test,https://gitlab.com/brd.com/brd.js,https://gitlab.com/brd.com/brd.js/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/brd.com__brd.js/.gitlab-ci.yml,brd.com__brd.js,Job-Allow-Failure,,test,test,Allows failure of job `test` at stage `test`,27,.gitlab-ci.yml,brd.com,brd.com/brd.js +gitlab-org__gollum-lib__Job-Allow-Failure__test-grit,https://gitlab.com/gitlab-org/gollum-lib,https://gitlab.com/gitlab-org/gollum-lib/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gollum-lib/.gitlab-ci.yml,gitlab-org__gollum-lib,Job-Allow-Failure,,test,test-grit,Allows failure of job `test-grit` at stage `test`,18,.gitlab-ci.yml,gitlab-org,gitlab-org/gollum-lib +mads__Mads-jl__Job-Allow-Failure__test-0-5-0-dev,https://gitlab.com/mads/Mads.jl,https://gitlab.com/mads/Mads.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mads__Mads.jl/.gitlab-ci.yml,mads__Mads.jl,Job-Allow-Failure,,test,test:0.5.0-dev,Allows failure of job `test:0.5.0-dev` at stage `test`,35,.gitlab-ci.yml,mads,mads/Mads.jl +vindarel__abelujo-website__Versioning__requirementstxt__lektor__only-major-number,https://gitlab.com/vindarel/abelujo-website,https://gitlab.com/vindarel/abelujo-website/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vindarel__abelujo-website/requirements.txt,vindarel__abelujo-website,Versioning,only-major-number,,lektor,"version specifier `==1` only refers to a major release, concrete minor versions might be incompatible",1,requirements.txt,vindarel,vindarel/abelujo-website +rolla__xpncms__Job-Allow-Failure__composer,https://gitlab.com/rolla/xpncms,https://gitlab.com/rolla/xpncms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rolla__xpncms/.gitlab-ci.yml,rolla__xpncms,Job-Allow-Failure,,build,composer,Allows failure of job `composer` at stage `build`,30,.gitlab-ci.yml,rolla,rolla/xpncms +rolla__xpncms__Job-Allow-Failure__yarn,https://gitlab.com/rolla/xpncms,https://gitlab.com/rolla/xpncms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rolla__xpncms/.gitlab-ci.yml,rolla__xpncms,Job-Allow-Failure,,build,yarn,Allows failure of job `yarn` at stage `build`,48,.gitlab-ci.yml,rolla,rolla/xpncms +indybay__indybay-active__Manual-Job__build,https://gitlab.com/indybay/indybay-active,https://gitlab.com/indybay/indybay-active/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/indybay__indybay-active/.gitlab-ci.yml,indybay__indybay-active,Manual-Job,,test,build,Manual job `build` at stage `test`,14,.gitlab-ci.yml,indybay,indybay/indybay-active +oleksandromelchuk__rust-osm-reader__Job-Allow-Failure__rust-nightly,https://gitlab.com/oleksandromelchuk/rust-osm-reader,https://gitlab.com/oleksandromelchuk/rust-osm-reader/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/oleksandromelchuk__rust-osm-reader/.gitlab-ci.yml,oleksandromelchuk__rust-osm-reader,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,11,.gitlab-ci.yml,oleksandromelchuk,oleksandromelchuk/rust-osm-reader +iggdrasil__morrigan-ng__Versioning__requirementstxt__pytz__missing,https://gitlab.com/iggdrasil/morrigan-ng,https://gitlab.com/iggdrasil/morrigan-ng/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/iggdrasil__morrigan-ng/requirements.txt,iggdrasil__morrigan-ng,Versioning,missing,,pytz,version specifier is missing,5,requirements.txt,iggdrasil,iggdrasil/morrigan-ng +iggdrasil__morrigan-ng__Versioning__requirementstxt__selenium__missing,https://gitlab.com/iggdrasil/morrigan-ng,https://gitlab.com/iggdrasil/morrigan-ng/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/iggdrasil__morrigan-ng/requirements.txt,iggdrasil__morrigan-ng,Versioning,missing,,selenium,version specifier is missing,10,requirements.txt,iggdrasil,iggdrasil/morrigan-ng +htgoebel__OSD-Neo2__Versioning__requirementstxt__Babel__missing,https://gitlab.com/htgoebel/OSD-Neo2,https://gitlab.com/htgoebel/OSD-Neo2/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/htgoebel__OSD-Neo2/requirements.txt,htgoebel__OSD-Neo2,Versioning,missing,,Babel,version specifier is missing,2,requirements.txt,htgoebel,htgoebel/OSD-Neo2 +jensj__spelltinkle__Versioning__gitlabyaml__jedi__missing,https://gitlab.com/jensj/spelltinkle,https://gitlab.com/jensj/spelltinkle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jensj__spelltinkle/.gitlab-ci.yml,jensj__spelltinkle,Versioning,missing,,jedi,version specifier is missing,4,.gitlab-ci.yml,jensj,jensj/spelltinkle +jensj__spelltinkle__Versioning__gitlabyaml__pygments__missing,https://gitlab.com/jensj/spelltinkle,https://gitlab.com/jensj/spelltinkle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jensj__spelltinkle/.gitlab-ci.yml,jensj__spelltinkle,Versioning,missing,,pygments,version specifier is missing,4,.gitlab-ci.yml,jensj,jensj/spelltinkle +fast_pixelated_detectors__fpd_live_imaging__Job-Allow-Failure__style_checks,https://gitlab.com/fast_pixelated_detectors/fpd_live_imaging,https://gitlab.com/fast_pixelated_detectors/fpd_live_imaging/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fast_pixelated_detectors__fpd_live_imaging/.gitlab-ci.yml,fast_pixelated_detectors__fpd_live_imaging,Job-Allow-Failure,,test,style_checks,Allows failure of job `style_checks` at stage `test`,19,.gitlab-ci.yml,fast_pixelated_detectors,fast_pixelated_detectors/fpd_live_imaging +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__javax-enterprise-cdi-api__missing,https://gitlab.com/rbertoncelj/wildfly-singleton-service,https://gitlab.com/rbertoncelj/wildfly-singleton-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/rbertoncelj__wildfly-singleton-service/pom.xml,rbertoncelj__wildfly-singleton-service,Versioning,missing,,javax.enterprise/cdi-api,version specifier is missing,76,pom.xml,rbertoncelj,rbertoncelj/wildfly-singleton-service +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__org-jboss-spec-javax-ejb-jboss-ejb-api_3-2_spec__missing,https://gitlab.com/rbertoncelj/wildfly-singleton-service,https://gitlab.com/rbertoncelj/wildfly-singleton-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/rbertoncelj__wildfly-singleton-service/pom.xml,rbertoncelj__wildfly-singleton-service,Versioning,missing,,org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec,version specifier is missing,81,pom.xml,rbertoncelj,rbertoncelj/wildfly-singleton-service +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__org-jboss-spec-javax-servlet-jboss-servlet-api_3-1_spec__missing,https://gitlab.com/rbertoncelj/wildfly-singleton-service,https://gitlab.com/rbertoncelj/wildfly-singleton-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/rbertoncelj__wildfly-singleton-service/pom.xml,rbertoncelj__wildfly-singleton-service,Versioning,missing,,org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec,version specifier is missing,114,pom.xml,rbertoncelj,rbertoncelj/wildfly-singleton-service +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__org-jboss-arquillian-junit-arquillian-junit-container__missing,https://gitlab.com/rbertoncelj/wildfly-singleton-service,https://gitlab.com/rbertoncelj/wildfly-singleton-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/rbertoncelj__wildfly-singleton-service/pom.xml,rbertoncelj__wildfly-singleton-service,Versioning,missing,,org.jboss.arquillian.junit/arquillian-junit-container,version specifier is missing,125,pom.xml,rbertoncelj,rbertoncelj/wildfly-singleton-service +rbertoncelj__wildfly-singleton-service__Versioning__com-bertoncelj-wildflysingletonservice-wildfly-singleton-service-1-2-2-SNAPSHOT__org-jboss-arquillian-protocol-arquillian-protocol-servlet__missing,https://gitlab.com/rbertoncelj/wildfly-singleton-service,https://gitlab.com/rbertoncelj/wildfly-singleton-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/rbertoncelj__wildfly-singleton-service/pom.xml,rbertoncelj__wildfly-singleton-service,Versioning,missing,,org.jboss.arquillian.protocol/arquillian-protocol-servlet,version specifier is missing,136,pom.xml,rbertoncelj,rbertoncelj/wildfly-singleton-service +shashankchakelam__NamoDB__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/shashankchakelam/NamoDB,https://gitlab.com/shashankchakelam/NamoDB/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/shashankchakelam__NamoDB/.gitlab-ci.yml,shashankchakelam__NamoDB,Versioning,missing,,virtualenv,version specifier is missing,15,.gitlab-ci.yml,shashankchakelam,shashankchakelam/NamoDB +mayan-edms__cookiecutter-mayan__Versioning__gitlabyaml__cookiecutter__missing,https://gitlab.com/mayan-edms/cookiecutter-mayan,https://gitlab.com/mayan-edms/cookiecutter-mayan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__cookiecutter-mayan/.gitlab-ci.yml,mayan-edms__cookiecutter-mayan,Versioning,missing,,cookiecutter,version specifier is missing,4,.gitlab-ci.yml,mayan-edms,mayan-edms/cookiecutter-mayan +chamilotools__chamilotools__Versioning__requirementstxt__mediawiki__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,mediawiki,version specifier is missing,1,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__requirementstxt__xlrd__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,xlrd,version specifier is missing,2,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__requirementstxt__xlwt__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,xlwt,version specifier is missing,3,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__requirementstxt__bs4__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,bs4,version specifier is missing,4,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__requirementstxt__requests__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,requests,version specifier is missing,7,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__requirementstxt__six__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/requirements.txt,chamilotools__chamilotools,Versioning,missing,,six,version specifier is missing,8,requirements.txt,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__gitlabyaml__pep8__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/.gitlab-ci.yml,chamilotools__chamilotools,Versioning,missing,,pep8,version specifier is missing,5,.gitlab-ci.yml,chamilotools,chamilotools/chamilotools +chamilotools__chamilotools__Versioning__gitlabyaml__pyflakes__missing,https://gitlab.com/chamilotools/chamilotools,https://gitlab.com/chamilotools/chamilotools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/chamilotools__chamilotools/.gitlab-ci.yml,chamilotools__chamilotools,Versioning,missing,,pyflakes,version specifier is missing,5,.gitlab-ci.yml,chamilotools,chamilotools/chamilotools +european-data-portal__licensing-assistant__Versioning__de-fhg-fokus-edp-licensing-service-1-0__javax-inject-javax-inject__only-major-number,https://gitlab.com/european-data-portal/licensing-assistant,https://gitlab.com/european-data-portal/licensing-assistant/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__licensing-assistant/pom.xml,european-data-portal__licensing-assistant,Versioning,only-major-number,,javax.inject/javax.inject,"version specifier `1` only refers to a major release, concrete minor versions might be incompatible",93,pom.xml,european-data-portal,european-data-portal/licensing-assistant +vikserver__vikserver-backend__Job-Allow-Failure__code_quality,https://gitlab.com/vikserver/vikserver-backend,https://gitlab.com/vikserver/vikserver-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vikserver__vikserver-backend/.gitlab-ci.yml,vikserver__vikserver-backend,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,79,.gitlab-ci.yml,vikserver,vikserver/vikserver-backend +barrel__barrel-shopify__Job-Allow-Failure__test_git,https://gitlab.com/barrel/barrel-shopify,https://gitlab.com/barrel/barrel-shopify/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/barrel__barrel-shopify/.gitlab-ci.yml,barrel__barrel-shopify,Job-Allow-Failure,,test,test_git,Allows failure of job `test_git` at stage `test`,4,.gitlab-ci.yml,barrel,barrel/barrel-shopify +pushrocks__smartcli__Job-Allow-Failure__pages,https://gitlab.com/pushrocks/smartcli,https://gitlab.com/pushrocks/smartcli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__smartcli/.gitlab-ci.yml,pushrocks__smartcli,Job-Allow-Failure,,metadata,pages,Allows failure of job `pages` at stage `metadata`,108,.gitlab-ci.yml,pushrocks,pushrocks/smartcli +pushrocks__smartcli__Job-Allow-Failure__codequality,https://gitlab.com/pushrocks/smartcli,https://gitlab.com/pushrocks/smartcli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__smartcli/.gitlab-ci.yml,pushrocks__smartcli,Job-Allow-Failure,,metadata,codequality,Allows failure of job `codequality` at stage `metadata`,79,.gitlab-ci.yml,pushrocks,pushrocks/smartcli +brenddongontijo__SMI-UnB__Versioning__requirementstxt__requests-security-__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,requests[security],version specifier is missing,1,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__numpy__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,numpy,version specifier is missing,5,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__pandas__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,pandas,version specifier is missing,6,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__Sphinx__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,Sphinx,version specifier is missing,7,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__django-polymorphic__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,django-polymorphic,version specifier is missing,8,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__manuel__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,manuel,version specifier is missing,9,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__mpld3__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,mpld3,version specifier is missing,10,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__six__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,six,version specifier is missing,11,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__unipath__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,unipath,version specifier is missing,12,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__django_cron__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,django_cron,version specifier is missing,13,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,matplotlib,version specifier is missing,14,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__djangorestframework__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,djangorestframework,version specifier is missing,15,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__mock__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,mock,version specifier is missing,17,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +brenddongontijo__SMI-UnB__Versioning__requirementstxt__python-boilerplate-dev-__missing,https://gitlab.com/brenddongontijo/SMI-UnB,https://gitlab.com/brenddongontijo/SMI-UnB/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/brenddongontijo__SMI-UnB/requirements.txt,brenddongontijo__SMI-UnB,Versioning,missing,,python-boilerplate[dev],version specifier is missing,19,requirements.txt,brenddongontijo,brenddongontijo/SMI-UnB +tsgkdt__sphinx-plantuml__Versioning__requirementstxt__sphinxbootstrap4theme__any-upper-version,https://gitlab.com/tsgkdt/sphinx-plantuml,https://gitlab.com/tsgkdt/sphinx-plantuml/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tsgkdt__sphinx-plantuml/requirements.txt,tsgkdt__sphinx-plantuml,Versioning,any-upper-version,,sphinxbootstrap4theme,version specifier `>=0.5.0` matches future versions that might become incompatible,1,requirements.txt,tsgkdt,tsgkdt/sphinx-plantuml +burke-software__simple-asymmetric-python__Versioning__requirementstxt__ipdb__missing,https://gitlab.com/burke-software/simple-asymmetric-python,https://gitlab.com/burke-software/simple-asymmetric-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__simple-asymmetric-python/requirements.txt,burke-software__simple-asymmetric-python,Versioning,missing,,ipdb,version specifier is missing,1,requirements.txt,burke-software,burke-software/simple-asymmetric-python +coala__coala-bear-management__Versioning__requirementstxt__coala_bears__any-upper-version,https://gitlab.com/coala/coala-bear-management,https://gitlab.com/coala/coala-bear-management/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__coala-bear-management/requirements.txt,coala__coala-bear-management,Versioning,any-upper-version,,coala_bears,version specifier `>=0.2.1` matches future versions that might become incompatible,1,requirements.txt,coala,coala/coala-bear-management +coala__coala-bear-management__Versioning__requirementstxt__coala_utils__any-upper-version,https://gitlab.com/coala/coala-bear-management,https://gitlab.com/coala/coala-bear-management/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__coala-bear-management/requirements.txt,coala__coala-bear-management,Versioning,any-upper-version,,coala_utils,version specifier `>=0.4.7` matches future versions that might become incompatible,2,requirements.txt,coala,coala/coala-bear-management +coala__coala-bear-management__Versioning__requirementstxt__prompt-toolkit__any-upper-version,https://gitlab.com/coala/coala-bear-management,https://gitlab.com/coala/coala-bear-management/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__coala-bear-management/requirements.txt,coala__coala-bear-management,Versioning,any-upper-version,,prompt-toolkit,version specifier `>=1.0.0` matches future versions that might become incompatible,3,requirements.txt,coala,coala/coala-bear-management +coala__coala-bear-management__Versioning__requirementstxt__Pygments__any-upper-version,https://gitlab.com/coala/coala-bear-management,https://gitlab.com/coala/coala-bear-management/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__coala-bear-management/requirements.txt,coala__coala-bear-management,Versioning,any-upper-version,,Pygments,version specifier `>=2.1.3` matches future versions that might become incompatible,4,requirements.txt,coala,coala/coala-bear-management +jensastrup__pyOutlook__Versioning__requirementstxt__requests__missing,https://gitlab.com/jensastrup/pyOutlook,https://gitlab.com/jensastrup/pyOutlook/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jensastrup__pyOutlook/requirements.txt,jensastrup__pyOutlook,Versioning,missing,,requests,version specifier is missing,1,requirements.txt,jensastrup,jensastrup/pyOutlook +jensastrup__pyOutlook__Versioning__requirementstxt__python-dateutil__missing,https://gitlab.com/jensastrup/pyOutlook,https://gitlab.com/jensastrup/pyOutlook/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jensastrup__pyOutlook/requirements.txt,jensastrup__pyOutlook,Versioning,missing,,python-dateutil,version specifier is missing,2,requirements.txt,jensastrup,jensastrup/pyOutlook +IPMsim__Virtual-IPM__Versioning__requirementstxt__anna__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,anna,version specifier is missing,1,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__ionics__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,ionics,version specifier is missing,3,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,matplotlib,version specifier is missing,4,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__numpy__any-upper-version,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,any-upper-version,,numpy,version specifier `>=1.14.1` matches future versions that might become incompatible,5,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__pandas__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,pandas,version specifier is missing,6,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__pyhocon__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,pyhocon,version specifier is missing,7,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__rx__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,rx,version specifier is missing,8,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__scipy__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,scipy,version specifier is missing,9,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__requirementstxt__six__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/requirements.txt,IPMsim__Virtual-IPM,Versioning,missing,,six,version specifier is missing,10,requirements.txt,IPMsim,IPMsim/Virtual-IPM +IPMsim__Virtual-IPM__Versioning__gitlabyaml__Sphinx__missing,https://gitlab.com/IPMsim/Virtual-IPM,https://gitlab.com/IPMsim/Virtual-IPM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/IPMsim__Virtual-IPM/.gitlab-ci.yml,IPMsim__Virtual-IPM,Versioning,missing,,Sphinx,version specifier is missing,7,.gitlab-ci.yml,IPMsim,IPMsim/Virtual-IPM +samba__webapptitude__Versioning__requirementstxt__babel__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,babel,version specifier is missing,1,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__google-api-python-client__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,google-api-python-client,version specifier is missing,2,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__oauth2client__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,oauth2client,version specifier is missing,3,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__dnsq__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,dnsq,version specifier is missing,4,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__stripe__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,stripe,version specifier is missing,5,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__urllib3-secure-__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,urllib3[secure],version specifier is missing,6,requirements.txt,samba,samba/webapptitude +samba__webapptitude__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/samba/webapptitude,https://gitlab.com/samba/webapptitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/samba__webapptitude/requirements.txt,samba__webapptitude,Versioning,missing,,Pillow,version specifier is missing,7,requirements.txt,samba,samba/webapptitude +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__ssh2__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,ssh2,version specifier is missing,23,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__ipaddress__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,ipaddress,version specifier is missing,23,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__distro__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,distro,version specifier is missing,23,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__six__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,six,version specifier is missing,23,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__future__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,future,version specifier is missing,23,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +rh-kernel-stqe__python-libsan__Versioning__gitlabyaml__python__missing,https://gitlab.com/rh-kernel-stqe/python-libsan,https://gitlab.com/rh-kernel-stqe/python-libsan/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-libsan/.gitlab-ci.yml,rh-kernel-stqe__python-libsan,Versioning,missing,,python,version specifier is missing,21,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-libsan +universe6__selfstudythai__Manual-Job__pages,https://gitlab.com/universe6/selfstudythai,https://gitlab.com/universe6/selfstudythai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/universe6__selfstudythai/.gitlab-ci.yml,universe6__selfstudythai,Manual-Job,,test,pages,Manual job `pages` at stage `test`,3,.gitlab-ci.yml,universe6,universe6/selfstudythai +lightningwolf__lightningwolf-sds__Versioning__gitlabyaml__Sphinx__missing,https://gitlab.com/lightningwolf/lightningwolf-sds,https://gitlab.com/lightningwolf/lightningwolf-sds/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lightningwolf__lightningwolf-sds/.gitlab-ci.yml,lightningwolf__lightningwolf-sds,Versioning,missing,,Sphinx,version specifier is missing,101,.gitlab-ci.yml,lightningwolf,lightningwolf/lightningwolf-sds +vnphp__geocoder-bundle__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/geocoder-bundle,https://gitlab.com/vnphp/geocoder-bundle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__geocoder-bundle/.gitlab-ci.yml,vnphp__geocoder-bundle,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/geocoder-bundle +martynbristow__gabbi__Versioning__requirementstxt__pbr__missing,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,missing,,pbr,version specifier is missing,1,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__six__missing,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,missing,,six,version specifier is missing,3,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,missing,,PyYAML,version specifier is missing,4,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__urllib3__any-upper-version,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,any-upper-version,,urllib3,version specifier `>=1.11.0` matches future versions that might become incompatible,5,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__jsonpath-rw-ext__any-upper-version,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,any-upper-version,,jsonpath-rw-ext,version specifier `>=1.0.0` matches future versions that might become incompatible,6,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__wsgi-intercept__any-upper-version,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,any-upper-version,,wsgi-intercept,version specifier `>=1.2.2` matches future versions that might become incompatible,7,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__colorama__missing,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,missing,,colorama,version specifier is missing,8,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Versioning__requirementstxt__testtools__missing,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/requirements.txt,martynbristow__gabbi,Versioning,missing,,testtools,version specifier is missing,9,requirements.txt,martynbristow,martynbristow/gabbi +martynbristow__gabbi__Job-Allow-Failure__lint_job,https://gitlab.com/martynbristow/gabbi,https://gitlab.com/martynbristow/gabbi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/martynbristow__gabbi/.gitlab-ci.yml,martynbristow__gabbi,Job-Allow-Failure,,lint,lint_job,Allows failure of job `lint_job` at stage `lint`,8,.gitlab-ci.yml,martynbristow,martynbristow/gabbi +vnphp__fragment-bundle__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/fragment-bundle,https://gitlab.com/vnphp/fragment-bundle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__fragment-bundle/.gitlab-ci.yml,vnphp__fragment-bundle,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/fragment-bundle +vnphp__calendar__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/calendar,https://gitlab.com/vnphp/calendar/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__calendar/.gitlab-ci.yml,vnphp__calendar,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/calendar +lambdait__slack-vk-bot__Versioning__requirementstxt__flask__missing,https://gitlab.com/lambdait/slack-vk-bot,https://gitlab.com/lambdait/slack-vk-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__slack-vk-bot/requirements.txt,lambdait__slack-vk-bot,Versioning,missing,,flask,version specifier is missing,1,requirements.txt,lambdait,lambdait/slack-vk-bot +lambdait__slack-vk-bot__Versioning__requirementstxt__slacker__missing,https://gitlab.com/lambdait/slack-vk-bot,https://gitlab.com/lambdait/slack-vk-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__slack-vk-bot/requirements.txt,lambdait__slack-vk-bot,Versioning,missing,,slacker,version specifier is missing,2,requirements.txt,lambdait,lambdait/slack-vk-bot +lambdait__slack-vk-bot__Versioning__requirementstxt__vk__missing,https://gitlab.com/lambdait/slack-vk-bot,https://gitlab.com/lambdait/slack-vk-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__slack-vk-bot/requirements.txt,lambdait__slack-vk-bot,Versioning,missing,,vk,version specifier is missing,3,requirements.txt,lambdait,lambdait/slack-vk-bot +lambdait__slack-vk-bot__Versioning__requirementstxt__gunicorn__missing,https://gitlab.com/lambdait/slack-vk-bot,https://gitlab.com/lambdait/slack-vk-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__slack-vk-bot/requirements.txt,lambdait__slack-vk-bot,Versioning,missing,,gunicorn,version specifier is missing,4,requirements.txt,lambdait,lambdait/slack-vk-bot +painless-software__painless-continuous-delivery__Job-Allow-Failure__bandit,https://gitlab.com/painless-software/painless-continuous-delivery,https://gitlab.com/painless-software/painless-continuous-delivery/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/painless-software__painless-continuous-delivery/.gitlab-ci.yml,painless-software__painless-continuous-delivery,Job-Allow-Failure,,check,bandit,Allows failure of job `bandit` at stage `check`,36,.gitlab-ci.yml,painless-software,painless-software/painless-continuous-delivery +HyphanBot__HyphanBot__Versioning__requirementstxt__python-telegram-bot__any-upper-version,https://gitlab.com/HyphanBot/HyphanBot,https://gitlab.com/HyphanBot/HyphanBot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/HyphanBot__HyphanBot/requirements.txt,HyphanBot__HyphanBot,Versioning,any-upper-version,,python-telegram-bot,version specifier `>=8.0.0` matches future versions that might become incompatible,1,requirements.txt,HyphanBot,HyphanBot/HyphanBot +HyphanBot__HyphanBot__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/HyphanBot/HyphanBot,https://gitlab.com/HyphanBot/HyphanBot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/HyphanBot__HyphanBot/requirements.txt,HyphanBot__HyphanBot,Versioning,missing,,pyyaml,version specifier is missing,2,requirements.txt,HyphanBot,HyphanBot/HyphanBot +rubdos__pyreflink__Versioning__requirementstxt__cffi__missing,https://gitlab.com/rubdos/pyreflink,https://gitlab.com/rubdos/pyreflink/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rubdos__pyreflink/requirements.txt,rubdos__pyreflink,Versioning,missing,,cffi,version specifier is missing,1,requirements.txt,rubdos,rubdos/pyreflink +mario-kart-analyzer__datacollector__Versioning__requirementstxt__tensorflow__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,tensorflow,version specifier is missing,1,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__prettytensor__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,prettytensor,version specifier is missing,2,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,matplotlib,version specifier is missing,3,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__sklearn__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,sklearn,version specifier is missing,4,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__numpy__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,numpy,version specifier is missing,5,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__pyocr__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,pyocr,version specifier is missing,7,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +mario-kart-analyzer__datacollector__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/mario-kart-analyzer/datacollector,https://gitlab.com/mario-kart-analyzer/datacollector/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mario-kart-analyzer__datacollector/requirements.txt,mario-kart-analyzer__datacollector,Versioning,missing,,Pillow,version specifier is missing,8,requirements.txt,mario-kart-analyzer,mario-kart-analyzer/datacollector +vnphp__fineproxy__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/fineproxy,https://gitlab.com/vnphp/fineproxy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__fineproxy/.gitlab-ci.yml,vnphp__fineproxy,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/fineproxy +signal9__cpp-env__Manual-Job__build,https://gitlab.com/signal9/cpp-env,https://gitlab.com/signal9/cpp-env/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/signal9__cpp-env/.gitlab-ci.yml,signal9__cpp-env,Manual-Job,,build,build,Manual job `build` at stage `build`,4,.gitlab-ci.yml,signal9,signal9/cpp-env +finding-ray__proto__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/finding-ray/proto,https://gitlab.com/finding-ray/proto/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__proto/requirements.txt,finding-ray__proto,Versioning,missing,,sphinx,version specifier is missing,2,requirements.txt,finding-ray,finding-ray/proto +finding-ray__proto__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/finding-ray/proto,https://gitlab.com/finding-ray/proto/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__proto/requirements.txt,finding-ray__proto,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,3,requirements.txt,finding-ray,finding-ray/proto +zetok__disk_io__Job-Allow-Failure__rust_beta,https://gitlab.com/zetok/disk_io,https://gitlab.com/zetok/disk_io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/zetok__disk_io/.gitlab-ci.yml,zetok__disk_io,Job-Allow-Failure,,test,rust_beta,Allows failure of job `rust_beta` at stage `test`,19,.gitlab-ci.yml,zetok,zetok/disk_io +zetok__disk_io__Job-Allow-Failure__rust_nightly,https://gitlab.com/zetok/disk_io,https://gitlab.com/zetok/disk_io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/zetok__disk_io/.gitlab-ci.yml,zetok__disk_io,Job-Allow-Failure,,test,rust_nightly,Allows failure of job `rust_nightly` at stage `test`,28,.gitlab-ci.yml,zetok,zetok/disk_io +vnphp__request-logger-bundle__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/request-logger-bundle,https://gitlab.com/vnphp/request-logger-bundle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__request-logger-bundle/.gitlab-ci.yml,vnphp__request-logger-bundle,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/request-logger-bundle +vnphp__presenter-bundle__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/presenter-bundle,https://gitlab.com/vnphp/presenter-bundle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__presenter-bundle/.gitlab-ci.yml,vnphp__presenter-bundle,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/presenter-bundle +seeqlabs__api-python__Versioning__gitlabyaml__twine__missing,https://gitlab.com/seeqlabs/api-python,https://gitlab.com/seeqlabs/api-python/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/seeqlabs__api-python/.gitlab-ci.yml,seeqlabs__api-python,Versioning,missing,,twine,version specifier is missing,38,.gitlab-ci.yml,seeqlabs,seeqlabs/api-python +vnphp__media-extension-bundle__Job-Allow-Failure__phpcs,https://gitlab.com/vnphp/media-extension-bundle,https://gitlab.com/vnphp/media-extension-bundle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vnphp__media-extension-bundle/.gitlab-ci.yml,vnphp__media-extension-bundle,Job-Allow-Failure,,test,phpcs,Allows failure of job `phpcs` at stage `test`,10,.gitlab-ci.yml,vnphp,vnphp/media-extension-bundle +equake__aws-spot-fleet-helper__Versioning__requirementstxt__boto3__any-upper-version,https://gitlab.com/equake/aws-spot-fleet-helper,https://gitlab.com/equake/aws-spot-fleet-helper/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/equake__aws-spot-fleet-helper/requirements.txt,equake__aws-spot-fleet-helper,Versioning,any-upper-version,,boto3,version specifier `>=1.4.0` matches future versions that might become incompatible,1,requirements.txt,equake,equake/aws-spot-fleet-helper +equake__aws-spot-fleet-helper__Versioning__requirementstxt__botocore__any-upper-version,https://gitlab.com/equake/aws-spot-fleet-helper,https://gitlab.com/equake/aws-spot-fleet-helper/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/equake__aws-spot-fleet-helper/requirements.txt,equake__aws-spot-fleet-helper,Versioning,any-upper-version,,botocore,version specifier `>=1.4.43` matches future versions that might become incompatible,2,requirements.txt,equake,equake/aws-spot-fleet-helper +NTPsec__blog__Job-Allow-Failure__build_image,https://gitlab.com/NTPsec/blog,https://gitlab.com/NTPsec/blog/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__blog/.gitlab-ci.yml,NTPsec__blog,Job-Allow-Failure,,build,build_image,Allows failure of job `build_image` at stage `build`,23,.gitlab-ci.yml,NTPsec,NTPsec/blog +open-sismo__coordinate-api__Versioning__requirementstxt__-rrequirements-production-txt__missing,https://gitlab.com/open-sismo/coordinate-api,https://gitlab.com/open-sismo/coordinate-api/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/open-sismo__coordinate-api/requirements.txt,open-sismo__coordinate-api,Versioning,missing,,-rrequirements/production.txt,version specifier is missing,-1,requirements.txt,open-sismo,open-sismo/coordinate-api +daniellawrence__go-links__Versioning__requirementstxt__flask__missing,https://gitlab.com/daniellawrence/go-links,https://gitlab.com/daniellawrence/go-links/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/daniellawrence__go-links/requirements.txt,daniellawrence__go-links,Versioning,missing,,flask,version specifier is missing,1,requirements.txt,daniellawrence,daniellawrence/go-links +daniellawrence__go-links__Versioning__requirementstxt__oauth2__missing,https://gitlab.com/daniellawrence/go-links,https://gitlab.com/daniellawrence/go-links/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/daniellawrence__go-links/requirements.txt,daniellawrence__go-links,Versioning,missing,,oauth2,version specifier is missing,2,requirements.txt,daniellawrence,daniellawrence/go-links +daniellawrence__go-links__Versioning__requirementstxt__flask_sqlalchemy__missing,https://gitlab.com/daniellawrence/go-links,https://gitlab.com/daniellawrence/go-links/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/daniellawrence__go-links/requirements.txt,daniellawrence__go-links,Versioning,missing,,flask_sqlalchemy,version specifier is missing,3,requirements.txt,daniellawrence,daniellawrence/go-links +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__tfserver__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,tfserver,version specifier is missing,25,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__tfserver__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,tfserver,version specifier is missing,25,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__tfserver__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,tfserver,version specifier is missing,25,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__tfserver__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,tfserver,version specifier is missing,25,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__aquests__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,aquests,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__rs4__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,rs4,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__sqlphile__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,sqlphile,version specifier is missing,20,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__atila__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,atila,version specifier is missing,23,.gitlab-ci.yml,hansroh,hansroh/skitai +hansroh__skitai__Versioning__gitlabyaml__pymongo__missing,https://gitlab.com/hansroh/skitai,https://gitlab.com/hansroh/skitai/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hansroh__skitai/.gitlab-ci.yml,hansroh__skitai,Versioning,missing,,pymongo,version specifier is missing,26,.gitlab-ci.yml,hansroh,hansroh/skitai +codelibre__schroot__Job-Allow-Failure__debian-unstable,https://gitlab.com/codelibre/schroot,https://gitlab.com/codelibre/schroot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/codelibre__schroot/.gitlab-ci.yml,codelibre__schroot,Job-Allow-Failure,,build,debian:unstable,Allows failure of job `debian:unstable` at stage `build`,27,.gitlab-ci.yml,codelibre,codelibre/schroot +containos__containos__Job-Allow-Failure__qemux86_build,https://gitlab.com/containos/containos,https://gitlab.com/containos/containos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/containos__containos/.gitlab-ci.yml,containos__containos,Job-Allow-Failure,,build,qemux86_build,Allows failure of job `qemux86_build` at stage `build`,78,.gitlab-ci.yml,containos,containos/containos +containos__containos__Job-Allow-Failure__qemux86_test,https://gitlab.com/containos/containos,https://gitlab.com/containos/containos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/containos__containos/.gitlab-ci.yml,containos__containos,Job-Allow-Failure,,test,qemux86_test,Allows failure of job `qemux86_test` at stage `test`,119,.gitlab-ci.yml,containos,containos/containos +containos__containos__Job-Allow-Failure__qemuarm_test,https://gitlab.com/containos/containos,https://gitlab.com/containos/containos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/containos__containos/.gitlab-ci.yml,containos__containos,Job-Allow-Failure,,test,qemuarm_test,Allows failure of job `qemuarm_test` at stage `test`,129,.gitlab-ci.yml,containos,containos/containos +containos__containos__Job-Allow-Failure__qemuarm_build,https://gitlab.com/containos/containos,https://gitlab.com/containos/containos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/containos__containos/.gitlab-ci.yml,containos__containos,Job-Allow-Failure,,build,qemuarm_build,Allows failure of job `qemuarm_build` at stage `build`,78,.gitlab-ci.yml,containos,containos/containos +abre__lorikeet__Versioning__gitlabyaml__poetry__missing,https://gitlab.com/abre/lorikeet,https://gitlab.com/abre/lorikeet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/abre__lorikeet/.gitlab-ci.yml,abre__lorikeet,Versioning,missing,,poetry,version specifier is missing,22,.gitlab-ci.yml,abre,abre/lorikeet +abre__lorikeet__Versioning__gitlabyaml__pre__missing,https://gitlab.com/abre/lorikeet,https://gitlab.com/abre/lorikeet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/abre__lorikeet/.gitlab-ci.yml,abre__lorikeet,Versioning,missing,,pre,version specifier is missing,15,.gitlab-ci.yml,abre,abre/lorikeet +abre__lorikeet__Versioning__gitlabyaml__prospector__missing,https://gitlab.com/abre/lorikeet,https://gitlab.com/abre/lorikeet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/abre__lorikeet/.gitlab-ci.yml,abre__lorikeet,Versioning,missing,,prospector,version specifier is missing,15,.gitlab-ci.yml,abre,abre/lorikeet +jerrya__nextferry__Job-Retry__pages,https://gitlab.com/jerrya/nextferry,https://gitlab.com/jerrya/nextferry/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jerrya__nextferry/.gitlab-ci.yml,jerrya__nextferry,Job-Retry,always,scrape_build_deploy,pages,1,19,.gitlab-ci.yml,jerrya,jerrya/nextferry +runarberg__trompt__Job-Allow-Failure__test-unstable,https://gitlab.com/runarberg/trompt,https://gitlab.com/runarberg/trompt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/runarberg__trompt/.gitlab-ci.yml,runarberg__trompt,Job-Allow-Failure,,test,test:unstable,Allows failure of job `test:unstable` at stage `test`,25,.gitlab-ci.yml,runarberg,runarberg/trompt +runarberg__trompt__Job-Allow-Failure__test-beta,https://gitlab.com/runarberg/trompt,https://gitlab.com/runarberg/trompt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/runarberg__trompt/.gitlab-ci.yml,runarberg__trompt,Job-Allow-Failure,,test,test:beta,Allows failure of job `test:beta` at stage `test`,14,.gitlab-ci.yml,runarberg,runarberg/trompt +Salvus__salvus_seismo__Versioning__gitlabyaml__toml__missing,https://gitlab.com/Salvus/salvus_seismo,https://gitlab.com/Salvus/salvus_seismo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Salvus__salvus_seismo/.gitlab-ci.yml,Salvus__salvus_seismo,Versioning,missing,,toml,version specifier is missing,40,.gitlab-ci.yml,Salvus,Salvus/salvus_seismo +zetok__epaste__Job-Allow-Failure__rust_nightly,https://gitlab.com/zetok/epaste,https://gitlab.com/zetok/epaste/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/zetok__epaste/.gitlab-ci.yml,zetok__epaste,Job-Allow-Failure,,build,rust_nightly,Allows failure of job `rust_nightly` at stage `build`,23,.gitlab-ci.yml,zetok,zetok/epaste +vaghtgir__telegram-cli-binary__Manual-Job__build,https://gitlab.com/vaghtgir/telegram-cli-binary,https://gitlab.com/vaghtgir/telegram-cli-binary/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vaghtgir__telegram-cli-binary/.gitlab-ci.yml,vaghtgir__telegram-cli-binary,Manual-Job,,build,build,Manual job `build` at stage `build`,6,.gitlab-ci.yml,vaghtgir,vaghtgir/telegram-cli-binary +sumner__tracktime__Versioning__gitlabyaml__tracktime__missing,https://gitlab.com/sumner/tracktime,https://gitlab.com/sumner/tracktime/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__tracktime/.gitlab-ci.yml,sumner__tracktime,Versioning,missing,,tracktime,version specifier is missing,18,.gitlab-ci.yml,sumner,sumner/tracktime +sumner__tracktime__Versioning__gitlabyaml__twine__missing,https://gitlab.com/sumner/tracktime,https://gitlab.com/sumner/tracktime/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__tracktime/.gitlab-ci.yml,sumner__tracktime,Versioning,missing,,twine,version specifier is missing,55,.gitlab-ci.yml,sumner,sumner/tracktime +albina-euregio__albina-server__Versioning__eu-albina-albina-0-0-1-SNAPSHOT__org-glassfish-jersey-containers-jersey-container-servlet__missing,https://gitlab.com/albina-euregio/albina-server,https://gitlab.com/albina-euregio/albina-server/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/albina-euregio__albina-server/pom.xml,albina-euregio__albina-server,Versioning,missing,,org.glassfish.jersey.containers/jersey-container-servlet,version specifier is missing,206,pom.xml,albina-euregio,albina-euregio/albina-server +albina-euregio__albina-server__Versioning__eu-albina-albina-0-0-1-SNAPSHOT__org-glassfish-jersey-media-jersey-media-moxy__missing,https://gitlab.com/albina-euregio/albina-server,https://gitlab.com/albina-euregio/albina-server/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/albina-euregio__albina-server/pom.xml,albina-euregio__albina-server,Versioning,missing,,org.glassfish.jersey.media/jersey-media-moxy,version specifier is missing,210,pom.xml,albina-euregio,albina-euregio/albina-server +albina-euregio__albina-server__Versioning__eu-albina-albina-0-0-1-SNAPSHOT__org-glassfish-jersey-inject-jersey-hk2__missing,https://gitlab.com/albina-euregio/albina-server,https://gitlab.com/albina-euregio/albina-server/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/albina-euregio__albina-server/pom.xml,albina-euregio__albina-server,Versioning,missing,,org.glassfish.jersey.inject/jersey-hk2,version specifier is missing,214,pom.xml,albina-euregio,albina-euregio/albina-server +shingonoide__php__Job-Allow-Failure__test-php7-mysql,https://gitlab.com/shingonoide/php,https://gitlab.com/shingonoide/php/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/shingonoide__php/.gitlab-ci.yml,shingonoide__php,Job-Allow-Failure,,test,test:php7:mysql,Allows failure of job `test:php7:mysql` at stage `test`,37,.gitlab-ci.yml,shingonoide,shingonoide/php +openrail__uk__referencedata-nodejs__Job-Allow-Failure__code_quality,https://gitlab.com/openrail/uk/referencedata-nodejs,https://gitlab.com/openrail/uk/referencedata-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__referencedata-nodejs/.gitlab-ci.yml,openrail__uk__referencedata-nodejs,Job-Allow-Failure,,post_test,code_quality,Allows failure of job `code_quality` at stage `post_test`,140,.gitlab-ci.yml,openrail,openrail/uk/referencedata-nodejs +openrail__uk__referencedata-nodejs__Job-Allow-Failure__code_coverage,https://gitlab.com/openrail/uk/referencedata-nodejs,https://gitlab.com/openrail/uk/referencedata-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__referencedata-nodejs/.gitlab-ci.yml,openrail__uk__referencedata-nodejs,Job-Allow-Failure,,post_test,code_coverage,Allows failure of job `code_coverage` at stage `post_test`,122,.gitlab-ci.yml,openrail,openrail/uk/referencedata-nodejs +openrail__uk__referencedata-nodejs__Job-Allow-Failure__dependency_scanning,https://gitlab.com/openrail/uk/referencedata-nodejs,https://gitlab.com/openrail/uk/referencedata-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__referencedata-nodejs/.gitlab-ci.yml,openrail__uk__referencedata-nodejs,Job-Allow-Failure,,post_test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `post_test`,159,.gitlab-ci.yml,openrail,openrail/uk/referencedata-nodejs +robconnolly__hass-config__Job-Allow-Failure__ha-rc,https://gitlab.com/robconnolly/hass-config,https://gitlab.com/robconnolly/hass-config/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/robconnolly__hass-config/.gitlab-ci.yml,robconnolly__hass-config,Job-Allow-Failure,,homeassistant,ha-rc,Allows failure of job `ha-rc` at stage `homeassistant`,111,.gitlab-ci.yml,robconnolly,robconnolly/hass-config +robconnolly__hass-config__Job-Allow-Failure__yamllint,https://gitlab.com/robconnolly/hass-config,https://gitlab.com/robconnolly/hass-config/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/robconnolly__hass-config/.gitlab-ci.yml,robconnolly__hass-config,Job-Allow-Failure,,preflight,yamllint,Allows failure of job `yamllint` at stage `preflight`,63,.gitlab-ci.yml,robconnolly,robconnolly/hass-config +robconnolly__hass-config__Job-Allow-Failure__ha-dev,https://gitlab.com/robconnolly/hass-config,https://gitlab.com/robconnolly/hass-config/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/robconnolly__hass-config/.gitlab-ci.yml,robconnolly__hass-config,Job-Allow-Failure,,homeassistant,ha-dev,Allows failure of job `ha-dev` at stage `homeassistant`,118,.gitlab-ci.yml,robconnolly,robconnolly/hass-config +mgoral__feed-commas__Job-Allow-Failure__test-coverage,https://gitlab.com/mgoral/feed-commas,https://gitlab.com/mgoral/feed-commas/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mgoral__feed-commas/.gitlab-ci.yml,mgoral__feed-commas,Job-Allow-Failure,,test,test-coverage,Allows failure of job `test-coverage` at stage `test`,27,.gitlab-ci.yml,mgoral,mgoral/feed-commas +joshlambert__prometheus-demo__Job-Allow-Failure__stop_review,https://gitlab.com/joshlambert/prometheus-demo,https://gitlab.com/joshlambert/prometheus-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__prometheus-demo/.gitlab-ci.yml,joshlambert__prometheus-demo,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,139,.gitlab-ci.yml,joshlambert,joshlambert/prometheus-demo +joshlambert__prometheus-demo__Job-Allow-Failure__codequality,https://gitlab.com/joshlambert/prometheus-demo,https://gitlab.com/joshlambert/prometheus-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__prometheus-demo/.gitlab-ci.yml,joshlambert__prometheus-demo,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,74,.gitlab-ci.yml,joshlambert,joshlambert/prometheus-demo +gotfix__docker-gitlab__Job-Allow-Failure__lint,https://gitlab.com/gotfix/docker-gitlab,https://gitlab.com/gotfix/docker-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gotfix__docker-gitlab/.gitlab-ci.yml,gotfix__docker-gitlab,Job-Allow-Failure,,lint,lint,Allows failure of job `lint` at stage `lint`,33,.gitlab-ci.yml,gotfix,gotfix/docker-gitlab +audron__YaTWi__Job-Allow-Failure__code_quality,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,101,.gitlab-ci.yml,audron,audron/YaTWi +audron__YaTWi__Job-Allow-Failure__performance,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,137,.gitlab-ci.yml,audron,audron/YaTWi +audron__YaTWi__Job-Allow-Failure__license_management,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,118,.gitlab-ci.yml,audron,audron/YaTWi +audron__YaTWi__Job-Allow-Failure__stop_review,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,269,.gitlab-ci.yml,audron,audron/YaTWi +audron__YaTWi__Job-Allow-Failure__dependency_scanning,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,179,.gitlab-ci.yml,audron,audron/YaTWi +audron__YaTWi__Job-Allow-Failure__container_scanning,https://gitlab.com/audron/YaTWi,https://gitlab.com/audron/YaTWi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/audron__YaTWi/.gitlab-ci.yml,audron__YaTWi,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,200,.gitlab-ci.yml,audron,audron/YaTWi +alelec__python-certifi-win32__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/python-certifi-win32,https://gitlab.com/alelec/python-certifi-win32/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__python-certifi-win32/.gitlab-ci.yml,alelec__python-certifi-win32,Versioning,missing,,twine,version specifier is missing,11,.gitlab-ci.yml,alelec,alelec/python-certifi-win32 +alelec__python-certifi-win32__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/python-certifi-win32,https://gitlab.com/alelec/python-certifi-win32/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__python-certifi-win32/.gitlab-ci.yml,alelec__python-certifi-win32,Versioning,missing,,wheel,version specifier is missing,11,.gitlab-ci.yml,alelec,alelec/python-certifi-win32 +likeno__soko__Versioning__gitlabyaml__twine__missing,https://gitlab.com/likeno/soko,https://gitlab.com/likeno/soko/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/likeno__soko/.gitlab-ci.yml,likeno__soko,Versioning,missing,,twine,version specifier is missing,74,.gitlab-ci.yml,likeno,likeno/soko +rafael-santana__poc-multi-tenant__Job-Allow-Failure__code_quality,https://gitlab.com/rafael.santana/poc-multi-tenant,https://gitlab.com/rafael.santana/poc-multi-tenant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rafael.santana__poc-multi-tenant/.gitlab-ci.yml,rafael.santana__poc-multi-tenant,Job-Allow-Failure,,code_quality,code_quality,Allows failure of job `code_quality` at stage `code_quality`,22,.gitlab-ci.yml,rafael.santana,rafael.santana/poc-multi-tenant +viluon__Desktox__Job-Allow-Failure__lint,https://gitlab.com/viluon/Desktox,https://gitlab.com/viluon/Desktox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/viluon__Desktox/.gitlab-ci.yml,viluon__Desktox,Job-Allow-Failure,,smoke-test,lint,Allows failure of job `lint` at stage `smoke-test`,20,.gitlab-ci.yml,viluon,viluon/Desktox +rmoe__c2log__Versioning__requirementstxt__suitcase__missing,https://gitlab.com/rmoe/c2log,https://gitlab.com/rmoe/c2log/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rmoe__c2log/requirements.txt,rmoe__c2log,Versioning,missing,,suitcase,version specifier is missing,1,requirements.txt,rmoe,rmoe/c2log +rmoe__c2log__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/rmoe/c2log,https://gitlab.com/rmoe/c2log/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rmoe__c2log/.gitlab-ci.yml,rmoe__c2log,Versioning,missing,,sphinx,version specifier is missing,33,.gitlab-ci.yml,rmoe,rmoe/c2log +upe-consulting__TypedJSON__Job-Allow-Failure__test-node-4,https://gitlab.com/upe-consulting/TypedJSON,https://gitlab.com/upe-consulting/TypedJSON/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/upe-consulting__TypedJSON/.gitlab-ci.yml,upe-consulting__TypedJSON,Job-Allow-Failure,,test,test:node:4,Allows failure of job `test:node:4` at stage `test`,22,.gitlab-ci.yml,upe-consulting,upe-consulting/TypedJSON +gnuwget__wget__Job-Allow-Failure__Scan-Build-Debian,https://gitlab.com/gnuwget/wget,https://gitlab.com/gnuwget/wget/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget/.gitlab-ci.yml,gnuwget__wget,Job-Allow-Failure,,stage1-testing,Scan-Build/Debian,Allows failure of job `Scan-Build/Debian` at stage `stage1-testing`,194,.gitlab-ci.yml,gnuwget,gnuwget/wget +gnuwget__wget__Job-Allow-Failure__MinGW64,https://gitlab.com/gnuwget/wget,https://gitlab.com/gnuwget/wget/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget/.gitlab-ci.yml,gnuwget__wget,Job-Allow-Failure,,stage1-testing,MinGW64,Allows failure of job `MinGW64` at stage `stage1-testing`,312,.gitlab-ci.yml,gnuwget,gnuwget/wget +gnuwget__wget__Job-Allow-Failure__Valgrind-Debian,https://gitlab.com/gnuwget/wget,https://gitlab.com/gnuwget/wget/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget/.gitlab-ci.yml,gnuwget__wget,Job-Allow-Failure,,stage1-testing,Valgrind/Debian,Allows failure of job `Valgrind/Debian` at stage `stage1-testing`,216,.gitlab-ci.yml,gnuwget,gnuwget/wget +upe-consulting__npm__decorators__Job-Allow-Failure__test-node-4,https://gitlab.com/upe-consulting/npm/decorators,https://gitlab.com/upe-consulting/npm/decorators/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/upe-consulting__npm__decorators/.gitlab-ci.yml,upe-consulting__npm__decorators,Job-Allow-Failure,,test,test:node:4,Allows failure of job `test:node:4` at stage `test`,22,.gitlab-ci.yml,upe-consulting,upe-consulting/npm/decorators +devops-df__2017-brasilia-devopsdays-com-br__Job-Allow-Failure__test-contentbuild--FD,https://gitlab.com/devops-df/2017.brasilia.devopsdays.com.br,https://gitlab.com/devops-df/2017.brasilia.devopsdays.com.br/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/devops-df__2017.brasilia.devopsdays.com.br/.gitlab-ci.yml,devops-df__2017.brasilia.devopsdays.com.br,Job-Allow-Failure,,test,test contentbuild::FD,Allows failure of job `test contentbuild::FD` at stage `test`,40,.gitlab-ci.yml,devops-df,devops-df/2017.brasilia.devopsdays.com.br +gitmate__open-source__result-bouncer__Versioning__gitlabyaml__coala__missing,https://gitlab.com/gitmate/open-source/result-bouncer,https://gitlab.com/gitmate/open-source/result-bouncer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitmate__open-source__result-bouncer/.gitlab-ci.yml,gitmate__open-source__result-bouncer,Versioning,missing,,coala,version specifier is missing,21,.gitlab-ci.yml,gitmate,gitmate/open-source/result-bouncer +canarduck__disques__Job-Allow-Failure__pages,https://gitlab.com/canarduck/disques,https://gitlab.com/canarduck/disques/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__disques/.gitlab-ci.yml,canarduck__disques,Job-Allow-Failure,,deploy,pages,Allows failure of job `pages` at stage `deploy`,63,.gitlab-ci.yml,canarduck,canarduck/disques +gf-bl__python-geolink-formatter__Versioning__requirementstxt__requests-mock__missing,https://gitlab.com/gf-bl/python-geolink-formatter,https://gitlab.com/gf-bl/python-geolink-formatter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gf-bl__python-geolink-formatter/requirements.txt,gf-bl__python-geolink-formatter,Versioning,missing,,requests-mock,version specifier is missing,5,requirements.txt,gf-bl,gf-bl/python-geolink-formatter +gf-bl__python-geolink-formatter__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/gf-bl/python-geolink-formatter,https://gitlab.com/gf-bl/python-geolink-formatter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gf-bl__python-geolink-formatter/requirements.txt,gf-bl__python-geolink-formatter,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,7,requirements.txt,gf-bl,gf-bl/python-geolink-formatter +gf-bl__python-geolink-formatter__Versioning__requirementstxt__sphinxcontrib-versioning__missing,https://gitlab.com/gf-bl/python-geolink-formatter,https://gitlab.com/gf-bl/python-geolink-formatter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gf-bl__python-geolink-formatter/requirements.txt,gf-bl__python-geolink-formatter,Versioning,missing,,sphinxcontrib-versioning,version specifier is missing,8,requirements.txt,gf-bl,gf-bl/python-geolink-formatter +gf-bl__python-geolink-formatter__Versioning__requirementstxt__-e-__missing,https://gitlab.com/gf-bl/python-geolink-formatter,https://gitlab.com/gf-bl/python-geolink-formatter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gf-bl__python-geolink-formatter/requirements.txt,gf-bl__python-geolink-formatter,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,gf-bl,gf-bl/python-geolink-formatter +gf-bl__python-geolink-formatter__Job-Allow-Failure__codequality,https://gitlab.com/gf-bl/python-geolink-formatter,https://gitlab.com/gf-bl/python-geolink-formatter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gf-bl__python-geolink-formatter/.gitlab-ci.yml,gf-bl__python-geolink-formatter,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,95,.gitlab-ci.yml,gf-bl,gf-bl/python-geolink-formatter +kirara__reborn-modpack__Manual-Job__build_modpacks,https://gitlab.com/kirara/reborn-modpack,https://gitlab.com/kirara/reborn-modpack/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kirara__reborn-modpack/.gitlab-ci.yml,kirara__reborn-modpack,Manual-Job,,build,build_modpacks,Manual job `build_modpacks` at stage `build`,6,.gitlab-ci.yml,kirara,kirara/reborn-modpack +carmenbianca__changelogdir__Versioning__requirementstxt__-rrequirements-common-txt__missing,https://gitlab.com/carmenbianca/changelogdir,https://gitlab.com/carmenbianca/changelogdir/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/carmenbianca__changelogdir/requirements.txt,carmenbianca__changelogdir,Versioning,missing,,-rrequirements/common.txt,version specifier is missing,-1,requirements.txt,carmenbianca,carmenbianca/changelogdir +carmenbianca__changelogdir__Job-Allow-Failure__lint,https://gitlab.com/carmenbianca/changelogdir,https://gitlab.com/carmenbianca/changelogdir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/carmenbianca__changelogdir/.gitlab-ci.yml,carmenbianca__changelogdir,Job-Allow-Failure,,test,lint,Allows failure of job `lint` at stage `test`,49,.gitlab-ci.yml,carmenbianca,carmenbianca/changelogdir +AnjiProject__anji-core__Versioning__gitlabyaml__twine__missing,https://gitlab.com/AnjiProject/anji-core,https://gitlab.com/AnjiProject/anji-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/AnjiProject__anji-core/.gitlab-ci.yml,AnjiProject__anji-core,Versioning,missing,,twine,version specifier is missing,21,.gitlab-ci.yml,AnjiProject,AnjiProject/anji-core +alelec__future_thread__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/future_thread,https://gitlab.com/alelec/future_thread/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__future_thread/.gitlab-ci.yml,alelec__future_thread,Versioning,missing,,twine,version specifier is missing,20,.gitlab-ci.yml,alelec,alelec/future_thread +alelec__future_thread__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/future_thread,https://gitlab.com/alelec/future_thread/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__future_thread/.gitlab-ci.yml,alelec__future_thread,Versioning,missing,,wheel,version specifier is missing,20,.gitlab-ci.yml,alelec,alelec/future_thread +demo-clusters__i2p-online__Manual-Job__helm-delete,https://gitlab.com/demo-clusters/i2p.online,https://gitlab.com/demo-clusters/i2p.online/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/demo-clusters__i2p.online/.gitlab-ci.yml,demo-clusters__i2p.online,Manual-Job,,cleanup,helm-delete,Manual job `helm-delete` at stage `cleanup`,33,.gitlab-ci.yml,demo-clusters,demo-clusters/i2p.online +demo-clusters__i2p-online__Manual-Job__delete-cluster,https://gitlab.com/demo-clusters/i2p.online,https://gitlab.com/demo-clusters/i2p.online/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/demo-clusters__i2p.online/.gitlab-ci.yml,demo-clusters__i2p.online,Manual-Job,,cleanup,delete-cluster,Manual job `delete-cluster` at stage `cleanup`,49,.gitlab-ci.yml,demo-clusters,demo-clusters/i2p.online +tifredfr__debserver__Job-Allow-Failure__debian-testing,https://gitlab.com/tifredfr/debserver,https://gitlab.com/tifredfr/debserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tifredfr__debserver/.gitlab-ci.yml,tifredfr__debserver,Job-Allow-Failure,,test,debian-testing,Allows failure of job `debian-testing` at stage `test`,35,.gitlab-ci.yml,tifredfr,tifredfr/debserver +nobodyinperson__python3-numericalmodel__Versioning__gitlabyaml__coveralls__missing,https://gitlab.com/nobodyinperson/python3-numericalmodel,https://gitlab.com/nobodyinperson/python3-numericalmodel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-numericalmodel/.gitlab-ci.yml,nobodyinperson__python3-numericalmodel,Versioning,missing,,coveralls,version specifier is missing,35,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-numericalmodel +nobodyinperson__python3-numericalmodel__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/nobodyinperson/python3-numericalmodel,https://gitlab.com/nobodyinperson/python3-numericalmodel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-numericalmodel/.gitlab-ci.yml,nobodyinperson__python3-numericalmodel,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,60,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-numericalmodel +nobodyinperson__python3-numericalmodel__Versioning__gitlabyaml__matplotlib__missing,https://gitlab.com/nobodyinperson/python3-numericalmodel,https://gitlab.com/nobodyinperson/python3-numericalmodel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-numericalmodel/.gitlab-ci.yml,nobodyinperson__python3-numericalmodel,Versioning,missing,,matplotlib,version specifier is missing,60,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-numericalmodel +nobodyinperson__python3-numericalmodel__Versioning__gitlabyaml__---gui--__missing,https://gitlab.com/nobodyinperson/python3-numericalmodel,https://gitlab.com/nobodyinperson/python3-numericalmodel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-numericalmodel/.gitlab-ci.yml,nobodyinperson__python3-numericalmodel,Versioning,missing,,'.[gui]',version specifier is missing,30,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-numericalmodel +alelec__gitlab-tags-to-pip-index__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/gitlab-tags-to-pip-index,https://gitlab.com/alelec/gitlab-tags-to-pip-index/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-tags-to-pip-index/.gitlab-ci.yml,alelec__gitlab-tags-to-pip-index,Versioning,missing,,twine,version specifier is missing,13,.gitlab-ci.yml,alelec,alelec/gitlab-tags-to-pip-index +alelec__gitlab-tags-to-pip-index__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/gitlab-tags-to-pip-index,https://gitlab.com/alelec/gitlab-tags-to-pip-index/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-tags-to-pip-index/.gitlab-ci.yml,alelec__gitlab-tags-to-pip-index,Versioning,missing,,wheel,version specifier is missing,13,.gitlab-ci.yml,alelec,alelec/gitlab-tags-to-pip-index +alelec__gitlab-tags-to-pip-index__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/gitlab-tags-to-pip-index,https://gitlab.com/alelec/gitlab-tags-to-pip-index/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-tags-to-pip-index/.gitlab-ci.yml,alelec__gitlab-tags-to-pip-index,Versioning,missing,,wheel,version specifier is missing,13,.gitlab-ci.yml,alelec,alelec/gitlab-tags-to-pip-index +alelec__gitlab-tags-to-pip-index__Versioning__gitlabyaml__gitlab_release__missing,https://gitlab.com/alelec/gitlab-tags-to-pip-index,https://gitlab.com/alelec/gitlab-tags-to-pip-index/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-tags-to-pip-index/.gitlab-ci.yml,alelec__gitlab-tags-to-pip-index,Versioning,missing,,gitlab_release,version specifier is missing,25,.gitlab-ci.yml,alelec,alelec/gitlab-tags-to-pip-index +flaxandteal__commandment__Versioning__requirementstxt__M2Crypto__any-upper-version,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,any-upper-version,,M2Crypto,version specifier `>=0.25` matches future versions that might become incompatible,1,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__pyOpenSSL__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,pyOpenSSL,version specifier is missing,2,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__Flask__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,Flask,version specifier is missing,3,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__SQLAlchemy__any-upper-version,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,any-upper-version,,SQLAlchemy,version specifier `>=1.1.0b1` matches future versions that might become incompatible,4,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__apns__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,apns,version specifier is missing,5,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__oauthlib__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,oauthlib,version specifier is missing,6,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__passlib__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,passlib,version specifier is missing,7,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__biplist__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,biplist,version specifier is missing,8,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__flask-restful__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,flask-restful,version specifier is missing,9,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__pytest-flask__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,pytest-flask,version specifier is missing,10,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__flask-redis__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,flask-redis,version specifier is missing,11,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__fakeredis__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,fakeredis,version specifier is missing,12,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__rq__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,rq,version specifier is missing,13,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__mock__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,mock,version specifier is missing,14,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__psycopg2__missing,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,missing,,psycopg2,version specifier is missing,15,requirements.txt,flaxandteal,flaxandteal/commandment +flaxandteal__commandment__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/flaxandteal/commandment,https://gitlab.com/flaxandteal/commandment/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flaxandteal__commandment/requirements.txt,flaxandteal__commandment,Versioning,any-upper-version,,six,version specifier `>=1.7` matches future versions that might become incompatible,16,requirements.txt,flaxandteal,flaxandteal/commandment +groovy-lang__101-scripts__Job-Allow-Failure__build-epub,https://gitlab.com/groovy-lang/101-scripts,https://gitlab.com/groovy-lang/101-scripts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/groovy-lang__101-scripts/.gitlab-ci.yml,groovy-lang__101-scripts,Job-Allow-Failure,,build,build:epub,Allows failure of job `build:epub` at stage `build`,28,.gitlab-ci.yml,groovy-lang,groovy-lang/101-scripts +groovy-lang__101-scripts__Job-Allow-Failure__build-pdf,https://gitlab.com/groovy-lang/101-scripts,https://gitlab.com/groovy-lang/101-scripts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/groovy-lang__101-scripts/.gitlab-ci.yml,groovy-lang__101-scripts,Job-Allow-Failure,,build,build:pdf,Allows failure of job `build:pdf` at stage `build`,17,.gitlab-ci.yml,groovy-lang,groovy-lang/101-scripts +vijaiaeroastro__ScrapeForFun__Versioning__gitlabyaml__bs4__missing,https://gitlab.com/vijaiaeroastro/ScrapeForFun,https://gitlab.com/vijaiaeroastro/ScrapeForFun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vijaiaeroastro__ScrapeForFun/.gitlab-ci.yml,vijaiaeroastro__ScrapeForFun,Versioning,missing,,bs4,version specifier is missing,6,.gitlab-ci.yml,vijaiaeroastro,vijaiaeroastro/ScrapeForFun +vijaiaeroastro__ScrapeForFun__Versioning__gitlabyaml__requests__missing,https://gitlab.com/vijaiaeroastro/ScrapeForFun,https://gitlab.com/vijaiaeroastro/ScrapeForFun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vijaiaeroastro__ScrapeForFun/.gitlab-ci.yml,vijaiaeroastro__ScrapeForFun,Versioning,missing,,requests,version specifier is missing,7,.gitlab-ci.yml,vijaiaeroastro,vijaiaeroastro/ScrapeForFun +vijaiaeroastro__ScrapeForFun__Versioning__gitlabyaml__html5lib__missing,https://gitlab.com/vijaiaeroastro/ScrapeForFun,https://gitlab.com/vijaiaeroastro/ScrapeForFun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vijaiaeroastro__ScrapeForFun/.gitlab-ci.yml,vijaiaeroastro__ScrapeForFun,Versioning,missing,,html5lib,version specifier is missing,8,.gitlab-ci.yml,vijaiaeroastro,vijaiaeroastro/ScrapeForFun +rh-kernel-stqe__python-stqe__Versioning__gitlabyaml__pexpect__missing,https://gitlab.com/rh-kernel-stqe/python-stqe,https://gitlab.com/rh-kernel-stqe/python-stqe/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-stqe/.gitlab-ci.yml,rh-kernel-stqe__python-stqe,Versioning,missing,,pexpect,version specifier is missing,19,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-stqe +rh-kernel-stqe__python-stqe__Versioning__gitlabyaml__fmf__missing,https://gitlab.com/rh-kernel-stqe/python-stqe,https://gitlab.com/rh-kernel-stqe/python-stqe/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rh-kernel-stqe__python-stqe/.gitlab-ci.yml,rh-kernel-stqe__python-stqe,Versioning,missing,,fmf,version specifier is missing,19,.gitlab-ci.yml,rh-kernel-stqe,rh-kernel-stqe/python-stqe +Banzyme2__django-cloud9-dokcer__Versioning__requirementstxt__psycopg2__missing,https://gitlab.com/Banzyme2/django-cloud9-dokcer,https://gitlab.com/Banzyme2/django-cloud9-dokcer/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Banzyme2__django-cloud9-dokcer/requirements.txt,Banzyme2__django-cloud9-dokcer,Versioning,missing,,psycopg2,version specifier is missing,2,requirements.txt,Banzyme2,Banzyme2/django-cloud9-dokcer +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-notification-__ir-co-dpq-seen-seen-retrofit-core__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-notification/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-notification/pom.xml,seen__java__seen-retrofit,Versioning,missing,,ir.co.dpq.seen/seen-retrofit-core,version specifier is missing,11,seen-retrofit-notification/pom.xml,seen,seen/java/seen-retrofit +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-cms-__ir-co-dpq-seen-seen-retrofit-core__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-cms/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-cms/pom.xml,seen__java__seen-retrofit,Versioning,missing,,ir.co.dpq.seen/seen-retrofit-core,version specifier is missing,11,seen-retrofit-cms/pom.xml,seen,seen/java/seen-retrofit +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-monitor-__ir-co-dpq-seen-seen-retrofit-core__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-monitor/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-monitor/pom.xml,seen__java__seen-retrofit,Versioning,missing,,ir.co.dpq.seen/seen-retrofit-core,version specifier is missing,11,seen-retrofit-monitor/pom.xml,seen,seen/java/seen-retrofit +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-user-__ir-co-dpq-seen-seen-retrofit-core__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-user/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-user/pom.xml,seen__java__seen-retrofit,Versioning,missing,,ir.co.dpq.seen/seen-retrofit-core,version specifier is missing,11,seen-retrofit-user/pom.xml,seen,seen/java/seen-retrofit +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-core-__com-fasterxml-jackson-core-jackson-annotations__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-core/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-core/pom.xml,seen__java__seen-retrofit,Versioning,missing,,com.fasterxml.jackson.core/jackson-annotations,version specifier is missing,15,seen-retrofit-core/pom.xml,seen,seen/java/seen-retrofit +seen__java__seen-retrofit__Versioning__ir-co-dpq-seen-seen-retrofit-core-__com-fasterxml-jackson-core-jackson-databind__missing,https://gitlab.com/seen/java/seen-retrofit,https://gitlab.com/seen/java/seen-retrofit/blob/master/seen-retrofit-core/pom.xml,/home/xxx/fse-submission/linter_configfiles/seen__java__seen-retrofit/seen-retrofit-core/pom.xml,seen__java__seen-retrofit,Versioning,missing,,com.fasterxml.jackson.core/jackson-databind,version specifier is missing,19,seen-retrofit-core/pom.xml,seen,seen/java/seen-retrofit +canarduck__systranio__Versioning__gitlabyaml__mkdocs__missing,https://gitlab.com/canarduck/systranio,https://gitlab.com/canarduck/systranio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__systranio/.gitlab-ci.yml,canarduck__systranio,Versioning,missing,,mkdocs,version specifier is missing,40,.gitlab-ci.yml,canarduck,canarduck/systranio +canarduck__systranio__Versioning__gitlabyaml__mkdocs__missing,https://gitlab.com/canarduck/systranio,https://gitlab.com/canarduck/systranio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__systranio/.gitlab-ci.yml,canarduck__systranio,Versioning,missing,,mkdocs,version specifier is missing,40,.gitlab-ci.yml,canarduck,canarduck/systranio +canarduck__systranio__Versioning__gitlabyaml__pypandoc__missing,https://gitlab.com/canarduck/systranio,https://gitlab.com/canarduck/systranio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__systranio/.gitlab-ci.yml,canarduck__systranio,Versioning,missing,,pypandoc,version specifier is missing,26,.gitlab-ci.yml,canarduck,canarduck/systranio +canarduck__systranio__Versioning__gitlabyaml__pandoc__missing,https://gitlab.com/canarduck/systranio,https://gitlab.com/canarduck/systranio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__systranio/.gitlab-ci.yml,canarduck__systranio,Versioning,missing,,pandoc,version specifier is missing,25,.gitlab-ci.yml,canarduck,canarduck/systranio +iron-oxide__cogwheel__Job-Allow-Failure__nightly-cargo,https://gitlab.com/iron-oxide/cogwheel,https://gitlab.com/iron-oxide/cogwheel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/iron-oxide__cogwheel/.gitlab-ci.yml,iron-oxide__cogwheel,Job-Allow-Failure,,test,nightly:cargo,Allows failure of job `nightly:cargo` at stage `test`,42,.gitlab-ci.yml,iron-oxide,iron-oxide/cogwheel +iron-oxide__cogwheel__Job-Allow-Failure__beta-cargo,https://gitlab.com/iron-oxide/cogwheel,https://gitlab.com/iron-oxide/cogwheel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/iron-oxide__cogwheel/.gitlab-ci.yml,iron-oxide__cogwheel,Job-Allow-Failure,,test,beta:cargo,Allows failure of job `beta:cargo` at stage `test`,37,.gitlab-ci.yml,iron-oxide,iron-oxide/cogwheel +lbexresearch__populate__Versioning__gitlabyaml__python__missing,https://gitlab.com/lbexresearch/populate,https://gitlab.com/lbexresearch/populate/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lbexresearch__populate/.gitlab-ci.yml,lbexresearch__populate,Versioning,missing,,python,version specifier is missing,12,.gitlab-ci.yml,lbexresearch,lbexresearch/populate +pdftools__python-ghostscript__Versioning__requirementstxt__wheel__missing,https://gitlab.com/pdftools/python-ghostscript,https://gitlab.com/pdftools/python-ghostscript/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pdftools__python-ghostscript/requirements.txt,pdftools__python-ghostscript,Versioning,missing,,wheel,version specifier is missing,2,requirements.txt,pdftools,pdftools/python-ghostscript +pdftools__python-ghostscript__Versioning__requirementstxt__twine__missing,https://gitlab.com/pdftools/python-ghostscript,https://gitlab.com/pdftools/python-ghostscript/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pdftools__python-ghostscript/requirements.txt,pdftools__python-ghostscript,Versioning,missing,,twine,version specifier is missing,4,requirements.txt,pdftools,pdftools/python-ghostscript +hop23typhu__baseapp__Job-Allow-Failure__performance,https://gitlab.com/hop23typhu/baseapp,https://gitlab.com/hop23typhu/baseapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hop23typhu__baseapp/.gitlab-ci.yml,hop23typhu__baseapp,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,93,.gitlab-ci.yml,hop23typhu,hop23typhu/baseapp +hop23typhu__baseapp__Job-Allow-Failure__stop_review,https://gitlab.com/hop23typhu/baseapp,https://gitlab.com/hop23typhu/baseapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hop23typhu__baseapp/.gitlab-ci.yml,hop23typhu__baseapp,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,176,.gitlab-ci.yml,hop23typhu,hop23typhu/baseapp +hop23typhu__baseapp__Job-Allow-Failure__codequality,https://gitlab.com/hop23typhu/baseapp,https://gitlab.com/hop23typhu/baseapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hop23typhu__baseapp/.gitlab-ci.yml,hop23typhu__baseapp,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,80,.gitlab-ci.yml,hop23typhu,hop23typhu/baseapp +IonicZoo__pigeon-restful-provider__Job-Retry__build,https://gitlab.com/IonicZoo/pigeon-restful-provider,https://gitlab.com/IonicZoo/pigeon-restful-provider/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/IonicZoo__pigeon-restful-provider/.gitlab-ci.yml,IonicZoo__pigeon-restful-provider,Job-Retry,always,build,build,1,6,.gitlab-ci.yml,IonicZoo,IonicZoo/pigeon-restful-provider +IonicZoo__pigeon-restful-provider__Job-Retry__publish,https://gitlab.com/IonicZoo/pigeon-restful-provider,https://gitlab.com/IonicZoo/pigeon-restful-provider/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/IonicZoo__pigeon-restful-provider/.gitlab-ci.yml,IonicZoo__pigeon-restful-provider,Job-Retry,always,deploy,publish,1,36,.gitlab-ci.yml,IonicZoo,IonicZoo/pigeon-restful-provider +mmmickmason2__ether-router-master__Job-Allow-Failure__stop_review,https://gitlab.com/mmmickmason2/ether-router-master,https://gitlab.com/mmmickmason2/ether-router-master/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mmmickmason2__ether-router-master/.gitlab-ci.yml,mmmickmason2__ether-router-master,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,108,.gitlab-ci.yml,mmmickmason2,mmmickmason2/ether-router-master +mmmickmason2__ether-router-master__Job-Allow-Failure__codequality,https://gitlab.com/mmmickmason2/ether-router-master,https://gitlab.com/mmmickmason2/ether-router-master/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mmmickmason2__ether-router-master/.gitlab-ci.yml,mmmickmason2__ether-router-master,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,74,.gitlab-ci.yml,mmmickmason2,mmmickmason2/ether-router-master +willhallonline__demo-project__Job-Allow-Failure__phpcs-drupal,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-drupal,Allows failure of job `phpcs-drupal` at stage `test`,7,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +willhallonline__demo-project__Job-Allow-Failure__phpcs-cakephp,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-cakephp,Allows failure of job `phpcs-cakephp` at stage `test`,31,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +willhallonline__demo-project__Job-Allow-Failure__phpcs-wordpress,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-wordpress,Allows failure of job `phpcs-wordpress` at stage `test`,13,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +willhallonline__demo-project__Job-Allow-Failure__phpcs-psr,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-psr,Allows failure of job `phpcs-psr` at stage `test`,1,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +willhallonline__demo-project__Job-Allow-Failure__phpcs-laravel,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-laravel,Allows failure of job `phpcs-laravel` at stage `test`,19,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +willhallonline__demo-project__Job-Allow-Failure__phpcs-yii,https://gitlab.com/willhallonline/demo-project,https://gitlab.com/willhallonline/demo-project/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/willhallonline__demo-project/.gitlab-ci.yml,willhallonline__demo-project,Job-Allow-Failure,,test,phpcs-yii,Allows failure of job `phpcs-yii` at stage `test`,25,.gitlab-ci.yml,willhallonline,willhallonline/demo-project +gt8__open-source__elixir__eidetic-eventstore-mongodb__Job-Allow-Failure__lint,https://gitlab.com/gt8/open-source/elixir/eidetic-eventstore-mongodb,https://gitlab.com/gt8/open-source/elixir/eidetic-eventstore-mongodb/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gt8__open-source__elixir__eidetic-eventstore-mongodb/.gitlab-ci.yml,gt8__open-source__elixir__eidetic-eventstore-mongodb,Job-Allow-Failure,,Test,lint,Allows failure of job `lint` at stage `Test`,35,.gitlab-ci.yml,gt8,gt8/open-source/elixir/eidetic-eventstore-mongodb +bplatta__proto-api__Versioning__gitlabyaml__pep8__missing,https://gitlab.com/bplatta/proto-api,https://gitlab.com/bplatta/proto-api/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bplatta__proto-api/.gitlab-ci.yml,bplatta__proto-api,Versioning,missing,,pep8,version specifier is missing,48,.gitlab-ci.yml,bplatta,bplatta/proto-api +mxklb__cuteproject__Job-Allow-Failure__debug_tests_devel,https://gitlab.com/mxklb/cuteproject,https://gitlab.com/mxklb/cuteproject/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mxklb__cuteproject/.gitlab-ci.yml,mxklb__cuteproject,Job-Allow-Failure,,test,debug_tests_devel,Allows failure of job `debug_tests_devel` at stage `test`,46,.gitlab-ci.yml,mxklb,mxklb/cuteproject +mxklb__cuteproject__Job-Allow-Failure__debug_tests_rolling,https://gitlab.com/mxklb/cuteproject,https://gitlab.com/mxklb/cuteproject/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mxklb__cuteproject/.gitlab-ci.yml,mxklb__cuteproject,Job-Allow-Failure,,test,debug_tests_rolling,Allows failure of job `debug_tests_rolling` at stage `test`,40,.gitlab-ci.yml,mxklb,mxklb/cuteproject +BuildStream__bst-external__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/BuildStream/bst-external,https://gitlab.com/BuildStream/bst-external/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BuildStream__bst-external/.gitlab-ci.yml,BuildStream__bst-external,Versioning,missing,,sphinx,version specifier is missing,176,.gitlab-ci.yml,BuildStream,BuildStream/bst-external +BuildStream__bst-external__Versioning__gitlabyaml__sphinx_rtd_theme__any-upper-version,https://gitlab.com/BuildStream/bst-external,https://gitlab.com/BuildStream/bst-external/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BuildStream__bst-external/.gitlab-ci.yml,BuildStream__bst-external,Versioning,any-upper-version,,sphinx_rtd_theme,version specifier `>=0.4.2` matches future versions that might become incompatible,180,.gitlab-ci.yml,BuildStream,BuildStream/bst-external +guiriduro__pyra__Job-Allow-Failure__container_scanning,https://gitlab.com/guiriduro/pyra,https://gitlab.com/guiriduro/pyra/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/guiriduro__pyra/.gitlab-ci.yml,guiriduro__pyra,Job-Allow-Failure,,container_scanning,container_scanning,Allows failure of job `container_scanning` at stage `container_scanning`,61,.gitlab-ci.yml,guiriduro,guiriduro/pyra +freedesktop-sdk__json2bst__Versioning__gitlabyaml__jsoncomment__missing,https://gitlab.com/freedesktop-sdk/json2bst,https://gitlab.com/freedesktop-sdk/json2bst/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__json2bst/.gitlab-ci.yml,freedesktop-sdk__json2bst,Versioning,missing,,jsoncomment,version specifier is missing,32,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/json2bst +TortueMat__simple_lib__Versioning__gitlabyaml__--__missing,https://gitlab.com/TortueMat/simple_lib,https://gitlab.com/TortueMat/simple_lib/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/TortueMat__simple_lib/.gitlab-ci.yml,TortueMat__simple_lib,Versioning,missing,,&&,version specifier is missing,11,.gitlab-ci.yml,TortueMat,TortueMat/simple_lib +TortueMat__simple_lib__Versioning__gitlabyaml__py-test__missing,https://gitlab.com/TortueMat/simple_lib,https://gitlab.com/TortueMat/simple_lib/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/TortueMat__simple_lib/.gitlab-ci.yml,TortueMat__simple_lib,Versioning,missing,,py.test,version specifier is missing,11,.gitlab-ci.yml,TortueMat,TortueMat/simple_lib +freshcode-public__i-video-editor__Job-Allow-Failure__rancher-upgrade,https://gitlab.com/freshcode-public/i-video-editor,https://gitlab.com/freshcode-public/i-video-editor/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freshcode-public__i-video-editor/.gitlab-ci.yml,freshcode-public__i-video-editor,Job-Allow-Failure,,deploy,rancher-upgrade,Allows failure of job `rancher-upgrade` at stage `deploy`,78,.gitlab-ci.yml,freshcode-public,freshcode-public/i-video-editor +flat-galaxy__flattrack__Versioning__requirementstxt__mock__missing,https://gitlab.com/flat-galaxy/flattrack,https://gitlab.com/flat-galaxy/flattrack/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flat-galaxy__flattrack/requirements.txt,flat-galaxy__flattrack,Versioning,missing,,mock,version specifier is missing,1,requirements.txt,flat-galaxy,flat-galaxy/flattrack +flat-galaxy__flattrack__Versioning__requirementstxt__requests__missing,https://gitlab.com/flat-galaxy/flattrack,https://gitlab.com/flat-galaxy/flattrack/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flat-galaxy__flattrack/requirements.txt,flat-galaxy__flattrack,Versioning,missing,,requests,version specifier is missing,3,requirements.txt,flat-galaxy,flat-galaxy/flattrack +sumner__offlinemsmtp__Versioning__gitlabyaml__offlinemsmtp__missing,https://gitlab.com/sumner/offlinemsmtp,https://gitlab.com/sumner/offlinemsmtp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__offlinemsmtp/.gitlab-ci.yml,sumner__offlinemsmtp,Versioning,missing,,offlinemsmtp,version specifier is missing,19,.gitlab-ci.yml,sumner,sumner/offlinemsmtp +sumner__offlinemsmtp__Versioning__gitlabyaml__docutils__missing,https://gitlab.com/sumner/offlinemsmtp,https://gitlab.com/sumner/offlinemsmtp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__offlinemsmtp/.gitlab-ci.yml,sumner__offlinemsmtp,Versioning,missing,,docutils,version specifier is missing,25,.gitlab-ci.yml,sumner,sumner/offlinemsmtp +sumner__offlinemsmtp__Versioning__gitlabyaml__twine__missing,https://gitlab.com/sumner/offlinemsmtp,https://gitlab.com/sumner/offlinemsmtp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__offlinemsmtp/.gitlab-ci.yml,sumner__offlinemsmtp,Versioning,missing,,twine,version specifier is missing,41,.gitlab-ci.yml,sumner,sumner/offlinemsmtp +sumner__offlinemsmtp__Versioning__gitlabyaml__rst2html5__missing,https://gitlab.com/sumner/offlinemsmtp,https://gitlab.com/sumner/offlinemsmtp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sumner__offlinemsmtp/.gitlab-ci.yml,sumner__offlinemsmtp,Versioning,missing,,rst2html5,version specifier is missing,72,.gitlab-ci.yml,sumner,sumner/offlinemsmtp +energyincities__python-ehub__Versioning__requirementstxt__pulp__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,pulp,version specifier is missing,3,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__contexttimer__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,contexttimer,version specifier is missing,4,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__pandas__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,pandas,version specifier is missing,5,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__numpy__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,numpy,version specifier is missing,6,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,matplotlib,version specifier is missing,7,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,PyYAML,version specifier is missing,8,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__xlrd__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,xlrd,version specifier is missing,9,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__jsonschema__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,jsonschema,version specifier is missing,10,requirements.txt,energyincities,energyincities/python-ehub +energyincities__python-ehub__Versioning__requirementstxt__openpyxl__missing,https://gitlab.com/energyincities/python-ehub,https://gitlab.com/energyincities/python-ehub/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/energyincities__python-ehub/requirements.txt,energyincities__python-ehub,Versioning,missing,,openpyxl,version specifier is missing,12,requirements.txt,energyincities,energyincities/python-ehub +pipeline-patterns__django-cloudfoundry__Manual-Job__trigger_without_sample,https://gitlab.com/pipeline-patterns/django-cloudfoundry,https://gitlab.com/pipeline-patterns/django-cloudfoundry/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pipeline-patterns__django-cloudfoundry/.gitlab-ci.yml,pipeline-patterns__django-cloudfoundry,Manual-Job,,schedule,trigger_without_sample,Manual job `trigger_without_sample` at stage `schedule`,62,.gitlab-ci.yml,pipeline-patterns,pipeline-patterns/django-cloudfoundry +pipeline-patterns__django-cloudfoundry__Manual-Job__trigger,https://gitlab.com/pipeline-patterns/django-cloudfoundry,https://gitlab.com/pipeline-patterns/django-cloudfoundry/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pipeline-patterns__django-cloudfoundry/.gitlab-ci.yml,pipeline-patterns__django-cloudfoundry,Manual-Job,,schedule,trigger,Manual job `trigger` at stage `schedule`,52,.gitlab-ci.yml,pipeline-patterns,pipeline-patterns/django-cloudfoundry +petervaro__pcd__Versioning__requirementstxt__uncompyle6__any-upper-version,https://gitlab.com/petervaro/pcd,https://gitlab.com/petervaro/pcd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/petervaro__pcd/requirements.txt,petervaro__pcd,Versioning,any-upper-version,,uncompyle6,version specifier `>=2.13.2` matches future versions that might become incompatible,1,requirements.txt,petervaro,petervaro/pcd +starshell__question__Job-Allow-Failure__rustfmt-stable-cargo,https://gitlab.com/starshell/question,https://gitlab.com/starshell/question/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/starshell__question/.gitlab-ci.yml,starshell__question,Job-Allow-Failure,,test,rustfmt:stable:cargo,Allows failure of job `rustfmt:stable:cargo` at stage `test`,14,.gitlab-ci.yml,starshell,starshell/question +starshell__question__Job-Allow-Failure__rustfmt-nightly-cargo,https://gitlab.com/starshell/question,https://gitlab.com/starshell/question/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/starshell__question/.gitlab-ci.yml,starshell__question,Job-Allow-Failure,,test,rustfmt:nightly:cargo,Allows failure of job `rustfmt:nightly:cargo` at stage `test`,14,.gitlab-ci.yml,starshell,starshell/question +starshell__question__Job-Allow-Failure__rustfmt-beta-cargo,https://gitlab.com/starshell/question,https://gitlab.com/starshell/question/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/starshell__question/.gitlab-ci.yml,starshell__question,Job-Allow-Failure,,test,rustfmt:beta:cargo,Allows failure of job `rustfmt:beta:cargo` at stage `test`,14,.gitlab-ci.yml,starshell,starshell/question +PhysikP-Seminar__CNC__Versioning__requirementstxt__flask__missing,https://gitlab.com/PhysikP-Seminar/CNC,https://gitlab.com/PhysikP-Seminar/CNC/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PhysikP-Seminar__CNC/requirements.txt,PhysikP-Seminar__CNC,Versioning,missing,,flask,version specifier is missing,1,requirements.txt,PhysikP-Seminar,PhysikP-Seminar/CNC +PhysikP-Seminar__CNC__Versioning__requirementstxt__requests__missing,https://gitlab.com/PhysikP-Seminar/CNC,https://gitlab.com/PhysikP-Seminar/CNC/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PhysikP-Seminar__CNC/requirements.txt,PhysikP-Seminar__CNC,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,PhysikP-Seminar,PhysikP-Seminar/CNC +PhysikP-Seminar__CNC__Versioning__requirementstxt__pyserial__missing,https://gitlab.com/PhysikP-Seminar/CNC,https://gitlab.com/PhysikP-Seminar/CNC/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PhysikP-Seminar__CNC/requirements.txt,PhysikP-Seminar__CNC,Versioning,missing,,pyserial,version specifier is missing,3,requirements.txt,PhysikP-Seminar,PhysikP-Seminar/CNC +canarduck__flumel__Versioning__gitlabyaml__safety__missing,https://gitlab.com/canarduck/flumel,https://gitlab.com/canarduck/flumel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__flumel/.gitlab-ci.yml,canarduck__flumel,Versioning,missing,,safety,version specifier is missing,47,.gitlab-ci.yml,canarduck,canarduck/flumel +canarduck__flumel__Versioning__gitlabyaml__pypandoc__missing,https://gitlab.com/canarduck/flumel,https://gitlab.com/canarduck/flumel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__flumel/.gitlab-ci.yml,canarduck__flumel,Versioning,missing,,pypandoc,version specifier is missing,60,.gitlab-ci.yml,canarduck,canarduck/flumel +canarduck__flumel__Versioning__gitlabyaml__pandoc__missing,https://gitlab.com/canarduck/flumel,https://gitlab.com/canarduck/flumel/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__flumel/.gitlab-ci.yml,canarduck__flumel,Versioning,missing,,pandoc,version specifier is missing,59,.gitlab-ci.yml,canarduck,canarduck/flumel +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,recommonmark,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,nbsphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,recommonmark,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,nbsphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,recommonmark,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +kimlab__jobsubmitter__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/jobsubmitter,https://gitlab.com/kimlab/jobsubmitter/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__jobsubmitter/.gitlab-ci.yml,kimlab__jobsubmitter,Versioning,missing,,nbsphinx,version specifier is missing,118,.gitlab-ci.yml,kimlab,kimlab/jobsubmitter +xylok__networkparse__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/xylok/networkparse,https://gitlab.com/xylok/networkparse/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/xylok__networkparse/requirements.txt,xylok__networkparse,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,xylok,xylok/networkparse +terrasubmersa__terra-submersa-portal__Job-Retry__frontend_test_unit,https://gitlab.com/terrasubmersa/terra-submersa-portal,https://gitlab.com/terrasubmersa/terra-submersa-portal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/terrasubmersa__terra-submersa-portal/.gitlab-ci.yml,terrasubmersa__terra-submersa-portal,Job-Retry,always,unit-test,frontend_test_unit,2,48,.gitlab-ci.yml,terrasubmersa,terrasubmersa/terra-submersa-portal +gis23__search_engine__Manual-Job__build_GCR,https://gitlab.com/gis23/search_engine,https://gitlab.com/gis23/search_engine/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gis23__search_engine/.gitlab-ci.yml,gis23__search_engine,Manual-Job,,build,build_GCR,Manual job `build_GCR` at stage `build`,45,.gitlab-ci.yml,gis23,gis23/search_engine +nolith__codeclimate-gocyclo__Manual-Job__promote-to-latest,https://gitlab.com/nolith/codeclimate-gocyclo,https://gitlab.com/nolith/codeclimate-gocyclo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nolith__codeclimate-gocyclo/.gitlab-ci.yml,nolith__codeclimate-gocyclo,Manual-Job,,test,promote to latest,Manual job `promote to latest` at stage `test`,67,.gitlab-ci.yml,nolith,nolith/codeclimate-gocyclo +lambdait__mai-schedule-vk__Versioning__requirementstxt__hues__missing,https://gitlab.com/lambdait/mai-schedule-vk,https://gitlab.com/lambdait/mai-schedule-vk/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__mai-schedule-vk/requirements.txt,lambdait__mai-schedule-vk,Versioning,missing,,hues,version specifier is missing,1,requirements.txt,lambdait,lambdait/mai-schedule-vk +lambdait__mai-schedule-vk__Versioning__requirementstxt__aiohttp__missing,https://gitlab.com/lambdait/mai-schedule-vk,https://gitlab.com/lambdait/mai-schedule-vk/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__mai-schedule-vk/requirements.txt,lambdait__mai-schedule-vk,Versioning,missing,,aiohttp,version specifier is missing,2,requirements.txt,lambdait,lambdait/mai-schedule-vk +lambdait__mai-schedule-vk__Versioning__requirementstxt__aiopg__missing,https://gitlab.com/lambdait/mai-schedule-vk,https://gitlab.com/lambdait/mai-schedule-vk/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__mai-schedule-vk/requirements.txt,lambdait__mai-schedule-vk,Versioning,missing,,aiopg,version specifier is missing,3,requirements.txt,lambdait,lambdait/mai-schedule-vk +lambdait__mai-schedule-vk__Versioning__requirementstxt__captcha_solver__missing,https://gitlab.com/lambdait/mai-schedule-vk,https://gitlab.com/lambdait/mai-schedule-vk/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/lambdait__mai-schedule-vk/requirements.txt,lambdait__mai-schedule-vk,Versioning,missing,,captcha_solver,version specifier is missing,4,requirements.txt,lambdait,lambdait/mai-schedule-vk +ckhurewa__pyroot-zen__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/ckhurewa/pyroot-zen,https://gitlab.com/ckhurewa/pyroot-zen/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ckhurewa__pyroot-zen/.gitlab-ci.yml,ckhurewa__pyroot-zen,Versioning,missing,,wheel,version specifier is missing,26,.gitlab-ci.yml,ckhurewa,ckhurewa/pyroot-zen +ckhurewa__pyroot-zen__Versioning__gitlabyaml__twine__missing,https://gitlab.com/ckhurewa/pyroot-zen,https://gitlab.com/ckhurewa/pyroot-zen/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ckhurewa__pyroot-zen/.gitlab-ci.yml,ckhurewa__pyroot-zen,Versioning,missing,,twine,version specifier is missing,26,.gitlab-ci.yml,ckhurewa,ckhurewa/pyroot-zen +vladgo__build-nginx__Manual-Job__centos7,https://gitlab.com/vladgo/build-nginx,https://gitlab.com/vladgo/build-nginx/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vladgo__build-nginx/.gitlab-ci.yml,vladgo__build-nginx,Manual-Job,,build_nginx,centos7,Manual job `centos7` at stage `build_nginx`,37,.gitlab-ci.yml,vladgo,vladgo/build-nginx +LineageOS__infra__builds-ui__Job-Allow-Failure__dependency_scanning,https://gitlab.com/LineageOS/infra/builds-ui,https://gitlab.com/LineageOS/infra/builds-ui/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LineageOS__infra__builds-ui/.gitlab-ci.yml,LineageOS__infra__builds-ui,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,50,.gitlab-ci.yml,LineageOS,LineageOS/infra/builds-ui +C0DK__refcoin__Job-Allow-Failure__type_checking,https://gitlab.com/C0DK/refcoin,https://gitlab.com/C0DK/refcoin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/C0DK__refcoin/.gitlab-ci.yml,C0DK__refcoin,Job-Allow-Failure,,checks,type_checking,Allows failure of job `type_checking` at stage `checks`,24,.gitlab-ci.yml,C0DK,C0DK/refcoin +metapensiero__metapensiero-sqlalchemy-asyncpg__Versioning__requirementstxt__-rrequirements-test-txt__missing,https://gitlab.com/metapensiero/metapensiero.sqlalchemy.asyncpg,https://gitlab.com/metapensiero/metapensiero.sqlalchemy.asyncpg/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/metapensiero__metapensiero.sqlalchemy.asyncpg/requirements.txt,metapensiero__metapensiero.sqlalchemy.asyncpg,Versioning,missing,,-rrequirements-test.txt,version specifier is missing,-1,requirements.txt,metapensiero,metapensiero/metapensiero.sqlalchemy.asyncpg +wolphin__wolphin-win__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin.win,https://gitlab.com/wolphin/wolphin.win/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin.win/.gitlab-ci.yml,wolphin__wolphin.win,Versioning,missing,,wheel,version specifier is missing,28,.gitlab-ci.yml,wolphin,wolphin/wolphin.win +wolphin__wolphin-win__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin.win,https://gitlab.com/wolphin/wolphin.win/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin.win/.gitlab-ci.yml,wolphin__wolphin.win,Versioning,missing,,wheel,version specifier is missing,28,.gitlab-ci.yml,wolphin,wolphin/wolphin.win +wolphin__wolphin-win__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin.win,https://gitlab.com/wolphin/wolphin.win/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin.win/.gitlab-ci.yml,wolphin__wolphin.win,Versioning,missing,,wheel,version specifier is missing,28,.gitlab-ci.yml,wolphin,wolphin/wolphin.win +wolphin__wolphin-win__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin.win,https://gitlab.com/wolphin/wolphin.win/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin.win/.gitlab-ci.yml,wolphin__wolphin.win,Versioning,missing,,wheel,version specifier is missing,28,.gitlab-ci.yml,wolphin,wolphin/wolphin.win +xygeng__jaguar__Versioning__org-future-jaguar-impl-0-1-0-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/k8snet/impl/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/k8snet/impl/pom.xml,xygeng__jaguar,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,62,k8snet/impl/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-k8snet-watcher-0-1-0-SNAPSHOT__org-opendaylight-controller-sal-binding-api__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/k8snet/watcher/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/k8snet/watcher/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.controller/sal-binding-api,version specifier is missing,50,k8snet/watcher/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-k8snet-model-0-1-0-SNAPSHOT__org-opendaylight-mdsal-model-ietf-inet-types-2013-07-15__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/k8snet/model/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/k8snet/model/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.mdsal.model/ietf-inet-types-2013-07-15,version specifier is missing,30,k8snet/model/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-k8snet-model-0-1-0-SNAPSHOT__org-opendaylight-mdsal-model-ietf-yang-types-20130715__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/k8snet/model/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/k8snet/model/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.mdsal.model/ietf-yang-types-20130715,version specifier is missing,34,k8snet/model/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-jaguar-karaf-0-1-0-SNAPSHOT__org-apache-karaf-features-framework__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/karaf/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/karaf/pom.xml,xygeng__jaguar,Versioning,missing,,org.apache.karaf.features/framework,version specifier is missing,45,karaf/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-jaguar-karaf-0-1-0-SNAPSHOT__org-future-jaguar-features__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/karaf/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/karaf/pom.xml,xygeng__jaguar,Versioning,missing,,org.future/jaguar-features,version specifier is missing,51,karaf/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-jaguar-features-0-1-0-SNAPSHOT__org-opendaylight-yangtools-features-yangtools__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/features/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.yangtools/features-yangtools,version specifier is missing,67,features/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-jaguar-features-0-1-0-SNAPSHOT__org-opendaylight-controller-features-mdsal__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/features/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.controller/features-mdsal,version specifier is missing,82,features/pom.xml,xygeng,xygeng/jaguar +xygeng__jaguar__Versioning__org-future-jaguar-features-0-1-0-SNAPSHOT__org-opendaylight-netconf-features-restconf__missing,https://gitlab.com/xygeng/jaguar,https://gitlab.com/xygeng/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/xygeng__jaguar/features/pom.xml,xygeng__jaguar,Versioning,missing,,org.opendaylight.netconf/features-restconf,version specifier is missing,89,features/pom.xml,xygeng,xygeng/jaguar +the-casual-trade-and-fun-server__server-manager__Manual-Job__review_build_job,https://gitlab.com/the-casual-trade-and-fun-server/server-manager,https://gitlab.com/the-casual-trade-and-fun-server/server-manager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/the-casual-trade-and-fun-server__server-manager/.gitlab-ci.yml,the-casual-trade-and-fun-server__server-manager,Manual-Job,,build,review_build_job,Manual job `review_build_job` at stage `build`,58,.gitlab-ci.yml,the-casual-trade-and-fun-server,the-casual-trade-and-fun-server/server-manager +archbuild__packages__firefox-nightly__Job-Retry__package,https://gitlab.com/archbuild/packages/firefox-nightly,https://gitlab.com/archbuild/packages/firefox-nightly/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/archbuild__packages__firefox-nightly/.gitlab-ci.yml,archbuild__packages__firefox-nightly,Job-Retry,always,package,package,2,31,.gitlab-ci.yml,archbuild,archbuild/packages/firefox-nightly +jsonsonson__wily-cli__Job-Allow-Failure__release_test,https://gitlab.com/jsonsonson/wily-cli,https://gitlab.com/jsonsonson/wily-cli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jsonsonson__wily-cli/.gitlab-ci.yml,jsonsonson__wily-cli,Job-Allow-Failure,,release_test,release_test,Allows failure of job `release_test` at stage `release_test`,36,.gitlab-ci.yml,jsonsonson,jsonsonson/wily-cli +jsonsonson__wily-cli__Job-Allow-Failure__pages,https://gitlab.com/jsonsonson/wily-cli,https://gitlab.com/jsonsonson/wily-cli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jsonsonson__wily-cli/.gitlab-ci.yml,jsonsonson__wily-cli,Job-Allow-Failure,,report,pages,Allows failure of job `pages` at stage `report`,50,.gitlab-ci.yml,jsonsonson,jsonsonson/wily-cli +Ritubh__kubernetes__Job-Allow-Failure__codequality,https://gitlab.com/Ritubh/kubernetes,https://gitlab.com/Ritubh/kubernetes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Ritubh__kubernetes/.gitlab-ci.yml,Ritubh__kubernetes,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,67,.gitlab-ci.yml,Ritubh,Ritubh/kubernetes +floscher__gradle-josm-plugin__Job-Allow-Failure__assemble-on-java13,https://gitlab.com/floscher/gradle-josm-plugin,https://gitlab.com/floscher/gradle-josm-plugin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/floscher__gradle-josm-plugin/.gitlab-ci.yml,floscher__gradle-josm-plugin,Job-Allow-Failure,,build,assemble on java13,Allows failure of job `assemble on java13` at stage `build`,37,.gitlab-ci.yml,floscher,floscher/gradle-josm-plugin +floscher__gradle-josm-plugin__Job-Allow-Failure__test-on-java13,https://gitlab.com/floscher/gradle-josm-plugin,https://gitlab.com/floscher/gradle-josm-plugin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/floscher__gradle-josm-plugin/.gitlab-ci.yml,floscher__gradle-josm-plugin,Job-Allow-Failure,,test,test on java13,Allows failure of job `test on java13` at stage `test`,83,.gitlab-ci.yml,floscher,floscher/gradle-josm-plugin +floscher__gradle-josm-plugin__Job-Allow-Failure__test-on-java14,https://gitlab.com/floscher/gradle-josm-plugin,https://gitlab.com/floscher/gradle-josm-plugin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/floscher__gradle-josm-plugin/.gitlab-ci.yml,floscher__gradle-josm-plugin,Job-Allow-Failure,,test,test on java14,Allows failure of job `test on java14` at stage `test`,92,.gitlab-ci.yml,floscher,floscher/gradle-josm-plugin +floscher__gradle-josm-plugin__Job-Allow-Failure__assemble-on-java14,https://gitlab.com/floscher/gradle-josm-plugin,https://gitlab.com/floscher/gradle-josm-plugin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/floscher__gradle-josm-plugin/.gitlab-ci.yml,floscher__gradle-josm-plugin,Job-Allow-Failure,,build,assemble on java14,Allows failure of job `assemble on java14` at stage `build`,47,.gitlab-ci.yml,floscher,floscher/gradle-josm-plugin +floscher__gradle-josm-plugin__Job-Allow-Failure__demo,https://gitlab.com/floscher/gradle-josm-plugin,https://gitlab.com/floscher/gradle-josm-plugin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/floscher__gradle-josm-plugin/.gitlab-ci.yml,floscher__gradle-josm-plugin,Job-Allow-Failure,,test,demo,Allows failure of job `demo` at stage `test`,161,.gitlab-ci.yml,floscher,floscher/gradle-josm-plugin +kai-richard-koenig__easytainer-cli__Versioning__requirementstxt__click__missing,https://gitlab.com/kai.richard.koenig/easytainer-cli,https://gitlab.com/kai.richard.koenig/easytainer-cli/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kai.richard.koenig__easytainer-cli/requirements.txt,kai.richard.koenig__easytainer-cli,Versioning,missing,,click,version specifier is missing,1,requirements.txt,kai.richard.koenig,kai.richard.koenig/easytainer-cli +kai-richard-koenig__easytainer-cli__Versioning__requirementstxt__requests__missing,https://gitlab.com/kai.richard.koenig/easytainer-cli,https://gitlab.com/kai.richard.koenig/easytainer-cli/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kai.richard.koenig__easytainer-cli/requirements.txt,kai.richard.koenig__easytainer-cli,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,kai.richard.koenig,kai.richard.koenig/easytainer-cli +kai-richard-koenig__easytainer-cli__Versioning__requirementstxt__requests_mock__missing,https://gitlab.com/kai.richard.koenig/easytainer-cli,https://gitlab.com/kai.richard.koenig/easytainer-cli/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kai.richard.koenig__easytainer-cli/requirements.txt,kai.richard.koenig__easytainer-cli,Versioning,missing,,requests_mock,version specifier is missing,3,requirements.txt,kai.richard.koenig,kai.richard.koenig/easytainer-cli +kai-richard-koenig__easytainer-cli__Versioning__requirementstxt__mock__missing,https://gitlab.com/kai.richard.koenig/easytainer-cli,https://gitlab.com/kai.richard.koenig/easytainer-cli/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kai.richard.koenig__easytainer-cli/requirements.txt,kai.richard.koenig__easytainer-cli,Versioning,missing,,mock,version specifier is missing,3,requirements.txt,kai.richard.koenig,kai.richard.koenig/easytainer-cli +kai-richard-koenig__easytainer-cli__Versioning__gitlabyaml__twine__missing,https://gitlab.com/kai.richard.koenig/easytainer-cli,https://gitlab.com/kai.richard.koenig/easytainer-cli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kai.richard.koenig__easytainer-cli/.gitlab-ci.yml,kai.richard.koenig__easytainer-cli,Versioning,missing,,twine,version specifier is missing,54,.gitlab-ci.yml,kai.richard.koenig,kai.richard.koenig/easytainer-cli +sims1253__ml-voodoo__Versioning__requirementstxt__scikit-learn__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,scikit-learn,version specifier is missing,1,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__numpy__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,numpy,version specifier is missing,2,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__scipy__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,scipy,version specifier is missing,3,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__jupyter__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,jupyter,version specifier is missing,5,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__coala-bears__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,coala-bears,version specifier is missing,6,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__pandas__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,pandas,version specifier is missing,7,requirements.txt,sims1253,sims1253/ml-voodoo +sims1253__ml-voodoo__Versioning__requirementstxt__keras__missing,https://gitlab.com/sims1253/ml-voodoo,https://gitlab.com/sims1253/ml-voodoo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sims1253__ml-voodoo/requirements.txt,sims1253__ml-voodoo,Versioning,missing,,keras,version specifier is missing,8,requirements.txt,sims1253,sims1253/ml-voodoo +serial-lab__quartet_epcis__Versioning__requirementstxt__eparsecis__any-upper-version,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,any-upper-version,,eparsecis,version specifier `>=2.0.0` matches future versions that might become incompatible,1,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__epcpyyes__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,epcpyyes,version specifier is missing,2,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__django-model-utils__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,django-model-utils,version specifier is missing,3,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__haikunator__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,haikunator,version specifier is missing,4,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__django-filter__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,django-filter,version specifier is missing,5,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__python-dateutil__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,python-dateutil,version specifier is missing,6,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__requirementstxt__gs123__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/requirements.txt,serial-lab__quartet_epcis,Versioning,missing,,gs123,version specifier is missing,7,requirements.txt,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,sphinx,version specifier is missing,51,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,51,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__pygments__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,pygments,version specifier is missing,51,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,recommonmark,version specifier is missing,51,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,psycopg2,version specifier is missing,21,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,psycopg2,version specifier is missing,21,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +serial-lab__quartet_epcis__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/serial-lab/quartet_epcis,https://gitlab.com/serial-lab/quartet_epcis/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_epcis/.gitlab-ci.yml,serial-lab__quartet_epcis,Versioning,missing,,psycopg2,version specifier is missing,21,.gitlab-ci.yml,serial-lab,serial-lab/quartet_epcis +eighthave__rfp-test__Versioning__gitlabyaml__python__missing,https://gitlab.com/eighthave/rfp-test,https://gitlab.com/eighthave/rfp-test/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eighthave__rfp-test/.gitlab-ci.yml,eighthave__rfp-test,Versioning,missing,,python,version specifier is missing,11,.gitlab-ci.yml,eighthave,eighthave/rfp-test +eighthave__rfp-test__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/eighthave/rfp-test,https://gitlab.com/eighthave/rfp-test/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eighthave__rfp-test/.gitlab-ci.yml,eighthave__rfp-test,Versioning,missing,,wheel,version specifier is missing,11,.gitlab-ci.yml,eighthave,eighthave/rfp-test +eighthave__rfp-test__Versioning__gitlabyaml__gplaycli__missing,https://gitlab.com/eighthave/rfp-test,https://gitlab.com/eighthave/rfp-test/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eighthave__rfp-test/.gitlab-ci.yml,eighthave__rfp-test,Versioning,missing,,gplaycli,version specifier is missing,11,.gitlab-ci.yml,eighthave,eighthave/rfp-test +gt8__open-source__elixir__eidetic-projector-elasticsearch__Job-Allow-Failure__lint,https://gitlab.com/gt8/open-source/elixir/eidetic-projector-elasticsearch,https://gitlab.com/gt8/open-source/elixir/eidetic-projector-elasticsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gt8__open-source__elixir__eidetic-projector-elasticsearch/.gitlab-ci.yml,gt8__open-source__elixir__eidetic-projector-elasticsearch,Job-Allow-Failure,,test,lint,Allows failure of job `lint` at stage `test`,48,.gitlab-ci.yml,gt8,gt8/open-source/elixir/eidetic-projector-elasticsearch +jryannel__qauto-admin__Versioning__requirementstxt__mkdocs__missing,https://gitlab.com/jryannel/qauto-admin,https://gitlab.com/jryannel/qauto-admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jryannel__qauto-admin/requirements.txt,jryannel__qauto-admin,Versioning,missing,,mkdocs,version specifier is missing,1,requirements.txt,jryannel,jryannel/qauto-admin +jryannel__qauto-admin__Versioning__requirementstxt__mkdocs-material__missing,https://gitlab.com/jryannel/qauto-admin,https://gitlab.com/jryannel/qauto-admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jryannel__qauto-admin/requirements.txt,jryannel__qauto-admin,Versioning,missing,,mkdocs-material,version specifier is missing,2,requirements.txt,jryannel,jryannel/qauto-admin +jryannel__qauto-admin__Versioning__requirementstxt__pymdown-extensions__missing,https://gitlab.com/jryannel/qauto-admin,https://gitlab.com/jryannel/qauto-admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jryannel__qauto-admin/requirements.txt,jryannel__qauto-admin,Versioning,missing,,pymdown-extensions,version specifier is missing,3,requirements.txt,jryannel,jryannel/qauto-admin +cathaldallan__saltypie__Versioning__requirementstxt__requests__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,requests,version specifier is missing,1,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__terminaltables__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,terminaltables,version specifier is missing,2,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__colorclass__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,colorclass,version specifier is missing,3,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__colorama__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,colorama,version specifier is missing,4,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__termcolor__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,termcolor,version specifier is missing,5,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,sphinx,version specifier is missing,11,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__requirementstxt__recommonmark__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/requirements.txt,cathaldallan__saltypie,Versioning,missing,,recommonmark,version specifier is missing,12,requirements.txt,cathaldallan,cathaldallan/saltypie +cathaldallan__saltypie__Versioning__gitlabyaml__twine__missing,https://gitlab.com/cathaldallan/saltypie,https://gitlab.com/cathaldallan/saltypie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cathaldallan__saltypie/.gitlab-ci.yml,cathaldallan__saltypie,Versioning,missing,,twine,version specifier is missing,30,.gitlab-ci.yml,cathaldallan,cathaldallan/saltypie +cathaldallan__codebox__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/cathaldallan/codebox,https://gitlab.com/cathaldallan/codebox/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__codebox/requirements.txt,cathaldallan__codebox,Versioning,missing,,PyYAML,version specifier is missing,1,requirements.txt,cathaldallan,cathaldallan/codebox +cathaldallan__codebox__Versioning__requirementstxt__jinja2__missing,https://gitlab.com/cathaldallan/codebox,https://gitlab.com/cathaldallan/codebox/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__codebox/requirements.txt,cathaldallan__codebox,Versioning,missing,,jinja2,version specifier is missing,2,requirements.txt,cathaldallan,cathaldallan/codebox +cathaldallan__codebox__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/cathaldallan/codebox,https://gitlab.com/cathaldallan/codebox/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__codebox/requirements.txt,cathaldallan__codebox,Versioning,missing,,sphinx,version specifier is missing,8,requirements.txt,cathaldallan,cathaldallan/codebox +cathaldallan__codebox__Versioning__requirementstxt__recommonmark__missing,https://gitlab.com/cathaldallan/codebox,https://gitlab.com/cathaldallan/codebox/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cathaldallan__codebox/requirements.txt,cathaldallan__codebox,Versioning,missing,,recommonmark,version specifier is missing,9,requirements.txt,cathaldallan,cathaldallan/codebox +cathaldallan__codebox__Versioning__gitlabyaml__twine__missing,https://gitlab.com/cathaldallan/codebox,https://gitlab.com/cathaldallan/codebox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cathaldallan__codebox/.gitlab-ci.yml,cathaldallan__codebox,Versioning,missing,,twine,version specifier is missing,30,.gitlab-ci.yml,cathaldallan,cathaldallan/codebox +npolar__sphinx-docs-template__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/npolar/sphinx-docs-template,https://gitlab.com/npolar/sphinx-docs-template/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/npolar__sphinx-docs-template/requirements.txt,npolar__sphinx-docs-template,Versioning,missing,,sphinx,version specifier is missing,1,requirements.txt,npolar,npolar/sphinx-docs-template +npolar__sphinx-docs-template__Versioning__requirementstxt__sphinx-rtd-theme__missing,https://gitlab.com/npolar/sphinx-docs-template,https://gitlab.com/npolar/sphinx-docs-template/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/npolar__sphinx-docs-template/requirements.txt,npolar__sphinx-docs-template,Versioning,missing,,sphinx-rtd-theme,version specifier is missing,2,requirements.txt,npolar,npolar/sphinx-docs-template +npolar__sphinx-docs-template__Versioning__requirementstxt__sphinxcontrib-plantuml__missing,https://gitlab.com/npolar/sphinx-docs-template,https://gitlab.com/npolar/sphinx-docs-template/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/npolar__sphinx-docs-template/requirements.txt,npolar__sphinx-docs-template,Versioning,missing,,sphinxcontrib-plantuml,version specifier is missing,3,requirements.txt,npolar,npolar/sphinx-docs-template +gnss-sdr__gnss-sdr__Job-Allow-Failure__fedora29,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,fedora29,Allows failure of job `fedora29` at stage `build`,247,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__docker-access18-0-0-11,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,deploy,docker-access18-0.0.11,Allows failure of job `docker-access18-0.0.11` at stage `deploy`,937,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-static-4in1,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-static-4in1,Allows failure of job `position-static-4in1` at stage `test`,722,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__archlinux,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,archlinux,Allows failure of job `archlinux` at stage `build`,61,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__c--20,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,c++20,Allows failure of job `c++20` at stage `build`,132,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__opensuse-leap15-0,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,opensuse-leap15.0,Allows failure of job `opensuse-leap15.0` at stage `build`,300,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__ubuntu14-04,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,ubuntu14.04,Allows failure of job `ubuntu14.04` at stage `build`,336,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-leo,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-leo,Allows failure of job `position-leo` at stage `test`,741,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-L5-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-L5-static,Allows failure of job `position-L5-static` at stage `test`,663,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__docker-gnsssdr,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,deploy,docker-gnsssdr,Allows failure of job `docker-gnsssdr` at stage `deploy`,858,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__fedora-rawhide,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,fedora-rawhide,Allows failure of job `fedora-rawhide` at stage `build`,264,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__centos7,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,centos7,Allows failure of job `centos7` at stage `build`,79,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__ubuntu18-10,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,ubuntu18.10,Allows failure of job `ubuntu18.10` at stage `build`,389,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__run-tests-armhf,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,run-tests-armhf,Allows failure of job `run-tests-armhf` at stage `test`,834,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-L1-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-L1-static,Allows failure of job `position-L1-static` at stage `test`,586,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__ubuntu16-04,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,ubuntu16.04,Allows failure of job `ubuntu16.04` at stage `build`,358,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-leo-4in1,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-leo-4in1,Allows failure of job `position-leo-4in1` at stage `test`,814,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-BDS-B3I,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-BDS-B3I,Allows failure of job `position-BDS-B3I` at stage `test`,641,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-BDS-B1I,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-BDS-B1I,Allows failure of job `position-BDS-B1I` at stage `test`,619,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__coverity-scan,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,coverity-scan,Allows failure of job `coverity-scan` at stage `build`,437,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__crosscompile,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,crosscompile,Allows failure of job `crosscompile` at stage `build`,99,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-GLO-L2,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-GLO-L2,Allows failure of job `position-GLO-L2` at stage `test`,795,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__docker-pybombs-gnsssdr,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,deploy,docker-pybombs-gnsssdr,Allows failure of job `docker-pybombs-gnsssdr` at stage `deploy`,876,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__debian10,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,debian10,Allows failure of job `debian10` at stage `build`,198,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__ubuntu19-10,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,ubuntu19.10,Allows failure of job `ubuntu19.10` at stage `build`,421,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-GLO-L1,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-GLO-L1,Allows failure of job `position-GLO-L1` at stage `test`,776,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__opensuse-tumbleweed,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,opensuse-tumbleweed,Allows failure of job `opensuse-tumbleweed` at stage `build`,318,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__run-access18-0-0-11,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,experiment,run-access18-0.0.11,Allows failure of job `run-access18-0.0.11` at stage `experiment`,955,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__ubuntu19-04,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,ubuntu19.04,Allows failure of job `ubuntu19.04` at stage `build`,405,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__opensuse42-3,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,opensuse42.3,Allows failure of job `opensuse42.3` at stage `build`,282,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__debian8,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,debian8,Allows failure of job `debian8` at stage `build`,167,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__fedora26,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,build,fedora26,Allows failure of job `fedora26` at stage `build`,214,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Job-Allow-Failure__position-dual-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Job-Allow-Failure,,test,position-dual-static,Allows failure of job `position-dual-static` at stage `test`,695,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__run-tests-armhf,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,run-tests-armhf,Manual job `run-tests-armhf` at stage `test`,834,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-L1-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-L1-static,Manual job `position-L1-static` at stage `test`,586,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__c--20,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,build,c++20,Manual job `c++20` at stage `build`,132,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-leo-4in1,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-leo-4in1,Manual job `position-leo-4in1` at stage `test`,814,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__leo-observables-test-180417120737,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,leo-observables-test-180417120737,Manual job `leo-observables-test-180417120737` at stage `test`,557,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-leo,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-leo,Manual job `position-leo` at stage `test`,741,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-L5-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-L5-static,Manual job `position-L5-static` at stage `test`,663,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-BDS-B3I,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-BDS-B3I,Manual job `position-BDS-B3I` at stage `test`,641,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-BDS-B1I,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-BDS-B1I,Manual job `position-BDS-B1I` at stage `test`,619,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__observables-test-180417100529,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,observables-test-180417100529,Manual job `observables-test-180417100529` at stage `test`,524,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__coverity-scan,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,build,coverity-scan,Manual job `coverity-scan` at stage `build`,437,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +gnss-sdr__gnss-sdr__Manual-Job__position-dual-static,https://gitlab.com/gnss-sdr/gnss-sdr,https://gitlab.com/gnss-sdr/gnss-sdr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnss-sdr__gnss-sdr/.gitlab-ci.yml,gnss-sdr__gnss-sdr,Manual-Job,,test,position-dual-static,Manual job `position-dual-static` at stage `test`,695,.gitlab-ci.yml,gnss-sdr,gnss-sdr/gnss-sdr +Baasie__continuous-delivery-faas__Job-Allow-Failure__Automated-Acceptance-Test-TF,https://gitlab.com/Baasie/continuous-delivery-faas,https://gitlab.com/Baasie/continuous-delivery-faas/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Baasie__continuous-delivery-faas/.gitlab-ci.yml,Baasie__continuous-delivery-faas,Job-Allow-Failure,,acceptance test,Automated Acceptance Test TF,Allows failure of job `Automated Acceptance Test TF` at stage `acceptance test`,34,.gitlab-ci.yml,Baasie,Baasie/continuous-delivery-faas +canarduck__pays__Versioning__gitlabyaml__pycco__missing,https://gitlab.com/canarduck/pays,https://gitlab.com/canarduck/pays/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__pays/.gitlab-ci.yml,canarduck__pays,Versioning,missing,,pycco,version specifier is missing,38,.gitlab-ci.yml,canarduck,canarduck/pays +canarduck__pays__Versioning__gitlabyaml__pypandoc__missing,https://gitlab.com/canarduck/pays,https://gitlab.com/canarduck/pays/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__pays/.gitlab-ci.yml,canarduck__pays,Versioning,missing,,pypandoc,version specifier is missing,52,.gitlab-ci.yml,canarduck,canarduck/pays +canarduck__pays__Versioning__gitlabyaml__pandoc__missing,https://gitlab.com/canarduck/pays,https://gitlab.com/canarduck/pays/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/canarduck__pays/.gitlab-ci.yml,canarduck__pays,Versioning,missing,,pandoc,version specifier is missing,51,.gitlab-ci.yml,canarduck,canarduck/pays +serial-lab__quartet_capture__Versioning__requirementstxt__django-model-utils__any-upper-version,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,any-upper-version,,django-model-utils,version specifier `>=2.0` matches future versions that might become incompatible,1,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__celery__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,celery,version specifier is missing,2,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__haikunator__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,haikunator,version specifier is missing,3,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__django-filter__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,django-filter,version specifier is missing,5,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__djangorestframework-xml__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,djangorestframework-xml,version specifier is missing,6,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__coreschema__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,coreschema,version specifier is missing,7,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__coreapi__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,coreapi,version specifier is missing,8,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__requirementstxt__watchdog__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/requirements.txt,serial-lab__quartet_capture,Versioning,missing,,watchdog,version specifier is missing,9,requirements.txt,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/.gitlab-ci.yml,serial-lab__quartet_capture,Versioning,missing,,sphinx,version specifier is missing,39,.gitlab-ci.yml,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/.gitlab-ci.yml,serial-lab__quartet_capture,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,39,.gitlab-ci.yml,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__gitlabyaml__pygments__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/.gitlab-ci.yml,serial-lab__quartet_capture,Versioning,missing,,pygments,version specifier is missing,39,.gitlab-ci.yml,serial-lab,serial-lab/quartet_capture +serial-lab__quartet_capture__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/serial-lab/quartet_capture,https://gitlab.com/serial-lab/quartet_capture/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/serial-lab__quartet_capture/.gitlab-ci.yml,serial-lab__quartet_capture,Versioning,missing,,recommonmark,version specifier is missing,39,.gitlab-ci.yml,serial-lab,serial-lab/quartet_capture +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +Simpom__tare__Versioning__gitlabyaml__--PIP_PACKAGES-__missing,https://gitlab.com/Simpom/tare,https://gitlab.com/Simpom/tare/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Simpom__tare/.gitlab-ci.yml,Simpom__tare,Versioning,missing,,${PIP_PACKAGES},version specifier is missing,20,.gitlab-ci.yml,Simpom,Simpom/tare +luichan__official-wireshark__Job-Retry__clang-6,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,clang-6,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__clang-7,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,clang-7,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__gcc-8-nopcap,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,gcc-8-nopcap,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__gcc-5,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,gcc-5,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__clang-5,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,clang-5,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__clang-7-nopcap,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,clang-7-nopcap,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__gcc-7,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,gcc-7,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__gcc-6,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,gcc-6,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +luichan__official-wireshark__Job-Retry__gcc-8,https://gitlab.com/luichan/official-wireshark,https://gitlab.com/luichan/official-wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/luichan__official-wireshark/.gitlab-ci.yml,luichan__official-wireshark,Job-Retry,always,build,gcc-8,1,11,.gitlab-ci.yml,luichan,luichan/official-wireshark +obob__pymatreader__Job-Allow-Failure__code_quality,https://gitlab.com/obob/pymatreader,https://gitlab.com/obob/pymatreader/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/obob__pymatreader/.gitlab-ci.yml,obob__pymatreader,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,87,.gitlab-ci.yml,obob,obob/pymatreader +obob__pymatreader__Job-Allow-Failure__dependency_scanning,https://gitlab.com/obob/pymatreader,https://gitlab.com/obob/pymatreader/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/obob__pymatreader/.gitlab-ci.yml,obob__pymatreader,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,68,.gitlab-ci.yml,obob,obob/pymatreader +abrahamwill__Assignment-DDP2__Manual-Job__funtest-a1,https://gitlab.com/abrahamwill/Assignment-DDP2,https://gitlab.com/abrahamwill/Assignment-DDP2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/abrahamwill__Assignment-DDP2/.gitlab-ci.yml,abrahamwill__Assignment-DDP2,Manual-Job,,test,funtest:a1,Manual job `funtest:a1` at stage `test`,44,.gitlab-ci.yml,abrahamwill,abrahamwill/Assignment-DDP2 +maximedenes__coq__Job-Allow-Failure__ci-geocoq,https://gitlab.com/maximedenes/coq,https://gitlab.com/maximedenes/coq/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/maximedenes__coq/.gitlab-ci.yml,maximedenes__coq,Job-Allow-Failure,,test,ci-geocoq,Allows failure of job `ci-geocoq` at stage `test`,261,.gitlab-ci.yml,maximedenes,maximedenes/coq +auto-breakfast__eggs__Versioning__gitlabyaml__bluepy__missing,https://gitlab.com/auto-breakfast/eggs,https://gitlab.com/auto-breakfast/eggs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/auto-breakfast__eggs/.gitlab-ci.yml,auto-breakfast__eggs,Versioning,missing,,bluepy,version specifier is missing,6,.gitlab-ci.yml,auto-breakfast,auto-breakfast/eggs +gpsd__gpsd__Job-Allow-Failure__sparc64-linux,https://gitlab.com/gpsd/gpsd,https://gitlab.com/gpsd/gpsd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gpsd__gpsd/.gitlab-ci.yml,gpsd__gpsd,Job-Allow-Failure,,advanced_build,sparc64-linux,Allows failure of job `sparc64-linux` at stage `advanced_build`,123,.gitlab-ci.yml,gpsd,gpsd/gpsd +gpsd__gpsd__Job-Allow-Failure__scan-build,https://gitlab.com/gpsd/gpsd,https://gitlab.com/gpsd/gpsd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gpsd__gpsd/.gitlab-ci.yml,gpsd__gpsd,Job-Allow-Failure,,test,scan-build,Allows failure of job `scan-build` at stage `test`,150,.gitlab-ci.yml,gpsd,gpsd/gpsd +gpsd__gpsd__Job-Allow-Failure__coverity,https://gitlab.com/gpsd/gpsd,https://gitlab.com/gpsd/gpsd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gpsd__gpsd/.gitlab-ci.yml,gpsd__gpsd,Job-Allow-Failure,,test,coverity,Allows failure of job `coverity` at stage `test`,167,.gitlab-ci.yml,gpsd,gpsd/gpsd +SilentTeaCup__congo__Job-Allow-Failure__lint-dupl,https://gitlab.com/SilentTeaCup/congo,https://gitlab.com/SilentTeaCup/congo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SilentTeaCup__congo/.gitlab-ci.yml,SilentTeaCup__congo,Job-Allow-Failure,,test,lint-dupl,Allows failure of job `lint-dupl` at stage `test`,42,.gitlab-ci.yml,SilentTeaCup,SilentTeaCup/congo +SilentTeaCup__congo__Job-Allow-Failure__lint-source,https://gitlab.com/SilentTeaCup/congo,https://gitlab.com/SilentTeaCup/congo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SilentTeaCup__congo/.gitlab-ci.yml,SilentTeaCup__congo,Job-Allow-Failure,,test,lint-source,Allows failure of job `lint-source` at stage `test`,28,.gitlab-ci.yml,SilentTeaCup,SilentTeaCup/congo +costrouc__dftfit__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,numpy,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,cython,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,mpi4py,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,numpy,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,cython,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,mpi4py,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__twine__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,twine,version specifier is missing,50,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,numpy,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,cython,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__dftfit__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/dftfit,https://gitlab.com/costrouc/dftfit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__dftfit/.gitlab-ci.yml,costrouc__dftfit,Versioning,missing,,mpi4py,version specifier is missing,34,.gitlab-ci.yml,costrouc,costrouc/dftfit +costrouc__lammps-cython__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,cython,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,numpy,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,mpi4py,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,sphinx,version specifier is missing,98,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,98,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,cython,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,numpy,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,mpi4py,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__cython__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,cython,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,numpy,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,mpi4py,version specifier is missing,19,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +costrouc__lammps-cython__Versioning__gitlabyaml__twine__missing,https://gitlab.com/costrouc/lammps-cython,https://gitlab.com/costrouc/lammps-cython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__lammps-cython/.gitlab-ci.yml,costrouc__lammps-cython,Versioning,missing,,twine,version specifier is missing,29,.gitlab-ci.yml,costrouc,costrouc/lammps-cython +eyeo__adblockplus__abpui__adblockplusui__Manual-Job__downloadxtm,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eyeo__adblockplus__abpui__adblockplusui/.gitlab-ci.yml,eyeo__adblockplus__abpui__adblockplusui,Manual-Job,,downloadxtm,downloadxtm,Manual job `downloadxtm` at stage `downloadxtm`,248,.gitlab-ci.yml,eyeo,eyeo/adblockplus/abpui/adblockplusui +eyeo__adblockplus__abpui__adblockplusui__Manual-Job__uploadcrowdin,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eyeo__adblockplus__abpui__adblockplusui/.gitlab-ci.yml,eyeo__adblockplus__abpui__adblockplusui,Manual-Job,,uploadcrowdin,uploadcrowdin,Manual job `uploadcrowdin` at stage `uploadcrowdin`,186,.gitlab-ci.yml,eyeo,eyeo/adblockplus/abpui/adblockplusui +eyeo__adblockplus__abpui__adblockplusui__Manual-Job__updatextm,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eyeo__adblockplus__abpui__adblockplusui/.gitlab-ci.yml,eyeo__adblockplus__abpui__adblockplusui,Manual-Job,,updatextm,updatextm,Manual job `updatextm` at stage `updatextm`,233,.gitlab-ci.yml,eyeo,eyeo/adblockplus/abpui/adblockplusui +eyeo__adblockplus__abpui__adblockplusui__Manual-Job__uploadxtm,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui,https://gitlab.com/eyeo/adblockplus/abpui/adblockplusui/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eyeo__adblockplus__abpui__adblockplusui/.gitlab-ci.yml,eyeo__adblockplus__abpui__adblockplusui,Manual-Job,,uploadxtm,uploadxtm,Manual job `uploadxtm` at stage `uploadxtm`,218,.gitlab-ci.yml,eyeo,eyeo/adblockplus/abpui/adblockplusui +juergen-kosel-jk__wireshark__Job-Retry__clang-6,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,clang-6,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__clang-7,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,clang-7,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__gcc-8-nopcap,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,gcc-8-nopcap,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__gcc-5,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,gcc-5,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__clang-5,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,clang-5,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__clang-7-nopcap,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,clang-7-nopcap,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__gcc-7,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,gcc-7,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__gcc-6,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,gcc-6,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +juergen-kosel-jk__wireshark__Job-Retry__gcc-8,https://gitlab.com/juergen.kosel.jk/wireshark,https://gitlab.com/juergen.kosel.jk/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juergen.kosel.jk__wireshark/.gitlab-ci.yml,juergen.kosel.jk__wireshark,Job-Retry,always,build,gcc-8,1,11,.gitlab-ci.yml,juergen.kosel.jk,juergen.kosel.jk/wireshark +binarioetico__flask-ci-demo__Versioning__requirementstxt__Flask__missing,https://gitlab.com/binarioetico/flask-ci-demo,https://gitlab.com/binarioetico/flask-ci-demo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/binarioetico__flask-ci-demo/requirements.txt,binarioetico__flask-ci-demo,Versioning,missing,,Flask,version specifier is missing,3,requirements.txt,binarioetico,binarioetico/flask-ci-demo +binarioetico__flask-ci-demo__Versioning__requirementstxt__Flask-DotEnv__missing,https://gitlab.com/binarioetico/flask-ci-demo,https://gitlab.com/binarioetico/flask-ci-demo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/binarioetico__flask-ci-demo/requirements.txt,binarioetico__flask-ci-demo,Versioning,missing,,Flask-DotEnv,version specifier is missing,4,requirements.txt,binarioetico,binarioetico/flask-ci-demo +gdevops__tuto_ansible__Versioning__requirementstxt__-ihttps---pypi-python-org-simple__missing,https://gitlab.com/gdevops/tuto_ansible,https://gitlab.com/gdevops/tuto_ansible/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_ansible/requirements.txt,gdevops__tuto_ansible,Versioning,missing,,-ihttps://pypi.python.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_ansible +gdevops__tuto_documentation__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/tuto_documentation,https://gitlab.com/gdevops/tuto_documentation/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_documentation/requirements.txt,gdevops__tuto_documentation,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_documentation +gdevops__tuto_databases__Versioning__requirementstxt__-ihttps---pypi-python-org-simple__missing,https://gitlab.com/gdevops/tuto_databases,https://gitlab.com/gdevops/tuto_databases/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_databases/requirements.txt,gdevops__tuto_databases,Versioning,missing,,-ihttps://pypi.python.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_databases +gdevops__tuto_devops__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/tuto_devops,https://gitlab.com/gdevops/tuto_devops/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_devops/requirements.txt,gdevops__tuto_devops,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_devops +ecruzolivera__eHSM__Job-Allow-Failure__cpp_check,https://gitlab.com/ecruzolivera/eHSM,https://gitlab.com/ecruzolivera/eHSM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ecruzolivera__eHSM/.gitlab-ci.yml,ecruzolivera__eHSM,Job-Allow-Failure,,test,cpp_check,Allows failure of job `cpp_check` at stage `test`,20,.gitlab-ci.yml,ecruzolivera,ecruzolivera/eHSM +dzamlo__gitlab-ci-rust-test__Manual-Job__test-prerelase,https://gitlab.com/dzamlo/gitlab-ci-rust-test,https://gitlab.com/dzamlo/gitlab-ci-rust-test/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dzamlo__gitlab-ci-rust-test/.gitlab-ci.yml,dzamlo__gitlab-ci-rust-test,Manual-Job,,test,test-prerelase,Manual job `test-prerelase` at stage `test`,70,.gitlab-ci.yml,dzamlo,dzamlo/gitlab-ci-rust-test +johnjawed__ror__Job-Allow-Failure__performance,https://gitlab.com/johnjawed/ror,https://gitlab.com/johnjawed/ror/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/johnjawed__ror/.gitlab-ci.yml,johnjawed__ror,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,91,.gitlab-ci.yml,johnjawed,johnjawed/ror +johnjawed__ror__Job-Allow-Failure__stop_review,https://gitlab.com/johnjawed/ror,https://gitlab.com/johnjawed/ror/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/johnjawed__ror/.gitlab-ci.yml,johnjawed__ror,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,190,.gitlab-ci.yml,johnjawed,johnjawed/ror +johnjawed__ror__Job-Allow-Failure__codequality,https://gitlab.com/johnjawed/ror,https://gitlab.com/johnjawed/ror/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/johnjawed__ror/.gitlab-ci.yml,johnjawed__ror,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,78,.gitlab-ci.yml,johnjawed,johnjawed/ror +johnjawed__ror__Job-Allow-Failure__dependency_scanning,https://gitlab.com/johnjawed/ror,https://gitlab.com/johnjawed/ror/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/johnjawed__ror/.gitlab-ci.yml,johnjawed__ror,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,124,.gitlab-ci.yml,johnjawed,johnjawed/ror +webprogrammingUniTN__webproject__Versioning__com-soapandtherest-shoppinglist-shoppinglist-data-__javax-inject-javax-inject__only-major-number,https://gitlab.com/webprogrammingUniTN/webproject,https://gitlab.com/webprogrammingUniTN/webproject/blob/master/shoppinglist-data/pom.xml,/home/xxx/fse-submission/linter_configfiles/webprogrammingUniTN__webproject/shoppinglist-data/pom.xml,webprogrammingUniTN__webproject,Versioning,only-major-number,,javax.inject/javax.inject,"version specifier `1` only refers to a major release, concrete minor versions might be incompatible",56,shoppinglist-data/pom.xml,webprogrammingUniTN,webprogrammingUniTN/webproject +webprogrammingUniTN__webproject__Versioning__com-soapandtherest-shoppinglist-shoppinglist-data-__com-amazonaws-aws-java-sdk-s3__missing,https://gitlab.com/webprogrammingUniTN/webproject,https://gitlab.com/webprogrammingUniTN/webproject/blob/master/shoppinglist-data/pom.xml,/home/xxx/fse-submission/linter_configfiles/webprogrammingUniTN__webproject/shoppinglist-data/pom.xml,webprogrammingUniTN__webproject,Versioning,missing,,com.amazonaws/aws-java-sdk-s3,version specifier is missing,122,shoppinglist-data/pom.xml,webprogrammingUniTN,webprogrammingUniTN/webproject +webprogrammingUniTN__webproject__Versioning__com-soapandtherest-shoppinglist-shoppinglist-data-__com-amazonaws-aws-java-sdk-sts__missing,https://gitlab.com/webprogrammingUniTN/webproject,https://gitlab.com/webprogrammingUniTN/webproject/blob/master/shoppinglist-data/pom.xml,/home/xxx/fse-submission/linter_configfiles/webprogrammingUniTN__webproject/shoppinglist-data/pom.xml,webprogrammingUniTN__webproject,Versioning,missing,,com.amazonaws/aws-java-sdk-sts,version specifier is missing,126,shoppinglist-data/pom.xml,webprogrammingUniTN,webprogrammingUniTN/webproject +gdevops__tuto_ides__Versioning__requirementstxt__-ihttps---pypi-python-org-simple__missing,https://gitlab.com/gdevops/tuto_ides,https://gitlab.com/gdevops/tuto_ides/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_ides/requirements.txt,gdevops__tuto_ides,Versioning,missing,,-ihttps://pypi.python.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_ides +gdevops__tuto_kubernetes__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/tuto_kubernetes,https://gitlab.com/gdevops/tuto_kubernetes/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_kubernetes/requirements.txt,gdevops__tuto_kubernetes,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_kubernetes +spare-time-demos__intime2__Job-Allow-Failure__test-frontend,https://gitlab.com/spare-time-demos/intime2,https://gitlab.com/spare-time-demos/intime2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__intime2/.gitlab-ci.yml,spare-time-demos__intime2,Job-Allow-Failure,,test,test-frontend,Allows failure of job `test-frontend` at stage `test`,77,.gitlab-ci.yml,spare-time-demos,spare-time-demos/intime2 +spare-time-demos__intime2__Job-Allow-Failure__deploy-push-docker-gitlab-image,https://gitlab.com/spare-time-demos/intime2,https://gitlab.com/spare-time-demos/intime2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__intime2/.gitlab-ci.yml,spare-time-demos__intime2,Job-Allow-Failure,,deploy,deploy-push-docker-gitlab-image,Allows failure of job `deploy-push-docker-gitlab-image` at stage `deploy`,144,.gitlab-ci.yml,spare-time-demos,spare-time-demos/intime2 +spare-time-demos__intime2__Job-Allow-Failure__test-backend,https://gitlab.com/spare-time-demos/intime2,https://gitlab.com/spare-time-demos/intime2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__intime2/.gitlab-ci.yml,spare-time-demos__intime2,Job-Allow-Failure,,test,test-backend,Allows failure of job `test-backend` at stage `test`,54,.gitlab-ci.yml,spare-time-demos,spare-time-demos/intime2 +spare-time-demos__intime2__Job-Allow-Failure__qa-test-e2e-cypress,https://gitlab.com/spare-time-demos/intime2,https://gitlab.com/spare-time-demos/intime2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__intime2/.gitlab-ci.yml,spare-time-demos__intime2,Job-Allow-Failure,,test,qa-test-e2e-cypress,Allows failure of job `qa-test-e2e-cypress` at stage `test`,37,.gitlab-ci.yml,spare-time-demos,spare-time-demos/intime2 +spare-time-demos__intime2__Job-Allow-Failure__qa-test-e2e-testcafe,https://gitlab.com/spare-time-demos/intime2,https://gitlab.com/spare-time-demos/intime2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__intime2/.gitlab-ci.yml,spare-time-demos__intime2,Job-Allow-Failure,,test,qa-test-e2e-testcafe,Allows failure of job `qa-test-e2e-testcafe` at stage `test`,11,.gitlab-ci.yml,spare-time-demos,spare-time-demos/intime2 +KDemeul__nebula__Versioning__requirementstxt__django__missing,https://gitlab.com/KDemeul/nebula,https://gitlab.com/KDemeul/nebula/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/KDemeul__nebula/requirements.txt,KDemeul__nebula,Versioning,missing,,django,version specifier is missing,1,requirements.txt,KDemeul,KDemeul/nebula +KDemeul__nebula__Versioning__requirementstxt__psycopg2__missing,https://gitlab.com/KDemeul/nebula,https://gitlab.com/KDemeul/nebula/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/KDemeul__nebula/requirements.txt,KDemeul__nebula,Versioning,missing,,psycopg2,version specifier is missing,2,requirements.txt,KDemeul,KDemeul/nebula +KDemeul__nebula__Versioning__requirementstxt__uwsgi__missing,https://gitlab.com/KDemeul/nebula,https://gitlab.com/KDemeul/nebula/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/KDemeul__nebula/requirements.txt,KDemeul__nebula,Versioning,missing,,uwsgi,version specifier is missing,3,requirements.txt,KDemeul,KDemeul/nebula +KDemeul__nebula__Versioning__requirementstxt__pytest-django__missing,https://gitlab.com/KDemeul/nebula,https://gitlab.com/KDemeul/nebula/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/KDemeul__nebula/requirements.txt,KDemeul__nebula,Versioning,missing,,pytest-django,version specifier is missing,5,requirements.txt,KDemeul,KDemeul/nebula +ckhurewa__qhist__Versioning__requirementstxt__pyroot_zen__missing,https://gitlab.com/ckhurewa/qhist,https://gitlab.com/ckhurewa/qhist/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ckhurewa__qhist/requirements.txt,ckhurewa__qhist,Versioning,missing,,pyroot_zen,version specifier is missing,1,requirements.txt,ckhurewa,ckhurewa/qhist +ckhurewa__qhist__Versioning__requirementstxt__PythonCK__missing,https://gitlab.com/ckhurewa/qhist,https://gitlab.com/ckhurewa/qhist/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ckhurewa__qhist/requirements.txt,ckhurewa__qhist,Versioning,missing,,PythonCK,version specifier is missing,2,requirements.txt,ckhurewa,ckhurewa/qhist +gdevops__config__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/config,https://gitlab.com/gdevops/config/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__config/requirements.txt,gdevops__config,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/config +wpdesk__wp-basic-requirements__Job-Allow-Failure__integration-test-current-woocommerce,https://gitlab.com/wpdesk/wp-basic-requirements,https://gitlab.com/wpdesk/wp-basic-requirements/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-basic-requirements/.gitlab-ci.yml,wpdesk__wp-basic-requirements,Job-Allow-Failure,,test,integration test current woocommerce,Allows failure of job `integration test current woocommerce` at stage `test`,146,.gitlab-ci.yml,wpdesk,wpdesk/wp-basic-requirements +wpdesk__wp-basic-requirements__Job-Allow-Failure__phpmetric-metrics,https://gitlab.com/wpdesk/wp-basic-requirements,https://gitlab.com/wpdesk/wp-basic-requirements/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-basic-requirements/.gitlab-ci.yml,wpdesk__wp-basic-requirements,Job-Allow-Failure,,tools,phpmetric metrics,Allows failure of job `phpmetric metrics` at stage `tools`,82,.gitlab-ci.yml,wpdesk,wpdesk/wp-basic-requirements +wpdesk__wp-basic-requirements__Job-Allow-Failure__churn-metrics,https://gitlab.com/wpdesk/wp-basic-requirements,https://gitlab.com/wpdesk/wp-basic-requirements/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-basic-requirements/.gitlab-ci.yml,wpdesk__wp-basic-requirements,Job-Allow-Failure,,tools,churn metrics,Allows failure of job `churn metrics` at stage `tools`,99,.gitlab-ci.yml,wpdesk,wpdesk/wp-basic-requirements +wpdesk__wp-basic-requirements__Manual-Job__phpmetric-metrics,https://gitlab.com/wpdesk/wp-basic-requirements,https://gitlab.com/wpdesk/wp-basic-requirements/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-basic-requirements/.gitlab-ci.yml,wpdesk__wp-basic-requirements,Manual-Job,,tools,phpmetric metrics,Manual job `phpmetric metrics` at stage `tools`,82,.gitlab-ci.yml,wpdesk,wpdesk/wp-basic-requirements +wpdesk__wp-basic-requirements__Manual-Job__churn-metrics,https://gitlab.com/wpdesk/wp-basic-requirements,https://gitlab.com/wpdesk/wp-basic-requirements/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-basic-requirements/.gitlab-ci.yml,wpdesk__wp-basic-requirements,Manual-Job,,tools,churn metrics,Manual job `churn metrics` at stage `tools`,99,.gitlab-ci.yml,wpdesk,wpdesk/wp-basic-requirements +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__ubuntu-bionic-mate-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,ubuntu-bionic-mate-armhf,Allows failure of job `ubuntu-bionic-mate-armhf` at stage `build`,55,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__ubuntu-bionic-mate-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,ubuntu-bionic-mate-arm64,Allows failure of job `ubuntu-bionic-mate-arm64` at stage `build`,56,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__debian-stretch-openmediavault-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,debian-stretch-openmediavault-armhf,Allows failure of job `debian-stretch-openmediavault-armhf` at stage `build`,61,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__debian-stretch-openmediavault-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,debian-stretch-openmediavault-arm64,Allows failure of job `debian-stretch-openmediavault-arm64` at stage `build`,62,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__ubuntu-disco-mate-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,ubuntu-disco-mate-armhf,Allows failure of job `ubuntu-disco-mate-armhf` at stage `build`,58,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Job-Allow-Failure__ubuntu-disco-mate-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Job-Allow-Failure,,build,ubuntu-disco-mate-arm64,Allows failure of job `ubuntu-disco-mate-arm64` at stage `build`,59,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__ubuntu-bionic-mate-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,ubuntu-bionic-mate-armhf,Manual job `ubuntu-bionic-mate-armhf` at stage `build`,55,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__ubuntu-bionic-mate-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,ubuntu-bionic-mate-arm64,Manual job `ubuntu-bionic-mate-arm64` at stage `build`,56,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__debian-stretch-openmediavault-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,debian-stretch-openmediavault-armhf,Manual job `debian-stretch-openmediavault-armhf` at stage `build`,61,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__debian-stretch-openmediavault-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,debian-stretch-openmediavault-arm64,Manual job `debian-stretch-openmediavault-arm64` at stage `build`,62,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__ubuntu-disco-mate-armhf,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,ubuntu-disco-mate-armhf,Manual job `ubuntu-disco-mate-armhf` at stage `build`,58,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +ayufan-repos__rock64__linux-rootfs__Manual-Job__ubuntu-disco-mate-arm64,https://gitlab.com/ayufan-repos/rock64/linux-rootfs,https://gitlab.com/ayufan-repos/rock64/linux-rootfs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan-repos__rock64__linux-rootfs/.gitlab-ci.yml,ayufan-repos__rock64__linux-rootfs,Manual-Job,,build,ubuntu-disco-mate-arm64,Manual job `ubuntu-disco-mate-arm64` at stage `build`,59,.gitlab-ci.yml,ayufan-repos,ayufan-repos/rock64/linux-rootfs +melvinvermeeren__template_cpp__Job-Allow-Failure__clang_tidy,https://gitlab.com/melvinvermeeren/template_cpp,https://gitlab.com/melvinvermeeren/template_cpp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/melvinvermeeren__template_cpp/.gitlab-ci.yml,melvinvermeeren__template_cpp,Job-Allow-Failure,,analyse,clang_tidy,Allows failure of job `clang_tidy` at stage `analyse`,20,.gitlab-ci.yml,melvinvermeeren,melvinvermeeren/template_cpp +melvinvermeeren__template_cpp__Job-Allow-Failure__line_limit,https://gitlab.com/melvinvermeeren/template_cpp,https://gitlab.com/melvinvermeeren/template_cpp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/melvinvermeeren__template_cpp/.gitlab-ci.yml,melvinvermeeren__template_cpp,Job-Allow-Failure,,analyse,line_limit,Allows failure of job `line_limit` at stage `analyse`,41,.gitlab-ci.yml,melvinvermeeren,melvinvermeeren/template_cpp +melvinvermeeren__template_cpp__Job-Allow-Failure__clang_format,https://gitlab.com/melvinvermeeren/template_cpp,https://gitlab.com/melvinvermeeren/template_cpp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/melvinvermeeren__template_cpp/.gitlab-ci.yml,melvinvermeeren__template_cpp,Job-Allow-Failure,,analyse,clang_format,Allows failure of job `clang_format` at stage `analyse`,10,.gitlab-ci.yml,melvinvermeeren,melvinvermeeren/template_cpp +melvinvermeeren__template_cpp__Job-Allow-Failure__doxygen,https://gitlab.com/melvinvermeeren/template_cpp,https://gitlab.com/melvinvermeeren/template_cpp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/melvinvermeeren__template_cpp/.gitlab-ci.yml,melvinvermeeren__template_cpp,Job-Allow-Failure,,analyse,doxygen,Allows failure of job `doxygen` at stage `analyse`,31,.gitlab-ci.yml,melvinvermeeren,melvinvermeeren/template_cpp +melvinvermeeren__template_cpp__Job-Allow-Failure__regex_check,https://gitlab.com/melvinvermeeren/template_cpp,https://gitlab.com/melvinvermeeren/template_cpp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/melvinvermeeren__template_cpp/.gitlab-ci.yml,melvinvermeeren__template_cpp,Job-Allow-Failure,,analyse,regex_check,Allows failure of job `regex_check` at stage `analyse`,51,.gitlab-ci.yml,melvinvermeeren,melvinvermeeren/template_cpp +wpdesk__wp-settings__Job-Allow-Failure__acceptance-test,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Allow-Failure,,tests,acceptance test,Allows failure of job `acceptance test` at stage `tests`,179,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Allow-Failure__integration-test-current-woocommerce,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Allow-Failure,,test,integration test current woocommerce,Allows failure of job `integration test current woocommerce` at stage `test`,169,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Allow-Failure__phpmetric-metrics,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Allow-Failure,,tools,phpmetric metrics,Allows failure of job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Allow-Failure__churn-metrics,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Allow-Failure,,tools,churn metrics,Allows failure of job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Retry__deploy-to-shop,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Retry,always,deploy,deploy to shop,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Retry__deploy-to-demo,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Retry,always,deploy,deploy to demo,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Job-Retry__deploy-to-repository,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Job-Retry,always,deploy,deploy to repository,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Manual-Job__phpmetric-metrics,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Manual-Job,,tools,phpmetric metrics,Manual job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +wpdesk__wp-settings__Manual-Job__churn-metrics,https://gitlab.com/wpdesk/wp-settings,https://gitlab.com/wpdesk/wp-settings/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-settings/.gitlab-ci.yml,wpdesk__wp-settings,Manual-Job,,tools,churn metrics,Manual job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wp-settings +timelord__sklearn_transformers__Versioning__requirementstxt__pandas__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,pandas,version specifier is missing,1,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__requirementstxt__numpy__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,numpy,version specifier is missing,2,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__requirementstxt__sklearn-pandas__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,sklearn-pandas,version specifier is missing,3,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__requirementstxt__scikit-learn__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,scikit-learn,version specifier is missing,4,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__requirementstxt__joblib__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,joblib,version specifier is missing,5,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__requirementstxt__statsmodels__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/requirements.txt,timelord__sklearn_transformers,Versioning,missing,,statsmodels,version specifier is missing,6,requirements.txt,timelord,timelord/sklearn_transformers +timelord__sklearn_transformers__Versioning__gitlabyaml__redis__missing,https://gitlab.com/timelord/sklearn_transformers,https://gitlab.com/timelord/sklearn_transformers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/timelord__sklearn_transformers/.gitlab-ci.yml,timelord__sklearn_transformers,Versioning,missing,,redis,version specifier is missing,9,.gitlab-ci.yml,timelord,timelord/sklearn_transformers +EltraEden__APRS__Versioning__gitlabyaml__docker__missing,https://gitlab.com/EltraEden/APRS,https://gitlab.com/EltraEden/APRS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EltraEden__APRS/.gitlab-ci.yml,EltraEden__APRS,Versioning,missing,,docker,version specifier is missing,3,.gitlab-ci.yml,EltraEden,EltraEden/APRS +wpdesk__wp-dataset__Job-Allow-Failure__acceptance-test,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Allow-Failure,,tests,acceptance test,Allows failure of job `acceptance test` at stage `tests`,179,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Allow-Failure__integration-test-current-woocommerce,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Allow-Failure,,test,integration test current woocommerce,Allows failure of job `integration test current woocommerce` at stage `test`,169,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Allow-Failure__phpmetric-metrics,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Allow-Failure,,tools,phpmetric metrics,Allows failure of job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Allow-Failure__churn-metrics,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Allow-Failure,,tools,churn metrics,Allows failure of job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Retry__deploy-to-shop,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Retry,always,deploy,deploy to shop,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Retry__deploy-to-demo,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Retry,always,deploy,deploy to demo,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Job-Retry__deploy-to-repository,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Job-Retry,always,deploy,deploy to repository,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Manual-Job__phpmetric-metrics,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Manual-Job,,tools,phpmetric metrics,Manual job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-dataset__Manual-Job__churn-metrics,https://gitlab.com/wpdesk/wp-dataset,https://gitlab.com/wpdesk/wp-dataset/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-dataset/.gitlab-ci.yml,wpdesk__wp-dataset,Manual-Job,,tools,churn metrics,Manual job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wp-dataset +wpdesk__wp-view__Job-Allow-Failure__phpmetric-metrics,https://gitlab.com/wpdesk/wp-view,https://gitlab.com/wpdesk/wp-view/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-view/.gitlab-ci.yml,wpdesk__wp-view,Job-Allow-Failure,,tools,phpmetric metrics,Allows failure of job `phpmetric metrics` at stage `tools`,40,.gitlab-ci.yml,wpdesk,wpdesk/wp-view +wpdesk__wp-view__Job-Allow-Failure__churn-metrics,https://gitlab.com/wpdesk/wp-view,https://gitlab.com/wpdesk/wp-view/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-view/.gitlab-ci.yml,wpdesk__wp-view,Job-Allow-Failure,,tools,churn metrics,Allows failure of job `churn metrics` at stage `tools`,57,.gitlab-ci.yml,wpdesk,wpdesk/wp-view +wpdesk__wp-view__Manual-Job__phpmetric-metrics,https://gitlab.com/wpdesk/wp-view,https://gitlab.com/wpdesk/wp-view/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-view/.gitlab-ci.yml,wpdesk__wp-view,Manual-Job,,tools,phpmetric metrics,Manual job `phpmetric metrics` at stage `tools`,40,.gitlab-ci.yml,wpdesk,wpdesk/wp-view +wpdesk__wp-view__Manual-Job__churn-metrics,https://gitlab.com/wpdesk/wp-view,https://gitlab.com/wpdesk/wp-view/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wp-view/.gitlab-ci.yml,wpdesk__wp-view,Manual-Job,,tools,churn metrics,Manual job `churn metrics` at stage `tools`,57,.gitlab-ci.yml,wpdesk,wpdesk/wp-view +ChristophS__aws_adfs__Versioning__requirementstxt__boto3__missing,https://gitlab.com/ChristophS/aws_adfs,https://gitlab.com/ChristophS/aws_adfs/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ChristophS__aws_adfs/requirements.txt,ChristophS__aws_adfs,Versioning,missing,,boto3,version specifier is missing,1,requirements.txt,ChristophS,ChristophS/aws_adfs +ChristophS__aws_adfs__Versioning__requirementstxt__requests__missing,https://gitlab.com/ChristophS/aws_adfs,https://gitlab.com/ChristophS/aws_adfs/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ChristophS__aws_adfs/requirements.txt,ChristophS__aws_adfs,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,ChristophS,ChristophS/aws_adfs +ChristophS__aws_adfs__Versioning__requirementstxt__beautifulsoup4__missing,https://gitlab.com/ChristophS/aws_adfs,https://gitlab.com/ChristophS/aws_adfs/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ChristophS__aws_adfs/requirements.txt,ChristophS__aws_adfs,Versioning,missing,,beautifulsoup4,version specifier is missing,3,requirements.txt,ChristophS,ChristophS/aws_adfs +ChristophS__aws_adfs__Versioning__requirementstxt__ConfigParser__missing,https://gitlab.com/ChristophS/aws_adfs,https://gitlab.com/ChristophS/aws_adfs/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ChristophS__aws_adfs/requirements.txt,ChristophS__aws_adfs,Versioning,missing,,ConfigParser,version specifier is missing,4,requirements.txt,ChristophS,ChristophS/aws_adfs +ChristophS__aws_adfs__Versioning__requirementstxt__pytz__missing,https://gitlab.com/ChristophS/aws_adfs,https://gitlab.com/ChristophS/aws_adfs/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ChristophS__aws_adfs/requirements.txt,ChristophS__aws_adfs,Versioning,missing,,pytz,version specifier is missing,5,requirements.txt,ChristophS,ChristophS/aws_adfs +gdevops__tuto_project__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/tuto_project,https://gitlab.com/gdevops/tuto_project/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_project/requirements.txt,gdevops__tuto_project,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_project +cunity__cunit__Manual-Job__cunit-ubuntu-19-04-power9,https://gitlab.com/cunity/cunit,https://gitlab.com/cunity/cunit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cunity__cunit/.gitlab-ci.yml,cunity__cunit,Manual-Job,,build,cunit-ubuntu-19.04-power9,Manual job `cunit-ubuntu-19.04-power9` at stage `build`,32,.gitlab-ci.yml,cunity,cunity/cunit +SpeciesFileGroup__taxonworks__Job-Allow-Failure__dependency_scanning,https://gitlab.com/SpeciesFileGroup/taxonworks,https://gitlab.com/SpeciesFileGroup/taxonworks/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SpeciesFileGroup__taxonworks/.gitlab-ci.yml,SpeciesFileGroup__taxonworks,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,1,.gitlab-ci.yml,SpeciesFileGroup,SpeciesFileGroup/taxonworks +redsharpbyte__fets__Versioning__requirementstxt__numpy__missing,https://gitlab.com/redsharpbyte/fets,https://gitlab.com/redsharpbyte/fets/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/redsharpbyte__fets/requirements.txt,redsharpbyte__fets,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,redsharpbyte,redsharpbyte/fets +redsharpbyte__fets__Versioning__requirementstxt__scipy__missing,https://gitlab.com/redsharpbyte/fets,https://gitlab.com/redsharpbyte/fets/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/redsharpbyte__fets/requirements.txt,redsharpbyte__fets,Versioning,missing,,scipy,version specifier is missing,2,requirements.txt,redsharpbyte,redsharpbyte/fets +redsharpbyte__fets__Versioning__requirementstxt__pandas__missing,https://gitlab.com/redsharpbyte/fets,https://gitlab.com/redsharpbyte/fets/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/redsharpbyte__fets/requirements.txt,redsharpbyte__fets,Versioning,missing,,pandas,version specifier is missing,3,requirements.txt,redsharpbyte,redsharpbyte/fets +redsharpbyte__fets__Versioning__requirementstxt__scikit-learn__missing,https://gitlab.com/redsharpbyte/fets,https://gitlab.com/redsharpbyte/fets/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/redsharpbyte__fets/requirements.txt,redsharpbyte__fets,Versioning,missing,,scikit-learn,version specifier is missing,4,requirements.txt,redsharpbyte,redsharpbyte/fets +redsharpbyte__fets__Versioning__requirementstxt__joblib__missing,https://gitlab.com/redsharpbyte/fets,https://gitlab.com/redsharpbyte/fets/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/redsharpbyte__fets/requirements.txt,redsharpbyte__fets,Versioning,missing,,joblib,version specifier is missing,5,requirements.txt,redsharpbyte,redsharpbyte/fets +matej-plavevski__HackathonFlask__Versioning__gitlabyaml__anybadge__missing,https://gitlab.com/matej.plavevski/HackathonFlask,https://gitlab.com/matej.plavevski/HackathonFlask/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/matej.plavevski__HackathonFlask/.gitlab-ci.yml,matej.plavevski__HackathonFlask,Versioning,missing,,anybadge,version specifier is missing,19,.gitlab-ci.yml,matej.plavevski,matej.plavevski/HackathonFlask +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__wait_for_end_of_install_full,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap_oom_automatic_installation/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap_oom_automatic_installation,Job-Allow-Failure,,wait_full,wait_for_end_of_install_full,Allows failure of job `wait_for_end_of_install_full` at stage `wait_full`,-1,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap_oom_automatic_installation +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__wait_for_end_of_install_core,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap_oom_automatic_installation/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap_oom_automatic_installation,Job-Allow-Failure,,wait_core,wait_for_end_of_install_core,Allows failure of job `wait_for_end_of_install_core` at stage `wait_core`,-1,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap_oom_automatic_installation +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__postconfiguration,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap_oom_automatic_installation/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap_oom_automatic_installation,Job-Allow-Failure,,postconfigure,postconfiguration,Allows failure of job `postconfiguration` at stage `postconfigure`,-1,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap_oom_automatic_installation +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__wait_for_end_of_install_small,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap_oom_automatic_installation/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap_oom_automatic_installation,Job-Allow-Failure,,wait_small,wait_for_end_of_install_small,Allows failure of job `wait_for_end_of_install_small` at stage `wait_small`,-1,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap_oom_automatic_installation +Orange-OpenSource__lfn__onap__onap_oom_automatic_installation__Job-Allow-Failure__wait_for_end_of_install_medium,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation,https://gitlab.com/Orange-OpenSource/lfn/onap/onap_oom_automatic_installation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap_oom_automatic_installation/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap_oom_automatic_installation,Job-Allow-Failure,,wait_medium,wait_for_end_of_install_medium,Allows failure of job `wait_for_end_of_install_medium` at stage `wait_medium`,-1,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap_oom_automatic_installation +Vertana__lolresearchbot__Job-Allow-Failure__performance,https://gitlab.com/Vertana/lolresearchbot,https://gitlab.com/Vertana/lolresearchbot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Vertana__lolresearchbot/.gitlab-ci.yml,Vertana__lolresearchbot,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,110,.gitlab-ci.yml,Vertana,Vertana/lolresearchbot +Vertana__lolresearchbot__Job-Allow-Failure__stop_review,https://gitlab.com/Vertana/lolresearchbot,https://gitlab.com/Vertana/lolresearchbot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Vertana__lolresearchbot/.gitlab-ci.yml,Vertana__lolresearchbot,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,210,.gitlab-ci.yml,Vertana,Vertana/lolresearchbot +Vertana__lolresearchbot__Job-Allow-Failure__codequality,https://gitlab.com/Vertana/lolresearchbot,https://gitlab.com/Vertana/lolresearchbot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Vertana__lolresearchbot/.gitlab-ci.yml,Vertana__lolresearchbot,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,97,.gitlab-ci.yml,Vertana,Vertana/lolresearchbot +jonocarroll__mathpix__Job-Allow-Failure__r-oldrel,https://gitlab.com/jonocarroll/mathpix,https://gitlab.com/jonocarroll/mathpix/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonocarroll__mathpix/.gitlab-ci.yml,jonocarroll__mathpix,Job-Allow-Failure,,test,r-oldrel,Allows failure of job `r-oldrel` at stage `test`,34,.gitlab-ci.yml,jonocarroll,jonocarroll/mathpix +ire4ever1190__app4flask__Versioning__requirementstxt__datetime__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,datetime,version specifier is missing,1,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__mechanicalsoup__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,mechanicalsoup,version specifier is missing,2,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__flask__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,flask,version specifier is missing,3,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__tinydb__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,tinydb,version specifier is missing,4,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__flask-wtf__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,flask-wtf,version specifier is missing,5,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__pytz__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,pytz,version specifier is missing,6,requirements.txt,ire4ever1190,ire4ever1190/app4flask +ire4ever1190__app4flask__Versioning__requirementstxt__wtforms__missing,https://gitlab.com/ire4ever1190/app4flask,https://gitlab.com/ire4ever1190/app4flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ire4ever1190__app4flask/requirements.txt,ire4ever1190__app4flask,Versioning,missing,,wtforms,version specifier is missing,7,requirements.txt,ire4ever1190,ire4ever1190/app4flask +r2p2__stopwatch__Job-Allow-Failure__code_quality,https://gitlab.com/r2p2/stopwatch,https://gitlab.com/r2p2/stopwatch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/r2p2__stopwatch/.gitlab-ci.yml,r2p2__stopwatch,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,16,.gitlab-ci.yml,r2p2,r2p2/stopwatch +hb9fxx__qrsspig__Job-Allow-Failure__report-cppcheck,https://gitlab.com/hb9fxx/qrsspig,https://gitlab.com/hb9fxx/qrsspig/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hb9fxx__qrsspig/.gitlab-ci.yml,hb9fxx__qrsspig,Job-Allow-Failure,,report,report:cppcheck,Allows failure of job `report:cppcheck` at stage `report`,97,.gitlab-ci.yml,hb9fxx,hb9fxx/qrsspig +hb9fxx__qrsspig__Job-Allow-Failure__unittests-cppcheck,https://gitlab.com/hb9fxx/qrsspig,https://gitlab.com/hb9fxx/qrsspig/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hb9fxx__qrsspig/.gitlab-ci.yml,hb9fxx__qrsspig,Job-Allow-Failure,,test,unittests:cppcheck,Allows failure of job `unittests:cppcheck` at stage `test`,85,.gitlab-ci.yml,hb9fxx,hb9fxx/qrsspig +hb9fxx__qrsspig__Job-Allow-Failure__unittests-valgrind,https://gitlab.com/hb9fxx/qrsspig,https://gitlab.com/hb9fxx/qrsspig/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hb9fxx__qrsspig/.gitlab-ci.yml,hb9fxx__qrsspig,Job-Allow-Failure,,test,unittests:valgrind,Allows failure of job `unittests:valgrind` at stage `test`,65,.gitlab-ci.yml,hb9fxx,hb9fxx/qrsspig +rmcgregor__aio-msgpack-rpc__Versioning__gitlabyaml__twine__missing,https://gitlab.com/rmcgregor/aio-msgpack-rpc,https://gitlab.com/rmcgregor/aio-msgpack-rpc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rmcgregor__aio-msgpack-rpc/.gitlab-ci.yml,rmcgregor__aio-msgpack-rpc,Versioning,missing,,twine,version specifier is missing,40,.gitlab-ci.yml,rmcgregor,rmcgregor/aio-msgpack-rpc +pgerber__zbase32-rust__Job-Allow-Failure__nightly,https://gitlab.com/pgerber/zbase32-rust,https://gitlab.com/pgerber/zbase32-rust/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgerber__zbase32-rust/.gitlab-ci.yml,pgerber__zbase32-rust,Job-Allow-Failure,,test,nightly,Allows failure of job `nightly` at stage `test`,30,.gitlab-ci.yml,pgerber,pgerber/zbase32-rust +xomachine__NESM__Job-Allow-Failure__test-devel,https://gitlab.com/xomachine/NESM,https://gitlab.com/xomachine/NESM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/xomachine__NESM/.gitlab-ci.yml,xomachine__NESM,Job-Allow-Failure,,test,test:devel,Allows failure of job `test:devel` at stage `test`,42,.gitlab-ci.yml,xomachine,xomachine/NESM +Salamek__version__Versioning__requirementstxt__docopt__missing,https://gitlab.com/Salamek/version,https://gitlab.com/Salamek/version/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__version/requirements.txt,Salamek__version,Versioning,missing,,docopt,version specifier is missing,1,requirements.txt,Salamek,Salamek/version +Salamek__version__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/Salamek/version,https://gitlab.com/Salamek/version/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__version/requirements.txt,Salamek__version,Versioning,missing,,pyyaml,version specifier is missing,2,requirements.txt,Salamek,Salamek/version +Salamek__version__Versioning__requirementstxt__gitpython__missing,https://gitlab.com/Salamek/version,https://gitlab.com/Salamek/version/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__version/requirements.txt,Salamek__version,Versioning,missing,,gitpython,version specifier is missing,3,requirements.txt,Salamek,Salamek/version +r05323028__ptt_crawler__Versioning__requirementstxt__scrapy__any-upper-version,https://gitlab.com/r05323028/ptt_crawler,https://gitlab.com/r05323028/ptt_crawler/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/r05323028__ptt_crawler/requirements.txt,r05323028__ptt_crawler,Versioning,any-upper-version,,scrapy,version specifier `>=1.5` matches future versions that might become incompatible,1,requirements.txt,r05323028,r05323028/ptt_crawler +nwmitchell__zendesk-downloader__Versioning__requirementstxt__docopt__missing,https://gitlab.com/nwmitchell/zendesk-downloader,https://gitlab.com/nwmitchell/zendesk-downloader/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/nwmitchell__zendesk-downloader/requirements.txt,nwmitchell__zendesk-downloader,Versioning,missing,,docopt,version specifier is missing,1,requirements.txt,nwmitchell,nwmitchell/zendesk-downloader +nwmitchell__zendesk-downloader__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/nwmitchell/zendesk-downloader,https://gitlab.com/nwmitchell/zendesk-downloader/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/nwmitchell__zendesk-downloader/requirements.txt,nwmitchell__zendesk-downloader,Versioning,missing,,PyYAML,version specifier is missing,2,requirements.txt,nwmitchell,nwmitchell/zendesk-downloader +nwmitchell__zendesk-downloader__Versioning__requirementstxt__requests__missing,https://gitlab.com/nwmitchell/zendesk-downloader,https://gitlab.com/nwmitchell/zendesk-downloader/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/nwmitchell__zendesk-downloader/requirements.txt,nwmitchell__zendesk-downloader,Versioning,missing,,requests,version specifier is missing,3,requirements.txt,nwmitchell,nwmitchell/zendesk-downloader +nwmitchell__zendesk-downloader__Versioning__requirementstxt__unidecode__missing,https://gitlab.com/nwmitchell/zendesk-downloader,https://gitlab.com/nwmitchell/zendesk-downloader/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/nwmitchell__zendesk-downloader/requirements.txt,nwmitchell__zendesk-downloader,Versioning,missing,,unidecode,version specifier is missing,4,requirements.txt,nwmitchell,nwmitchell/zendesk-downloader +JuliaGPU__CUDAapi-jl__Job-Allow-Failure__julia-nightly,https://gitlab.com/JuliaGPU/CUDAapi.jl,https://gitlab.com/JuliaGPU/CUDAapi.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CUDAapi.jl/.gitlab-ci.yml,JuliaGPU__CUDAapi.jl,Job-Allow-Failure,,test,julia:nightly,Allows failure of job `julia:nightly` at stage `test`,40,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CUDAapi.jl +JuliaGPU__CuArrays-jl__Job-Allow-Failure__julia-nightly,https://gitlab.com/JuliaGPU/CuArrays.jl,https://gitlab.com/JuliaGPU/CuArrays.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CuArrays.jl/.gitlab-ci.yml,JuliaGPU__CuArrays.jl,Job-Allow-Failure,,test,julia:nightly,Allows failure of job `julia:nightly` at stage `test`,28,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CuArrays.jl +JuliaGPU__CuArrays-jl__Job-Allow-Failure__flux,https://gitlab.com/JuliaGPU/CuArrays.jl,https://gitlab.com/JuliaGPU/CuArrays.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CuArrays.jl/.gitlab-ci.yml,JuliaGPU__CuArrays.jl,Job-Allow-Failure,,test,flux,Allows failure of job `flux` at stage `test`,153,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CuArrays.jl +JuliaGPU__GPUArrays-jl__Job-Allow-Failure__julia-nightly,https://gitlab.com/JuliaGPU/GPUArrays.jl,https://gitlab.com/JuliaGPU/GPUArrays.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__GPUArrays.jl/.gitlab-ci.yml,JuliaGPU__GPUArrays.jl,Job-Allow-Failure,,test,julia:nightly,Allows failure of job `julia:nightly` at stage `test`,12,.gitlab-ci.yml,JuliaGPU,JuliaGPU/GPUArrays.jl +JuliaGPU__GPUArrays-jl__Job-Allow-Failure__cuarrays,https://gitlab.com/JuliaGPU/GPUArrays.jl,https://gitlab.com/JuliaGPU/GPUArrays.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__GPUArrays.jl/.gitlab-ci.yml,JuliaGPU__GPUArrays.jl,Job-Allow-Failure,,test,cuarrays,Allows failure of job `cuarrays` at stage `test`,25,.gitlab-ci.yml,JuliaGPU,JuliaGPU/GPUArrays.jl +JuliaGPU__CUDAdrv-jl__Job-Allow-Failure__julia-nightly,https://gitlab.com/JuliaGPU/CUDAdrv.jl,https://gitlab.com/JuliaGPU/CUDAdrv.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CUDAdrv.jl/.gitlab-ci.yml,JuliaGPU__CUDAdrv.jl,Job-Allow-Failure,,test,julia:nightly,Allows failure of job `julia:nightly` at stage `test`,46,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CUDAdrv.jl +JuliaGPU__CUDAdrv-jl__Job-Allow-Failure__cudanative,https://gitlab.com/JuliaGPU/CUDAdrv.jl,https://gitlab.com/JuliaGPU/CUDAdrv.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CUDAdrv.jl/.gitlab-ci.yml,JuliaGPU__CUDAdrv.jl,Job-Allow-Failure,,test,cudanative,Allows failure of job `cudanative` at stage `test`,100,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CUDAdrv.jl +laurih__matid__Versioning__requirementstxt__future__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,future,version specifier is missing,1,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__numpy__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,numpy,version specifier is missing,2,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__scipy__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,scipy,version specifier is missing,3,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__ase__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,ase,version specifier is missing,4,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__spglib__any-upper-version,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,any-upper-version,,spglib,version specifier `>=1.10.1` matches future versions that might become incompatible,5,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__sklearn__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,sklearn,version specifier is missing,6,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__networkx__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,networkx,version specifier is missing,7,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__requirementstxt__chronic__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/laurih__matid/requirements.txt,laurih__matid,Versioning,missing,,chronic,version specifier is missing,8,requirements.txt,laurih,laurih/matid +laurih__matid__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurih__matid/.gitlab-ci.yml,laurih__matid,Versioning,missing,,sphinx,version specifier is missing,6,.gitlab-ci.yml,laurih,laurih/matid +laurih__matid__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/laurih/matid,https://gitlab.com/laurih/matid/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurih__matid/.gitlab-ci.yml,laurih__matid,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,7,.gitlab-ci.yml,laurih,laurih/matid +aurelien-chabot__cv__Versioning__gitlabyaml__html5validator__missing,https://gitlab.com/aurelien.chabot/cv,https://gitlab.com/aurelien.chabot/cv/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurelien.chabot__cv/.gitlab-ci.yml,aurelien.chabot__cv,Versioning,missing,,html5validator,version specifier is missing,38,.gitlab-ci.yml,aurelien.chabot,aurelien.chabot/cv +mkourim__cfme-testcases__Versioning__requirementstxt__-e-__missing,https://gitlab.com/mkourim/cfme-testcases,https://gitlab.com/mkourim/cfme-testcases/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mkourim__cfme-testcases/requirements.txt,mkourim__cfme-testcases,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,mkourim,mkourim/cfme-testcases +mkourim__cfme-testcases__Versioning__requirementstxt__pre-commit__missing,https://gitlab.com/mkourim/cfme-testcases,https://gitlab.com/mkourim/cfme-testcases/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mkourim__cfme-testcases/requirements.txt,mkourim__cfme-testcases,Versioning,missing,,pre-commit,version specifier is missing,3,requirements.txt,mkourim,mkourim/cfme-testcases +mkourim__cfme-testcases__Versioning__gitlabyaml__pre__missing,https://gitlab.com/mkourim/cfme-testcases,https://gitlab.com/mkourim/cfme-testcases/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mkourim__cfme-testcases/.gitlab-ci.yml,mkourim__cfme-testcases,Versioning,missing,,pre,version specifier is missing,27,.gitlab-ci.yml,mkourim,mkourim/cfme-testcases +toby3d__telegraph__Job-Allow-Failure__lint_code,https://gitlab.com/toby3d/telegraph,https://gitlab.com/toby3d/telegraph/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/toby3d__telegraph/.gitlab-ci.yml,toby3d__telegraph,Job-Allow-Failure,,review,lint_code,Allows failure of job `lint_code` at stage `review`,35,.gitlab-ci.yml,toby3d,toby3d/telegraph +Ma_124__build-py__Versioning__requirementstxt__termcolor__missing,https://gitlab.com/Ma_124/build.py,https://gitlab.com/Ma_124/build.py/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Ma_124__build.py/requirements.txt,Ma_124__build.py,Versioning,missing,,termcolor,version specifier is missing,1,requirements.txt,Ma_124,Ma_124/build.py +bigapplepy__yak-bak__Versioning__requirementstxt__diff-match-patch__only-major-number,https://gitlab.com/bigapplepy/yak-bak,https://gitlab.com/bigapplepy/yak-bak/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bigapplepy__yak-bak/requirements.txt,bigapplepy__yak-bak,Versioning,only-major-number,,diff-match-patch,"version specifier `==20181111` only refers to a major release, concrete minor versions might be incompatible",16,requirements.txt,bigapplepy,bigapplepy/yak-bak +Tuuux__GalaxieDrakeCLI__Versioning__requirementstxt__guzzle_sphinx_theme__missing,https://gitlab.com/Tuuux/GalaxieDrakeCLI,https://gitlab.com/Tuuux/GalaxieDrakeCLI/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__GalaxieDrakeCLI/requirements.txt,Tuuux__GalaxieDrakeCLI,Versioning,missing,,guzzle_sphinx_theme,version specifier is missing,1,requirements.txt,Tuuux,Tuuux/GalaxieDrakeCLI +Tuuux__GalaxieDrakeCLI__Versioning__requirementstxt__pycountry__missing,https://gitlab.com/Tuuux/GalaxieDrakeCLI,https://gitlab.com/Tuuux/GalaxieDrakeCLI/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__GalaxieDrakeCLI/requirements.txt,Tuuux__GalaxieDrakeCLI,Versioning,missing,,pycountry,version specifier is missing,2,requirements.txt,Tuuux,Tuuux/GalaxieDrakeCLI +Tuuux__GalaxieDrakeCLI__Versioning__requirementstxt__mock__missing,https://gitlab.com/Tuuux/GalaxieDrakeCLI,https://gitlab.com/Tuuux/GalaxieDrakeCLI/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__GalaxieDrakeCLI/requirements.txt,Tuuux__GalaxieDrakeCLI,Versioning,missing,,mock,version specifier is missing,5,requirements.txt,Tuuux,Tuuux/GalaxieDrakeCLI +Tuuux__GalaxieDrakeCLI__Versioning__requirementstxt__green__missing,https://gitlab.com/Tuuux/GalaxieDrakeCLI,https://gitlab.com/Tuuux/GalaxieDrakeCLI/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__GalaxieDrakeCLI/requirements.txt,Tuuux__GalaxieDrakeCLI,Versioning,missing,,green,version specifier is missing,6,requirements.txt,Tuuux,Tuuux/GalaxieDrakeCLI +Tuuux__galaxie-bob__Versioning__requirementstxt__guzzle_sphinx_theme__missing,https://gitlab.com/Tuuux/galaxie-bob,https://gitlab.com/Tuuux/galaxie-bob/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-bob/requirements.txt,Tuuux__galaxie-bob,Versioning,missing,,guzzle_sphinx_theme,version specifier is missing,3,requirements.txt,Tuuux,Tuuux/galaxie-bob +Tuuux__galaxie-bob__Versioning__requirementstxt__mock__missing,https://gitlab.com/Tuuux/galaxie-bob,https://gitlab.com/Tuuux/galaxie-bob/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-bob/requirements.txt,Tuuux__galaxie-bob,Versioning,missing,,mock,version specifier is missing,4,requirements.txt,Tuuux,Tuuux/galaxie-bob +Tuuux__galaxie-bob__Versioning__requirementstxt__green__missing,https://gitlab.com/Tuuux/galaxie-bob,https://gitlab.com/Tuuux/galaxie-bob/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-bob/requirements.txt,Tuuux__galaxie-bob,Versioning,missing,,green,version specifier is missing,5,requirements.txt,Tuuux,Tuuux/galaxie-bob +alexdemari__pyplate__Versioning__requirementstxt__-rrequirements-production-txt__missing,https://gitlab.com/alexdemari/pyplate,https://gitlab.com/alexdemari/pyplate/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/alexdemari__pyplate/requirements.txt,alexdemari__pyplate,Versioning,missing,,-rrequirements/production.txt,version specifier is missing,-1,requirements.txt,alexdemari,alexdemari/pyplate +aceteam-kaist__ACE-Molecule__Job-Allow-Failure__run-cpplint,https://gitlab.com/aceteam.kaist/ACE-Molecule,https://gitlab.com/aceteam.kaist/ACE-Molecule/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aceteam.kaist__ACE-Molecule/.gitlab-ci.yml,aceteam.kaist__ACE-Molecule,Job-Allow-Failure,,test,run-cpplint,Allows failure of job `run-cpplint` at stage `test`,52,.gitlab-ci.yml,aceteam.kaist,aceteam.kaist/ACE-Molecule +junquera__toc-toc-ssh__Versioning__gitlabyaml__twine__missing,https://gitlab.com/junquera/toc-toc-ssh,https://gitlab.com/junquera/toc-toc-ssh/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/junquera__toc-toc-ssh/.gitlab-ci.yml,junquera__toc-toc-ssh,Versioning,missing,,twine,version specifier is missing,21,.gitlab-ci.yml,junquera,junquera/toc-toc-ssh +SunyataZero__well-being-diary__Versioning__requirementstxt__PyQt5__missing,https://gitlab.com/SunyataZero/well-being-diary,https://gitlab.com/SunyataZero/well-being-diary/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SunyataZero__well-being-diary/requirements.txt,SunyataZero__well-being-diary,Versioning,missing,,PyQt5,version specifier is missing,1,requirements.txt,SunyataZero,SunyataZero/well-being-diary +SunyataZero__well-being-diary__Versioning__requirementstxt__sip__missing,https://gitlab.com/SunyataZero/well-being-diary,https://gitlab.com/SunyataZero/well-being-diary/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SunyataZero__well-being-diary/requirements.txt,SunyataZero__well-being-diary,Versioning,missing,,sip,version specifier is missing,2,requirements.txt,SunyataZero,SunyataZero/well-being-diary +SunyataZero__well-being-diary__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/SunyataZero/well-being-diary,https://gitlab.com/SunyataZero/well-being-diary/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SunyataZero__well-being-diary/requirements.txt,SunyataZero__well-being-diary,Versioning,missing,,Pillow,version specifier is missing,6,requirements.txt,SunyataZero,SunyataZero/well-being-diary +martensoderberg__wambot__Job-Allow-Failure__check_pep-8,https://gitlab.com/martensoderberg/wambot,https://gitlab.com/martensoderberg/wambot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/martensoderberg__wambot/.gitlab-ci.yml,martensoderberg__wambot,Job-Allow-Failure,,test,check_pep-8,Allows failure of job `check_pep-8` at stage `test`,29,.gitlab-ci.yml,martensoderberg,martensoderberg/wambot +martensoderberg__wambot__Job-Allow-Failure__destroy,https://gitlab.com/martensoderberg/wambot,https://gitlab.com/martensoderberg/wambot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/martensoderberg__wambot/.gitlab-ci.yml,martensoderberg__wambot,Job-Allow-Failure,,destroy,destroy,Allows failure of job `destroy` at stage `destroy`,37,.gitlab-ci.yml,martensoderberg,martensoderberg/wambot +MTIpython__MTIpython__Versioning__gitlabyaml__www-coolprop-dreamhosters-com__missing,https://gitlab.com/MTIpython/MTIpython,https://gitlab.com/MTIpython/MTIpython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MTIpython__MTIpython/.gitlab-ci.yml,MTIpython__MTIpython,Versioning,missing,,www.coolprop.dreamhosters.com,version specifier is missing,14,.gitlab-ci.yml,MTIpython,MTIpython/MTIpython +MTIpython__MTIpython__Versioning__gitlabyaml__www-coolprop-dreamhosters-com__missing,https://gitlab.com/MTIpython/MTIpython,https://gitlab.com/MTIpython/MTIpython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MTIpython__MTIpython/.gitlab-ci.yml,MTIpython__MTIpython,Versioning,missing,,www.coolprop.dreamhosters.com,version specifier is missing,14,.gitlab-ci.yml,MTIpython,MTIpython/MTIpython +MTIpython__MTIpython__Versioning__gitlabyaml__www-coolprop-dreamhosters-com__missing,https://gitlab.com/MTIpython/MTIpython,https://gitlab.com/MTIpython/MTIpython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MTIpython__MTIpython/.gitlab-ci.yml,MTIpython__MTIpython,Versioning,missing,,www.coolprop.dreamhosters.com,version specifier is missing,14,.gitlab-ci.yml,MTIpython,MTIpython/MTIpython +MTIpython__MTIpython__Versioning__gitlabyaml__www-coolprop-dreamhosters-com__missing,https://gitlab.com/MTIpython/MTIpython,https://gitlab.com/MTIpython/MTIpython/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MTIpython__MTIpython/.gitlab-ci.yml,MTIpython__MTIpython,Versioning,missing,,www.coolprop.dreamhosters.com,version specifier is missing,14,.gitlab-ci.yml,MTIpython,MTIpython/MTIpython +alantrick__django-agenda__Versioning__requirementstxt__Django__any-upper-version,https://gitlab.com/alantrick/django-agenda,https://gitlab.com/alantrick/django-agenda/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/alantrick__django-agenda/requirements.txt,alantrick__django-agenda,Versioning,any-upper-version,,Django,version specifier `>=1.10` matches future versions that might become incompatible,1,requirements.txt,alantrick,alantrick/django-agenda +alantrick__django-agenda__Versioning__requirementstxt__django-recurrence__missing,https://gitlab.com/alantrick/django-agenda,https://gitlab.com/alantrick/django-agenda/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/alantrick__django-agenda/requirements.txt,alantrick__django-agenda,Versioning,missing,,django-recurrence,version specifier is missing,2,requirements.txt,alantrick,alantrick/django-agenda +alantrick__django-agenda__Versioning__requirementstxt__django-timezone-field__missing,https://gitlab.com/alantrick/django-agenda,https://gitlab.com/alantrick/django-agenda/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/alantrick__django-agenda/requirements.txt,alantrick__django-agenda,Versioning,missing,,django-timezone-field,version specifier is missing,3,requirements.txt,alantrick,alantrick/django-agenda +alantrick__django-agenda__Versioning__requirementstxt__pytz__missing,https://gitlab.com/alantrick/django-agenda,https://gitlab.com/alantrick/django-agenda/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/alantrick__django-agenda/requirements.txt,alantrick__django-agenda,Versioning,missing,,pytz,version specifier is missing,4,requirements.txt,alantrick,alantrick/django-agenda +NifTK__NiftyNet__Versioning__gitlabyaml__tensorflow__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,tensorflow,version specifier is missing,43,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__-niftynet_wheel__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,$niftynet_wheel,version specifier is missing,282,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__simpleitk__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,simpleitk,version specifier is missing,306,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__tensorflow__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,tensorflow,version specifier is missing,43,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__-niftynet_wheel__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,$niftynet_wheel,version specifier is missing,282,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__simpleitk__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,simpleitk,version specifier is missing,306,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__-niftynet_wheel__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,$niftynet_wheel,version specifier is missing,282,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__er__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,er,version specifier is missing,13,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__bundle__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,bundle,version specifier is missing,280,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__-wheel-__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,(wheel),version specifier is missing,488,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +NifTK__NiftyNet__Versioning__gitlabyaml__created-__missing,https://gitlab.com/NifTK/NiftyNet,https://gitlab.com/NifTK/NiftyNet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NifTK__NiftyNet/.gitlab-ci.yml,NifTK__NiftyNet,Versioning,missing,,created:,version specifier is missing,488,.gitlab-ci.yml,NifTK,NifTK/NiftyNet +jakesys__aws__Job-Allow-Failure__code_quality,https://gitlab.com/jakesys/aws,https://gitlab.com/jakesys/aws/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jakesys__aws/.gitlab-ci.yml,jakesys__aws,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,56,.gitlab-ci.yml,jakesys,jakesys/aws +jakesys__aws__Job-Allow-Failure__license_management,https://gitlab.com/jakesys/aws,https://gitlab.com/jakesys/aws/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jakesys__aws/.gitlab-ci.yml,jakesys__aws,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,73,.gitlab-ci.yml,jakesys,jakesys/aws +jakesys__aws__Job-Allow-Failure__dependency_scanning,https://gitlab.com/jakesys/aws,https://gitlab.com/jakesys/aws/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jakesys__aws/.gitlab-ci.yml,jakesys__aws,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,113,.gitlab-ci.yml,jakesys,jakesys/aws +jakesys__aws__Job-Allow-Failure__container_scanning,https://gitlab.com/jakesys/aws,https://gitlab.com/jakesys/aws/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jakesys__aws/.gitlab-ci.yml,jakesys__aws,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,133,.gitlab-ci.yml,jakesys,jakesys/aws +gioxa__imagebuilder__Job-Allow-Failure__cleanup,https://gitlab.com/gioxa/imagebuilder,https://gitlab.com/gioxa/imagebuilder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__imagebuilder/.gitlab-ci.yml,gioxa__imagebuilder,Job-Allow-Failure,,cleanup,cleanup,Allows failure of job `cleanup` at stage `cleanup`,140,.gitlab-ci.yml,gioxa,gioxa/imagebuilder +gioxa__imagebuilder__Job-Retry__build_rootfs-pass_two,https://gitlab.com/gioxa/imagebuilder,https://gitlab.com/gioxa/imagebuilder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__imagebuilder/.gitlab-ci.yml,gioxa__imagebuilder,Job-Retry,always,pass_two,build_rootfs:pass_two,1,51,.gitlab-ci.yml,gioxa,gioxa/imagebuilder +gioxa__imagebuilder__Job-Retry__build_rootfs-pass_one,https://gitlab.com/gioxa/imagebuilder,https://gitlab.com/gioxa/imagebuilder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__imagebuilder/.gitlab-ci.yml,gioxa__imagebuilder,Job-Retry,always,pass_one,build_rootfs:pass_one,1,21,.gitlab-ci.yml,gioxa,gioxa/imagebuilder +gioxa__oc-runner__buildimage__Job-Allow-Failure__cleanup,https://gitlab.com/gioxa/oc-runner/buildimage,https://gitlab.com/gioxa/oc-runner/buildimage/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__buildimage/.gitlab-ci.yml,gioxa__oc-runner__buildimage,Job-Allow-Failure,,cleanup,cleanup,Allows failure of job `cleanup` at stage `cleanup`,161,.gitlab-ci.yml,gioxa,gioxa/oc-runner/buildimage +SunyataZero__trees__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/SunyataZero/trees,https://gitlab.com/SunyataZero/trees/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SunyataZero__trees/requirements.txt,SunyataZero__trees,Versioning,missing,,Pillow,version specifier is missing,2,requirements.txt,SunyataZero,SunyataZero/trees +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__celery__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,celery,version specifier is missing,1,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__django__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,django,version specifier is missing,2,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__django-ordered-model__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,django-ordered-model,version specifier is missing,3,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__djangorestframework__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,djangorestframework,version specifier is missing,4,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__jsonfield__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,jsonfield,version specifier is missing,5,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__djangorestframework-filters__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,djangorestframework-filters,version specifier is missing,6,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__django-reversion__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,django-reversion,version specifier is missing,7,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__django-common-models__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,django-common-models,version specifier is missing,8,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-workflow-fsm__Versioning__requirementstxt__redis__missing,https://gitlab.com/geoadmin-opensource/django-workflow-fsm,https://gitlab.com/geoadmin-opensource/django-workflow-fsm/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-workflow-fsm/requirements.txt,geoadmin-opensource__django-workflow-fsm,Versioning,missing,,redis,version specifier is missing,9,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-workflow-fsm +geoadmin-opensource__django-common-models__Versioning__requirementstxt__django__missing,https://gitlab.com/geoadmin-opensource/django-common-models,https://gitlab.com/geoadmin-opensource/django-common-models/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-common-models/requirements.txt,geoadmin-opensource__django-common-models,Versioning,missing,,django,version specifier is missing,1,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-common-models +geoadmin-opensource__django-common-models__Versioning__requirementstxt__djangorestframework__missing,https://gitlab.com/geoadmin-opensource/django-common-models,https://gitlab.com/geoadmin-opensource/django-common-models/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-common-models/requirements.txt,geoadmin-opensource__django-common-models,Versioning,missing,,djangorestframework,version specifier is missing,2,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-common-models +geoadmin-opensource__django-common-models__Versioning__requirementstxt__django-phonenumber-field__missing,https://gitlab.com/geoadmin-opensource/django-common-models,https://gitlab.com/geoadmin-opensource/django-common-models/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-common-models/requirements.txt,geoadmin-opensource__django-common-models,Versioning,missing,,django-phonenumber-field,version specifier is missing,3,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-common-models +geoadmin-opensource__django-file-context__Versioning__requirementstxt__django-taggit__missing,https://gitlab.com/geoadmin-opensource/django-file-context,https://gitlab.com/geoadmin-opensource/django-file-context/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-file-context/requirements.txt,geoadmin-opensource__django-file-context,Versioning,missing,,django-taggit,version specifier is missing,1,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-file-context +geoadmin-opensource__django-file-context__Versioning__requirementstxt__django-taggit-serializer__missing,https://gitlab.com/geoadmin-opensource/django-file-context,https://gitlab.com/geoadmin-opensource/django-file-context/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-file-context/requirements.txt,geoadmin-opensource__django-file-context,Versioning,missing,,django-taggit-serializer,version specifier is missing,2,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-file-context +geoadmin-opensource__django-file-context__Versioning__requirementstxt__djangorestframework-filters__missing,https://gitlab.com/geoadmin-opensource/django-file-context,https://gitlab.com/geoadmin-opensource/django-file-context/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-file-context/requirements.txt,geoadmin-opensource__django-file-context,Versioning,missing,,djangorestframework-filters,version specifier is missing,4,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-file-context +geoadmin-opensource__django-file-context__Versioning__requirementstxt__django-common-models__any-upper-version,https://gitlab.com/geoadmin-opensource/django-file-context,https://gitlab.com/geoadmin-opensource/django-file-context/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/geoadmin-opensource__django-file-context/requirements.txt,geoadmin-opensource__django-file-context,Versioning,any-upper-version,,django-common-models,version specifier `>=0.1.4` matches future versions that might become incompatible,5,requirements.txt,geoadmin-opensource,geoadmin-opensource/django-file-context +flib99__i3-workspace-names__Versioning__requirementstxt__certifi__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,certifi,version specifier is missing,1,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__chardet__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,chardet,version specifier is missing,2,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__enum-compat__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,enum-compat,version specifier is missing,3,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__i3ipc__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,i3ipc,version specifier is missing,4,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__idna__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,idna,version specifier is missing,5,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__pyxdg__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,pyxdg,version specifier is missing,6,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__requests__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,requests,version specifier is missing,7,requirements.txt,flib99,flib99/i3-workspace-names +flib99__i3-workspace-names__Versioning__requirementstxt__urllib3__missing,https://gitlab.com/flib99/i3-workspace-names,https://gitlab.com/flib99/i3-workspace-names/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flib99__i3-workspace-names/requirements.txt,flib99__i3-workspace-names,Versioning,missing,,urllib3,version specifier is missing,8,requirements.txt,flib99,flib99/i3-workspace-names +joshburkart__gpscale__Versioning__requirementstxt__attrs__missing,https://gitlab.com/joshburkart/gpscale,https://gitlab.com/joshburkart/gpscale/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/joshburkart__gpscale/requirements.txt,joshburkart__gpscale,Versioning,missing,,attrs,version specifier is missing,1,requirements.txt,joshburkart,joshburkart/gpscale +joshburkart__gpscale__Versioning__requirementstxt__numpy__missing,https://gitlab.com/joshburkart/gpscale,https://gitlab.com/joshburkart/gpscale/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/joshburkart__gpscale/requirements.txt,joshburkart__gpscale,Versioning,missing,,numpy,version specifier is missing,2,requirements.txt,joshburkart,joshburkart/gpscale +joshburkart__gpscale__Versioning__requirementstxt__tensorflow__missing,https://gitlab.com/joshburkart/gpscale,https://gitlab.com/joshburkart/gpscale/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/joshburkart__gpscale/requirements.txt,joshburkart__gpscale,Versioning,missing,,tensorflow,version specifier is missing,3,requirements.txt,joshburkart,joshburkart/gpscale +nystrome__sciit__Versioning__gitlabyaml__requests__missing,https://gitlab.com/nystrome/sciit,https://gitlab.com/nystrome/sciit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nystrome__sciit/.gitlab-ci.yml,nystrome__sciit,Versioning,missing,,requests,version specifier is missing,11,.gitlab-ci.yml,nystrome,nystrome/sciit +nystrome__sciit__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/nystrome/sciit,https://gitlab.com/nystrome/sciit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nystrome__sciit/.gitlab-ci.yml,nystrome__sciit,Versioning,missing,,sphinx,version specifier is missing,28,.gitlab-ci.yml,nystrome,nystrome/sciit +nystrome__sciit__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/nystrome/sciit,https://gitlab.com/nystrome/sciit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nystrome__sciit/.gitlab-ci.yml,nystrome__sciit,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,28,.gitlab-ci.yml,nystrome,nystrome/sciit +nystrome__sciit__Versioning__gitlabyaml__requests__missing,https://gitlab.com/nystrome/sciit,https://gitlab.com/nystrome/sciit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nystrome__sciit/.gitlab-ci.yml,nystrome__sciit,Versioning,missing,,requests,version specifier is missing,11,.gitlab-ci.yml,nystrome,nystrome/sciit +arma3-server-tools__modmanager__Versioning__requirementstxt__Jinja2__any-upper-version,https://gitlab.com/arma3-server-tools/modmanager,https://gitlab.com/arma3-server-tools/modmanager/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/arma3-server-tools__modmanager/requirements.txt,arma3-server-tools__modmanager,Versioning,any-upper-version,,Jinja2,version specifier `>=2.10` matches future versions that might become incompatible,1,requirements.txt,arma3-server-tools,arma3-server-tools/modmanager +arma3-server-tools__modmanager__Versioning__requirementstxt__lxml__any-upper-version,https://gitlab.com/arma3-server-tools/modmanager,https://gitlab.com/arma3-server-tools/modmanager/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/arma3-server-tools__modmanager/requirements.txt,arma3-server-tools__modmanager,Versioning,any-upper-version,,lxml,version specifier `>=4.2.1` matches future versions that might become incompatible,2,requirements.txt,arma3-server-tools,arma3-server-tools/modmanager +arma3-server-tools__modmanager__Versioning__requirementstxt__networkx__any-upper-version,https://gitlab.com/arma3-server-tools/modmanager,https://gitlab.com/arma3-server-tools/modmanager/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/arma3-server-tools__modmanager/requirements.txt,arma3-server-tools__modmanager,Versioning,any-upper-version,,networkx,version specifier `>=2.1` matches future versions that might become incompatible,3,requirements.txt,arma3-server-tools,arma3-server-tools/modmanager +arma3-server-tools__modmanager__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/arma3-server-tools/modmanager,https://gitlab.com/arma3-server-tools/modmanager/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/arma3-server-tools__modmanager/requirements.txt,arma3-server-tools__modmanager,Versioning,any-upper-version,,requests,version specifier `>=2.19.1` matches future versions that might become incompatible,4,requirements.txt,arma3-server-tools,arma3-server-tools/modmanager +sehnem__pynmet__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,sphinx,version specifier is missing,5,.gitlab-ci.yml,sehnem,sehnem/pynmet +sehnem__pynmet__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,numpy,version specifier is missing,5,.gitlab-ci.yml,sehnem,sehnem/pynmet +sehnem__pynmet__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,5,.gitlab-ci.yml,sehnem,sehnem/pynmet +sehnem__pynmet__Versioning__gitlabyaml__versioneer__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,versioneer,version specifier is missing,5,.gitlab-ci.yml,sehnem,sehnem/pynmet +sehnem__pynmet__Versioning__gitlabyaml__sqlalchemy__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,sqlalchemy,version specifier is missing,5,.gitlab-ci.yml,sehnem,sehnem/pynmet +sehnem__pynmet__Versioning__gitlabyaml__twine__missing,https://gitlab.com/sehnem/pynmet,https://gitlab.com/sehnem/pynmet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sehnem__pynmet/.gitlab-ci.yml,sehnem__pynmet,Versioning,missing,,twine,version specifier is missing,21,.gitlab-ci.yml,sehnem,sehnem/pynmet +vstconsulting__polemarch-docker__Versioning__requirementstxt__git__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,git,version specifier is missing,1,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__sudo__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,sudo,version specifier is missing,2,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__sshpass__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,sshpass,version specifier is missing,3,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__curl__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,curl,version specifier is missing,4,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__wget__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,wget,version specifier is missing,5,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__ca-certificates__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,ca-certificates,version specifier is missing,6,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__bash__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,bash,version specifier is missing,7,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__perl__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,perl,version specifier is missing,8,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__tar__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,tar,version specifier is missing,9,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__python3__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,python3,version specifier is missing,10,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__py3-virtualenv__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,py3-virtualenv,version specifier is missing,11,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__coreutils__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,coreutils,version specifier is missing,12,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__libsasl__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,libsasl,version specifier is missing,13,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__krb5__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,krb5,version specifier is missing,14,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__libffi__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,libffi,version specifier is missing,15,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__openldap__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,openldap,version specifier is missing,16,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__yaml__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,yaml,version specifier is missing,17,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__postgresql-libs__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,postgresql-libs,version specifier is missing,18,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__mariadb-dev__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,mariadb-dev,version specifier is missing,19,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__mailcap__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,mailcap,version specifier is missing,20,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +vstconsulting__polemarch-docker__Versioning__requirementstxt__openssh-client__missing,https://gitlab.com/vstconsulting/polemarch-docker,https://gitlab.com/vstconsulting/polemarch-docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-docker/requirements.txt,vstconsulting__polemarch-docker,Versioning,missing,,openssh-client,version specifier is missing,21,requirements.txt,vstconsulting,vstconsulting/polemarch-docker +attakei__yagura__Versioning__requirementstxt__Django__any-upper-version,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,any-upper-version,,Django,version specifier `>=2.0` matches future versions that might become incompatible,1,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__django-bulma__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,django-bulma,version specifier is missing,2,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__django-registration__any-upper-version,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,any-upper-version,,django-registration,version specifier `>=3.0` matches future versions that might become incompatible,3,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__django-templated-email__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,django-templated-email,version specifier is missing,4,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__django-crontab__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,django-crontab,version specifier is missing,5,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__django-environ__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,django-environ,version specifier is missing,6,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__pyasn1__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,pyasn1,version specifier is missing,7,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__social-auth-app-django__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,social-auth-app-django,version specifier is missing,8,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__slackweb__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,slackweb,version specifier is missing,9,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__requirementstxt__requests__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/requirements.txt,attakei__yagura,Versioning,missing,,requests,version specifier is missing,11,requirements.txt,attakei,attakei/yagura +attakei__yagura__Versioning__gitlabyaml__yagura__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/.gitlab-ci.yml,attakei__yagura,Versioning,missing,,yagura,version specifier is missing,42,.gitlab-ci.yml,attakei,attakei/yagura +attakei__yagura__Versioning__gitlabyaml__django__missing,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/.gitlab-ci.yml,attakei__yagura,Versioning,missing,,django,version specifier is missing,42,.gitlab-ci.yml,attakei,attakei/yagura +attakei__yagura__Job-Allow-Failure__migration-test,https://gitlab.com/attakei/yagura,https://gitlab.com/attakei/yagura/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/attakei__yagura/.gitlab-ci.yml,attakei__yagura,Job-Allow-Failure,,test,migration-test,Allows failure of job `migration-test` at stage `test`,35,.gitlab-ci.yml,attakei,attakei/yagura +sj1k__impd__Versioning__requirementstxt__musicbrainzngs__missing,https://gitlab.com/sj1k/impd,https://gitlab.com/sj1k/impd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sj1k__impd/requirements.txt,sj1k__impd,Versioning,missing,,musicbrainzngs,version specifier is missing,1,requirements.txt,sj1k,sj1k/impd +sj1k__impd__Versioning__requirementstxt__requests__missing,https://gitlab.com/sj1k/impd,https://gitlab.com/sj1k/impd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sj1k__impd/requirements.txt,sj1k__impd,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,sj1k,sj1k/impd +sj1k__impd__Versioning__requirementstxt__python-mpd2__missing,https://gitlab.com/sj1k/impd,https://gitlab.com/sj1k/impd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/sj1k__impd/requirements.txt,sj1k__impd,Versioning,missing,,python-mpd2,version specifier is missing,3,requirements.txt,sj1k,sj1k/impd +glenveegee__PDBeCIF__Versioning__gitlabyaml__twine__missing,https://gitlab.com/glenveegee/PDBeCIF,https://gitlab.com/glenveegee/PDBeCIF/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/glenveegee__PDBeCIF/.gitlab-ci.yml,glenveegee__PDBeCIF,Versioning,missing,,twine,version specifier is missing,73,.gitlab-ci.yml,glenveegee,glenveegee/PDBeCIF +glenveegee__PDBeCIF__Job-Allow-Failure__pages,https://gitlab.com/glenveegee/PDBeCIF,https://gitlab.com/glenveegee/PDBeCIF/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/glenveegee__PDBeCIF/.gitlab-ci.yml,glenveegee__PDBeCIF,Job-Allow-Failure,,test,pages,Allows failure of job `pages` at stage `test`,13,.gitlab-ci.yml,glenveegee,glenveegee/PDBeCIF +nuke-group__preferencesManager__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/nuke-group/preferencesManager,https://gitlab.com/nuke-group/preferencesManager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nuke-group__preferencesManager/.gitlab-ci.yml,nuke-group__preferencesManager,Versioning,missing,,sphinx,version specifier is missing,6,.gitlab-ci.yml,nuke-group,nuke-group/preferencesManager +nuke-group__preferencesManager__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/nuke-group/preferencesManager,https://gitlab.com/nuke-group/preferencesManager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nuke-group__preferencesManager/.gitlab-ci.yml,nuke-group__preferencesManager,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,7,.gitlab-ci.yml,nuke-group,nuke-group/preferencesManager +nuke-group__preferencesManager__Versioning__gitlabyaml__m2r__missing,https://gitlab.com/nuke-group/preferencesManager,https://gitlab.com/nuke-group/preferencesManager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nuke-group__preferencesManager/.gitlab-ci.yml,nuke-group__preferencesManager,Versioning,missing,,m2r,version specifier is missing,8,.gitlab-ci.yml,nuke-group,nuke-group/preferencesManager +coisa__gitlab-ci-sandbox__Job-Allow-Failure__License-Management,https://gitlab.com/coisa/gitlab-ci-sandbox,https://gitlab.com/coisa/gitlab-ci-sandbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coisa__gitlab-ci-sandbox/.gitlab-ci.yml,coisa__gitlab-ci-sandbox,Job-Allow-Failure,,tests,License Management,Allows failure of job `License Management` at stage `tests`,195,.gitlab-ci.yml,coisa,coisa/gitlab-ci-sandbox +coisa__gitlab-ci-sandbox__Job-Allow-Failure__Deprecation-Detector,https://gitlab.com/coisa/gitlab-ci-sandbox,https://gitlab.com/coisa/gitlab-ci-sandbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coisa__gitlab-ci-sandbox/.gitlab-ci.yml,coisa__gitlab-ci-sandbox,Job-Allow-Failure,,analyze,Deprecation Detector,Allows failure of job `Deprecation Detector` at stage `analyze`,139,.gitlab-ci.yml,coisa,coisa/gitlab-ci-sandbox +coisa__gitlab-ci-sandbox__Job-Allow-Failure__Update-CHANGELOG-md,https://gitlab.com/coisa/gitlab-ci-sandbox,https://gitlab.com/coisa/gitlab-ci-sandbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coisa__gitlab-ci-sandbox/.gitlab-ci.yml,coisa__gitlab-ci-sandbox,Job-Allow-Failure,,docs,Update CHANGELOG.md,Allows failure of job `Update CHANGELOG.md` at stage `docs`,157,.gitlab-ci.yml,coisa,coisa/gitlab-ci-sandbox +coisa__gitlab-ci-sandbox__Job-Allow-Failure__Security-Checker,https://gitlab.com/coisa/gitlab-ci-sandbox,https://gitlab.com/coisa/gitlab-ci-sandbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coisa__gitlab-ci-sandbox/.gitlab-ci.yml,coisa__gitlab-ci-sandbox,Job-Allow-Failure,,analyze,Security Checker,Allows failure of job `Security Checker` at stage `analyze`,148,.gitlab-ci.yml,coisa,coisa/gitlab-ci-sandbox +coisa__gitlab-ci-sandbox__Job-Allow-Failure__PSR1---PSR2-Code-Standards,https://gitlab.com/coisa/gitlab-ci-sandbox,https://gitlab.com/coisa/gitlab-ci-sandbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coisa__gitlab-ci-sandbox/.gitlab-ci.yml,coisa__gitlab-ci-sandbox,Job-Allow-Failure,,analyze,PSR1 & PSR2 Code Standards,Allows failure of job `PSR1 & PSR2 Code Standards` at stage `analyze`,131,.gitlab-ci.yml,coisa,coisa/gitlab-ci-sandbox +Paccos__mensa-thumb-bot__Versioning__requirementstxt__APScheduler__any-upper-version,https://gitlab.com/Paccos/mensa-thumb-bot,https://gitlab.com/Paccos/mensa-thumb-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Paccos__mensa-thumb-bot/requirements.txt,Paccos__mensa-thumb-bot,Versioning,any-upper-version,,APScheduler,version specifier `>=3.5.1` matches future versions that might become incompatible,1,requirements.txt,Paccos,Paccos/mensa-thumb-bot +Paccos__mensa-thumb-bot__Versioning__requirementstxt__python-telegram-bot__any-upper-version,https://gitlab.com/Paccos/mensa-thumb-bot,https://gitlab.com/Paccos/mensa-thumb-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Paccos__mensa-thumb-bot/requirements.txt,Paccos__mensa-thumb-bot,Versioning,any-upper-version,,python-telegram-bot,version specifier `>=10.1.0` matches future versions that might become incompatible,2,requirements.txt,Paccos,Paccos/mensa-thumb-bot +Paccos__mensa-thumb-bot__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/Paccos/mensa-thumb-bot,https://gitlab.com/Paccos/mensa-thumb-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Paccos__mensa-thumb-bot/requirements.txt,Paccos__mensa-thumb-bot,Versioning,any-upper-version,,requests,version specifier `>=2.19.1` matches future versions that might become incompatible,4,requirements.txt,Paccos,Paccos/mensa-thumb-bot +Paccos__mensa-thumb-bot__Versioning__requirementstxt__pytz__any-upper-version,https://gitlab.com/Paccos/mensa-thumb-bot,https://gitlab.com/Paccos/mensa-thumb-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Paccos__mensa-thumb-bot/requirements.txt,Paccos__mensa-thumb-bot,Versioning,any-upper-version,,pytz,version specifier `>=2018.05` matches future versions that might become incompatible,6,requirements.txt,Paccos,Paccos/mensa-thumb-bot +Paccos__mensa-thumb-bot__Versioning__requirementstxt__html5lib__any-upper-version,https://gitlab.com/Paccos/mensa-thumb-bot,https://gitlab.com/Paccos/mensa-thumb-bot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Paccos__mensa-thumb-bot/requirements.txt,Paccos__mensa-thumb-bot,Versioning,any-upper-version,,html5lib,version specifier `>=1.0.0` matches future versions that might become incompatible,7,requirements.txt,Paccos,Paccos/mensa-thumb-bot +bilalbox__panos_tester__Versioning__requirementstxt__requests__missing,https://gitlab.com/bilalbox/panos_tester,https://gitlab.com/bilalbox/panos_tester/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bilalbox__panos_tester/requirements.txt,bilalbox__panos_tester,Versioning,missing,,requests,version specifier is missing,1,requirements.txt,bilalbox,bilalbox/panos_tester +bilalbox__panos_tester__Versioning__requirementstxt__xmltodict__missing,https://gitlab.com/bilalbox/panos_tester,https://gitlab.com/bilalbox/panos_tester/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bilalbox__panos_tester/requirements.txt,bilalbox__panos_tester,Versioning,missing,,xmltodict,version specifier is missing,2,requirements.txt,bilalbox,bilalbox/panos_tester +bilalbox__panos_tester__Versioning__requirementstxt__flask__missing,https://gitlab.com/bilalbox/panos_tester,https://gitlab.com/bilalbox/panos_tester/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bilalbox__panos_tester/requirements.txt,bilalbox__panos_tester,Versioning,missing,,flask,version specifier is missing,3,requirements.txt,bilalbox,bilalbox/panos_tester +bilalbox__panos_tester__Versioning__requirementstxt__flask-wtf__missing,https://gitlab.com/bilalbox/panos_tester,https://gitlab.com/bilalbox/panos_tester/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bilalbox__panos_tester/requirements.txt,bilalbox__panos_tester,Versioning,missing,,flask-wtf,version specifier is missing,4,requirements.txt,bilalbox,bilalbox/panos_tester +bilalbox__panos_tester__Versioning__requirementstxt__tinydb__missing,https://gitlab.com/bilalbox/panos_tester,https://gitlab.com/bilalbox/panos_tester/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/bilalbox__panos_tester/requirements.txt,bilalbox__panos_tester,Versioning,missing,,tinydb,version specifier is missing,5,requirements.txt,bilalbox,bilalbox/panos_tester +webmaicon__sorterica__Manual-Job__gera_numero,https://gitlab.com/webmaicon/sorterica,https://gitlab.com/webmaicon/sorterica/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/webmaicon__sorterica/.gitlab-ci.yml,webmaicon__sorterica,Manual-Job,,gerar_numero,gera_numero,Manual job `gera_numero` at stage `gerar_numero`,16,.gitlab-ci.yml,webmaicon,webmaicon/sorterica +Aragami1408__drgnzsearch__Job-Allow-Failure__code_quality,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,96,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +Aragami1408__drgnzsearch__Job-Allow-Failure__performance,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,129,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +Aragami1408__drgnzsearch__Job-Allow-Failure__license_management,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,113,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +Aragami1408__drgnzsearch__Job-Allow-Failure__stop_review,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,250,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +Aragami1408__drgnzsearch__Job-Allow-Failure__dependency_scanning,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,169,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +Aragami1408__drgnzsearch__Job-Allow-Failure__container_scanning,https://gitlab.com/Aragami1408/drgnzsearch,https://gitlab.com/Aragami1408/drgnzsearch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Aragami1408__drgnzsearch/.gitlab-ci.yml,Aragami1408__drgnzsearch,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,186,.gitlab-ci.yml,Aragami1408,Aragami1408/drgnzsearch +gserv-me__InfoBot__Versioning__requirementstxt__discord-py__missing,https://gitlab.com/gserv.me/InfoBot,https://gitlab.com/gserv.me/InfoBot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gserv.me__InfoBot/requirements.txt,gserv.me__InfoBot,Versioning,missing,,discord.py,version specifier is missing,2,requirements.txt,gserv.me,gserv.me/InfoBot +gserv-me__InfoBot__Versioning__requirementstxt__ruamel-yaml__missing,https://gitlab.com/gserv.me/InfoBot,https://gitlab.com/gserv.me/InfoBot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gserv.me__InfoBot/requirements.txt,gserv.me__InfoBot,Versioning,missing,,ruamel.yaml,version specifier is missing,3,requirements.txt,gserv.me,gserv.me/InfoBot +costrouc__knoxpy-fizzbuzz-complete__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__knoxpy-fizzbuzz-complete/.gitlab-ci.yml,costrouc__knoxpy-fizzbuzz-complete,Versioning,missing,,sphinx,version specifier is missing,42,.gitlab-ci.yml,costrouc,costrouc/knoxpy-fizzbuzz-complete +costrouc__knoxpy-fizzbuzz-complete__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__knoxpy-fizzbuzz-complete/.gitlab-ci.yml,costrouc__knoxpy-fizzbuzz-complete,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,42,.gitlab-ci.yml,costrouc,costrouc/knoxpy-fizzbuzz-complete +costrouc__knoxpy-fizzbuzz-complete__Versioning__gitlabyaml__twine__missing,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete,https://gitlab.com/costrouc/knoxpy-fizzbuzz-complete/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__knoxpy-fizzbuzz-complete/.gitlab-ci.yml,costrouc__knoxpy-fizzbuzz-complete,Versioning,missing,,twine,version specifier is missing,22,.gitlab-ci.yml,costrouc,costrouc/knoxpy-fizzbuzz-complete +magnus-odman__audentes__Versioning__requirementstxt__ruamel-yaml__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/requirements.txt,magnus.odman__audentes,Versioning,missing,,ruamel.yaml,version specifier is missing,1,requirements.txt,magnus.odman,magnus.odman/audentes +magnus-odman__audentes__Versioning__requirementstxt__requests__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/requirements.txt,magnus.odman__audentes,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,magnus.odman,magnus.odman/audentes +magnus-odman__audentes__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/.gitlab-ci.yml,magnus.odman__audentes,Versioning,missing,,wheel,version specifier is missing,12,.gitlab-ci.yml,magnus.odman,magnus.odman/audentes +magnus-odman__audentes__Versioning__gitlabyaml__twine__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/.gitlab-ci.yml,magnus.odman__audentes,Versioning,missing,,twine,version specifier is missing,14,.gitlab-ci.yml,magnus.odman,magnus.odman/audentes +magnus-odman__audentes__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/.gitlab-ci.yml,magnus.odman__audentes,Versioning,missing,,wheel,version specifier is missing,12,.gitlab-ci.yml,magnus.odman,magnus.odman/audentes +magnus-odman__audentes__Versioning__gitlabyaml__twine__missing,https://gitlab.com/magnus.odman/audentes,https://gitlab.com/magnus.odman/audentes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magnus.odman__audentes/.gitlab-ci.yml,magnus.odman__audentes,Versioning,missing,,twine,version specifier is missing,14,.gitlab-ci.yml,magnus.odman,magnus.odman/audentes +katyukha__odoo-rpc-client__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/katyukha/odoo-rpc-client,https://gitlab.com/katyukha/odoo-rpc-client/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/katyukha__odoo-rpc-client/requirements.txt,katyukha__odoo-rpc-client,Versioning,any-upper-version,,six,version specifier `>=1.10` matches future versions that might become incompatible,1,requirements.txt,katyukha,katyukha/odoo-rpc-client +katyukha__odoo-rpc-client__Versioning__requirementstxt__extend_me__any-upper-version,https://gitlab.com/katyukha/odoo-rpc-client,https://gitlab.com/katyukha/odoo-rpc-client/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/katyukha__odoo-rpc-client/requirements.txt,katyukha__odoo-rpc-client,Versioning,any-upper-version,,extend_me,version specifier `>=1.1.3` matches future versions that might become incompatible,2,requirements.txt,katyukha,katyukha/odoo-rpc-client +katyukha__odoo-rpc-client__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/katyukha/odoo-rpc-client,https://gitlab.com/katyukha/odoo-rpc-client/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/katyukha__odoo-rpc-client/requirements.txt,katyukha__odoo-rpc-client,Versioning,any-upper-version,,requests,version specifier `>=2.7` matches future versions that might become incompatible,4,requirements.txt,katyukha,katyukha/odoo-rpc-client +katyukha__odoo-rpc-client__Versioning__requirementstxt__simplejson__missing,https://gitlab.com/katyukha/odoo-rpc-client,https://gitlab.com/katyukha/odoo-rpc-client/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/katyukha__odoo-rpc-client/requirements.txt,katyukha__odoo-rpc-client,Versioning,missing,,simplejson,version specifier is missing,5,requirements.txt,katyukha,katyukha/odoo-rpc-client +spease__WeaverForumSoftware__Versioning__gitlabyaml__safety__missing,https://gitlab.com/spease/WeaverForumSoftware,https://gitlab.com/spease/WeaverForumSoftware/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spease__WeaverForumSoftware/.gitlab-ci.yml,spease__WeaverForumSoftware,Versioning,missing,,safety,version specifier is missing,25,.gitlab-ci.yml,spease,spease/WeaverForumSoftware +spease__WeaverForumSoftware__Versioning__gitlabyaml__bandit__missing,https://gitlab.com/spease/WeaverForumSoftware,https://gitlab.com/spease/WeaverForumSoftware/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spease__WeaverForumSoftware/.gitlab-ci.yml,spease__WeaverForumSoftware,Versioning,missing,,bandit,version specifier is missing,28,.gitlab-ci.yml,spease,spease/WeaverForumSoftware +kkopper__oraclejdk-gradle__Job-Allow-Failure__container_scanning,https://gitlab.com/kkopper/oraclejdk-gradle,https://gitlab.com/kkopper/oraclejdk-gradle/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kkopper__oraclejdk-gradle/.gitlab-ci.yml,kkopper__oraclejdk-gradle,Job-Allow-Failure,,check,container_scanning,Allows failure of job `container_scanning` at stage `check`,60,.gitlab-ci.yml,kkopper,kkopper/oraclejdk-gradle +ribamar-org__ribamar__Job-Allow-Failure__code_quality,https://gitlab.com/ribamar-org/ribamar,https://gitlab.com/ribamar-org/ribamar/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ribamar-org__ribamar/.gitlab-ci.yml,ribamar-org__ribamar,Job-Allow-Failure,,check,code_quality,Allows failure of job `code_quality` at stage `check`,39,.gitlab-ci.yml,ribamar-org,ribamar-org/ribamar +ribamar-org__ribamar__Job-Allow-Failure__pages,https://gitlab.com/ribamar-org/ribamar,https://gitlab.com/ribamar-org/ribamar/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ribamar-org__ribamar/.gitlab-ci.yml,ribamar-org__ribamar,Job-Allow-Failure,,deploy,pages,Allows failure of job `pages` at stage `deploy`,58,.gitlab-ci.yml,ribamar-org,ribamar-org/ribamar +je-cspantoja__whats_app_chat_api-python__Versioning__requirementstxt__requests__missing,https://gitlab.com/je-cspantoja/whats_app_chat_api-python,https://gitlab.com/je-cspantoja/whats_app_chat_api-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/je-cspantoja__whats_app_chat_api-python/requirements.txt,je-cspantoja__whats_app_chat_api-python,Versioning,missing,,requests,version specifier is missing,1,requirements.txt,je-cspantoja,je-cspantoja/whats_app_chat_api-python +CodeBabel__hello-world__Versioning__requirementstxt__flask__missing,https://gitlab.com/CodeBabel/hello-world,https://gitlab.com/CodeBabel/hello-world/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/CodeBabel__hello-world/requirements.txt,CodeBabel__hello-world,Versioning,missing,,flask,version specifier is missing,1,requirements.txt,CodeBabel,CodeBabel/hello-world +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,recommonmark,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,nbsphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,recommonmark,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,nbsphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,recommonmark,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Versioning,missing,,nbsphinx,version specifier is missing,76,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Job-Allow-Failure__pages,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Job-Allow-Failure,,test,pages,Allows failure of job `pages` at stage `test`,80,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +kimlab__uniparc_xml_parser__Job-Allow-Failure__test-pages,https://gitlab.com/kimlab/uniparc_xml_parser,https://gitlab.com/kimlab/uniparc_xml_parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__uniparc_xml_parser/.gitlab-ci.yml,kimlab__uniparc_xml_parser,Job-Allow-Failure,,test,test-pages,Allows failure of job `test-pages` at stage `test`,80,.gitlab-ci.yml,kimlab,kimlab/uniparc_xml_parser +phyohtetarkar__github-jobs__Manual-Job__build,https://gitlab.com/phyohtetarkar/github-jobs,https://gitlab.com/phyohtetarkar/github-jobs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/phyohtetarkar__github-jobs/.gitlab-ci.yml,phyohtetarkar__github-jobs,Manual-Job,,build,build,Manual job `build` at stage `build`,28,.gitlab-ci.yml,phyohtetarkar,phyohtetarkar/github-jobs +pothitos__Python_Pipeline__Job-Allow-Failure__static-analysis,https://gitlab.com/pothitos/Python_Pipeline,https://gitlab.com/pothitos/Python_Pipeline/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pothitos__Python_Pipeline/.gitlab-ci.yml,pothitos__Python_Pipeline,Job-Allow-Failure,,static analysis,static analysis,Allows failure of job `static analysis` at stage `static analysis`,11,.gitlab-ci.yml,pothitos,pothitos/Python_Pipeline +vstconsulting__polemarch-ansible__Job-Retry__code_style,https://gitlab.com/vstconsulting/polemarch-ansible,https://gitlab.com/vstconsulting/polemarch-ansible/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-ansible/.gitlab-ci.yml,vstconsulting__polemarch-ansible,Job-Retry,always,code_standarts,code_style,2,25,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch-ansible +vstconsulting__polemarch-ansible__Job-Retry__py36-coverage-ansible25,https://gitlab.com/vstconsulting/polemarch-ansible,https://gitlab.com/vstconsulting/polemarch-ansible/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-ansible/.gitlab-ci.yml,vstconsulting__polemarch-ansible,Job-Retry,always,test,py36-coverage-ansible25,2,11,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch-ansible +vstconsulting__polemarch-ansible__Job-Retry__py36-install-ansible27,https://gitlab.com/vstconsulting/polemarch-ansible,https://gitlab.com/vstconsulting/polemarch-ansible/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-ansible/.gitlab-ci.yml,vstconsulting__polemarch-ansible,Job-Retry,always,test,py36-install-ansible27,2,11,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch-ansible +vstconsulting__polemarch-ansible__Job-Retry__py37-install-ansible29,https://gitlab.com/vstconsulting/polemarch-ansible,https://gitlab.com/vstconsulting/polemarch-ansible/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-ansible/.gitlab-ci.yml,vstconsulting__polemarch-ansible,Job-Retry,always,test,py37-install-ansible29,2,11,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch-ansible +vstconsulting__polemarch-ansible__Job-Retry__py36-install-ansible26,https://gitlab.com/vstconsulting/polemarch-ansible,https://gitlab.com/vstconsulting/polemarch-ansible/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch-ansible/.gitlab-ci.yml,vstconsulting__polemarch-ansible,Job-Retry,always,test,py36-install-ansible26,2,11,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch-ansible +sethbergman__node-express-demo__Job-Allow-Failure__code_quality,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,95,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +sethbergman__node-express-demo__Job-Allow-Failure__performance,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,133,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +sethbergman__node-express-demo__Job-Allow-Failure__license_management,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,114,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +sethbergman__node-express-demo__Job-Allow-Failure__stop_review,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,260,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +sethbergman__node-express-demo__Job-Allow-Failure__dependency_scanning,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,175,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +sethbergman__node-express-demo__Job-Allow-Failure__container_scanning,https://gitlab.com/sethbergman/node-express-demo,https://gitlab.com/sethbergman/node-express-demo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sethbergman__node-express-demo/.gitlab-ci.yml,sethbergman__node-express-demo,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,194,.gitlab-ci.yml,sethbergman,sethbergman/node-express-demo +laurentbachelier__weboob__Job-Allow-Failure__lint-2-7,https://gitlab.com/laurentbachelier/weboob,https://gitlab.com/laurentbachelier/weboob/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurentbachelier__weboob/.gitlab-ci.yml,laurentbachelier__weboob,Job-Allow-Failure,,test,lint:2.7,Allows failure of job `lint:2.7` at stage `test`,18,.gitlab-ci.yml,laurentbachelier,laurentbachelier/weboob +laurentbachelier__weboob__Job-Allow-Failure__unittests-modules-2-7,https://gitlab.com/laurentbachelier/weboob,https://gitlab.com/laurentbachelier/weboob/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurentbachelier__weboob/.gitlab-ci.yml,laurentbachelier__weboob,Job-Allow-Failure,,test,unittests-modules:2.7,Allows failure of job `unittests-modules:2.7` at stage `test`,31,.gitlab-ci.yml,laurentbachelier,laurentbachelier/weboob +laurentbachelier__weboob__Job-Allow-Failure__lint-3,https://gitlab.com/laurentbachelier/weboob,https://gitlab.com/laurentbachelier/weboob/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurentbachelier__weboob/.gitlab-ci.yml,laurentbachelier__weboob,Job-Allow-Failure,,test,lint:3,Allows failure of job `lint:3` at stage `test`,56,.gitlab-ci.yml,laurentbachelier,laurentbachelier/weboob +laurentbachelier__weboob__Job-Allow-Failure__unittests-modules-3,https://gitlab.com/laurentbachelier/weboob,https://gitlab.com/laurentbachelier/weboob/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/laurentbachelier__weboob/.gitlab-ci.yml,laurentbachelier__weboob,Job-Allow-Failure,,test,unittests-modules:3,Allows failure of job `unittests-modules:3` at stage `test`,69,.gitlab-ci.yml,laurentbachelier,laurentbachelier/weboob +samsartor__dynpool__Job-Allow-Failure__tests-semver,https://gitlab.com/samsartor/dynpool,https://gitlab.com/samsartor/dynpool/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/samsartor__dynpool/.gitlab-ci.yml,samsartor__dynpool,Job-Allow-Failure,,test,tests:semver,Allows failure of job `tests:semver` at stage `test`,29,.gitlab-ci.yml,samsartor,samsartor/dynpool +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +bryceschober__conan-cpputest__Versioning__gitlabyaml__conan_package_tools__missing,https://gitlab.com/bryceschober/conan-cpputest,https://gitlab.com/bryceschober/conan-cpputest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bryceschober__conan-cpputest/.gitlab-ci.yml,bryceschober__conan-cpputest,Versioning,missing,,conan_package_tools,version specifier is missing,11,.gitlab-ci.yml,bryceschober,bryceschober/conan-cpputest +3MI__SoftwareDesignProject__Versioning__requirementstxt__systemd-python__only-major-number,https://gitlab.com/3MI/SoftwareDesignProject,https://gitlab.com/3MI/SoftwareDesignProject/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/3MI__SoftwareDesignProject/requirements.txt,3MI__SoftwareDesignProject,Versioning,only-major-number,,systemd-python,"version specifier `==234` only refers to a major release, concrete minor versions might be incompatible",130,requirements.txt,3MI,3MI/SoftwareDesignProject +tue-umphy__python3-sensemapi__Versioning__gitlabyaml__coveralls__missing,https://gitlab.com/tue-umphy/python3-sensemapi,https://gitlab.com/tue-umphy/python3-sensemapi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tue-umphy__python3-sensemapi/.gitlab-ci.yml,tue-umphy__python3-sensemapi,Versioning,missing,,coveralls,version specifier is missing,29,.gitlab-ci.yml,tue-umphy,tue-umphy/python3-sensemapi +tue-umphy__python3-sensemapi__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/tue-umphy/python3-sensemapi,https://gitlab.com/tue-umphy/python3-sensemapi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tue-umphy__python3-sensemapi/.gitlab-ci.yml,tue-umphy__python3-sensemapi,Versioning,missing,,sphinx,version specifier is missing,10,.gitlab-ci.yml,tue-umphy,tue-umphy/python3-sensemapi +tue-umphy__python3-sensemapi__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/tue-umphy/python3-sensemapi,https://gitlab.com/tue-umphy/python3-sensemapi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tue-umphy__python3-sensemapi/.gitlab-ci.yml,tue-umphy__python3-sensemapi,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,77,.gitlab-ci.yml,tue-umphy,tue-umphy/python3-sensemapi +tue-umphy__python3-sensemapi__Versioning__gitlabyaml__jupyter__missing,https://gitlab.com/tue-umphy/python3-sensemapi,https://gitlab.com/tue-umphy/python3-sensemapi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tue-umphy__python3-sensemapi/.gitlab-ci.yml,tue-umphy__python3-sensemapi,Versioning,missing,,jupyter,version specifier is missing,77,.gitlab-ci.yml,tue-umphy,tue-umphy/python3-sensemapi +tue-umphy__python3-sensemapi__Versioning__gitlabyaml__selenium__missing,https://gitlab.com/tue-umphy/python3-sensemapi,https://gitlab.com/tue-umphy/python3-sensemapi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tue-umphy__python3-sensemapi/.gitlab-ci.yml,tue-umphy__python3-sensemapi,Versioning,missing,,selenium,version specifier is missing,109,.gitlab-ci.yml,tue-umphy,tue-umphy/python3-sensemapi +flatiron-dc__wedding_invitation__Job-Retry__s3-branch-deployment,https://gitlab.com/flatiron-dc/wedding_invitation,https://gitlab.com/flatiron-dc/wedding_invitation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/flatiron-dc__wedding_invitation/.gitlab-ci.yml,flatiron-dc__wedding_invitation,Job-Retry,always,deploy,s3-branch-deployment,2,7,.gitlab-ci.yml,flatiron-dc,flatiron-dc/wedding_invitation +ColoradoSchoolOfMines__acm-officer-resources__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/ColoradoSchoolOfMines/acm-officer-resources,https://gitlab.com/ColoradoSchoolOfMines/acm-officer-resources/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ColoradoSchoolOfMines__acm-officer-resources/requirements.txt,ColoradoSchoolOfMines__acm-officer-resources,Versioning,missing,,sphinx,version specifier is missing,1,requirements.txt,ColoradoSchoolOfMines,ColoradoSchoolOfMines/acm-officer-resources +ColoradoSchoolOfMines__acm-officer-resources__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/ColoradoSchoolOfMines/acm-officer-resources,https://gitlab.com/ColoradoSchoolOfMines/acm-officer-resources/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ColoradoSchoolOfMines__acm-officer-resources/requirements.txt,ColoradoSchoolOfMines__acm-officer-resources,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,2,requirements.txt,ColoradoSchoolOfMines,ColoradoSchoolOfMines/acm-officer-resources +coreynwops__decred-dev-docs__Job-Allow-Failure__grammar_check,https://gitlab.com/coreynwops/decred-dev-docs,https://gitlab.com/coreynwops/decred-dev-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coreynwops__decred-dev-docs/.gitlab-ci.yml,coreynwops__decred-dev-docs,Job-Allow-Failure,,validate,grammar_check,Allows failure of job `grammar_check` at stage `validate`,25,.gitlab-ci.yml,coreynwops,coreynwops/decred-dev-docs +coreynwops__decred-dev-docs__Job-Allow-Failure__layout_link_check,https://gitlab.com/coreynwops/decred-dev-docs,https://gitlab.com/coreynwops/decred-dev-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coreynwops__decred-dev-docs/.gitlab-ci.yml,coreynwops__decred-dev-docs,Job-Allow-Failure,,validate,layout_link_check,Allows failure of job `layout_link_check` at stage `validate`,42,.gitlab-ci.yml,coreynwops,coreynwops/decred-dev-docs +SoHigh__Nergigante__Job-Allow-Failure__code_quality,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,98,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +SoHigh__Nergigante__Job-Allow-Failure__performance,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,136,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +SoHigh__Nergigante__Job-Allow-Failure__license_management,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,117,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +SoHigh__Nergigante__Job-Allow-Failure__stop_review,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,263,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +SoHigh__Nergigante__Job-Allow-Failure__dependency_scanning,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,178,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +SoHigh__Nergigante__Job-Allow-Failure__container_scanning,https://gitlab.com/SoHigh/Nergigante,https://gitlab.com/SoHigh/Nergigante/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SoHigh__Nergigante/.gitlab-ci.yml,SoHigh__Nergigante,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,197,.gitlab-ci.yml,SoHigh,SoHigh/Nergigante +ModernisingMedicalMicrobiology__groupBug__Versioning__requirementstxt__pandas__missing,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__groupBug/requirements.txt,ModernisingMedicalMicrobiology__groupBug,Versioning,missing,,pandas,version specifier is missing,1,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/groupBug +ModernisingMedicalMicrobiology__groupBug__Versioning__requirementstxt__ete3__missing,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__groupBug/requirements.txt,ModernisingMedicalMicrobiology__groupBug,Versioning,missing,,ete3,version specifier is missing,2,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/groupBug +ModernisingMedicalMicrobiology__groupBug__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__groupBug/requirements.txt,ModernisingMedicalMicrobiology__groupBug,Versioning,missing,,matplotlib,version specifier is missing,3,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/groupBug +ModernisingMedicalMicrobiology__groupBug__Versioning__requirementstxt__seaborn__missing,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__groupBug/requirements.txt,ModernisingMedicalMicrobiology__groupBug,Versioning,missing,,seaborn,version specifier is missing,4,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/groupBug +ModernisingMedicalMicrobiology__groupBug__Versioning__requirementstxt__six__missing,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug,https://gitlab.com/ModernisingMedicalMicrobiology/groupBug/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__groupBug/requirements.txt,ModernisingMedicalMicrobiology__groupBug,Versioning,missing,,six,version specifier is missing,5,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/groupBug +deepset-ai__open-source__word2vec-embeddings-de__Versioning__requirementstxt__numpy__missing,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/deepset-ai__open-source__word2vec-embeddings-de/requirements.txt,deepset-ai__open-source__word2vec-embeddings-de,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,deepset-ai,deepset-ai/open-source/word2vec-embeddings-de +deepset-ai__open-source__word2vec-embeddings-de__Versioning__requirementstxt__tensorflow__missing,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/deepset-ai__open-source__word2vec-embeddings-de/requirements.txt,deepset-ai__open-source__word2vec-embeddings-de,Versioning,missing,,tensorflow,version specifier is missing,2,requirements.txt,deepset-ai,deepset-ai/open-source/word2vec-embeddings-de +deepset-ai__open-source__word2vec-embeddings-de__Versioning__requirementstxt__IPython__missing,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/deepset-ai__open-source__word2vec-embeddings-de/requirements.txt,deepset-ai__open-source__word2vec-embeddings-de,Versioning,missing,,IPython,version specifier is missing,3,requirements.txt,deepset-ai,deepset-ai/open-source/word2vec-embeddings-de +deepset-ai__open-source__word2vec-embeddings-de__Versioning__requirementstxt__gensim__missing,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de,https://gitlab.com/deepset-ai/open-source/word2vec-embeddings-de/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/deepset-ai__open-source__word2vec-embeddings-de/requirements.txt,deepset-ai__open-source__word2vec-embeddings-de,Versioning,missing,,gensim,version specifier is missing,4,requirements.txt,deepset-ai,deepset-ai/open-source/word2vec-embeddings-de +alelec__jupyter_micropython_remote__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/jupyter_micropython_remote,https://gitlab.com/alelec/jupyter_micropython_remote/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__jupyter_micropython_remote/.gitlab-ci.yml,alelec__jupyter_micropython_remote,Versioning,missing,,twine,version specifier is missing,17,.gitlab-ci.yml,alelec,alelec/jupyter_micropython_remote +alelec__jupyter_micropython_remote__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/jupyter_micropython_remote,https://gitlab.com/alelec/jupyter_micropython_remote/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__jupyter_micropython_remote/.gitlab-ci.yml,alelec__jupyter_micropython_remote,Versioning,missing,,wheel,version specifier is missing,17,.gitlab-ci.yml,alelec,alelec/jupyter_micropython_remote +iba-aes__webcie__website__Job-Retry__Make-Docker-image,https://gitlab.com/iba-aes/webcie/website,https://gitlab.com/iba-aes/webcie/website/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/iba-aes__webcie__website/.gitlab-ci.yml,iba-aes__webcie__website,Job-Retry,script_failure,build,Make Docker image,1,9,.gitlab-ci.yml,iba-aes,iba-aes/webcie/website +cravacuore__rawRSS__Job-Allow-Failure__code_quality,https://gitlab.com/cravacuore/rawRSS,https://gitlab.com/cravacuore/rawRSS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cravacuore__rawRSS/.gitlab-ci.yml,cravacuore__rawRSS,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,115,.gitlab-ci.yml,cravacuore,cravacuore/rawRSS +cravacuore__rawRSS__Job-Allow-Failure__performance,https://gitlab.com/cravacuore/rawRSS,https://gitlab.com/cravacuore/rawRSS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cravacuore__rawRSS/.gitlab-ci.yml,cravacuore__rawRSS,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,151,.gitlab-ci.yml,cravacuore,cravacuore/rawRSS +cravacuore__rawRSS__Job-Allow-Failure__stop_review,https://gitlab.com/cravacuore/rawRSS,https://gitlab.com/cravacuore/rawRSS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cravacuore__rawRSS/.gitlab-ci.yml,cravacuore__rawRSS,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,281,.gitlab-ci.yml,cravacuore,cravacuore/rawRSS +cravacuore__rawRSS__Job-Allow-Failure__dependency_scanning,https://gitlab.com/cravacuore/rawRSS,https://gitlab.com/cravacuore/rawRSS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cravacuore__rawRSS/.gitlab-ci.yml,cravacuore__rawRSS,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,192,.gitlab-ci.yml,cravacuore,cravacuore/rawRSS +cravacuore__rawRSS__Job-Allow-Failure__container_scanning,https://gitlab.com/cravacuore/rawRSS,https://gitlab.com/cravacuore/rawRSS/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cravacuore__rawRSS/.gitlab-ci.yml,cravacuore__rawRSS,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,212,.gitlab-ci.yml,cravacuore,cravacuore/rawRSS +Lucidiot__python-usda__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/Lucidiot/python-usda,https://gitlab.com/Lucidiot/python-usda/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Lucidiot__python-usda/requirements.txt,Lucidiot__python-usda,Versioning,any-upper-version,,requests,version specifier `>=2.16.0` matches future versions that might become incompatible,1,requirements.txt,Lucidiot,Lucidiot/python-usda +Lucidiot__python-usda__Versioning__gitlabyaml__twine__missing,https://gitlab.com/Lucidiot/python-usda,https://gitlab.com/Lucidiot/python-usda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Lucidiot__python-usda/.gitlab-ci.yml,Lucidiot__python-usda,Versioning,missing,,twine,version specifier is missing,46,.gitlab-ci.yml,Lucidiot,Lucidiot/python-usda +Lucidiot__python-usda__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/Lucidiot/python-usda,https://gitlab.com/Lucidiot/python-usda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Lucidiot__python-usda/.gitlab-ci.yml,Lucidiot__python-usda,Versioning,missing,,wheel,version specifier is missing,46,.gitlab-ci.yml,Lucidiot,Lucidiot/python-usda +Lucidiot__python-usda__Versioning__gitlabyaml__twine__missing,https://gitlab.com/Lucidiot/python-usda,https://gitlab.com/Lucidiot/python-usda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Lucidiot__python-usda/.gitlab-ci.yml,Lucidiot__python-usda,Versioning,missing,,twine,version specifier is missing,46,.gitlab-ci.yml,Lucidiot,Lucidiot/python-usda +Lucidiot__python-usda__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/Lucidiot/python-usda,https://gitlab.com/Lucidiot/python-usda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Lucidiot__python-usda/.gitlab-ci.yml,Lucidiot__python-usda,Versioning,missing,,wheel,version specifier is missing,46,.gitlab-ci.yml,Lucidiot,Lucidiot/python-usda +SchoolOrchestration__libs__microservicetool__Versioning__requirementstxt__Django__any-minor-number,https://gitlab.com/SchoolOrchestration/libs/microservicetool,https://gitlab.com/SchoolOrchestration/libs/microservicetool/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SchoolOrchestration__libs__microservicetool/requirements.txt,SchoolOrchestration__libs__microservicetool,Versioning,any-minor-number,,Django,"version specifier `==2.*` matches any minor release, even future versions that might become incompatible",1,requirements.txt,SchoolOrchestration,SchoolOrchestration/libs/microservicetool +SchoolOrchestration__libs__microservicetool__Versioning__requirementstxt__requests__missing,https://gitlab.com/SchoolOrchestration/libs/microservicetool,https://gitlab.com/SchoolOrchestration/libs/microservicetool/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SchoolOrchestration__libs__microservicetool/requirements.txt,SchoolOrchestration__libs__microservicetool,Versioning,missing,,requests,version specifier is missing,5,requirements.txt,SchoolOrchestration,SchoolOrchestration/libs/microservicetool +aurorafossorg__apps__tuna__Job-Allow-Failure__code_quality,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,96,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +aurorafossorg__apps__tuna__Job-Allow-Failure__performance,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,134,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +aurorafossorg__apps__tuna__Job-Allow-Failure__license_management,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,115,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +aurorafossorg__apps__tuna__Job-Allow-Failure__stop_review,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,261,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +aurorafossorg__apps__tuna__Job-Allow-Failure__dependency_scanning,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,176,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +aurorafossorg__apps__tuna__Job-Allow-Failure__container_scanning,https://gitlab.com/aurorafossorg/apps/tuna,https://gitlab.com/aurorafossorg/apps/tuna/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__tuna/.gitlab-ci.yml,aurorafossorg__apps__tuna,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,195,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/tuna +leroywarnt__sdlc__Versioning__requirementstxt__Flask__missing,https://gitlab.com/leroywarnt/sdlc,https://gitlab.com/leroywarnt/sdlc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/leroywarnt__sdlc/requirements.txt,leroywarnt__sdlc,Versioning,missing,,Flask,version specifier is missing,1,requirements.txt,leroywarnt,leroywarnt/sdlc +leroywarnt__sdlc__Versioning__gitlabyaml__requests__missing,https://gitlab.com/leroywarnt/sdlc,https://gitlab.com/leroywarnt/sdlc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leroywarnt__sdlc/.gitlab-ci.yml,leroywarnt__sdlc,Versioning,missing,,requests,version specifier is missing,20,.gitlab-ci.yml,leroywarnt,leroywarnt/sdlc +leroywarnt__sdlc__Versioning__gitlabyaml__flask__missing,https://gitlab.com/leroywarnt/sdlc,https://gitlab.com/leroywarnt/sdlc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leroywarnt__sdlc/.gitlab-ci.yml,leroywarnt__sdlc,Versioning,missing,,flask,version specifier is missing,20,.gitlab-ci.yml,leroywarnt,leroywarnt/sdlc +leroywarnt__sdlc__Versioning__gitlabyaml__requests__missing,https://gitlab.com/leroywarnt/sdlc,https://gitlab.com/leroywarnt/sdlc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leroywarnt__sdlc/.gitlab-ci.yml,leroywarnt__sdlc,Versioning,missing,,requests,version specifier is missing,20,.gitlab-ci.yml,leroywarnt,leroywarnt/sdlc +flatiron-dc__learning-git2__Job-Retry__s3-branch-deployment,https://gitlab.com/flatiron-dc/learning-git2,https://gitlab.com/flatiron-dc/learning-git2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/flatiron-dc__learning-git2/.gitlab-ci.yml,flatiron-dc__learning-git2,Job-Retry,always,deploy,s3-branch-deployment,2,6,.gitlab-ci.yml,flatiron-dc,flatiron-dc/learning-git2 +apifie__nodems__node-microservice__Job-Allow-Failure__code_quality,https://gitlab.com/apifie/nodems/node-microservice,https://gitlab.com/apifie/nodems/node-microservice/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/apifie__nodems__node-microservice/.gitlab-ci.yml,apifie__nodems__node-microservice,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,52,.gitlab-ci.yml,apifie,apifie/nodems/node-microservice +apifie__nodems__node-microservice__Job-Allow-Failure__license_management,https://gitlab.com/apifie/nodems/node-microservice,https://gitlab.com/apifie/nodems/node-microservice/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/apifie__nodems__node-microservice/.gitlab-ci.yml,apifie__nodems__node-microservice,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,70,.gitlab-ci.yml,apifie,apifie/nodems/node-microservice +apifie__nodems__node-microservice__Job-Allow-Failure__dependency_scanning,https://gitlab.com/apifie/nodems/node-microservice,https://gitlab.com/apifie/nodems/node-microservice/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/apifie__nodems__node-microservice/.gitlab-ci.yml,apifie__nodems__node-microservice,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,86,.gitlab-ci.yml,apifie,apifie/nodems/node-microservice +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__org-slf4j-slf4j-api__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,org.slf4j/slf4j-api,version specifier is missing,84,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__com-google-code-findbugs-jsr305__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,com.google.code.findbugs/jsr305,version specifier is missing,88,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__ch-qos-logback-logback-classic__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,ch.qos.logback/logback-classic,version specifier is missing,94,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__org-hamcrest-hamcrest-library__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,org.hamcrest/hamcrest-library,version specifier is missing,99,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__com-tngtech-java-junit-dataprovider__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,com.tngtech.java/junit-dataprovider,version specifier is missing,109,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,114,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__org-awaitility-awaitility__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,org.awaitility/awaitility,version specifier is missing,119,pom.xml,morimekta,morimekta/io-util +morimekta__io-util__Versioning__net-morimekta-utils-io-util-3-7-2-SNAPSHOT__io-codearte-jfairy-jfairy__missing,https://gitlab.com/morimekta/io-util,https://gitlab.com/morimekta/io-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__io-util/pom.xml,morimekta__io-util,Versioning,missing,,io.codearte.jfairy/jfairy,version specifier is missing,124,pom.xml,morimekta,morimekta/io-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__net-morimekta-utils-io-util__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,net.morimekta.utils/io-util,version specifier is missing,84,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__org-slf4j-slf4j-api__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,org.slf4j/slf4j-api,version specifier is missing,89,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__com-google-code-findbugs-jsr305__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,com.google.code.findbugs/jsr305,version specifier is missing,94,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__ch-qos-logback-logback-classic__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,ch.qos.logback/logback-classic,version specifier is missing,101,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__org-hamcrest-hamcrest-library__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,org.hamcrest/hamcrest-library,version specifier is missing,117,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__com-tngtech-java-junit-dataprovider__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,com.tngtech.java/junit-dataprovider,version specifier is missing,112,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,122,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__org-awaitility-awaitility__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,org.awaitility/awaitility,version specifier is missing,127,pom.xml,morimekta,morimekta/diff-util +morimekta__diff-util__Versioning__net-morimekta-utils-diff-util-3-1-2-SNAPSHOT__io-codearte-jfairy-jfairy__missing,https://gitlab.com/morimekta/diff-util,https://gitlab.com/morimekta/diff-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__diff-util/pom.xml,morimekta__diff-util,Versioning,missing,,io.codearte.jfairy/jfairy,version specifier is missing,132,pom.xml,morimekta,morimekta/diff-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__net-morimekta-utils-io-util__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,net.morimekta.utils/io-util,version specifier is missing,84,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__org-slf4j-slf4j-api__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,org.slf4j/slf4j-api,version specifier is missing,89,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__com-google-code-findbugs-jsr305__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,com.google.code.findbugs/jsr305,version specifier is missing,94,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__ch-qos-logback-logback-classic__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,ch.qos.logback/logback-classic,version specifier is missing,101,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__org-hamcrest-hamcrest-library__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,org.hamcrest/hamcrest-library,version specifier is missing,117,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__com-tngtech-java-junit-dataprovider__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,com.tngtech.java/junit-dataprovider,version specifier is missing,112,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,122,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__org-awaitility-awaitility__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,org.awaitility/awaitility,version specifier is missing,127,pom.xml,morimekta,morimekta/console-util +morimekta__console-util__Versioning__net-morimekta-utils-console-util-3-1-2-SNAPSHOT__io-codearte-jfairy-jfairy__missing,https://gitlab.com/morimekta/console-util,https://gitlab.com/morimekta/console-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__console-util/pom.xml,morimekta__console-util,Versioning,missing,,io.codearte.jfairy/jfairy,version specifier is missing,132,pom.xml,morimekta,morimekta/console-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__org-hamcrest-hamcrest-core__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,org.hamcrest/hamcrest-core,version specifier is missing,84,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__org-hamcrest-hamcrest-library__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,org.hamcrest/hamcrest-library,version specifier is missing,89,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__com-tngtech-java-junit-dataprovider__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,com.tngtech.java/junit-dataprovider,version specifier is missing,99,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__net-morimekta-utils-io-util__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,net.morimekta.utils/io-util,version specifier is missing,105,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__net-morimekta-utils-diff-util__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,net.morimekta.utils/diff-util,version specifier is missing,110,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__net-morimekta-utils-console-util__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,net.morimekta.utils/console-util,version specifier is missing,115,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__org-slf4j-slf4j-api__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,org.slf4j/slf4j-api,version specifier is missing,120,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__com-google-code-findbugs-jsr305__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,com.google.code.findbugs/jsr305,version specifier is missing,125,pom.xml,morimekta,morimekta/testing-util +morimekta__testing-util__Versioning__net-morimekta-utils-testing-util-3-4-1-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/morimekta/testing-util,https://gitlab.com/morimekta/testing-util/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__testing-util/pom.xml,morimekta__testing-util,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,132,pom.xml,morimekta,morimekta/testing-util +superchain__superchainpy__Versioning__requirementstxt__dill__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,dill,version specifier is missing,1,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,pyyaml,version specifier is missing,2,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Versioning__requirementstxt__flask__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,flask,version specifier is missing,3,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Versioning__requirementstxt__click__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,click,version specifier is missing,4,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Versioning__requirementstxt__requests__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,requests,version specifier is missing,5,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Versioning__requirementstxt__flask-api__missing,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/requirements.txt,superchain__superchainpy,Versioning,missing,,flask-api,version specifier is missing,6,requirements.txt,superchain,superchain/superchainpy +superchain__superchainpy__Job-Allow-Failure__python36,https://gitlab.com/superchain/superchainpy,https://gitlab.com/superchain/superchainpy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/superchain__superchainpy/.gitlab-ci.yml,superchain__superchainpy,Job-Allow-Failure,,python36,python36,Allows failure of job `python36` at stage `python36`,4,.gitlab-ci.yml,superchain,superchain/superchainpy +BurkHufnagel__learningloop__Job-Allow-Failure__performance,https://gitlab.com/BurkHufnagel/learningloop,https://gitlab.com/BurkHufnagel/learningloop/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BurkHufnagel__learningloop/.gitlab-ci.yml,BurkHufnagel__learningloop,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,91,.gitlab-ci.yml,BurkHufnagel,BurkHufnagel/learningloop +BurkHufnagel__learningloop__Job-Allow-Failure__dependency_scanning,https://gitlab.com/BurkHufnagel/learningloop,https://gitlab.com/BurkHufnagel/learningloop/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BurkHufnagel__learningloop/.gitlab-ci.yml,BurkHufnagel__learningloop,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,70,.gitlab-ci.yml,BurkHufnagel,BurkHufnagel/learningloop +BurkHufnagel__learningloop__Job-Allow-Failure__sonarqube-scan,https://gitlab.com/BurkHufnagel/learningloop,https://gitlab.com/BurkHufnagel/learningloop/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BurkHufnagel__learningloop/.gitlab-ci.yml,BurkHufnagel__learningloop,Job-Allow-Failure,,test,sonarqube-scan,Allows failure of job `sonarqube-scan` at stage `test`,47,.gitlab-ci.yml,BurkHufnagel,BurkHufnagel/learningloop +lucj__sophia-events__Job-Allow-Failure__image_scanning_clair,https://gitlab.com/lucj/sophia.events,https://gitlab.com/lucj/sophia.events/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lucj__sophia.events/.gitlab-ci.yml,lucj__sophia.events,Job-Allow-Failure,,scan,image_scanning_clair,Allows failure of job `image_scanning_clair` at stage `scan`,30,.gitlab-ci.yml,lucj,lucj/sophia.events +openrail__uk__stomp-client-nodejs__Job-Allow-Failure__code_quality,https://gitlab.com/openrail/uk/stomp-client-nodejs,https://gitlab.com/openrail/uk/stomp-client-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__stomp-client-nodejs/.gitlab-ci.yml,openrail__uk__stomp-client-nodejs,Job-Allow-Failure,,deploy,code_quality,Allows failure of job `code_quality` at stage `deploy`,184,.gitlab-ci.yml,openrail,openrail/uk/stomp-client-nodejs +openrail__uk__stomp-client-nodejs__Job-Allow-Failure__code_coverage,https://gitlab.com/openrail/uk/stomp-client-nodejs,https://gitlab.com/openrail/uk/stomp-client-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__stomp-client-nodejs/.gitlab-ci.yml,openrail__uk__stomp-client-nodejs,Job-Allow-Failure,,deploy,code_coverage,Allows failure of job `code_coverage` at stage `deploy`,161,.gitlab-ci.yml,openrail,openrail/uk/stomp-client-nodejs +openrail__uk__stomp-client-nodejs__Job-Allow-Failure__dependency_scanning,https://gitlab.com/openrail/uk/stomp-client-nodejs,https://gitlab.com/openrail/uk/stomp-client-nodejs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/openrail__uk__stomp-client-nodejs/.gitlab-ci.yml,openrail__uk__stomp-client-nodejs,Job-Allow-Failure,,deploy,dependency_scanning,Allows failure of job `dependency_scanning` at stage `deploy`,208,.gitlab-ci.yml,openrail,openrail/uk/stomp-client-nodejs +jsonsonson__in-command__Job-Allow-Failure__release_test,https://gitlab.com/jsonsonson/in-command,https://gitlab.com/jsonsonson/in-command/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jsonsonson__in-command/.gitlab-ci.yml,jsonsonson__in-command,Job-Allow-Failure,,release_test,release_test,Allows failure of job `release_test` at stage `release_test`,36,.gitlab-ci.yml,jsonsonson,jsonsonson/in-command +jsonsonson__in-command__Job-Allow-Failure__pages,https://gitlab.com/jsonsonson/in-command,https://gitlab.com/jsonsonson/in-command/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jsonsonson__in-command/.gitlab-ci.yml,jsonsonson__in-command,Job-Allow-Failure,,report,pages,Allows failure of job `pages` at stage `report`,50,.gitlab-ci.yml,jsonsonson,jsonsonson/in-command +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__commons-codec-commons-codec__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,commons-codec/commons-codec,version specifier is missing,115,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__net-morimekta-providence-providence-core__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,net.morimekta.providence/providence-core,version specifier is missing,104,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__net-morimekta-utils-console-util__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,net.morimekta.utils/console-util,version specifier is missing,88,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__net-morimekta-utils-diff-util__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,net.morimekta.utils/diff-util,version specifier is missing,93,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__org-slf4j-slf4j-nop__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,org.slf4j/slf4j-nop,version specifier is missing,130,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__org-apache-commons-commons-lang3__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,org.apache.commons/commons-lang3,version specifier is missing,120,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__net-morimekta-utils-testing-util__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,net.morimekta.utils/testing-util,version specifier is missing,98,pom.xml,morimekta,morimekta/idltool +morimekta__idltool__Versioning__net-morimekta-idltool-idltool-3-4-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/morimekta/idltool,https://gitlab.com/morimekta/idltool/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/morimekta__idltool/pom.xml,morimekta__idltool,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,152,pom.xml,morimekta,morimekta/idltool +Nooka10__local-food__Job-Allow-Failure__code_quality-api,https://gitlab.com/Nooka10/local-food,https://gitlab.com/Nooka10/local-food/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Nooka10__local-food/.gitlab-ci.yml,Nooka10__local-food,Job-Allow-Failure,,test,code_quality-api,Allows failure of job `code_quality-api` at stage `test`,67,.gitlab-ci.yml,Nooka10,Nooka10/local-food +districted__web-client__Job-Retry__deploy-staging,https://gitlab.com/districted/web-client,https://gitlab.com/districted/web-client/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__web-client/.gitlab-ci.yml,districted__web-client,Job-Retry,always,deploy-staging,deploy-staging,2,49,.gitlab-ci.yml,districted,districted/web-client +districted__web-client__Job-Retry__deploy-prod,https://gitlab.com/districted/web-client,https://gitlab.com/districted/web-client/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__web-client/.gitlab-ci.yml,districted__web-client,Job-Retry,always,deploy-prod,deploy-prod,2,91,.gitlab-ci.yml,districted,districted/web-client +districted__auth-server__Job-Retry__deploy-staging,https://gitlab.com/districted/auth-server,https://gitlab.com/districted/auth-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__auth-server/.gitlab-ci.yml,districted__auth-server,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/auth-server +districted__auth-server__Job-Retry__deploy-prod,https://gitlab.com/districted/auth-server,https://gitlab.com/districted/auth-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__auth-server/.gitlab-ci.yml,districted__auth-server,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/auth-server +districted__district-command-service__Job-Retry__deploy-staging,https://gitlab.com/districted/district-command-service,https://gitlab.com/districted/district-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__district-command-service/.gitlab-ci.yml,districted__district-command-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/district-command-service +districted__district-command-service__Job-Retry__deploy-prod,https://gitlab.com/districted/district-command-service,https://gitlab.com/districted/district-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__district-command-service/.gitlab-ci.yml,districted__district-command-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/district-command-service +districted__district-query-service__Job-Retry__deploy-staging,https://gitlab.com/districted/district-query-service,https://gitlab.com/districted/district-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__district-query-service/.gitlab-ci.yml,districted__district-query-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/district-query-service +districted__district-query-service__Job-Retry__deploy-prod,https://gitlab.com/districted/district-query-service,https://gitlab.com/districted/district-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__district-query-service/.gitlab-ci.yml,districted__district-query-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/district-query-service +districted__api-gateway__Job-Retry__deploy-staging,https://gitlab.com/districted/api-gateway,https://gitlab.com/districted/api-gateway/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__api-gateway/.gitlab-ci.yml,districted__api-gateway,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/api-gateway +districted__api-gateway__Job-Retry__deploy-prod,https://gitlab.com/districted/api-gateway,https://gitlab.com/districted/api-gateway/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__api-gateway/.gitlab-ci.yml,districted__api-gateway,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/api-gateway +districted__configuration-server__Job-Retry__deploy-staging,https://gitlab.com/districted/configuration-server,https://gitlab.com/districted/configuration-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__configuration-server/.gitlab-ci.yml,districted__configuration-server,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/configuration-server +districted__configuration-server__Job-Retry__deploy-prod,https://gitlab.com/districted/configuration-server,https://gitlab.com/districted/configuration-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__configuration-server/.gitlab-ci.yml,districted__configuration-server,Job-Retry,always,deploy-prod,deploy-prod,2,78,.gitlab-ci.yml,districted,districted/configuration-server +districted__discovery-server__Job-Retry__deploy-staging,https://gitlab.com/districted/discovery-server,https://gitlab.com/districted/discovery-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__discovery-server/.gitlab-ci.yml,districted__discovery-server,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/discovery-server +districted__discovery-server__Job-Retry__deploy-prod,https://gitlab.com/districted/discovery-server,https://gitlab.com/districted/discovery-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__discovery-server/.gitlab-ci.yml,districted__discovery-server,Job-Retry,always,deploy-prod,deploy-prod,2,79,.gitlab-ci.yml,districted,districted/discovery-server +districted__feedback-service__Job-Retry__deploy-staging,https://gitlab.com/districted/feedback-service,https://gitlab.com/districted/feedback-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__feedback-service/.gitlab-ci.yml,districted__feedback-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/feedback-service +districted__feedback-service__Job-Retry__deploy-prod,https://gitlab.com/districted/feedback-service,https://gitlab.com/districted/feedback-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__feedback-service/.gitlab-ci.yml,districted__feedback-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/feedback-service +districted__message-command-service__Job-Retry__deploy-staging,https://gitlab.com/districted/message-command-service,https://gitlab.com/districted/message-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__message-command-service/.gitlab-ci.yml,districted__message-command-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/message-command-service +districted__message-command-service__Job-Retry__deploy-prod,https://gitlab.com/districted/message-command-service,https://gitlab.com/districted/message-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__message-command-service/.gitlab-ci.yml,districted__message-command-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/message-command-service +districted__message-query-service__Job-Retry__deploy-staging,https://gitlab.com/districted/message-query-service,https://gitlab.com/districted/message-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__message-query-service/.gitlab-ci.yml,districted__message-query-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/message-query-service +districted__message-query-service__Job-Retry__deploy-prod,https://gitlab.com/districted/message-query-service,https://gitlab.com/districted/message-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__message-query-service/.gitlab-ci.yml,districted__message-query-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/message-query-service +districted__media-read-service__Job-Retry__deploy-staging,https://gitlab.com/districted/media-read-service,https://gitlab.com/districted/media-read-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__media-read-service/.gitlab-ci.yml,districted__media-read-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/media-read-service +districted__media-read-service__Job-Retry__deploy-prod,https://gitlab.com/districted/media-read-service,https://gitlab.com/districted/media-read-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__media-read-service/.gitlab-ci.yml,districted__media-read-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/media-read-service +districted__media-write-service__Job-Retry__deploy-staging,https://gitlab.com/districted/media-write-service,https://gitlab.com/districted/media-write-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__media-write-service/.gitlab-ci.yml,districted__media-write-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/media-write-service +districted__media-write-service__Job-Retry__deploy-prod,https://gitlab.com/districted/media-write-service,https://gitlab.com/districted/media-write-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__media-write-service/.gitlab-ci.yml,districted__media-write-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/media-write-service +districted__profile-command-service__Job-Retry__deploy-staging,https://gitlab.com/districted/profile-command-service,https://gitlab.com/districted/profile-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__profile-command-service/.gitlab-ci.yml,districted__profile-command-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/profile-command-service +districted__profile-command-service__Job-Retry__deploy-prod,https://gitlab.com/districted/profile-command-service,https://gitlab.com/districted/profile-command-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__profile-command-service/.gitlab-ci.yml,districted__profile-command-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/profile-command-service +districted__profile-query-service__Job-Retry__deploy-staging,https://gitlab.com/districted/profile-query-service,https://gitlab.com/districted/profile-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__profile-query-service/.gitlab-ci.yml,districted__profile-query-service,Job-Retry,always,deploy-staging,deploy-staging,2,52,.gitlab-ci.yml,districted,districted/profile-query-service +districted__profile-query-service__Job-Retry__deploy-prod,https://gitlab.com/districted/profile-query-service,https://gitlab.com/districted/profile-query-service/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/districted__profile-query-service/.gitlab-ci.yml,districted__profile-query-service,Job-Retry,always,deploy-prod,deploy-prod,2,77,.gitlab-ci.yml,districted,districted/profile-query-service +goauth__dex__Versioning__requirementstxt__gitchangelog__missing,https://gitlab.com/goauth/dex,https://gitlab.com/goauth/dex/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/goauth__dex/requirements.txt,goauth__dex,Versioning,missing,,gitchangelog,version specifier is missing,1,requirements.txt,goauth,goauth/dex +goauth__dex__Versioning__requirementstxt__pystache__missing,https://gitlab.com/goauth/dex,https://gitlab.com/goauth/dex/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/goauth__dex/requirements.txt,goauth__dex,Versioning,missing,,pystache,version specifier is missing,2,requirements.txt,goauth,goauth/dex +jorgecarleitao__schemaflow__Versioning__requirementstxt__-e-__missing,https://gitlab.com/jorgecarleitao/schemaflow,https://gitlab.com/jorgecarleitao/schemaflow/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/jorgecarleitao__schemaflow/requirements.txt,jorgecarleitao__schemaflow,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,jorgecarleitao,jorgecarleitao/schemaflow +OctoNezd__autogram__Versioning__requirementstxt__bs4__missing,https://gitlab.com/OctoNezd/autogram,https://gitlab.com/OctoNezd/autogram/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/OctoNezd__autogram/requirements.txt,OctoNezd__autogram,Versioning,missing,,bs4,version specifier is missing,1,requirements.txt,OctoNezd,OctoNezd/autogram +OctoNezd__autogram__Versioning__requirementstxt__lxml__missing,https://gitlab.com/OctoNezd/autogram,https://gitlab.com/OctoNezd/autogram/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/OctoNezd__autogram/requirements.txt,OctoNezd__autogram,Versioning,missing,,lxml,version specifier is missing,2,requirements.txt,OctoNezd,OctoNezd/autogram +OctoNezd__autogram__Versioning__requirementstxt__requests__missing,https://gitlab.com/OctoNezd/autogram,https://gitlab.com/OctoNezd/autogram/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/OctoNezd__autogram/requirements.txt,OctoNezd__autogram,Versioning,missing,,requests,version specifier is missing,3,requirements.txt,OctoNezd,OctoNezd/autogram +mygnu__spark_post__Job-Allow-Failure__rust-nightly,https://gitlab.com/mygnu/spark_post,https://gitlab.com/mygnu/spark_post/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mygnu__spark_post/.gitlab-ci.yml,mygnu__spark_post,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,11,.gitlab-ci.yml,mygnu,mygnu/spark_post +leggettc18__fundwarrior__Job-Allow-Failure__rust-nightly,https://gitlab.com/leggettc18/fundwarrior,https://gitlab.com/leggettc18/fundwarrior/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leggettc18__fundwarrior/.gitlab-ci.yml,leggettc18__fundwarrior,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,11,.gitlab-ci.yml,leggettc18,leggettc18/fundwarrior +leopardm__dnd__Versioning__requirementstxt__bs4__missing,https://gitlab.com/leopardm/dnd,https://gitlab.com/leopardm/dnd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/leopardm__dnd/requirements.txt,leopardm__dnd,Versioning,missing,,bs4,version specifier is missing,1,requirements.txt,leopardm,leopardm/dnd +leopardm__dnd__Versioning__requirementstxt__progress__missing,https://gitlab.com/leopardm/dnd,https://gitlab.com/leopardm/dnd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/leopardm__dnd/requirements.txt,leopardm__dnd,Versioning,missing,,progress,version specifier is missing,2,requirements.txt,leopardm,leopardm/dnd +leopardm__dnd__Versioning__requirementstxt__cursor__missing,https://gitlab.com/leopardm/dnd,https://gitlab.com/leopardm/dnd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/leopardm__dnd/requirements.txt,leopardm__dnd,Versioning,missing,,cursor,version specifier is missing,3,requirements.txt,leopardm,leopardm/dnd +leopardm__dnd__Versioning__gitlabyaml__twine__missing,https://gitlab.com/leopardm/dnd,https://gitlab.com/leopardm/dnd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leopardm__dnd/.gitlab-ci.yml,leopardm__dnd,Versioning,missing,,twine,version specifier is missing,12,.gitlab-ci.yml,leopardm,leopardm/dnd +leopardm__dnd__Versioning__gitlabyaml__requests__missing,https://gitlab.com/leopardm/dnd,https://gitlab.com/leopardm/dnd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/leopardm__dnd/.gitlab-ci.yml,leopardm__dnd,Versioning,missing,,requests,version specifier is missing,20,.gitlab-ci.yml,leopardm,leopardm/dnd +mike-koch__hitman-maps__Manual-Job__Refresh-Stage-DB,https://gitlab.com/mike-koch/hitman-maps,https://gitlab.com/mike-koch/hitman-maps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mike-koch__hitman-maps/.gitlab-ci.yml,mike-koch__hitman-maps,Manual-Job,,Utilities,Refresh Stage DB,Manual job `Refresh Stage DB` at stage `Utilities`,99,.gitlab-ci.yml,mike-koch,mike-koch/hitman-maps +gioxa__build-images__build-rpmbuild-ruby__Job-Allow-Failure__cleanup,https://gitlab.com/gioxa/build-images/build-rpmbuild-ruby,https://gitlab.com/gioxa/build-images/build-rpmbuild-ruby/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__build-rpmbuild-ruby/.gitlab-ci.yml,gioxa__build-images__build-rpmbuild-ruby,Job-Allow-Failure,,cleanup,cleanup,Allows failure of job `cleanup` at stage `cleanup`,89,.gitlab-ci.yml,gioxa,gioxa/build-images/build-rpmbuild-ruby +gioxa__build-images__build-rpmbuild-ruby__Job-Retry__build_base,https://gitlab.com/gioxa/build-images/build-rpmbuild-ruby,https://gitlab.com/gioxa/build-images/build-rpmbuild-ruby/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__build-rpmbuild-ruby/.gitlab-ci.yml,gioxa__build-images__build-rpmbuild-ruby,Job-Retry,always,build,build_base,1,19,.gitlab-ci.yml,gioxa,gioxa/build-images/build-rpmbuild-ruby +spare-time-demos__project-template__Job-Allow-Failure__docs,https://gitlab.com/spare-time-demos/project-template,https://gitlab.com/spare-time-demos/project-template/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__project-template/.gitlab-ci.yml,spare-time-demos__project-template,Job-Allow-Failure,,docs,docs,Allows failure of job `docs` at stage `docs`,31,.gitlab-ci.yml,spare-time-demos,spare-time-demos/project-template +spare-time-demos__project-template__Job-Allow-Failure__test-backend,https://gitlab.com/spare-time-demos/project-template,https://gitlab.com/spare-time-demos/project-template/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/spare-time-demos__project-template/.gitlab-ci.yml,spare-time-demos__project-template,Job-Allow-Failure,,test,test-backend,Allows failure of job `test-backend` at stage `test`,11,.gitlab-ci.yml,spare-time-demos,spare-time-demos/project-template +gioxa__build-images__centos7-ruby-node__Job-Allow-Failure__cleanup,https://gitlab.com/gioxa/build-images/centos7-ruby-node,https://gitlab.com/gioxa/build-images/centos7-ruby-node/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__centos7-ruby-node/.gitlab-ci.yml,gioxa__build-images__centos7-ruby-node,Job-Allow-Failure,,cleanup,cleanup,Allows failure of job `cleanup` at stage `cleanup`,142,.gitlab-ci.yml,gioxa,gioxa/build-images/centos7-ruby-node +gioxa__build-images__centos7-ruby-node__Job-Retry__test,https://gitlab.com/gioxa/build-images/centos7-ruby-node,https://gitlab.com/gioxa/build-images/centos7-ruby-node/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__centos7-ruby-node/.gitlab-ci.yml,gioxa__build-images__centos7-ruby-node,Job-Retry,always,test,test,1,82,.gitlab-ci.yml,gioxa,gioxa/build-images/centos7-ruby-node +gioxa__build-images__centos7-ruby-node__Job-Retry__install_bundle,https://gitlab.com/gioxa/build-images/centos7-ruby-node,https://gitlab.com/gioxa/build-images/centos7-ruby-node/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__centos7-ruby-node/.gitlab-ci.yml,gioxa__build-images__centos7-ruby-node,Job-Retry,always,install,install_bundle,1,46,.gitlab-ci.yml,gioxa,gioxa/build-images/centos7-ruby-node +gioxa__build-images__centos7-ruby-node__Job-Retry__build_base,https://gitlab.com/gioxa/build-images/centos7-ruby-node,https://gitlab.com/gioxa/build-images/centos7-ruby-node/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__build-images__centos7-ruby-node/.gitlab-ci.yml,gioxa__build-images__centos7-ruby-node,Job-Retry,always,build,build_base,1,20,.gitlab-ci.yml,gioxa,gioxa/build-images/centos7-ruby-node +flectra-community__devops__oca2fc__Versioning__requirementstxt__gitpython__missing,https://gitlab.com/flectra-community/devops/oca2fc,https://gitlab.com/flectra-community/devops/oca2fc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-community__devops__oca2fc/requirements.txt,flectra-community__devops__oca2fc,Versioning,missing,,gitpython,version specifier is missing,1,requirements.txt,flectra-community,flectra-community/devops/oca2fc +flectra-community__devops__oca2fc__Versioning__requirementstxt__jinja2__missing,https://gitlab.com/flectra-community/devops/oca2fc,https://gitlab.com/flectra-community/devops/oca2fc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-community__devops__oca2fc/requirements.txt,flectra-community__devops__oca2fc,Versioning,missing,,jinja2,version specifier is missing,2,requirements.txt,flectra-community,flectra-community/devops/oca2fc +flectra-community__devops__oca2fc__Versioning__requirementstxt__networkx__missing,https://gitlab.com/flectra-community/devops/oca2fc,https://gitlab.com/flectra-community/devops/oca2fc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-community__devops__oca2fc/requirements.txt,flectra-community__devops__oca2fc,Versioning,missing,,networkx,version specifier is missing,3,requirements.txt,flectra-community,flectra-community/devops/oca2fc +flectra-community__devops__oca2fc__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/flectra-community/devops/oca2fc,https://gitlab.com/flectra-community/devops/oca2fc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-community__devops__oca2fc/requirements.txt,flectra-community__devops__oca2fc,Versioning,missing,,pyyaml,version specifier is missing,4,requirements.txt,flectra-community,flectra-community/devops/oca2fc +flectra-community__devops__oca2fc__Versioning__requirementstxt__requests__missing,https://gitlab.com/flectra-community/devops/oca2fc,https://gitlab.com/flectra-community/devops/oca2fc/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-community__devops__oca2fc/requirements.txt,flectra-community__devops__oca2fc,Versioning,missing,,requests,version specifier is missing,5,requirements.txt,flectra-community,flectra-community/devops/oca2fc +let-me-help__letmehelp-backend__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/let-me-help/letmehelp-backend,https://gitlab.com/let-me-help/letmehelp-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/let-me-help__letmehelp-backend/.gitlab-ci.yml,let-me-help__letmehelp-backend,Versioning,missing,,awscli,version specifier is missing,5,.gitlab-ci.yml,let-me-help,let-me-help/letmehelp-backend +let-me-help__letmehelp-backend__Versioning__gitlabyaml__boto3__missing,https://gitlab.com/let-me-help/letmehelp-backend,https://gitlab.com/let-me-help/letmehelp-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/let-me-help__letmehelp-backend/.gitlab-ci.yml,let-me-help__letmehelp-backend,Versioning,missing,,boto3,version specifier is missing,7,.gitlab-ci.yml,let-me-help,let-me-help/letmehelp-backend +let-me-help__letmehelp-backend__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/let-me-help/letmehelp-backend,https://gitlab.com/let-me-help/letmehelp-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/let-me-help__letmehelp-backend/.gitlab-ci.yml,let-me-help__letmehelp-backend,Versioning,missing,,awscli,version specifier is missing,5,.gitlab-ci.yml,let-me-help,let-me-help/letmehelp-backend +let-me-help__letmehelp-backend__Versioning__gitlabyaml__boto3__missing,https://gitlab.com/let-me-help/letmehelp-backend,https://gitlab.com/let-me-help/letmehelp-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/let-me-help__letmehelp-backend/.gitlab-ci.yml,let-me-help__letmehelp-backend,Versioning,missing,,boto3,version specifier is missing,7,.gitlab-ci.yml,let-me-help,let-me-help/letmehelp-backend +opentracing-workshop__spring-petclinic-kubernetes__Job-Allow-Failure__deploy-dependencies,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/opentracing-workshop__spring-petclinic-kubernetes/.gitlab-ci.yml,opentracing-workshop__spring-petclinic-kubernetes,Job-Allow-Failure,,deploy,deploy-dependencies,Allows failure of job `deploy-dependencies` at stage `deploy`,47,.gitlab-ci.yml,opentracing-workshop,opentracing-workshop/spring-petclinic-kubernetes +opentracing-workshop__spring-petclinic-kubernetes__Job-Allow-Failure__deploy-services,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/opentracing-workshop__spring-petclinic-kubernetes/.gitlab-ci.yml,opentracing-workshop__spring-petclinic-kubernetes,Job-Allow-Failure,,deploy,deploy-services,Allows failure of job `deploy-services` at stage `deploy`,62,.gitlab-ci.yml,opentracing-workshop,opentracing-workshop/spring-petclinic-kubernetes +opentracing-workshop__spring-petclinic-kubernetes__Job-Allow-Failure__validate-k8s,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes,https://gitlab.com/opentracing-workshop/spring-petclinic-kubernetes/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/opentracing-workshop__spring-petclinic-kubernetes/.gitlab-ci.yml,opentracing-workshop__spring-petclinic-kubernetes,Job-Allow-Failure,,manual,validate-k8s,Allows failure of job `validate-k8s` at stage `manual`,77,.gitlab-ci.yml,opentracing-workshop,opentracing-workshop/spring-petclinic-kubernetes +ID4me__id4me-rp-client-python__Versioning__requirementstxt__dnspython__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,dnspython,version specifier `>=1.15.0` matches future versions that might become incompatible,1,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__future__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,future,version specifier `>=0.16.0` matches future versions that might become incompatible,2,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__jwcrypto__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,jwcrypto,version specifier `>=0.5.0` matches future versions that might become incompatible,3,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__linecache2__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,linecache2,version specifier `>=1.0.0` matches future versions that might become incompatible,4,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,six,version specifier `>=1.11.0` matches future versions that might become incompatible,5,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__typing__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,typing,version specifier `>=3.5.3.0` matches future versions that might become incompatible,6,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__requirementstxt__unittest2__any-upper-version,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/requirements.txt,ID4me__id4me-rp-client-python,Versioning,any-upper-version,,unittest2,version specifier `>=1.1.0` matches future versions that might become incompatible,7,requirements.txt,ID4me,ID4me/id4me-rp-client-python +ID4me__id4me-rp-client-python__Versioning__gitlabyaml__twine__missing,https://gitlab.com/ID4me/id4me-rp-client-python,https://gitlab.com/ID4me/id4me-rp-client-python/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ID4me__id4me-rp-client-python/.gitlab-ci.yml,ID4me__id4me-rp-client-python,Versioning,missing,,twine,version specifier is missing,31,.gitlab-ci.yml,ID4me,ID4me/id4me-rp-client-python +tp-ppw__tp1_ppw_2018_2019_1__Versioning__requirementstxt__requests__missing,https://gitlab.com/tp-ppw/tp1_ppw_2018_2019_1,https://gitlab.com/tp-ppw/tp1_ppw_2018_2019_1/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tp-ppw__tp1_ppw_2018_2019_1/requirements.txt,tp-ppw__tp1_ppw_2018_2019_1,Versioning,missing,,requests,version specifier is missing,17,requirements.txt,tp-ppw,tp-ppw/tp1_ppw_2018_2019_1 +tp-ppw__tp1_ppw_2018_2019_1__Versioning__requirementstxt__google-auth__missing,https://gitlab.com/tp-ppw/tp1_ppw_2018_2019_1,https://gitlab.com/tp-ppw/tp1_ppw_2018_2019_1/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tp-ppw__tp1_ppw_2018_2019_1/requirements.txt,tp-ppw__tp1_ppw_2018_2019_1,Versioning,missing,,google-auth,version specifier is missing,19,requirements.txt,tp-ppw,tp-ppw/tp1_ppw_2018_2019_1 +sofreeus__aghi2gitlab__Manual-Job__qa,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sofreeus__aghi2gitlab/.gitlab-ci.yml,sofreeus__aghi2gitlab,Manual-Job,,test,qa,Manual job `qa` at stage `test`,27,.gitlab-ci.yml,sofreeus,sofreeus/aghi2gitlab +sofreeus__aghi2gitlab__Manual-Job__dev,https://gitlab.com/sofreeus/aghi2gitlab,https://gitlab.com/sofreeus/aghi2gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sofreeus__aghi2gitlab/.gitlab-ci.yml,sofreeus__aghi2gitlab,Manual-Job,,test,dev,Manual job `dev` at stage `test`,20,.gitlab-ci.yml,sofreeus,sofreeus/aghi2gitlab +utf-crawler__utf-crawler__Job-Allow-Failure__rust-nightly,https://gitlab.com/utf-crawler/utf-crawler,https://gitlab.com/utf-crawler/utf-crawler/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/utf-crawler__utf-crawler/.gitlab-ci.yml,utf-crawler__utf-crawler,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,10,.gitlab-ci.yml,utf-crawler,utf-crawler/utf-crawler +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__commons-collections-commons-collections__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,commons-collections/commons-collections,version specifier is missing,18,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__java3d-j3d-core__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,java3d/j3d-core,version specifier is missing,22,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__java3d-j3d-core-utils__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,java3d/j3d-core-utils,version specifier is missing,26,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__org-fudaa-framework-ebli-ebli-3d__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,org.fudaa.framework.ebli/ebli-3d,version specifier is missing,39,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__org-fudaa-framework-fudaa-fudaa-dico-dico-ui__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,org.fudaa.framework.fudaa.fudaa-dico/dico-ui,version specifier is missing,43,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__org-fudaa-framework-ebli-ebli-visuallibrary__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,org.fudaa.framework.ebli/ebli-visuallibrary,version specifier is missing,47,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__--dodicoGroupId--dodico-common__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,${dodicoGroupId}/dodico-common,version specifier is missing,56,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__--ctuluGroupId--ctulu-gis__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,${ctuluGroupId}/ctulu-gis,version specifier is missing,62,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-prepro-ui-__org-fudaa-business-fudaa-ef-ef-core__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/ui/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,org.fudaa.business.fudaa-ef/ef-core,version specifier is missing,68,ui/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-grid-__org-fudaa-framework-fudaa-fudaa-common-courbe__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/grid/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/grid/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,org.fudaa.framework.fudaa/fudaa-common-courbe,version specifier is missing,38,grid/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Versioning__org-fudaa-soft-fudaa-prepro-grid-__commons-collections-commons-collections__missing,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/grid/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/grid/pom.xml,fudaa__fudaa-prepro,Versioning,missing,,commons-collections/commons-collections,version specifier is missing,42,grid/pom.xml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-prepro__Job-Allow-Failure__generate_sonar_report,https://gitlab.com/fudaa/fudaa-prepro,https://gitlab.com/fudaa/fudaa-prepro/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-prepro/.gitlab-ci.yml,fudaa__fudaa-prepro,Job-Allow-Failure,,deploy,generate_sonar_report,Allows failure of job `generate_sonar_report` at stage `deploy`,57,.gitlab-ci.yml,fudaa,fudaa/fudaa-prepro +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-ef-ef-core-__--ctuluGroupId--ctulu-gis__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-ef/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-ef/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,${ctuluGroupId}/ctulu-gis,version specifier is missing,14,fudaa-ef/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-ef-ef-core-__--dodicoGroupId--dodico-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-ef/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-ef/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,${dodicoGroupId}/dodico-common,version specifier is missing,18,fudaa-ef/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-framework-fudaa-fudaa-dico-dico-server-__org-fudaa-framework-dodico-dodico-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-dico/server/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-dico/server/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.dodico/dodico-common,version specifier is missing,14,fudaa-dico/server/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-framework-ebli-ebli-graphe-3D-__org-fudaa-framework-ebli-ebli-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/ebli-graphe-3D/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/ebli-graphe-3D/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.ebli/ebli-common,version specifier is missing,23,ebli-graphe-3D/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-io-__org-fudaa-business-dodico-h2d-h2d-core__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.business.dodico-h2d/h2d-core,version specifier is missing,13,dodico-h2d/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-io-__org-fudaa-business-fudaa-ef-ef-io__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.business.fudaa-ef/ef-io,version specifier is missing,18,dodico-h2d/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-io-__org-fudaa-framework-dodico-dodico-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.dodico/dodico-common,version specifier is missing,27,dodico-h2d/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-sig-fudaa-sig-__org-fudaa-framework-ebli-ebli-1d__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-sig/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-sig/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.ebli/ebli-1d,version specifier is missing,23,fudaa-sig/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-sig-fudaa-sig-__org-fudaa-framework-fudaa-fudaa-common-save__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-sig/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-sig/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa/fudaa-common-save,version specifier is missing,27,fudaa-sig/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-ef-ef-io-__org-fudaa-business-fudaa-ef-ef-core__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-ef/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-ef/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.business.fudaa-ef/ef-core,version specifier is missing,13,fudaa-ef/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-ef-ef-io-__org-fudaa-framework-fudaa-fudaa-dico-dico-ui__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-ef/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-ef/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa.fudaa-dico/dico-ui,version specifier is missing,17,fudaa-ef/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-fudaa-ef-ef-io-__org-fudaa-framework-dodico-dodico-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-ef/io/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-ef/io/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.dodico/dodico-common,version specifier is missing,21,fudaa-ef/io/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-core-__org-fudaa-business-fudaa-ef-ef-core__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.business.fudaa-ef/ef-core,version specifier is missing,13,dodico-h2d/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-core-__org-fudaa-framework-ctulu-ctulu-gis__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.ctulu/ctulu-gis,version specifier is missing,17,dodico-h2d/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-core-__org-fudaa-framework-fudaa-fudaa-dico-dico-ui__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa.fudaa-dico/dico-ui,version specifier is missing,23,dodico-h2d/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-business-dodico-h2d-h2d-core-__org-fudaa-business-fudaa-ef-ef-core__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/dodico-h2d/core/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/dodico-h2d/core/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.business.fudaa-ef/ef-core,version specifier is missing,13,dodico-h2d/core/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-framework-ebli-ebli-1d-__org-fudaa-framework-dodico-dodico-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/ebli-1d/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/ebli-1d/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.dodico/dodico-common,version specifier is missing,30,ebli-1d/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-soft-fudaa-mesh-fudaa-mesh-__org-fudaa-framework-ebli-ebli-1d__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-mesh/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-mesh/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.ebli/ebli-1d,version specifier is missing,23,fudaa-mesh/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-soft-fudaa-mesh-fudaa-mesh-__org-fudaa-framework-fudaa-fudaa-common-courbe__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-mesh/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-mesh/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa/fudaa-common-courbe,version specifier is missing,27,fudaa-mesh/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-soft-fudaa-mesh-fudaa-mesh-__org-fudaa-framework-ebli-ebli-3d__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-mesh/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-mesh/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.ebli/ebli-3d,version specifier is missing,36,fudaa-mesh/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-framework-fudaa-fudaa-dico-dico-ui-__org-fudaa-framework-fudaa-fudaa-dico-dico-server__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-dico/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-dico/ui/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa.fudaa-dico/dico-server,version specifier is missing,12,fudaa-dico/ui/pom.xml,fudaa,fudaa/fudaa-framework +fudaa__fudaa-framework__Versioning__org-fudaa-framework-fudaa-fudaa-dico-dico-ui-__org-fudaa-framework-fudaa-fudaa-common__missing,https://gitlab.com/fudaa/fudaa-framework,https://gitlab.com/fudaa/fudaa-framework/blob/master/fudaa-dico/ui/pom.xml,/home/xxx/fse-submission/linter_configfiles/fudaa__fudaa-framework/fudaa-dico/ui/pom.xml,fudaa__fudaa-framework,Versioning,missing,,org.fudaa.framework.fudaa/fudaa-common,version specifier is missing,16,fudaa-dico/ui/pom.xml,fudaa,fudaa/fudaa-framework +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-core__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-core,version specifier is missing,36,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-config__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-config,version specifier is missing,40,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-web-api-contract__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-web-api-contract,version specifier is missing,44,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-service-proxy__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-service-proxy,version specifier is missing,49,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-codegen__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-codegen,version specifier is missing,53,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-sql-common__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-sql-common,version specifier is missing,72,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +european-data-portal__mqa-metric-service__Versioning__de-fhg-fokus-edp-mqa-metric-service-0-1__io-vertx-vertx-mongo-client__missing,https://gitlab.com/european-data-portal/mqa-metric-service,https://gitlab.com/european-data-portal/mqa-metric-service/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__mqa-metric-service/pom.xml,european-data-portal__mqa-metric-service,Versioning,missing,,io.vertx/vertx-mongo-client,version specifier is missing,76,pom.xml,european-data-portal,european-data-portal/mqa-metric-service +simulant__simulant__Job-Allow-Failure__check-stream-usage,https://gitlab.com/simulant/simulant,https://gitlab.com/simulant/simulant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simulant__simulant/.gitlab-ci.yml,simulant__simulant,Job-Allow-Failure,,check,check:stream-usage,Allows failure of job `check:stream-usage` at stage `check`,26,.gitlab-ci.yml,simulant,simulant/simulant +simulant__simulant__Job-Allow-Failure__test-dreamcast-sh4-gcc,https://gitlab.com/simulant/simulant,https://gitlab.com/simulant/simulant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simulant__simulant/.gitlab-ci.yml,simulant__simulant,Job-Allow-Failure,,test,test:dreamcast-sh4-gcc,Allows failure of job `test:dreamcast-sh4-gcc` at stage `test`,298,.gitlab-ci.yml,simulant,simulant/simulant +simulant__simulant__Job-Allow-Failure__android,https://gitlab.com/simulant/simulant,https://gitlab.com/simulant/simulant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simulant__simulant/.gitlab-ci.yml,simulant__simulant,Job-Allow-Failure,,build,android,Allows failure of job `android` at stage `build`,35,.gitlab-ci.yml,simulant,simulant/simulant +vitvickiy__news_maker__Versioning__requirementstxt__alembic__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,alembic,version specifier is missing,1,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__flask__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,flask,version specifier is missing,2,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__flask_sqlalchemy__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,flask_sqlalchemy,version specifier is missing,3,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__Flask-Migrate__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,Flask-Migrate,version specifier is missing,4,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__Flask-Script__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,Flask-Script,version specifier is missing,5,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__marshmallow__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,marshmallow,version specifier is missing,7,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__psycopg2-binary__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,psycopg2-binary,version specifier is missing,8,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,pyyaml,version specifier is missing,9,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__pyjwt__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,pyjwt,version specifier is missing,10,requirements.txt,vitvickiy,vitvickiy/news_maker +vitvickiy__news_maker__Versioning__requirementstxt__sqlalchemy__missing,https://gitlab.com/vitvickiy/news_maker,https://gitlab.com/vitvickiy/news_maker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vitvickiy__news_maker/requirements.txt,vitvickiy__news_maker,Versioning,missing,,sqlalchemy,version specifier is missing,3,requirements.txt,vitvickiy,vitvickiy/news_maker +alexandre-tranchant__australian-client__Job-Allow-Failure__code_quality,https://gitlab.com/alexandre.tranchant/australian-client,https://gitlab.com/alexandre.tranchant/australian-client/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alexandre.tranchant__australian-client/.gitlab-ci.yml,alexandre.tranchant__australian-client,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,62,.gitlab-ci.yml,alexandre.tranchant,alexandre.tranchant/australian-client +emcrp__src__Manual-Job__build-and-push,https://gitlab.com/emcrp/src,https://gitlab.com/emcrp/src/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/emcrp__src/.gitlab-ci.yml,emcrp__src,Manual-Job,,build-and-push,build-and-push,Manual job `build-and-push` at stage `build-and-push`,7,.gitlab-ci.yml,emcrp,emcrp/src +lappis-unb__projects__SMI__smi-slave__Job-Allow-Failure__code_quality,https://gitlab.com/lappis-unb/projects/SMI/smi-slave,https://gitlab.com/lappis-unb/projects/SMI/smi-slave/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lappis-unb__projects__SMI__smi-slave/.gitlab-ci.yml,lappis-unb__projects__SMI__smi-slave,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,46,.gitlab-ci.yml,lappis-unb,lappis-unb/projects/SMI/smi-slave +mraxel__m-cubed-live__Job-Allow-Failure__container_scanning,https://gitlab.com/mraxel/m-cubed-live,https://gitlab.com/mraxel/m-cubed-live/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mraxel__m-cubed-live/.gitlab-ci.yml,mraxel__m-cubed-live,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,19,.gitlab-ci.yml,mraxel,mraxel/m-cubed-live +classtag__recsys__Job-Allow-Failure__sonar-analyze,https://gitlab.com/classtag/recsys,https://gitlab.com/classtag/recsys/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/classtag__recsys/.gitlab-ci.yml,classtag__recsys,Job-Allow-Failure,,analyze,sonar-analyze,Allows failure of job `sonar-analyze` at stage `analyze`,53,.gitlab-ci.yml,classtag,classtag/recsys +highside__node-amqp__Job-Allow-Failure__rust-nightly,https://gitlab.com/highside/node-amqp,https://gitlab.com/highside/node-amqp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/highside__node-amqp/.gitlab-ci.yml,highside__node-amqp,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,23,.gitlab-ci.yml,highside,highside/node-amqp +highside__node-amqp__Job-Allow-Failure__pages,https://gitlab.com/highside/node-amqp,https://gitlab.com/highside/node-amqp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/highside__node-amqp/.gitlab-ci.yml,highside__node-amqp,Job-Allow-Failure,,build,pages,Allows failure of job `pages` at stage `build`,40,.gitlab-ci.yml,highside,highside/node-amqp +highside__node-amqp__Job-Allow-Failure__fmt-check,https://gitlab.com/highside/node-amqp,https://gitlab.com/highside/node-amqp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/highside__node-amqp/.gitlab-ci.yml,highside__node-amqp,Job-Allow-Failure,,build,fmt-check,Allows failure of job `fmt-check` at stage `build`,31,.gitlab-ci.yml,highside,highside/node-amqp +danobr__pytemplate__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/danobr/pytemplate,https://gitlab.com/danobr/pytemplate/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/danobr__pytemplate/requirements.txt,danobr__pytemplate,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,danobr,danobr/pytemplate +danobr__pytemplate__Versioning__gitlabyaml__anybadge__missing,https://gitlab.com/danobr/pytemplate,https://gitlab.com/danobr/pytemplate/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/danobr__pytemplate/.gitlab-ci.yml,danobr__pytemplate,Versioning,missing,,anybadge,version specifier is missing,39,.gitlab-ci.yml,danobr,danobr/pytemplate +q4d__vote-app__Versioning__requirementstxt__flask__missing,https://gitlab.com/q4d/vote-app,https://gitlab.com/q4d/vote-app/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/q4d__vote-app/requirements.txt,q4d__vote-app,Versioning,missing,,flask,version specifier is missing,1,requirements.txt,q4d,q4d/vote-app +q4d__vote-app__Versioning__requirementstxt__flask-bootstrap__missing,https://gitlab.com/q4d/vote-app,https://gitlab.com/q4d/vote-app/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/q4d__vote-app/requirements.txt,q4d__vote-app,Versioning,missing,,flask-bootstrap,version specifier is missing,2,requirements.txt,q4d,q4d/vote-app +mkdk__cidemon__Job-Retry__testing,https://gitlab.com/mkdk/cidemon,https://gitlab.com/mkdk/cidemon/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mkdk__cidemon/.gitlab-ci.yml,mkdk__cidemon,Job-Retry,always,testing,testing,2,13,.gitlab-ci.yml,mkdk,mkdk/cidemon +Niloc37__traceanalyzer__Job-Allow-Failure__all-builds-gcc,https://gitlab.com/Niloc37/traceanalyzer,https://gitlab.com/Niloc37/traceanalyzer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Niloc37__traceanalyzer/.gitlab-ci.yml,Niloc37__traceanalyzer,Job-Allow-Failure,,test,all builds gcc,Allows failure of job `all builds gcc` at stage `test`,39,.gitlab-ci.yml,Niloc37,Niloc37/traceanalyzer +Niloc37__traceanalyzer__Job-Allow-Failure__all-builds-clang,https://gitlab.com/Niloc37/traceanalyzer,https://gitlab.com/Niloc37/traceanalyzer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Niloc37__traceanalyzer/.gitlab-ci.yml,Niloc37__traceanalyzer,Job-Allow-Failure,,test,all builds clang,Allows failure of job `all builds clang` at stage `test`,46,.gitlab-ci.yml,Niloc37,Niloc37/traceanalyzer +vectoridau__awebus__Versioning__gitlabyaml__twine__missing,https://gitlab.com/vectoridau/awebus,https://gitlab.com/vectoridau/awebus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vectoridau__awebus/.gitlab-ci.yml,vectoridau__awebus,Versioning,missing,,twine,version specifier is missing,46,.gitlab-ci.yml,vectoridau,vectoridau/awebus +vindarel__replic__Job-Allow-Failure__test,https://gitlab.com/vindarel/replic,https://gitlab.com/vindarel/replic/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vindarel__replic/.gitlab-ci.yml,vindarel__replic,Job-Allow-Failure,,test,test,Allows failure of job `test` at stage `test`,12,.gitlab-ci.yml,vindarel,vindarel/replic +clinton-lawrence2__hockey-alert__Versioning__requirementstxt__pytz__missing,https://gitlab.com/clinton.lawrence2/hockey-alert,https://gitlab.com/clinton.lawrence2/hockey-alert/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/clinton.lawrence2__hockey-alert/requirements.txt,clinton.lawrence2__hockey-alert,Versioning,missing,,pytz,version specifier is missing,1,requirements.txt,clinton.lawrence2,clinton.lawrence2/hockey-alert +clinton-lawrence2__hockey-alert__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/clinton.lawrence2/hockey-alert,https://gitlab.com/clinton.lawrence2/hockey-alert/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/clinton.lawrence2__hockey-alert/requirements.txt,clinton.lawrence2__hockey-alert,Versioning,missing,,PyYAML,version specifier is missing,2,requirements.txt,clinton.lawrence2,clinton.lawrence2/hockey-alert +clinton-lawrence2__hockey-alert__Versioning__requirementstxt__requests__missing,https://gitlab.com/clinton.lawrence2/hockey-alert,https://gitlab.com/clinton.lawrence2/hockey-alert/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/clinton.lawrence2__hockey-alert/requirements.txt,clinton.lawrence2__hockey-alert,Versioning,missing,,requests,version specifier is missing,3,requirements.txt,clinton.lawrence2,clinton.lawrence2/hockey-alert +clinton-lawrence2__hockey-alert__Versioning__requirementstxt__flask__missing,https://gitlab.com/clinton.lawrence2/hockey-alert,https://gitlab.com/clinton.lawrence2/hockey-alert/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/clinton.lawrence2__hockey-alert/requirements.txt,clinton.lawrence2__hockey-alert,Versioning,missing,,flask,version specifier is missing,4,requirements.txt,clinton.lawrence2,clinton.lawrence2/hockey-alert +abiproject__abisuite__Versioning__requirementstxt__colorama__missing,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,missing,,colorama,version specifier is missing,1,requirements.txt,abiproject,abiproject/abisuite +abiproject__abisuite__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,missing,,matplotlib,version specifier is missing,2,requirements.txt,abiproject,abiproject/abisuite +abiproject__abisuite__Versioning__requirementstxt__numpy__missing,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,missing,,numpy,version specifier is missing,3,requirements.txt,abiproject,abiproject/abisuite +abiproject__abisuite__Versioning__requirementstxt__scipy__missing,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,missing,,scipy,version specifier is missing,4,requirements.txt,abiproject,abiproject/abisuite +abiproject__abisuite__Versioning__requirementstxt__tabulate__any-upper-version,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,any-upper-version,,tabulate,version specifier `>=0.8.3` matches future versions that might become incompatible,5,requirements.txt,abiproject,abiproject/abisuite +abiproject__abisuite__Versioning__requirementstxt__tqdm__missing,https://gitlab.com/abiproject/abisuite,https://gitlab.com/abiproject/abisuite/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/abiproject__abisuite/requirements.txt,abiproject__abisuite,Versioning,missing,,tqdm,version specifier is missing,6,requirements.txt,abiproject,abiproject/abisuite +remcohaszing__eslint-formatter-gitlab__Job-Allow-Failure__dependency-scanning,https://gitlab.com/remcohaszing/eslint-formatter-gitlab,https://gitlab.com/remcohaszing/eslint-formatter-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/remcohaszing__eslint-formatter-gitlab/.gitlab-ci.yml,remcohaszing__eslint-formatter-gitlab,Job-Allow-Failure,,test,dependency scanning,Allows failure of job `dependency scanning` at stage `test`,10,.gitlab-ci.yml,remcohaszing,remcohaszing/eslint-formatter-gitlab +aurorafossorg__apps__be-happy__Job-Allow-Failure__code_quality,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,101,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +aurorafossorg__apps__be-happy__Job-Allow-Failure__performance,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,137,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +aurorafossorg__apps__be-happy__Job-Allow-Failure__license_management,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,118,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +aurorafossorg__apps__be-happy__Job-Allow-Failure__stop_review,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,268,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +aurorafossorg__apps__be-happy__Job-Allow-Failure__dependency_scanning,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,179,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +aurorafossorg__apps__be-happy__Job-Allow-Failure__container_scanning,https://gitlab.com/aurorafossorg/apps/be-happy,https://gitlab.com/aurorafossorg/apps/be-happy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__apps__be-happy/.gitlab-ci.yml,aurorafossorg__apps__be-happy,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,199,.gitlab-ci.yml,aurorafossorg,aurorafossorg/apps/be-happy +stavros__pysignald__Versioning__gitlabyaml__poetry__missing,https://gitlab.com/stavros/pysignald,https://gitlab.com/stavros/pysignald/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__pysignald/.gitlab-ci.yml,stavros__pysignald,Versioning,missing,,poetry,version specifier is missing,5,.gitlab-ci.yml,stavros,stavros/pysignald +stavros__pysignald__Versioning__gitlabyaml__pre__missing,https://gitlab.com/stavros/pysignald,https://gitlab.com/stavros/pysignald/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__pysignald/.gitlab-ci.yml,stavros__pysignald,Versioning,missing,,pre,version specifier is missing,5,.gitlab-ci.yml,stavros,stavros/pysignald +proot__proot__Job-Allow-Failure__check,https://gitlab.com/proot/proot,https://gitlab.com/proot/proot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/proot__proot/.gitlab-ci.yml,proot__proot,Job-Allow-Failure,,check,check,Allows failure of job `check` at stage `check`,14,.gitlab-ci.yml,proot,proot/proot +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,awscli,version specifier is missing,34,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,awscli,version specifier is missing,34,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,awscli,version specifier is missing,34,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,awscli,version specifier is missing,34,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,awscli,version specifier is missing,34,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +UnicornPowered__AWS-Client-Bootstrap__Versioning__gitlabyaml__chalice__missing,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap,https://gitlab.com/UnicornPowered/AWS-Client-Bootstrap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/UnicornPowered__AWS-Client-Bootstrap/.gitlab-ci.yml,UnicornPowered__AWS-Client-Bootstrap,Versioning,missing,,chalice,version specifier is missing,63,.gitlab-ci.yml,UnicornPowered,UnicornPowered/AWS-Client-Bootstrap +ae-dir__python-aedir__Versioning__requirementstxt__ldap0__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/requirements.txt,ae-dir__python-aedir,Versioning,missing,,ldap0,version specifier is missing,1,requirements.txt,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__requirementstxt__pyasn1__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/requirements.txt,ae-dir__python-aedir,Versioning,missing,,pyasn1,version specifier is missing,2,requirements.txt,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__requirementstxt__pyasn1_modules__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/requirements.txt,ae-dir__python-aedir,Versioning,missing,,pyasn1_modules,version specifier is missing,3,requirements.txt,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__mailutil__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,mailutil,version specifier is missing,25,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__--__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,&&,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__LDAPNOINIT-1__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,LDAPNOINIT=1,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__coverage3__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,coverage3,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__run__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,run,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__setup-py__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,setup.py,version specifier is missing,-1,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__test__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,test,version specifier is missing,1,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__--__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,&&,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__coverage3__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,coverage3,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__report__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,report,version specifier is missing,2,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__mailutil__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,mailutil,version specifier is missing,25,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__mailutil__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,mailutil,version specifier is missing,25,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +ae-dir__python-aedir__Versioning__gitlabyaml__mailutil__missing,https://gitlab.com/ae-dir/python-aedir,https://gitlab.com/ae-dir/python-aedir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ae-dir__python-aedir/.gitlab-ci.yml,ae-dir__python-aedir,Versioning,missing,,mailutil,version specifier is missing,25,.gitlab-ci.yml,ae-dir,ae-dir/python-aedir +cyberfighter-org__environment-readme-md__Job-Allow-Failure__code_quality,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,101,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +cyberfighter-org__environment-readme-md__Job-Allow-Failure__performance,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,137,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +cyberfighter-org__environment-readme-md__Job-Allow-Failure__license_management,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,118,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +cyberfighter-org__environment-readme-md__Job-Allow-Failure__stop_review,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,267,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +cyberfighter-org__environment-readme-md__Job-Allow-Failure__dependency_scanning,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,178,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +cyberfighter-org__environment-readme-md__Job-Allow-Failure__container_scanning,https://gitlab.com/cyberfighter-org/environment-readme.md,https://gitlab.com/cyberfighter-org/environment-readme.md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cyberfighter-org__environment-readme.md/.gitlab-ci.yml,cyberfighter-org__environment-readme.md,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,198,.gitlab-ci.yml,cyberfighter-org,cyberfighter-org/environment-readme.md +coala__community__Versioning__requirementstxt__git-url-parse__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,git-url-parse,version specifier is missing,1,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__django__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,django,version specifier is missing,2,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__django-distill__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,django-distill,version specifier is missing,3,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__django-eventtools__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,django-eventtools,version specifier is missing,4,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__requests__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,requests,version specifier is missing,6,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__python-dateutil__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,python-dateutil,version specifier is missing,7,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__pillow__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,pillow,version specifier is missing,8,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__ruamel-yaml__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,ruamel.yaml,version specifier is missing,9,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__markdown2__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,markdown2,version specifier is missing,10,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__python_dateutil__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,python_dateutil,version specifier is missing,11,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__PyGithub__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,PyGithub,version specifier is missing,12,requirements.txt,coala,coala/community +coala__community__Versioning__requirementstxt__xmltodict__missing,https://gitlab.com/coala/community,https://gitlab.com/coala/community/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__community/requirements.txt,coala__community,Versioning,missing,,xmltodict,version specifier is missing,13,requirements.txt,coala,coala/community +lavachat__magma__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/lavachat/magma,https://gitlab.com/lavachat/magma/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lavachat__magma/.gitlab-ci.yml,lavachat__magma,Versioning,missing,,wheel,version specifier is missing,13,.gitlab-ci.yml,lavachat,lavachat/magma +magda-data__magda__Job-Allow-Failure__inttest-registryAuth,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Allow-Failure,,preview,inttest:registryAuth,Allows failure of job `inttest:registryAuth` at stage `preview`,506,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-typescript-apis,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:typescript-apis,1,282,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__-No-Data--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,(No Data) Run As Preview,1,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__Stop-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,Stop Preview,1,630,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-ui,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,dockerize,dockerize:ui,2,431,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__Release-Tags-To-Docker-Hub,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,release,Release Tags To Docker Hub,1,696,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__inttest-registryAuth,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,inttest:registryAuth,1,506,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-scala,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,dockerize,dockerize:scala,2,415,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-typescript-apis,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,dockerize,dockerize:typescript-apis,2,463,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__-UI--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,(UI) Run As Preview,1,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-registry,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:registry,1,236,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-dockerExtensions,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,dockerize:dockerExtensions,2,492,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-opa-policies,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:opa-policies,1,374,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-map,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,dockerize,dockerize:map,2,447,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__Publish-Helm-Chart,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,release,Publish Helm Chart,1,736,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-map,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:map,1,263,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__builders-and-yarn,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,builders,builders-and-yarn,1,26,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__dockerize-migrators,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,dockerize:migrators,2,480,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__-Full--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,(Full) Run As Preview,1,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__-No-Data--Run-As-Multi-tenant-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,preview,(No Data) Run As Multi-tenant Preview,1,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-search-no-index-cache,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:search-no-index-cache,2,148,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-search-with-index-cache,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:search-with-index-cache,2,87,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__Deploy-Master-To-Dev,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,deploy-dev,Deploy Master To Dev,1,676,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-storage-api,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:storage-api,1,334,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Job-Retry__buildtest-ui,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Job-Retry,always,buildtest,buildtest:ui,1,215,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Manual-Job__-No-Data--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Manual-Job,,preview,(No Data) Run As Preview,Manual job `(No Data) Run As Preview` at stage `preview`,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Manual-Job__-Full--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Manual-Job,,preview,(Full) Run As Preview,Manual job `(Full) Run As Preview` at stage `preview`,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Manual-Job__-No-Data--Run-As-Multi-tenant-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Manual-Job,,preview,(No Data) Run As Multi-tenant Preview,Manual job `(No Data) Run As Multi-tenant Preview` at stage `preview`,558,.gitlab-ci.yml,magda-data,magda-data/magda +magda-data__magda__Manual-Job__-UI--Run-As-Preview,https://gitlab.com/magda-data/magda,https://gitlab.com/magda-data/magda/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/magda-data__magda/.gitlab-ci.yml,magda-data__magda,Manual-Job,,preview,(UI) Run As Preview,Manual job `(UI) Run As Preview` at stage `preview`,558,.gitlab-ci.yml,magda-data,magda-data/magda +baserock__ybd__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,PyYAML,version specifier is missing,1,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__requests__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,requests,version specifier is missing,2,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__sandboxlib__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,sandboxlib,version specifier is missing,3,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__jsonschema__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,jsonschema,version specifier is missing,5,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__bottle__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,bottle,version specifier is missing,6,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__cherrypy__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,cherrypy,version specifier is missing,7,requirements.txt,baserock,baserock/ybd +baserock__ybd__Versioning__requirementstxt__fs__missing,https://gitlab.com/baserock/ybd,https://gitlab.com/baserock/ybd/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/baserock__ybd/requirements.txt,baserock__ybd,Versioning,missing,,fs,version specifier is missing,8,requirements.txt,baserock,baserock/ybd +kimlab__kmtools__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kimlab/kmtools,https://gitlab.com/kimlab/kmtools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmtools/.gitlab-ci.yml,kimlab__kmtools,Versioning,missing,,sphinx,version specifier is missing,228,.gitlab-ci.yml,kimlab,kimlab/kmtools +kimlab__kmtools__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kimlab/kmtools,https://gitlab.com/kimlab/kmtools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmtools/.gitlab-ci.yml,kimlab__kmtools,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,228,.gitlab-ci.yml,kimlab,kimlab/kmtools +kimlab__kmtools__Versioning__gitlabyaml__recommonmark__missing,https://gitlab.com/kimlab/kmtools,https://gitlab.com/kimlab/kmtools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmtools/.gitlab-ci.yml,kimlab__kmtools,Versioning,missing,,recommonmark,version specifier is missing,228,.gitlab-ci.yml,kimlab,kimlab/kmtools +kimlab__kmtools__Versioning__gitlabyaml__nbsphinx__missing,https://gitlab.com/kimlab/kmtools,https://gitlab.com/kimlab/kmtools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kimlab__kmtools/.gitlab-ci.yml,kimlab__kmtools,Versioning,missing,,nbsphinx,version specifier is missing,228,.gitlab-ci.yml,kimlab,kimlab/kmtools +WzukW__oclaunch__Job-Allow-Failure__ocaml_403_flambda,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,other_version,ocaml_403_flambda,Allows failure of job `ocaml_403_flambda` at stage `other_version`,46,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__ubuntu,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,real,ubuntu,Allows failure of job `ubuntu` at stage `real`,55,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__fedora,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,real,fedora,Allows failure of job `fedora` at stage `real`,80,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__ocaml_404_flambda,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,other_version,ocaml_404_flambda,Allows failure of job `ocaml_404_flambda` at stage `other_version`,19,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__debian,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,real,debian,Allows failure of job `debian` at stage `real`,64,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__opensuse,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,real,opensuse,Allows failure of job `opensuse` at stage `real`,88,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__ocaml_402,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,other_version,ocaml_402,Allows failure of job `ocaml_402` at stage `other_version`,28,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__ocaml_404,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,other_version,ocaml_404,Allows failure of job `ocaml_404` at stage `other_version`,10,.gitlab-ci.yml,WzukW,WzukW/oclaunch +WzukW__oclaunch__Job-Allow-Failure__centos,https://gitlab.com/WzukW/oclaunch,https://gitlab.com/WzukW/oclaunch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/WzukW__oclaunch/.gitlab-ci.yml,WzukW__oclaunch,Job-Allow-Failure,,real,centos,Allows failure of job `centos` at stage `real`,72,.gitlab-ci.yml,WzukW,WzukW/oclaunch +Screwtapello__bdflib__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/Screwtapello/bdflib,https://gitlab.com/Screwtapello/bdflib/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Screwtapello__bdflib/.gitlab-ci.yml,Screwtapello__bdflib,Versioning,missing,,wheel,version specifier is missing,6,.gitlab-ci.yml,Screwtapello,Screwtapello/bdflib +iggdrasil__ishtar__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/iggdrasil/ishtar,https://gitlab.com/iggdrasil/ishtar/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/iggdrasil__ishtar/requirements.txt,iggdrasil__ishtar,Versioning,any-upper-version,,six,version specifier `>=1.9` matches future versions that might become incompatible,1,requirements.txt,iggdrasil,iggdrasil/ishtar +iggdrasil__ishtar__Versioning__requirementstxt__unidecode__missing,https://gitlab.com/iggdrasil/ishtar,https://gitlab.com/iggdrasil/ishtar/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/iggdrasil__ishtar/requirements.txt,iggdrasil__ishtar,Versioning,missing,,unidecode,version specifier is missing,32,requirements.txt,iggdrasil,iggdrasil/ishtar +kaliko__python-musicpd__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/kaliko/python-musicpd,https://gitlab.com/kaliko/python-musicpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kaliko__python-musicpd/.gitlab-ci.yml,kaliko__python-musicpd,Versioning,missing,,sphinx,version specifier is missing,51,.gitlab-ci.yml,kaliko,kaliko/python-musicpd +kaliko__python-musicpd__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/kaliko/python-musicpd,https://gitlab.com/kaliko/python-musicpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kaliko__python-musicpd/.gitlab-ci.yml,kaliko__python-musicpd,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,51,.gitlab-ci.yml,kaliko,kaliko/python-musicpd +kaliko__python-musicpd__Versioning__gitlabyaml__docutils__missing,https://gitlab.com/kaliko/python-musicpd,https://gitlab.com/kaliko/python-musicpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kaliko__python-musicpd/.gitlab-ci.yml,kaliko__python-musicpd,Versioning,missing,,docutils,version specifier is missing,13,.gitlab-ci.yml,kaliko,kaliko/python-musicpd +kwant__kwant__Versioning__gitlabyaml__matplotlib__missing,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Versioning,missing,,matplotlib,version specifier is missing,40,.gitlab-ci.yml,kwant,kwant/kwant +kwant__kwant__Versioning__gitlabyaml__sympy__missing,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Versioning,missing,,sympy,version specifier is missing,50,.gitlab-ci.yml,kwant,kwant/kwant +kwant__kwant__Versioning__gitlabyaml__matplotlib__missing,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Versioning,missing,,matplotlib,version specifier is missing,40,.gitlab-ci.yml,kwant,kwant/kwant +kwant__kwant__Job-Allow-Failure__check-whitespace-style,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Job-Allow-Failure,,build,check whitespace style,Allows failure of job `check whitespace style` at stage `build`,24,.gitlab-ci.yml,kwant,kwant/kwant +kwant__kwant__Job-Allow-Failure__check-for-dependencies-installed,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Job-Allow-Failure,,test,check for dependencies installed,Allows failure of job `check for dependencies installed` at stage `test`,30,.gitlab-ci.yml,kwant,kwant/kwant +kwant__kwant__Job-Allow-Failure__check-for-broken-links-in-doc,https://gitlab.com/kwant/kwant,https://gitlab.com/kwant/kwant/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kwant__kwant/.gitlab-ci.yml,kwant__kwant,Job-Allow-Failure,,test,check for broken links in doc,Allows failure of job `check for broken links in doc` at stage `test`,69,.gitlab-ci.yml,kwant,kwant/kwant +JFT__BT_By_KT__Job-Allow-Failure__clang-coverage,https://gitlab.com/JFT/BT_By_KT,https://gitlab.com/JFT/BT_By_KT/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JFT__BT_By_KT/.gitlab-ci.yml,JFT__BT_By_KT,Job-Allow-Failure,,coverage,clang:coverage,Allows failure of job `clang:coverage` at stage `coverage`,96,.gitlab-ci.yml,JFT,JFT/BT_By_KT +NTPsec__www__Job-Allow-Failure__build_image,https://gitlab.com/NTPsec/www,https://gitlab.com/NTPsec/www/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__www/.gitlab-ci.yml,NTPsec__www,Job-Allow-Failure,,build,build_image,Allows failure of job `build_image` at stage `build`,13,.gitlab-ci.yml,NTPsec,NTPsec/www +trakt__script-trakt__Versioning__gitlabyaml__python__missing,https://gitlab.com/trakt/script.trakt,https://gitlab.com/trakt/script.trakt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/trakt__script.trakt/.gitlab-ci.yml,trakt__script.trakt,Versioning,missing,,python,version specifier is missing,4,.gitlab-ci.yml,trakt,trakt/script.trakt +trakt__script-trakt__Versioning__gitlabyaml__mock__missing,https://gitlab.com/trakt/script.trakt,https://gitlab.com/trakt/script.trakt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/trakt__script.trakt/.gitlab-ci.yml,trakt__script.trakt,Versioning,missing,,mock,version specifier is missing,5,.gitlab-ci.yml,trakt,trakt/script.trakt +trakt__script-trakt__Versioning__gitlabyaml__python__missing,https://gitlab.com/trakt/script.trakt,https://gitlab.com/trakt/script.trakt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/trakt__script.trakt/.gitlab-ci.yml,trakt__script.trakt,Versioning,missing,,python,version specifier is missing,4,.gitlab-ci.yml,trakt,trakt/script.trakt +gitmate__bugspots3__Versioning__gitlabyaml__twine__missing,https://gitlab.com/gitmate/bugspots3,https://gitlab.com/gitmate/bugspots3/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitmate__bugspots3/.gitlab-ci.yml,gitmate__bugspots3,Versioning,missing,,twine,version specifier is missing,8,.gitlab-ci.yml,gitmate,gitmate/bugspots3 +jonata__kihvim__Versioning__gitlabyaml__PySide2__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,PySide2,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__mutagen__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,mutagen,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__python__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,python,version specifier is missing,6,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__Pillow__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,Pillow,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__pyinstaller__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,pyinstaller,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__bs4__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,bs4,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__mutagen__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,mutagen,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__PySide2__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,PySide2,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__Pillow__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,Pillow,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__python__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,python,version specifier is missing,6,.gitlab-ci.yml,jonata,jonata/kihvim +jonata__kihvim__Versioning__gitlabyaml__bs4__missing,https://gitlab.com/jonata/kihvim,https://gitlab.com/jonata/kihvim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jonata__kihvim/.gitlab-ci.yml,jonata__kihvim,Versioning,missing,,bs4,version specifier is missing,7,.gitlab-ci.yml,jonata,jonata/kihvim +pushrocks__smartlog-destination-local__Job-Allow-Failure__pages,https://gitlab.com/pushrocks/smartlog-destination-local,https://gitlab.com/pushrocks/smartlog-destination-local/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__smartlog-destination-local/.gitlab-ci.yml,pushrocks__smartlog-destination-local,Job-Allow-Failure,,metadata,pages,Allows failure of job `pages` at stage `metadata`,100,.gitlab-ci.yml,pushrocks,pushrocks/smartlog-destination-local +pushrocks__smartlog-destination-local__Job-Allow-Failure__codequality,https://gitlab.com/pushrocks/smartlog-destination-local,https://gitlab.com/pushrocks/smartlog-destination-local/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__smartlog-destination-local/.gitlab-ci.yml,pushrocks__smartlog-destination-local,Job-Allow-Failure,,metadata,codequality,Allows failure of job `codequality` at stage `metadata`,79,.gitlab-ci.yml,pushrocks,pushrocks/smartlog-destination-local +artemklevtsov__benchr__Job-Allow-Failure__code-lint,https://gitlab.com/artemklevtsov/benchr,https://gitlab.com/artemklevtsov/benchr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/artemklevtsov__benchr/.gitlab-ci.yml,artemklevtsov__benchr,Job-Allow-Failure,,check,code:lint,Allows failure of job `code:lint` at stage `check`,68,.gitlab-ci.yml,artemklevtsov,artemklevtsov/benchr +artemklevtsov__benchr__Job-Allow-Failure__code-coverage,https://gitlab.com/artemklevtsov/benchr,https://gitlab.com/artemklevtsov/benchr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/artemklevtsov__benchr/.gitlab-ci.yml,artemklevtsov__benchr,Job-Allow-Failure,,check,code:coverage,Allows failure of job `code:coverage` at stage `check`,84,.gitlab-ci.yml,artemklevtsov,artemklevtsov/benchr +coala__cib__Versioning__requirementstxt__git-https---github-com-coala-coala-egg-coala__missing,https://gitlab.com/coala/cib,https://gitlab.com/coala/cib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/coala__cib/requirements.txt,coala__cib,Versioning,missing,,git+https://github.com/coala/coala#egg=coala,version specifier is missing,4,requirements.txt,coala,coala/cib +coala__cib__Versioning__gitlabyaml__moban__missing,https://gitlab.com/coala/cib,https://gitlab.com/coala/cib/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coala__cib/.gitlab-ci.yml,coala__cib,Versioning,missing,,moban,version specifier is missing,13,.gitlab-ci.yml,coala,coala/cib +decko__epracas-backend__Versioning__requirementstxt__pendulum__any-upper-version,https://gitlab.com/decko/epracas-backend,https://gitlab.com/decko/epracas-backend/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/decko__epracas-backend/requirements.txt,decko__epracas-backend,Versioning,any-upper-version,,pendulum,version specifier `>=0.5.4` matches future versions that might become incompatible,18,requirements.txt,decko,decko/epracas-backend +artemklevtsov__r-alpine__Job-Allow-Failure__r-pandoc,https://gitlab.com/artemklevtsov/r-alpine,https://gitlab.com/artemklevtsov/r-alpine/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/artemklevtsov__r-alpine/.gitlab-ci.yml,artemklevtsov__r-alpine,Job-Allow-Failure,,build-others,r-pandoc,Allows failure of job `r-pandoc` at stage `build-others`,48,.gitlab-ci.yml,artemklevtsov,artemklevtsov/r-alpine +artemklevtsov__r-alpine__Job-Allow-Failure__shiny-server,https://gitlab.com/artemklevtsov/r-alpine,https://gitlab.com/artemklevtsov/r-alpine/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/artemklevtsov__r-alpine/.gitlab-ci.yml,artemklevtsov__r-alpine,Job-Allow-Failure,,build-others,shiny-server,Allows failure of job `shiny-server` at stage `build-others`,83,.gitlab-ci.yml,artemklevtsov,artemklevtsov/r-alpine +adin__journal-list__Versioning__requirementstxt__ruamel-yaml__any-upper-version,https://gitlab.com/adin/journal-list,https://gitlab.com/adin/journal-list/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/adin__journal-list/requirements.txt,adin__journal-list,Versioning,any-upper-version,,ruamel.yaml,version specifier `>=0.15.89` matches future versions that might become incompatible,1,requirements.txt,adin,adin/journal-list +atomfrede__jhipster-ci-example-maven__Job-Allow-Failure__gatling-test,https://gitlab.com/atomfrede/jhipster-ci-example-maven,https://gitlab.com/atomfrede/jhipster-ci-example-maven/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/atomfrede__jhipster-ci-example-maven/.gitlab-ci.yml,atomfrede__jhipster-ci-example-maven,Job-Allow-Failure,,test,gatling-test,Allows failure of job `gatling-test` at stage `test`,54,.gitlab-ci.yml,atomfrede,atomfrede/jhipster-ci-example-maven +hadrien__aws_lambda_logging__Versioning__gitlabyaml__bumpversion__missing,https://gitlab.com/hadrien/aws_lambda_logging,https://gitlab.com/hadrien/aws_lambda_logging/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hadrien__aws_lambda_logging/.gitlab-ci.yml,hadrien__aws_lambda_logging,Versioning,missing,,bumpversion,version specifier is missing,24,.gitlab-ci.yml,hadrien,hadrien/aws_lambda_logging +hadrien__aws_lambda_logging__Versioning__gitlabyaml__twine__missing,https://gitlab.com/hadrien/aws_lambda_logging,https://gitlab.com/hadrien/aws_lambda_logging/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/hadrien__aws_lambda_logging/.gitlab-ci.yml,hadrien__aws_lambda_logging,Versioning,missing,,twine,version specifier is missing,24,.gitlab-ci.yml,hadrien,hadrien/aws_lambda_logging +crondaemon__wireshark__Job-Retry__clang-6,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,clang-6,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__clang-7,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,clang-7,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__gcc-8-nopcap,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,gcc-8-nopcap,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__gcc-5,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,gcc-5,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__clang-5,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,clang-5,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__clang-7-nopcap,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,clang-7-nopcap,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__gcc-7,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,gcc-7,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__gcc-6,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,gcc-6,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +crondaemon__wireshark__Job-Retry__gcc-8,https://gitlab.com/crondaemon/wireshark,https://gitlab.com/crondaemon/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crondaemon__wireshark/.gitlab-ci.yml,crondaemon__wireshark,Job-Retry,always,build,gcc-8,1,11,.gitlab-ci.yml,crondaemon,crondaemon/wireshark +simp__simp-core__Job-Retry__default_el7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,default_el7-puppet5,1,63,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__rpm_el7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,rpm_el7-puppet5,1,180,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__forge_install_el6-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,forge_install_el6-puppet5,1,196,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__ipa_el7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,ipa_el7-puppet5,1,79,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__default_oel6-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,default_oel6-puppet5,1,112,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__ipa_oel7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,ipa_oel7-puppet5,1,146,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__default_el6-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,default_el6-puppet5,1,48,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__forge_install_el7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,forge_install_el7-puppet5,1,212,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__rpm_el6-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,rpm_el6-puppet5,1,164,.gitlab-ci.yml,simp,simp/simp-core +simp__simp-core__Job-Retry__default_oel7-puppet5,https://gitlab.com/simp/simp-core,https://gitlab.com/simp/simp-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/simp__simp-core/.gitlab-ci.yml,simp__simp-core,Job-Retry,always,integration,default_oel7-puppet5,1,129,.gitlab-ci.yml,simp,simp/simp-core +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__prospector-with_everything-__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,prospector[with_everything],version specifier is missing,60,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__green__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,green,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__defusedxml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,defusedxml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pyaml__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pyaml,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,cryptography,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__pykeepass__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,pykeepass,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Versioning__gitlabyaml__secretstorage__missing,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Versioning,missing,,secretstorage,version specifier is missing,23,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +roddhjav__pass-import__Job-Allow-Failure__prospector,https://gitlab.com/roddhjav/pass-import,https://gitlab.com/roddhjav/pass-import/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/roddhjav__pass-import/.gitlab-ci.yml,roddhjav__pass-import,Job-Allow-Failure,,lint,prospector,Allows failure of job `prospector` at stage `lint`,55,.gitlab-ci.yml,roddhjav,roddhjav/pass-import +doctorj__interview-prep__Versioning__requirementstxt__typing__any-upper-version,https://gitlab.com/doctorj/interview-prep,https://gitlab.com/doctorj/interview-prep/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__interview-prep/requirements.txt,doctorj__interview-prep,Versioning,any-upper-version,,typing,version specifier `>=3.6.1` matches future versions that might become incompatible,1,requirements.txt,doctorj,doctorj/interview-prep +perobertson__scripts__Job-Allow-Failure__fedora_32,https://gitlab.com/perobertson/scripts,https://gitlab.com/perobertson/scripts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/perobertson__scripts/.gitlab-ci.yml,perobertson__scripts,Job-Allow-Failure,,test,fedora_32,Allows failure of job `fedora_32` at stage `test`,87,.gitlab-ci.yml,perobertson,perobertson/scripts +perobertson__scripts__Job-Allow-Failure__fedora_rawhide,https://gitlab.com/perobertson/scripts,https://gitlab.com/perobertson/scripts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/perobertson__scripts/.gitlab-ci.yml,perobertson__scripts,Job-Allow-Failure,,test,fedora_rawhide,Allows failure of job `fedora_rawhide` at stage `test`,94,.gitlab-ci.yml,perobertson,perobertson/scripts +wallzero__ui-router-react-digest__Job-Retry__build-demo-redux,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,test,build:demo-redux,2,57,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__build-demo-simple,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,test,build:demo-simple,2,57,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__release,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,deploy,release,2,93,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__build-connect,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,build,build:connect,2,36,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__build-digest,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,build,build:digest,2,36,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__lint,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,test,lint,2,45,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__unit,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,test,unit,2,45,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__pages,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,deploy,pages,2,93,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +wallzero__ui-router-react-digest__Job-Retry__install,https://gitlab.com/wallzero/ui-router-react-digest,https://gitlab.com/wallzero/ui-router-react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__ui-router-react-digest/.gitlab-ci.yml,wallzero__ui-router-react-digest,Job-Retry,always,install,install,2,31,.gitlab-ci.yml,wallzero,wallzero/ui-router-react-digest +pantomath-io__panto__Job-Retry__build_web,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,build,build_web,1,319,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__ineffectual_assignment,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,ineffectual_assignment,1,257,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__landing_production,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,landing_production,1,514,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__code_coverage_report,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,test,code_coverage_report,1,175,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__race_detector,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,test,race_detector,1,76,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__docker_tag_edge,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,docker_tag_edge,1,364,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__code_coverage,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,test,code_coverage,1,142,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__build_server,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,build,build_server,1,293,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__format_code,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,format_code,1,239,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__suspicious_construct,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,suspicious_construct,1,248,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__docker_tag_stable,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,docker_tag_stable,1,387,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__slice_preallocation,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,slice_preallocation,1,266,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__apt_repository,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,apt_repository,1,464,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__lint_web,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,lint_web,1,219,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__lint_code,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,lint_code,1,210,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__packages_index,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,packages_index,1,480,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__package_debian,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,release,package_debian,1,331,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__binaries_edge,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,binaries_edge,1,418,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__unit_test,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,test,unit_test,1,43,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__copyright_header,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,copyright_header,1,230,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__build_agent,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,build,build_agent,1,306,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__memory_sanitizer,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,test,memory_sanitizer,1,109,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__binaries_stable,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,binaries_stable,1,440,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__landing_staging,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,distribute,landing_staging,1,497,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__unused_func_parameter,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,unused_func_parameter,1,284,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__unnecessary_conversion,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,quality,unnecessary_conversion,1,275,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +pantomath-io__panto__Job-Retry__docker_image,https://gitlab.com/pantomath-io/panto,https://gitlab.com/pantomath-io/panto/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pantomath-io__panto/.gitlab-ci.yml,pantomath-io__panto,Job-Retry,always,release,docker_image,1,344,.gitlab-ci.yml,pantomath-io,pantomath-io/panto +ismail-s__JTime__Job-Allow-Failure__android-unittest,https://gitlab.com/ismail-s/JTime,https://gitlab.com/ismail-s/JTime/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ismail-s__JTime/.gitlab-ci.yml,ismail-s__JTime,Job-Allow-Failure,,test,android-unittest,Allows failure of job `android-unittest` at stage `test`,39,.gitlab-ci.yml,ismail-s,ismail-s/JTime +gbraad__fedora-wsl__Manual-Job__pages,https://gitlab.com/gbraad/fedora-wsl,https://gitlab.com/gbraad/fedora-wsl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gbraad__fedora-wsl/.gitlab-ci.yml,gbraad__fedora-wsl,Manual-Job,,test,pages,Manual job `pages` at stage `test`,1,.gitlab-ci.yml,gbraad,gbraad/fedora-wsl +wallzero__react-digest__Job-Retry__unit,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,test,unit,2,29,.gitlab-ci.yml,wallzero,wallzero/react-digest +wallzero__react-digest__Job-Retry__pages,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,deploy,pages,2,42,.gitlab-ci.yml,wallzero,wallzero/react-digest +wallzero__react-digest__Job-Retry__chrome,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,test,chrome,2,34,.gitlab-ci.yml,wallzero,wallzero/react-digest +wallzero__react-digest__Job-Retry__install,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,install,install,2,29,.gitlab-ci.yml,wallzero,wallzero/react-digest +wallzero__react-digest__Job-Retry__build,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,build,build,2,29,.gitlab-ci.yml,wallzero,wallzero/react-digest +wallzero__react-digest__Job-Retry__publish,https://gitlab.com/wallzero/react-digest,https://gitlab.com/wallzero/react-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__react-digest/.gitlab-ci.yml,wallzero__react-digest,Job-Retry,always,deploy,publish,2,42,.gitlab-ci.yml,wallzero,wallzero/react-digest +susurrus__fat-rs__Job-Allow-Failure__x86_64-unknown-linux-gnux32,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,build,x86_64-unknown-linux-gnux32,Allows failure of job `x86_64-unknown-linux-gnux32` at stage `build`,169,.gitlab-ci.yml,susurrus,susurrus/fat-rs +susurrus__fat-rs__Job-Allow-Failure__rustfmt,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,lint,rustfmt,Allows failure of job `rustfmt` at stage `lint`,285,.gitlab-ci.yml,susurrus,susurrus/fat-rs +susurrus__fat-rs__Job-Allow-Failure__aarch64-unknown-linux-musl,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,build,aarch64-unknown-linux-musl,Allows failure of job `aarch64-unknown-linux-musl` at stage `build`,242,.gitlab-ci.yml,susurrus,susurrus/fat-rs +susurrus__fat-rs__Job-Allow-Failure__x86_64-linux-android,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,build,x86_64-linux-android,Allows failure of job `x86_64-linux-android` at stage `build`,201,.gitlab-ci.yml,susurrus,susurrus/fat-rs +susurrus__fat-rs__Job-Allow-Failure__aarch64-linux-android,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,build,aarch64-linux-android,Allows failure of job `aarch64-linux-android` at stage `build`,176,.gitlab-ci.yml,susurrus,susurrus/fat-rs +susurrus__fat-rs__Job-Allow-Failure__sparc64-unknown-linux-gnu,https://gitlab.com/susurrus/fat-rs,https://gitlab.com/susurrus/fat-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__fat-rs/.gitlab-ci.yml,susurrus__fat-rs,Job-Allow-Failure,,build,sparc64-unknown-linux-gnu,Allows failure of job `sparc64-unknown-linux-gnu` at stage `build`,156,.gitlab-ci.yml,susurrus,susurrus/fat-rs +movie_thumbnailer__mtn__Manual-Job__u18-04,https://gitlab.com/movie_thumbnailer/mtn,https://gitlab.com/movie_thumbnailer/mtn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/movie_thumbnailer__mtn/.gitlab-ci.yml,movie_thumbnailer__mtn,Manual-Job,,build,u18.04,Manual job `u18.04` at stage `build`,174,.gitlab-ci.yml,movie_thumbnailer,movie_thumbnailer/mtn +movie_thumbnailer__mtn__Manual-Job__debian,https://gitlab.com/movie_thumbnailer/mtn,https://gitlab.com/movie_thumbnailer/mtn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/movie_thumbnailer__mtn/.gitlab-ci.yml,movie_thumbnailer__mtn,Manual-Job,,build,debian,Manual job `debian` at stage `build`,85,.gitlab-ci.yml,movie_thumbnailer,movie_thumbnailer/mtn +movie_thumbnailer__mtn__Manual-Job__centos7,https://gitlab.com/movie_thumbnailer/mtn,https://gitlab.com/movie_thumbnailer/mtn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/movie_thumbnailer__mtn/.gitlab-ci.yml,movie_thumbnailer__mtn,Manual-Job,,build,centos7,Manual job `centos7` at stage `build`,169,.gitlab-ci.yml,movie_thumbnailer,movie_thumbnailer/mtn +EAVISE__brambox__Versioning__gitlabyaml__IPython__missing,https://gitlab.com/EAVISE/brambox,https://gitlab.com/EAVISE/brambox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__brambox/.gitlab-ci.yml,EAVISE__brambox,Versioning,missing,,IPython,version specifier is missing,66,.gitlab-ci.yml,EAVISE,EAVISE/brambox +nobodyinperson__python3-meteorology__Versioning__gitlabyaml__coveralls__missing,https://gitlab.com/nobodyinperson/python3-meteorology,https://gitlab.com/nobodyinperson/python3-meteorology/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-meteorology/.gitlab-ci.yml,nobodyinperson__python3-meteorology,Versioning,missing,,coveralls,version specifier is missing,32,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-meteorology +nobodyinperson__python3-meteorology__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/nobodyinperson/python3-meteorology,https://gitlab.com/nobodyinperson/python3-meteorology/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-meteorology/.gitlab-ci.yml,nobodyinperson__python3-meteorology,Versioning,missing,,sphinx,version specifier is missing,9,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-meteorology +nobodyinperson__python3-meteorology__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/nobodyinperson/python3-meteorology,https://gitlab.com/nobodyinperson/python3-meteorology/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nobodyinperson__python3-meteorology/.gitlab-ci.yml,nobodyinperson__python3-meteorology,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,57,.gitlab-ci.yml,nobodyinperson,nobodyinperson/python3-meteorology +mbarbry__python-scalapack__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/mbarbry/python-scalapack,https://gitlab.com/mbarbry/python-scalapack/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbarbry__python-scalapack/.gitlab-ci.yml,mbarbry__python-scalapack,Versioning,missing,,mpi4py,version specifier is missing,10,.gitlab-ci.yml,mbarbry,mbarbry/python-scalapack +mbarbry__python-scalapack__Versioning__gitlabyaml__mpi4py__missing,https://gitlab.com/mbarbry/python-scalapack,https://gitlab.com/mbarbry/python-scalapack/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbarbry__python-scalapack/.gitlab-ci.yml,mbarbry__python-scalapack,Versioning,missing,,mpi4py,version specifier is missing,10,.gitlab-ci.yml,mbarbry,mbarbry/python-scalapack +dspechnikov__django-slugger__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/dspechnikov/django-slugger,https://gitlab.com/dspechnikov/django-slugger/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dspechnikov__django-slugger/.gitlab-ci.yml,dspechnikov__django-slugger,Versioning,missing,,wheel,version specifier is missing,76,.gitlab-ci.yml,dspechnikov,dspechnikov/django-slugger +dspechnikov__django-slugger__Versioning__gitlabyaml__twine__missing,https://gitlab.com/dspechnikov/django-slugger,https://gitlab.com/dspechnikov/django-slugger/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dspechnikov__django-slugger/.gitlab-ci.yml,dspechnikov__django-slugger,Versioning,missing,,twine,version specifier is missing,76,.gitlab-ci.yml,dspechnikov,dspechnikov/django-slugger +dspechnikov__django-slugger__Job-Allow-Failure__py36-djangomaster,https://gitlab.com/dspechnikov/django-slugger,https://gitlab.com/dspechnikov/django-slugger/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dspechnikov__django-slugger/.gitlab-ci.yml,dspechnikov__django-slugger,Job-Allow-Failure,,test,py36-djangomaster,Allows failure of job `py36-djangomaster` at stage `test`,38,.gitlab-ci.yml,dspechnikov,dspechnikov/django-slugger +dspechnikov__django-slugger__Job-Allow-Failure__py37-djangomaster,https://gitlab.com/dspechnikov/django-slugger,https://gitlab.com/dspechnikov/django-slugger/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dspechnikov__django-slugger/.gitlab-ci.yml,dspechnikov__django-slugger,Job-Allow-Failure,,test,py37-djangomaster,Allows failure of job `py37-djangomaster` at stage `test`,59,.gitlab-ci.yml,dspechnikov,dspechnikov/django-slugger +failmap__admin__Versioning__requirementstxt__django-jet__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-jet,version specifier is missing,5,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-countries__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-countries,version specifier is missing,6,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-jsonfield__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-jsonfield,version specifier is missing,7,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,pyyaml,version specifier is missing,8,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__tldextract__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,tldextract,version specifier is missing,9,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__docutils__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,docutils,version specifier is missing,10,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__typing__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,typing,version specifier is missing,11,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__requests__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,requests,version specifier is missing,15,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__certifi__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,certifi,version specifier is missing,17,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__pytz__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,pytz,version specifier is missing,18,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__celery-redis-__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,celery[redis],version specifier is missing,19,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-celery-beat__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-celery-beat,version specifier is missing,20,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-statsd-mozilla__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-statsd-mozilla,version specifier is missing,22,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__Pillow-screenshots__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,Pillow#screenshots,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__python-resize-image-screenshots__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,python-resize-image#screenshots,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django_uwsgi__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django_uwsgi,version specifier is missing,26,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__dnspython-dnsrecon__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,dnspython#dnsrecon,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__netaddr-dnsrecon__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,netaddr#dnsrecon,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__httmock__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,httmock,version specifier is missing,32,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__freezegun__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,freezegun,version specifier is missing,33,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__colorama__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,colorama,version specifier is missing,34,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-silk__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-silk,version specifier is missing,36,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__colorlog__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,colorlog,version specifier is missing,39,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django_compressor-bundlejavascriptandcss__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django_compressor#bundlejavascriptandcss,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__csscompressor-csscompression__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,csscompressor#csscompression,version specifier is missing,-1,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__django-proxy__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,django-proxy,version specifier is missing,46,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__raven__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,raven,version specifier is missing,49,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__deepdiff__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,deepdiff,version specifier is missing,52,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__influxdb__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,influxdb,version specifier is missing,53,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__urllib3__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,urllib3,version specifier is missing,54,requirements.txt,failmap,failmap/admin +failmap__admin__Versioning__requirementstxt__simplejson__missing,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/failmap__admin/requirements.txt,failmap__admin,Versioning,missing,,simplejson,version specifier is missing,59,requirements.txt,failmap,failmap/admin +failmap__admin__Job-Retry__test_mysql,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,test_mysql,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__test_postgres,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,test_postgres,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__test,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,test,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__production,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,production,production,1,229,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__check,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,check,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__dataset_mysql,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,dataset_mysql,1,26,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__build,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,build,1,122,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__build_test,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,build_test,1,155,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__integration,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,integration,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__codequality,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,codequality,1,182,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__dataset,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,dataset,1,7,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__staging,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,staging,staging,1,198,.gitlab-ci.yml,failmap,failmap/admin +failmap__admin__Job-Retry__dataset_postgres,https://gitlab.com/failmap/admin,https://gitlab.com/failmap/admin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__admin/.gitlab-ci.yml,failmap__admin,Job-Retry,always,test_build,dataset_postgres,1,45,.gitlab-ci.yml,failmap,failmap/admin +alelec__aioeasywebdav__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/aioeasywebdav,https://gitlab.com/alelec/aioeasywebdav/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__aioeasywebdav/.gitlab-ci.yml,alelec__aioeasywebdav,Versioning,missing,,twine,version specifier is missing,22,.gitlab-ci.yml,alelec,alelec/aioeasywebdav +alelec__aioeasywebdav__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/aioeasywebdav,https://gitlab.com/alelec/aioeasywebdav/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__aioeasywebdav/.gitlab-ci.yml,alelec__aioeasywebdav,Versioning,missing,,wheel,version specifier is missing,22,.gitlab-ci.yml,alelec,alelec/aioeasywebdav +alelec__aioeasywebdav__Job-Allow-Failure__test,https://gitlab.com/alelec/aioeasywebdav,https://gitlab.com/alelec/aioeasywebdav/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__aioeasywebdav/.gitlab-ci.yml,alelec__aioeasywebdav,Job-Allow-Failure,,test,test,Allows failure of job `test` at stage `test`,11,.gitlab-ci.yml,alelec,alelec/aioeasywebdav +wallzero__jsplumb-react__Job-Retry__unit,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,test,unit,2,25,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wallzero__jsplumb-react__Job-Retry__pages,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,deploy,pages,2,38,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wallzero__jsplumb-react__Job-Retry__chrome,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,test,chrome,2,30,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wallzero__jsplumb-react__Job-Retry__install,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,install,install,2,25,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wallzero__jsplumb-react__Job-Retry__build,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,build,build,2,25,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wallzero__jsplumb-react__Job-Retry__publish,https://gitlab.com/wallzero/jsplumb-react,https://gitlab.com/wallzero/jsplumb-react/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wallzero__jsplumb-react/.gitlab-ci.yml,wallzero__jsplumb-react,Job-Retry,always,deploy,publish,2,38,.gitlab-ci.yml,wallzero,wallzero/jsplumb-react +wolphin__wolphin__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin,https://gitlab.com/wolphin/wolphin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin/.gitlab-ci.yml,wolphin__wolphin,Versioning,missing,,wheel,version specifier is missing,34,.gitlab-ci.yml,wolphin,wolphin/wolphin +wolphin__wolphin__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin,https://gitlab.com/wolphin/wolphin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin/.gitlab-ci.yml,wolphin__wolphin,Versioning,missing,,wheel,version specifier is missing,34,.gitlab-ci.yml,wolphin,wolphin/wolphin +wolphin__wolphin__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/wolphin/wolphin,https://gitlab.com/wolphin/wolphin/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wolphin__wolphin/.gitlab-ci.yml,wolphin__wolphin,Versioning,missing,,wheel,version specifier is missing,34,.gitlab-ci.yml,wolphin,wolphin/wolphin +SirEdvin__docker-prometheus-exporter__Versioning__requirementstxt__sanic__any-upper-version,https://gitlab.com/SirEdvin/docker-prometheus-exporter,https://gitlab.com/SirEdvin/docker-prometheus-exporter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SirEdvin__docker-prometheus-exporter/requirements.txt,SirEdvin__docker-prometheus-exporter,Versioning,any-upper-version,,sanic,version specifier `>=0.7.0` matches future versions that might become incompatible,1,requirements.txt,SirEdvin,SirEdvin/docker-prometheus-exporter +SirEdvin__docker-prometheus-exporter__Versioning__requirementstxt__sanic-prometheus__any-upper-version,https://gitlab.com/SirEdvin/docker-prometheus-exporter,https://gitlab.com/SirEdvin/docker-prometheus-exporter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SirEdvin__docker-prometheus-exporter/requirements.txt,SirEdvin__docker-prometheus-exporter,Versioning,any-upper-version,,sanic-prometheus,version specifier `>=0.1.4` matches future versions that might become incompatible,2,requirements.txt,SirEdvin,SirEdvin/docker-prometheus-exporter +SirEdvin__docker-prometheus-exporter__Versioning__requirementstxt__aiodocker__any-upper-version,https://gitlab.com/SirEdvin/docker-prometheus-exporter,https://gitlab.com/SirEdvin/docker-prometheus-exporter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SirEdvin__docker-prometheus-exporter/requirements.txt,SirEdvin__docker-prometheus-exporter,Versioning,any-upper-version,,aiodocker,version specifier `>=0.8.5` matches future versions that might become incompatible,3,requirements.txt,SirEdvin,SirEdvin/docker-prometheus-exporter +SirEdvin__docker-prometheus-exporter__Versioning__requirementstxt__prometheus_async__any-upper-version,https://gitlab.com/SirEdvin/docker-prometheus-exporter,https://gitlab.com/SirEdvin/docker-prometheus-exporter/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/SirEdvin__docker-prometheus-exporter/requirements.txt,SirEdvin__docker-prometheus-exporter,Versioning,any-upper-version,,prometheus_async,version specifier `>=18.1.0` matches future versions that might become incompatible,4,requirements.txt,SirEdvin,SirEdvin/docker-prometheus-exporter +zoomonit__greenpepper__Manual-Job__create_builder,https://gitlab.com/zoomonit/greenpepper,https://gitlab.com/zoomonit/greenpepper/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/zoomonit__greenpepper/.gitlab-ci.yml,zoomonit__greenpepper,Manual-Job,,prepare,create_builder,Manual job `create_builder` at stage `prepare`,38,.gitlab-ci.yml,zoomonit,zoomonit/greenpepper +clearglass__clearglass-community__Job-Allow-Failure__UI-ip-whitelisting,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Allow-Failure,,test,UI:ip-whitelisting,Allows failure of job `UI:ip-whitelisting` at stage `test`,482,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Allow-Failure__undeploy-review,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Allow-Failure,,undeploy,undeploy review,Allows failure of job `undeploy review` at stage `undeploy`,498,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Allow-Failure__UI-user-actions,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Allow-Failure,,test,UI:user-actions,Allows failure of job `UI:user-actions` at stage `test`,460,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Allow-Failure__undeploy-test,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Allow-Failure,,undeploy,undeploy test,Allows failure of job `undeploy test` at stage `undeploy`,498,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__build-gocky,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,build gocky,2,182,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__UI-schedulers-1-2,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,test,UI:schedulers-1/2,1,476,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__build-logstash,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,build logstash,2,183,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__UI-schedulers-2-2,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,test,UI:schedulers-2/2,1,479,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__retag-landing,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,retag landing,2,200,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__UI-machines-2-2,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,test,UI:machines-2/2,1,470,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__UI-machines-1-2,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,test,UI:machines-1/2,1,467,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__build-api,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,build api,2,44,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__UI-monitoring,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,test,UI:monitoring,1,473,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__build-elasticsearch-manage,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,build elasticsearch-manage,2,184,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__retag-tests,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,retag tests,2,202,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__build-nginx,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,build nginx,2,181,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +clearglass__clearglass-community__Job-Retry__retag-ui,https://gitlab.com/clearglass/clearglass-community,https://gitlab.com/clearglass/clearglass-community/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clearglass__clearglass-community/.gitlab-ci.yml,clearglass__clearglass-community,Job-Retry,always,build,retag ui,2,201,.gitlab-ci.yml,clearglass,clearglass/clearglass-community +radek-sprta__mariner__Versioning__gitlabyaml__mkdocs__missing,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Versioning,missing,,mkdocs,version specifier is missing,102,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +radek-sprta__mariner__Versioning__gitlabyaml__mkdocs__missing,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Versioning,missing,,mkdocs,version specifier is missing,102,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +radek-sprta__mariner__Job-Retry__test-python38,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Job-Retry,always,test,test:python38,1,81,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +radek-sprta__mariner__Job-Retry__test-python37,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Job-Retry,always,test,test:python37,1,74,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +radek-sprta__mariner__Job-Retry__test-python36,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Job-Retry,always,test,test:python36,1,66,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +radek-sprta__mariner__Job-Retry__test-python35,https://gitlab.com/radek-sprta/mariner,https://gitlab.com/radek-sprta/mariner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/radek-sprta__mariner/.gitlab-ci.yml,radek-sprta__mariner,Job-Retry,always,test,test:python35,1,58,.gitlab-ci.yml,radek-sprta,radek-sprta/mariner +kamilgregorczyk__instalike__Versioning__requirementstxt__django-cors-headers__missing,https://gitlab.com/kamilgregorczyk/instalike,https://gitlab.com/kamilgregorczyk/instalike/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kamilgregorczyk__instalike/requirements.txt,kamilgregorczyk__instalike,Versioning,missing,,django-cors-headers,version specifier is missing,7,requirements.txt,kamilgregorczyk,kamilgregorczyk/instalike +kamilgregorczyk__instalike__Versioning__requirementstxt__gunicorn__missing,https://gitlab.com/kamilgregorczyk/instalike,https://gitlab.com/kamilgregorczyk/instalike/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kamilgregorczyk__instalike/requirements.txt,kamilgregorczyk__instalike,Versioning,missing,,gunicorn,version specifier is missing,9,requirements.txt,kamilgregorczyk,kamilgregorczyk/instalike +kamilgregorczyk__instalike__Versioning__requirementstxt__coreapi__missing,https://gitlab.com/kamilgregorczyk/instalike,https://gitlab.com/kamilgregorczyk/instalike/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kamilgregorczyk__instalike/requirements.txt,kamilgregorczyk__instalike,Versioning,missing,,coreapi,version specifier is missing,13,requirements.txt,kamilgregorczyk,kamilgregorczyk/instalike +kamilgregorczyk__instalike__Versioning__requirementstxt__pygments__missing,https://gitlab.com/kamilgregorczyk/instalike,https://gitlab.com/kamilgregorczyk/instalike/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kamilgregorczyk__instalike/requirements.txt,kamilgregorczyk__instalike,Versioning,missing,,pygments,version specifier is missing,14,requirements.txt,kamilgregorczyk,kamilgregorczyk/instalike +kamilgregorczyk__instalike__Versioning__requirementstxt__markdown__missing,https://gitlab.com/kamilgregorczyk/instalike,https://gitlab.com/kamilgregorczyk/instalike/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/kamilgregorczyk__instalike/requirements.txt,kamilgregorczyk__instalike,Versioning,missing,,markdown,version specifier is missing,15,requirements.txt,kamilgregorczyk,kamilgregorczyk/instalike +guardianproject__checkey__Job-Retry__connected-22-default-armeabi-v7a,https://gitlab.com/guardianproject/checkey,https://gitlab.com/guardianproject/checkey/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/guardianproject__checkey/.gitlab-ci.yml,guardianproject__checkey,Job-Retry,always,test,connected 22 default armeabi-v7a,1,97,.gitlab-ci.yml,guardianproject,guardianproject/checkey +SirEdvin__sanic-oauth__Versioning__gitlabyaml__twine__missing,https://gitlab.com/SirEdvin/sanic-oauth,https://gitlab.com/SirEdvin/sanic-oauth/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SirEdvin__sanic-oauth/.gitlab-ci.yml,SirEdvin__sanic-oauth,Versioning,missing,,twine,version specifier is missing,22,.gitlab-ci.yml,SirEdvin,SirEdvin/sanic-oauth +cyberbudy__django-postie__Versioning__requirementstxt__-ihttps---pypi-python-org-simple__missing,https://gitlab.com/cyberbudy/django-postie,https://gitlab.com/cyberbudy/django-postie/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/cyberbudy__django-postie/requirements.txt,cyberbudy__django-postie,Versioning,missing,,-ihttps://pypi.python.org/simple,version specifier is missing,-1,requirements.txt,cyberbudy,cyberbudy/django-postie +dataengi__marketing__www-dataengi-com__Job-Allow-Failure__rspec,https://gitlab.com/dataengi/marketing/www.dataengi.com,https://gitlab.com/dataengi/marketing/www.dataengi.com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dataengi__marketing__www.dataengi.com/.gitlab-ci.yml,dataengi__marketing__www.dataengi.com,Job-Allow-Failure,,prepare,rspec,Allows failure of job `rspec` at stage `prepare`,60,.gitlab-ci.yml,dataengi,dataengi/marketing/www.dataengi.com +dataengi__marketing__www-dataengi-com__Job-Allow-Failure__rubocop,https://gitlab.com/dataengi/marketing/www.dataengi.com,https://gitlab.com/dataengi/marketing/www.dataengi.com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dataengi__marketing__www.dataengi.com/.gitlab-ci.yml,dataengi__marketing__www.dataengi.com,Job-Allow-Failure,,prepare,rubocop,Allows failure of job `rubocop` at stage `prepare`,52,.gitlab-ci.yml,dataengi,dataengi/marketing/www.dataengi.com +dataengi__marketing__www-dataengi-com__Job-Allow-Failure__review,https://gitlab.com/dataengi/marketing/www.dataengi.com,https://gitlab.com/dataengi/marketing/www.dataengi.com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dataengi__marketing__www.dataengi.com/.gitlab-ci.yml,dataengi__marketing__www.dataengi.com,Job-Allow-Failure,,deploy,review,Allows failure of job `review` at stage `deploy`,115,.gitlab-ci.yml,dataengi,dataengi/marketing/www.dataengi.com +dataengi__marketing__www-dataengi-com__Job-Allow-Failure__check_links,https://gitlab.com/dataengi/marketing/www.dataengi.com,https://gitlab.com/dataengi/marketing/www.dataengi.com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dataengi__marketing__www.dataengi.com/.gitlab-ci.yml,dataengi__marketing__www.dataengi.com,Job-Allow-Failure,,prepare,check_links,Allows failure of job `check_links` at stage `prepare`,69,.gitlab-ci.yml,dataengi,dataengi/marketing/www.dataengi.com +dataengi__marketing__www-dataengi-com__Manual-Job__check_links,https://gitlab.com/dataengi/marketing/www.dataengi.com,https://gitlab.com/dataengi/marketing/www.dataengi.com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dataengi__marketing__www.dataengi.com/.gitlab-ci.yml,dataengi__marketing__www.dataengi.com,Manual-Job,,prepare,check_links,Manual job `check_links` at stage `prepare`,69,.gitlab-ci.yml,dataengi,dataengi/marketing/www.dataengi.com +CaflischLab__CampaRi__Job-Allow-Failure__pkg_check,https://gitlab.com/CaflischLab/CampaRi,https://gitlab.com/CaflischLab/CampaRi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CaflischLab__CampaRi/.gitlab-ci.yml,CaflischLab__CampaRi,Job-Allow-Failure,,check,pkg_check,Allows failure of job `pkg_check` at stage `check`,36,.gitlab-ci.yml,CaflischLab,CaflischLab/CampaRi +CaflischLab__CampaRi__Job-Allow-Failure__pkg_codecov,https://gitlab.com/CaflischLab/CampaRi,https://gitlab.com/CaflischLab/CampaRi/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CaflischLab__CampaRi/.gitlab-ci.yml,CaflischLab__CampaRi,Job-Allow-Failure,,codecov,pkg_codecov,Allows failure of job `pkg_codecov` at stage `codecov`,45,.gitlab-ci.yml,CaflischLab,CaflischLab/CampaRi +publicmarket__public-market-storefront__Job-Retry__rspec,https://gitlab.com/publicmarket/public-market-storefront,https://gitlab.com/publicmarket/public-market-storefront/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/publicmarket__public-market-storefront/.gitlab-ci.yml,publicmarket__public-market-storefront,Job-Retry,always,phase2,rspec,2,30,.gitlab-ci.yml,publicmarket,publicmarket/public-market-storefront +gitlab-org__gitlab_kramdown__Job-Allow-Failure__code_quality,https://gitlab.com/gitlab-org/gitlab_kramdown,https://gitlab.com/gitlab-org/gitlab_kramdown/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab_kramdown/.gitlab-ci.yml,gitlab-org__gitlab_kramdown,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,50,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab_kramdown +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Versioning__gitlabyaml__angreal__missing,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Versioning,missing,,angreal,version specifier is missing,5,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__init_gitlab_python,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,post_release,init_gitlab_python,Allows failure of job `init_gitlab_python` at stage `post_release`,46,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__release-test,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,release,release-test,Allows failure of job `release-test` at stage `release`,98,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__init_presentation,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,post_release,init_presentation,Allows failure of job `init_presentation` at stage `post_release`,67,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__init_data_science_project,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,post_release,init_data_science_project,Allows failure of job `init_data_science_project` at stage `post_release`,57,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__init_meeting_minutes,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,post_release,init_meeting_minutes,Allows failure of job `init_meeting_minutes` at stage `post_release`,78,.gitlab-ci.yml,angreal,angreal/angreal +angreal__angreal__Job-Allow-Failure__init_template,https://gitlab.com/angreal/angreal,https://gitlab.com/angreal/angreal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/angreal__angreal/.gitlab-ci.yml,angreal__angreal,Job-Allow-Failure,,post_release,init_template,Allows failure of job `init_template` at stage `post_release`,88,.gitlab-ci.yml,angreal,angreal/angreal +onepoint__junit-5-extensions__Job-Allow-Failure__dependency_scanning,https://gitlab.com/onepoint/junit-5-extensions,https://gitlab.com/onepoint/junit-5-extensions/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/onepoint__junit-5-extensions/.gitlab-ci.yml,onepoint__junit-5-extensions,Job-Allow-Failure,,dependency_scanning,dependency_scanning,Allows failure of job `dependency_scanning` at stage `dependency_scanning`,23,.gitlab-ci.yml,onepoint,onepoint/junit-5-extensions +dxld__cabal-helper__Job-Allow-Failure__job-check-upd,https://gitlab.com/dxld/cabal-helper,https://gitlab.com/dxld/cabal-helper/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dxld__cabal-helper/.gitlab-ci.yml,dxld__cabal-helper,Job-Allow-Failure,,build,job-check-upd,Allows failure of job `job-check-upd` at stage `build`,37,.gitlab-ci.yml,dxld,dxld/cabal-helper +Cayan_HacktheHub__TamaTrainer__Versioning__requirementstxt__unittest2__missing,https://gitlab.com/Cayan_HacktheHub/TamaTrainer,https://gitlab.com/Cayan_HacktheHub/TamaTrainer/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Cayan_HacktheHub__TamaTrainer/requirements.txt,Cayan_HacktheHub__TamaTrainer,Versioning,missing,,unittest2,version specifier is missing,2,requirements.txt,Cayan_HacktheHub,Cayan_HacktheHub/TamaTrainer +Cayan_HacktheHub__TamaTrainer__Versioning__requirementstxt__pygame__missing,https://gitlab.com/Cayan_HacktheHub/TamaTrainer,https://gitlab.com/Cayan_HacktheHub/TamaTrainer/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Cayan_HacktheHub__TamaTrainer/requirements.txt,Cayan_HacktheHub__TamaTrainer,Versioning,missing,,pygame,version specifier is missing,3,requirements.txt,Cayan_HacktheHub,Cayan_HacktheHub/TamaTrainer +Cayan_HacktheHub__TamaTrainer__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/Cayan_HacktheHub/TamaTrainer,https://gitlab.com/Cayan_HacktheHub/TamaTrainer/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Cayan_HacktheHub__TamaTrainer/requirements.txt,Cayan_HacktheHub__TamaTrainer,Versioning,missing,,matplotlib,version specifier is missing,4,requirements.txt,Cayan_HacktheHub,Cayan_HacktheHub/TamaTrainer +gdevops__tuto_docker__Versioning__requirementstxt__-ihttps---pypi-org-simple__missing,https://gitlab.com/gdevops/tuto_docker,https://gitlab.com/gdevops/tuto_docker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gdevops__tuto_docker/requirements.txt,gdevops__tuto_docker,Versioning,missing,,-ihttps://pypi.org/simple,version specifier is missing,-1,requirements.txt,gdevops,gdevops/tuto_docker +denkmal__denkmal-website__Job-Retry__deploy-production,https://gitlab.com/denkmal/denkmal-website,https://gitlab.com/denkmal/denkmal-website/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/denkmal__denkmal-website/.gitlab-ci.yml,denkmal__denkmal-website,Job-Retry,always,release,deploy-production,2,73,.gitlab-ci.yml,denkmal,denkmal/denkmal-website +denkmal__denkmal-website__Job-Retry__deploy-preview,https://gitlab.com/denkmal/denkmal-website,https://gitlab.com/denkmal/denkmal-website/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/denkmal__denkmal-website/.gitlab-ci.yml,denkmal__denkmal-website,Job-Retry,always,release,deploy-preview,2,56,.gitlab-ci.yml,denkmal,denkmal/denkmal-website +coq__coq__Job-Allow-Failure__build-quick,https://gitlab.com/coq/coq,https://gitlab.com/coq/coq/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coq__coq/.gitlab-ci.yml,coq__coq,Job-Allow-Failure,,test,build:quick,Allows failure of job `build:quick` at stage `test`,297,.gitlab-ci.yml,coq,coq/coq +coq__coq__Job-Allow-Failure__test-suite-base-async,https://gitlab.com/coq/coq,https://gitlab.com/coq/coq/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coq__coq/.gitlab-ci.yml,coq__coq,Job-Allow-Failure,,test,test-suite:base+async,Allows failure of job `test-suite:base+async` at stage `test`,527,.gitlab-ci.yml,coq,coq/coq +coq__coq__Job-Allow-Failure__build-base-async,https://gitlab.com/coq/coq,https://gitlab.com/coq/coq/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coq__coq/.gitlab-ci.yml,coq__coq,Job-Allow-Failure,,stage-1,build:base+async,Allows failure of job `build:base+async` at stage `stage-1`,285,.gitlab-ci.yml,coq,coq/coq +danielhones__pycategories__Job-Allow-Failure__lint,https://gitlab.com/danielhones/pycategories,https://gitlab.com/danielhones/pycategories/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/danielhones__pycategories/.gitlab-ci.yml,danielhones__pycategories,Job-Allow-Failure,,lint,lint,Allows failure of job `lint` at stage `lint`,39,.gitlab-ci.yml,danielhones,danielhones/pycategories +plut0n__MLNL__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/plut0n/MLNL,https://gitlab.com/plut0n/MLNL/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/plut0n__MLNL/.gitlab-ci.yml,plut0n__MLNL,Versioning,missing,,sphinx,version specifier is missing,7,.gitlab-ci.yml,plut0n,plut0n/MLNL +plut0n__MLNL__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/plut0n/MLNL,https://gitlab.com/plut0n/MLNL/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/plut0n__MLNL/.gitlab-ci.yml,plut0n__MLNL,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,7,.gitlab-ci.yml,plut0n,plut0n/MLNL +plut0n__MLNL__Versioning__gitlabyaml__numpydoc__missing,https://gitlab.com/plut0n/MLNL,https://gitlab.com/plut0n/MLNL/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/plut0n__MLNL/.gitlab-ci.yml,plut0n__MLNL,Versioning,missing,,numpydoc,version specifier is missing,7,.gitlab-ci.yml,plut0n,plut0n/MLNL +aquachain__aquachain__Job-Allow-Failure__lint,https://gitlab.com/aquachain/aquachain,https://gitlab.com/aquachain/aquachain/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aquachain__aquachain/.gitlab-ci.yml,aquachain__aquachain,Job-Allow-Failure,,test,lint,Allows failure of job `lint` at stage `test`,3,.gitlab-ci.yml,aquachain,aquachain/aquachain +JuliaGPU__CUDAnative-jl__Job-Allow-Failure__julia-nightly,https://gitlab.com/JuliaGPU/CUDAnative.jl,https://gitlab.com/JuliaGPU/CUDAnative.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CUDAnative.jl/.gitlab-ci.yml,JuliaGPU__CUDAnative.jl,Job-Allow-Failure,,test,julia:nightly,Allows failure of job `julia:nightly` at stage `test`,26,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CUDAnative.jl +JuliaGPU__CUDAnative-jl__Job-Allow-Failure__cuarrays,https://gitlab.com/JuliaGPU/CUDAnative.jl,https://gitlab.com/JuliaGPU/CUDAnative.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__CUDAnative.jl/.gitlab-ci.yml,JuliaGPU__CUDAnative.jl,Job-Allow-Failure,,test,cuarrays,Allows failure of job `cuarrays` at stage `test`,140,.gitlab-ci.yml,JuliaGPU,JuliaGPU/CUDAnative.jl +jdesodt__seneca-entity-crud__Job-Allow-Failure__code_quality,https://gitlab.com/jdesodt/seneca-entity-crud,https://gitlab.com/jdesodt/seneca-entity-crud/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jdesodt__seneca-entity-crud/.gitlab-ci.yml,jdesodt__seneca-entity-crud,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,40,.gitlab-ci.yml,jdesodt,jdesodt/seneca-entity-crud +jdesodt__seneca-entity-crud__Job-Allow-Failure__dependency_scanning,https://gitlab.com/jdesodt/seneca-entity-crud,https://gitlab.com/jdesodt/seneca-entity-crud/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jdesodt__seneca-entity-crud/.gitlab-ci.yml,jdesodt__seneca-entity-crud,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,23,.gitlab-ci.yml,jdesodt,jdesodt/seneca-entity-crud +exosphere__exosphere__Job-Allow-Failure__dependency_scanning,https://gitlab.com/exosphere/exosphere,https://gitlab.com/exosphere/exosphere/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/exosphere__exosphere/.gitlab-ci.yml,exosphere__exosphere,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,86,.gitlab-ci.yml,exosphere,exosphere/exosphere +mgoral__twweb__Versioning__requirementstxt__-e-__missing,https://gitlab.com/mgoral/twweb,https://gitlab.com/mgoral/twweb/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mgoral__twweb/requirements.txt,mgoral__twweb,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,mgoral,mgoral/twweb +mgoral__twweb__Job-Allow-Failure__pages,https://gitlab.com/mgoral/twweb,https://gitlab.com/mgoral/twweb/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mgoral__twweb/.gitlab-ci.yml,mgoral__twweb,Job-Allow-Failure,,publish,pages,Allows failure of job `pages` at stage `publish`,29,.gitlab-ci.yml,mgoral,mgoral/twweb +mgoral__twweb__Job-Allow-Failure__test-coverage,https://gitlab.com/mgoral/twweb,https://gitlab.com/mgoral/twweb/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mgoral__twweb/.gitlab-ci.yml,mgoral__twweb,Job-Allow-Failure,,test,test-coverage,Allows failure of job `test-coverage` at stage `test`,17,.gitlab-ci.yml,mgoral,mgoral/twweb +Tuuux__galaxie-curses__Versioning__requirementstxt__numpy__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__green__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,green,version specifier is missing,3,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__cov-core__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,cov-core,version specifier is missing,4,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__guzzle_sphinx_theme__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,guzzle_sphinx_theme,version specifier is missing,5,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__nose2__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,nose2,version specifier is missing,8,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__pyperclip__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,pyperclip,version specifier is missing,9,requirements.txt,Tuuux,Tuuux/galaxie-curses +Tuuux__galaxie-curses__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/Tuuux/galaxie-curses,https://gitlab.com/Tuuux/galaxie-curses/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tuuux__galaxie-curses/requirements.txt,Tuuux__galaxie-curses,Versioning,missing,,pyyaml,version specifier is missing,10,requirements.txt,Tuuux,Tuuux/galaxie-curses +experimentslabs__engine_elabs__Job-Allow-Failure__bundle-outdated,https://gitlab.com/experimentslabs/engine_elabs,https://gitlab.com/experimentslabs/engine_elabs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/experimentslabs__engine_elabs/.gitlab-ci.yml,experimentslabs__engine_elabs,Job-Allow-Failure,,dependencies-check,bundle/outdated,Allows failure of job `bundle/outdated` at stage `dependencies-check`,96,.gitlab-ci.yml,experimentslabs,experimentslabs/engine_elabs +efunb__gyrus__Job-Allow-Failure__Codecov,https://gitlab.com/efunb/gyrus,https://gitlab.com/efunb/gyrus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__gyrus/.gitlab-ci.yml,efunb__gyrus,Job-Allow-Failure,,coverage,Codecov,Allows failure of job `Codecov` at stage `coverage`,140,.gitlab-ci.yml,efunb,efunb/gyrus +efunb__gyrus__Job-Allow-Failure__cratesio,https://gitlab.com/efunb/gyrus,https://gitlab.com/efunb/gyrus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__gyrus/.gitlab-ci.yml,efunb__gyrus,Job-Allow-Failure,,publish,cratesio,Allows failure of job `cratesio` at stage `publish`,124,.gitlab-ci.yml,efunb,efunb/gyrus +efunb__gyrus__Job-Allow-Failure__clean-code,https://gitlab.com/efunb/gyrus,https://gitlab.com/efunb/gyrus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__gyrus/.gitlab-ci.yml,efunb__gyrus,Job-Allow-Failure,,check,clean-code,Allows failure of job `clean-code` at stage `check`,13,.gitlab-ci.yml,efunb,efunb/gyrus +efunb__gyrus__Job-Allow-Failure__clippy,https://gitlab.com/efunb/gyrus,https://gitlab.com/efunb/gyrus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__gyrus/.gitlab-ci.yml,efunb__gyrus,Job-Allow-Failure,,post-run,clippy,Allows failure of job `clippy` at stage `post-run`,166,.gitlab-ci.yml,efunb,efunb/gyrus +vuedoc__parser__Job-Allow-Failure__security-scan,https://gitlab.com/vuedoc/parser,https://gitlab.com/vuedoc/parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vuedoc__parser/.gitlab-ci.yml,vuedoc__parser,Job-Allow-Failure,,test,security scan,Allows failure of job `security scan` at stage `test`,20,.gitlab-ci.yml,vuedoc,vuedoc/parser +vuedoc__parser__Job-Allow-Failure__npm-outdated,https://gitlab.com/vuedoc/parser,https://gitlab.com/vuedoc/parser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vuedoc__parser/.gitlab-ci.yml,vuedoc__parser,Job-Allow-Failure,,test,npm outdated,Allows failure of job `npm outdated` at stage `test`,13,.gitlab-ci.yml,vuedoc,vuedoc/parser +nvllsvm__cloneholio__Versioning__gitlabyaml__---test--__missing,https://gitlab.com/nvllsvm/cloneholio,https://gitlab.com/nvllsvm/cloneholio/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nvllsvm__cloneholio/.gitlab-ci.yml,nvllsvm__cloneholio,Versioning,missing,,'.[test]',version specifier is missing,17,.gitlab-ci.yml,nvllsvm,nvllsvm/cloneholio +MggMuggins__aurum__Job-Allow-Failure__package,https://gitlab.com/MggMuggins/aurum,https://gitlab.com/MggMuggins/aurum/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MggMuggins__aurum/.gitlab-ci.yml,MggMuggins__aurum,Job-Allow-Failure,,package,package,Allows failure of job `package` at stage `package`,40,.gitlab-ci.yml,MggMuggins,MggMuggins/aurum +MggMuggins__aurum__Job-Allow-Failure__test-cargo-stable,https://gitlab.com/MggMuggins/aurum,https://gitlab.com/MggMuggins/aurum/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MggMuggins__aurum/.gitlab-ci.yml,MggMuggins__aurum,Job-Allow-Failure,,test,test:cargo:stable,Allows failure of job `test:cargo:stable` at stage `test`,26,.gitlab-ci.yml,MggMuggins,MggMuggins/aurum +MggMuggins__aurum__Job-Allow-Failure__test-cargo-nightly,https://gitlab.com/MggMuggins/aurum,https://gitlab.com/MggMuggins/aurum/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MggMuggins__aurum/.gitlab-ci.yml,MggMuggins__aurum,Job-Allow-Failure,,test,test:cargo:nightly,Allows failure of job `test:cargo:nightly` at stage `test`,33,.gitlab-ci.yml,MggMuggins,MggMuggins/aurum +YoEight__eventstore-rs__Job-Allow-Failure__Linting,https://gitlab.com/YoEight/eventstore-rs,https://gitlab.com/YoEight/eventstore-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/YoEight__eventstore-rs/.gitlab-ci.yml,YoEight__eventstore-rs,Job-Allow-Failure,,lint,Linting,Allows failure of job `Linting` at stage `lint`,24,.gitlab-ci.yml,YoEight,YoEight/eventstore-rs +opennota__tl__Job-Allow-Failure__deploy,https://gitlab.com/opennota/tl,https://gitlab.com/opennota/tl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/opennota__tl/.gitlab-ci.yml,opennota__tl,Job-Allow-Failure,,deploy,deploy,Allows failure of job `deploy` at stage `deploy`,29,.gitlab-ci.yml,opennota,opennota/tl +ECOM-Mycamping__mycamping__Job-Allow-Failure__sonar-analyze,https://gitlab.com/ECOM-Mycamping/mycamping,https://gitlab.com/ECOM-Mycamping/mycamping/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ECOM-Mycamping__mycamping/.gitlab-ci.yml,ECOM-Mycamping__mycamping,Job-Allow-Failure,,analyze,sonar-analyze,Allows failure of job `sonar-analyze` at stage `analyze`,55,.gitlab-ci.yml,ECOM-Mycamping,ECOM-Mycamping/mycamping +joshlambert__minimal-ruby-app__Job-Allow-Failure__code_quality,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,101,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +joshlambert__minimal-ruby-app__Job-Allow-Failure__performance,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,performance,performance,Allows failure of job `performance` at stage `performance`,138,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +joshlambert__minimal-ruby-app__Job-Allow-Failure__license_management,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,118,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +joshlambert__minimal-ruby-app__Job-Allow-Failure__stop_review,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,268,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +joshlambert__minimal-ruby-app__Job-Allow-Failure__dependency_scanning,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,179,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +joshlambert__minimal-ruby-app__Job-Allow-Failure__container_scanning,https://gitlab.com/joshlambert/minimal-ruby-app,https://gitlab.com/joshlambert/minimal-ruby-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/joshlambert__minimal-ruby-app/.gitlab-ci.yml,joshlambert__minimal-ruby-app,Job-Allow-Failure,,test,container_scanning,Allows failure of job `container_scanning` at stage `test`,199,.gitlab-ci.yml,joshlambert,joshlambert/minimal-ruby-app +mobicoop__mobicoop__Manual-Job__pages,https://gitlab.com/mobicoop/mobicoop,https://gitlab.com/mobicoop/mobicoop/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mobicoop__mobicoop/.gitlab-ci.yml,mobicoop__mobicoop,Manual-Job,,doc,pages,Manual job `pages` at stage `doc`,239,.gitlab-ci.yml,mobicoop,mobicoop/mobicoop +gioxa__odagrun__odagrun__Job-Allow-Failure__reviewb-image,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Allow-Failure,,review,reviewb-image,Allows failure of job `reviewb-image` at stage `review`,309,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Allow-Failure__reviewb,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Allow-Failure,,review,reviewb,Allows failure of job `reviewb` at stage `review`,292,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Allow-Failure__cleanup,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Allow-Failure,,cleanup,cleanup,Allows failure of job `cleanup` at stage `cleanup`,506,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Allow-Failure__stop_reviewm,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Allow-Failure,,review,stop_reviewm,Allows failure of job `stop_reviewm` at stage `review`,361,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__refresh_cache,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,cache,refresh_cache,2,47,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__build_docs,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,build,build_docs,2,210,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__reviewm-image,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,review,reviewm-image,2,378,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__release-image-docker,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,production,release-image:docker,1,465,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__reviewb-image,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,review,reviewb-image,1,309,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__build,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,build,build,2,107,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__release-image,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,release-image,release-image,1,444,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__build_dist,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,build,build_dist,2,143,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__build_check,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,build,build_check,2,165,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +gioxa__odagrun__odagrun__Job-Retry__build_cov,https://gitlab.com/gioxa/odagrun/odagrun,https://gitlab.com/gioxa/odagrun/odagrun/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__odagrun__odagrun/.gitlab-ci.yml,gioxa__odagrun__odagrun,Job-Retry,always,build,build_cov,2,184,.gitlab-ci.yml,gioxa,gioxa/odagrun/odagrun +Songoda__epicbuckets__Versioning__com-songoda-EpicBuckets-Plugin-__com-songoda-skyblockearth__only-major-number,https://gitlab.com/Songoda/epicbuckets,https://gitlab.com/Songoda/epicbuckets/blob/master/EpicBuckets-Plugin/pom.xml,/home/xxx/fse-submission/linter_configfiles/Songoda__epicbuckets/EpicBuckets-Plugin/pom.xml,Songoda__epicbuckets,Versioning,only-major-number,,com.songoda/skyblockearth,"version specifier `59` only refers to a major release, concrete minor versions might be incompatible",73,EpicBuckets-Plugin/pom.xml,Songoda,Songoda/epicbuckets +Songoda__epicbuckets__Versioning__com-songoda-EpicBuckets-Parent-maven-version-number__com-songoda-songodaupdater__only-major-number,https://gitlab.com/Songoda/epicbuckets,https://gitlab.com/Songoda/epicbuckets/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/Songoda__epicbuckets/pom.xml,Songoda__epicbuckets,Versioning,only-major-number,,com.songoda/songodaupdater,"version specifier `1` only refers to a major release, concrete minor versions might be incompatible",22,pom.xml,Songoda,Songoda/epicbuckets +raeq__pciq__Versioning__requirementstxt__alabaster__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,alabaster,version specifier `>=0.7.12` matches future versions that might become incompatible,1,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__apsw__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,apsw,version specifier `>=3.9.2.post1` matches future versions that might become incompatible,2,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__atomicwrites__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,atomicwrites,version specifier `>=1.2.1` matches future versions that might become incompatible,3,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__attrs__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,attrs,version specifier `>=18.2.0` matches future versions that might become incompatible,4,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__Babel__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,Babel,version specifier `>=2.6.0` matches future versions that might become incompatible,5,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__beautifulsoup4__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,beautifulsoup4,version specifier `>=4.6.3` matches future versions that might become incompatible,6,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__bs4__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,bs4,version specifier `>=0.0.1` matches future versions that might become incompatible,7,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__certifi__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,certifi,version specifier `>=2018.10.15` matches future versions that might become incompatible,8,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__chardet__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,chardet,version specifier `>=3.0.4` matches future versions that might become incompatible,9,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__Click__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,Click,version specifier `>=7.0` matches future versions that might become incompatible,10,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__colorama__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,colorama,version specifier `>=0.4.0` matches future versions that might become incompatible,11,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__docutils__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,docutils,version specifier `>=0.14` matches future versions that might become incompatible,12,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__html5lib__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,html5lib,version specifier `>=1.0.1` matches future versions that might become incompatible,13,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__idna__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,idna,version specifier `>=2.7` matches future versions that might become incompatible,14,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__imagesize__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,imagesize,version specifier `>=1.1.0` matches future versions that might become incompatible,15,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__Jinja2__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,Jinja2,version specifier `>=2.10` matches future versions that might become incompatible,16,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__lxml__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,lxml,version specifier `>=4.2.5` matches future versions that might become incompatible,17,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__MarkupSafe__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,MarkupSafe,version specifier `>=1.0` matches future versions that might become incompatible,18,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__more-itertools__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,more-itertools,version specifier `>=4.3.0` matches future versions that might become incompatible,19,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__multipledispatch__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,multipledispatch,version specifier `>=0.6.0` matches future versions that might become incompatible,20,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__mypy-extensions__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,mypy-extensions,version specifier `>=0.4.1` matches future versions that might become incompatible,22,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__nltk__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,nltk,version specifier `>=3.3` matches future versions that might become incompatible,23,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__packaging__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,packaging,version specifier `>=18.0` matches future versions that might become incompatible,24,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__pip-review__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,pip-review,version specifier `>=1.0` matches future versions that might become incompatible,25,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__pluggy__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,pluggy,version specifier `>=0.8.0` matches future versions that might become incompatible,26,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__py__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,py,version specifier `>=1.7.0` matches future versions that might become incompatible,21,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__pydocstyle__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,pydocstyle,version specifier `>=3.0.0` matches future versions that might become incompatible,29,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__Pygments__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,Pygments,version specifier `>=2.2.0` matches future versions that might become incompatible,30,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__pyparsing__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,pyparsing,version specifier `>=2.2.2` matches future versions that might become incompatible,31,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__pytz__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,pytz,version specifier `>=2018.6` matches future versions that might become incompatible,33,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,requests,version specifier `>=2.20.0` matches future versions that might become incompatible,34,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,six,version specifier `>=1.11.0` matches future versions that might become incompatible,35,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__snowballstemmer__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,snowballstemmer,version specifier `>=1.2.1` matches future versions that might become incompatible,36,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__sortedcontainers__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,sortedcontainers,version specifier `>=2.0.5` matches future versions that might become incompatible,37,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__Sphinx__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,Sphinx,version specifier `>=1.8.1` matches future versions that might become incompatible,38,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__sphinx-rtd-theme__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,sphinx-rtd-theme,version specifier `>=0.4.2` matches future versions that might become incompatible,39,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__sphinxcontrib-websupport__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,sphinxcontrib-websupport,version specifier `>=1.1.0` matches future versions that might become incompatible,40,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__typed-ast__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,typed-ast,version specifier `>=1.1.0` matches future versions that might become incompatible,41,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__urllib3__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,urllib3,version specifier `>=1.24` matches future versions that might become incompatible,42,requirements.txt,raeq,raeq/pciq +raeq__pciq__Versioning__requirementstxt__webencodings__any-upper-version,https://gitlab.com/raeq/pciq,https://gitlab.com/raeq/pciq/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/raeq__pciq/requirements.txt,raeq__pciq,Versioning,any-upper-version,,webencodings,version specifier `>=0.5.1` matches future versions that might become incompatible,43,requirements.txt,raeq,raeq/pciq +LineageOS__builder__android__Versioning__requirementstxt__requests__missing,https://gitlab.com/LineageOS/builder/android,https://gitlab.com/LineageOS/builder/android/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/LineageOS__builder__android/requirements.txt,LineageOS__builder__android,Versioning,missing,,requests,version specifier is missing,1,requirements.txt,LineageOS,LineageOS/builder/android +backstage-technical-services__laravel-site__Job-Allow-Failure__dependency_scanning,https://gitlab.com/backstage-technical-services/laravel-site,https://gitlab.com/backstage-technical-services/laravel-site/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/backstage-technical-services__laravel-site/.gitlab-ci.yml,backstage-technical-services__laravel-site,Job-Allow-Failure,,security,dependency_scanning,Allows failure of job `dependency_scanning` at stage `security`,104,.gitlab-ci.yml,backstage-technical-services,backstage-technical-services/laravel-site +BVollmerhaus__blurwal__Versioning__gitlabyaml__twine__missing,https://gitlab.com/BVollmerhaus/blurwal,https://gitlab.com/BVollmerhaus/blurwal/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BVollmerhaus__blurwal/.gitlab-ci.yml,BVollmerhaus__blurwal,Versioning,missing,,twine,version specifier is missing,56,.gitlab-ci.yml,BVollmerhaus,BVollmerhaus/blurwal +elad-noor__equilibrator-cache__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/elad.noor/equilibrator-cache,https://gitlab.com/elad.noor/equilibrator-cache/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elad.noor__equilibrator-cache/.gitlab-ci.yml,elad.noor__equilibrator-cache,Versioning,missing,,wheel,version specifier is missing,8,.gitlab-ci.yml,elad.noor,elad.noor/equilibrator-cache +elad-noor__equilibrator-cache__Versioning__gitlabyaml__twine__missing,https://gitlab.com/elad.noor/equilibrator-cache,https://gitlab.com/elad.noor/equilibrator-cache/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elad.noor__equilibrator-cache/.gitlab-ci.yml,elad.noor__equilibrator-cache,Versioning,missing,,twine,version specifier is missing,29,.gitlab-ci.yml,elad.noor,elad.noor/equilibrator-cache +MrWildcard__a-nice-app__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/MrWildcard/a-nice-app,https://gitlab.com/MrWildcard/a-nice-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MrWildcard__a-nice-app/.gitlab-ci.yml,MrWildcard__a-nice-app,Versioning,missing,,awscli,version specifier is missing,40,.gitlab-ci.yml,MrWildcard,MrWildcard/a-nice-app +MrWildcard__a-nice-app__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/MrWildcard/a-nice-app,https://gitlab.com/MrWildcard/a-nice-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MrWildcard__a-nice-app/.gitlab-ci.yml,MrWildcard__a-nice-app,Versioning,missing,,awscli,version specifier is missing,40,.gitlab-ci.yml,MrWildcard,MrWildcard/a-nice-app +MrWildcard__a-nice-app__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/MrWildcard/a-nice-app,https://gitlab.com/MrWildcard/a-nice-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MrWildcard__a-nice-app/.gitlab-ci.yml,MrWildcard__a-nice-app,Versioning,missing,,awscli,version specifier is missing,40,.gitlab-ci.yml,MrWildcard,MrWildcard/a-nice-app +tottokotkd__benicky__Job-Allow-Failure__rubocop,https://gitlab.com/tottokotkd/benicky,https://gitlab.com/tottokotkd/benicky/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tottokotkd__benicky/.gitlab-ci.yml,tottokotkd__benicky,Job-Allow-Failure,,test,rubocop,Allows failure of job `rubocop` at stage `test`,42,.gitlab-ci.yml,tottokotkd,tottokotkd/benicky +tottokotkd__benicky__Job-Allow-Failure__rails_best_practices,https://gitlab.com/tottokotkd/benicky,https://gitlab.com/tottokotkd/benicky/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tottokotkd__benicky/.gitlab-ci.yml,tottokotkd__benicky,Job-Allow-Failure,,test,rails_best_practices,Allows failure of job `rails_best_practices` at stage `test`,51,.gitlab-ci.yml,tottokotkd,tottokotkd/benicky +rubickcz__chat__Versioning__gitlabyaml__docker__missing,https://gitlab.com/rubickcz/chat,https://gitlab.com/rubickcz/chat/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rubickcz__chat/.gitlab-ci.yml,rubickcz__chat,Versioning,missing,,docker,version specifier is missing,1,.gitlab-ci.yml,rubickcz,rubickcz/chat +rubickcz__chat__Job-Allow-Failure__code-quality,https://gitlab.com/rubickcz/chat,https://gitlab.com/rubickcz/chat/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/rubickcz__chat/.gitlab-ci.yml,rubickcz__chat,Job-Allow-Failure,,test,code-quality,Allows failure of job `code-quality` at stage `test`,50,.gitlab-ci.yml,rubickcz,rubickcz/chat +materials-modeling__dynasor__Job-Allow-Failure__run_tests,https://gitlab.com/materials-modeling/dynasor,https://gitlab.com/materials-modeling/dynasor/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/materials-modeling__dynasor/.gitlab-ci.yml,materials-modeling__dynasor,Job-Allow-Failure,,test,run_tests,Allows failure of job `run_tests` at stage `test`,17,.gitlab-ci.yml,materials-modeling,materials-modeling/dynasor +rubdos__cffipp__Versioning__requirementstxt__cffi__missing,https://gitlab.com/rubdos/cffipp,https://gitlab.com/rubdos/cffipp/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rubdos__cffipp/requirements.txt,rubdos__cffipp,Versioning,missing,,cffi,version specifier is missing,2,requirements.txt,rubdos,rubdos/cffipp +rubdos__cffipp__Versioning__requirementstxt__libclang-py3__missing,https://gitlab.com/rubdos/cffipp,https://gitlab.com/rubdos/cffipp/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rubdos__cffipp/requirements.txt,rubdos__cffipp,Versioning,missing,,libclang-py3,version specifier is missing,3,requirements.txt,rubdos,rubdos/cffipp +rubdos__cffipp__Versioning__requirementstxt__coala__any-upper-version,https://gitlab.com/rubdos/cffipp,https://gitlab.com/rubdos/cffipp/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rubdos__cffipp/requirements.txt,rubdos__cffipp,Versioning,any-upper-version,,coala,version specifier `>=0.0.dev0` matches future versions that might become incompatible,4,requirements.txt,rubdos,rubdos/cffipp +matthieu-bruneaux__guide-r-rstudio-git-gitlab__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/matthieu-bruneaux/guide-r-rstudio-git-gitlab,https://gitlab.com/matthieu-bruneaux/guide-r-rstudio-git-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/matthieu-bruneaux__guide-r-rstudio-git-gitlab/.gitlab-ci.yml,matthieu-bruneaux__guide-r-rstudio-git-gitlab,Versioning,missing,,sphinx,version specifier is missing,14,.gitlab-ci.yml,matthieu-bruneaux,matthieu-bruneaux/guide-r-rstudio-git-gitlab +matthieu-bruneaux__guide-r-rstudio-git-gitlab__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/matthieu-bruneaux/guide-r-rstudio-git-gitlab,https://gitlab.com/matthieu-bruneaux/guide-r-rstudio-git-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/matthieu-bruneaux__guide-r-rstudio-git-gitlab/.gitlab-ci.yml,matthieu-bruneaux__guide-r-rstudio-git-gitlab,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,15,.gitlab-ci.yml,matthieu-bruneaux,matthieu-bruneaux/guide-r-rstudio-git-gitlab +LineageOS__infra__updater__Job-Allow-Failure__dependency_scanning,https://gitlab.com/LineageOS/infra/updater,https://gitlab.com/LineageOS/infra/updater/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LineageOS__infra__updater/.gitlab-ci.yml,LineageOS__infra__updater,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,34,.gitlab-ci.yml,LineageOS,LineageOS/infra/updater +gitlab-org__gitlab-insights__Job-Retry__populate_review_db,https://gitlab.com/gitlab-org/gitlab-insights,https://gitlab.com/gitlab-org/gitlab-insights/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-insights/.gitlab-ci.yml,gitlab-org__gitlab-insights,Job-Retry,always,populate,populate_review_db,2,151,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-insights +gitlab-org__gitlab-insights__Job-Retry__populate_prod_db,https://gitlab.com/gitlab-org/gitlab-insights,https://gitlab.com/gitlab-org/gitlab-insights/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-insights/.gitlab-ci.yml,gitlab-org__gitlab-insights,Job-Retry,always,populate,populate_prod_db,2,167,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-insights +gitlab-org__gitlab-insights__Manual-Job__populate_review_db,https://gitlab.com/gitlab-org/gitlab-insights,https://gitlab.com/gitlab-org/gitlab-insights/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-insights/.gitlab-ci.yml,gitlab-org__gitlab-insights,Manual-Job,,populate,populate_review_db,Manual job `populate_review_db` at stage `populate`,151,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-insights +carmenbianca__pyparadox__Versioning__requirementstxt__-rrequirements-common-txt__missing,https://gitlab.com/carmenbianca/pyparadox,https://gitlab.com/carmenbianca/pyparadox/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/carmenbianca__pyparadox/requirements.txt,carmenbianca__pyparadox,Versioning,missing,,-rrequirements/common.txt,version specifier is missing,-1,requirements.txt,carmenbianca,carmenbianca/pyparadox +carmenbianca__pyparadox__Job-Allow-Failure__coverage,https://gitlab.com/carmenbianca/pyparadox,https://gitlab.com/carmenbianca/pyparadox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/carmenbianca__pyparadox/.gitlab-ci.yml,carmenbianca__pyparadox,Job-Allow-Failure,,test,coverage,Allows failure of job `coverage` at stage `test`,10,.gitlab-ci.yml,carmenbianca,carmenbianca/pyparadox +carmenbianca__pyparadox__Job-Allow-Failure__flake8,https://gitlab.com/carmenbianca/pyparadox,https://gitlab.com/carmenbianca/pyparadox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/carmenbianca__pyparadox/.gitlab-ci.yml,carmenbianca__pyparadox,Job-Allow-Failure,,test,flake8,Allows failure of job `flake8` at stage `test`,5,.gitlab-ci.yml,carmenbianca,carmenbianca/pyparadox +sue445__gitlab_awesome_release__Job-Allow-Failure__rubocop,https://gitlab.com/sue445/gitlab_awesome_release,https://gitlab.com/sue445/gitlab_awesome_release/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sue445__gitlab_awesome_release/.gitlab-ci.yml,sue445__gitlab_awesome_release,Job-Allow-Failure,,test,rubocop,Allows failure of job `rubocop` at stage `test`,71,.gitlab-ci.yml,sue445,sue445/gitlab_awesome_release +dpizetta__mrsprint__Job-Allow-Failure__stop_review,https://gitlab.com/dpizetta/mrsprint,https://gitlab.com/dpizetta/mrsprint/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dpizetta__mrsprint/.gitlab-ci.yml,dpizetta__mrsprint,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,108,.gitlab-ci.yml,dpizetta,dpizetta/mrsprint +dpizetta__mrsprint__Job-Allow-Failure__codequality,https://gitlab.com/dpizetta/mrsprint,https://gitlab.com/dpizetta/mrsprint/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dpizetta__mrsprint/.gitlab-ci.yml,dpizetta__mrsprint,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,74,.gitlab-ci.yml,dpizetta,dpizetta/mrsprint +european-data-portal__MetadataTransformerService__Versioning__eu-transformer-MetadataTransformerService-1-0-0__org-picketlink-picketlink__missing,https://gitlab.com/european-data-portal/MetadataTransformerService,https://gitlab.com/european-data-portal/MetadataTransformerService/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__MetadataTransformerService/pom.xml,european-data-portal__MetadataTransformerService,Versioning,missing,,org.picketlink/picketlink,version specifier is missing,39,pom.xml,european-data-portal,european-data-portal/MetadataTransformerService +european-data-portal__MetadataTransformerService__Versioning__eu-transformer-MetadataTransformerService-1-0-0__org-picketlink-picketlink-idm-simple-schema__missing,https://gitlab.com/european-data-portal/MetadataTransformerService,https://gitlab.com/european-data-portal/MetadataTransformerService/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/european-data-portal__MetadataTransformerService/pom.xml,european-data-portal__MetadataTransformerService,Versioning,missing,,org.picketlink/picketlink-idm-simple-schema,version specifier is missing,43,pom.xml,european-data-portal,european-data-portal/MetadataTransformerService +pushrocks__gulp-function__Job-Allow-Failure__pages,https://gitlab.com/pushrocks/gulp-function,https://gitlab.com/pushrocks/gulp-function/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__gulp-function/.gitlab-ci.yml,pushrocks__gulp-function,Job-Allow-Failure,,metadata,pages,Allows failure of job `pages` at stage `metadata`,108,.gitlab-ci.yml,pushrocks,pushrocks/gulp-function +pushrocks__gulp-function__Job-Allow-Failure__codequality,https://gitlab.com/pushrocks/gulp-function,https://gitlab.com/pushrocks/gulp-function/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pushrocks__gulp-function/.gitlab-ci.yml,pushrocks__gulp-function,Job-Allow-Failure,,metadata,codequality,Allows failure of job `codequality` at stage `metadata`,84,.gitlab-ci.yml,pushrocks,pushrocks/gulp-function +mbukatov__pylatest__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/mbukatov/pylatest,https://gitlab.com/mbukatov/pylatest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbukatov__pylatest/.gitlab-ci.yml,mbukatov__pylatest,Versioning,missing,,sphinx,version specifier is missing,9,.gitlab-ci.yml,mbukatov,mbukatov/pylatest +mikefromit__sir-bot-a-lot__Versioning__requirementstxt__-rrequirements-production-txt__missing,https://gitlab.com/mikefromit/sir-bot-a-lot,https://gitlab.com/mikefromit/sir-bot-a-lot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mikefromit__sir-bot-a-lot/requirements.txt,mikefromit__sir-bot-a-lot,Versioning,missing,,-rrequirements/production.txt,version specifier is missing,-1,requirements.txt,mikefromit,mikefromit/sir-bot-a-lot +digested__node-digest__Job-Retry__build-jest,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:jest,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-jest-graphql,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:jest-graphql,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-nightwatch,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:nightwatch,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__release,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,deploy,release,2,114,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__firefox,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,e2e,firefox,2,79,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-scripts,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:scripts,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__pages,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,deploy,pages,2,114,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-jest-babel,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:jest-babel,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-react,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-react,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript-library,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript-library,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-vanilla,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-vanilla,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-library,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-library,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript-react-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript-react-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__chrome,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,e2e,chrome,2,79,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript-library-react-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript-library-react-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-jest-typescript,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:jest-typescript,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-react-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-react-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-express-pre-compressed-assets,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:express-pre-compressed-assets,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-jest-react,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:jest-react,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-webpack-workbox,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:webpack-workbox,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__lint,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,lint,2,49,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__unit,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,unit,2,49,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__install,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,install,install,2,40,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-webpack-express,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:webpack-express,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-library-react-cssModules,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-library-react-cssModules,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-babel,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:babel,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-demo-typescript-react,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,test,build:demo-typescript-react,2,72,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-express,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:express,2,45,.gitlab-ci.yml,digested,digested/node-digest +digested__node-digest__Job-Retry__build-webpack,https://gitlab.com/digested/node-digest,https://gitlab.com/digested/node-digest/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/digested__node-digest/.gitlab-ci.yml,digested__node-digest,Job-Retry,always,build,build:webpack,2,45,.gitlab-ci.yml,digested,digested/node-digest +resume__resume-gitlab-io__Job-Allow-Failure__deploy-production,https://gitlab.com/resume/resume.gitlab.io,https://gitlab.com/resume/resume.gitlab.io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/resume__resume.gitlab.io/.gitlab-ci.yml,resume__resume.gitlab.io,Job-Allow-Failure,,deploy,deploy-production,Allows failure of job `deploy-production` at stage `deploy`,21,.gitlab-ci.yml,resume,resume/resume.gitlab.io +FraME-projects__PyFraME__Versioning__requirementstxt__numpy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/requirements.txt,FraME-projects__PyFraME,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Versioning__requirementstxt__scipy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/requirements.txt,FraME-projects__PyFraME,Versioning,missing,,scipy,version specifier is missing,2,requirements.txt,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Versioning,missing,,numpy,version specifier is missing,11,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Versioning__gitlabyaml__scipy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Versioning,missing,,scipy,version specifier is missing,12,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Versioning__gitlabyaml__numpy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Versioning,missing,,numpy,version specifier is missing,11,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Versioning__gitlabyaml__scipy__missing,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Versioning,missing,,scipy,version specifier is missing,12,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Job-Allow-Failure__code_quality,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Job-Allow-Failure,,quality,code_quality,Allows failure of job `code_quality` at stage `quality`,34,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Job-Allow-Failure__codecov,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Job-Allow-Failure,,coverage,codecov,Allows failure of job `codecov` at stage `coverage`,53,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Job-Retry__code_quality,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Job-Retry,always,quality,code_quality,2,34,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +FraME-projects__PyFraME__Job-Retry__codecov,https://gitlab.com/FraME-projects/PyFraME,https://gitlab.com/FraME-projects/PyFraME/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/FraME-projects__PyFraME/.gitlab-ci.yml,FraME-projects__PyFraME,Job-Retry,always,coverage,codecov,2,53,.gitlab-ci.yml,FraME-projects,FraME-projects/PyFraME +mvgames__ataque_zombie__Manual-Job__bin_linux_en,https://gitlab.com/mvgames/ataque_zombie,https://gitlab.com/mvgames/ataque_zombie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mvgames__ataque_zombie/.gitlab-ci.yml,mvgames__ataque_zombie,Manual-Job,,build,bin_linux_en,Manual job `bin_linux_en` at stage `build`,19,.gitlab-ci.yml,mvgames,mvgames/ataque_zombie +mvgames__ataque_zombie__Manual-Job__bin_linux,https://gitlab.com/mvgames/ataque_zombie,https://gitlab.com/mvgames/ataque_zombie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mvgames__ataque_zombie/.gitlab-ci.yml,mvgames__ataque_zombie,Manual-Job,,build,bin_linux,Manual job `bin_linux` at stage `build`,5,.gitlab-ci.yml,mvgames,mvgames/ataque_zombie +mvgames__ataque_zombie__Manual-Job__bin_windows_en,https://gitlab.com/mvgames/ataque_zombie,https://gitlab.com/mvgames/ataque_zombie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mvgames__ataque_zombie/.gitlab-ci.yml,mvgames__ataque_zombie,Manual-Job,,build,bin_windows_en,Manual job `bin_windows_en` at stage `build`,47,.gitlab-ci.yml,mvgames,mvgames/ataque_zombie +mvgames__ataque_zombie__Manual-Job__bin_windows,https://gitlab.com/mvgames/ataque_zombie,https://gitlab.com/mvgames/ataque_zombie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mvgames__ataque_zombie/.gitlab-ci.yml,mvgames__ataque_zombie,Manual-Job,,build,bin_windows,Manual job `bin_windows` at stage `build`,33,.gitlab-ci.yml,mvgames,mvgames/ataque_zombie +zefiris__tenhou-client__Manual-Job__bot,https://gitlab.com/zefiris/tenhou-client,https://gitlab.com/zefiris/tenhou-client/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/zefiris__tenhou-client/.gitlab-ci.yml,zefiris__tenhou-client,Manual-Job,,test,bot,Manual job `bot` at stage `test`,3,.gitlab-ci.yml,zefiris,zefiris/tenhou-client +finding-ray__antikythera__Versioning__requirementstxt__appdirs__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,appdirs,version specifier is missing,1,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__logbook__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,logbook,version specifier is missing,2,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__pyshark__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,pyshark,version specifier is missing,3,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,sphinx,version specifier is missing,4,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,5,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__wheel__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,wheel,version specifier is missing,6,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Versioning__requirementstxt__libsass__missing,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/requirements.txt,finding-ray__antikythera,Versioning,missing,,libsass,version specifier is missing,7,requirements.txt,finding-ray,finding-ray/antikythera +finding-ray__antikythera__Job-Allow-Failure__test_armv7l,https://gitlab.com/finding-ray/antikythera,https://gitlab.com/finding-ray/antikythera/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/finding-ray__antikythera/.gitlab-ci.yml,finding-ray__antikythera,Job-Allow-Failure,,test,test_armv7l,Allows failure of job `test_armv7l` at stage `test`,27,.gitlab-ci.yml,finding-ray,finding-ray/antikythera +jlack__rdl__Job-Retry__build_and_test,https://gitlab.com/jlack/rdl,https://gitlab.com/jlack/rdl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jlack__rdl/.gitlab-ci.yml,jlack__rdl,Job-Retry,always,test,build_and_test,1,16,.gitlab-ci.yml,jlack,jlack/rdl +oly-exams__exam_tools__Versioning__requirementstxt__future__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,future,version specifier is missing,1,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-crispy-forms__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,django-crispy-forms,version specifier is missing,3,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-rest-swagger__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,django-rest-swagger,version specifier is missing,6,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-polymorphic__only-major-number,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,only-major-number,,django-polymorphic,"version specifier `<2` only refers to a major release, concrete minor versions might be incompatible",7,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-dbbackup__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,django-dbbackup,version specifier is missing,8,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__tornado__only-major-number,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,only-major-number,,tornado,"version specifier `>=5,<6` only refers to a major release, concrete minor versions might be incompatible",9,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__pywebpush__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,pywebpush,version specifier is missing,10,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-filter__only-major-number,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,only-major-number,,django-filter,"version specifier `<2` only refers to a major release, concrete minor versions might be incompatible",11,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__CairoSVG__any-minor-number,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,any-minor-number,,CairoSVG,"version specifier `==1.*` matches any minor release, even future versions that might become incompatible",12,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__python-barcode__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,python-barcode,version specifier is missing,13,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__PyPDF2__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,PyPDF2,version specifier is missing,14,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__mkdocs__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,mkdocs,version specifier is missing,15,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__Celery__any-minor-number,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,any-minor-number,,Celery,"version specifier `==3.*` matches any minor release, even future versions that might become incompatible",16,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__django-celery__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,django-celery,version specifier is missing,17,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__flower__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,flower,version specifier is missing,18,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__requests__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,requests,version specifier is missing,19,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__appypod__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,appypod,version specifier is missing,20,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,Pillow,version specifier is missing,21,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__lxml__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,lxml,version specifier is missing,22,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__html5lib__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,html5lib,version specifier is missing,23,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__bs4__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,bs4,version specifier is missing,24,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__qrcode__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,qrcode,version specifier is missing,25,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__Wand__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,Wand,version specifier is missing,26,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__python-dateutil__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,python-dateutil,version specifier is missing,27,requirements.txt,oly-exams,oly-exams/exam_tools +oly-exams__exam_tools__Versioning__requirementstxt__cssutils__missing,https://gitlab.com/oly-exams/exam_tools,https://gitlab.com/oly-exams/exam_tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/oly-exams__exam_tools/requirements.txt,oly-exams__exam_tools,Versioning,missing,,cssutils,version specifier is missing,28,requirements.txt,oly-exams,oly-exams/exam_tools +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_4_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_4_additional,Allows failure of job `grade_week_4_additional` at stage `test`,145,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_5_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_5_additional,Allows failure of job `grade_week_5_additional` at stage `test`,179,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__check_week_4_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,build,check_week_4_additional,Allows failure of job `check_week_4_additional` at stage `build`,134,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_3_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_3_additional,Allows failure of job `grade_week_3_additional` at stage `test`,87,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_2_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_2_additional,Allows failure of job `grade_week_2_additional` at stage `test`,51,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_1_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_1_additional,Allows failure of job `grade_week_1_additional` at stage `test`,20,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_7_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_7_additional,Allows failure of job `grade_week_7_additional` at stage `test`,248,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +CSUI-AdvProg-2017__lab-exercises__Job-Allow-Failure__grade_week_6_additional,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises,https://gitlab.com/CSUI-AdvProg-2017/lab-exercises/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/CSUI-AdvProg-2017__lab-exercises/.gitlab-ci.yml,CSUI-AdvProg-2017__lab-exercises,Job-Allow-Failure,,test,grade_week_6_additional,Allows failure of job `grade_week_6_additional` at stage `test`,213,.gitlab-ci.yml,CSUI-AdvProg-2017,CSUI-AdvProg-2017/lab-exercises +aaronkho__GPR1D__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/aaronkho/GPR1D,https://gitlab.com/aaronkho/GPR1D/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aaronkho__GPR1D/.gitlab-ci.yml,aaronkho__GPR1D,Versioning,missing,,sphinx,version specifier is missing,52,.gitlab-ci.yml,aaronkho,aaronkho/GPR1D +Orange-OpenSource__gitlab-buildpkg-tools__Manual-Job__build_ubuntu_artful,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools,https://gitlab.com/Orange-OpenSource/gitlab-buildpkg-tools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__gitlab-buildpkg-tools/.gitlab-ci.yml,Orange-OpenSource__gitlab-buildpkg-tools,Manual-Job,,test,build_ubuntu_artful,Manual job `build_ubuntu_artful` at stage `test`,68,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/gitlab-buildpkg-tools +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,85,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,85,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_DOCKER_COMPOSE__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_DOCKER_COMPOSE,version specifier is missing,132,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,85,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,85,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +librespacefoundation__satnogs__satnogs-db__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-db,https://gitlab.com/librespacefoundation/satnogs/satnogs-db/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-db/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-db,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,85,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-db +gitlab-org__gitlab-ci-multi-runner-backup__Job-Allow-Failure__integration-windows,https://gitlab.com/gitlab-org/gitlab-ci-multi-runner-backup,https://gitlab.com/gitlab-org/gitlab-ci-multi-runner-backup/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-ci-multi-runner-backup/.gitlab-ci.yml,gitlab-org__gitlab-ci-multi-runner-backup,Job-Allow-Failure,,test,integration windows,Allows failure of job `integration windows` at stage `test`,111,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-ci-multi-runner-backup +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__markdown__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,markdown,version specifier is missing,166,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__pygments__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,pygments,version specifier is missing,166,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +almarklein__bsdf__Versioning__gitlabyaml__invoke__missing,https://gitlab.com/almarklein/bsdf,https://gitlab.com/almarklein/bsdf/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/almarklein__bsdf/.gitlab-ci.yml,almarklein__bsdf,Versioning,missing,,invoke,version specifier is missing,9,.gitlab-ci.yml,almarklein,almarklein/bsdf +fpdpy__fpd__Versioning__gitlabyaml__tqdm__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,tqdm,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__scikit__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,scikit,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__tqdm__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,tqdm,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__scikit__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,scikit,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__tqdm__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,tqdm,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__scikit__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,scikit,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__tqdm__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,tqdm,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__scikit__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,scikit,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__hyperspy__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,hyperspy,version specifier is missing,13,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__tqdm__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,tqdm,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Versioning__gitlabyaml__scikit__missing,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Versioning,missing,,scikit,version specifier is missing,11,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Job-Allow-Failure__test_docstrings-p3,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Job-Allow-Failure,,test,test_docstrings:p3,Allows failure of job `test_docstrings:p3` at stage `test`,58,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Job-Allow-Failure__test-p2,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Job-Allow-Failure,,test,test:p2,Allows failure of job `test:p2` at stage `test`,1,.gitlab-ci.yml,fpdpy,fpdpy/fpd +fpdpy__fpd__Job-Allow-Failure__test-p3_latest,https://gitlab.com/fpdpy/fpd,https://gitlab.com/fpdpy/fpd/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fpdpy__fpd/.gitlab-ci.yml,fpdpy__fpd,Job-Allow-Failure,,test,test:p3_latest,Allows failure of job `test:p3_latest` at stage `test`,44,.gitlab-ci.yml,fpdpy,fpdpy/fpd +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__numpy__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,numpy,version specifier is missing,2,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__pymongo__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,pymongo,version specifier is missing,3,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__ete3__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,ete3,version specifier is missing,4,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__tqdm__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,tqdm,version specifier is missing,5,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__cigar__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,cigar,version specifier is missing,6,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__h5py__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,h5py,version specifier is missing,7,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__matplotlib__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,matplotlib,version specifier is missing,8,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__xlrd__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,xlrd,version specifier is missing,10,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +ModernisingMedicalMicrobiology__CRuMPIT__Versioning__requirementstxt__bokeh__missing,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT,https://gitlab.com/ModernisingMedicalMicrobiology/CRuMPIT/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ModernisingMedicalMicrobiology__CRuMPIT/requirements.txt,ModernisingMedicalMicrobiology__CRuMPIT,Versioning,missing,,bokeh,version specifier is missing,11,requirements.txt,ModernisingMedicalMicrobiology,ModernisingMedicalMicrobiology/CRuMPIT +inkscape__inkscape-docs__documentation__Job-Allow-Failure__statistics,https://gitlab.com/inkscape/inkscape-docs/documentation,https://gitlab.com/inkscape/inkscape-docs/documentation/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/inkscape__inkscape-docs__documentation/.gitlab-ci.yml,inkscape__inkscape-docs__documentation,Job-Allow-Failure,,build,statistics,Allows failure of job `statistics` at stage `build`,44,.gitlab-ci.yml,inkscape,inkscape/inkscape-docs/documentation +NERSC__nersc-gitlab-io__Job-Allow-Failure__check_links,https://gitlab.com/NERSC/nersc.gitlab.io,https://gitlab.com/NERSC/nersc.gitlab.io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NERSC__nersc.gitlab.io/.gitlab-ci.yml,NERSC__nersc.gitlab.io,Job-Allow-Failure,,test,check_links,Allows failure of job `check_links` at stage `test`,56,.gitlab-ci.yml,NERSC,NERSC/nersc.gitlab.io +NERSC__nersc-gitlab-io__Job-Allow-Failure__markdown_lint,https://gitlab.com/NERSC/nersc.gitlab.io,https://gitlab.com/NERSC/nersc.gitlab.io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NERSC__nersc.gitlab.io/.gitlab-ci.yml,NERSC__nersc.gitlab.io,Job-Allow-Failure,,test,markdown_lint,Allows failure of job `markdown_lint` at stage `test`,9,.gitlab-ci.yml,NERSC,NERSC/nersc.gitlab.io +NERSC__nersc-gitlab-io__Job-Allow-Failure__filesize,https://gitlab.com/NERSC/nersc.gitlab.io,https://gitlab.com/NERSC/nersc.gitlab.io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NERSC__nersc.gitlab.io/.gitlab-ci.yml,NERSC__nersc.gitlab.io,Job-Allow-Failure,,test,filesize,Allows failure of job `filesize` at stage `test`,20,.gitlab-ci.yml,NERSC,NERSC/nersc.gitlab.io +smallstack__infrastructure__gitlab-runner-cli__Manual-Job__execute,https://gitlab.com/smallstack/infrastructure/gitlab-runner-cli,https://gitlab.com/smallstack/infrastructure/gitlab-runner-cli/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/smallstack__infrastructure__gitlab-runner-cli/.gitlab-ci.yml,smallstack__infrastructure__gitlab-runner-cli,Manual-Job,,test,execute,Manual job `execute` at stage `test`,3,.gitlab-ci.yml,smallstack,smallstack/infrastructure/gitlab-runner-cli +tessia-project__tessia-baselib__Versioning__requirementstxt__paramiko__any-upper-version,https://gitlab.com/tessia-project/tessia-baselib,https://gitlab.com/tessia-project/tessia-baselib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia-baselib/requirements.txt,tessia-project__tessia-baselib,Versioning,any-upper-version,,paramiko,version specifier `>=1.16` matches future versions that might become incompatible,2,requirements.txt,tessia-project,tessia-project/tessia-baselib +tessia-project__tessia-baselib__Versioning__requirementstxt__PyYAML__any-upper-version,https://gitlab.com/tessia-project/tessia-baselib,https://gitlab.com/tessia-project/tessia-baselib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia-baselib/requirements.txt,tessia-project__tessia-baselib,Versioning,any-upper-version,,PyYAML,version specifier `>=3.11` matches future versions that might become incompatible,3,requirements.txt,tessia-project,tessia-project/tessia-baselib +tessia-project__tessia-baselib__Versioning__requirementstxt__jsonschema__any-upper-version,https://gitlab.com/tessia-project/tessia-baselib,https://gitlab.com/tessia-project/tessia-baselib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia-baselib/requirements.txt,tessia-project__tessia-baselib,Versioning,any-upper-version,,jsonschema,version specifier `>=2.5.1` matches future versions that might become incompatible,4,requirements.txt,tessia-project,tessia-project/tessia-baselib +tessia-project__tessia-baselib__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/tessia-project/tessia-baselib,https://gitlab.com/tessia-project/tessia-baselib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia-baselib/requirements.txt,tessia-project__tessia-baselib,Versioning,any-upper-version,,requests,version specifier `>=2.10.0` matches future versions that might become incompatible,5,requirements.txt,tessia-project,tessia-project/tessia-baselib +tessia-project__tessia-baselib__Versioning__requirementstxt__zhmcclient__any-upper-version,https://gitlab.com/tessia-project/tessia-baselib,https://gitlab.com/tessia-project/tessia-baselib/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia-baselib/requirements.txt,tessia-project__tessia-baselib,Versioning,any-upper-version,,zhmcclient,version specifier `>=0.22.0` matches future versions that might become incompatible,6,requirements.txt,tessia-project,tessia-project/tessia-baselib +linux-wiiu__debian-wiiu-repo__Manual-Job__make-pkgs,https://gitlab.com/linux-wiiu/debian-wiiu-repo,https://gitlab.com/linux-wiiu/debian-wiiu-repo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/linux-wiiu__debian-wiiu-repo/.gitlab-ci.yml,linux-wiiu__debian-wiiu-repo,Manual-Job,,build,make-pkgs,Manual job `make-pkgs` at stage `build`,3,.gitlab-ci.yml,linux-wiiu,linux-wiiu/debian-wiiu-repo +costrouc__pysrim__Versioning__gitlabyaml__twine__missing,https://gitlab.com/costrouc/pysrim,https://gitlab.com/costrouc/pysrim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/costrouc__pysrim/.gitlab-ci.yml,costrouc__pysrim,Versioning,missing,,twine,version specifier is missing,26,.gitlab-ci.yml,costrouc,costrouc/pysrim +Flockademic__plaudit__Job-Retry__e2e-firefox,https://gitlab.com/Flockademic/plaudit,https://gitlab.com/Flockademic/plaudit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Flockademic__plaudit/.gitlab-ci.yml,Flockademic__plaudit,Job-Retry,always,confidenceCheck,e2e:firefox,2,219,.gitlab-ci.yml,Flockademic,Flockademic/plaudit +Flockademic__plaudit__Job-Retry__e2e-chrome,https://gitlab.com/Flockademic/plaudit,https://gitlab.com/Flockademic/plaudit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Flockademic__plaudit/.gitlab-ci.yml,Flockademic__plaudit,Job-Retry,always,confidenceCheck,e2e:chrome,2,244,.gitlab-ci.yml,Flockademic,Flockademic/plaudit +Salamek__gitlab-tools__Versioning__requirementstxt__Flask-Celery-Helper__any-upper-version,https://gitlab.com/Salamek/gitlab-tools,https://gitlab.com/Salamek/gitlab-tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__gitlab-tools/requirements.txt,Salamek__gitlab-tools,Versioning,any-upper-version,,Flask-Celery-Helper,version specifier `>=1.1.0` matches future versions that might become incompatible,4,requirements.txt,Salamek,Salamek/gitlab-tools +Salamek__gitlab-tools__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/Salamek/gitlab-tools,https://gitlab.com/Salamek/gitlab-tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__gitlab-tools/requirements.txt,Salamek__gitlab-tools,Versioning,any-upper-version,,requests,version specifier `>=2.20.0` matches future versions that might become incompatible,11,requirements.txt,Salamek,Salamek/gitlab-tools +Salamek__gitlab-tools__Versioning__requirementstxt__pycrypto__any-upper-version,https://gitlab.com/Salamek/gitlab-tools,https://gitlab.com/Salamek/gitlab-tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__gitlab-tools/requirements.txt,Salamek__gitlab-tools,Versioning,any-upper-version,,pycrypto,version specifier `>=2.6.1` matches future versions that might become incompatible,14,requirements.txt,Salamek,Salamek/gitlab-tools +Salamek__gitlab-tools__Versioning__requirementstxt__paramiko__any-upper-version,https://gitlab.com/Salamek/gitlab-tools,https://gitlab.com/Salamek/gitlab-tools/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Salamek__gitlab-tools/requirements.txt,Salamek__gitlab-tools,Versioning,any-upper-version,,paramiko,version specifier `>=2.4.2` matches future versions that might become incompatible,17,requirements.txt,Salamek,Salamek/gitlab-tools +videlec__pplpy__Versioning__requirementstxt__wheel__missing,https://gitlab.com/videlec/pplpy,https://gitlab.com/videlec/pplpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/videlec__pplpy/requirements.txt,videlec__pplpy,Versioning,missing,,wheel,version specifier is missing,2,requirements.txt,videlec,videlec/pplpy +videlec__pplpy__Versioning__requirementstxt__Cython__missing,https://gitlab.com/videlec/pplpy,https://gitlab.com/videlec/pplpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/videlec__pplpy/requirements.txt,videlec__pplpy,Versioning,missing,,Cython,version specifier is missing,3,requirements.txt,videlec,videlec/pplpy +videlec__pplpy__Versioning__requirementstxt__cysignals__missing,https://gitlab.com/videlec/pplpy,https://gitlab.com/videlec/pplpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/videlec__pplpy/requirements.txt,videlec__pplpy,Versioning,missing,,cysignals,version specifier is missing,4,requirements.txt,videlec,videlec/pplpy +videlec__pplpy__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/videlec/pplpy,https://gitlab.com/videlec/pplpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/videlec__pplpy/requirements.txt,videlec__pplpy,Versioning,missing,,sphinx,version specifier is missing,6,requirements.txt,videlec,videlec/pplpy +JuliaGPU__LLVM-jl__Job-Allow-Failure__test-1-3,https://gitlab.com/JuliaGPU/LLVM.jl,https://gitlab.com/JuliaGPU/LLVM.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__LLVM.jl/.gitlab-ci.yml,JuliaGPU__LLVM.jl,Job-Allow-Failure,,test,test:1.3,Allows failure of job `test:1.3` at stage `test`,22,.gitlab-ci.yml,JuliaGPU,JuliaGPU/LLVM.jl +JuliaGPU__LLVM-jl__Job-Allow-Failure__test-nightly,https://gitlab.com/JuliaGPU/LLVM.jl,https://gitlab.com/JuliaGPU/LLVM.jl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/JuliaGPU__LLVM.jl/.gitlab-ci.yml,JuliaGPU__LLVM.jl,Job-Allow-Failure,,test,test:nightly,Allows failure of job `test:nightly` at stage `test`,28,.gitlab-ci.yml,JuliaGPU,JuliaGPU/LLVM.jl +OsloMet-ABI__nikita-noark5-core__Job-Allow-Failure__noark5tester-inoutin,https://gitlab.com/OsloMet-ABI/nikita-noark5-core,https://gitlab.com/OsloMet-ABI/nikita-noark5-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/OsloMet-ABI__nikita-noark5-core/.gitlab-ci.yml,OsloMet-ABI__nikita-noark5-core,Job-Allow-Failure,,use,noark5tester-inoutin,Allows failure of job `noark5tester-inoutin` at stage `use`,35,.gitlab-ci.yml,OsloMet-ABI,OsloMet-ABI/nikita-noark5-core +OsloMet-ABI__nikita-noark5-core__Job-Allow-Failure__dependency_scanning,https://gitlab.com/OsloMet-ABI/nikita-noark5-core,https://gitlab.com/OsloMet-ABI/nikita-noark5-core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/OsloMet-ABI__nikita-noark5-core/.gitlab-ci.yml,OsloMet-ABI__nikita-noark5-core,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,84,.gitlab-ci.yml,OsloMet-ABI,OsloMet-ABI/nikita-noark5-core +aurorafossorg__p__framework__core__Job-Allow-Failure__x86_64-linux-dub-gdc-debug,https://gitlab.com/aurorafossorg/p/framework/core,https://gitlab.com/aurorafossorg/p/framework/core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__p__framework__core/.gitlab-ci.yml,aurorafossorg__p__framework__core,Job-Allow-Failure,,build,x86_64-linux-dub-gdc-debug,Allows failure of job `x86_64-linux-dub-gdc-debug` at stage `build`,130,.gitlab-ci.yml,aurorafossorg,aurorafossorg/p/framework/core +aurorafossorg__p__framework__core__Job-Allow-Failure__x86-linux-dub-gdc-debug,https://gitlab.com/aurorafossorg/p/framework/core,https://gitlab.com/aurorafossorg/p/framework/core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__p__framework__core/.gitlab-ci.yml,aurorafossorg__p__framework__core,Job-Allow-Failure,,build,x86-linux-dub-gdc-debug,Allows failure of job `x86-linux-dub-gdc-debug` at stage `build`,139,.gitlab-ci.yml,aurorafossorg,aurorafossorg/p/framework/core +aurorafossorg__p__framework__core__Job-Allow-Failure__codestyle,https://gitlab.com/aurorafossorg/p/framework/core,https://gitlab.com/aurorafossorg/p/framework/core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__p__framework__core/.gitlab-ci.yml,aurorafossorg__p__framework__core,Job-Allow-Failure,,check,codestyle,Allows failure of job `codestyle` at stage `check`,47,.gitlab-ci.yml,aurorafossorg,aurorafossorg/p/framework/core +aurorafossorg__p__framework__core__Job-Allow-Failure__editorconfig,https://gitlab.com/aurorafossorg/p/framework/core,https://gitlab.com/aurorafossorg/p/framework/core/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aurorafossorg__p__framework__core/.gitlab-ci.yml,aurorafossorg__p__framework__core,Job-Allow-Failure,,check,editorconfig,Allows failure of job `editorconfig` at stage `check`,60,.gitlab-ci.yml,aurorafossorg,aurorafossorg/p/framework/core +Tmpod__cyborgtoast__Versioning__requirementstxt__git-https---gitlab-com-koyagami-libneko__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,git+https://gitlab.com/koyagami/libneko,version specifier is missing,3,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__git-https---github-com-rapptz-discord-py-rewrite__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,git+https://github.com/rapptz/discord.py@rewrite,version specifier is missing,4,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__aiohttp__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,aiohttp,version specifier is missing,5,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__aioredis__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,aioredis,version specifier is missing,8,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__motor__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,motor,version specifier is missing,9,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__uvloop__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,uvloop,version specifier is missing,12,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__async_timeout__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,async_timeout,version specifier is missing,16,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__psutil__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,psutil,version specifier is missing,17,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__mcstatus__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,mcstatus,version specifier is missing,18,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__emoji__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,emoji,version specifier is missing,19,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,PyYAML,version specifier is missing,21,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__aiofiles__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,aiofiles,version specifier is missing,15,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__requests__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,requests,version specifier is missing,24,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__bs4__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,bs4,version specifier is missing,25,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__discordlists-py__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,discordlists.py,version specifier is missing,26,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__aiodns__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,aiodns,version specifier is missing,29,requirements.txt,Tmpod,Tmpod/cyborgtoast +Tmpod__cyborgtoast__Versioning__requirementstxt__cchardet__missing,https://gitlab.com/Tmpod/cyborgtoast,https://gitlab.com/Tmpod/cyborgtoast/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Tmpod__cyborgtoast/requirements.txt,Tmpod__cyborgtoast,Versioning,missing,,cchardet,version specifier is missing,30,requirements.txt,Tmpod,Tmpod/cyborgtoast +ColoradoSchoolOfMines__visplay__Job-Allow-Failure__lint_python,https://gitlab.com/ColoradoSchoolOfMines/visplay,https://gitlab.com/ColoradoSchoolOfMines/visplay/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ColoradoSchoolOfMines__visplay/.gitlab-ci.yml,ColoradoSchoolOfMines__visplay,Job-Allow-Failure,,test,lint_python,Allows failure of job `lint_python` at stage `test`,61,.gitlab-ci.yml,ColoradoSchoolOfMines,ColoradoSchoolOfMines/visplay +picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,swiglpk,version specifier is missing,11,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__smcp__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,smcp,version specifier is missing,11,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,sphinx,version specifier is missing,32,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,swiglpk,version specifier is missing,11,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,sphinx,version specifier is missing,32,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,sphinx,version specifier is missing,32,.gitlab-ci.yml,picos-api,picos-api/picos +picos-api__picos__Versioning__gitlabyaml__swiglpk__missing,https://gitlab.com/picos-api/picos,https://gitlab.com/picos-api/picos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/picos-api__picos/.gitlab-ci.yml,picos-api__picos,Versioning,missing,,swiglpk,version specifier is missing,11,.gitlab-ci.yml,picos-api,picos-api/picos +dosuken123__thin-gdk__Job-Retry__test-runner,https://gitlab.com/dosuken123/thin-gdk,https://gitlab.com/dosuken123/thin-gdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dosuken123__thin-gdk/.gitlab-ci.yml,dosuken123__thin-gdk,Job-Retry,always,test,test:runner,2,84,.gitlab-ci.yml,dosuken123,dosuken123/thin-gdk +codeearth__drawdown__Versioning__requirementstxt__altair__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,altair,version specifier `>=3.1.0` matches future versions that might become incompatible,1,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__bqplot__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,bqplot,version specifier `>=0.11.6` matches future versions that might become incompatible,2,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__fair__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,fair,version specifier `>=1.4` matches future versions that might become incompatible,3,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__ipyvolume__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,ipyvolume,version specifier `>=0.5.1` matches future versions that might become incompatible,4,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__ipywidgets__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,ipywidgets,version specifier `>=7.5.0` matches future versions that might become incompatible,5,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__jsonschema__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,jsonschema,version specifier `>=3.0.1` matches future versions that might become incompatible,6,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__jupyterlab__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,jupyterlab,version specifier `>=1.0.1` matches future versions that might become incompatible,7,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__matplotlib__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,matplotlib,version specifier `>=3.1.1` matches future versions that might become incompatible,8,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__numpy__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,numpy,version specifier `>=1.16.4` matches future versions that might become incompatible,9,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__pillow__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,pillow,version specifier `>=6.0.0` matches future versions that might become incompatible,11,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__qgrid__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,qgrid,version specifier `>=1.1.1` matches future versions that might become incompatible,14,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__scipy__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,scipy,version specifier `>=1.3.0` matches future versions that might become incompatible,15,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__xarray__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,xarray,version specifier `>=0.12.3` matches future versions that might become incompatible,16,requirements.txt,codeearth,codeearth/drawdown +codeearth__drawdown__Versioning__requirementstxt__xlrd__any-upper-version,https://gitlab.com/codeearth/drawdown,https://gitlab.com/codeearth/drawdown/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codeearth__drawdown/requirements.txt,codeearth__drawdown,Versioning,any-upper-version,,xlrd,version specifier `>=1.2.0` matches future versions that might become incompatible,17,requirements.txt,codeearth,codeearth/drawdown +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__requests-socks-__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,requests[socks],version specifier is missing,4,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__pyyaml__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,pyyaml,version specifier is missing,6,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__xtesting__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,xtesting,version specifier is missing,7,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__oyaml__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,oyaml,version specifier is missing,8,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__openstacksdk__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,openstacksdk,version specifier is missing,9,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__requirementstxt__simplejson__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/requirements.txt,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,simplejson,version specifier is missing,10,requirements.txt,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap-tests,Versioning,missing,,virtualenv,version specifier is missing,90,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +Orange-OpenSource__lfn__onap__onap-tests__Job-Allow-Failure__vfwcl,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests,https://gitlab.com/Orange-OpenSource/lfn/onap/onap-tests/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Orange-OpenSource__lfn__onap__onap-tests/.gitlab-ci.yml,Orange-OpenSource__lfn__onap__onap-tests,Job-Allow-Failure,,VVP,vfwcl,Allows failure of job `vfwcl` at stage `VVP`,69,.gitlab-ci.yml,Orange-OpenSource,Orange-OpenSource/lfn/onap/onap-tests +remram44__taguette__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/remram44/taguette,https://gitlab.com/remram44/taguette/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/remram44__taguette/.gitlab-ci.yml,remram44__taguette,Versioning,missing,,psycopg2,version specifier is missing,48,.gitlab-ci.yml,remram44,remram44/taguette +gitlab-org__sidekiq-reliable-fetch__Job-Allow-Failure__integration_basic,https://gitlab.com/gitlab-org/sidekiq-reliable-fetch,https://gitlab.com/gitlab-org/sidekiq-reliable-fetch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__sidekiq-reliable-fetch/.gitlab-ci.yml,gitlab-org__sidekiq-reliable-fetch,Job-Allow-Failure,,test,integration_basic,Allows failure of job `integration_basic` at stage `test`,44,.gitlab-ci.yml,gitlab-org,gitlab-org/sidekiq-reliable-fetch +blendergeek__apps__Job-Allow-Failure__connected-29-default-x86_64,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 29 default x86_64,Allows failure of job `connected 29 default x86_64` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Allow-Failure__connected-23-default-x86,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 23 default x86,Allows failure of job `connected 23 default x86` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Allow-Failure__connected-25-default-x86,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 25 default x86,Allows failure of job `connected 25 default x86` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Allow-Failure__connected-26-google_apis-x86,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 26 google_apis x86,Allows failure of job `connected 26 google_apis x86` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Allow-Failure__connected-27-google_apis_playstore-x86,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 27 google_apis_playstore x86,Allows failure of job `connected 27 google_apis_playstore x86` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Allow-Failure__connected-28-default-x86_64,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Allow-Failure,,test,connected 28 default x86_64,Allows failure of job `connected 28 default x86_64` at stage `test`,128,.gitlab-ci.yml,blendergeek,blendergeek/apps +blendergeek__apps__Job-Retry__connected-22-default-armeabi-v7a,https://gitlab.com/blendergeek/apps,https://gitlab.com/blendergeek/apps/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/blendergeek__apps/.gitlab-ci.yml,blendergeek__apps,Job-Retry,always,test,connected 22 default armeabi-v7a,1,123,.gitlab-ci.yml,blendergeek,blendergeek/apps +cnpsaintmartin__arpa-network__Job-Allow-Failure__lint,https://gitlab.com/cnpsaintmartin/arpa-network,https://gitlab.com/cnpsaintmartin/arpa-network/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cnpsaintmartin__arpa-network/.gitlab-ci.yml,cnpsaintmartin__arpa-network,Job-Allow-Failure,,check,lint,Allows failure of job `lint` at stage `check`,59,.gitlab-ci.yml,cnpsaintmartin,cnpsaintmartin/arpa-network +efunb__read_input__Job-Allow-Failure__cratesio,https://gitlab.com/efunb/read_input,https://gitlab.com/efunb/read_input/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__read_input/.gitlab-ci.yml,efunb__read_input,Job-Allow-Failure,,publish,cratesio,Allows failure of job `cratesio` at stage `publish`,94,.gitlab-ci.yml,efunb,efunb/read_input +efunb__read_input__Job-Allow-Failure__clean-code,https://gitlab.com/efunb/read_input,https://gitlab.com/efunb/read_input/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__read_input/.gitlab-ci.yml,efunb__read_input,Job-Allow-Failure,,check,clean-code,Allows failure of job `clean-code` at stage `check`,13,.gitlab-ci.yml,efunb,efunb/read_input +efunb__read_input__Job-Allow-Failure__clippy,https://gitlab.com/efunb/read_input,https://gitlab.com/efunb/read_input/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/efunb__read_input/.gitlab-ci.yml,efunb__read_input,Job-Allow-Failure,,post-run,clippy,Allows failure of job `clippy` at stage `post-run`,108,.gitlab-ci.yml,efunb,efunb/read_input +codeshelter__codeshelter-web__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/codeshelter/codeshelter-web,https://gitlab.com/codeshelter/codeshelter-web/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/codeshelter__codeshelter-web/.gitlab-ci.yml,codeshelter__codeshelter-web,Versioning,missing,,virtualenv,version specifier is missing,13,.gitlab-ci.yml,codeshelter,codeshelter/codeshelter-web +codeshelter__codeshelter-web__Versioning__gitlabyaml__poetry__missing,https://gitlab.com/codeshelter/codeshelter-web,https://gitlab.com/codeshelter/codeshelter-web/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/codeshelter__codeshelter-web/.gitlab-ci.yml,codeshelter__codeshelter-web,Versioning,missing,,poetry,version specifier is missing,13,.gitlab-ci.yml,codeshelter,codeshelter/codeshelter-web +codeshelter__codeshelter-web__Versioning__gitlabyaml__pre__missing,https://gitlab.com/codeshelter/codeshelter-web,https://gitlab.com/codeshelter/codeshelter-web/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/codeshelter__codeshelter-web/.gitlab-ci.yml,codeshelter__codeshelter-web,Versioning,missing,,pre,version specifier is missing,13,.gitlab-ci.yml,codeshelter,codeshelter/codeshelter-web +deltares__rtc-tools-channel-flow__Versioning__gitlabyaml__twine__missing,https://gitlab.com/deltares/rtc-tools-channel-flow,https://gitlab.com/deltares/rtc-tools-channel-flow/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/deltares__rtc-tools-channel-flow/.gitlab-ci.yml,deltares__rtc-tools-channel-flow,Versioning,missing,,twine,version specifier is missing,25,.gitlab-ci.yml,deltares,deltares/rtc-tools-channel-flow +librespacefoundation__satnogs__satnogs-decoders__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-decoders/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-decoders,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,30,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-decoders +librespacefoundation__satnogs__satnogs-decoders__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-decoders/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-decoders,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,30,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-decoders +librespacefoundation__satnogs__satnogs-decoders__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-decoders/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-decoders,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,30,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-decoders +librespacefoundation__satnogs__satnogs-decoders__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TWINE__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders,https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-decoders/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-decoders,Versioning,missing,,$GITLAB_CI_PYPI_TWINE,version specifier is missing,57,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-decoders +nutanix__curie__Job-Allow-Failure__Curie-PyLint,https://gitlab.com/nutanix/curie,https://gitlab.com/nutanix/curie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nutanix__curie/.gitlab-ci.yml,nutanix__curie,Job-Allow-Failure,,Coverage/Quality,Curie PyLint,Allows failure of job `Curie PyLint` at stage `Coverage/Quality`,158,.gitlab-ci.yml,nutanix,nutanix/curie +nutanix__curie__Job-Allow-Failure__Code-Quality,https://gitlab.com/nutanix/curie,https://gitlab.com/nutanix/curie/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nutanix__curie/.gitlab-ci.yml,nutanix__curie,Job-Allow-Failure,,Coverage/Quality,Code Quality,Allows failure of job `Code Quality` at stage `Coverage/Quality`,174,.gitlab-ci.yml,nutanix,nutanix/curie +vindarel__bookshops__Versioning__requirementstxt__-e-__missing,https://gitlab.com/vindarel/bookshops,https://gitlab.com/vindarel/bookshops/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vindarel__bookshops/requirements.txt,vindarel__bookshops,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,vindarel,vindarel/bookshops +artem-sidorenko__chef-rkt__Job-Allow-Failure__kitchen-testing-packages,https://gitlab.com/artem-sidorenko/chef-rkt,https://gitlab.com/artem-sidorenko/chef-rkt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/artem-sidorenko__chef-rkt/.gitlab-ci.yml,artem-sidorenko__chef-rkt,Job-Allow-Failure,,test,kitchen testing packages,Allows failure of job `kitchen testing packages` at stage `test`,47,.gitlab-ci.yml,artem-sidorenko,artem-sidorenko/chef-rkt +rhab__PyOTRS__Versioning__requirementstxt__Click__any-upper-version,https://gitlab.com/rhab/PyOTRS,https://gitlab.com/rhab/PyOTRS/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rhab__PyOTRS/requirements.txt,rhab__PyOTRS,Versioning,any-upper-version,,Click,version specifier `>=7.0` matches future versions that might become incompatible,1,requirements.txt,rhab,rhab/PyOTRS +rhab__PyOTRS__Versioning__requirementstxt__colorama__any-upper-version,https://gitlab.com/rhab/PyOTRS,https://gitlab.com/rhab/PyOTRS/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rhab__PyOTRS/requirements.txt,rhab__PyOTRS,Versioning,any-upper-version,,colorama,version specifier `>=0.4.1` matches future versions that might become incompatible,2,requirements.txt,rhab,rhab/PyOTRS +rhab__PyOTRS__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/rhab/PyOTRS,https://gitlab.com/rhab/PyOTRS/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rhab__PyOTRS/requirements.txt,rhab__PyOTRS,Versioning,any-upper-version,,requests,version specifier `>=2.21.0` matches future versions that might become incompatible,3,requirements.txt,rhab,rhab/PyOTRS +rhab__PyOTRS__Versioning__requirementstxt__deprecation__missing,https://gitlab.com/rhab/PyOTRS,https://gitlab.com/rhab/PyOTRS/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/rhab__PyOTRS/requirements.txt,rhab__PyOTRS,Versioning,missing,,deprecation,version specifier is missing,4,requirements.txt,rhab,rhab/PyOTRS +harbottle__puppet-mattermost__Manual-Job__push,https://gitlab.com/harbottle/puppet-mattermost,https://gitlab.com/harbottle/puppet-mattermost/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/harbottle__puppet-mattermost/.gitlab-ci.yml,harbottle__puppet-mattermost,Manual-Job,,push,push,Manual job `push` at stage `push`,11,.gitlab-ci.yml,harbottle,harbottle/puppet-mattermost +PythonDevCommunity__pythondev-site__Versioning__requirementstxt__click__any-upper-version,https://gitlab.com/PythonDevCommunity/pythondev-site,https://gitlab.com/PythonDevCommunity/pythondev-site/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PythonDevCommunity__pythondev-site/requirements.txt,PythonDevCommunity__pythondev-site,Versioning,any-upper-version,,click,version specifier `>=5.0` matches future versions that might become incompatible,7,requirements.txt,PythonDevCommunity,PythonDevCommunity/pythondev-site +PythonDevCommunity__pythondev-site__Versioning__requirementstxt__gunicorn__any-upper-version,https://gitlab.com/PythonDevCommunity/pythondev-site,https://gitlab.com/PythonDevCommunity/pythondev-site/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PythonDevCommunity__pythondev-site/requirements.txt,PythonDevCommunity__pythondev-site,Versioning,any-upper-version,,gunicorn,version specifier `>=19.1.1` matches future versions that might become incompatible,18,requirements.txt,PythonDevCommunity,PythonDevCommunity/pythondev-site +PythonDevCommunity__pythondev-site__Versioning__requirementstxt__flask-security__missing,https://gitlab.com/PythonDevCommunity/pythondev-site,https://gitlab.com/PythonDevCommunity/pythondev-site/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PythonDevCommunity__pythondev-site/requirements.txt,PythonDevCommunity__pythondev-site,Versioning,missing,,flask-security,version specifier is missing,25,requirements.txt,PythonDevCommunity,PythonDevCommunity/pythondev-site +mbukatov__pytest-ansible-playbook__Versioning__gitlabyaml__ansible__missing,https://gitlab.com/mbukatov/pytest-ansible-playbook,https://gitlab.com/mbukatov/pytest-ansible-playbook/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbukatov__pytest-ansible-playbook/.gitlab-ci.yml,mbukatov__pytest-ansible-playbook,Versioning,missing,,ansible,version specifier is missing,9,.gitlab-ci.yml,mbukatov,mbukatov/pytest-ansible-playbook +mbukatov__pytest-ansible-playbook__Versioning__gitlabyaml__ansible__missing,https://gitlab.com/mbukatov/pytest-ansible-playbook,https://gitlab.com/mbukatov/pytest-ansible-playbook/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbukatov__pytest-ansible-playbook/.gitlab-ci.yml,mbukatov__pytest-ansible-playbook,Versioning,missing,,ansible,version specifier is missing,9,.gitlab-ci.yml,mbukatov,mbukatov/pytest-ansible-playbook +clorichel__vue-gitlab-api__Job-Allow-Failure__npm-publish,https://gitlab.com/clorichel/vue-gitlab-api,https://gitlab.com/clorichel/vue-gitlab-api/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/clorichel__vue-gitlab-api/.gitlab-ci.yml,clorichel__vue-gitlab-api,Job-Allow-Failure,,deploy,npm-publish,Allows failure of job `npm-publish` at stage `deploy`,17,.gitlab-ci.yml,clorichel,clorichel/vue-gitlab-api +MUSIT-Norway__musit-frontend__Manual-Job__build,https://gitlab.com/MUSIT-Norway/musit-frontend,https://gitlab.com/MUSIT-Norway/musit-frontend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/MUSIT-Norway__musit-frontend/.gitlab-ci.yml,MUSIT-Norway__musit-frontend,Manual-Job,,build,build,Manual job `build` at stage `build`,34,.gitlab-ci.yml,MUSIT-Norway,MUSIT-Norway/musit-frontend +alelec__gitlab-release__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/gitlab-release,https://gitlab.com/alelec/gitlab-release/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-release/.gitlab-ci.yml,alelec__gitlab-release,Versioning,missing,,wheel,version specifier is missing,13,.gitlab-ci.yml,alelec,alelec/gitlab-release +alelec__gitlab-release__Versioning__gitlabyaml__twine__missing,https://gitlab.com/alelec/gitlab-release,https://gitlab.com/alelec/gitlab-release/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-release/.gitlab-ci.yml,alelec__gitlab-release,Versioning,missing,,twine,version specifier is missing,23,.gitlab-ci.yml,alelec,alelec/gitlab-release +alelec__gitlab-release__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/alelec/gitlab-release,https://gitlab.com/alelec/gitlab-release/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/alelec__gitlab-release/.gitlab-ci.yml,alelec__gitlab-release,Versioning,missing,,wheel,version specifier is missing,13,.gitlab-ci.yml,alelec,alelec/gitlab-release +gitlab-org__prometheus-client-mmap__Job-Allow-Failure__rspec-Address-Sanitizer,https://gitlab.com/gitlab-org/prometheus-client-mmap,https://gitlab.com/gitlab-org/prometheus-client-mmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__prometheus-client-mmap/.gitlab-ci.yml,gitlab-org__prometheus-client-mmap,Job-Allow-Failure,,test,rspec Address-Sanitizer,Allows failure of job `rspec Address-Sanitizer` at stage `test`,95,.gitlab-ci.yml,gitlab-org,gitlab-org/prometheus-client-mmap +gitlab-org__prometheus-client-mmap__Job-Allow-Failure__parsing-Address-Sanitizer,https://gitlab.com/gitlab-org/prometheus-client-mmap,https://gitlab.com/gitlab-org/prometheus-client-mmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__prometheus-client-mmap/.gitlab-ci.yml,gitlab-org__prometheus-client-mmap,Job-Allow-Failure,,test,parsing Address-Sanitizer,Allows failure of job `parsing Address-Sanitizer` at stage `test`,109,.gitlab-ci.yml,gitlab-org,gitlab-org/prometheus-client-mmap +fintechlabs__fapi-conformance-suite__Job-Allow-Failure__stop_review,https://gitlab.com/fintechlabs/fapi-conformance-suite,https://gitlab.com/fintechlabs/fapi-conformance-suite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fintechlabs__fapi-conformance-suite/.gitlab-ci.yml,fintechlabs__fapi-conformance-suite,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,177,.gitlab-ci.yml,fintechlabs,fintechlabs/fapi-conformance-suite +deckar01__ctf-api__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/deckar01/ctf-api,https://gitlab.com/deckar01/ctf-api/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/deckar01__ctf-api/.gitlab-ci.yml,deckar01__ctf-api,Versioning,missing,,virtualenv,version specifier is missing,11,.gitlab-ci.yml,deckar01,deckar01/ctf-api +tessia-project__tessia__Versioning__requirementstxt__psycopg2__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,psycopg2,version specifier `>=2.7--no-binarypsycopg2` matches future versions that might become incompatible,4,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__alembic__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,alembic,version specifier `>=0.8.6` matches future versions that might become incompatible,8,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__PyYAML__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,PyYAML,version specifier `>=3.11` matches future versions that might become incompatible,10,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__jsonschema__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,jsonschema,version specifier `>=2.5.1` matches future versions that might become incompatible,12,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__ldap3__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,ldap3,version specifier `>=1.3.3` matches future versions that might become incompatible,14,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__flask__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,flask,version specifier `>=0.10.1` matches future versions that might become incompatible,16,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__Flask-SQLAlchemy__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,Flask-SQLAlchemy,version specifier `>=2.2` matches future versions that might become incompatible,18,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__flask-potion__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,flask-potion,version specifier `>=0.16` matches future versions that might become incompatible,20,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__jinja2__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,jinja2,version specifier `>=2.8` matches future versions that might become incompatible,22,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__ansible__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,ansible,version specifier `>=2.5.0` matches future versions that might become incompatible,23,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__requests__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,requests,version specifier `>=2.13.0` matches future versions that might become incompatible,24,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__requirementstxt__docker__any-upper-version,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/requirements.txt,tessia-project__tessia,Versioning,any-upper-version,,docker,version specifier `>=3.5.0` matches future versions that might become incompatible,25,requirements.txt,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__gitlabyaml__docker__missing,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/.gitlab-ci.yml,tessia-project__tessia,Versioning,missing,,docker,version specifier is missing,1,.gitlab-ci.yml,tessia-project,tessia-project/tessia +tessia-project__tessia__Versioning__gitlabyaml__docker__missing,https://gitlab.com/tessia-project/tessia,https://gitlab.com/tessia-project/tessia/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tessia-project__tessia/.gitlab-ci.yml,tessia-project__tessia,Versioning,missing,,docker,version specifier is missing,1,.gitlab-ci.yml,tessia-project,tessia-project/tessia +allthethings__allthethings-gitlab-io__Job-Allow-Failure__dependency_scanning,https://gitlab.com/allthethings/allthethings.gitlab.io,https://gitlab.com/allthethings/allthethings.gitlab.io/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/allthethings__allthethings.gitlab.io/.gitlab-ci.yml,allthethings__allthethings.gitlab.io,Job-Allow-Failure,,🔐 security-test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `🔐 security-test`,228,.gitlab-ci.yml,allthethings,allthethings/allthethings.gitlab.io +Plasticity__magnitude__Versioning__requirementstxt__numpy__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,numpy,version specifier `>=1.14.0` matches future versions that might become incompatible,1,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__requirementstxt__xxhash__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,xxhash,version specifier `>=1.0.1` matches future versions that might become incompatible,2,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__requirementstxt__fasteners__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,fasteners,version specifier `>=0.14.1` matches future versions that might become incompatible,3,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__requirementstxt__annoy__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,annoy,version specifier `>=1.11.4` matches future versions that might become incompatible,4,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__requirementstxt__lz4__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,lz4,version specifier `>=1.0.0` matches future versions that might become incompatible,5,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__requirementstxt__h5py__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/requirements.txt,Plasticity__magnitude,Versioning,any-upper-version,,h5py,version specifier `>=2.8.0` matches future versions that might become incompatible,6,requirements.txt,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__pep8__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,pep8,version specifier is missing,34,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__torch-__any-upper-version,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,any-upper-version,,torch\,version specifier `>=0.4.1` matches future versions that might become incompatible,43,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,wheel,version specifier is missing,93,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__gensim__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,gensim,version specifier is missing,46,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__awscli__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,awscli,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__echo__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,echo,version specifier is missing,24,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__-Sleeping---waiting__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,'Sleeping...waiting,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__for__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,for,version specifier is missing,11,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__copy__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,copy,version specifier is missing,177,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__to__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,to,version specifier is missing,8,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__complete-----__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,complete...';,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__sleep__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,sleep,version specifier is missing,148,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__90-__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,90;,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__echo__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,echo,version specifier is missing,24,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__-Project__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,'Project,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__Directory__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,Directory,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__After__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,After,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__Copy---__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,Copy:';,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__ls__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,ls,version specifier is missing,9,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__echo__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,echo,version specifier is missing,24,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__-AWS__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,'AWS,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__After__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,After,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__Copy---__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,Copy:';,version specifier is missing,183,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__ls__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,ls,version specifier is missing,9,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +Plasticity__magnitude__Versioning__gitlabyaml__gensim__missing,https://gitlab.com/Plasticity/magnitude,https://gitlab.com/Plasticity/magnitude/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Plasticity__magnitude/.gitlab-ci.yml,Plasticity__magnitude,Versioning,missing,,gensim,version specifier is missing,46,.gitlab-ci.yml,Plasticity,Plasticity/magnitude +gitlab-org__distribution__gitlab-provisioner__Job-Retry__ansible-playbook,https://gitlab.com/gitlab-org/distribution/gitlab-provisioner,https://gitlab.com/gitlab-org/distribution/gitlab-provisioner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__distribution__gitlab-provisioner/.gitlab-ci.yml,gitlab-org__distribution__gitlab-provisioner,Job-Retry,always,configure,ansible-playbook,1,94,.gitlab-ci.yml,gitlab-org,gitlab-org/distribution/gitlab-provisioner +gitlab-org__gitter__irc-bridge__Job-Allow-Failure__check_version,https://gitlab.com/gitlab-org/gitter/irc-bridge,https://gitlab.com/gitlab-org/gitter/irc-bridge/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__irc-bridge/.gitlab-ci.yml,gitlab-org__gitter__irc-bridge,Job-Allow-Failure,,test,check_version,Allows failure of job `check_version` at stage `test`,61,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/irc-bridge +pages__frozen-flask__Versioning__requirementstxt__frozen-flask__missing,https://gitlab.com/pages/frozen-flask,https://gitlab.com/pages/frozen-flask/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pages__frozen-flask/requirements.txt,pages__frozen-flask,Versioning,missing,,frozen-flask,version specifier is missing,1,requirements.txt,pages,pages/frozen-flask +elad-noor__equilibrator-api__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/elad.noor/equilibrator-api,https://gitlab.com/elad.noor/equilibrator-api/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elad.noor__equilibrator-api/.gitlab-ci.yml,elad.noor__equilibrator-api,Versioning,missing,,wheel,version specifier is missing,40,.gitlab-ci.yml,elad.noor,elad.noor/equilibrator-api +elad-noor__equilibrator-api__Versioning__gitlabyaml__twine__missing,https://gitlab.com/elad.noor/equilibrator-api,https://gitlab.com/elad.noor/equilibrator-api/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elad.noor__equilibrator-api/.gitlab-ci.yml,elad.noor__equilibrator-api,Versioning,missing,,twine,version specifier is missing,40,.gitlab-ci.yml,elad.noor,elad.noor/equilibrator-api +thefinn93__signald__Job-Allow-Failure__checkupdates-gradle,https://gitlab.com/thefinn93/signald,https://gitlab.com/thefinn93/signald/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/thefinn93__signald/.gitlab-ci.yml,thefinn93__signald,Job-Allow-Failure,,check for updates,checkupdates:gradle,Allows failure of job `checkupdates:gradle` at stage `check for updates`,144,.gitlab-ci.yml,thefinn93,thefinn93/signald +thefinn93__signald__Job-Retry__deb-build,https://gitlab.com/thefinn93/signald,https://gitlab.com/thefinn93/signald/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/thefinn93__signald/.gitlab-ci.yml,thefinn93__signald,Job-Retry,always,build,deb:build,2,50,.gitlab-ci.yml,thefinn93,thefinn93/signald +dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__code_quality,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dennismaxjung__vscode-dotnet-auto-attach/.gitlab-ci.yml,dennismaxjung__vscode-dotnet-auto-attach,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,108,.gitlab-ci.yml,dennismaxjung,dennismaxjung/vscode-dotnet-auto-attach +dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__license_management,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dennismaxjung__vscode-dotnet-auto-attach/.gitlab-ci.yml,dennismaxjung__vscode-dotnet-auto-attach,Job-Allow-Failure,,test,license_management,Allows failure of job `license_management` at stage `test`,67,.gitlab-ci.yml,dennismaxjung,dennismaxjung/vscode-dotnet-auto-attach +dennismaxjung__vscode-dotnet-auto-attach__Job-Allow-Failure__dependency_scanning,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach,https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dennismaxjung__vscode-dotnet-auto-attach/.gitlab-ci.yml,dennismaxjung__vscode-dotnet-auto-attach,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,85,.gitlab-ci.yml,dennismaxjung,dennismaxjung/vscode-dotnet-auto-attach +crwxrws__psycheled__Job-Allow-Failure__rust-nightly,https://gitlab.com/crwxrws/psycheled,https://gitlab.com/crwxrws/psycheled/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/crwxrws__psycheled/.gitlab-ci.yml,crwxrws__psycheled,Job-Allow-Failure,,build,rust-nightly,Allows failure of job `rust-nightly` at stage `build`,15,.gitlab-ci.yml,crwxrws,crwxrws/psycheled +MaphsterB__pyramid-rlp__Versioning__requirementstxt__pyramid__any-upper-version,https://gitlab.com/MaphsterB/pyramid-rlp,https://gitlab.com/MaphsterB/pyramid-rlp/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/MaphsterB__pyramid-rlp/requirements.txt,MaphsterB__pyramid-rlp,Versioning,any-upper-version,,pyramid,version specifier `>=1.7` matches future versions that might become incompatible,4,requirements.txt,MaphsterB,MaphsterB/pyramid-rlp +MaphsterB__pyramid-rlp__Versioning__requirementstxt__SQLAlchemy__any-upper-version,https://gitlab.com/MaphsterB/pyramid-rlp,https://gitlab.com/MaphsterB/pyramid-rlp/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/MaphsterB__pyramid-rlp/requirements.txt,MaphsterB__pyramid-rlp,Versioning,any-upper-version,,SQLAlchemy,version specifier `>=1.2.10` matches future versions that might become incompatible,5,requirements.txt,MaphsterB,MaphsterB/pyramid-rlp +mdaffin__nand2tetris__Job-Allow-Failure__nightly,https://gitlab.com/mdaffin/nand2tetris,https://gitlab.com/mdaffin/nand2tetris/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mdaffin__nand2tetris/.gitlab-ci.yml,mdaffin__nand2tetris,Job-Allow-Failure,,test,nightly,Allows failure of job `nightly` at stage `test`,19,.gitlab-ci.yml,mdaffin,mdaffin/nand2tetris +lebedev-games__botox-di__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/lebedev.games/botox-di,https://gitlab.com/lebedev.games/botox-di/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lebedev.games__botox-di/.gitlab-ci.yml,lebedev.games__botox-di,Versioning,missing,,wheel,version specifier is missing,15,.gitlab-ci.yml,lebedev.games,lebedev.games/botox-di +lebedev-games__botox-di__Versioning__gitlabyaml__twine__missing,https://gitlab.com/lebedev.games/botox-di,https://gitlab.com/lebedev.games/botox-di/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/lebedev.games__botox-di/.gitlab-ci.yml,lebedev.games__botox-di,Versioning,missing,,twine,version specifier is missing,15,.gitlab-ci.yml,lebedev.games,lebedev.games/botox-di +neachdainn__nng-rs__Job-Allow-Failure__nightly,https://gitlab.com/neachdainn/nng-rs,https://gitlab.com/neachdainn/nng-rs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/neachdainn__nng-rs/.gitlab-ci.yml,neachdainn__nng-rs,Job-Allow-Failure,,test,nightly,Allows failure of job `nightly` at stage `test`,75,.gitlab-ci.yml,neachdainn,neachdainn/nng-rs +kermit-js__kermit__Job-Allow-Failure__publish-coveralls,https://gitlab.com/kermit-js/kermit,https://gitlab.com/kermit-js/kermit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kermit-js__kermit/.gitlab-ci.yml,kermit-js__kermit,Job-Allow-Failure,,deploy,publish coveralls,Allows failure of job `publish coveralls` at stage `deploy`,25,.gitlab-ci.yml,kermit-js,kermit-js/kermit +deltares__rtc-tools__Versioning__gitlabyaml__twine__missing,https://gitlab.com/deltares/rtc-tools,https://gitlab.com/deltares/rtc-tools/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/deltares__rtc-tools/.gitlab-ci.yml,deltares__rtc-tools,Versioning,missing,,twine,version specifier is missing,112,.gitlab-ci.yml,deltares,deltares/rtc-tools +kaliko__sima__Versioning__gitlabyaml__requests__missing,https://gitlab.com/kaliko/sima,https://gitlab.com/kaliko/sima/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kaliko__sima/.gitlab-ci.yml,kaliko__sima,Versioning,missing,,requests,version specifier is missing,20,.gitlab-ci.yml,kaliko,kaliko/sima +camd__cmr__Versioning__gitlabyaml__flask__missing,https://gitlab.com/camd/cmr,https://gitlab.com/camd/cmr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/camd__cmr/.gitlab-ci.yml,camd__cmr,Versioning,missing,,flask,version specifier is missing,4,.gitlab-ci.yml,camd,camd/cmr +camd__cmr__Versioning__gitlabyaml__-__missing,https://gitlab.com/camd/cmr,https://gitlab.com/camd/cmr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/camd__cmr/.gitlab-ci.yml,camd__cmr,Versioning,missing,,>,version specifier is missing,5,.gitlab-ci.yml,camd,camd/cmr +camd__cmr__Versioning__gitlabyaml__ase-out__missing,https://gitlab.com/camd/cmr,https://gitlab.com/camd/cmr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/camd__cmr/.gitlab-ci.yml,camd__cmr,Versioning,missing,,ase.out,version specifier is missing,5,.gitlab-ci.yml,camd,camd/cmr +camd__cmr__Versioning__gitlabyaml__-__missing,https://gitlab.com/camd/cmr,https://gitlab.com/camd/cmr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/camd__cmr/.gitlab-ci.yml,camd__cmr,Versioning,missing,,>,version specifier is missing,5,.gitlab-ci.yml,camd,camd/cmr +camd__cmr__Versioning__gitlabyaml__asr-out__missing,https://gitlab.com/camd/cmr,https://gitlab.com/camd/cmr/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/camd__cmr/.gitlab-ci.yml,camd__cmr,Versioning,missing,,asr.out,version specifier is missing,6,.gitlab-ci.yml,camd,camd/cmr +gitzone__npmts__Job-Allow-Failure__testLEGACY,https://gitlab.com/gitzone/npmts,https://gitlab.com/gitzone/npmts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitzone__npmts/.gitlab-ci.yml,gitzone__npmts,Job-Allow-Failure,,test,testLEGACY,Allows failure of job `testLEGACY` at stage `test`,53,.gitlab-ci.yml,gitzone,gitzone/npmts +gitzone__npmts__Job-Allow-Failure__codequality,https://gitlab.com/gitzone/npmts,https://gitlab.com/gitzone/npmts/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitzone__npmts/.gitlab-ci.yml,gitzone__npmts,Job-Allow-Failure,,security,codequality,Allows failure of job `codequality` at stage `security`,34,.gitlab-ci.yml,gitzone,gitzone/npmts +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__defusedxml__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/requirements.txt,GitLabRGI__erdc__geopackage-python,Versioning,missing,,defusedxml,version specifier is missing,1,requirements.txt,GitLabRGI,GitLabRGI/erdc/geopackage-python +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__lxml__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/requirements.txt,GitLabRGI__erdc__geopackage-python,Versioning,missing,,lxml,version specifier is missing,2,requirements.txt,GitLabRGI,GitLabRGI/erdc/geopackage-python +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__Pillow__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/requirements.txt,GitLabRGI__erdc__geopackage-python,Versioning,missing,,Pillow,version specifier is missing,3,requirements.txt,GitLabRGI,GitLabRGI/erdc/geopackage-python +GitLabRGI__erdc__geopackage-python__Versioning__requirementstxt__mapbox_vector_tile__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/requirements.txt,GitLabRGI__erdc__geopackage-python,Versioning,missing,,mapbox_vector_tile,version specifier is missing,8,requirements.txt,GitLabRGI,GitLabRGI/erdc/geopackage-python +GitLabRGI__erdc__geopackage-python__Versioning__gitlabyaml__twine__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/.gitlab-ci.yml,GitLabRGI__erdc__geopackage-python,Versioning,missing,,twine,version specifier is missing,55,.gitlab-ci.yml,GitLabRGI,GitLabRGI/erdc/geopackage-python +GitLabRGI__erdc__geopackage-python__Versioning__gitlabyaml__twine__missing,https://gitlab.com/GitLabRGI/erdc/geopackage-python,https://gitlab.com/GitLabRGI/erdc/geopackage-python/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/GitLabRGI__erdc__geopackage-python/.gitlab-ci.yml,GitLabRGI__erdc__geopackage-python,Versioning,missing,,twine,version specifier is missing,55,.gitlab-ci.yml,GitLabRGI,GitLabRGI/erdc/geopackage-python +tglman__persy__Job-Allow-Failure__upload_report,https://gitlab.com/tglman/persy,https://gitlab.com/tglman/persy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tglman__persy/.gitlab-ci.yml,tglman__persy,Job-Allow-Failure,,upload_report,upload_report,Allows failure of job `upload_report` at stage `upload_report`,51,.gitlab-ci.yml,tglman,tglman/persy +arcfire__rumba__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/arcfire/rumba,https://gitlab.com/arcfire/rumba/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/arcfire__rumba/.gitlab-ci.yml,arcfire__rumba,Versioning,missing,,sphinx,version specifier is missing,14,.gitlab-ci.yml,arcfire,arcfire/rumba +arcfire__rumba__Versioning__gitlabyaml__sphinx_rtd_theme__missing,https://gitlab.com/arcfire/rumba,https://gitlab.com/arcfire/rumba/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/arcfire__rumba/.gitlab-ci.yml,arcfire__rumba,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,14,.gitlab-ci.yml,arcfire,arcfire/rumba +coala__landing__Versioning__gitlabyaml__-coala__missing,https://gitlab.com/coala/landing,https://gitlab.com/coala/landing/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coala__landing/.gitlab-ci.yml,coala__landing,Versioning,missing,,'coala,version specifier is missing,21,.gitlab-ci.yml,coala,coala/landing +agrumery__aGrUM__Job-Retry__windows_pyagrum_2017,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/agrumery__aGrUM/.gitlab-ci.yml,agrumery__aGrUM,Job-Retry,always,build,windows_pyagrum_2017,1,236,.gitlab-ci.yml,agrumery,agrumery/aGrUM +agrumery__aGrUM__Job-Retry__windows_agrum_2017,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/agrumery__aGrUM/.gitlab-ci.yml,agrumery__aGrUM,Job-Retry,always,build,windows_agrum_2017,1,210,.gitlab-ci.yml,agrumery,agrumery/aGrUM +agrumery__aGrUM__Job-Retry__windows_agrum_2015,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/agrumery__aGrUM/.gitlab-ci.yml,agrumery__aGrUM,Job-Retry,always,build,windows_agrum_2015,1,158,.gitlab-ci.yml,agrumery,agrumery/aGrUM +agrumery__aGrUM__Job-Retry__windows_pyagrum_2015,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/agrumery__aGrUM/.gitlab-ci.yml,agrumery__aGrUM,Job-Retry,always,build,windows_pyagrum_2015,1,184,.gitlab-ci.yml,agrumery,agrumery/aGrUM +agrumery__aGrUM__Job-Retry__linux_build,https://gitlab.com/agrumery/aGrUM,https://gitlab.com/agrumery/aGrUM/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/agrumery__aGrUM/.gitlab-ci.yml,agrumery__aGrUM,Job-Retry,always,deploy,linux_build,1,265,.gitlab-ci.yml,agrumery,agrumery/aGrUM +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__pyasn1__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,pyasn1,version specifier is missing,58,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__pyasn1__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,pyasn1,version specifier is missing,58,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,sphinx,version specifier is missing,215,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__certifi__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,certifi,version specifier is missing,20,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__service_identity__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,service_identity,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +LCaraccio__clever-sheep__Versioning__gitlabyaml__mock__missing,https://gitlab.com/LCaraccio/clever-sheep,https://gitlab.com/LCaraccio/clever-sheep/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/LCaraccio__clever-sheep/.gitlab-ci.yml,LCaraccio__clever-sheep,Versioning,missing,,mock,version specifier is missing,21,.gitlab-ci.yml,LCaraccio,LCaraccio/clever-sheep +recalbox__recalbox-configgen__Versioning__gitlabyaml__pygame__missing,https://gitlab.com/recalbox/recalbox-configgen,https://gitlab.com/recalbox/recalbox-configgen/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox-configgen/.gitlab-ci.yml,recalbox__recalbox-configgen,Versioning,missing,,pygame,version specifier is missing,10,.gitlab-ci.yml,recalbox,recalbox/recalbox-configgen +haggl__dotmgr__Versioning__requirementstxt__gitpython__missing,https://gitlab.com/haggl/dotmgr,https://gitlab.com/haggl/dotmgr/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/haggl__dotmgr/requirements.txt,haggl__dotmgr,Versioning,missing,,gitpython,version specifier is missing,1,requirements.txt,haggl,haggl/dotmgr +timelord__timelord__Versioning__requirementstxt__scipy__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,scipy,version specifier is missing,1,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__pandas__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,pandas,version specifier is missing,3,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__numpy__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,numpy,version specifier is missing,4,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__redis__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,redis,version specifier is missing,5,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__statsmodels__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,statsmodels,version specifier is missing,6,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__scikit-learn__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,scikit-learn,version specifier is missing,7,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__joblib__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,joblib,version specifier is missing,8,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,sphinx,version specifier is missing,9,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__m2r__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,m2r,version specifier is missing,10,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/requirements.txt,timelord__timelord,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,11,requirements.txt,timelord,timelord/timelord +timelord__timelord__Versioning__gitlabyaml__redis__missing,https://gitlab.com/timelord/timelord,https://gitlab.com/timelord/timelord/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/timelord__timelord/.gitlab-ci.yml,timelord__timelord,Versioning,missing,,redis,version specifier is missing,9,.gitlab-ci.yml,timelord,timelord/timelord +tobiaskoch__gitlab-ci-example-dotnetcore__Manual-Job__code_quality,https://gitlab.com/tobiaskoch/gitlab-ci-example-dotnetcore,https://gitlab.com/tobiaskoch/gitlab-ci-example-dotnetcore/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tobiaskoch__gitlab-ci-example-dotnetcore/.gitlab-ci.yml,tobiaskoch__gitlab-ci-example-dotnetcore,Manual-Job,,test,code_quality,Manual job `code_quality` at stage `test`,56,.gitlab-ci.yml,tobiaskoch,tobiaskoch/gitlab-ci-example-dotnetcore +giomasce__asmc__Job-Allow-Failure__single_cream,https://gitlab.com/giomasce/asmc,https://gitlab.com/giomasce/asmc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/giomasce__asmc/.gitlab-ci.yml,giomasce__asmc,Job-Allow-Failure,,test,single_cream,Allows failure of job `single_cream` at stage `test`,56,.gitlab-ci.yml,giomasce,giomasce/asmc +giomasce__asmc__Job-Allow-Failure__mm0,https://gitlab.com/giomasce/asmc,https://gitlab.com/giomasce/asmc/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/giomasce__asmc/.gitlab-ci.yml,giomasce__asmc,Job-Allow-Failure,,test,mm0,Allows failure of job `mm0` at stage `test`,38,.gitlab-ci.yml,giomasce,giomasce/asmc +sagemath__sage__Job-Retry__build-from-clean,https://gitlab.com/sagemath/sage,https://gitlab.com/sagemath/sage/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sagemath__sage/.gitlab-ci.yml,sagemath__sage,Job-Retry,always,test,build-from-clean,2,116,.gitlab-ci.yml,sagemath,sagemath/sage +huyderman__lamassu__Job-Allow-Failure__rubocop,https://gitlab.com/huyderman/lamassu,https://gitlab.com/huyderman/lamassu/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/huyderman__lamassu/.gitlab-ci.yml,huyderman__lamassu,Job-Allow-Failure,,test,rubocop,Allows failure of job `rubocop` at stage `test`,22,.gitlab-ci.yml,huyderman,huyderman/lamassu +huyderman__lamassu__Job-Allow-Failure__fasterer,https://gitlab.com/huyderman/lamassu,https://gitlab.com/huyderman/lamassu/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/huyderman__lamassu/.gitlab-ci.yml,huyderman__lamassu,Job-Allow-Failure,,test,fasterer,Allows failure of job `fasterer` at stage `test`,34,.gitlab-ci.yml,huyderman,huyderman/lamassu +huyderman__lamassu__Job-Allow-Failure__reek,https://gitlab.com/huyderman/lamassu,https://gitlab.com/huyderman/lamassu/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/huyderman__lamassu/.gitlab-ci.yml,huyderman__lamassu,Job-Allow-Failure,,test,reek,Allows failure of job `reek` at stage `test`,28,.gitlab-ci.yml,huyderman,huyderman/lamassu +balping__laravel-hashslug__Job-Allow-Failure__dependency_scanning,https://gitlab.com/balping/laravel-hashslug,https://gitlab.com/balping/laravel-hashslug/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/balping__laravel-hashslug/.gitlab-ci.yml,balping__laravel-hashslug,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,29,.gitlab-ci.yml,balping,balping/laravel-hashslug +sj14__go-heroku__Job-Allow-Failure__lint,https://gitlab.com/sj14/go-heroku,https://gitlab.com/sj14/go-heroku/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/sj14__go-heroku/.gitlab-ci.yml,sj14__go-heroku,Job-Allow-Failure,,vetting,lint,Allows failure of job `lint` at stage `vetting`,6,.gitlab-ci.yml,sj14,sj14/go-heroku +koyagami__libneko__Versioning__requirementstxt__aiofiles__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,aiofiles,version specifier is missing,1,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__aiohttp__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,aiohttp,version specifier is missing,2,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__async-timeout__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,async-timeout,version specifier is missing,3,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__asynctest__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,asynctest,version specifier is missing,4,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__docutils__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,docutils,version specifier is missing,6,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__requests__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,requests,version specifier is missing,7,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__urllib3__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,urllib3,version specifier is missing,8,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__requirementstxt__websockets__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/requirements.txt,koyagami__libneko,Versioning,missing,,websockets,version specifier is missing,9,requirements.txt,koyagami,koyagami/libneko +koyagami__libneko__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/.gitlab-ci.yml,koyagami__libneko,Versioning,missing,,virtualenv,version specifier is missing,37,.gitlab-ci.yml,koyagami,koyagami/libneko +koyagami__libneko__Versioning__gitlabyaml__black__missing,https://gitlab.com/koyagami/libneko,https://gitlab.com/koyagami/libneko/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/koyagami__libneko/.gitlab-ci.yml,koyagami__libneko,Versioning,missing,,black,version specifier is missing,67,.gitlab-ci.yml,koyagami,koyagami/libneko +stavros__caduceus__Versioning__gitlabyaml__pre__missing,https://gitlab.com/stavros/caduceus,https://gitlab.com/stavros/caduceus/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__caduceus/.gitlab-ci.yml,stavros__caduceus,Versioning,missing,,pre,version specifier is missing,11,.gitlab-ci.yml,stavros,stavros/caduceus +gitlab-org__quality__triage-ops__Job-Allow-Failure__run-custom,https://gitlab.com/gitlab-org/quality/triage-ops,https://gitlab.com/gitlab-org/quality/triage-ops/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__quality__triage-ops/.gitlab-ci.yml,gitlab-org__quality__triage-ops,Job-Allow-Failure,,single-run,run:custom,Allows failure of job `run:custom` at stage `single-run`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/quality/triage-ops +gitlab-org__quality__triage-ops__Job-Allow-Failure__dry-run-schedules-sync,https://gitlab.com/gitlab-org/quality/triage-ops,https://gitlab.com/gitlab-org/quality/triage-ops/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__quality__triage-ops/.gitlab-ci.yml,gitlab-org__quality__triage-ops,Job-Allow-Failure,,test,dry-run:schedules-sync,Allows failure of job `dry-run:schedules-sync` at stage `test`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/quality/triage-ops +4geit__react-packages__Manual-Job__review-build,https://gitlab.com/4geit/react-packages,https://gitlab.com/4geit/react-packages/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/4geit__react-packages/.gitlab-ci.yml,4geit__react-packages,Manual-Job,,build,review:build,Manual job `review:build` at stage `build`,75,.gitlab-ci.yml,4geit,4geit/react-packages +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_10,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,debian_10,1,155,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_packer-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,debian_packer test,1,137,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_10-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,debian_10 test,1,128,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_14-04,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,ubuntu_14.04,1,158,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_7-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,centos_7 test,1,129,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_16-04,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,ubuntu_16.04,1,159,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_18-04,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,ubuntu_18.04,1,160,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ruby_docker,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,ruby_docker,1,165,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__gitlab_provisioner-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,gitlab_provisioner test,1,139,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_8-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,centos_8 test,1,130,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_9,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,debian_9,1,154,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_8,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,debian_8,1,153,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_6_nodejs-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,centos_6_nodejs test,1,124,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_15-0,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,opensuse_15.0,1,162,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_15-1,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,opensuse_15.1,1,163,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_8-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,debian_8 test,1,126,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_15-0-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,opensuse_15.0 test,1,135,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_packer,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,debian_packer,1,164,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_6_nodejs,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,centos_6_nodejs,1,151,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_18-04-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,ubuntu_18.04 test,1,133,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__debian_9-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,debian_9 test,1,127,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_8,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,centos_8,1,157,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__centos_7,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,centos_7,1,156,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_16-04-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,ubuntu_16.04 test,1,132,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_15-1-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,opensuse_15.1 test,1,136,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_42-3,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,opensuse_42.3,1,161,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__gitlab_provisioner,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,build,gitlab_provisioner,1,166,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ruby_docker-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,ruby_docker test,1,138,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__ubuntu_14-04-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,ubuntu_14.04 test,1,131,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +gitlab-org__gitlab-omnibus-builder__Job-Retry__opensuse_42-3-test,https://gitlab.com/gitlab-org/gitlab-omnibus-builder,https://gitlab.com/gitlab-org/gitlab-omnibus-builder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-omnibus-builder/.gitlab-ci.yml,gitlab-org__gitlab-omnibus-builder,Job-Retry,always,test,opensuse_42.3 test,1,134,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-omnibus-builder +barrel__barrel-wordpress__Manual-Job__create_merge_request,https://gitlab.com/barrel/barrel-wordpress,https://gitlab.com/barrel/barrel-wordpress/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/barrel__barrel-wordpress/.gitlab-ci.yml,barrel__barrel-wordpress,Manual-Job,,merge_request,create_merge_request,Manual job `create_merge_request` at stage `merge_request`,84,.gitlab-ci.yml,barrel,barrel/barrel-wordpress +linagora__petals-cockpit__Job-Allow-Failure__pages,https://gitlab.com/linagora/petals-cockpit,https://gitlab.com/linagora/petals-cockpit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/linagora__petals-cockpit/.gitlab-ci.yml,linagora__petals-cockpit,Job-Allow-Failure,,package,pages,Allows failure of job `pages` at stage `package`,60,.gitlab-ci.yml,linagora,linagora/petals-cockpit +linagora__petals-cockpit__Job-Retry__test-frontend,https://gitlab.com/linagora/petals-cockpit,https://gitlab.com/linagora/petals-cockpit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/linagora__petals-cockpit/.gitlab-ci.yml,linagora__petals-cockpit,Job-Retry,always,build,test-frontend,1,122,.gitlab-ci.yml,linagora,linagora/petals-cockpit +ales-genova__pbcpy__Versioning__requirementstxt__numpy__missing,https://gitlab.com/ales.genova/pbcpy,https://gitlab.com/ales.genova/pbcpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ales.genova__pbcpy/requirements.txt,ales.genova__pbcpy,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,ales.genova,ales.genova/pbcpy +ales-genova__pbcpy__Versioning__requirementstxt__scipy__missing,https://gitlab.com/ales.genova/pbcpy,https://gitlab.com/ales.genova/pbcpy/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ales.genova__pbcpy/requirements.txt,ales.genova__pbcpy,Versioning,missing,,scipy,version specifier is missing,2,requirements.txt,ales.genova,ales.genova/pbcpy +ales-genova__pbcpy__Versioning__gitlabyaml__m2r__missing,https://gitlab.com/ales.genova/pbcpy,https://gitlab.com/ales.genova/pbcpy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ales.genova__pbcpy/.gitlab-ci.yml,ales.genova__pbcpy,Versioning,missing,,m2r,version specifier is missing,4,.gitlab-ci.yml,ales.genova,ales.genova/pbcpy +dalton__dalton__Job-Allow-Failure__nightly-mpi-int64,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,nightly-mpi-int64,Allows failure of job `nightly-mpi-int64` at stage `test`,482,.gitlab-ci.yml,dalton,dalton/dalton +dalton__dalton__Job-Allow-Failure__gcc-9-2-1-mpich-3-2-2-int64,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,gcc-9.2.1-mpich-3.2.2-int64,Allows failure of job `gcc-9.2.1-mpich-3.2.2-int64` at stage `test`,387,.gitlab-ci.yml,dalton,dalton/dalton +dalton__dalton__Job-Allow-Failure__nightly-serial,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,nightly-serial,Allows failure of job `nightly-serial` at stage `test`,419,.gitlab-ci.yml,dalton,dalton/dalton +dalton__dalton__Job-Allow-Failure__gcc-9-2-1-ompi-4-0-2-int64,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,gcc-9.2.1-ompi-4.0.2-int64,Allows failure of job `gcc-9.2.1-ompi-4.0.2-int64` at stage `test`,355,.gitlab-ci.yml,dalton,dalton/dalton +dalton__dalton__Job-Allow-Failure__gcc-8-3-1-ompi-2-1-1-int64,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,gcc-8.3.1-ompi-2.1.1-int64,Allows failure of job `gcc-8.3.1-ompi-2.1.1-int64` at stage `test`,322,.gitlab-ci.yml,dalton,dalton/dalton +dalton__dalton__Job-Allow-Failure__nightly-mpi,https://gitlab.com/dalton/dalton,https://gitlab.com/dalton/dalton/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalton__dalton/.gitlab-ci.yml,dalton__dalton,Job-Allow-Failure,,test,nightly-mpi,Allows failure of job `nightly-mpi` at stage `test`,449,.gitlab-ci.yml,dalton,dalton/dalton +mataara__Mataara-Server__Versioning__requirementstxt__-rrequirements-common-txt__missing,https://gitlab.com/mataara/Mataara-Server,https://gitlab.com/mataara/Mataara-Server/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mataara__Mataara-Server/requirements.txt,mataara__Mataara-Server,Versioning,missing,,-rrequirements/common.txt,version specifier is missing,-1,requirements.txt,mataara,mataara/Mataara-Server +mataara__Mataara-Server__Job-Allow-Failure__python_lint,https://gitlab.com/mataara/Mataara-Server,https://gitlab.com/mataara/Mataara-Server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mataara__Mataara-Server/.gitlab-ci.yml,mataara__Mataara-Server,Job-Allow-Failure,,test,python_lint,Allows failure of job `python_lint` at stage `test`,38,.gitlab-ci.yml,mataara,mataara/Mataara-Server +nllgg__dustpuppy__Job-Allow-Failure__markdown_lint,https://gitlab.com/nllgg/dustpuppy,https://gitlab.com/nllgg/dustpuppy/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/nllgg__dustpuppy/.gitlab-ci.yml,nllgg__dustpuppy,Job-Allow-Failure,,test,markdown_lint,Allows failure of job `markdown_lint` at stage `test`,7,.gitlab-ci.yml,nllgg,nllgg/dustpuppy +jkrooswyk__the-monolith__Job-Allow-Failure__stop_review,https://gitlab.com/jkrooswyk/the-monolith,https://gitlab.com/jkrooswyk/the-monolith/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jkrooswyk__the-monolith/.gitlab-ci.yml,jkrooswyk__the-monolith,Job-Allow-Failure,,cleanup,stop_review,Allows failure of job `stop_review` at stage `cleanup`,83,.gitlab-ci.yml,jkrooswyk,jkrooswyk/the-monolith +gitlab-org__security-products__license-management__Job-Allow-Failure__size,https://gitlab.com/gitlab-org/security-products/license-management,https://gitlab.com/gitlab-org/security-products/license-management/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__security-products__license-management/.gitlab-ci.yml,gitlab-org__security-products__license-management,Job-Allow-Failure,,test,size,Allows failure of job `size` at stage `test`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/security-products/license-management +gitlab-org__security-products__license-management__Manual-Job__version,https://gitlab.com/gitlab-org/security-products/license-management,https://gitlab.com/gitlab-org/security-products/license-management/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__security-products__license-management/.gitlab-ci.yml,gitlab-org__security-products__license-management,Manual-Job,,test,version,Manual job `version` at stage `test`,70,.gitlab-ci.yml,gitlab-org,gitlab-org/security-products/license-management +demsking__image-downloader__Job-Allow-Failure__security-scan,https://gitlab.com/demsking/image-downloader,https://gitlab.com/demsking/image-downloader/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/demsking__image-downloader/.gitlab-ci.yml,demsking__image-downloader,Job-Allow-Failure,,test,security scan,Allows failure of job `security scan` at stage `test`,20,.gitlab-ci.yml,demsking,demsking/image-downloader +demsking__image-downloader__Job-Allow-Failure__npm-outdated,https://gitlab.com/demsking/image-downloader,https://gitlab.com/demsking/image-downloader/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/demsking__image-downloader/.gitlab-ci.yml,demsking__image-downloader,Job-Allow-Failure,,test,npm outdated,Allows failure of job `npm outdated` at stage `test`,13,.gitlab-ci.yml,demsking,demsking/image-downloader +litecord__litecord__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/litecord/litecord,https://gitlab.com/litecord/litecord/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/litecord__litecord/.gitlab-ci.yml,litecord__litecord,Versioning,missing,,wheel,version specifier is missing,18,.gitlab-ci.yml,litecord,litecord/litecord +materials-modeling__hiphive__Job-Allow-Failure__run_flake8,https://gitlab.com/materials-modeling/hiphive,https://gitlab.com/materials-modeling/hiphive/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/materials-modeling__hiphive/.gitlab-ci.yml,materials-modeling__hiphive,Job-Allow-Failure,,test,run_flake8,Allows failure of job `run_flake8` at stage `test`,68,.gitlab-ci.yml,materials-modeling,materials-modeling/hiphive +mike-koch__Mods-for-HESK__Manual-Job__package,https://gitlab.com/mike-koch/Mods-for-HESK,https://gitlab.com/mike-koch/Mods-for-HESK/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mike-koch__Mods-for-HESK/.gitlab-ci.yml,mike-koch__Mods-for-HESK,Manual-Job,,package,package,Manual job `package` at stage `package`,58,.gitlab-ci.yml,mike-koch,mike-koch/Mods-for-HESK +SporeDB__sporedb__Job-Retry__unit-tests,https://gitlab.com/SporeDB/sporedb,https://gitlab.com/SporeDB/sporedb/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/SporeDB__sporedb/.gitlab-ci.yml,SporeDB__sporedb,Job-Retry,always,test,unit tests,1,10,.gitlab-ci.yml,SporeDB,SporeDB/sporedb +coala__package_manager__Versioning__gitlabyaml__coala__missing,https://gitlab.com/coala/package_manager,https://gitlab.com/coala/package_manager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coala__package_manager/.gitlab-ci.yml,coala__package_manager,Versioning,missing,,coala,version specifier is missing,343,.gitlab-ci.yml,coala,coala/package_manager +coala__package_manager__Versioning__gitlabyaml__moban__missing,https://gitlab.com/coala/package_manager,https://gitlab.com/coala/package_manager/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/coala__package_manager/.gitlab-ci.yml,coala__package_manager,Versioning,missing,,moban,version specifier is missing,339,.gitlab-ci.yml,coala,coala/package_manager +ultreiaio__jgit-flow__Versioning__io-ultreia-java4all-jgitflow-jgitflow-parent-1-0-0-rc-1__javax-inject-javax-inject__only-major-number,https://gitlab.com/ultreiaio/jgit-flow,https://gitlab.com/ultreiaio/jgit-flow/blob/master/pom.xml,/home/xxx/fse-submission/linter_configfiles/ultreiaio__jgit-flow/pom.xml,ultreiaio__jgit-flow,Versioning,only-major-number,,javax.inject/javax.inject,"version specifier `1` only refers to a major release, concrete minor versions might be incompatible",327,pom.xml,ultreiaio,ultreiaio/jgit-flow +ultreiaio__jgit-flow__Versioning__io-ultreia-java4all-jgitflow-jgitflow-maven-plugin-__javax-inject-javax-inject__only-major-number,https://gitlab.com/ultreiaio/jgit-flow,https://gitlab.com/ultreiaio/jgit-flow/blob/master/jgitflow-maven-plugin/pom.xml,/home/xxx/fse-submission/linter_configfiles/ultreiaio__jgit-flow/jgitflow-maven-plugin/pom.xml,ultreiaio__jgit-flow,Versioning,only-major-number,,javax.inject/javax.inject,"version specifier `1` only refers to a major release, concrete minor versions might be incompatible",172,jgitflow-maven-plugin/pom.xml,ultreiaio,ultreiaio/jgit-flow +ultreiaio__jgit-flow__Manual-Job__stage,https://gitlab.com/ultreiaio/jgit-flow,https://gitlab.com/ultreiaio/jgit-flow/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ultreiaio__jgit-flow/.gitlab-ci.yml,ultreiaio__jgit-flow,Manual-Job,,Test,stage,Manual job `stage` at stage `Test`,57,.gitlab-ci.yml,ultreiaio,ultreiaio/jgit-flow +ultreiaio__jgit-flow__Manual-Job__latest-site,https://gitlab.com/ultreiaio/jgit-flow,https://gitlab.com/ultreiaio/jgit-flow/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ultreiaio__jgit-flow/.gitlab-ci.yml,ultreiaio__jgit-flow,Manual-Job,,Test,latest-site,Manual job `latest-site` at stage `Test`,57,.gitlab-ci.yml,ultreiaio,ultreiaio/jgit-flow +ultreiaio__jgit-flow__Manual-Job__snapshot,https://gitlab.com/ultreiaio/jgit-flow,https://gitlab.com/ultreiaio/jgit-flow/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ultreiaio__jgit-flow/.gitlab-ci.yml,ultreiaio__jgit-flow,Manual-Job,,Test,snapshot,Manual job `snapshot` at stage `Test`,57,.gitlab-ci.yml,ultreiaio,ultreiaio/jgit-flow +eyeo__websites__web-adblockplus-org__Manual-Job__tests,https://gitlab.com/eyeo/websites/web.adblockplus.org,https://gitlab.com/eyeo/websites/web.adblockplus.org/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/eyeo__websites__web.adblockplus.org/.gitlab-ci.yml,eyeo__websites__web.adblockplus.org,Manual-Job,,test,tests,Manual job `tests` at stage `test`,28,.gitlab-ci.yml,eyeo,eyeo/websites/web.adblockplus.org +code-stats__code-stats-vim__Versioning__gitlabyaml__neovim__missing,https://gitlab.com/code-stats/code-stats-vim,https://gitlab.com/code-stats/code-stats-vim/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/code-stats__code-stats-vim/.gitlab-ci.yml,code-stats__code-stats-vim,Versioning,missing,,neovim,version specifier is missing,21,.gitlab-ci.yml,code-stats,code-stats/code-stats-vim +tikiwiki__tiki__Job-Allow-Failure__check-bom-encoding,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,check-bom-encoding,Allows failure of job `check-bom-encoding` at stage `tiki-check`,124,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__eslint,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,lint,eslint,Allows failure of job `eslint` at stage `lint`,73,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__phpcs,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,lint,phpcs,Allows failure of job `phpcs` at stage `lint`,42,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__unit-tests-73,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,unit-tests,unit-tests-73,Allows failure of job `unit-tests-73` at stage `unit-tests`,264,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__translation-standards,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,translation-standards,Allows failure of job `translation-standards` at stage `tiki-check`,118,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__translation,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,translation,Allows failure of job `translation` at stage `tiki-check`,110,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__unix-ending-line,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,unix-ending-line,Allows failure of job `unix-ending-line` at stage `tiki-check`,130,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__composer-lock,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,composer-lock,Allows failure of job `composer-lock` at stage `tiki-check`,142,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__check-directories,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,tiki-check,check-directories,Allows failure of job `check-directories` at stage `tiki-check`,136,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +tikiwiki__tiki__Job-Allow-Failure__smarty-lint,https://gitlab.com/tikiwiki/tiki,https://gitlab.com/tikiwiki/tiki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tikiwiki__tiki/.gitlab-ci.yml,tikiwiki__tiki,Job-Allow-Failure,,lint,smarty-lint,Allows failure of job `smarty-lint` at stage `lint`,62,.gitlab-ci.yml,tikiwiki,tikiwiki/tiki +derSchabi__tttrsss__Manual-Job__build,https://gitlab.com/derSchabi/tttrsss,https://gitlab.com/derSchabi/tttrsss/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/derSchabi__tttrsss/.gitlab-ci.yml,derSchabi__tttrsss,Manual-Job,,build,build,Manual job `build` at stage `build`,35,.gitlab-ci.yml,derSchabi,derSchabi/tttrsss +fumail__fuglu__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/fumail/fuglu,https://gitlab.com/fumail/fuglu/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fumail__fuglu/.gitlab-ci.yml,fumail__fuglu,Versioning,missing,,sphinx,version specifier is missing,67,.gitlab-ci.yml,fumail,fumail/fuglu +gitlab-org__gitter__gitter-android-app__Job-Allow-Failure__ensureContainer,https://gitlab.com/gitlab-org/gitter/gitter-android-app,https://gitlab.com/gitlab-org/gitter/gitter-android-app/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__gitter-android-app/.gitlab-ci.yml,gitlab-org__gitter__gitter-android-app,Job-Allow-Failure,,test,ensureContainer,Allows failure of job `ensureContainer` at stage `test`,28,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/gitter-android-app +wireshark__wireshark__Job-Retry__clang-6,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,clang-6,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__clang-7,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,clang-7,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__gcc-8-nopcap,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,gcc-8-nopcap,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__gcc-5,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,gcc-5,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__clang-5,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,clang-5,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__clang-7-nopcap,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,clang-7-nopcap,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__gcc-7,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,gcc-7,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__gcc-6,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,gcc-6,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +wireshark__wireshark__Job-Retry__gcc-8,https://gitlab.com/wireshark/wireshark,https://gitlab.com/wireshark/wireshark/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wireshark__wireshark/.gitlab-ci.yml,wireshark__wireshark,Job-Retry,always,build,gcc-8,1,11,.gitlab-ci.yml,wireshark,wireshark/wireshark +oprudkyi__laravel-bootstrap-adminlte-starter-kit__Job-Allow-Failure__test-php71,https://gitlab.com/oprudkyi/laravel-bootstrap-adminlte-starter-kit,https://gitlab.com/oprudkyi/laravel-bootstrap-adminlte-starter-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/oprudkyi__laravel-bootstrap-adminlte-starter-kit/.gitlab-ci.yml,oprudkyi__laravel-bootstrap-adminlte-starter-kit,Job-Allow-Failure,,test,test:php71,Allows failure of job `test:php71` at stage `test`,39,.gitlab-ci.yml,oprudkyi,oprudkyi/laravel-bootstrap-adminlte-starter-kit +Flockademic__Flockademic__Job-Allow-Failure__license_management,https://gitlab.com/Flockademic/Flockademic,https://gitlab.com/Flockademic/Flockademic/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Flockademic__Flockademic/.gitlab-ci.yml,Flockademic__Flockademic,Job-Allow-Failure,,confidence-check,license_management,Allows failure of job `license_management` at stage `confidence-check`,442,.gitlab-ci.yml,Flockademic,Flockademic/Flockademic +Flockademic__Flockademic__Job-Retry__e2e-firefox,https://gitlab.com/Flockademic/Flockademic,https://gitlab.com/Flockademic/Flockademic/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Flockademic__Flockademic/.gitlab-ci.yml,Flockademic__Flockademic,Job-Retry,always,confidence-check,e2e:firefox,2,363,.gitlab-ci.yml,Flockademic,Flockademic/Flockademic +Flockademic__Flockademic__Job-Retry__e2e-chrome,https://gitlab.com/Flockademic/Flockademic,https://gitlab.com/Flockademic/Flockademic/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Flockademic__Flockademic/.gitlab-ci.yml,Flockademic__Flockademic,Job-Retry,always,confidence-check,e2e:chrome,2,381,.gitlab-ci.yml,Flockademic,Flockademic/Flockademic +burke-software__django-report-builder__Versioning__requirementstxt__psycopg2__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,psycopg2,version specifier is missing,2,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__django-extensions__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,django-extensions,version specifier is missing,3,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__Werkzeug__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,Werkzeug,version specifier is missing,4,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__ipdb__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,ipdb,version specifier is missing,5,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__celery-redis-__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,celery[redis],version specifier is missing,6,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__model_mommy__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,model_mommy,version specifier is missing,13,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__freezegun__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,freezegun,version specifier is missing,14,requirements.txt,burke-software,burke-software/django-report-builder +burke-software__django-report-builder__Versioning__requirementstxt__openpyxl__missing,https://gitlab.com/burke-software/django-report-builder,https://gitlab.com/burke-software/django-report-builder/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/burke-software__django-report-builder/requirements.txt,burke-software__django-report-builder,Versioning,missing,,openpyxl,version specifier is missing,15,requirements.txt,burke-software,burke-software/django-report-builder +anarcat__feed2exec__Versioning__requirementstxt__-e-__missing,https://gitlab.com/anarcat/feed2exec,https://gitlab.com/anarcat/feed2exec/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/anarcat__feed2exec/requirements.txt,anarcat__feed2exec,Versioning,missing,,-e.,version specifier is missing,-1,requirements.txt,anarcat,anarcat/feed2exec +datadrivendiscovery__common-primitives__Versioning__gitlabyaml__only__missing,https://gitlab.com/datadrivendiscovery/common-primitives,https://gitlab.com/datadrivendiscovery/common-primitives/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__common-primitives/.gitlab-ci.yml,datadrivendiscovery__common-primitives,Versioning,missing,,only,version specifier is missing,56,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/common-primitives +datadrivendiscovery__common-primitives__Versioning__gitlabyaml__only__missing,https://gitlab.com/datadrivendiscovery/common-primitives,https://gitlab.com/datadrivendiscovery/common-primitives/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__common-primitives/.gitlab-ci.yml,datadrivendiscovery__common-primitives,Versioning,missing,,only,version specifier is missing,56,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/common-primitives +Openki__Openki__Job-Allow-Failure__app-test,https://gitlab.com/Openki/Openki,https://gitlab.com/Openki/Openki/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Openki__Openki/.gitlab-ci.yml,Openki__Openki,Job-Allow-Failure,,test,app-test,Allows failure of job `app-test` at stage `test`,49,.gitlab-ci.yml,Openki,Openki/Openki +gitlab-org__security-products__dependency-scanning__Manual-Job__tag-version,https://gitlab.com/gitlab-org/security-products/dependency-scanning,https://gitlab.com/gitlab-org/security-products/dependency-scanning/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__security-products__dependency-scanning/.gitlab-ci.yml,gitlab-org__security-products__dependency-scanning,Manual-Job,,test,tag version,Manual job `tag version` at stage `test`,155,.gitlab-ci.yml,gitlab-org,gitlab-org/security-products/dependency-scanning +pythonfoo__AA__Versioning__requirementstxt__gunicorn__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,gunicorn,version specifier is missing,3,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-extensions__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-extensions,version specifier is missing,4,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__pytest-django__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,pytest-django,version specifier is missing,6,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__pendulum__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,pendulum,version specifier is missing,7,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__tabulate__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,tabulate,version specifier is missing,8,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-dirtyfields__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-dirtyfields,version specifier is missing,9,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__PyPDF2__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,PyPDF2,version specifier is missing,11,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__qrcode__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,qrcode,version specifier is missing,12,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-polymorphic__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-polymorphic,version specifier is missing,13,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__pathos__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,pathos,version specifier is missing,14,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-cleanup__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-cleanup,version specifier is missing,15,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-bootstrap4__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-bootstrap4,version specifier is missing,16,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__psycopg2-binary__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,psycopg2-binary,version specifier is missing,17,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__requirementstxt__django-paginated-modelformset__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/requirements.txt,pythonfoo__AA,Versioning,missing,,django-paginated-modelformset,version specifier is missing,18,requirements.txt,pythonfoo,pythonfoo/AA +pythonfoo__AA__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/pythonfoo/AA,https://gitlab.com/pythonfoo/AA/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pythonfoo__AA/.gitlab-ci.yml,pythonfoo__AA,Versioning,missing,,wheel,version specifier is missing,12,.gitlab-ci.yml,pythonfoo,pythonfoo/AA +elixire__elixire__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/elixire/elixire,https://gitlab.com/elixire/elixire/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elixire__elixire/.gitlab-ci.yml,elixire__elixire,Versioning,missing,,virtualenv,version specifier is missing,33,.gitlab-ci.yml,elixire,elixire/elixire +elixire__elixire__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/elixire/elixire,https://gitlab.com/elixire/elixire/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elixire__elixire/.gitlab-ci.yml,elixire__elixire,Versioning,missing,,wheel,version specifier is missing,33,.gitlab-ci.yml,elixire,elixire/elixire +elixire__elixire__Versioning__gitlabyaml__requirements-txt__missing,https://gitlab.com/elixire/elixire,https://gitlab.com/elixire/elixire/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/elixire__elixire/.gitlab-ci.yml,elixire__elixire,Versioning,missing,,requirements.txt,version specifier is missing,36,.gitlab-ci.yml,elixire,elixire/elixire +codingrights__radarlegislativo__Versioning__requirementstxt__beautifulsoup4__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,beautifulsoup4,version specifier is missing,1,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__celery__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,celery,version specifier is missing,2,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__celery-haystack__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,celery-haystack,version specifier is missing,3,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__chardet__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,chardet,version specifier is missing,4,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__dj-static__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,dj-static,version specifier is missing,5,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__dj_database_url__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,dj_database_url,version specifier is missing,6,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__django-extensions__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,django-extensions,version specifier is missing,7,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__django-haystack__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,django-haystack,version specifier is missing,8,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__django-markdownx__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,django-markdownx,version specifier is missing,9,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__gunicorn__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,gunicorn,version specifier is missing,12,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__psycopg2-binary__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,psycopg2-binary,version specifier is missing,13,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__python-decouple__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,python-decouple,version specifier is missing,14,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__python-memcached__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,python-memcached,version specifier is missing,15,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__pytz__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,pytz,version specifier is missing,16,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,PyYAML,version specifier is missing,17,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__requests__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,requests,version specifier is missing,18,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__suds-jurko__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,suds-jurko,version specifier is missing,19,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__tapioca-camara__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,tapioca-camara,version specifier is missing,20,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__tapioca-senado__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,tapioca-senado,version specifier is missing,21,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__telepot__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,telepot,version specifier is missing,22,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__unidecode__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,unidecode,version specifier is missing,23,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__requirementstxt__xmltodict__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/requirements.txt,codingrights__radarlegislativo,Versioning,missing,,xmltodict,version specifier is missing,24,requirements.txt,codingrights,codingrights/radarlegislativo +codingrights__radarlegislativo__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/codingrights/radarlegislativo,https://gitlab.com/codingrights/radarlegislativo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/codingrights__radarlegislativo/.gitlab-ci.yml,codingrights__radarlegislativo,Versioning,missing,,psycopg2,version specifier is missing,6,.gitlab-ci.yml,codingrights,codingrights/radarlegislativo +aegir__aegir__Job-Allow-Failure__pages,https://gitlab.com/aegir/aegir,https://gitlab.com/aegir/aegir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aegir__aegir/.gitlab-ci.yml,aegir__aegir,Job-Allow-Failure,,publish,pages,Allows failure of job `pages` at stage `publish`,118,.gitlab-ci.yml,aegir,aegir/aegir +aegir__aegir__Job-Allow-Failure__notify-irc-success,https://gitlab.com/aegir/aegir,https://gitlab.com/aegir/aegir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aegir__aegir/.gitlab-ci.yml,aegir__aegir,Job-Allow-Failure,,notify,notify:irc:success,Allows failure of job `notify:irc:success` at stage `notify`,77,.gitlab-ci.yml,aegir,aegir/aegir +aegir__aegir__Job-Allow-Failure__notify-irc-failure,https://gitlab.com/aegir/aegir,https://gitlab.com/aegir/aegir/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/aegir__aegir/.gitlab-ci.yml,aegir__aegir,Job-Allow-Failure,,notify,notify:irc:failure,Allows failure of job `notify:irc:failure` at stage `notify`,68,.gitlab-ci.yml,aegir,aegir/aegir +sdnlab__jaguar__Versioning__com-sdnlab-k8snet-watcher-0-1-1-SNAPSHOT__org-opendaylight-controller-sal-binding-api__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/k8snet/watcher/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/k8snet/watcher/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.controller/sal-binding-api,version specifier is missing,50,k8snet/watcher/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-ipam-0-1-1-SNAPSHOT__org-opendaylight-controller-sal-binding-api__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/k8snet/ipam/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/k8snet/ipam/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.controller/sal-binding-api,version specifier is missing,50,k8snet/ipam/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-karaf-0-1-1-SNAPSHOT__org-apache-karaf-features-framework__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/karaf/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/karaf/pom.xml,sdnlab__jaguar,Versioning,missing,,org.apache.karaf.features/framework,version specifier is missing,46,karaf/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-karaf-0-1-1-SNAPSHOT__com-sdnlab-jaguar-features__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/karaf/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/karaf/pom.xml,sdnlab__jaguar,Versioning,missing,,com.sdnlab/jaguar-features,version specifier is missing,52,karaf/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-features-0-1-1-SNAPSHOT__org-opendaylight-yangtools-features-yangtools__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/features/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.yangtools/features-yangtools,version specifier is missing,67,features/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-features-0-1-1-SNAPSHOT__org-opendaylight-controller-features-mdsal__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/features/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.controller/features-mdsal,version specifier is missing,82,features/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-features-0-1-1-SNAPSHOT__org-opendaylight-netconf-features-restconf__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/features/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/features/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.netconf/features-restconf,version specifier is missing,89,features/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-k8snet-model-0-1-1-SNAPSHOT__org-opendaylight-mdsal-model-ietf-inet-types-2013-07-15__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/k8snet/model/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/k8snet/model/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.mdsal.model/ietf-inet-types-2013-07-15,version specifier is missing,30,k8snet/model/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-k8snet-model-0-1-1-SNAPSHOT__org-opendaylight-mdsal-model-ietf-yang-types-20130715__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/k8snet/model/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/k8snet/model/pom.xml,sdnlab__jaguar,Versioning,missing,,org.opendaylight.mdsal.model/ietf-yang-types-20130715,version specifier is missing,34,k8snet/model/pom.xml,sdnlab,sdnlab/jaguar +sdnlab__jaguar__Versioning__com-sdnlab-jaguar-network-ctl-0-1-1-SNAPSHOT__org-mockito-mockito-core__missing,https://gitlab.com/sdnlab/jaguar,https://gitlab.com/sdnlab/jaguar/blob/master/k8snet/network/pom.xml,/home/xxx/fse-submission/linter_configfiles/sdnlab__jaguar/k8snet/network/pom.xml,sdnlab__jaguar,Versioning,missing,,org.mockito/mockito-core,version specifier is missing,57,k8snet/network/pom.xml,sdnlab,sdnlab/jaguar +vuedoc__md__Job-Allow-Failure__security-scan,https://gitlab.com/vuedoc/md,https://gitlab.com/vuedoc/md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vuedoc__md/.gitlab-ci.yml,vuedoc__md,Job-Allow-Failure,,test,security scan,Allows failure of job `security scan` at stage `test`,19,.gitlab-ci.yml,vuedoc,vuedoc/md +vuedoc__md__Job-Allow-Failure__npm-outdated,https://gitlab.com/vuedoc/md,https://gitlab.com/vuedoc/md/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vuedoc__md/.gitlab-ci.yml,vuedoc__md,Job-Allow-Failure,,test,npm outdated,Allows failure of job `npm outdated` at stage `test`,13,.gitlab-ci.yml,vuedoc,vuedoc/md +vindarel__abelujo__Job-Allow-Failure__py-qa,https://gitlab.com/vindarel/abelujo,https://gitlab.com/vindarel/abelujo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vindarel__abelujo/.gitlab-ci.yml,vindarel__abelujo,Job-Allow-Failure,,test,py-qa,Allows failure of job `py-qa` at stage `test`,35,.gitlab-ci.yml,vindarel,vindarel/abelujo +susurrus__gattii__Job-Allow-Failure__test-rustfmt,https://gitlab.com/susurrus/gattii,https://gitlab.com/susurrus/gattii/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__gattii/.gitlab-ci.yml,susurrus__gattii,Job-Allow-Failure,,test,test:rustfmt,Allows failure of job `test:rustfmt` at stage `test`,37,.gitlab-ci.yml,susurrus,susurrus/gattii +susurrus__gattii__Job-Allow-Failure__test-clippy,https://gitlab.com/susurrus/gattii,https://gitlab.com/susurrus/gattii/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/susurrus__gattii/.gitlab-ci.yml,susurrus__gattii,Job-Allow-Failure,,test,test:clippy,Allows failure of job `test:clippy` at stage `test`,53,.gitlab-ci.yml,susurrus,susurrus/gattii +eightnoteight__aschedule__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/eightnoteight/aschedule,https://gitlab.com/eightnoteight/aschedule/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/eightnoteight__aschedule/requirements.txt,eightnoteight__aschedule,Versioning,missing,,sphinx,version specifier is missing,6,requirements.txt,eightnoteight,eightnoteight/aschedule +gitlab-org__csslab__Manual-Job__update_snapshots,https://gitlab.com/gitlab-org/csslab,https://gitlab.com/gitlab-org/csslab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__csslab/.gitlab-ci.yml,gitlab-org__csslab,Manual-Job,,build,update_snapshots,Manual job `update_snapshots` at stage `build`,34,.gitlab-ci.yml,gitlab-org,gitlab-org/csslab +wrobell__remt__Versioning__requirementstxt__asyncio-contextmanager__missing,https://gitlab.com/wrobell/remt,https://gitlab.com/wrobell/remt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/wrobell__remt/requirements.txt,wrobell__remt,Versioning,missing,,asyncio-contextmanager,version specifier is missing,1,requirements.txt,wrobell,wrobell/remt +wrobell__remt__Versioning__requirementstxt__asyncssh__missing,https://gitlab.com/wrobell/remt,https://gitlab.com/wrobell/remt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/wrobell__remt/requirements.txt,wrobell__remt,Versioning,missing,,asyncssh,version specifier is missing,2,requirements.txt,wrobell,wrobell/remt +wrobell__remt__Versioning__requirementstxt__cytoolz__missing,https://gitlab.com/wrobell/remt,https://gitlab.com/wrobell/remt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/wrobell__remt/requirements.txt,wrobell__remt,Versioning,missing,,cytoolz,version specifier is missing,3,requirements.txt,wrobell,wrobell/remt +wrobell__remt__Versioning__requirementstxt__pycairo__missing,https://gitlab.com/wrobell/remt,https://gitlab.com/wrobell/remt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/wrobell__remt/requirements.txt,wrobell__remt,Versioning,missing,,pycairo,version specifier is missing,4,requirements.txt,wrobell,wrobell/remt +wrobell__remt__Versioning__requirementstxt__PyGObject__missing,https://gitlab.com/wrobell/remt,https://gitlab.com/wrobell/remt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/wrobell__remt/requirements.txt,wrobell__remt,Versioning,missing,,PyGObject,version specifier is missing,5,requirements.txt,wrobell,wrobell/remt +BuildGrid__buildgrid__Versioning__gitlabyaml__sqlalchemy__missing,https://gitlab.com/BuildGrid/buildgrid,https://gitlab.com/BuildGrid/buildgrid/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BuildGrid__buildgrid/.gitlab-ci.yml,BuildGrid__buildgrid,Versioning,missing,,sqlalchemy,version specifier is missing,61,.gitlab-ci.yml,BuildGrid,BuildGrid/buildgrid +BuildGrid__buildgrid__Versioning__gitlabyaml__grpc__missing,https://gitlab.com/BuildGrid/buildgrid,https://gitlab.com/BuildGrid/buildgrid/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BuildGrid__buildgrid/.gitlab-ci.yml,BuildGrid__buildgrid,Versioning,missing,,grpc,version specifier is missing,61,.gitlab-ci.yml,BuildGrid,BuildGrid/buildgrid +BuildGrid__buildgrid__Versioning__gitlabyaml__boto3__missing,https://gitlab.com/BuildGrid/buildgrid,https://gitlab.com/BuildGrid/buildgrid/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/BuildGrid__buildgrid/.gitlab-ci.yml,BuildGrid__buildgrid,Versioning,missing,,boto3,version specifier is missing,61,.gitlab-ci.yml,BuildGrid,BuildGrid/buildgrid +jensstein__oandbackup__Job-Allow-Failure__cargo-test-nightly,https://gitlab.com/jensstein/oandbackup,https://gitlab.com/jensstein/oandbackup/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/jensstein__oandbackup/.gitlab-ci.yml,jensstein__oandbackup,Job-Allow-Failure,,cargo:test:nightly,cargo:test:nightly,Allows failure of job `cargo:test:nightly` at stage `cargo:test:nightly`,108,.gitlab-ci.yml,jensstein,jensstein/oandbackup +datadrivendiscovery__d3m__Versioning__gitlabyaml__--ls__missing,https://gitlab.com/datadrivendiscovery/d3m,https://gitlab.com/datadrivendiscovery/d3m/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__d3m/.gitlab-ci.yml,datadrivendiscovery__d3m,Versioning,missing,,$(ls,version specifier is missing,35,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/d3m +datadrivendiscovery__d3m__Versioning__gitlabyaml__--ls__missing,https://gitlab.com/datadrivendiscovery/d3m,https://gitlab.com/datadrivendiscovery/d3m/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__d3m/.gitlab-ci.yml,datadrivendiscovery__d3m,Versioning,missing,,$(ls,version specifier is missing,35,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/d3m +datadrivendiscovery__d3m__Versioning__gitlabyaml__--ls__missing,https://gitlab.com/datadrivendiscovery/d3m,https://gitlab.com/datadrivendiscovery/d3m/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__d3m/.gitlab-ci.yml,datadrivendiscovery__d3m,Versioning,missing,,$(ls,version specifier is missing,35,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/d3m +datadrivendiscovery__d3m__Versioning__gitlabyaml__--ls__missing,https://gitlab.com/datadrivendiscovery/d3m,https://gitlab.com/datadrivendiscovery/d3m/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/datadrivendiscovery__d3m/.gitlab-ci.yml,datadrivendiscovery__d3m,Versioning,missing,,$(ls,version specifier is missing,35,.gitlab-ci.yml,datadrivendiscovery,datadrivendiscovery/d3m +psono__psono-server__Versioning__gitlabyaml__safety__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,safety,version specifier is missing,127,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__safety__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,safety,version specifier is missing,127,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__check__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,check,version specifier is missing,127,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__python3__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,python3,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__psono__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,psono,version specifier is missing,2,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__python3__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,python3,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__presetup__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,presetup,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__python3__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,python3,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__migrate__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,migrate,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__coverage3__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,coverage3,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__run__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,run,version specifier is missing,39,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__test__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,test,version specifier is missing,3,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__restapi-tests__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,restapi.tests,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__administration-tests__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,administration.tests,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__fileserver-tests__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,fileserver.tests,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__--__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,&&,version specifier is missing,22,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__coverage3__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,coverage3,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +psono__psono-server__Versioning__gitlabyaml__report__missing,https://gitlab.com/psono/psono-server,https://gitlab.com/psono/psono-server/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/psono__psono-server/.gitlab-ci.yml,psono__psono-server,Versioning,missing,,report,version specifier is missing,60,.gitlab-ci.yml,psono,psono/psono-server +metachris__python-boilerplate-templates__Versioning__requirementstxt__logzero__missing,https://gitlab.com/metachris/python-boilerplate-templates,https://gitlab.com/metachris/python-boilerplate-templates/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/metachris__python-boilerplate-templates/requirements.txt,metachris__python-boilerplate-templates,Versioning,missing,,logzero,version specifier is missing,6,requirements.txt,metachris,metachris/python-boilerplate-templates +bor-sh__git-gitlab__Versioning__gitlabyaml__mock__missing,https://gitlab.com/bor-sh/git-gitlab,https://gitlab.com/bor-sh/git-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bor-sh__git-gitlab/.gitlab-ci.yml,bor-sh__git-gitlab,Versioning,missing,,mock,version specifier is missing,15,.gitlab-ci.yml,bor-sh,bor-sh/git-gitlab +bor-sh__git-gitlab__Versioning__gitlabyaml__unittest2__missing,https://gitlab.com/bor-sh/git-gitlab,https://gitlab.com/bor-sh/git-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/bor-sh__git-gitlab/.gitlab-ci.yml,bor-sh__git-gitlab,Versioning,missing,,unittest2,version specifier is missing,15,.gitlab-ci.yml,bor-sh,bor-sh/git-gitlab +xomachine__SteamForwarder__Job-Allow-Failure__test-devel,https://gitlab.com/xomachine/SteamForwarder,https://gitlab.com/xomachine/SteamForwarder/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/xomachine__SteamForwarder/.gitlab-ci.yml,xomachine__SteamForwarder,Job-Allow-Failure,,test,test:devel,Allows failure of job `test:devel` at stage `test`,98,.gitlab-ci.yml,xomachine,xomachine/SteamForwarder +ayufan__gitlab-compose-kit__Job-Allow-Failure__dev-EE,https://gitlab.com/ayufan/gitlab-compose-kit,https://gitlab.com/ayufan/gitlab-compose-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ayufan__gitlab-compose-kit/.gitlab-ci.yml,ayufan__gitlab-compose-kit,Job-Allow-Failure,,test,dev EE,Allows failure of job `dev EE` at stage `test`,33,.gitlab-ci.yml,ayufan,ayufan/gitlab-compose-kit +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-pre,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply pre,Manual job `apply pre` at stage `apply`,663,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-testbed,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply testbed,Manual job `apply testbed` at stage `apply`,742,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-packagecloud,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply packagecloud,Manual job `apply packagecloud` at stage `apply`,1216,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-gstg,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply gstg,Manual job `apply gstg` at stage `apply`,505,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-dns,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply dns,Manual job `apply dns` at stage `apply`,1058,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-ci,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply ci,Manual job `apply ci` at stage `apply`,900,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-okta-asa,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply okta-asa,Manual job `apply okta-asa` at stage `apply`,1137,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-ops,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply ops,Manual job `apply ops` at stage `apply`,584,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-windows-ci,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply windows-ci,Manual job `apply windows-ci` at stage `apply`,979,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-dr,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply dr,Manual job `apply dr` at stage `apply`,347,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-aws-account,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply aws-account,Manual job `apply aws-account` at stage `apply`,189,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-gprd,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply gprd,Manual job `apply gprd` at stage `apply`,426,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-aws-snowplow,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply aws-snowplow,Manual job `apply aws-snowplow` at stage `apply`,268,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +gitlab-com__gitlab-com-infrastructure__Manual-Job__apply-redirects,https://gitlab.com/gitlab-com/gitlab-com-infrastructure,https://gitlab.com/gitlab-com/gitlab-com-infrastructure/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-com-infrastructure/.gitlab-ci.yml,gitlab-com__gitlab-com-infrastructure,Manual-Job,,apply,apply redirects,Manual job `apply redirects` at stage `apply`,821,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-com-infrastructure +flectra-hq__extra-addons__Versioning__requirementstxt__raven__missing,https://gitlab.com/flectra-hq/extra-addons,https://gitlab.com/flectra-hq/extra-addons/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-hq__extra-addons/requirements.txt,flectra-hq__extra-addons,Versioning,missing,,raven,version specifier is missing,1,requirements.txt,flectra-hq,flectra-hq/extra-addons +flectra-hq__extra-addons__Versioning__requirementstxt__validate_email__missing,https://gitlab.com/flectra-hq/extra-addons,https://gitlab.com/flectra-hq/extra-addons/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-hq__extra-addons/requirements.txt,flectra-hq__extra-addons,Versioning,missing,,validate_email,version specifier is missing,2,requirements.txt,flectra-hq,flectra-hq/extra-addons +flectra-hq__extra-addons__Versioning__requirementstxt__py3DNS__missing,https://gitlab.com/flectra-hq/extra-addons,https://gitlab.com/flectra-hq/extra-addons/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/flectra-hq__extra-addons/requirements.txt,flectra-hq__extra-addons,Versioning,missing,,py3DNS,version specifier is missing,3,requirements.txt,flectra-hq,flectra-hq/extra-addons +librebob__athenaeum__Versioning__requirementstxt__python-dateutil__any-upper-version,https://gitlab.com/librebob/athenaeum,https://gitlab.com/librebob/athenaeum/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/librebob__athenaeum/requirements.txt,librebob__athenaeum,Versioning,any-upper-version,,python-dateutil,version specifier `>=2.8` matches future versions that might become incompatible,1,requirements.txt,librebob,librebob/athenaeum +librebob__athenaeum__Versioning__requirementstxt__numpy__any-upper-version,https://gitlab.com/librebob/athenaeum,https://gitlab.com/librebob/athenaeum/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/librebob__athenaeum/requirements.txt,librebob__athenaeum,Versioning,any-upper-version,,numpy,version specifier `>=1.17` matches future versions that might become incompatible,2,requirements.txt,librebob,librebob/athenaeum +librebob__athenaeum__Versioning__requirementstxt__PyQt5__any-upper-version,https://gitlab.com/librebob/athenaeum,https://gitlab.com/librebob/athenaeum/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/librebob__athenaeum/requirements.txt,librebob__athenaeum,Versioning,any-upper-version,,PyQt5,version specifier `>=5.11` matches future versions that might become incompatible,3,requirements.txt,librebob,librebob/athenaeum +postmarketOS__pmaports__Job-Allow-Failure__aport-lint,https://gitlab.com/postmarketOS/pmaports,https://gitlab.com/postmarketOS/pmaports/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/postmarketOS__pmaports/.gitlab-ci.yml,postmarketOS__pmaports,Job-Allow-Failure,,first,aport-lint,Allows failure of job `aport-lint` at stage `first`,84,.gitlab-ci.yml,postmarketOS,postmarketOS/pmaports +PushFish__PushFish-API__Versioning__requirementstxt__sqlalchemy__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,sqlalchemy,version specifier is missing,1,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__flask__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,flask,version specifier is missing,2,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__flask-sqlalchemy__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,flask-sqlalchemy,version specifier is missing,3,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__pyzmq__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,pyzmq,version specifier is missing,4,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__requests__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,requests,version specifier is missing,5,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__appdirs__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,appdirs,version specifier is missing,6,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Versioning__requirementstxt__paho-mqtt__missing,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/requirements.txt,PushFish__PushFish-API,Versioning,missing,,paho-mqtt,version specifier is missing,7,requirements.txt,PushFish,PushFish/PushFish-API +PushFish__PushFish-API__Job-Allow-Failure__pylint,https://gitlab.com/PushFish/PushFish-API,https://gitlab.com/PushFish/PushFish-API/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/PushFish__PushFish-API/.gitlab-ci.yml,PushFish__PushFish-API,Job-Allow-Failure,,test,pylint,Allows failure of job `pylint` at stage `test`,49,.gitlab-ci.yml,PushFish,PushFish/PushFish-API +cordite__cordite__Job-Allow-Failure__build-node-client,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,build,build:node-client,Allows failure of job `build:node-client` at stage `build`,89,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Allow-Failure__build-pages,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,build,build:pages,Allows failure of job `build:pages` at stage `build`,74,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Allow-Failure__release-node-client,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,release,release:node-client,Allows failure of job `release:node-client` at stage `release`,219,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Allow-Failure__dependency_scanning,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,183,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Allow-Failure__release-maven,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,release,release:maven,Allows failure of job `release:maven` at stage `release`,199,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Allow-Failure__release-pages,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Allow-Failure,,release,release:pages,Allows failure of job `release:pages` at stage `release`,236,.gitlab-ci.yml,cordite,cordite/cordite +cordite__cordite__Job-Retry__test-nms,https://gitlab.com/cordite/cordite,https://gitlab.com/cordite/cordite/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cordite__cordite/.gitlab-ci.yml,cordite__cordite,Job-Retry,always,test,test:nms,2,106,.gitlab-ci.yml,cordite,cordite/cordite +juhani__go-semrel-gitlab__Manual-Job__test,https://gitlab.com/juhani/go-semrel-gitlab,https://gitlab.com/juhani/go-semrel-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/juhani__go-semrel-gitlab/.gitlab-ci.yml,juhani__go-semrel-gitlab,Manual-Job,,build,test,Manual job `test` at stage `build`,12,.gitlab-ci.yml,juhani,juhani/go-semrel-gitlab +Manu343726__tinyrefl__Job-Retry__conan-integration-gcc5,https://gitlab.com/Manu343726/tinyrefl,https://gitlab.com/Manu343726/tinyrefl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Manu343726__tinyrefl/.gitlab-ci.yml,Manu343726__tinyrefl,Job-Retry,always,conan-integration,conan-integration-gcc5,2,313,.gitlab-ci.yml,Manu343726,Manu343726/tinyrefl +Manu343726__tinyrefl__Job-Retry__conan-integration-gcc6,https://gitlab.com/Manu343726/tinyrefl,https://gitlab.com/Manu343726/tinyrefl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Manu343726__tinyrefl/.gitlab-ci.yml,Manu343726__tinyrefl,Job-Retry,always,conan-integration,conan-integration-gcc6,2,313,.gitlab-ci.yml,Manu343726,Manu343726/tinyrefl +Manu343726__tinyrefl__Job-Retry__conan-integration-gcc7,https://gitlab.com/Manu343726/tinyrefl,https://gitlab.com/Manu343726/tinyrefl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Manu343726__tinyrefl/.gitlab-ci.yml,Manu343726__tinyrefl,Job-Retry,always,conan-integration,conan-integration-gcc7,2,313,.gitlab-ci.yml,Manu343726,Manu343726/tinyrefl +Manu343726__tinyrefl__Job-Retry__conan-integration-gcc8,https://gitlab.com/Manu343726/tinyrefl,https://gitlab.com/Manu343726/tinyrefl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Manu343726__tinyrefl/.gitlab-ci.yml,Manu343726__tinyrefl,Job-Retry,always,conan-integration,conan-integration-gcc8,2,313,.gitlab-ci.yml,Manu343726,Manu343726/tinyrefl +Manu343726__tinyrefl__Job-Retry__conan-integration-clang60,https://gitlab.com/Manu343726/tinyrefl,https://gitlab.com/Manu343726/tinyrefl/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Manu343726__tinyrefl/.gitlab-ci.yml,Manu343726__tinyrefl,Job-Retry,always,conan-integration,conan-integration-clang60,2,313,.gitlab-ci.yml,Manu343726,Manu343726/tinyrefl +passit__passit-backend__Versioning__gitlabyaml__docker__missing,https://gitlab.com/passit/passit-backend,https://gitlab.com/passit/passit-backend/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/passit__passit-backend/.gitlab-ci.yml,passit__passit-backend,Versioning,missing,,docker,version specifier is missing,1,.gitlab-ci.yml,passit,passit/passit-backend +gitlab-org__gitlab-qa__Job-Allow-Failure__ee-custom-parallel,https://gitlab.com/gitlab-org/gitlab-qa,https://gitlab.com/gitlab-org/gitlab-qa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-qa/.gitlab-ci.yml,gitlab-org__gitlab-qa,Job-Allow-Failure,,test,ee:custom-parallel,Allows failure of job `ee:custom-parallel` at stage `test`,162,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-qa +gitlab-org__gitlab-qa__Job-Allow-Failure__ee-praefect,https://gitlab.com/gitlab-org/gitlab-qa,https://gitlab.com/gitlab-org/gitlab-qa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-qa/.gitlab-ci.yml,gitlab-org__gitlab-qa,Job-Allow-Failure,,test,ee:praefect,Allows failure of job `ee:praefect` at stage `test`,781,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-qa +gitlab-org__gitlab-qa__Job-Allow-Failure__ce-praefect,https://gitlab.com/gitlab-org/gitlab-qa,https://gitlab.com/gitlab-org/gitlab-qa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-qa/.gitlab-ci.yml,gitlab-org__gitlab-qa,Job-Allow-Failure,,test,ce:praefect,Allows failure of job `ce:praefect` at stage `test`,769,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-qa +gitlab-org__gitlab-qa__Job-Allow-Failure__staging,https://gitlab.com/gitlab-org/gitlab-qa,https://gitlab.com/gitlab-org/gitlab-qa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-qa/.gitlab-ci.yml,gitlab-org__gitlab-qa,Job-Allow-Failure,,test,staging,Allows failure of job `staging` at stage `test`,813,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-qa +gitlab-org__gitlab-qa__Job-Allow-Failure__ce-custom-parallel,https://gitlab.com/gitlab-org/gitlab-qa,https://gitlab.com/gitlab-org/gitlab-qa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-qa/.gitlab-ci.yml,gitlab-org__gitlab-qa,Job-Allow-Failure,,test,ce:custom-parallel,Allows failure of job `ce:custom-parallel` at stage `test`,152,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-qa +stp-team__systemtestportal-webapp__Job-Allow-Failure__lint-source,https://gitlab.com/stp-team/systemtestportal-webapp,https://gitlab.com/stp-team/systemtestportal-webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stp-team__systemtestportal-webapp/.gitlab-ci.yml,stp-team__systemtestportal-webapp,Job-Allow-Failure,,test,lint-source,Allows failure of job `lint-source` at stage `test`,39,.gitlab-ci.yml,stp-team,stp-team/systemtestportal-webapp +stp-team__systemtestportal-webapp__Manual-Job__start_review,https://gitlab.com/stp-team/systemtestportal-webapp,https://gitlab.com/stp-team/systemtestportal-webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stp-team__systemtestportal-webapp/.gitlab-ci.yml,stp-team__systemtestportal-webapp,Manual-Job,,review,start_review,Manual job `start_review` at stage `review`,471,.gitlab-ci.yml,stp-team,stp-team/systemtestportal-webapp +librespacefoundation__satnogs__satnogs-network__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-network,https://gitlab.com/librespacefoundation/satnogs/satnogs-network/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-network/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-network,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,29,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-network +librespacefoundation__satnogs__satnogs-network__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-network,https://gitlab.com/librespacefoundation/satnogs/satnogs-network/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-network/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-network,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,29,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-network +librespacefoundation__satnogs__satnogs-network__Versioning__gitlabyaml__-GITLAB_CI_PYPI_TOX__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-network,https://gitlab.com/librespacefoundation/satnogs/satnogs-network/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-network/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-network,Versioning,missing,,$GITLAB_CI_PYPI_TOX,version specifier is missing,29,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-network +librespacefoundation__satnogs__satnogs-network__Versioning__gitlabyaml__-GITLAB_CI_PYPI_DOCKER_COMPOSE__missing,https://gitlab.com/librespacefoundation/satnogs/satnogs-network,https://gitlab.com/librespacefoundation/satnogs/satnogs-network/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/librespacefoundation__satnogs__satnogs-network/.gitlab-ci.yml,librespacefoundation__satnogs__satnogs-network,Versioning,missing,,$GITLAB_CI_PYPI_DOCKER_COMPOSE,version specifier is missing,72,.gitlab-ci.yml,librespacefoundation,librespacefoundation/satnogs/satnogs-network +gitlab-org__gitlab-triage__Job-Allow-Failure__code_quality,https://gitlab.com/gitlab-org/gitlab-triage,https://gitlab.com/gitlab-org/gitlab-triage/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-triage/.gitlab-ci.yml,gitlab-org__gitlab-triage,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,60,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-triage +gitlab-org__gitlab-triage__Manual-Job__dry-run-custom,https://gitlab.com/gitlab-org/gitlab-triage,https://gitlab.com/gitlab-org/gitlab-triage/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-triage/.gitlab-ci.yml,gitlab-org__gitlab-triage,Manual-Job,,test,dry-run:custom,Manual job `dry-run:custom` at stage `test`,115,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-triage +subnetzero__iridium__Job-Allow-Failure__cargo-test,https://gitlab.com/subnetzero/iridium,https://gitlab.com/subnetzero/iridium/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/subnetzero__iridium/.gitlab-ci.yml,subnetzero__iridium,Job-Allow-Failure,,test,cargo test,Allows failure of job `cargo test` at stage `test`,17,.gitlab-ci.yml,subnetzero,subnetzero/iridium +doctorj__sairen__Versioning__requirementstxt__numpy__missing,https://gitlab.com/doctorj/sairen,https://gitlab.com/doctorj/sairen/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__sairen/requirements.txt,doctorj__sairen,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,doctorj,doctorj/sairen +doctorj__sairen__Versioning__requirementstxt__gym__missing,https://gitlab.com/doctorj/sairen,https://gitlab.com/doctorj/sairen/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__sairen/requirements.txt,doctorj__sairen,Versioning,missing,,gym,version specifier is missing,2,requirements.txt,doctorj,doctorj/sairen +doctorj__sairen__Versioning__requirementstxt__sphinx__missing,https://gitlab.com/doctorj/sairen,https://gitlab.com/doctorj/sairen/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__sairen/requirements.txt,doctorj__sairen,Versioning,missing,,sphinx,version specifier is missing,4,requirements.txt,doctorj,doctorj/sairen +doctorj__sairen__Versioning__requirementstxt__sphinx_rtd_theme__missing,https://gitlab.com/doctorj/sairen,https://gitlab.com/doctorj/sairen/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__sairen/requirements.txt,doctorj__sairen,Versioning,missing,,sphinx_rtd_theme,version specifier is missing,5,requirements.txt,doctorj,doctorj/sairen +gitlab-org__security-products__sast__Manual-Job__build-major,https://gitlab.com/gitlab-org/security-products/sast,https://gitlab.com/gitlab-org/security-products/sast/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__security-products__sast/.gitlab-ci.yml,gitlab-org__security-products__sast,Manual-Job,,test,build major,Manual job `build major` at stage `test`,95,.gitlab-ci.yml,gitlab-org,gitlab-org/security-products/sast +guyzmo__git-repo__Versioning__requirementstxt__docopt__missing,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,missing,,docopt,version specifier is missing,1,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__progress__missing,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,missing,,progress,version specifier is missing,2,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__python-dateutil__missing,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,missing,,python-dateutil,version specifier is missing,3,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__lxml__missing,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,missing,,lxml,version specifier is missing,4,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__GitPython__any-upper-version,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,any-upper-version,,GitPython,version specifier `>=2.1.0` matches future versions that might become incompatible,5,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__python-gitlab__any-upper-version,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,any-upper-version,,python-gitlab,version specifier `>=1.0.0` matches future versions that might become incompatible,7,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__gogs-client__any-upper-version,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,any-upper-version,,gogs-client,version specifier `>=1.0.3` matches future versions that might become incompatible,8,requirements.txt,guyzmo,guyzmo/git-repo +guyzmo__git-repo__Versioning__requirementstxt__pybitbucket_fork__any-upper-version,https://gitlab.com/guyzmo/git-repo,https://gitlab.com/guyzmo/git-repo/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/guyzmo__git-repo/requirements.txt,guyzmo__git-repo,Versioning,any-upper-version,,pybitbucket_fork,version specifier `>=0.12.2` matches future versions that might become incompatible,9,requirements.txt,guyzmo,guyzmo/git-repo +allianceauth__allianceauth__Versioning__gitlabyaml__twine__missing,https://gitlab.com/allianceauth/allianceauth,https://gitlab.com/allianceauth/allianceauth/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/allianceauth__allianceauth/.gitlab-ci.yml,allianceauth__allianceauth,Versioning,missing,,twine,version specifier is missing,54,.gitlab-ci.yml,allianceauth,allianceauth/allianceauth +EAVISE__lightnet__Versioning__gitlabyaml__IPython__missing,https://gitlab.com/EAVISE/lightnet,https://gitlab.com/EAVISE/lightnet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__lightnet/.gitlab-ci.yml,EAVISE__lightnet,Versioning,missing,,IPython,version specifier is missing,70,.gitlab-ci.yml,EAVISE,EAVISE/lightnet +EAVISE__lightnet__Versioning__gitlabyaml__twine__missing,https://gitlab.com/EAVISE/lightnet,https://gitlab.com/EAVISE/lightnet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__lightnet/.gitlab-ci.yml,EAVISE__lightnet,Versioning,missing,,twine,version specifier is missing,50,.gitlab-ci.yml,EAVISE,EAVISE/lightnet +EAVISE__lightnet__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/EAVISE/lightnet,https://gitlab.com/EAVISE/lightnet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__lightnet/.gitlab-ci.yml,EAVISE__lightnet,Versioning,missing,,wheel,version specifier is missing,50,.gitlab-ci.yml,EAVISE,EAVISE/lightnet +EAVISE__lightnet__Versioning__gitlabyaml__twine__missing,https://gitlab.com/EAVISE/lightnet,https://gitlab.com/EAVISE/lightnet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__lightnet/.gitlab-ci.yml,EAVISE__lightnet,Versioning,missing,,twine,version specifier is missing,50,.gitlab-ci.yml,EAVISE,EAVISE/lightnet +EAVISE__lightnet__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/EAVISE/lightnet,https://gitlab.com/EAVISE/lightnet/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/EAVISE__lightnet/.gitlab-ci.yml,EAVISE__lightnet,Versioning,missing,,wheel,version specifier is missing,50,.gitlab-ci.yml,EAVISE,EAVISE/lightnet +pages__sphinx__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/pages/sphinx,https://gitlab.com/pages/sphinx/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pages__sphinx/.gitlab-ci.yml,pages__sphinx,Versioning,missing,,sphinx,version specifier is missing,6,.gitlab-ci.yml,pages,pages/sphinx +pages__sphinx__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/pages/sphinx,https://gitlab.com/pages/sphinx/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pages__sphinx/.gitlab-ci.yml,pages__sphinx,Versioning,missing,,sphinx,version specifier is missing,6,.gitlab-ci.yml,pages,pages/sphinx +gitlab-org__takeoff__Job-Allow-Failure__rubocop,https://gitlab.com/gitlab-org/takeoff,https://gitlab.com/gitlab-org/takeoff/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__takeoff/.gitlab-ci.yml,gitlab-org__takeoff,Job-Allow-Failure,,test,rubocop,Allows failure of job `rubocop` at stage `test`,20,.gitlab-ci.yml,gitlab-org,gitlab-org/takeoff +gpaw__gpaw__Versioning__gitlabyaml__-__missing,https://gitlab.com/gpaw/gpaw,https://gitlab.com/gpaw/gpaw/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gpaw__gpaw/.gitlab-ci.yml,gpaw__gpaw,Versioning,missing,,>,version specifier is missing,5,.gitlab-ci.yml,gpaw,gpaw/gpaw +gpaw__gpaw__Versioning__gitlabyaml__ase__missing,https://gitlab.com/gpaw/gpaw,https://gitlab.com/gpaw/gpaw/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gpaw__gpaw/.gitlab-ci.yml,gpaw__gpaw,Versioning,missing,,ase,version specifier is missing,7,.gitlab-ci.yml,gpaw,gpaw/gpaw +Molcas__OpenMolcas__Job-Retry__tinker,https://gitlab.com/Molcas/OpenMolcas,https://gitlab.com/Molcas/OpenMolcas/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Molcas__OpenMolcas/.gitlab-ci.yml,Molcas__OpenMolcas,Job-Retry,always,build,tinker,2,201,.gitlab-ci.yml,Molcas,Molcas/OpenMolcas +gitmate__open-source__IGitt__Versioning__requirementstxt__cryptography__only-major-number,https://gitlab.com/gitmate/open-source/IGitt,https://gitlab.com/gitmate/open-source/IGitt/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/gitmate__open-source__IGitt/requirements.txt,gitmate__open-source__IGitt,Versioning,only-major-number,,cryptography,"version specifier `>=2.1.4,<3` only refers to a major release, concrete minor versions might be incompatible",5,requirements.txt,gitmate,gitmate/open-source/IGitt +gitmate__open-source__IGitt__Versioning__gitlabyaml__-coala__missing,https://gitlab.com/gitmate/open-source/IGitt,https://gitlab.com/gitmate/open-source/IGitt/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitmate__open-source__IGitt/.gitlab-ci.yml,gitmate__open-source__IGitt,Versioning,missing,,'coala,version specifier is missing,24,.gitlab-ci.yml,gitmate,gitmate/open-source/IGitt +vstconsulting__polemarch__Versioning__requirementstxt__netaddr__missing,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/requirements.txt,vstconsulting__polemarch,Versioning,missing,,netaddr,version specifier is missing,14,requirements.txt,vstconsulting,vstconsulting/polemarch +vstconsulting__polemarch__Job-Allow-Failure__release_pypi,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/.gitlab-ci.yml,vstconsulting__polemarch,Job-Allow-Failure,,release,release_pypi,Allows failure of job `release_pypi` at stage `release`,159,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch +vstconsulting__polemarch__Job-Allow-Failure__publish_release,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/.gitlab-ci.yml,vstconsulting__polemarch,Job-Allow-Failure,,publish,publish_release,Allows failure of job `publish_release` at stage `publish`,197,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch +vstconsulting__polemarch__Job-Retry__py37-coverage,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/.gitlab-ci.yml,vstconsulting__polemarch,Job-Retry,always,test,py37-coverage,2,32,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch +vstconsulting__polemarch__Job-Retry__code_style,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/.gitlab-ci.yml,vstconsulting__polemarch,Job-Retry,always,code_standarts,code_style,2,67,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch +vstconsulting__polemarch__Job-Retry__py36-install,https://gitlab.com/vstconsulting/polemarch,https://gitlab.com/vstconsulting/polemarch/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/vstconsulting__polemarch/.gitlab-ci.yml,vstconsulting__polemarch,Job-Retry,always,test,py36-install,2,32,.gitlab-ci.yml,vstconsulting,vstconsulting/polemarch +gableroux__unity3d__Job-Retry__unity_2019_3_3f1-windows,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,build,unity_2019_3_3f1-windows,2,46,.gitlab-ci.yml,gableroux,gableroux/unity3d +gableroux__unity3d__Job-Retry__unity_2019_3_3f1-ios,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,build,unity_2019_3_3f1-ios,2,46,.gitlab-ci.yml,gableroux,gableroux/unity3d +gableroux__unity3d__Job-Retry__unity_2019_3_3f1-mac,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,build,unity_2019_3_3f1-mac,2,46,.gitlab-ci.yml,gableroux,gableroux/unity3d +gableroux__unity3d__Job-Retry__unity_2019_3_3f1-webgl,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,build,unity_2019_3_3f1-webgl,2,46,.gitlab-ci.yml,gableroux,gableroux/unity3d +gableroux__unity3d__Job-Retry__unity_2019_3_3f1-android,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,build,unity_2019_3_3f1-android,2,46,.gitlab-ci.yml,gableroux,gableroux/unity3d +gableroux__unity3d__Job-Retry__prepare_2019_3_3f1,https://gitlab.com/gableroux/unity3d,https://gitlab.com/gableroux/unity3d/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d/.gitlab-ci.yml,gableroux__unity3d,Job-Retry,always,prepare,prepare_2019_3_3f1,2,53,.gitlab-ci.yml,gableroux,gableroux/unity3d +formschema__native__Job-Allow-Failure__security-scan,https://gitlab.com/formschema/native,https://gitlab.com/formschema/native/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/formschema__native/.gitlab-ci.yml,formschema__native,Job-Allow-Failure,,dependencies,security scan,Allows failure of job `security scan` at stage `dependencies`,30,.gitlab-ci.yml,formschema,formschema/native +formschema__native__Job-Allow-Failure__npm-outdated,https://gitlab.com/formschema/native,https://gitlab.com/formschema/native/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/formschema__native/.gitlab-ci.yml,formschema__native,Job-Allow-Failure,,dependencies,npm outdated,Allows failure of job `npm outdated` at stage `dependencies`,24,.gitlab-ci.yml,formschema,formschema/native +dalibo__postgresql_anonymizer__Job-Allow-Failure__make9-5,https://gitlab.com/dalibo/postgresql_anonymizer,https://gitlab.com/dalibo/postgresql_anonymizer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalibo__postgresql_anonymizer/.gitlab-ci.yml,dalibo__postgresql_anonymizer,Job-Allow-Failure,,build,make9.5,Allows failure of job `make9.5` at stage `build`,30,.gitlab-ci.yml,dalibo,dalibo/postgresql_anonymizer +dalibo__postgresql_anonymizer__Manual-Job__make11-centos,https://gitlab.com/dalibo/postgresql_anonymizer,https://gitlab.com/dalibo/postgresql_anonymizer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalibo__postgresql_anonymizer/.gitlab-ci.yml,dalibo__postgresql_anonymizer,Manual-Job,,build,make11-centos,Manual job `make11-centos` at stage `build`,127,.gitlab-ci.yml,dalibo,dalibo/postgresql_anonymizer +dalibo__postgresql_anonymizer__Manual-Job__make9-5,https://gitlab.com/dalibo/postgresql_anonymizer,https://gitlab.com/dalibo/postgresql_anonymizer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalibo__postgresql_anonymizer/.gitlab-ci.yml,dalibo__postgresql_anonymizer,Manual-Job,,build,make9.5,Manual job `make9.5` at stage `build`,30,.gitlab-ci.yml,dalibo,dalibo/postgresql_anonymizer +dalibo__postgresql_anonymizer__Manual-Job__demo,https://gitlab.com/dalibo/postgresql_anonymizer,https://gitlab.com/dalibo/postgresql_anonymizer/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/dalibo__postgresql_anonymizer/.gitlab-ci.yml,dalibo__postgresql_anonymizer,Manual-Job,,test,demo,Manual job `demo` at stage `test`,175,.gitlab-ci.yml,dalibo,dalibo/postgresql_anonymizer +fdroid__fdroid-website__Job-Allow-Failure__i18n_sync,https://gitlab.com/fdroid/fdroid-website,https://gitlab.com/fdroid/fdroid-website/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroid-website/.gitlab-ci.yml,fdroid__fdroid-website,Job-Allow-Failure,,deploy,i18n_sync,Allows failure of job `i18n_sync` at stage `deploy`,176,.gitlab-ci.yml,fdroid,fdroid/fdroid-website +fdroid__fdroid-website__Job-Allow-Failure__spellcheck,https://gitlab.com/fdroid/fdroid-website,https://gitlab.com/fdroid/fdroid-website/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroid-website/.gitlab-ci.yml,fdroid__fdroid-website,Job-Allow-Failure,,deploy,spellcheck,Allows failure of job `spellcheck` at stage `deploy`,112,.gitlab-ci.yml,fdroid,fdroid/fdroid-website +DDP2-CSUI__assignment__Manual-Job__funtest-a1,https://gitlab.com/DDP2-CSUI/assignment,https://gitlab.com/DDP2-CSUI/assignment/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DDP2-CSUI__assignment/.gitlab-ci.yml,DDP2-CSUI__assignment,Manual-Job,,test,funtest:a1,Manual job `funtest:a1` at stage `test`,44,.gitlab-ci.yml,DDP2-CSUI,DDP2-CSUI/assignment +fdroid__repomaker__Versioning__requirementstxt__-rdebian-requirements-txt__missing,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,missing,,-rdebian/requirements.txt,version specifier is missing,-1,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__django-compressor__missing,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,missing,,django-compressor,version specifier is missing,3,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__libsass__missing,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,missing,,libsass,version specifier is missing,4,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__qrcode__missing,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,missing,,qrcode,version specifier is missing,5,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__six__any-upper-version,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,any-upper-version,,six,version specifier `>=1.9#untilbleachdependsonhtml5lib>=1.0` matches future versions that might become incompatible,6,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__bleach__any-upper-version,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,any-upper-version,,bleach,version specifier `>=2.1.4` matches future versions that might become incompatible,6,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__python-magic__missing,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,missing,,python-magic,version specifier is missing,8,requirements.txt,fdroid,fdroid/repomaker +fdroid__repomaker__Versioning__requirementstxt__cryptography__any-upper-version,https://gitlab.com/fdroid/repomaker,https://gitlab.com/fdroid/repomaker/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/fdroid__repomaker/requirements.txt,fdroid__repomaker,Versioning,any-upper-version,,cryptography,version specifier `>=1.4.0` matches future versions that might become incompatible,9,requirements.txt,fdroid,fdroid/repomaker +expliot_framework__expliot__Versioning__gitlabyaml__twine__missing,https://gitlab.com/expliot_framework/expliot,https://gitlab.com/expliot_framework/expliot/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/expliot_framework__expliot/.gitlab-ci.yml,expliot_framework__expliot,Versioning,missing,,twine,version specifier is missing,127,.gitlab-ci.yml,expliot_framework,expliot_framework/expliot +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__publish_docker_finish,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,publish-docker-finish,publish_docker_finish,Allows failure of job `publish_docker_finish` at stage `publish-docker-finish`,968,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__minimal_systemd_vm_powerpc64le,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,vm,minimal_systemd_vm_powerpc64le,Allows failure of job `minimal_systemd_vm_powerpc64le` at stage `vm`,370,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__publish_powerpc64le,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,test,publish_powerpc64le,Allows failure of job `publish_powerpc64le` at stage `test`,639,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__minimal_efi_vm_image_x86_64,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,vm,minimal_efi_vm_image_x86_64,Allows failure of job `minimal_efi_vm_image_x86_64` at stage `vm`,437,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__app_powerpc64le,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,flatpak,app_powerpc64le,Allows failure of job `app_powerpc64le` at stage `flatpak`,279,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Job-Allow-Failure__publish_docker_ppc64le,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Job-Allow-Failure,,test,publish_docker_ppc64le,Allows failure of job `publish_docker_ppc64le` at stage `test`,958,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Manual-Job__minimal_systemd_vm_powerpc64le,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Manual-Job,,vm,minimal_systemd_vm_powerpc64le,Manual job `minimal_systemd_vm_powerpc64le` at stage `vm`,370,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +freedesktop-sdk__freedesktop-sdk__Manual-Job__minimal_systemd_vm_aarch64,https://gitlab.com/freedesktop-sdk/freedesktop-sdk,https://gitlab.com/freedesktop-sdk/freedesktop-sdk/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/freedesktop-sdk__freedesktop-sdk/.gitlab-ci.yml,freedesktop-sdk__freedesktop-sdk,Manual-Job,,vm,minimal_systemd_vm_aarch64,Manual job `minimal_systemd_vm_aarch64` at stage `vm`,345,.gitlab-ci.yml,freedesktop-sdk,freedesktop-sdk/freedesktop-sdk +veloren__game__Job-Allow-Failure__clippy,https://gitlab.com/veloren/game,https://gitlab.com/veloren/game/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/veloren__game/.gitlab-ci.yml,veloren__game,Job-Allow-Failure,,post-run,clippy,Allows failure of job `clippy` at stage `post-run`,260,.gitlab-ci.yml,veloren,veloren/game +noosfero__noosfero__Job-Allow-Failure__code_quality,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Allow-Failure,,code-quality,code_quality,Allows failure of job `code_quality` at stage `code-quality`,160,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Allow-Failure__rubocop,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Allow-Failure,,code-quality,rubocop,Allows failure of job `rubocop` at stage `code-quality`,153,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-4,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-4,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__plugins-4,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test-plugins,plugins-4,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__models,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,models,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-3,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-3,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__plugins-3,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test-plugins,plugins-3,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-6,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-6,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__plugins-2,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test-plugins,plugins-2,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-5,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-5,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__plugins-1,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test-plugins,plugins-1,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__cucumber-2,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,cucumber-2,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__cucumber-1,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,cucumber-1,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-2,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-2,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__selenium-1,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,selenium-1,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__plugins-5,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test-plugins,plugins-5,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__cypress,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,cypress,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__rspec,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,rspec,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__integration,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,integration,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__controllers,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,controllers,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +noosfero__noosfero__Job-Retry__api,https://gitlab.com/noosfero/noosfero,https://gitlab.com/noosfero/noosfero/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/noosfero__noosfero/.gitlab-ci.yml,noosfero__noosfero,Job-Retry,always,test,api,2,36,.gitlab-ci.yml,noosfero,noosfero/noosfero +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,sphinx,version specifier is missing,16,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__solar_theme__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,solar_theme,version specifier is missing,16,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__autobahntestsuite__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,autobahntestsuite,version specifier is missing,51,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__autobahntestsuite__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,autobahntestsuite,version specifier is missing,51,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__autobahntestsuite__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,autobahntestsuite,version specifier is missing,51,.gitlab-ci.yml,pgjones,pgjones/hypercorn +pgjones__hypercorn__Versioning__gitlabyaml__trio__missing,https://gitlab.com/pgjones/hypercorn,https://gitlab.com/pgjones/hypercorn/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__hypercorn/.gitlab-ci.yml,pgjones__hypercorn,Versioning,missing,,trio,version specifier is missing,30,.gitlab-ci.yml,pgjones,pgjones/hypercorn +GrafX2__grafX2__Job-Allow-Failure__checkversions,https://gitlab.com/GrafX2/grafX2,https://gitlab.com/GrafX2/grafX2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/GrafX2__grafX2/.gitlab-ci.yml,GrafX2__grafX2,Job-Allow-Failure,,test,checkversions,Allows failure of job `checkversions` at stage `test`,20,.gitlab-ci.yml,GrafX2,GrafX2/grafX2 +DMore__chrome-mink-driver__Job-Retry__Headed-chrome-unstable,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Headed chrome unstable,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Headed,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Headed,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Chrome-unstable,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Chrome unstable,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Chrome-beta,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Chrome beta,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Headed-chrome-beta,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Headed chrome beta,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__PHP-7-3,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,PHP 7.3,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__PHP-5-6,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,PHP 5.6,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__PHP-7-1,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,PHP 7.1,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__PHP-7-2,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,PHP 7.2,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__PHP-7-0,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,PHP 7.0,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Chromium,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Chromium,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +DMore__chrome-mink-driver__Job-Retry__Headed-chromium,https://gitlab.com/DMore/chrome-mink-driver,https://gitlab.com/DMore/chrome-mink-driver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/DMore__chrome-mink-driver/.gitlab-ci.yml,DMore__chrome-mink-driver,Job-Retry,always,test,Headed chromium,2,8,.gitlab-ci.yml,DMore,DMore/chrome-mink-driver +meltano__analytics__Versioning__gitlabyaml__black__missing,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Versioning,missing,,black,version specifier is missing,115,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__python_mypy,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,python_mypy,Allows failure of job `python_mypy` at stage `🐍 Python`,103,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__python_pytest,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,python_pytest,Allows failure of job `python_pytest` at stage `🐍 Python`,103,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__🔍periscope_query,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🛠 dbt Misc,🔍periscope_query,Allows failure of job `🔍periscope_query` at stage `🛠 dbt Misc`,-1,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__python_black,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,python_black,Allows failure of job `python_black` at stage `🐍 Python`,103,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__python_pylint,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,python_pylint,Allows failure of job `python_pylint` at stage `🐍 Python`,103,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__python_complexity,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,python_complexity,Allows failure of job `python_complexity` at stage `🐍 Python`,103,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Job-Allow-Failure__🔐permissions_query,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Job-Allow-Failure,,🐍 Python,🔐permissions_query,Allows failure of job `🔐permissions_query` at stage `🐍 Python`,147,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__🥩clone_raw,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,❄️ Snowflake,🥩clone_raw,Manual job `🥩clone_raw` at stage `❄️ Snowflake`,54,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__📜sheetload,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,🚂 Extract,📜sheetload,Manual job `📜sheetload` at stage `🚂 Extract`,-1,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__python_pylint,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,🐍 Python,python_pylint,Manual job `python_pylint` at stage `🐍 Python`,127,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__👥force_clone_both,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,❄️ Snowflake,👥force_clone_both,Manual job `👥force_clone_both` at stage `❄️ Snowflake`,54,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__🛢pgp_test,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,🚂 Extract,🛢pgp_test,Manual job `🛢pgp_test` at stage `🚂 Extract`,-1,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__📈❗️clone_analytics_real,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,❄️ Snowflake,📈❗️clone_analytics_real,Manual job `📈❗️clone_analytics_real` at stage `❄️ Snowflake`,54,.gitlab-ci.yml,meltano,meltano/analytics +meltano__analytics__Manual-Job__💀boneyard_sheetload,https://gitlab.com/meltano/analytics,https://gitlab.com/meltano/analytics/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/meltano__analytics/.gitlab-ci.yml,meltano__analytics,Manual-Job,,🚂 Extract,💀boneyard_sheetload,Manual job `💀boneyard_sheetload` at stage `🚂 Extract`,-1,.gitlab-ci.yml,meltano,meltano/analytics +mailman__postorius__Job-Allow-Failure__git-heads,https://gitlab.com/mailman/postorius,https://gitlab.com/mailman/postorius/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mailman__postorius/.gitlab-ci.yml,mailman__postorius,Job-Allow-Failure,,test,git-heads,Allows failure of job `git-heads` at stage `test`,77,.gitlab-ci.yml,mailman,mailman/postorius +mailman__postorius__Job-Allow-Failure__django-latest,https://gitlab.com/mailman/postorius,https://gitlab.com/mailman/postorius/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mailman__postorius/.gitlab-ci.yml,mailman__postorius,Job-Allow-Failure,,test,django-latest,Allows failure of job `django-latest` at stage `test`,83,.gitlab-ci.yml,mailman,mailman/postorius +honeyryderchuck__httpx__Job-Allow-Failure__test_jruby,https://gitlab.com/honeyryderchuck/httpx,https://gitlab.com/honeyryderchuck/httpx/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/honeyryderchuck__httpx/.gitlab-ci.yml,honeyryderchuck__httpx,Job-Allow-Failure,,test,test_jruby,Allows failure of job `test_jruby` at stage `test`,20,.gitlab-ci.yml,honeyryderchuck,honeyryderchuck/httpx +gitlab-examples__php__Job-Allow-Failure__test-php7-mysql,https://gitlab.com/gitlab-examples/php,https://gitlab.com/gitlab-examples/php/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-examples__php/.gitlab-ci.yml,gitlab-examples__php,Job-Allow-Failure,,test,test:php7:mysql,Allows failure of job `test:php7:mysql` at stage `test`,37,.gitlab-ci.yml,gitlab-examples,gitlab-examples/php +juergens__stabbot__Versioning__requirementstxt__praw__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,praw,version specifier is missing,2,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__redis__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,redis,version specifier is missing,3,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__pystreamable__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,pystreamable,version specifier is missing,4,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__pfycat__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,pfycat,version specifier is missing,5,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__ffprobe-python__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,ffprobe-python,version specifier is missing,6,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__youtube-dl__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,youtube-dl,version specifier is missing,7,requirements.txt,juergens,juergens/stabbot +juergens__stabbot__Versioning__requirementstxt__unidecode__missing,https://gitlab.com/juergens/stabbot,https://gitlab.com/juergens/stabbot/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/juergens__stabbot/requirements.txt,juergens__stabbot,Versioning,missing,,unidecode,version specifier is missing,36,requirements.txt,juergens,juergens/stabbot +NTPsec__ntpsec__Job-Allow-Failure__alpine-edge-basic,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,alpine-edge-basic,Allows failure of job `alpine-edge-basic` at stage `build`,50,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__fedora-rawhide-basic,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,fedora-rawhide-basic,Allows failure of job `fedora-rawhide-basic` at stage `build`,355,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__ubuntu-devel-basic,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,ubuntu-devel-basic,Allows failure of job `ubuntu-devel-basic` at stage `build`,243,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__openSUSE-tumbleweed-refclocks,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,openSUSE-tumbleweed-refclocks,Allows failure of job `openSUSE-tumbleweed-refclocks` at stage `build`,453,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__fedora-rawhide-refclocks,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,fedora-rawhide-refclocks,Allows failure of job `fedora-rawhide-refclocks` at stage `build`,365,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__ubuntu-devel-refclocks,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,ubuntu-devel-refclocks,Allows failure of job `ubuntu-devel-refclocks` at stage `build`,254,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__fedora-rawhide-refclocks-gpsd,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,fedora-rawhide-refclocks-gpsd,Allows failure of job `fedora-rawhide-refclocks-gpsd` at stage `build`,375,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__pages,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,pages,Allows failure of job `pages` at stage `build`,1,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__debian-unstable-basic,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,debian-unstable-basic,Allows failure of job `debian-unstable-basic` at stage `build`,181,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__openSUSE-tumbleweed-basic,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,openSUSE-tumbleweed-basic,Allows failure of job `openSUSE-tumbleweed-basic` at stage `build`,443,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__python3-rc,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,python3-rc,Allows failure of job `python3-rc` at stage `build`,385,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__debian-unstable-refclocks,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,debian-unstable-refclocks,Allows failure of job `debian-unstable-refclocks` at stage `build`,192,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +NTPsec__ntpsec__Job-Allow-Failure__alpine-edge-refclocks,https://gitlab.com/NTPsec/ntpsec,https://gitlab.com/NTPsec/ntpsec/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/NTPsec__ntpsec/.gitlab-ci.yml,NTPsec__ntpsec,Job-Allow-Failure,,build,alpine-edge-refclocks,Allows failure of job `alpine-edge-refclocks` at stage `build`,60,.gitlab-ci.yml,NTPsec,NTPsec/ntpsec +cppit__jucipp__Manual-Job__Clean-appveyor-cache,https://gitlab.com/cppit/jucipp,https://gitlab.com/cppit/jucipp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/cppit__jucipp/.gitlab-ci.yml,cppit__jucipp,Manual-Job,,chore,Clean appveyor cache,Manual job `Clean appveyor cache` at stage `chore`,46,.gitlab-ci.yml,cppit,cppit/jucipp +gableroux__unity3d-gitlab-ci-example__Manual-Job__get-activation-file,https://gitlab.com/gableroux/unity3d-gitlab-ci-example,https://gitlab.com/gableroux/unity3d-gitlab-ci-example/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gableroux__unity3d-gitlab-ci-example/.gitlab-ci.yml,gableroux__unity3d-gitlab-ci-example,Manual-Job,,build_and_test,get-activation-file,Manual job `get-activation-file` at stage `build_and_test`,25,.gitlab-ci.yml,gableroux,gableroux/unity3d-gitlab-ci-example +fdroid__rfp__Versioning__gitlabyaml__python__missing,https://gitlab.com/fdroid/rfp,https://gitlab.com/fdroid/rfp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__rfp/.gitlab-ci.yml,fdroid__rfp,Versioning,missing,,python,version specifier is missing,15,.gitlab-ci.yml,fdroid,fdroid/rfp +fdroid__rfp__Versioning__gitlabyaml__wheel__missing,https://gitlab.com/fdroid/rfp,https://gitlab.com/fdroid/rfp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__rfp/.gitlab-ci.yml,fdroid__rfp,Versioning,missing,,wheel,version specifier is missing,15,.gitlab-ci.yml,fdroid,fdroid/rfp +fdroid__rfp__Versioning__gitlabyaml__gplaycli__missing,https://gitlab.com/fdroid/rfp,https://gitlab.com/fdroid/rfp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__rfp/.gitlab-ci.yml,fdroid__rfp,Versioning,missing,,gplaycli,version specifier is missing,15,.gitlab-ci.yml,fdroid,fdroid/rfp +mbajur__prismo__Job-Allow-Failure__code_quality,https://gitlab.com/mbajur/prismo,https://gitlab.com/mbajur/prismo/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mbajur__prismo/.gitlab-ci.yml,mbajur__prismo,Job-Allow-Failure,,test,code_quality,Allows failure of job `code_quality` at stage `test`,33,.gitlab-ci.yml,mbajur,mbajur/prismo +flectra-hq__flectra__Versioning__gitlabyaml__pexpect__missing,https://gitlab.com/flectra-hq/flectra,https://gitlab.com/flectra-hq/flectra/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/flectra-hq__flectra/.gitlab-ci.yml,flectra-hq__flectra,Versioning,missing,,pexpect,version specifier is missing,250,.gitlab-ci.yml,flectra-hq,flectra-hq/flectra +gitlab-org__gitlab-shell__Job-Allow-Failure__codequality,https://gitlab.com/gitlab-org/gitlab-shell,https://gitlab.com/gitlab-org/gitlab-shell/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-shell/.gitlab-ci.yml,gitlab-org__gitlab-shell,Job-Allow-Failure,,test,codequality,Allows failure of job `codequality` at stage `test`,29,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-shell +gitlab-org__gitlab-shell__Job-Allow-Failure__dependency_scanning,https://gitlab.com/gitlab-org/gitlab-shell,https://gitlab.com/gitlab-org/gitlab-shell/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-shell/.gitlab-ci.yml,gitlab-org__gitlab-shell,Job-Allow-Failure,,test,dependency_scanning,Allows failure of job `dependency_scanning` at stage `test`,65,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-shell +charts__gitlab__Job-Allow-Failure__production_specs_eks,https://gitlab.com/charts/gitlab,https://gitlab.com/charts/gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/charts__gitlab/.gitlab-ci.yml,charts__gitlab,Job-Allow-Failure,,test,production_specs_eks,Allows failure of job `production_specs_eks` at stage `test`,810,.gitlab-ci.yml,charts,charts/gitlab +gnutls__gnutls__Job-Retry__Debian-cross-i686-linux-gnu,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,Debian.cross.i686-linux-gnu,1,556,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__Debian-cross-aarch64-linux-gnu,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,Debian.cross.aarch64-linux-gnu,1,597,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__valgrind-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,valgrind.Fedora.x86_64,1,230,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__Debian-cross-arm-linux-gnueabihf,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,Debian.cross.arm-linux-gnueabihf,1,597,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__FIPS140-2-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,FIPS140-2.Fedora.x86_64,1,202,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__minimal-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,minimal.Fedora.x86_64,1,133,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__SSL-3-0-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,SSL-3.0.Fedora.x86_64,1,175,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__Debian-cross-mips-linux-gnu,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,Debian.cross.mips-linux-gnu,1,597,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__static-analyzers-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,static-analyzers.Fedora.x86_64,1,278,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__Debian-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,Debian.x86_64,1,529,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__nettle-master-Fedora,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,nettle-master.Fedora,1,647,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__MinGW32-DLLs,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,MinGW32.DLLs,1,310,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__abi-coverage,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,abi/coverage,1,99,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__MinGW64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,MinGW64,1,392,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__doc-dist-Fedora,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,doc-dist.Fedora,1,71,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__MinGW64-DLLs,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,MinGW64.DLLs,1,351,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__MinGW32,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,MinGW32,1,426,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__UB-ASAN-Werror-Fedora-x86_64-gcc,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,UB+ASAN-Werror.Fedora.x86_64.gcc,1,485,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__threadsan-Fedora-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,threadsan.Fedora.x86_64,1,253,.gitlab-ci.yml,gnutls,gnutls/gnutls +gnutls__gnutls__Job-Retry__FreeBSD-x86_64,https://gitlab.com/gnutls/gnutls,https://gitlab.com/gnutls/gnutls/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnutls__gnutls/.gitlab-ci.yml,gnutls__gnutls,Job-Retry,always,stage1-testing,FreeBSD.x86_64,1,458,.gitlab-ci.yml,gnutls,gnutls/gnutls +gitlab-org__gitaly__Job-Allow-Failure__lint-warnings,https://gitlab.com/gitlab-org/gitaly,https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitaly/.gitlab-ci.yml,gitlab-org__gitaly,Job-Allow-Failure,,test,lint-warnings,Allows failure of job `lint-warnings` at stage `test`,256,.gitlab-ci.yml,gitlab-org,gitlab-org/gitaly +gitlab-org__gitaly__Job-Allow-Failure__update-downstream-server-version,https://gitlab.com/gitlab-org/gitaly,https://gitlab.com/gitlab-org/gitaly/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitaly/.gitlab-ci.yml,gitlab-org__gitaly,Job-Allow-Failure,,publish,update-downstream-server-version,Allows failure of job `update-downstream-server-version` at stage `publish`,183,.gitlab-ci.yml,gitlab-org,gitlab-org/gitaly +kivymd__KivyMD__Versioning__gitlabyaml__colorama__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,colorama,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,appdirs,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__sh__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,sh,version specifier is missing,9,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__jinja2__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,jinja2,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__six__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,six,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__cython__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,cython,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__colorama__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,colorama,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,appdirs,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__sh__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,sh,version specifier is missing,9,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__jinja2__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,jinja2,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__six__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,six,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__cython__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,cython,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__colorama__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,colorama,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,appdirs,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__sh__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,sh,version specifier is missing,9,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__jinja2__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,jinja2,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__six__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,six,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__cython__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,cython,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__colorama__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,colorama,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,appdirs,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__sh__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,sh,version specifier is missing,9,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__jinja2__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,jinja2,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__six__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,six,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__cython__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,cython,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__colorama__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,colorama,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__appdirs__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,appdirs,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__sh__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,sh,version specifier is missing,9,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__jinja2__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,jinja2,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__six__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,six,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +kivymd__KivyMD__Versioning__gitlabyaml__cython__missing,https://gitlab.com/kivymd/KivyMD,https://gitlab.com/kivymd/KivyMD/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/kivymd__KivyMD/.gitlab-ci.yml,kivymd__KivyMD,Versioning,missing,,cython,version specifier is missing,22,.gitlab-ci.yml,kivymd,kivymd/KivyMD +OpenMW__openmw__Job-Allow-Failure__MacOS,https://gitlab.com/OpenMW/openmw,https://gitlab.com/OpenMW/openmw/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/OpenMW__openmw/.gitlab-ci.yml,OpenMW__openmw,Job-Allow-Failure,,build,MacOS,Allows failure of job `MacOS` at stage `build`,26,.gitlab-ci.yml,OpenMW,OpenMW/openmw +OpenMW__openmw__Job-Allow-Failure__Windows,https://gitlab.com/OpenMW/openmw,https://gitlab.com/OpenMW/openmw/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/OpenMW__openmw/.gitlab-ci.yml,OpenMW__openmw,Job-Allow-Failure,,build,Windows,Allows failure of job `Windows` at stage `build`,43,.gitlab-ci.yml,OpenMW,OpenMW/openmw +ase__ase__Versioning__requirementstxt__numpy__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ase__ase/requirements.txt,ase__ase,Versioning,missing,,numpy,version specifier is missing,1,requirements.txt,ase,ase/ase +ase__ase__Versioning__requirementstxt__psycopg2-binary__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/ase__ase/requirements.txt,ase__ase,Versioning,missing,,psycopg2-binary,version specifier is missing,2,requirements.txt,ase,ase/ase +ase__ase__Versioning__gitlabyaml__psycopg2__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Versioning,missing,,psycopg2,version specifier is missing,38,.gitlab-ci.yml,ase,ase/ase +ase__ase__Versioning__gitlabyaml__netCDF4__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Versioning,missing,,netCDF4,version specifier is missing,38,.gitlab-ci.yml,ase,ase/ase +ase__ase__Versioning__gitlabyaml__pymysql__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Versioning,missing,,pymysql,version specifier is missing,38,.gitlab-ci.yml,ase,ase/ase +ase__ase__Versioning__gitlabyaml__cryptography__missing,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Versioning,missing,,cryptography,version specifier is missing,38,.gitlab-ci.yml,ase,ase/ase +ase__ase__Manual-Job__distribution_package,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Manual-Job,,test,distribution_package,Manual job `distribution_package` at stage `test`,116,.gitlab-ci.yml,ase,ase/ase +ase__ase__Manual-Job__calculators,https://gitlab.com/ase/ase,https://gitlab.com/ase/ase/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ase__ase/.gitlab-ci.yml,ase__ase,Manual-Job,,test,calculators,Manual job `calculators` at stage `test`,97,.gitlab-ci.yml,ase,ase/ase +tezos__tezos__Job-Allow-Failure__integration-sandboxes-voting,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Allow-Failure,,test,integration:sandboxes:voting,Allows failure of job `integration:sandboxes:voting` at stage `test`,266,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Allow-Failure__documentation-linkcheck,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Allow-Failure,,test,documentation:linkcheck,Allows failure of job `documentation:linkcheck` at stage `test`,519,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_005_PsBabyM1-lib_protocol,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_005_PsBabyM1/lib_protocol,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocplib-resto-lib_resto-directory,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocplib-resto/lib_resto-directory,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-ledger-wallet,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-ledger-wallet,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_005_PsBabyM1-lib_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_005_PsBabyM1/lib_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocplib-resto-lib_ezresto-directory,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocplib-resto/lib_ezresto-directory,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_006_PsCARTHA-lib_protocol,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_006_PsCARTHA/lib_protocol,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-proto_demo_noops_manual_bake,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:proto_demo_noops_manual_bake,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-many_nodes,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:many_nodes,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-micheline,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:micheline,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-fork,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:fork,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_alpha-lib_protocol,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_alpha/lib_protocol,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-baker_endorser,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:baker_endorser,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-signer_backends-unix,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:signer_backends/unix,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-stdlib,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:stdlib,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-shell,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:shell,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_004_Pt24m4xi-lib_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_004_Pt24m4xi/lib_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-multinode_storage_reconstruction,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:multinode_storage_reconstruction,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-proto-sandbox,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:proto:sandbox,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-uecc,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-uecc,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-tls,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:tls,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-hacl,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-hacl,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-blake2,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-blake2,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__documentation-build,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,documentation:build,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-mempool,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:mempool,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-error_monad,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:error_monad,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-cors,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:cors,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-proto_demo_counter,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:proto_demo_counter,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-crypto,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:crypto,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-protocol_environment,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:protocol_environment,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-p2p,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:p2p,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-signer_backends,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:signer_backends,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-basic,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:basic,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract_onchain_opcodes,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract_onchain_opcodes,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_003_PsddFKi3-lib_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_003_PsddFKi3/lib_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract_macros,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract_macros,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_006_PsCARTHA-lib_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_006_PsCARTHA/lib_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-multisig,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:multisig,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-pbkdf,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-pbkdf,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-rpc,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:rpc,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-storage,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:storage,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-multinode,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:multinode,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__documentation-linkcheck,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,documentation:linkcheck,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract_opcodes,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract_opcodes,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-bin_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/bin_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-injection,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:injection,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract_annotations,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract_annotations,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-voting,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:voting,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-bip39,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-bip39,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-secp256k1,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-secp256k1,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-contract_baker,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:contract_baker,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-multinode_snapshot,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:multinode_snapshot,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-double_endorsement,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:double_endorsement,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-src-proto_alpha-lib_client,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:src/proto_alpha/lib_client,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__integration-many_bakers,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,integration:many_bakers,2,248,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-ocaml-lmdb,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:ocaml-lmdb,2,86,.gitlab-ci.yml,tezos,tezos/tezos +tezos__tezos__Job-Retry__unit-p2p,https://gitlab.com/tezos/tezos,https://gitlab.com/tezos/tezos/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/tezos__tezos/.gitlab-ci.yml,tezos__tezos,Job-Retry,always,test,unit:p2p,2,86,.gitlab-ci.yml,tezos,tezos/tezos +stavros__Spamnesty__Versioning__gitlabyaml__virtualenv__missing,https://gitlab.com/stavros/Spamnesty,https://gitlab.com/stavros/Spamnesty/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__Spamnesty/.gitlab-ci.yml,stavros__Spamnesty,Versioning,missing,,virtualenv,version specifier is missing,15,.gitlab-ci.yml,stavros,stavros/Spamnesty +stavros__Spamnesty__Versioning__gitlabyaml__poetry__missing,https://gitlab.com/stavros/Spamnesty,https://gitlab.com/stavros/Spamnesty/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__Spamnesty/.gitlab-ci.yml,stavros__Spamnesty,Versioning,missing,,poetry,version specifier is missing,15,.gitlab-ci.yml,stavros,stavros/Spamnesty +stavros__Spamnesty__Versioning__gitlabyaml__pre__missing,https://gitlab.com/stavros/Spamnesty,https://gitlab.com/stavros/Spamnesty/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/stavros__Spamnesty/.gitlab-ci.yml,stavros__Spamnesty,Versioning,missing,,pre,version specifier is missing,15,.gitlab-ci.yml,stavros,stavros/Spamnesty +recalbox__recalbox__Job-Allow-Failure__lint-commits,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Job-Allow-Failure,,lint,lint commits,Allows failure of job `lint commits` at stage `lint`,41,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-odroidxu4-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build odroidxu4 for test,Manual job `build odroidxu4 for test` at stage `build`,161,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-rpi1-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build rpi1 for test,Manual job `build rpi1 for test` at stage `build`,116,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-rpi3-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build rpi3 for test,Manual job `build rpi3 for test` at stage `build`,134,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-x86_64-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build x86_64 for test,Manual job `build x86_64 for test` at stage `build`,143,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-rpi2-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build rpi2 for test,Manual job `build rpi2 for test` at stage `build`,125,.gitlab-ci.yml,recalbox,recalbox/recalbox +recalbox__recalbox__Manual-Job__build-x86-for-test,https://gitlab.com/recalbox/recalbox,https://gitlab.com/recalbox/recalbox/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/recalbox__recalbox/.gitlab-ci.yml,recalbox__recalbox,Manual-Job,,build,build x86 for test,Manual job `build x86 for test` at stage `build`,152,.gitlab-ci.yml,recalbox,recalbox/recalbox +xhang__gitlab__Job-Allow-Failure__ee_compat_check,https://gitlab.com/xhang/gitlab,https://gitlab.com/xhang/gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/xhang__gitlab/.gitlab-ci.yml,xhang__gitlab,Job-Allow-Failure,,test,ee_compat_check,Allows failure of job `ee_compat_check` at stage `test`,319,.gitlab-ci.yml,xhang,xhang/gitlab +xhang__gitlab__Manual-Job__build-package,https://gitlab.com/xhang/gitlab,https://gitlab.com/xhang/gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/xhang__gitlab/.gitlab-ci.yml,xhang__gitlab,Manual-Job,,build,build-package,Manual job `build-package` at stage `build`,152,.gitlab-ci.yml,xhang,xhang/gitlab +fdroid__fdroidserver__Versioning__gitlabyaml__Babel__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,Babel,version specifier is missing,142,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +fdroid__fdroidserver__Versioning__gitlabyaml__pyflakes__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,pyflakes,version specifier is missing,142,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +fdroid__fdroidserver__Versioning__gitlabyaml__safety__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,safety,version specifier is missing,142,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +fdroid__fdroidserver__Versioning__gitlabyaml__beautifulsoup4__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,beautifulsoup4,version specifier is missing,230,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +fdroid__fdroidserver__Versioning__gitlabyaml__requests__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,requests,version specifier is missing,230,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +fdroid__fdroidserver__Versioning__gitlabyaml__babel__missing,https://gitlab.com/fdroid/fdroidserver,https://gitlab.com/fdroid/fdroidserver/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidserver/.gitlab-ci.yml,fdroid__fdroidserver,Versioning,missing,,babel,version specifier is missing,111,.gitlab-ci.yml,fdroid,fdroid/fdroidserver +mayan-edms__mayan-edms__Versioning__requirementstxt__-rrequirements-common-txt__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/requirements.txt,mayan-edms__mayan-edms,Versioning,missing,,-rrequirements/common.txt,version specifier is missing,-1,requirements.txt,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__requirementstxt__-rrequirements-base-txt__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/requirements.txt,mayan-edms__mayan-edms,Versioning,missing,,-rrequirements/base.txt,version specifier is missing,-1,requirements.txt,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__mayan__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,mayan,version specifier is missing,26,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__import__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,import,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__xmlrpc-client-pypi__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,xmlrpc.client;pypi,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__-__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,=,version specifier is missing,21,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__mayan__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,mayan,version specifier is missing,26,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__import__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,import,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__xmlrpc-client-pypi__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,xmlrpc.client;pypi,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__-__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,=,version specifier is missing,21,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__mayan__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,mayan,version specifier is missing,26,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__import__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,import,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__xmlrpc-client-pypi__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,xmlrpc.client;pypi,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__-__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,=,version specifier is missing,21,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__mayan__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,mayan,version specifier is missing,26,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__import__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,import,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__xmlrpc-client-pypi__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,xmlrpc.client;pypi,version specifier is missing,164,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +mayan-edms__mayan-edms__Versioning__gitlabyaml__-__missing,https://gitlab.com/mayan-edms/mayan-edms,https://gitlab.com/mayan-edms/mayan-edms/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/mayan-edms__mayan-edms/.gitlab-ci.yml,mayan-edms__mayan-edms,Versioning,missing,,=,version specifier is missing,21,.gitlab-ci.yml,mayan-edms,mayan-edms/mayan-edms +gitlab-org__gitlab-development-kit__Job-Allow-Failure__test-container_scanning,https://gitlab.com/gitlab-org/gitlab-development-kit,https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-development-kit/.gitlab-ci.yml,gitlab-org__gitlab-development-kit,Job-Allow-Failure,,test,test:container_scanning,Allows failure of job `test:container_scanning` at stage `test`,129,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-development-kit +gitlab-org__gitlab-development-kit__Job-Allow-Failure__test-code_quality,https://gitlab.com/gitlab-org/gitlab-development-kit,https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-development-kit/.gitlab-ci.yml,gitlab-org__gitlab-development-kit,Job-Allow-Failure,,test,test:code_quality,Allows failure of job `test:code_quality` at stage `test`,109,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-development-kit +gitlab-org__gitlab-development-kit__Job-Retry__verify-update,https://gitlab.com/gitlab-org/gitlab-development-kit,https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-development-kit/.gitlab-ci.yml,gitlab-org__gitlab-development-kit,Job-Retry,always,verify,verify:update,1,175,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-development-kit +gitlab-org__gitlab-development-kit__Job-Retry__verify-install,https://gitlab.com/gitlab-org/gitlab-development-kit,https://gitlab.com/gitlab-org/gitlab-development-kit/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-development-kit/.gitlab-ci.yml,gitlab-org__gitlab-development-kit,Job-Retry,always,verify,verify:install,1,159,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-development-kit +gitlab-org__omnibus-gitlab__Job-Allow-Failure__QA-Master,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,package-and-image,QA-Master,Allows failure of job `QA-Master` at stage `package-and-image`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__upgrade,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,metrics,upgrade,Allows failure of job `upgrade` at stage `metrics`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__HA-Validate-Tagged,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,slow_jobs,HA-Validate-Tagged,Allows failure of job `HA-Validate-Tagged` at stage `slow_jobs`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__license-upload,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,metrics,license-upload,Allows failure of job `license-upload` at stage `metrics`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__AWS-Ultimate,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,package-and-image-release,AWS-Ultimate,Allows failure of job `AWS-Ultimate` at stage `package-and-image-release`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__AWS,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,package-and-image-release,AWS,Allows failure of job `AWS` at stage `package-and-image-release`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__AWS-Premium,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,package-and-image-release,AWS-Premium,Allows failure of job `AWS-Premium` at stage `package-and-image-release`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Allow-Failure__QA-Tag,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Allow-Failure,,package-and-image-release,QA-Tag,Allows failure of job `QA-Tag` at stage `package-and-image-release`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Ubuntu-16-04-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,Ubuntu-16.04-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-7-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,CentOS-7-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__OpenSUSE-15-1-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,OpenSUSE 15.1 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-9-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,Debian-9-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Centos-7-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Centos 7 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Docker-QA,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,gitlab_com:package,Docker-QA,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Docker,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Docker,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-9,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-9,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-8,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-8,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-10-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,Debian-10-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__AWS-Ultimate,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,AWS-Ultimate,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Ubuntu-18-04-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Ubuntu 18.04 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Docker-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Docker-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__SLES-12-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,SLES-12-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-10-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,Debian-10-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__SLES-12,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,SLES-12,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-10-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Debian 10 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__SLES-12-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,SLES-12-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-9-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Debian 9 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-8-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-8-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__SLES-12-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,SLES-12-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-7-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,CentOS-7-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Ubuntu-16-04-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Ubuntu 16.04 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__OpenSUSE-15-1-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,OpenSUSE-15.1-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-9-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,Debian-9-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-6-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,CentOS-6-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-8-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,CentOS-8-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-10,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-10,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-8-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,Debian-8-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__AWS-Premium,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,AWS-Premium,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-6-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-6-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-7-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-7-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-8-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-8-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-6,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-6,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Raspberry-Pi-2-Stretch-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,slow_jobs,Raspberry-Pi-2-Stretch-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-8,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-8,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-7,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,CentOS-7,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Ubuntu-18-04-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,Ubuntu-18.04-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-8-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Debian 8 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__OpenSUSE-15-1-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,OpenSUSE-15.1-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__AWS,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,AWS,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Centos-6-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Centos 6 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__QA-Tag,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,QA-Tag,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__QA-Master,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,QA-Master,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Centos-8-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,prepare,Centos 8 knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__OpenSUSE-15-1-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,OpenSUSE-15.1-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Raspberry-Pi-2-Stretch-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,raspbian-release,Raspberry-Pi-2-Stretch-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__update-knapsack,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,post-test,update-knapsack,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__OpenSUSE-15-1,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,OpenSUSE-15.1,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-10-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-10-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-6-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,CentOS-6-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__CentOS-8-staging,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,staging_upload,CentOS-8-staging,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-9-branch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image,Debian-9-branch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Debian-8-release,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,package-and-image-release,Debian-8-release,2,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Job-Retry__Raspberry-Pi-2-Stretch,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Job-Retry,always,slow_jobs,Raspberry-Pi-2-Stretch,1,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__Trigger-ha-validate,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,trigger-ha-validate,Trigger:ha-validate,Manual job `Trigger:ha-validate` at stage `trigger-ha-validate`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__upgrade,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,metrics,upgrade,Manual job `upgrade` at stage `metrics`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__Trigger-ce-package,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,trigger-package,Trigger:ce-package,Manual job `Trigger:ce-package` at stage `trigger-package`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__Trigger-measure-memory,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,metrics,Trigger:measure-memory,Manual job `Trigger:measure-memory` at stage `metrics`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__license-upload,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,metrics,license-upload,Manual job `license-upload` at stage `metrics`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +gitlab-org__omnibus-gitlab__Manual-Job__Trigger-ee-package,https://gitlab.com/gitlab-org/omnibus-gitlab,https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__omnibus-gitlab/.gitlab-ci.yml,gitlab-org__omnibus-gitlab,Manual-Job,,trigger-package,Trigger:ee-package,Manual job `Trigger:ee-package` at stage `trigger-package`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/omnibus-gitlab +doctorj__interview-questions__Versioning__requirementstxt__PyYAML__missing,https://gitlab.com/doctorj/interview-questions,https://gitlab.com/doctorj/interview-questions/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__interview-questions/requirements.txt,doctorj__interview-questions,Versioning,missing,,PyYAML,version specifier is missing,1,requirements.txt,doctorj,doctorj/interview-questions +doctorj__interview-questions__Versioning__requirementstxt__jsonschema__missing,https://gitlab.com/doctorj/interview-questions,https://gitlab.com/doctorj/interview-questions/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__interview-questions/requirements.txt,doctorj__interview-questions,Versioning,missing,,jsonschema,version specifier is missing,2,requirements.txt,doctorj,doctorj/interview-questions +doctorj__interview-questions__Versioning__requirementstxt__jinja2__missing,https://gitlab.com/doctorj/interview-questions,https://gitlab.com/doctorj/interview-questions/blob/master/requirements.txt,/home/xxx/fse-submission/linter_configfiles/doctorj__interview-questions/requirements.txt,doctorj__interview-questions,Versioning,missing,,jinja2,version specifier is missing,3,requirements.txt,doctorj,doctorj/interview-questions +pgjones__quart__Versioning__gitlabyaml__sphinx__missing,https://gitlab.com/pgjones/quart,https://gitlab.com/pgjones/quart/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__quart/.gitlab-ci.yml,pgjones__quart,Versioning,missing,,sphinx,version specifier is missing,16,.gitlab-ci.yml,pgjones,pgjones/quart +pgjones__quart__Versioning__gitlabyaml__solar__missing,https://gitlab.com/pgjones/quart,https://gitlab.com/pgjones/quart/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/pgjones__quart/.gitlab-ci.yml,pgjones__quart,Versioning,missing,,solar,version specifier is missing,16,.gitlab-ci.yml,pgjones,pgjones/quart +gitlab-com__www-gitlab-com__Job-Allow-Failure__check_links,https://gitlab.com/gitlab-com/www-gitlab-com,https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__www-gitlab-com/.gitlab-ci.yml,gitlab-com__www-gitlab-com,Job-Allow-Failure,,build,check_links,Allows failure of job `check_links` at stage `build`,179,.gitlab-ci.yml,gitlab-com,gitlab-com/www-gitlab-com +gitlab-com__www-gitlab-com__Job-Allow-Failure__dependency_scanning,https://gitlab.com/gitlab-com/www-gitlab-com,https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__www-gitlab-com/.gitlab-ci.yml,gitlab-com__www-gitlab-com,Job-Allow-Failure,,build,dependency_scanning,Allows failure of job `dependency_scanning` at stage `build`,309,.gitlab-ci.yml,gitlab-com,gitlab-com/www-gitlab-com +gitlab-com__www-gitlab-com__Job-Allow-Failure__rebuild_map,https://gitlab.com/gitlab-com/www-gitlab-com,https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__www-gitlab-com/.gitlab-ci.yml,gitlab-com__www-gitlab-com,Job-Allow-Failure,,deploy,rebuild_map,Allows failure of job `rebuild_map` at stage `deploy`,471,.gitlab-ci.yml,gitlab-com,gitlab-com/www-gitlab-com +gitlab-com__www-gitlab-com__Manual-Job__check_links,https://gitlab.com/gitlab-com/www-gitlab-com,https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__www-gitlab-com/.gitlab-ci.yml,gitlab-com__www-gitlab-com,Manual-Job,,build,check_links,Manual job `check_links` at stage `build`,179,.gitlab-ci.yml,gitlab-com,gitlab-com/www-gitlab-com +gitlab-org__gitter__webapp__Job-Allow-Failure__renovate,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Allow-Failure,,docker_images,renovate,Allows failure of job `renovate` at stage `docker_images`,353,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +gitlab-org__gitter__webapp__Job-Allow-Failure__containerize,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Allow-Failure,,deploy,containerize,Allows failure of job `containerize` at stage `deploy`,196,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +gitlab-org__gitter__webapp__Job-Retry__test_e2e,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Retry,always,build_unit_test,test_e2e,2,84,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +gitlab-org__gitter__webapp__Job-Retry__test_e2e_manual,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Retry,always,build_unit_test,test_e2e_manual,2,84,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +gitlab-org__gitter__webapp__Job-Retry__test,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Retry,always,build_unit_test,test,1,69,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +gitlab-org__gitter__webapp__Job-Retry__test-all,https://gitlab.com/gitlab-org/gitter/webapp,https://gitlab.com/gitlab-org/gitter/webapp/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitter__webapp/.gitlab-ci.yml,gitlab-org__gitter__webapp,Job-Retry,always,build_unit_test,test-all,2,75,.gitlab-ci.yml,gitlab-org,gitlab-org/gitter/webapp +Commit451__LabCoat__Job-Allow-Failure__pages,https://gitlab.com/Commit451/LabCoat,https://gitlab.com/Commit451/LabCoat/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Commit451__LabCoat/.gitlab-ci.yml,Commit451__LabCoat,Job-Allow-Failure,,deploy,pages,Allows failure of job `pages` at stage `deploy`,26,.gitlab-ci.yml,Commit451,Commit451/LabCoat +inkscape__inkscape__Job-Allow-Failure__inkscape-mac,https://gitlab.com/inkscape/inkscape,https://gitlab.com/inkscape/inkscape/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/inkscape__inkscape/.gitlab-ci.yml,inkscape__inkscape,Job-Allow-Failure,,build,inkscape:mac,Allows failure of job `inkscape:mac` at stage `build`,70,.gitlab-ci.yml,inkscape,inkscape/inkscape +inkscape__inkscape__Job-Allow-Failure__codequality,https://gitlab.com/inkscape/inkscape,https://gitlab.com/inkscape/inkscape/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/inkscape__inkscape/.gitlab-ci.yml,inkscape__inkscape,Job-Allow-Failure,,build,codequality,Allows failure of job `codequality` at stage `build`,101,.gitlab-ci.yml,inkscape,inkscape/inkscape +fdroid__fdroidclient__Job-Allow-Failure__connected-29-default-x86_64,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 29 default x86_64,Allows failure of job `connected 29 default x86_64` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Allow-Failure__connected-23-default-x86,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 23 default x86,Allows failure of job `connected 23 default x86` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Allow-Failure__connected-25-default-x86,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 25 default x86,Allows failure of job `connected 25 default x86` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Allow-Failure__connected-26-google_apis-x86,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 26 google_apis x86,Allows failure of job `connected 26 google_apis x86` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Allow-Failure__connected-27-google_apis_playstore-x86,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 27 google_apis_playstore x86,Allows failure of job `connected 27 google_apis_playstore x86` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Allow-Failure__connected-28-default-x86_64,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Allow-Failure,,test,connected 28 default x86_64,Allows failure of job `connected 28 default x86_64` at stage `test`,90,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +fdroid__fdroidclient__Job-Retry__connected-22-default-armeabi-v7a,https://gitlab.com/fdroid/fdroidclient,https://gitlab.com/fdroid/fdroidclient/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/fdroid__fdroidclient/.gitlab-ci.yml,fdroid__fdroidclient,Job-Retry,always,test,connected 22 default armeabi-v7a,1,85,.gitlab-ci.yml,fdroid,fdroid/fdroidclient +gitlab-org__gitlab-runner__Job-Allow-Failure__unit-test-with-race,https://gitlab.com/gitlab-org/gitlab-runner,https://gitlab.com/gitlab-org/gitlab-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-org__gitlab-runner/.gitlab-ci.yml,gitlab-org__gitlab-runner,Job-Allow-Failure,,test,unit test with race,Allows failure of job `unit test with race` at stage `test`,-1,.gitlab-ci.yml,gitlab-org,gitlab-org/gitlab-runner +Cacophony__Pong__Job-Retry__Terraform-Plan,https://gitlab.com/Cacophony/Pong,https://gitlab.com/Cacophony/Pong/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Cacophony__Pong/.gitlab-ci.yml,Cacophony__Pong,Job-Retry,always,stage,Terraform Plan,1,71,.gitlab-ci.yml,Cacophony,Cacophony/Pong +Cacophony__Pong__Job-Retry__Go-Tests,https://gitlab.com/Cacophony/Pong,https://gitlab.com/Cacophony/Pong/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Cacophony__Pong/.gitlab-ci.yml,Cacophony__Pong,Job-Retry,always,test,Go Tests,1,48,.gitlab-ci.yml,Cacophony,Cacophony/Pong +Cacophony__Pong__Job-Retry__Go-Build,https://gitlab.com/Cacophony/Pong,https://gitlab.com/Cacophony/Pong/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/Cacophony__Pong/.gitlab-ci.yml,Cacophony__Pong,Job-Retry,always,compile,Go Build,1,37,.gitlab-ci.yml,Cacophony,Cacophony/Pong +edgyemma__Postmill__Job-Allow-Failure__audit-node,https://gitlab.com/edgyemma/Postmill,https://gitlab.com/edgyemma/Postmill/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/edgyemma__Postmill/.gitlab-ci.yml,edgyemma__Postmill,Job-Allow-Failure,,audit,audit:node,Allows failure of job `audit:node` at stage `audit`,31,.gitlab-ci.yml,edgyemma,edgyemma/Postmill +edgyemma__Postmill__Job-Allow-Failure__audit-php,https://gitlab.com/edgyemma/Postmill,https://gitlab.com/edgyemma/Postmill/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/edgyemma__Postmill/.gitlab-ci.yml,edgyemma__Postmill,Job-Allow-Failure,,audit,audit:php,Allows failure of job `audit:php` at stage `audit`,21,.gitlab-ci.yml,edgyemma,edgyemma/Postmill +failmap__failmap__Job-Retry__test_mysql,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,test_mysql,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__test_postgres,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,test_postgres,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__test,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,test,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__production,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,production,production,1,251,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__test_mariadb,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,test_mariadb,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__test_system,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,staging,test_system,1,199,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__dataset_mysql,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,dataset_mysql,1,36,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__build,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,build,build,1,130,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__image_test,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,image_test,1,162,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__integration,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,integration,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__dataset,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,dataset,1,15,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__staging,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,staging,staging,1,220,.gitlab-ci.yml,failmap,failmap/failmap +failmap__failmap__Job-Retry__dataset_postgres,https://gitlab.com/failmap/failmap,https://gitlab.com/failmap/failmap/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/failmap__failmap/.gitlab-ci.yml,failmap__failmap,Job-Retry,always,test,dataset_postgres,1,55,.gitlab-ci.yml,failmap,failmap/failmap +gioxa__oc-runner__oc-runner__Job-Allow-Failure__reviewb,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Allow-Failure,,review,reviewb,Allows failure of job `reviewb` at stage `review`,262,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Allow-Failure__cleanup-review,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Allow-Failure,,cleanup,cleanup:review,Allows failure of job `cleanup:review` at stage `cleanup`,431,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Allow-Failure__review-image-starter,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Allow-Failure,,review_starter,review-image-starter,Allows failure of job `review-image-starter` at stage `review_starter`,357,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Allow-Failure__stop_reviewm,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Allow-Failure,,review,stop_reviewm,Allows failure of job `stop_reviewm` at stage `review`,326,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Retry__build_docs,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Retry,always,build,build_docs,1,188,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Retry__build,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Retry,always,build,build,1,106,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Retry__build_dist,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Retry,always,build,build_dist,1,128,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Retry__build_check,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Retry,always,build,build_check,1,147,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gioxa__oc-runner__oc-runner__Job-Retry__build_cov,https://gitlab.com/gioxa/oc-runner/oc-runner,https://gitlab.com/gioxa/oc-runner/oc-runner/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gioxa__oc-runner__oc-runner/.gitlab-ci.yml,gioxa__oc-runner__oc-runner,Job-Retry,always,build,build_cov,1,164,.gitlab-ci.yml,gioxa,gioxa/oc-runner/oc-runner +gitlab-com__gitlab-docs__Job-Allow-Failure__test_external_links,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Allow-Failure,,test,test_external_links,Allows failure of job `test_external_links` at stage `test`,483,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Allow-Failure__image-docs-latest,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Allow-Failure,,pre-deploy,image:docs-latest,Allows failure of job `image:docs-latest` at stage `pre-deploy`,461,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__review_stop,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,deploy,review_stop,2,46,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__compile_dev,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build,compile_dev,2,53,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-docs-lint,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build-images,image:docs-lint,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-docs-latest,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,pre-deploy,image:docs-latest,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-docs-single,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,pre-deploy,image:docs-single,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-nginx-onbuild,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build-images,image:nginx-onbuild,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__pages,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,deploy,pages,2,46,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__compile_prod,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build,compile_prod,2,53,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__review,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,deploy,review,2,46,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-docs-archives,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,pre-deploy,image:docs-archives,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-builder-onbuild,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build-images,image:builder-onbuild,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-gitlab-docs-base,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build-images,image:gitlab-docs-base,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__scss_lint,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,test,scss_lint,2,46,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gitlab-com__gitlab-docs__Job-Retry__image-bootstrap,https://gitlab.com/gitlab-com/gitlab-docs,https://gitlab.com/gitlab-com/gitlab-docs/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gitlab-com__gitlab-docs/.gitlab-ci.yml,gitlab-com__gitlab-docs,Job-Retry,always,build-images,image:bootstrap,2,314,.gitlab-ci.yml,gitlab-com,gitlab-com/gitlab-docs +gnuwget__wget2__Job-Allow-Failure__CommitCheck,https://gitlab.com/gnuwget/wget2,https://gitlab.com/gnuwget/wget2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget2/.gitlab-ci.yml,gnuwget__wget2,Job-Allow-Failure,,stage1-testing,CommitCheck,Allows failure of job `CommitCheck` at stage `stage1-testing`,529,.gitlab-ci.yml,gnuwget,gnuwget/wget2 +gnuwget__wget2__Job-Allow-Failure__Debian-HTTP2,https://gitlab.com/gnuwget/wget2,https://gitlab.com/gnuwget/wget2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget2/.gitlab-ci.yml,gnuwget__wget2,Job-Allow-Failure,,stage1-testing,Debian/HTTP2,Allows failure of job `Debian/HTTP2` at stage `stage1-testing`,544,.gitlab-ci.yml,gnuwget,gnuwget/wget2 +gnuwget__wget2__Job-Allow-Failure__MinGW64,https://gitlab.com/gnuwget/wget2,https://gitlab.com/gnuwget/wget2/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/gnuwget__wget2/.gitlab-ci.yml,gnuwget__wget2,Job-Allow-Failure,,stage1-testing,MinGW64,Allows failure of job `MinGW64` at stage `stage1-testing`,436,.gitlab-ci.yml,gnuwget,gnuwget/wget2 +raxa__raxa__Manual-Job__build-arm,https://gitlab.com/raxa/raxa,https://gitlab.com/raxa/raxa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/raxa__raxa/.gitlab-ci.yml,raxa__raxa,Manual-Job,,build,build-arm,Manual job `build-arm` at stage `build`,18,.gitlab-ci.yml,raxa,raxa/raxa +raxa__raxa__Manual-Job__build,https://gitlab.com/raxa/raxa,https://gitlab.com/raxa/raxa/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/raxa__raxa/.gitlab-ci.yml,raxa__raxa,Manual-Job,,build,build,Manual job `build` at stage `build`,28,.gitlab-ci.yml,raxa,raxa/raxa +remal__name-remal-gradle-plugins__Job-Retry__publish-to-ossrh,https://gitlab.com/remal/name.remal.gradle-plugins,https://gitlab.com/remal/name.remal.gradle-plugins/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/remal__name.remal.gradle-plugins/.gitlab-ci.yml,remal__name.remal.gradle-plugins,Job-Retry,always,publish,publish-to-ossrh,2,88,.gitlab-ci.yml,remal,remal/name.remal.gradle-plugins +romangrothausmann__FacetAnalyser__Job-Retry__test01,https://gitlab.com/romangrothausmann/FacetAnalyser,https://gitlab.com/romangrothausmann/FacetAnalyser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/romangrothausmann__FacetAnalyser/.gitlab-ci.yml,romangrothausmann__FacetAnalyser,Job-Retry,always,test,test01,2,51,.gitlab-ci.yml,romangrothausmann,romangrothausmann/FacetAnalyser +romangrothausmann__FacetAnalyser__Job-Retry__build,https://gitlab.com/romangrothausmann/FacetAnalyser,https://gitlab.com/romangrothausmann/FacetAnalyser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/romangrothausmann__FacetAnalyser/.gitlab-ci.yml,romangrothausmann__FacetAnalyser,Job-Retry,always,build,build,2,18,.gitlab-ci.yml,romangrothausmann,romangrothausmann/FacetAnalyser +teuteuf__SpotTheDefuser__Job-Retry__generate-apk,https://gitlab.com/teuteuf/SpotTheDefuser,https://gitlab.com/teuteuf/SpotTheDefuser/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/teuteuf__SpotTheDefuser/.gitlab-ci.yml,teuteuf__SpotTheDefuser,Job-Retry,always,post-build,generate-apk,2,106,.gitlab-ci.yml,teuteuf,teuteuf/SpotTheDefuser +ucl-peach-public__trialslink__Job-Allow-Failure__gatling-test,https://gitlab.com/ucl-peach-public/trialslink,https://gitlab.com/ucl-peach-public/trialslink/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/ucl-peach-public__trialslink/.gitlab-ci.yml,ucl-peach-public__trialslink,Job-Allow-Failure,,test,gatling-test,Allows failure of job `gatling-test` at stage `test`,57,.gitlab-ci.yml,ucl-peach-public,ucl-peach-public/trialslink +wpdesk__wc-helpers__Job-Allow-Failure__acceptance-test,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Allow-Failure,,tests,acceptance test,Allows failure of job `acceptance test` at stage `tests`,179,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Allow-Failure__integration-test-current-woocommerce,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Allow-Failure,,test,integration test current woocommerce,Allows failure of job `integration test current woocommerce` at stage `test`,169,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Allow-Failure__phpmetric-metrics,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Allow-Failure,,tools,phpmetric metrics,Allows failure of job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Allow-Failure__churn-metrics,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Allow-Failure,,tools,churn metrics,Allows failure of job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Retry__deploy-to-shop,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Retry,always,deploy,deploy to shop,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Retry__deploy-to-demo,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Retry,always,deploy,deploy to demo,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Job-Retry__deploy-to-repository,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Job-Retry,always,deploy,deploy to repository,2,19,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Manual-Job__phpmetric-metrics,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Manual-Job,,tools,phpmetric metrics,Manual job `phpmetric metrics` at stage `tools`,96,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers +wpdesk__wc-helpers__Manual-Job__churn-metrics,https://gitlab.com/wpdesk/wc-helpers,https://gitlab.com/wpdesk/wc-helpers/blob/master/.gitlab-ci.yml,/home/xxx/fse-submission/linter_configfiles/wpdesk__wc-helpers/.gitlab-ci.yml,wpdesk__wc-helpers,Manual-Job,,tools,churn metrics,Manual job `churn metrics` at stage `tools`,113,.gitlab-ci.yml,wpdesk,wpdesk/wc-helpers diff --git a/datasets/tools-to-exclude-fuzzyversion.txt b/datasets/tools-to-exclude-fuzzyversion.txt new file mode 100644 index 0000000..df9878f --- /dev/null +++ b/datasets/tools-to-exclude-fuzzyversion.txt @@ -0,0 +1,16 @@ +pycodestyle +flake8 +tox +nose +pylint +pytest +coverage +setuptools +pip +pipenv +ipython +codecov +junit +mypy +pytest-cov +ipython diff --git a/scripts.zip b/scripts.zip deleted file mode 100644 index 5a8f73ec400770adee52fc0e2e004e9bb0554dfd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7369 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 diff --git a/scripts/likert-scaled-reactions.R b/scripts/likert-scaled-reactions.R new file mode 100644 index 0000000..eda9cd0 --- /dev/null +++ b/scripts/likert-scaled-reactions.R @@ -0,0 +1,54 @@ +#required libraries +library("devtools") +library("likert") + +#import data +path = 'report.csv' +data <- read.csv(file=path, header=TRUE, sep=",") + +# give a title and rename columns +title <- "Decisions on our posts" +names(data) = c("Fuzzy Version", "Manual Execution", "Retry Failure", "Fake Success", "Overall") + +#factor data +levels = c( "ignore", "reject", "pending", "accept", "fix") + +data$`Fake Success` =factor(data$`Fake Success`, + levels, + ordered = TRUE) + +data$`Retry Failure` =factor(data$`Retry Failure`, + levels, + ordered = TRUE) + +data$`Manual Execution` =factor(data$`Manual Execution`, + levels, + ordered = TRUE) + +data$`Fuzzy Version` =factor(data$`Fuzzy Version`, + levels, + ordered = TRUE) + +data$`Overall` = factor(data$`Overall`, + levels, + ordered = TRUE) + +#convert to likert +likertData <- likert(data) +str(likertData) + +#summary results +likertDatas <- likert(summary = likertData$results) +str(likertDatas) +summary(likertDatas) + +#plots +scale_height = knitr::opts_chunk$get('fig.height')*0.5 +scale_width = knitr::opts_chunk$get('fig.width')*1.25 +knitr::opts_chunk$set(fig.height = scale_height, fig.width = scale_width) + +theme_update(legend.text = element_text(size = rel(0.7))) +#plot(likertDatas) +plot(likertDatas, include.center=TRUE) + +head(data); ncol(data) \ No newline at end of file diff --git a/scripts/study-results.py b/scripts/study-results.py new file mode 100644 index 0000000..7b1dc46 --- /dev/null +++ b/scripts/study-results.py @@ -0,0 +1,590 @@ +import numpy as np +import pandas +import random +import re +from scipy.stats import pearsonr, spearmanr + + +# ausiliary functions + +def buildSeriesByCategory(df, categories): + res = [] + for cat in categories: + occ = df.loc[df["category"] == cat].shape[0] + res.append(occ) + res_series = pandas.Series(res, index=categories) + return res_series + + +# convert dataframe that can be used to generate likert plot +def convertToRLikertFormat(dataframe): + # get rows from dataframe + version_series = dataframe.loc["Versioning"] + manual_series = dataframe.loc["Manual-Job"] + retry_series = dataframe.loc["Job-Retry"] + allow_series = dataframe.loc["Job-Allow-Failure"] + overall_series = dataframe.loc["overall"] + + # convert to R format and fill the dictionary + dict_of_columns = {} + dict_of_columns['Fuzzy Version'] = fillList(version_series) + dict_of_columns['Manual Execution'] = fillList(manual_series) + dict_of_columns['Retry Failure'] = fillList(retry_series) + dict_of_columns['Fake Success'] = fillList(allow_series) + dict_of_columns['Overall'] = fillList(overall_series) + + # merge everything in one dataframe + result = pandas.DataFrame(dict_of_columns) + return result + + +def fillList(series): + list = [] + for label, value in series.items(): + if label != "reacted": + num = value + while num > 0: + list.append(label) + num = num - 1 + return pandas.Series(list) + + +def printStatsByCategory(df, categories): + for cat in categories: + occ = df.loc[df["category"] == cat].shape[0] + print(cat + ": " + str(occ)) + + +def buildOverallResultSeries(resulting_series): + res_list = [] + for label, serie in resulting_series.items(): + sum = 0; + for value in serie: + sum += value + res_list.append(sum) + return res_list + + +def fillTwoLists(typ, cat, labels_string, cat_list, label_list): + labels = labels_string.split(",") + for label in labels: + if label != 'nan': + cat_list.append(cat) + label_list.append(typ + ":" + label.strip()) + + +def computeProjectSet(list, splitRule, categories): + resulting_set = set() + base_link = "https://gitlab.com" + + for name in list: + if splitRule != "": + splittedName = name.split(splitRule) + + new_name = base_link + + for token in splittedName: + if token in categories: + break + else: + token = re.sub(r"[ <>#%\"{}|^'`;\[\]/?:@&=+$,\.()\\\\]", my_replace, token) + new_name += "/" + token + resulting_set.add(new_name) + + return resulting_set + + +def my_replace(match): + return "-" + + +def recallSample(start_data_file, rqone_file, rqtwo_file, output_file, categories): + with open(start_data_file) as dataset_reader, open(rqone_file) as rqone_reader, open(rqtwo_file) as rqtwo_reader: + dataset = pandas.read_csv(dataset_reader) + # hasYaml hasRequirements hasPoms + dataset = dataset.loc[dataset['hasYaml']] + rqone = pandas.read_csv(rqone_reader) + rqtwo = pandas.read_csv(rqtwo_reader) + + dataset_len = dataset.shape[0] + rqone_len = rqone.shape[0] + rqtwo_len = rqtwo.shape[0] + print("Dataset's size: " + str(dataset_len)) + print("RQ1's size: " + str(rqone_len)) + print("RQ2's size: " + str(rqtwo_len)) + + header = dataset.shape[0] + dataset_proj = dataset['project'] + rqone_proj = rqone['id'] + rqtwo_proj = rqtwo['ID'] + + # note that in RQ2 some issues (of different type) belong to the same project and some project are shared by + # RQ1 and RQ2 + dataset_set = computeProjectSet(dataset_proj, "/", categories) + rqone_set = computeProjectSet(rqone_proj, "__", categories) + rqtwo_set = computeProjectSet(rqtwo_proj, "__", categories) + print("Dataset's size (unique): " + str(len(dataset_set))) + print("RQ1's size (unique): " + str(len(rqone_set))) + print("RQ2's size (unique): " + str(len(rqtwo_set))) + + # compute the candidate set + d0 = dataset_set.difference(rqone_set) + print("d0 (dataset - RQ1): " + str(len(d0))) + # print(d0) + d1 = d0.difference(rqtwo_set) + print("d1 (d0 - RQ2): " + str(len(d1))) + # print(d1) + print("---") + + # compute the recall sample and save it + sample_size = 8 + recall_sample = random.sample(d1, sample_size) + recall_projects = {'project': recall_sample} + recall_df = pandas.DataFrame(recall_projects) + recall_df.to_csv(output_file, index=False) + + return + + +def printOccurrences(antipatterns, tot_smells, tot_ana_projects, tot_ana_owners): + num_smells = antipatterns['ID'].shape[0] + percentage_num_smells = round(num_smells / tot_smells * 100, 1) + print("#smells: " + str(num_smells) + "(" + str(percentage_num_smells) + "%)") + + num_smelly_projects = antipatterns['Project'].unique().shape[0] + percentage_num_smelly_projects = round(num_smelly_projects / tot_ana_projects * 100, 1) + print("#smelly-projects: " + str(num_smelly_projects) + "(" + str(percentage_num_smelly_projects) + "%)") + + num_smelly_owners = antipatterns['Owner'].unique().shape[0] + percentage_num_smelly_owners = round(num_smelly_owners / tot_ana_owners * 100, 1) + print("#smelly-owners: " + str(num_smelly_owners) + "(" + str(percentage_num_smelly_owners) + "%)") + + +def printOccurrencesPerCluster(apdf, tot_smells, tot_ana_projects, tot_ana_owners, tot_ana_projects_versioning, + tot_ana_owners_versioning): + print("\n-> Versioning") + versioning = apdf.loc[apdf["Category"] == "Versioning"] + printOccurrences(versioning, tot_smells, tot_ana_projects_versioning, tot_ana_owners_versioning) + + print("\n-> Job-Allow-Failure") + allow_failure = apdf.loc[apdf["Category"] == "Job-Allow-Failure"] + printOccurrences(allow_failure, tot_smells, tot_ana_projects, tot_ana_owners) + + print("\n-> Job-Retry") + retry = apdf.loc[apdf["Category"] == "Job-Retry"] + printOccurrences(retry, tot_smells, tot_ana_projects, tot_ana_owners) + + print("\n-> Manual-Job") + manual = apdf.loc[apdf["Category"] == "Manual-Job"] + printOccurrences(manual, tot_smells, tot_ana_projects, tot_ana_owners) + + +def printOccurrences2(df, tot): + num_smells = df['ID'].shape[0] + percentage_num_smells = round(num_smells / tot * 100, 1) + print("#smells: " + str(num_smells) + "(" + str(percentage_num_smells) + "%)") + + +def printOccurrencesPerCluster2(apdf, tot_versioning, tot_allow, tot_retry, tot_manual): + print("-> Versioning") + versioning = apdf.loc[apdf["Category"] == "Versioning"] + printOccurrences2(versioning, tot_versioning) + + print("-> Job-Allow-Failure") + allow_failure = apdf.loc[apdf["Category"] == "Job-Allow-Failure"] + printOccurrences2(allow_failure, tot_allow) + + print("-> Job-Retry") + retry = apdf.loc[apdf["Category"] == "Job-Retry"] + printOccurrences2(retry, tot_retry) + + print("-> Manual-Job") + manual = apdf.loc[apdf["Category"] == "Manual-Job"] + printOccurrences2(manual, tot_manual) + + +def recall_computation(file): + df = pandas.read_csv(file) + TTP = df.loc[(df["manual validation"] == "YES")] + TP = TTP.loc[TTP["match with cd-linter"] == "YES"] + print(TTP.shape[0]) + print(TP.shape[0]) + rec = round(TP.shape[0] / TTP.shape[0], 2) + print(rec) + + +# RQ3 data analysis +def rqthree_results(input_file, dataset): + datasetf = pandas.read_csv(dataset) + datasetf = datasetf.loc[datasetf["hasYaml"]] # remove projects without yaml + print("Analyzable projects: " + str(datasetf.shape[0])) + + print("\n### Describe dataset ###") + summary = datasetf['yml_size'].describe() + tot_projects = datasetf["project"].unique().shape[0] + tot_owners = datasetf["owner"].unique().shape[0] + print("Analyzable repositories: " + str(tot_projects)) + + # for versioning different candidates + versioning_candidates = datasetf.loc[(datasetf["language"] == "Python") | (datasetf["hasPoms"])] + tot_projects_versioning = versioning_candidates["project"].unique().shape[0] + tot_owners_versioning = versioning_candidates["owner"].unique().shape[0] + print("Analyzable repositories (Versioning): " + str(tot_projects_versioning)) + print("Analyzable owners: " + str(tot_owners)) + print("Analyzable owners (Versioning): " + str(tot_owners_versioning)) + yml_first_quartile = summary["25%"] + print("YML-size (25%): " + str(yml_first_quartile)) + yml_third_quartile = summary["75%"] + print("YML-size (75%): " + str(yml_third_quartile)) + + # Merge antipatterns with dataset + antipatterns = pandas.read_csv(input_file) + apdf = pandas.merge(antipatterns, datasetf, left_on='Repository Name', right_on='project', how='left') + + # exclude additional python projects without yaml + apdf = apdf.loc[pandas.notna(apdf["project"])] + + print("\n### Full-analysis of smells ###") + + print("-> Overall") + tot_smells = apdf['ID'].shape[0] + tot_smelly_projects = apdf['Project'].unique().shape[0] + tot_smelly_owners = apdf['owner'].unique().shape[0] + print("#smells: " + str(tot_smells)) + print("#smelly-projects: " + str(tot_smelly_projects)) + print("#smelly-owners: " + str(tot_smelly_owners)) + + printOccurrencesPerCluster(apdf, tot_smells, tot_projects, tot_owners, tot_projects_versioning, + tot_owners_versioning) + + print("\n### YAML-size-based clustering analysis ###") + tot_versioning = apdf.loc[apdf["Category"] == "Versioning"].shape[0] + tot_allow = apdf.loc[apdf["Category"] == "Job-Allow-Failure"].shape[0] + tot_manual = apdf.loc[apdf["Category"] == "Manual-Job"].shape[0] + tot_retry = apdf.loc[apdf["Category"] == "Job-Retry"].shape[0] + + print("\n-> Projects (small yaml)") + apdf_small = apdf.loc[apdf["yml_size"] <= yml_first_quartile] + printOccurrences(apdf_small, tot_smells, tot_smelly_projects, tot_smelly_owners) + printOccurrencesPerCluster2(apdf_small, tot_versioning, tot_allow, tot_retry, tot_manual) + + print("\n-> Projects (medium yaml)") + apdf_medium = apdf.loc[(apdf["yml_size"] > yml_first_quartile) & (apdf["yml_size"] < yml_third_quartile)] + printOccurrences(apdf_medium, tot_smells, tot_smelly_projects, tot_smelly_owners) + printOccurrencesPerCluster2(apdf_medium, tot_versioning, tot_allow, tot_retry, tot_manual) + + print("\n-> Projects (long yaml)") + apdf_big = apdf.loc[apdf["yml_size"] >= yml_third_quartile] + printOccurrences(apdf_big, tot_smells, tot_smelly_projects, tot_smelly_owners) + printOccurrencesPerCluster2(apdf_big, tot_versioning, tot_allow, tot_retry, tot_manual) + + print("\n### YAML-size-based clustering analysis (Big YAML) ###") + + # reduce starting dataset to the high sample + big_datasetf = datasetf.loc[datasetf["yml_size"] >= yml_third_quartile] + big_tot_projects = big_datasetf["project"].unique().shape[0] + big_tot_owners = big_datasetf["owner"].unique().shape[0] + print("Analyzable repositories: " + str(big_tot_projects)) + + # for versioning different candidates + big_versioning_candidates = big_datasetf.loc[(big_datasetf["language"] == "Python") | (big_datasetf["hasPoms"])] + big_tot_projects_versioning = big_versioning_candidates["project"].unique().shape[0] + big_tot_owners_versioning = big_versioning_candidates["owner"].unique().shape[0] + print("Analyzable repositories (Versioning): " + str(big_tot_projects_versioning)) + print("Analyzable owners: " + str(big_tot_owners)) + print("Analyzable owners (Versioning): " + str(big_tot_owners_versioning)) + + big_tot_smells = apdf_big['ID'].shape[0] + big_tot_smelly_projects = apdf_big['Project'].unique().shape[0] + big_tot_smelly_owners = apdf_big['Owner'].unique().shape[0] + print("#smells: " + str(big_tot_smells)) + print("#smelly-projects: " + str(big_tot_smelly_projects)) + print("#smelly-owners: " + str(big_tot_smelly_owners)) + + printOccurrencesPerCluster(apdf_big, big_tot_smells, big_tot_projects, big_tot_owners, big_tot_projects_versioning, + big_tot_owners_versioning) + + print("\n# Analysis of versioning issues") + + vapdf = apdf.loc[apdf["Category"] == "Versioning"] # the versioning frame + + # tot incidents per file + print("\n-> overall") + versioning_occurrences_byfile(vapdf) + + print("\n-> missing") + missing = vapdf.loc[vapdf["Sub-Category"] == "missing"] + versioning_occurrences_byfile(missing) + print("\n-> only-major-number") + only_major_number = vapdf.loc[vapdf["Sub-Category"] == "only-major-number"] + versioning_occurrences_byfile(only_major_number) + print("\n-> any-minor-number") + any_minor_number = vapdf.loc[vapdf["Sub-Category"] == "any-minor-number"] + versioning_occurrences_byfile(any_minor_number) + print("\n-> any-upper-version") + any_upper_version = vapdf.loc[vapdf["Sub-Category"] == "any-upper-version"] + versioning_occurrences_byfile(any_upper_version) + + return + + +def versioning_occurrences_byfile(smell): + tot_incidents = smell.shape[0] + affected_files = smell["Remote Configuration File Link"].unique().shape[0] + + yml_incidents = smell.loc[smell["Configuration File Name"] == ".gitlab-ci.yml"] + tot_yml_incidents = yml_incidents.shape[0] + tot_affected_yml = yml_incidents["Remote Configuration File Link"].unique().shape[0] + + req_incidents = smell.loc[smell["Configuration File Name"] == "requirements.txt"] + tot_req_incidents = req_incidents.shape[0] + tot_affected_req = req_incidents["Remote Configuration File Link"].unique().shape[0] + + pom_incidents = smell.loc[(smell["Configuration File Name"] != ".gitlab-ci.yml") & + (smell["Configuration File Name"] != "requirements.txt")] + tot_pom_incidents = pom_incidents.shape[0] + tot_affected_pom = pom_incidents["Remote Configuration File Link"].unique().shape[0] + + print("tot_incidents: " + str(tot_incidents)) + print("affected_files: " + str(affected_files)) + print("tot_yml_incidents: " + str(tot_yml_incidents) + "(" + str( + round(tot_yml_incidents / tot_incidents * 100, 2)) + "%)") + print("affected_yml_files: " + str(tot_affected_yml)) + print("tot_req_incidents: " + str(tot_req_incidents) + "(" + str( + round(tot_req_incidents / tot_incidents * 100, 2)) + "%)") + print("affected_req_files: " + str(tot_affected_req)) + print("tot_pom_incidents: " + str(tot_pom_incidents) + "(" + str( + round(tot_pom_incidents / tot_incidents * 100, 2)) + "%)") + print("affected_pom_files: " + str(tot_affected_pom)) + + +# RQ1 data analysis +def rqone_results(issueReportFile, path): + + with open(issueReportFile) as input_file: + frame = pandas.read_csv(input_file) # read file in a dataframe + + tot_opened_issues = frame.loc[pandas.notna(frame["category"]) & + (frame["category"] != "Vulnerability") & + (frame["category"] != "Job-Retry (duplicate)")].shape[0] + print("### Tot opened issues: " + str(tot_opened_issues)) + + # select only active projects + df = frame.loc[(frame["commitsSinceIssue"] >= 1) & + (frame["category"] != "Vulnerability") & + pandas.notna(frame["category"]) & + (frame["category"] != "Job-Retry (duplicate)")] + + categories = df.category.unique() + + print("\n#### Opened issues (active projects since September 2019) ####") + openend_series = buildSeriesByCategory(df, categories) + printStatsByCategory(df, categories) + activeProjects = df.shape[0] + print("Total: " + str(activeProjects) + " (" + + str(tot_opened_issues - activeProjects) + " inactive)") + + print("\n#### Issues (with a reaction) ####") + # select rows by column values + react_df = df.loc[(df["fixed (y/n/m)"] == "y") | + (df["numUpvotes"] > 0) | + (df["numDownvotes"] > 0) | + ((pandas.notna(df["reaction"])) & + (df["reaction"] != "invalid") + ) | + (df["isAssigned"]) | + (df["state"] == "closed") + ] + react_series = buildSeriesByCategory(react_df, categories) + printStatsByCategory(react_df, categories) + tot_rissues = 0 + for value in react_series: + tot_rissues += value + print("Total issues with a reaction: " + str(tot_rissues)) + comments = react_df["numComments"] + tot_comments = 0 + for value in comments: + tot_comments += value + print("Total num. of comments: " + str(tot_comments)) + + print("\n#### Ignored issues ####") + ignored_df = df.loc[(df["fixed (y/n/m)"] == "n") & + (df["state"] == "closed") & + (df["numUpvotes"] == 0) & + (df["numDownvotes"] == 0) & + ((pandas.isna(df["reaction"])) | + (df["reaction"] == "invalid") + )] + ignored_series = buildSeriesByCategory(ignored_df, categories) + printStatsByCategory(ignored_df, categories) + + print("\n#### Rejected issues ####") + # select rows by column values + rejected_df = df.loc[(df["fixed (y/n/m)"] == "n") & + (df["state"] == "closed") & + ((df["numDownvotes"] - df["numUpvotes"] > 0) | + (df["reaction"] == "negative") # | + # (df["reaction"] == "not-now") + )] + rejected_series = buildSeriesByCategory(rejected_df, categories) + printStatsByCategory(rejected_df, categories) + + print("\n#### Accepted issues ####") + accepted_df = df.loc[(df["fixed (y/n/m)"] == "n") & + ((df["numDownvotes"] - df["numUpvotes"] < 0) | + (df["isAssigned"]) | + (df["reaction"] == "positive") + )] + accepted_series = buildSeriesByCategory(accepted_df, categories) + printStatsByCategory(accepted_df, categories) + + print("\n#### Fixed issues ####") + # select rows by column values + fixed_df = df.loc[(df["fixed (y/n/m)"] == "y")] + fixed_series = buildSeriesByCategory(fixed_df, categories) + printStatsByCategory(fixed_df, categories) + + print("\n#### Pending issues ####") + print("the remaining issues that have a pending reaction") + + pending_series = [] + + for i in range(4): + current_tot = 0 + current_tot += ignored_series[i] + current_tot += rejected_series[i] + current_tot += accepted_series[i] + current_tot += fixed_series[i] + overall_tot = react_series[i] + pending_series.append(overall_tot - current_tot) + + + # Overall results + print("\n#### Overall stats ####") + resulting_series = {'ignore': ignored_series, 'reject': rejected_series, 'pending': pending_series, + 'accept': accepted_series, 'fix': fixed_series, 'reacted': react_series, + 'opened': openend_series} + + res_df = pandas.DataFrame(resulting_series) + overall_series = buildOverallResultSeries(resulting_series) + res_df.loc['overall'] = overall_series + + print(res_df) + + resulting_series_perc = { + 'ignore': res_df['ignore'] / res_df['reacted'] * 100, 'reject': res_df['reject'] / res_df['reacted'] * 100, + 'pending': res_df['pending'] / res_df['reacted'] * 100, + 'accept': res_df['accept'] / res_df['reacted'] * 100, + 'fix': res_df['fix'] / res_df['reacted'] * 100 + } + print("-> Percentages") + print(pandas.DataFrame(resulting_series_perc)) + print("-> Reaction rate") + print(res_df['reacted'] / res_df['opened'] * 100) + + res = convertToRLikertFormat(res_df) + # print(res) + + # persist in a csv file (for Likert scale in R) + res.to_csv(path, index=False) + + # Bar chart of most recurrent causes of rejection + print("\n#### Analysis of rejected issues ####") + + # build the dataframe + categories_col = [] + comment_labels_col = [] + for index, row in rejected_df.iterrows(): + cat = str(row["category"]) + # fill three label categories + labels_list = str(row["comment-labels"]) + fillTwoLists("com:", cat, labels_list, categories_col, comment_labels_col) + bugs_list = str(row["cd-linter-bug"]) + fillTwoLists("bug:", cat, bugs_list, categories_col, comment_labels_col) + fixes_list = str(row["fix-labels"]) + fillTwoLists("fix:", cat, fixes_list, categories_col, comment_labels_col) + + # print(len(categories_col) == len(comment_labels_col)) + rej_series = {'category': pandas.Series(categories_col), + 'label': pandas.Series(comment_labels_col)} + rejc = pandas.DataFrame(rej_series) + + print("-> Overall stats") + print(" -> Category stats") + print(rejc['category'].value_counts()) + print(" -> Label stats") + print(rejc['label'].value_counts()) + + rejc_byCat = rejc.groupby('category') + # print(groupby) + + index = [] + overall_value = [] + for name, group in rejc_byCat: + print("-> " + name + " : " + str(group.shape[0])) + ls = group['label'] + print(ls.value_counts()) + + print("\n#### Analysis of the resolution time ####") + + res_time = df.loc[(pandas.notna(df["resolution-time"]))] + res_time = res_time.apply(lambda x: x / (1000 * 60 * 60 * 24) if x.name == 'resolution-time' else x) + + # correlation study + activity = res_time[["category", "commitsSinceIssue", "contributorsSinceIssue", "resolution-time"]] + + print("---> quick correlation analysis with project activity") + correlationAnalysis(activity["resolution-time"], activity["commitsSinceIssue"]) + + res_time = res_time[["category", "resolution-time"]] + print("-> Overall") + print(res_time.describe()) + print("-> Job-Allow-Failure") + print(res_time.loc[res_time["category"] == "Job-Allow-Failure"].describe()) + print("-> Job-Retry") + print(res_time.loc[res_time["category"] == "Job-Retry"].describe()) + print("-> Manual-Job") + print(res_time.loc[res_time["category"] == "Manual-Job"].describe()) + print("-> Versioning") + print(res_time.loc[res_time["category"] == "Versioning"].describe()) + + + input_file.close() + + +def correlationAnalysis(d1, d2): + covariance = np.cov(d1, d2) + # print(covariance) + + # Pearson’s Correlation (assume gaussian distribution) + # calculate Pearson's correlation + corr, _ = pearsonr(d1, d2) + print('Pearsons correlation: %.3f' % corr) + + # calculate spearman's correlation (no assumption about the distribution) + corr, _ = spearmanr(d1, d2) + print('Spearmans correlation: %.3f' % corr) + + +if __name__ == '__main__': + + print("RQ1 results") + rq1cdsmells = "rq1-cdsmells.csv"; + report = 'report.csv' # file that is used as input for generating likert-scaled reactions + rqone_results(rq1cdsmells, report) + + print("\nRQ2 generate recall sample") + start_data_file = "analyzedprojects.csv" + rqtwo_precision = "rq2-precision.csv" + output_file = "recall-sample.csv" + categories = {"Job-Allow-Failure", "Job-Retry", "Manual-Job", "Versioning"} + recallSample(start_data_file, rq1cdsmells, rqtwo_precision, output_file, categories) + + print("\nRQ2 recall results") + recall_results = "recall-results.csv"; + recall_computation(recall_results) + + print("\nRQ3 results") + dataset_withyml = "dataset_yml-update.csv" + rqthree_smells = "rq3-results.csv" + rqthree_results(rqthree_smells, dataset_withyml)