repo_path
stringlengths
6
122
repo_id
int64
18.5k
1.03B
commit_id
stringlengths
40
40
github_metadata
dict
num_files
int64
1
48.1k
files
listlengths
1
48.1k
kelasrobot/DisplayPZEM
615,667,709
25b39445506ecba166b2fe200a840c13f231a59b
{ "branch": "main", "commit_count": 2, "repo_created_at": "2023-03-18T10:24:48.000Z", "is_fork": false, "is_org_owned": true, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "9543d88611ceaca579dfe1e9ca7d1fb043d7403c", "content": "name=DisplayPZEM\nversion=1.0.0\nauthor=<NAME>\nmaintainer=<NAME> <<EMAIL>>\nsentence=Library untuk menampilkan data PZEM di Display 7 Segment\nparagraph=Library untuk menampilkan data PZEM di Display 7 Segment dengan menggunakan Arduin...
olgac77/SalesforceDeveloper
252,204,452
0b9756562dc4ee1a39ee2fcfd0ec6b5f8992569d
{ "branch": "master", "commit_count": 3, "repo_created_at": "2020-04-01T14:50:25.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 7, "issues": 0, "pull_requests": 0 }
382
[ { "content_id": "9fd383da7e212f21279ae8d22112df8644b6d639", "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<CustomFieldTranslation xmlns=\"http://soap.sforce.com/2006/04/metadata\">\n <caseValues>\n <plural>false</plural>\n <value>Maintenance Request View</value>\n </caseValues>...
SagarShaivin/Terraform-EC2-Storage-Automation
824,406,882
e013639a1b5fc55c04865e5f65bc06101c097795
{ "branch": "main", "commit_count": 5, "repo_created_at": "2024-07-05T04:31:50.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
9
[ { "content_id": "cce40399c3dfcc1f14aa094c30d07cff141dca78", "content": "resource \"aws_ebs_volume\" \"ebs\" {\n availability_zone = var.vol_az\n size = var.vol_size\n}\n\nresource \"aws_volume_attachment\" \"ebs_att\" {\n device_name = var.device_name\n volume_id = aws_ebs_volume.ebs.id\n instance_id...
Isaque52/conways_game_of_life
474,038,340
06fadf4939ce43d8c658220ef5a3779c1b11997b
{ "branch": "main", "commit_count": 19, "repo_created_at": "2022-03-25T14:18:23.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "316509ef6007a7e34820b5a6e1800dc86989e874", "content": "class Game\n attr_accessor :turn, :current_board\n\n def initialize\n @current_board = Board.new\n @turn = 0\n end\n\n def rules\n Rules.new(current_board)\n end\n\n def take_turn\n temporary_board = Board.new\n cur...
bhattbhuwan13/learning-pre-commit
410,011,954
5d6feca9adeae6bc5cb7b54db63c0f69781f427f
{ "branch": "main", "commit_count": 18, "repo_created_at": "2021-09-24T15:22:18.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "3b12119a3430d14c6161e0cd40f4052909d8ab17", "content": "# learning-pre-commit and github-actions\nThis is a dummy repository made in order to learn pre-commit and github actions.\n", "size_bytes": 122, "file_path": "README.md", "file_timestamp": 1632617397, "language": "Markd...
emirhaneraslan/CreateUserWithSOAPandRESTService
518,036,319
a022be837ee90f6dbccb8260a6ed2feede1b49e3
{ "branch": "main", "commit_count": 2, "repo_created_at": "2022-07-26T11:38:41.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
18
[ { "content_id": "2ce569151f9a028fa8e1996cc47b02c2e1c279d3", "content": "\npackage com.emirhaneraslan.student;\n\n\nimport javax.xml.bind.annotation.*;\n\n/**\n * <p>Java class for anonymous complex type.\n * \n * <p>The following schema fragment specifies the expected content contained within this class.\n ...
tolubass/Django-models-and-database
534,801,843
9ef817e6c28895cc9f7374afd8a5f36234f2ba78
{ "branch": "master", "commit_count": 1, "repo_created_at": "2022-09-09T20:51:05.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "f61686d0a8b27c8374ac3f2b93297ece5b4443cf", "content": "from django.db import models\n\n# Create your models here.\n\nclass Books(models.Model):\n objects = models.Manager()\n author = models.CharField(max_length=100)\n title = models.CharField(max_length=100)\n body = models.Tex...
Elisson78/event-connect
1,010,340,476
87f1a0830b3848f225f10723cc721ccf84240868
{ "branch": "main", "commit_count": 18, "repo_created_at": "2025-06-28T21:31:42.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
94
[ { "content_id": "accda40a2c8f1db25174a3aae62eccb3bd0f5ccd", "content": "import React, { useEffect } from 'react';\nimport { BrowserRouter as Router, Routes, Route, useLocation } from 'react-router-dom';\nimport { Toaster } from '@/components/ui/toaster';\nimport { useToast } from '@/components/ui/use-toast'...
prescottprue/devshare
52,068,732
38a7081f210857f2ef106836c30ea404c12c1643
{ "branch": "master", "commit_count": 80, "repo_created_at": "2016-02-19T07:09:43.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 3, "issues": 0, "pull_requests": 0 }
84
[ { "content_id": "cf7d337a3055803ce0c9f96db505875f975c4082", "content": "language: node_js\n\nnode_js:\n - \"6\"\n\nbranches:\n only:\n - master\n\nsudo: false\n\nscript:\n - npm run lint:fix\n - npm run test:cov\n\naddons:\n code_climate:\n repo_token: $CODECLIMATE_REPO_TOKEN\n\nafter_success:\n ...
rcarreraamoedo/Tarefa7
261,159,413
965cdf4daa30621e84a88d121e533cd053ca68b6
{ "branch": "master", "commit_count": 1, "repo_created_at": "2020-05-04T11:40:39.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
3
[ { "content_id": "b86186598cf26b36484c21b394c7d122c5a97500", "content": "\npackage tarefa7;\nimport java.util.ArrayList;\nimport javax.swing.JOptionPane;\n\n\npublic class Tarefa7 {\n\n\n public static void main(String[] args) {\n ArrayList<Barco>listaBarco=new ArrayList<>();\n \n Yat...
longhao54/rancher-pipeline
209,200,983
5184198821189f62ea1850b53fdda448ed61d9f6
{ "branch": "master", "commit_count": 17, "repo_created_at": "2019-09-18T02:37:00.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "4bb30160825b40e667f76273878422f39429ea18", "content": "stages:\n- name: pull code\n steps:\n - runScriptConfig:\n image: registry.yz-dev-rrcloud.priv/centos:7.6.1810\n shellScript: echo \"hello\"\n when:\n event: {}\n- name: push image\n steps:\n - publishImageConfig:\...
yzwxk/simplenews
127,740,276
c5163e7c7413d29f03bcb33ccd0d13a96a9236ae
{ "branch": "master", "commit_count": 2, "repo_created_at": "2018-04-02T10:16:54.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "136cba1a69850c25fe9ab1abcbc98ae0fd9e1efe", "content": "* {\n margin: 0;\n padding: 0;\n}\n\np {\n\n display: block;\n -webkit-margin-before: 1em;\n -webkit-margin-after: 1em;\n -webkit-margin-start: 0px;\n -webkit-margin-end: 0px;\n}\n\nbody {\n font-size: 16px;\n ...
va1da5/blackmagic-bluepill
585,107,294
38b5482ac7f999e28c832b834c37c0e8a4cb301d
{ "branch": "main", "commit_count": 3, "repo_created_at": "2023-01-04T10:37:14.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "b10f28cc58101e0fe417ea49b5f260a555b31a49", "content": "FROM ubuntu:20.04\n\nENV DEBIAN_FRONTEND noninteractive\n\nUSER root\n\nRUN apt update \\\n && apt install -y git gcc-arm-none-eabi make libtool pkgconf autoconf automake stlink-tools python3.9 \\\n texinfo libusb-1.0-0 libusb-1.0...
Urielmajb/Sistema-de-Gestion-de-Filas
863,153,044
d4af1a80cf69de9cf03df8e4577330faf97a8d29
{ "branch": "master", "commit_count": 6, "repo_created_at": "2024-09-25T20:02:39.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 0, "issues": 0, "pull_requests": 0 }
31
[ { "content_id": "c529a5c8a66b176c00b3b63942b02842a863b35f", "content": "<?php \nsession_start();\nrequire_once('DBConnection.php');\n\nClass Actions extends DBConnection{\n function __construct(){\n parent::__construct();\n }\n function __destruct(){\n parent::__destruct();\n }\n ...
YasminSBarata/desafioLAPES_frontEnd
1,010,212,724
1832735d010d44d8e97140f22fa8a01d41656284
{ "branch": "main", "commit_count": 13, "repo_created_at": "2025-06-28T15:37:58.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "0381dda9d7a8b16bf487542f5049ffccfeccf653", "content": "import '../src/app/globals.css';\n\nconst preview = {\n parameters: {\n controls: {\n matchers: {\n color: /(background|color)$/i,\n date: /Date$/i,\n },\n },\n },\n} as const;\n\nexport default preview;\...
BerMira/proyectoFinalAndroid
627,456,987
256db6437ee130c3fddccfb7cf11b9fd326ccf80
{ "branch": "main", "commit_count": 2, "repo_created_at": "2023-04-13T14:01:56.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "b7702337ba04fba6dc59ab5576df3e98383d4fb9", "content": "# proyectoFinalAndroid\nProyecto para el curso de Desarrollo Móvil\n", "size_bytes": 67, "file_path": "README.md", "file_timestamp": 1681395281, "language": "Markdown", "is_vendor": false, "license_type": "no_lic...
IGOSNIPE/igor
125,417,709
54446641e0716f6d0f8845bdaddb6a5295bd39c0
{ "branch": "master", "commit_count": 2, "repo_created_at": "2018-03-15T19:39:17.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
7
[ { "content_id": "9cdff1aa725a85acbf242c170faa5afd5a250db6", "content": "bootstrap/\nnauka-js/\nZabawa/\nwordpress/\ngonciak/\n", "size_bytes": 49, "file_path": ".gitignore", "file_timestamp": 1521143314, "language": "Ignore List", "is_vendor": true, "license_type": "no_license", ...
fawazahmed0/Moodle-Hacking
137,463,949
47cc35e5cecbe6ff16272a994358b44593d6421d
{ "branch": "master", "commit_count": 37, "repo_created_at": "2018-06-15T08:47:46.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 44, "forks": 11, "issues": 1, "pull_requests": 0 }
2
[ { "content_id": "9d8dbd820e60330384bbdf8b6facbe88e933f84b", "content": "# Moodle-Hacking\n\n\n\n### Note:\nEveryone seems to be writing to me to share the code, Please understand that I did this project 3 years back, and the code was sort of spaghetti code filled with bugs. The code was written for older ve...
MehulVasava52/MyTasks
141,115,427
6d76225256fb9fb0de7adb0beae918d6d9f79f0f
{ "branch": "master", "commit_count": 8, "repo_created_at": "2018-07-16T09:16:05.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "760d57f6dc7328b6860e8963ae751ed865a000ec", "content": "*{\n margin:0px;\n padding:0px; \n}\nbody, html {\n height: 100%;\n font-size: 10px;\n}\n.background-wrapper {\n display: flex;\n align-items: center;\n justify-content: center;\n background: url(\"hills.jpg\");\...
Tatmash/Hotel_Booking_System
310,151,540
10ea36c7eeac2dc6f11e33d8d09dbf35c9510d42
{ "branch": "main", "commit_count": 6, "repo_created_at": "2020-11-05T00:41:40.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "34820ee5de5162297255b286f3f6f7407bcb94b5", "content": "import java.util.Date;\n\n/**\n * A HotelBooking is a LocationBooking with a fixed total price, a number of\n * booked single rooms, and a number of booked double rooms.\n *\n * @author <NAME>\n */\npublic class HotelBooking extends Loc...
huangjun0124/LargeDataExportExcel
267,985,714
42d1e4ed74b9ceca9128d29955494a70e39beb6e
{ "branch": "master", "commit_count": 2, "repo_created_at": "2020-05-30T01:10:18.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 3, "forks": 0, "issues": 0, "pull_requests": 1 }
15
[ { "content_id": "916b1592125ab16d6c17b20773197a39d9181894", "content": "using System;\n\nnamespace ExportUsingOpenXML\n{\n class Program\n {\n static void Main(string[] args)\n {\n TestOpenXML2();\n\n while (true)\n {\n Console.ReadLine();...
TepidDrink/books-app
138,006,142
f9fee44defa37053a21b95e5d6faaece0c523cdf
{ "branch": "master", "commit_count": 19, "repo_created_at": "2018-06-20T08:56:15.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
7
[ { "content_id": "642e988653024558d45aeb0d8e697bf7b6ec03b9", "content": "package com.btn.service.repository;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport javax.persistence.EntityManager;\nimport javax.persistence.Query;\n\nimport org.junit.Assert;\nimport org.junit.Before;\nimport org.jun...
sdgathman/abcmidi
268,789,658
457037b4129a160bd05faf30baac1fd57d98fd0b
{ "branch": "master", "commit_count": 17, "repo_created_at": "2020-06-02T12:04:05.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 0, "issues": 0, "pull_requests": 1 }
4
[ { "content_id": "a9283a94956f100a6075c2df209c835d5ca28141", "content": "/20*-*-*\n/*.zip\n/*.tar.gz\n", "size_bytes": 26, "file_path": ".gitignore", "file_timestamp": 1745336085, "language": "Ignore List", "is_vendor": true, "license_type": "no_license", "detected_licenses": [] ...
YulissaLopezC/Martes
730,846,707
3e11aa551044a7f59c6c00877f2e70da93e8a31c
{ "branch": "main", "commit_count": 1, "repo_created_at": "2023-12-12T20:01:05.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "801ba52c1640663c1bd45029245c8047fa06120f", "content": "*{\r\n margin: 0px;\r\n padding: 0px;\r\n box-sizing: border-box;\r\n}\r\n\r\n:root {\r\n --gris-claro: rgb(217,216,215);\r\n --gris-2: rgb(191,191,191);\r\n --gris-3: rgb(115, 114, 114);\r\n --gris-4: rgb(166,165,1...
deletefromuser/demo2
192,192,895
05bee7ff051b373b2b8b7460679d459a737f4e36
{ "branch": "master", "commit_count": 6, "repo_created_at": "2019-06-16T13:15:46.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 2 }
6
[ { "content_id": "7c4eacdf02289c4da0f339d0d5669fa1c8554a54", "content": "package org.rsa.j2ee.demo;\r\n\r\nimport java.util.List;\r\n\r\nimport com.atilika.kuromoji.ipadic.Token;\r\nimport com.atilika.kuromoji.ipadic.Tokenizer;\r\nimport com.mariten.kanatools.KanaConverter;\r\n\r\npublic class KuromojiExampl...
morz-mamun/TypeScript
934,372,451
5b8b442e8879c676debd7b4a589de01b2e250938
{ "branch": "main", "commit_count": 3, "repo_created_at": "2025-02-17T18:07:58.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "9b84e7c956fa5b68b78555c8f8957ecd0ac6a825", "content": "const firstName : string = \"<NAME>\";", "size_bytes": 36, "file_path": "src/index.ts", "file_timestamp": 1739816759, "language": "TypeScript", "is_vendor": false, "license_type": "no_license", "detected_lice...
KSBmishra/KSBmishra
512,617,220
e4e8864828b1492832708ff723fe3f8ccb09a7f1
{ "branch": "main", "commit_count": 1, "repo_created_at": "2022-07-11T04:37:47.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "ac7d0e083fb76b1ef2bc3817217118bd4e896934", "content": "- 👋 Hi, I’m <NAME> aka @KSBmishra \n- 👀 I’m interested in playing with Data using Machine learning , Data analysis , Visualizations\n- 🌱 I’m currently learning Scripting using powershell , visualization tools like Power Bi , Tableau ...
abenokobo/KicooyaFaceSDK
666,069,955
8d2e2b6f229564245170d6427db0300562115f0b
{ "branch": "main", "commit_count": 3, "repo_created_at": "2023-07-13T16:31:20.000Z", "is_fork": false, "is_org_owned": true, "forked_from": null, "stars": 10, "forks": 1, "issues": 0, "pull_requests": 0 }
32
[ { "content_id": "2f26b5b4734f0e6df7b7b9f151e36807c727c4c9", "content": "# Kicooya UserFace API Document\n\n[日本語](api-jp.md)\n\nUseFace Lua Script(`face.lua.path` in face.json) is loaded when Kicooya starts.\n\nUseFace Lua Script must return an instance that extends `kicooya.face.userFace`.\n\nClasses and fu...
Kashier-payments/Kashier-Whmcs-Plugin
539,966,242
7295b446cfc8900c6b10192253191238a6592a81
{ "branch": "main", "commit_count": 11, "repo_created_at": "2022-09-22T12:18:41.000Z", "is_fork": false, "is_org_owned": true, "forked_from": null, "stars": 0, "forks": 1, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "c96750836dbbd687ecfd10b895a17fde2a8e0242", "content": "# Kashier-Whmcs-Plugin\nKashier Whmcs Plugin\n\n * Version: 2.0.0\n * Tested up to: 18.5.1\n\n![](https://raw.githubusercontent.com/Kashier-payments/Kashier-Whmcs-Plugin/main/steps/kashier-logo.png)\n![](https://raw.githubusercontent.co...
TSiu88/count-up-to
235,627,289
6675bd8994cc453690b9c5b361b3337b9aa0487d
{ "branch": "master", "commit_count": 4, "repo_created_at": "2020-01-22T17:31:22.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "716c8c4e6fc3f143338458737b0e42cf01c034ce", "content": "$(document).ready(function(){\n $(\"#form1\").submit(function(event){\n var countBy = parseInt($(\"#countBy\").val());\n var countTo = parseInt($(\"#countTo\").val());\n var countingArray = [];\n\n console.log(countBy);\n ...
jknphy/ay_generator
134,277,530
4920f99b7333ca083995045970f4c21423cc5823
{ "branch": "master", "commit_count": 3, "repo_created_at": "2018-05-21T14:04:50.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
3
[ { "content_id": "66b6a756893fd5fdf3a8410c583a97cc1ed3becb", "content": "# ay_generator\nPOC AutoYaST profile generator\n", "size_bytes": 46, "file_path": "README.md", "file_timestamp": 1526971869, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected...
lbwd/happy-squid-team
588,104,724
4b9d323a15cd5b9b1330d9f72c7e67ec7c4225ec
{ "branch": "main", "commit_count": 34, "repo_created_at": "2023-01-12T10:37:47.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
3
[ { "content_id": "3081fe830ebcbbb8b70fee570167efa2db928df1", "content": "/*\n HST777 x <NAME>\n https://linktr.ee/lucaunliked\n*/\nbody {\n margin: 0;\n font-size: 15px;\n font-family: 'Open Sans', sans-serif;\n color: #212529;\n}\n\nb,\n.bold {\n font-weight: bold;\n}\n\nheader {\n height: 50px;\n ...
skoolkid/jetsetwilly
22,211,286
ef4516c328255fbc00aba468753feede0482521f
{ "branch": "master", "commit_count": 514, "repo_created_at": "2014-07-24T12:01:06.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 17, "forks": 4, "issues": 1, "pull_requests": 0 }
13
[ { "content_id": "8609b7a5dc6a9b6e8a62194ee226d4b81389db41", "content": "#!/usr/bin/env bash\n\nif (($# > 0)); then\n cat >&2 << EOM\nUsage: $(basename $0)\n\nBuild a skool file using the existing contents of jsw.skool and the snippets\nproduced by jsw2skool.py.\nEOM\n exit 1\nfi\n\nif [[ -z $JETSETWILLY_H...
Shahzaib52/PocketNecromancer_Demo
933,783,476
8e42f7a7e4c9fa9999f108ed6d5913d713a431e3
{ "branch": "main", "commit_count": 1, "repo_created_at": "2025-02-16T17:22:03.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "b4fa0d1937e422c7d5084118b91269a2e07936f7", "content": "{\"importBase\":\"import\",\"nativeBase\":\"native\",\"name\":\"main\",\"deps\":[\"internal\"],\"uuids\":[\"01aeb2a8b\",\"01fa4ce07\",\"05e4629c1\",\"083c62cc5\",\"baIUdvKGZPgZxNbjWTFuRI\",\"08PpcR5o9IDJV7GSNDT5Ht\",\"08qQEgWStNE4ORjSLf...
AntonP17/Geometry-project
957,158,866
2be96b9ca45ccefa0a2f55508194e5f462031a08
{ "branch": "main", "commit_count": 8, "repo_created_at": "2025-03-29T17:36:06.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "99709007971dc126ade9e4fc1cc078fdef9fe4f4", "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n <modelVers...
TheOnlyStikmata/Test
56,434,199
0656aaeeffff42ffdff0cb33ab06634ad7c867c8
{ "branch": "master", "commit_count": 3, "repo_created_at": "2016-04-17T12:02:41.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "2659d3cc56f752f80eb7b59cd0cd6a8003ffb31f", "content": "# Test\nlaber laber\nnun steht hier mehr\n", "size_bytes": 39, "file_path": "README.md", "file_timestamp": 1460894747, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected_licen...
abhinavsoma1213/hello-world
569,557,130
e048fbd7c0b8ba339f77c5094efb456c78fbdb43
{ "branch": "main", "commit_count": 3, "repo_created_at": "2022-11-23T05:03:44.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "668e654982aac0fc8a51e57df3bf748a6a2bdfc3", "content": "# hello-world\nThis is a repository that I created for my unix class for the week 13 lab 3 assessment. \n\nIn the readme-edits branch which copied the README.md contents, the edit that I am adding to this file is that I am a college stu...
SkalskiP/intro-to-akka
172,389,754
2f338ad0e676556136bbe99bb28a44f164d2830d
{ "branch": "master", "commit_count": 21, "repo_created_at": "2019-02-24T21:00:17.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "23283b4d4c486a3268472b1879eda6acf37020e4", "content": "package part5infra\n\nimport akka.actor.{Actor, ActorLogging, ActorSystem, Cancellable, Props, Timers}\n\nimport scala.concurrent.duration._\n\nobject TimersSchedulers extends App {\n\n class SimpleActor extends Actor with ActorLogging...
ThryB64/ThryB64
462,712,668
6c6626214ef0f03cdb1f090d9f52f0700ab928c7
{ "branch": "main", "commit_count": 2, "repo_created_at": "2022-02-23T11:49:36.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "2ea22fabc366336e342ac11b4778e7b74dc42978", "content": "*{\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n overflow-x: hidden;\n}\n\n.body{\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n \n}\n.logo img{\n margin-left: 10%;\n max-width: 10%;\n t...
flalix/MTDp
999,124,200
bffafd8e162de59aafd0864b9d1ab5ed7beaae04
{ "branch": "main", "commit_count": 2, "repo_created_at": "2025-06-09T19:20:29.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
15
[ { "content_id": "5b6bd4663cee668d86be458bc6f1807ce1011e2a", "content": "MPD project steps\n+++++++++++++++++++++\n\n\nDone\n============\n - Published in GitHub: https://arxiv.org/abs/2505.01259\n - Submitted to BMC Bioinformatics\n\n\nNext Steps\n==========\n\n- Finish the Best Cutoff Algorithm (BCA)\n- ...
gauravjumbo/darkweb
559,535,370
62114dd8a3404b6b37706e0a67f0fe91d69214ca
{ "branch": "main", "commit_count": 1, "repo_created_at": "2022-10-30T12:27:50.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 1, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "471632749588b854a6fc77fac019889f30b0d138", "content": "## How to install ?\n\n~~ cd darkweb\n\n~~ pip3 install -r requirements.txt\n\n~~ chmod +x build.sh\n\n~~ ./build.sh\n\n\n\n## Usage\n\n~~ python3 darkweb.py\n\nDarkWeb v3.0 usage:\n\n` -s --start Start DarkWeb`\n\n` -r ...
JackAcord/Project-1
106,313,273
5097f16ce3155d9761947d6fa354726bc2d5314d
{ "branch": "master", "commit_count": 8, "repo_created_at": "2017-10-09T17:23:03.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "913968c2544094d1d589df06c91eb791fda322ea", "content": "# Project-1\nCreating an online quiz in html and javascript\n", "size_bytes": 59, "file_path": "README.md", "file_timestamp": 1507642145, "language": "Markdown", "is_vendor": false, "license_type": "no_license", ...
Preethamrrao/Sampleuploading
142,319,215
3e1b664a9b01447913994360541d9ccb45516da5
{ "branch": "master", "commit_count": 1, "repo_created_at": "2018-07-25T15:28:09.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "50c064711b085fa458ac2c216e8fb4eb96f9dfbd", "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\r\n <modelVersion>4.0.0<...
Guluz4deh/GitBash-Task-1
460,145,514
7e406365701b1eea828418677307e1d5618f2532
{ "branch": "main", "commit_count": 11, "repo_created_at": "2022-02-16T19:19:17.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
19
[ { "content_id": "77b8565c3f67c2cef3c6a97a4fe29002d4d4ef86", "content": "using _28_03_2022_ConsoleApp.Helpers;\r\nusing ConsoleApp1_04_22.Exceptions;\r\nusing System;\r\nnamespace ConsoleApp1_04_22.Models\r\n{\r\n class Group\r\n {\r\n private string _groupno;\r\n\r\n private static Stud...
Jexilog/E-Commerce_Website
1,007,230,216
681f423840c5832b8b114e0d5dffaa32a18de9f6
{ "branch": "WebImprove", "commit_count": 23, "repo_created_at": "2025-06-23T16:58:42.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
77
[ { "content_id": "848d782536aa97f9fcbb263a18b13621ae9eade1", "content": "<?php\r\n// filepath: c:\\xampp\\htdocs\\System\\SoundStage\\src\\components\\admin\\delete_product.php\r\n\r\n$conn = new mysqli(\"localhost\", \"root\", \"\", \"db_system\");\r\n\r\nif ($conn->connect_error) {\r\n die(json_encode([...
sucelyb/ggpruebas
368,225,915
c90f26e7a73e64b52fb109d591f6205238c5bad7
{ "branch": "main", "commit_count": 1, "repo_created_at": "2021-05-17T14:59:46.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "ecddacd9608d3d8ea628b8b9581049cb8aff23eb", "content": "# ggpruebas", "size_bytes": 11, "file_path": "README.md", "file_timestamp": 1621263587, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected_licenses": [] } ]
Fededrk/portafolio
618,209,346
3a06da2ea4bf610c74f08d71ad2acda7fb594f98
{ "branch": "master", "commit_count": 5, "repo_created_at": "2023-03-24T01:19:07.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
3
[ { "content_id": "4db903f4b16b8d59219e98122a315c4a9e76316e", "content": "import { RouterModule, Routes } from '@angular/router';\nimport { Component } from '@angular/core';\n\nimport {\n LoginComponent,\n PortafolioComponent,\n} from './components/index.paginas';\n\nconst app_routes: Routes = [\n { path: ...
shubGupta10/React-Projects
748,194,724
f21ca5e76cfe47fec89522bdb7ab42bf4f753f24
{ "branch": "main", "commit_count": 35, "repo_created_at": "2024-01-25T13:27:28.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
14
[ { "content_id": "87772558c80e29b70c093a4d4e010ebea38874e0", "content": "import { useState, useCallback, useEffect, useRef } from 'react'\n\n\nfunction App() {\n const [length, setLength] = useState(8);\n const [numberAllowed, setNumberAllowed] = useState(false);\n const [charAllowed, setCharAllowed] = us...
ahmed0219/stable_diffusion
924,315,253
e98b9a7cc35f48cbec6c32e56f966cd5d0c59a3d
{ "branch": "main", "commit_count": 1, "repo_created_at": "2025-01-29T19:33:16.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "cd35f5e44ab08aa87210ad62183152450077def9", "content": "{\"cells\": [{\"cell_type\": \"markdown\", \"metadata\": {\"id\": \"K0dyhr7k_7DS\"}, \"source\": [\"<center><a href=\\\"https://www.nvidia.com/en-us/training/\\\"><img src=\\\"https://dli-lms.s3.amazonaws.com/assets/general/DLI_Header_W...
mbl66/dentalagecalculation
423,530,246
7e4773d7cc830cb1ad0c2cfc823545fed88ae4e8
{ "branch": "main", "commit_count": 7, "repo_created_at": "2021-11-01T16:07:53.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "3d2e5baf1d18b1823f50d5dc2d0f07f5f5692e35", "content": "---\ntitle: \"DENTAL AGE CODE\"\noutput: word_document\n---\n\n\nPart 1 of Code: Turn Data File of Samples into Datafile of Means and SDs\n```{r}\n#setup\n\n#call in stage data\nstage_data<-read.csv(\"MFH NUMBER- C-G-B-ALL TEETH.csv\") ...
ogztkgz/BankaOtomasyonu
758,698,272
735db97d4431a7afe294e6891f036ee3e68fc94b
{ "branch": "main", "commit_count": 5, "repo_created_at": "2024-02-16T21:42:42.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
8
[ { "content_id": "301e772ca9c9eb81e43a7fd64f4104ec18d1d647", "content": "package bankaotomasyonu;\n\nimport java.time.LocalDate;\nimport java.time.Period;\n\npublic class CurrentAccount extends Account\n{\n\n\tpublic CurrentAccount(int id) {\n\t\t\n\t\tsuper.setAccountId(id);\n\t\tsuper.type = AccountType.C...
AmitBarlev/GSS
907,503,372
357d6b49e4a2f5b40de8e6e8ee02100dc480f642
{ "branch": "main", "commit_count": 20, "repo_created_at": "2024-12-23T18:22:02.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
42
[ { "content_id": "8e75eeebe024c1ece73225a3341d40f1766a7f58", "content": "package com.abl.gss.model;\n\nimport lombok.Generated;\nimport org.springframework.data.annotation.Id;\nimport org.springframework.data.mongodb.core.mapping.Document;\n\n@Generated\n\n@Document(collection = StockInfo.COLLECTION)\npublic...
Bhairo/github-slideshow
329,312,004
496fb1386e044be86ecf785cb7f6188e9b71ec5e
{ "branch": "main", "commit_count": 37, "repo_created_at": "2021-01-13T13:10:02.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "7f9b46c33312db5564eb485b4a382393ac8e0537", "content": "3.\t---\n4.\t\n5.\tlayout: slide\n6.\t\n7.\ttitle: \"Welcome to our Bhairo slide!\"\n8.\t\n9.\t---\n10.\t\n11.\tYour text\n12.\t\nUse the left arrow to go back!\n", "size_bytes": 139, "file_path": "_posts/0000-01-02-Bhairo.md", ...
charlotte-hirschberg/ChordCommand
95,686,873
e99ceac067c39d2d2b7a380a8a7292da86512b1a
{ "branch": "master", "commit_count": 119, "repo_created_at": "2017-06-28T15:54:58.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 0, "issues": 1, "pull_requests": 0 }
24
[ { "content_id": "41377284f038707bb865dd2c728c55abbd6a94d9", "content": "package chordcommand.model;\r\n\r\nimport java.util.ArrayList;\r\n\r\n/** \r\n * Description: The parent class to Chord and Scale. This defines the\r\n * characteristics that those musical objects share, including pitches,\r\n * acciden...
Anjara91/proyectoJavascript
882,741,539
3a9f3eb16848879f4b7d71fc89f5e1b55d82cf94
{ "branch": "main", "commit_count": 3, "repo_created_at": "2024-11-03T16:33:44.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "be5682e56915c0cee2e9df12014c2aadafd45536", "content": "body {\r\n font-family: Arial, sans-serif;\r\n}\r\n\r\nheader {\r\n background-color: green;\r\n color: white;\r\n display: flex;\r\n align-items: center;\r\n font-size: 14px;\r\n}\r\n\r\n#contenedor {\r\n display: ...
kingli6/Tic-tac-toe-JS
704,239,274
42908a4c87092cd21fc94814352691857a987954
{ "branch": "main", "commit_count": 27, "repo_created_at": "2023-10-12T20:50:20.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
3
[ { "content_id": "75d5db16021d1f0e63921d5df93e8362b781782e", "content": "# Tic-tac-toe-JS\n\n### https://kingli6.github.io/Tic-tac-toe-JS/\n\n<!-- https://www.notion.so/tic-tac-toe-9a75a34099aa4b9ba5cc173df0313836\n\nJS\nhttps://www.notion.so/Javascript-basics-27397ea054fa4b90a9b16a564deaad54\nhttps://github...
JavaNathan/Maze
725,622,243
e8191c2c54429945e594f1f55514b79e1391f586
{ "branch": "master", "commit_count": 2, "repo_created_at": "2023-11-30T14:31:21.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "d106d3b11a29b4cb8c52c5a2daf4965bd0f4f68b", "content": "public class Maze{\n\n public void message(){\n System.out.println(\"\\nGreat Job, keep going.\");\n }\n\n public void maze1(){\n System.out.println(\"\\n|———————————————————————————————|\");\n System.out.p...
gerasim13/docker-nodejs
42,482,153
426a9935a00568038a38e2394313cc77d0eac978
{ "branch": "master", "commit_count": 4, "repo_created_at": "2015-09-14T23:08:21.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 1 }
1
[ { "content_id": "2c7bac2daa0f3a66b749c40e6fa214453f1b56a2", "content": "FROM gliderlabs/alpine\nMAINTAINER <NAME> <<EMAIL>>\nRUN apk --update add curl nodejs nodejs-dev build-base\nRUN npm install -g gulp grunt-cli\nRUN apk del build-base nodejs-dev && \\\n rm -rf /root/.cache/pip/* && \\\n rm -rf /va...
jamiehackett/homl-ch2
326,300,042
360eec38d54d8e0444e546fd323a9023fae4ae77
{ "branch": "master", "commit_count": 6, "repo_created_at": "2021-01-03T00:49:54.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "f00367ee5eaea45aedb3f31b26f0e84499b9a84c", "content": "{\"cells\": [{\"cell_type\": \"code\", \"execution_count\": null, \"metadata\": {}, \"outputs\": [], \"source\": [\"import pandas as pd\"]}, {\"cell_type\": \"code\", \"execution_count\": null, \"metadata\": {}, \"outputs\": [], \"sourc...
foxriver76/ioBroker.xbox
138,771,440
540c5bbc0b1a42c568e1a72219d36dbc67df9234
{ "branch": "master", "commit_count": 247, "repo_created_at": "2018-06-26T17:32:30.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 12, "forks": 4, "issues": 8, "pull_requests": 12 }
19
[ { "content_id": "282b5ace9adbf816f5279c65c45fc1ec93c59080", "content": "![Logo](media/xbox.png)\n\n# Xbox Adapter\n\nDer Xbox Adapter ermöglicht die Einbindung einer Xbox One bzw. Xbox One X\nSpielekonsole in das ioBroker System.\n\n## Überblick\n\n### Xbox One Spielekonsole\nDie Xbox One ist eine von Micro...
Socrii/arrayprob.
510,770,933
fcce7e6377e534a8dd08d5b3d9a1ac772ca68bb1
{ "branch": "master", "commit_count": 5, "repo_created_at": "2022-07-05T14:27:58.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "e62f0903f015bee9dbd41c3b0836347a5048aac7", "content": "#include <iostream>\nusing namespace std;\nint main(){\n cout<<\"Enter the size of the array\"<<endl;\n int n;\n cin>>n;\n int a[n];\n if(n%2==0){\n for(int i=0;i<n;i++){\n int k=1;\n int t=...
dawidborycki/terraform-vnet
497,260,171
b511d27e656d60ac3f9a9129aeb6b3038119b100
{ "branch": "main", "commit_count": 1, "repo_created_at": "2022-05-28T08:33:45.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "3531eb12670b101a4b0663c5c80aec39c3d616ff", "content": "terraform {\n required_providers {\n azurerm = {\n source = \"hashicorp/azurerm\"\n version = \"~> 3.0.2\"\n }\n }\n\n required_version = \">= 1.1.0\"\n}\n\nprovider \"azurerm\" {\n features {}\n}\n\nresource \"azur...
HelloDanni/3_Project_Boost
139,042,891
1c430e24065ae464e1c6e7cc17a596aaf41365a2
{ "branch": "master", "commit_count": 4, "repo_created_at": "2018-06-28T16:23:33.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "7b5b7dd7fcba285d1b4a1cc45b164f0cab633bf4", "content": "using System;\nusing System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\n\npublic class Rocket : MonoBehaviour {\n\n\t// Use this for initialization\n\tvoid Start () {\n\t\t\n\t}\n\t\n\t// Update is called once ...
Mrshenyan/UnityShaderTrain
296,482,041
04589a6fe2021a045687c0293a81a87d0decd94d
{ "branch": "master", "commit_count": 4, "repo_created_at": "2020-09-18T01:29:13.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
9
[ { "content_id": "be22708433ff3fc84ce7659ea9819f8b6a45d591", "content": "Shader \"Unlit/five\"\n{\n\tSubShader\n\t{\n\n\t\tPass\n\t\t{\n\t\t\tCGPROGRAM\n\t\t\t#pragma vertex vert\n\t\t\t#pragma fragment frag\n\t\t\t\n\t\t\t#include \"UnityCG.cginc\"\n\t\t\t//粒子数量\n\t\t\t#define NUM_PARTICLES 200.0\n\t\t\t//...
phu0nm2/FE67_Angular
408,014,546
06d6b5289cc8af99d26ea38c6f115d81631942a5
{ "branch": "master", "commit_count": 1, "repo_created_at": "2021-09-19T02:38:05.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
13
[ { "content_id": "6748040fa4162b703fc620bf55fcb5ddcff82691", "content": "import { TestBed } from '@angular/core/testing';\n\nimport { MeDataService } from './me-data.service';\n\ndescribe('MeDataService', () => {\n let service: MeDataService;\n\n beforeEach(() => {\n TestBed.configureTestingModule({});\...
CrazyMrYan/vuetwo-side-bar
285,528,755
7fc7cc7d3ee72883047796d2d3e35f983fb9d1e6
{ "branch": "master", "commit_count": 10, "repo_created_at": "2020-08-06T09:25:54.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 3, "forks": 0, "issues": 0, "pull_requests": 0 }
6
[ { "content_id": "dc49259eb42acf9dd15cc0d16c936e5bbb8a2eab", "content": "{\n \"name\": \"vuetwo-side-bar\",\n \"version\": \"1.1.8\",\n \"description\": \"this is vue module\",\n \"main\": \"dist/sidebar.min.js\",\n \"scripts\": {\n \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n ...
almog122/Forest-of-hell
326,713,471
5b4f86e44f4a92ee24268f689cda8973af7bee5d
{ "branch": "main", "commit_count": 23, "repo_created_at": "2021-01-04T14:42:04.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
51
[ { "content_id": "a067bf3e28ff6e0e1b006bae238554243e39947d", "content": "using System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\nusing UnityEngine.AI;\n\n\n\npublic class Enemy_combat : MonoBehaviour\n{\n\tPlayer_manager playerManager;\n\t\n\tEnemy_stats myStats;\n\n\tpublic float ...
Gasan33/Food_App_React.js
865,513,050
e5c360e37af27d071dbf7727d9a044e6f10ff016
{ "branch": "main", "commit_count": 14, "repo_created_at": "2024-09-30T16:49:39.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "1a7a4c1f2f9cc653a24f7841de1eff6d2e47d4f5", "content": "import IngredientsItem from \"./IngredientsItem\";\n\nexport default function IngredientsList({ food, isLoading }) {\n return (\n <div>\n {isLoading ? (<p>Loading...</p>) :\n food.extendedIngredients....
reza-alikhani/Assignment-2-part-2
765,382,830
84c7a18eda3e7722895362d1292e2ec3a85d1e60
{ "branch": "main", "commit_count": 1, "repo_created_at": "2024-02-29T20:12:48.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "4599a98fa38d81df8ff4c5147b8278754eaab035", "content": "\nimport datetime\nS = int(input(\"Enter second: \"))\n\nresult = str(datetime.timedelta(seconds = S))\n\nprint(result)\n", "size_bytes": 112, "file_path": "Assignment 2_5.py", "file_timestamp": 1709237636, "language": "...
somedeveloperhappy/Wirin
451,888,890
47e0bff3ca3bc9d9548e5c716382cf9ed34043d6
{ "branch": "master", "commit_count": 46, "repo_created_at": "2022-01-25T13:30:32.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
213
[ { "content_id": "ef492989a8b3e4a01328039448c4bfd1147bca48", "content": "using Gameplay;\nusing Gameplay.PressSystem;\nusing SimpleScripts;\nusing System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\n\nnamespace FlatTheme.Player\n{\n public class PlayerShootSound : MonoBehaviour, Ga...
inertiapixel/nodejs-auth
1,008,909,335
7913526492f289d0bd1212bb1c2f29284a4a4aec
{ "branch": "main", "commit_count": 25, "repo_created_at": "2025-06-26T09:25:57.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 0, "issues": 0, "pull_requests": 0 }
18
[ { "content_id": "7ec464bdef543c85fc289931b024565abd38e993", "content": "// Configuration for a single social provider\nexport interface SocialProviderConfig {\n clientId: string;\n clientSecret: string;\n redirectUri: string;\n}\n\n// Overall configuration object for social providers\nexport interface So...
zaabu/Smartcontract-lottery
474,580,220
f9f0ecc6c2f703237cb24114e8adb0dc4fd66c42
{ "branch": "master", "commit_count": 2, "repo_created_at": "2022-03-27T08:38:21.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "afc814a82650c60a08f2ca7fcd6bd7b90837ab89", "content": "#0.019\n#wei = 190000000000000000\nfrom brownie import Lottery, accounts, config, network, exceptions\nfrom scripts.deploy_lottery import deploy_lottery\nfrom web3 import Web3\nimport pytest\n\nfrom scripts.helpful_scripts import LOCAL_...
hpjaj/liquid
25,799,689
ca49715400a9c383e051f78e35bfbfd562d4861e
{ "branch": "master", "commit_count": 4, "repo_created_at": "2014-10-27T02:20:27.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
7
[ { "content_id": "080fc8bf26153da0094718c90a3704c39bdeea1b", "content": "#mobileOnly {\n display: none;\n}\n\n#eventsStrip {\n position: relative;\n width: 100%;\n height: 580px;\n background-color: rgba(0, 0, 0, .8);\n top: 75px;\n vertical-align: middle;\n}\n\n#centerTheStrip {\n width: 1000px;\n ...
Zoibderg/lib_study
454,536,160
902540a2357354b78588428ad4f1317c08258c18
{ "branch": "master", "commit_count": 1, "repo_created_at": "2022-02-01T20:14:11.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "5043511cf512e52f77fe8f2c37ac083b94850d0f", "content": "class Node:\n def __init__(self, data=None, next=None, prev=None):\n self.prev = prev\n self.data = data\n self.next = next\n \n\nclass LinkedList:\n def __init__(self):\n self.head = None\n ...
deruta1992/kvitancoinvoice-selfservice-sample
853,779,741
3474382836f04c2c2a0b2b8c4f0cbfd16f1ff1e7
{ "branch": "main", "commit_count": 4, "repo_created_at": "2024-09-07T14:13:35.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "401470fec90496a6490c8a2d17d750d812416dc9", "content": "# このリポジトリの目的\nお客様が自ら領収書の発行申請ができるホームページのソースコードです。\nkvitanco Invoice ( [https://invoice.kvitanco.biz/](https://invoice.kvitanco.biz/) ) をご契約いただき、\n本リポジトリのソースコード(HTMLファイル)を指定のホームページに配置いただくだけで\n領収書をお客様が自ら発行申請できるようになります。\nコインランドリーなどで、お客様が自ら領...
wlis13/play_music_manager
771,230,802
9cce90f9fd5aedd903dde34793e7e7cbd1765a4a
{ "branch": "master", "commit_count": 20, "repo_created_at": "2024-03-12T23:21:16.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "fab873b3a80d31ea8d2bd0347840152bfbad8cfe", "content": ".container_manager_update li {\n font-size: 15pt;\n background-color: rgb(77, 77, 168);\n color: white;\n font-weight: 600;\n padding: 10px 20px;\n border-radius: 5px;\n width: 80%;\n margin: 20px 0px;\n cursor: pointer;\n}", ...
YouunFruit/Program-Portfolio
1,006,272,589
1e7cf2da403c163286f930ad4c690ce02bf36718
{ "branch": "main", "commit_count": 3, "repo_created_at": "2025-06-21T22:04:57.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "907df70e4cc38541fa52bc949f7a0c5baec3c5d0", "content": "class Solution {\npublic:\n vector<int> twoSum(vector<int>& nums, int target) {\n for(int x = 0; x < nums.size();x++){\n for(int y = 0; y < nums.size();y++){\n if(x == y) continue;\n if...
patternexon/hello
60,014,844
04fe7161f2a9998f8f15f7cb954054d6bfa6b00b
{ "branch": "master", "commit_count": 15, "repo_created_at": "2016-05-30T14:07:27.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "3ae813b2e2010674c33921fde541c2a00c2efb6a", "content": "import feedparser\nfrom flask import Flask\nfrom flask import render_template\n\napp = Flask(__name__)\n\nRSS_FEEDS = {\n 'hn' : 'https://news.ycombinator.com/rss',\n 'bbc' : 'http://feeds.bbci.co.uk/news/rss.xml'\n ...
precisely/seqvarnomjs
123,744,391
37ca3139e4f9799dd1e68e4e0c4990fb55e5e628
{ "branch": "master", "commit_count": 81, "repo_created_at": "2018-03-04T00:50:50.000Z", "is_fork": false, "is_org_owned": true, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
15
[ { "content_id": "7b1640292d1731656fcb0e31c506afc61ab95d55", "content": "\n// We use Ullman subgraph isomorphism for detecting matches; this is a slight overkill,\n// since we won't have cycles, but provides a guarantee of detecting every possible type\n// of pattern reliably.\n// We represent variants as la...
jackDelivery/register_Backend
724,915,485
21b07706f21ab4a12007a6f44a1551b6bc4ca48c
{ "branch": "main", "commit_count": 2, "repo_created_at": "2023-11-29T03:37:33.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
9
[ { "content_id": "9dc98789771d93d968a0d57157ddb1634ad85d3a", "content": "const asyncHandler = require(\"express-async-handler\");\nconst { PersonalModel } = require(\"../models/PersonalModel\");\nconst CloudinaryCloud = require(\"./utils/CloudinaryCloud\")\n\n// register personal\n\nconst createPersonal = as...
NegativeCPU/ClaimRealEstate
514,452,192
7ad087cdb5f77e7e448b7e6ee46d2eb518de1f06
{ "branch": "main", "commit_count": 2, "repo_created_at": "2022-07-16T02:02:08.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
18
[ { "content_id": "2f9122512a99f7bc5326fb713660335dedfdf4ff", "content": "<%@ taglib prefix=\"form\" uri=\"http://www.springframework.org/tags/form\"%>\n<%@ taglib prefix=\"c\" uri=\"http://java.sun.com/jsp/jstl/core\"%>\n<%@ page language=\"java\" contentType=\"text/html; charset=UTF-8\"\n\tpageEncoding=\"UT...
klimapartner/style-guide
92,153,608
5d4a2ede9ef97771a5f8b182897dedc1887e4e65
{ "branch": "master", "commit_count": 98, "repo_created_at": "2017-05-23T09:19:04.000Z", "is_fork": false, "is_org_owned": true, "forked_from": null, "stars": 0, "forks": 0, "issues": 7, "pull_requests": 0 }
8
[ { "content_id": "ccb516162aa2ae04a7880b7623675fd604c79c4b", "content": "## Render SVG to PNG\n\n`inkscape --export-png=output.png -w 1000 input.svg`\n", "size_bytes": 75, "file_path": "cheatsheet.md", "file_timestamp": 1500527547, "language": "Markdown", "is_vendor": false, "license_...
JosueLopezxdProgram/Lunes-05082022
533,096,170
1ab3bfb9e7dc923b20e0c2791b35103464c2052c
{ "branch": "main", "commit_count": 1, "repo_created_at": "2022-09-05T23:53:35.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "507fdda8fa1c673be13a729587b7410715d84d01", "content": "package estructurasrepetitivas;\r\nimport java.util.Scanner;\r\n\r\npublic class EstructuraWhile {\r\n\tpublic static void main(String[] args) {\r\n\t\t\r\n\t\t//Estructura de prueba\r\n\t\t//estructursWhile\r\n\t\tScanner lector = new ...
Muhammaddiyor007/n38-lesson5-js
730,000,775
5dd82addba155e8573428b3f55fce53207ffec2b
{ "branch": "main", "commit_count": 3, "repo_created_at": "2023-12-11T01:21:39.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "c6372752f6e165d0000ebcebb137d508b1e2042a", "content": "// function 1\n\n// function power(a, n) {\n// let result = 1;\n\n// for (let i = 0; i < n; i++) {\n// result *= a;\n// }\n\n// return result;\n// }\n\n// // Test qilish\n// let base = 2; // O'zlashtirilayotgan ...
hoopercesar/Time-Series-II-Machine-Learning-Regression
471,559,272
07688e62e9d1824d9a8740ded0118f5d8a7e8631
{ "branch": "main", "commit_count": 2, "repo_created_at": "2022-03-19T01:06:30.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "81c5b1837af9a1281ae9829133eb0378d79739e8", "content": "{\"cells\": [{\"cell_type\": \"markdown\", \"id\": \"a265c27b\", \"metadata\": {}, \"source\": [\"Usamos o modelo de regressão de Machine learning (random forest regressor) para fazer previsões em uma serie de tempo.\\n\"]}, {\"cell_typ...
VictorBuscsei/scratch_project_hw
342,916,003
aebc916608aa7c2e8b8e404ca97b4bf5805850c5
{ "branch": "main", "commit_count": 6, "repo_created_at": "2021-02-27T17:28:18.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "f2b4af8d22eddda409f8a17af5061a8c8ccd61d7", "content": "# A cica és a sündisznó kalandozásai\n> Scratch Házi Feladat\n\n## Table of contents\n* [General info](#general-info)\n* [Screenshots](#screenshots)\n* [Written in](#written-in)\n* [Setup](#setup)\n* [Status](#status)\n* [Contact](#cont...
DannyMtwenty/Foodie
453,109,645
ee878ca2d26b928f2a252a6a659ce80fe6ada43c
{ "branch": "master", "commit_count": 1, "repo_created_at": "2022-01-28T15:02:37.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "e039456418e86e0b9a9265900fcb10cd7270148d", "content": "package com.example.foodie\n\nimport android.graphics.Paint\nimport androidx.appcompat.app.AppCompatActivity\nimport android.os.Bundle\nimport androidx.activity.compose.setContent\nimport androidx.compose.foundation.Image\nimport androi...
JiangLinsheng/Form-Filling-System
285,826,079
06ff0a0883fa89f9a907bb17014507bc19e445a7
{ "branch": "master", "commit_count": 18, "repo_created_at": "2020-08-07T12:40:15.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 2, "forks": 2, "issues": 0, "pull_requests": 0 }
6
[ { "content_id": "68ef6e622b7566e83268be418b1f264b6c72c452", "content": "<template>\n <div>\n <el-row type=\"flex\" align=\"middle\" class=\"row-1\">\n <el-col>\n <label class=\"label-1\">表单管理</label>\n </el-col>\n </el-row>\n <div class=\"div-1\">\n <el-row>\n <el-col ...
Niko4u5/GameOfLife
286,986,763
4faab05b1f6bf4b290d65d9a3b2c538c20d4d483
{ "branch": "master", "commit_count": 10, "repo_created_at": "2020-08-12T10:40:13.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "66e4e325006c6950b3a3e25e91bd9bbd52700578", "content": "public class Main {\n public static void main(String[] args) throws InterruptedException {\n Viewer viewer = new Viewer();\n viewer.window();\n }\n}\n", "size_bytes": 164, "file_path": "src/Main.java", "f...
harmlecommtil1971/woff5gu
697,953,835
74b75fb0f0ad5d7ea7ae1f4ce3fefc236eec0b4d
{ "branch": "main", "commit_count": 1, "repo_created_at": "2023-09-28T20:23:17.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "f80bbcd1d33bb451751a1ea5b556b49af6e1c57c", "content": "# woff5gu", "size_bytes": 9, "file_path": "README.md", "file_timestamp": 1695932598, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected_licenses": [] } ]
LeviSanches/LeviSanches
557,587,154
c5ff28cf43f744d7b546feaa6f4bf8007f91c432
{ "branch": "main", "commit_count": 61, "repo_created_at": "2022-10-26T00:17:16.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "f1a4a9eb4cfd1b897ce08f57512b6e5ef42a8818", "content": "## Desenvolvedor Java\n## 📊 GitHub status:\n<!--![](https://github-readme-stats.vercel.app/api?username=LeviSanches&theme=maroongold&hide_border=false&include_all_commits=true&count_private=true)<br/>-->\n![](https://github-readme-stre...
felixp4/PARSING_SYMFONY
91,662,682
4709f34146e8060f7477da975ef882ab2febbca4
{ "branch": "master", "commit_count": 18, "repo_created_at": "2017-05-18T07:30:14.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
9
[ { "content_id": "b665b23676e302c34e850ef60d1ab408de539b4f", "content": "PARSING_SYMFONY\n===============\n\nA Symfony project created on May 18, 2017, 9:50 am.\n", "size_bytes": 85, "file_path": "README.md", "file_timestamp": 1497602940, "language": "Markdown", "is_vendor": false, "l...
Matiasperroni/Primer-Practica-Integradora
660,370,531
38565758faaca0fd3bbe39e2fe73b592b2c972dc
{ "branch": "main", "commit_count": 6, "repo_created_at": "2023-06-29T21:23:54.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
39
[ { "content_id": "769853f425307bdd7b5ceb47c456abf622e052a5", "content": "<div style=\"display: flex; flex-direction: column; justify-content:center; align-items: center\">\n<h1>Live chat with websockets and MongoDB</h1>\n <input type=\"text\" id=\"chatBox\">\n <p id=\"messageLogs\"></p>\n</div>\n<scrip...
awirawan/Momofin
365,071,908
75243825b9e7fe6f47b4239eec42e90e0cd6f93f
{ "branch": "main", "commit_count": 3, "repo_created_at": "2021-05-07T00:34:16.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "e9eb6710bfe71067fbe51f884fd6d3d8f7dba72b", "content": "- 👋 Hi, I’m @awirawan\n- 👀 I’m interested in learning and creating web development projects or any other to hone my programming skills. \n- 🌱 I’m currently trying to specialize in Python but I am always open to learn other languages ...
d0rb3n/lab4
762,562,233
13997f80d41f9c1172a6984010cfa70c391a4327
{ "branch": "main", "commit_count": 2, "repo_created_at": "2024-02-24T04:02:42.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
5
[ { "content_id": "512c327d5183a586c9826adcb93551612548c77c", "content": "#ex1\r\ndef square_generator(n):\r\n for i in range(1, n + 1):\r\n yield i ** 2\r\nn = int(input())\r\nsquares = square_generator(n)\r\n\r\nfor x in squares:\r\n print(x)\r\n\r\n#ex2\r\ndef even_nums(n):\r\n for i in ran...
20X41A0568/LocalFIle1
566,754,193
05bb4b262f646cc8555fa51c98cdabe4e4c56d3b
{ "branch": "main", "commit_count": 2, "repo_created_at": "2022-11-16T10:54:48.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "e07217b87bf8d97c59ee4982b57df278c6a0fdf2", "content": "global to local\n", "size_bytes": 16, "file_path": "README.md", "file_timestamp": 1668596149, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected_licenses": [] } ]
shrisant72/DXT-NUK3RZ-ID
424,550,843
262cfff41bcb9ac9f96ba6e3afbcaef14e2e2b38
{ "branch": "main", "commit_count": 8, "repo_created_at": "2021-11-04T10:14:24.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
2
[ { "content_id": "83fa6cf3b3a1e931ed5e77ff47642d3a63929c7b", "content": "# DXT-NUK3R\nDYNAMIC X TOWN OFFICIAL NUK3R TOOL.\nYOU CAN USE IT ON REPLIT \n[DXT LINK ](https://discord.gg/PUffaYEsKM)\nMADE BY SHRISANT !!\n\n", "size_bytes": 138, "file_path": "README.md", "file_timestamp": 1636021927, ...
mardycola/usctc_esp32_board
169,970,021
6b2e9c19f5a7cca1da189279c81a6ff628b407a3
{ "branch": "master", "commit_count": 1, "repo_created_at": "2019-02-10T11:17:14.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
1
[ { "content_id": "92ee1ef36c7bc5d687f235d241d445bd8053cf0d", "content": "# usctc_esp32_board\n", "size_bytes": 20, "file_path": "README.md", "file_timestamp": 1549797562, "language": "Markdown", "is_vendor": false, "license_type": "no_license", "detected_licenses": [] } ]
josejoelperez1506/AppContactos
63,880,301
93799e8e28ef4449809b1f7906c4b0cc98e278f0
{ "branch": "master", "commit_count": 2, "repo_created_at": "2016-07-21T15:20:02.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
7
[ { "content_id": "ce8937e4da7d69804ea8260cefe69121f69ca6cf", "content": "package org.joseperez.appcontactos;\n\nimport android.content.Intent;\nimport android.content.pm.ActivityInfo;\nimport android.support.v7.app.AppCompatActivity;\nimport android.os.Bundle;\nimport android.view.Menu;\nimport android.view....
Harutin1991/la-food-alergy
347,946,600
f0e1ce0d3799b0bb33037b708f968b69e76bd943
{ "branch": "master", "commit_count": 3, "repo_created_at": "2021-03-15T11:43:21.000Z", "is_fork": false, "is_org_owned": false, "forked_from": null, "stars": 0, "forks": 0, "issues": 0, "pull_requests": 0 }
4
[ { "content_id": "4eba9840b422065543866652068382b8d682b54b", "content": "<?php\r\n/**\r\n * The base configuration for WordPress\r\n *\r\n * The wp-config.php creation script uses this file during the\r\n * installation. You don't have to use the web site, you can\r\n * copy this file to \"wp-config.php\" an...