Dataset Viewer
Auto-converted to Parquet Duplicate
file_id
stringlengths
5
10
content
stringlengths
96
41.7k
repo
stringlengths
7
108
path
stringlengths
8
198
token_length
int64
28
8.19k
original_comment
stringlengths
5
5.74k
comment_type
stringclasses
2 values
detected_lang
stringclasses
1 value
prompt
stringlengths
47
41.6k
11193_1
package com.steen.controllers; import com.steen.models.*; import com.steen.velocity.VelocityTemplateEngine; import spark.ModelAndView; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import static com.steen.Main.p_layout; import static com.steen.Main.sfp; import static...
0912293/PythonMasterRace
src/main/java/com/steen/controllers/CartController.java
697
// "Neem aub. contact op met de sitebeheerder als dit vaak voor komt..";
line_comment
nl
package com.steen.controllers; import com.steen.models.*; import com.steen.velocity.VelocityTemplateEngine; import spark.ModelAndView; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import static com.steen.Main.p_layout; import static com.steen.Main.sfp; import static...
119882_4
import java.awt.*; import java.util.ArrayList; public class EventThingy{ private String eventName; private double sRecord; private ArrayList<Student> students; //arraylist met studenten die meedoen public EventThingy(String eventName){ this.eventName = eventName; this.students = new Ar...
0974201/code-bin
java/EventThingy.java
418
//lopot foor list n kwjkt of naam matchet me t studnet naam.
line_comment
nl
import java.awt.*; import java.util.ArrayList; public class EventThingy{ private String eventName; private double sRecord; private ArrayList<Student> students; //arraylist met studenten die meedoen public EventThingy(String eventName){ this.eventName = eventName; this.students = new Ar...
31907_10
package com.example.idek; import android.annotation.SuppressLint; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import androidx...
0974201/qr-ding
app/src/main/java/com/example/idek/qrReaderFragment.java
670
//verwerkt wat er uit de scanding is gekomen
line_comment
nl
package com.example.idek; import android.annotation.SuppressLint; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import androidx...
42150_11
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package rekenmachine; /** * * @author adeliae */ public class Telraam extends javax.swing.JFrame { //"" achter strings gezet om...
0974201/rekenmachine2
src/rekenmachine/Telraam.java
6,708
//zodat je niet telkens op de c knop hoeft te klikken om een nieuwe
line_comment
nl
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package rekenmachine; /** * * @author adeliae */ public class Telraam extends javax.swing.JFrame { //"" achter strings gezet om...
87789_6
package mongodbtest; import com.mongodb.BasicDBObject; import com.mongodb.DB; import com.mongodb.DBCollection; import com.mongodb.DBCursor; import com.mongodb.DBObject; import com.mongodb.MongoClient; import com.mongodb.util.JSON; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.Array...
0NightBot0/DevDatabase
assignment 2/MongoDB/src/mongodbtest/MongoDBTest.java
1,099
// creëren hiermee bsn nummers van 5 cijfers
line_comment
nl
package mongodbtest; import com.mongodb.BasicDBObject; import com.mongodb.DB; import com.mongodb.DBCollection; import com.mongodb.DBCursor; import com.mongodb.DBObject; import com.mongodb.MongoClient; import com.mongodb.util.JSON; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.Array...
158349_80
package com.spaceproject.math; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.math.Vector3; import java.math.BigDecimal; import java.util.Arrays; /** * Disclaimer: I am not a physicist. There may be errata but I will do my best. * Sources: * https://en.wikipedia...
0XDE57/SpaceProject
core/src/com/spaceproject/math/Physics.java
6,603
//5772K = 502nm = 597 THz = green light
line_comment
nl
package com.spaceproject.math; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.math.Vector3; import java.math.BigDecimal; import java.util.Arrays; /** * Disclaimer: I am not a physicist. There may be errata but I will do my best. * Sources: * https://en.wikipedia...
194699_31
/** * Mengen nichtnegativer ganzer Zahlen in kompakter * Speicherrepraesentation: ob eine Zahl in der Menge enthalten * ist, wird durch EIN BIT im Speicher erfasst! * * <br> * Beispiel: * <br> * <code> * <br>IntSet set = new IntSet(8); * <br>int a[] = { 1, 3, 4, 5 }; * <br>set.include( a ); * <br> * <br> ...
0dentitaet/gdp
gdp/IntSet.java
2,008
/** * IntSet Mengen-Iterator */
block_comment
nl
/** * Mengen nichtnegativer ganzer Zahlen in kompakter * Speicherrepraesentation: ob eine Zahl in der Menge enthalten * ist, wird durch EIN BIT im Speicher erfasst! * * <br> * Beispiel: * <br> * <code> * <br>IntSet set = new IntSet(8); * <br>int a[] = { 1, 3, 4, 5 }; * <br>set.include( a ); * <br> * <br> ...
169665_5
package gameapplication.model.chess.piece.pieces; import gameapplication.model.chess.Board; import gameapplication.model.chess.piece.Piece; import gameapplication.model.chess.piece.PieceColor; import gameapplication.model.chess.spot.Spot; import java.util.List; public class Pawn extends Piece { int numOfRowsFrom...
0xBienCuit/ChessGame
src/gameapplication/model/chess/piece/pieces/Pawn.java
1,930
//Bekijk als target column 1 naar rechts of 1 naar links van origineele spot is.
line_comment
nl
package gameapplication.model.chess.piece.pieces; import gameapplication.model.chess.Board; import gameapplication.model.chess.piece.Piece; import gameapplication.model.chess.piece.PieceColor; import gameapplication.model.chess.spot.Spot; import java.util.List; public class Pawn extends Piece { int numOfRowsFrom...
183866_81
/* -*-mode:java; c-basic-offset:2; -*- */ /* Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above...
0xRustlang/keepass2android
src/java/JavaFileStorage/app/src/main/java/com/jcraft/jsch/jzlib/Tree.java
7,044
// zero code length.
line_comment
nl
/* -*-mode:java; c-basic-offset:2; -*- */ /* Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above...
23167_8
"package XML;\n\nimport Correction.Correction;\nimport Correction.Corrector;\n\nimport java.awt.geom(...TRUNCATED)
0xSMN/2.2-Leertaak_3
Data_Processor/XML/XML_Parser.java
2,091
//Datum van versturen van deze gegevens, formaat: yyyy-mm-dd
line_comment
nl
"package XML;\n\nimport Correction.Correction;\nimport Correction.Corrector;\n\nimport java.awt.geom(...TRUNCATED)
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
4