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 886c4ad..0000000 Binary files a/cd-linter-code.zip and /dev/null differ diff --git a/cd-linter-code/pom.xml b/cd-linter-code/pom.xml new file mode 100644 index 0000000..9c8a950 --- /dev/null +++ b/cd-linter-code/pom.xml @@ -0,0 +1,194 @@ + + 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 475f532..0000000 Binary files a/datasets.zip and /dev/null differ 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 5a8f73e..0000000 Binary files a/scripts.zip and /dev/null differ 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)