branch_name
stringclasses
149 values
text
stringlengths
23
89.3M
directory_id
stringlengths
40
40
languages
listlengths
1
19
num_files
int64
1
11.8k
repo_language
stringclasses
38 values
repo_name
stringlengths
6
114
revision_id
stringlengths
40
40
snapshot_id
stringlengths
40
40
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Medi...
2f858ade4d3e75934976abbe679c4519325dc8f1
[ "C#" ]
22
C#
brentbatch/Blueprint-tools-sourcecode
6e2bfd730839c3868c52eef9f3e0f45e3df4fbea
207b3a79a74896d634bb2f206254cbe37355d161
refs/heads/master
<file_sep>/** * @file lasttest.c * @author blackball <<EMAIL>> * @date Mon Oct 17 13:13:01 2011 * * @brief test lastdbio * * */ #include "lastdbio.h" #include <string.h> #include <stdio.h> void pack_double(struct db *database, double d[], int n) { int len = sizeof(double) * n; struct db_node *node...
4221e150986411ebd2b1e143055c062aa05d9795
[ "C", "C++" ]
6
C++
blackball/dbio
73168086e0cb76e739d75f042a0294332d6a7cb8
a627df6313cd1490c3af52242c002b8ccb0591be
refs/heads/master
<repo_name>santiago1234/corrcodon<file_sep>/R/compute_correlations.R import::from(dplyr, "%>%") #' Computes the correlation of tile and codon enrichment #' #' \code{compute_correlations} returns the correlations of tile (rna expression) #' with codon enrichment for all the codons starting at \code{min_tile} #' #' This...
586d04a2a83a4c95ef76808fa07fde90c10016d6
[ "R" ]
10
R
santiago1234/corrcodon
8b6a67c2a3f59d448a74c85b0a1f683f4a0afe94
895f172bcc6423ee341828dbc8004dc1e7f5b22c
refs/heads/master
<file_sep>import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.io.PrintWriter; import java.nio.ByteBuffer; /** * The BlockChain class, contains a linked * data structure of blocks. * The Node class contains the block as well * as a reference to the next node. * The BlockC...
517f069b373f90494f288df3de55735f00c2e383
[ "Markdown", "Java" ]
2
Java
sve009/BlockChain
36c56016922d97eae89472fff791877bdf5850cd
e01a401bf71340bf972680badaee5ffc54c5da2c
refs/heads/main
<file_sep>import React, { useContext } from 'react'; import './ProfileComponent.scss'; import {DataContext} from '../../App'; import user from './Assests/user.png'; const ProfileComponent = () => { const [data, setData] = useContext(DataContext); console.log(data) return( <div className='profile-c...
c20b006607d4694337fcc584860d10d01e6a2c7d
[ "JavaScript" ]
5
JavaScript
yogesh45/Bookings-dashboard
3b18df29c57a0fc7476954810cb7182707676b76
1d9c5ca9741a3c4dfbab03f9fd7735d4faa6c311
refs/heads/main
<file_sep>def sumaDigitos(numero): suma=0 while numero!=0: digito=numero%10 suma=suma+digito numero=numero//10 return suma num=int(input("Número a procesar: ")) while num!=0: print("Suma:",sumaDigitos(num)) num=int(input("Número a procesar: "))<file_sep>def val...
12caa6b4908259ac78a25f43401faac80f3e0fd3
[ "Python" ]
14
Python
Sarayin/Ejercicios-de-trabajo
bec23bfebfa65890a41b08e54deff11772e3e35d
b44fc91de5574754e1d950d7825b1d859cf41434
refs/heads/master
<repo_name>johnnyehl/ProyectoTesis<file_sep>/facilito/apps/facil/migrations/0001_initial.py # Generated by Django 2.0.5 on 2018-05-15 20:33 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True depend...
2074f8e7280ec9536fdc4dcc779fd2ea4020101b
[ "Python" ]
2
Python
johnnyehl/ProyectoTesis
c92e7eaa0d819292d42f775d41e124539e6fcc3c
294f58d93396d9bb0493e5416945e52f706cde67
refs/heads/master
<repo_name>minsuchoe/Day15_SceneManagement<file_sep>/Assets/GameManager.cs using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; //Scene 로딩시 필요 public class GameManager : MonoBehaviour { public static GameManager instance = null; p...
63fa9deff7c9d0c4a8d7fdd7b60d1d1853a8b2c0
[ "C#" ]
2
C#
minsuchoe/Day15_SceneManagement
824dc2953a3c9cd542a87bfe9b0db3b57c93fbc9
d3e04ba685cbd86598bd1b3ed11e384d629d010d
refs/heads/master
<file_sep>from PyQt4.QtGui import QLineEdit, QApplication, QColor, QPalette, QSlider from PyQt4.QtCore import pyqtSignal, pyqtSlot, pyqtProperty, QState, QStateMachine, QPropertyAnimation from channel import PyDMChannel class PyDMSlider(QSlider): __pyqtSignals__ = ("send_value_signal(str)", "con...
42db92c4f74344a60312b5a5c5d3572a9c546dfc
[ "Markdown", "Python", "Text" ]
19
Python
Jus80687/pydm
ab70a8f61bfc21d7461652c21e478b526efe24f8
1a11133c443269c033163ad874da9dc2607e16ef
refs/heads/master
<file_sep>require_relative "../config/environment.rb" require 'active_support/inflector' require 'pry' class InteractiveRecord def initialize (hash = {}) hash.each do |key, value| self.send("#{key}=", value) end end def self.table_name self.to_s.downcase.pluralize end def self.column_n...
1a45a3dd8fda82761a1650afbbad91b8ad369115
[ "Ruby" ]
1
Ruby
jakebrady5/dynamic-orm-lab-v-000
306c571ca1502ba575d97d454ba1a845e9b74883
eeb7d28fbe6be715ed80b7ad80ba14ae99aa0be4
refs/heads/master
<file_sep>package com.example.movingcarapp import android.graphics.PointF import kotlin.math.acos import kotlin.math.sqrt class Triangle( private val a: PointF, private val b: PointF, private val c: PointF ) { private fun getAB(): Double { val dx = a.x - b.x val dy = (a.y - b.y).toDoub...
a0f6d2a4e5e694a6e3e3a511d1ea45105fa6662a
[ "Kotlin", "Gradle" ]
4
Kotlin
AmirVagapov/MovingCarApplication
cfc475485b6c8771be492067178378f0308193e1
117154126604a0c5b5520dff37fd12ee03597c2b
refs/heads/master
<repo_name>dumdumdablu/batch21<file_sep>/Java/src/HelloGuys.java public class HelloGuys { public static void main(String[] args) { System.out.println("Hello Guys"); } public void hello(){ System.out.println("Hello I am in hello method()."); System.out.println("Hello I am in second line. hello method"...
45d6df390989015b6fcf8eedf9d64ecf2ac92d8c
[ "Java" ]
1
Java
dumdumdablu/batch21
c94c04d697efbc9fea2d6898c9944beaa45f4fd1
b36690226b4ccd493a9b822ce313471e269e32e8
refs/heads/master
<repo_name>getheash/temperature-control-app<file_sep>/React_Apps/ReadMe.txt I have created this folder to store all the React apps that I create for testing purposes. <file_sep>/src/container.jsx import React, { Component } from "react"; class Container extends Component { state = { temp: 10, }; constructor...
b3db4dece753fc3101eab3eb76cb8f92f518b581
[ "JavaScript", "Text" ]
2
Text
getheash/temperature-control-app
01ec21e34bbbd4068d9342190d1bcdba3e40c772
b27f281841ef1a818835bc4b506fba346164c7c5
refs/heads/master
<repo_name>charliemurgatroyd/webscrape<file_sep>/pyscrape.py print('in pyscrape file')
5bd149ea635fc1a0fc81e88dca31a1b247f9d139
[ "Python" ]
1
Python
charliemurgatroyd/webscrape
b9b36cfba39a51a3c79109bdd9c3ab016ec179a2
6360c20dba0bd1afd473ae34266429b53a778a5b
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO; using System.Collections; using System.Threading; using System.Diagnostics; /****** Available functions to call *********** string getAnnualizedGain(string symbol) string getExchange(string...
0301df7fbcd292b77dcb182f21c633590488f488
[ "Markdown", "C#" ]
21
C#
bpeterman/FreeTrade
ae2638047a57acc3771b122fc05f6fa5a3757e57
40ed9fdd0ec6d27534d9b5f8622d2c8160290172
refs/heads/master
<repo_name>dnhsoft/docker-php<file_sep>/5.3/docker-compose.yml web: image: chudo1 ports: - "8000:80" <file_sep>/README.md # docker-php Few older PHP versions <file_sep>/5.3/Dockerfile FROM debian:6 RUN echo "deb http://packages.dotdeb.org squeeze all" >> /etc/apt/sources.list RUN echo "deb-src http://packages....
57a4e1ef171f624791a0f1e144e361dcb73a03bf
[ "Markdown", "YAML", "Dockerfile", "Shell" ]
6
YAML
dnhsoft/docker-php
6540808bdad4d56866476a40351870f4648c49e7
54693338ed382644eb182d7b7936674ea8d8c12a
refs/heads/main
<file_sep># trio5 Virus <file_sep>#!/bin/bash clear sleep1 echo -e "╔════•ೋೋ•════╗" echo -e " Author : TC" echo -e " YT :TRIO CHANNEL" echo -e "╚════•ೋೋ•════╝" read -p "Masukan No Target : " nomor; while [[ true ]]; do echo -e "Mencoba Mengirim Virus Ke Nomor $nomor" done
e4eb09c5af8ea3a4943bce397136f0427e2e521b
[ "Markdown", "Shell" ]
2
Markdown
TrioChannel/trio5
863bdc49789e2df79ce4fb741e0815a90d0b0fa2
c63bc0ad3a2a51012ddc92416f30d8243e025ef7
refs/heads/master
<repo_name>liting68/planbook<file_sep>/weixin.php <?php require_once 'weixin/lib/config.php'; require_once 'weixin/wechat.php'; //define your token $wechat = WeChat::getInstance(); //$wechatObj->valid(); //$wechatObj->setToken(); //$wechatObj->sendCustomMsg("hello","o9ZPks_8ZpcQXBndQqjuUpt-E9tg"); //$wechat->responseM...
2608a92cea460e1de17447f5ab0df4cdb7265aa6
[ "JavaScript", "PHP" ]
25
PHP
liting68/planbook
74ca445b6b0f85b3f3edb2f83bd41c213b94057e
68e4ec80a37cf38b69b10c5f88cf5320e4a05ded
refs/heads/master
<file_sep># Parallel requests 'Parallel requests' is a simple HTML/CSS/JavaScript application using recent pictures feed from Flickr API. By default the (on application loading) number of pictures retrieved from Flickr API is 100 and number of parallel requests is 5. The user can change two value by selecting values...
9d3c49c5c8baf69dc4746c09bbf65fff4083a048
[ "Markdown", "JavaScript" ]
2
Markdown
cologneto/parallel-requests
911046b4b983e55b2a13cbef0e78ee6553a47db1
d13c339ba25f43cb4c4c695d9e6767628698ac71
HEAD
<file_sep>var LevelData = { levelList:[ '0-1', '0-2', '0-3' ], currentLevel: 0 }; var Load = function () {}; Load.prototype.preload = function () { this.game.load.image('sheetmap', 'asset/img/sheet.png'); this.game.load.spritesheet('sheet', 'asset/img/sheet.png', 16, 16); // crisp pixel upsca...
71ab006d932935a3906d6e46c168016f3df8902b
[ "JavaScript" ]
1
JavaScript
danbolt/quirk
8461234c8ab32d05a96889bc6f512718a194dd30
68c4b4645d555d9ef0c39eb6e9a48e1747b539bf
refs/heads/master
<repo_name>syncfusion/xamarin-demos<file_sep>/Forms/XlsIO/XlsIO/Samples/ImportHtmlTable/ImportHtmlTablePage.xaml.cs #region Copyright Syncfusion Inc. 2001-2023. // Copyright Syncfusion Inc. 2001-2023. All rights reserved. // Use of this code is subject to the terms of our license. // A copy of the current license can b...
abc1c976b98dfdf6a8113fa80fbaf5f28f0215ad
[ "Markdown", "C#", "Shell" ]
1,474
C#
syncfusion/xamarin-demos
31c968af8304f2d65f15f542f73e5fdf9ba69a5b
1e5ba06a96f7bec5353e90917010bede7aef78c6
refs/heads/master
<repo_name>gitter-badger/gitbanner<file_sep>/src/3.bitmap2commits.sh #!/bin/sh echo "Going to create commits according to the bit value of each day"
ea27f5a036b08d0f0daad4f2f290bf7e9325fbf2
[ "Shell" ]
1
Shell
gitter-badger/gitbanner
ff50c4b38c895901397db12ba0033d01135ab277
4d2fb1a820d13b0125f729346f903849b37bcd15
refs/heads/master
<file_sep>import React, { Component } from 'react' import {View, TextInput,ListView, Text, StyleSheet, Platform, TouchableOpacity } from 'react-native' import { white } from '../utils/colors' import TextButton from './TextButton' import * as flashCardApi from '../utils/api' import {getQuestionsInOneDeck} from "../util...
0b375a077644b035c1123cf2b5832c8cae2cda78
[ "JavaScript", "Markdown" ]
9
JavaScript
olivemz/mobile-flashcard
7b22a48822a03f21efc42da356a6a177dd75d3d7
fc2a52ad75380013af5d75243d66011e0be1ef6f
refs/heads/master
<repo_name>Oipo/xoroshirojs128plus<file_sep>/README.md xoroshirojs is a nodejs addon for http://xorshift.di.unimi.it/xoroshiro128plus.c. For more information see http://xorshift.di.unimi.it/. It's currently only tested on linux. # Usage `npm i --save xoroshirojs128plus` ```javascript var xoroshirojs = require('xoros...
e971cec6efd7fc00497ed941003711ee14995422
[ "JSON", "Markdown", "JavaScript", "Python", "C", "C++" ]
9
Markdown
Oipo/xoroshirojs128plus
47b1a38ef5ae913eb56e9672ac44a362d59ed5e7
c4419cc341ca34f9a46bfe3a7997ed1d972fe50e
refs/heads/master
<repo_name>offwork/custom-directive-pipe<file_sep>/src/app/custom-pipes/order-by.pipe.ts import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'orderBy' }) export class OrderByPipe implements PipeTransform { transform(value: any | any[], key: string): any[] { if (!Array.isArray(value)) { retur...
aff6771ed60cef43f147b3876d3f21cf398aef7d
[ "TypeScript" ]
5
TypeScript
offwork/custom-directive-pipe
2fba376a7f4299c68a09c84e373d93546975fc09
821b7b395118fcd90ce3afb4d13d15cc6bbf9b06
refs/heads/master
<file_sep>Step 1 Download the jacob DLL from below website for 64 Bit "jacob-1.18-x64.dll" 32 bit "jacob-1.18-x86.dll" https://sourceforge.net/projects/jacob-project/files/jacob-project Copy the .DLL file to your C:\Windows\System32\ folder. (32 bit) Copy the .DLL file to your C:\Windows\Sy...
d3cdf2c65ce604455f2566d297e0a0915d80dde6
[ "Markdown", "Java" ]
2
Markdown
JustinH-EY/SAP-GuiClient-Automation
9eff701d8a361ce33e4b6f9a446730770aa4d16d
78dea25720c5f0c0dbb42722f0cc9df3d03063f6
refs/heads/master
<file_sep>Appium-Python-Client==0.49 selenium==4.0.0a3<file_sep>from appium.webdriver import Remote, WebElement from appium.webdriver.common.mobileby import MobileBy from selenium.common.exceptions import NoSuchElementException, StaleElementReferenceException, TimeoutException from selenium.webdriver.support import exp...
9a337d490fcc0643838443504a4df36015eb2319
[ "Markdown", "Python", "Text" ]
6
Text
yevh-berdnyk/truecaller-test-task
1057a2d25bc2270ae0087c5adf9bce28b3724baf
1d62b7ce700a1ff59923c458db6ec41247b3ce46
refs/heads/master
<file_sep>/** * This library will allow the user to plot a 'SmokeChart' onto a html5 canvas element. * See the examples in '\examples' on how to use the object */ var SmokeChart = (function () { /** * Initializes a new SmokeChart object */ function SmokeChart() { // Variables-Private ...
619f16aa19be30193446568c2621dd596ba07316
[ "JavaScript", "Markdown" ]
2
JavaScript
smpickett/SmokeChartJS
af87515d54bd33ccd9fe3abe9262e36fab420029
47474ac13f3e47524cd63fae18d8ec5639763acd
refs/heads/master
<repo_name>fifteen1/ZhangShuaiKang20180709<file_sep>/app/src/main/java/view/myView.java package view; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graph...
9e3622ff2399a0585ccb70956f089a2bd262f9c1
[ "Java" ]
1
Java
fifteen1/ZhangShuaiKang20180709
4180cd6617e89481c1fde982d5d1829b90a625da
303100869f1cf9d510630611b3a1642560f0dcf2
refs/heads/master
<file_sep>import sys from shutil import which import os from os import path, getcwd from flask import Flask, request, jsonify from flask_cors import CORS import config from util import read_csv_file, parse_date, is_git_dir from cli import CLI working_dir = sys.argv[1] if len(sys.argv) > 1 else getcwd() app = Flas...
42f10e19936beee99788353720d2ab2d591109e6
[ "Python", "Text" ]
7
Python
Rada75/code_maat_server
eb61492370d4d9a6107d0755042f1f098e84490b
aca307bce8b6141b330542140f550e037aeb915f
refs/heads/master
<file_sep>import { createServer } from 'http' import * as next from 'next' import * as path from 'path' import { parse } from 'url' import { validateStaticPath } from './static_assets' const port = parseInt(process.env.PORT, 10) || 3000 const dev = process.env.NODE_ENV !== 'production' const app = next({ dev }) const ...
5e98b7aa5410c1bb8d06a0ccee04485e4eca70ef
[ "Markdown", "TypeScript" ]
7
TypeScript
jaredhughes/jaredhugh.es
4b5d29807348eb49b6ea589aeac2a19e12c27e20
9d0fd2e7b9ce75ccd7aba2ab2107cc235c7df8a2
refs/heads/master
<file_sep>from flask import Flask, render_template, request, redirect, session from flask_sqlalchemy import SQLAlchemy from datetime import datetime import json # Opening and reading the json file. with open('config.json', 'r') as jsonfile: params = json.load(jsonfile)["params"] # Creating a Flask applic...
ba8bbd0dedb581d66cac40d8a5d9f1de07221216
[ "Markdown", "Python" ]
2
Python
shaurya2611/Blog-writting-app-using-FLASK
c11e5dfc7d9a07e9d1d6feeab5a98b776d0182c7
19697eb2fe7898d530863643892439ae7a52ed54
refs/heads/master
<file_sep># <NAME>'s vim distribution ## Usage git clone git://github.com/ancorcruz/vimfiles.git ~/.vim cd ~/.vim rake install ### Helptags To generate tags at first usage of vim invoke: :Helptags This makes all plugins documentations available thru :help ### Updating cd ~/.vim rake upda...
e1d28d7d5fe229ca33e679472e6d8b7c3a08b062
[ "Markdown", "Ruby" ]
2
Markdown
crguezl/vimfiles
214b53b13baca1ed723946d5976a11403c588cd5
39eb0693fc7c35d0b26e415e3862944a730ad434
refs/heads/main
<repo_name>NGowthamKumar/FoodFactoryApp<file_sep>/src/controller/userController.js import User from "../model/userSchema"; var md5 = require("md5"); export const userLogin = (req, res) => { req.body.password = md5(req.body.password); User.findOne({ $and: [{ email: req.body.email }, { password: req.body.passwor...
f028eb1d3117e590ea578837d4ed68bdf8eb50db
[ "JavaScript" ]
9
JavaScript
NGowthamKumar/FoodFactoryApp
28eef7c3f28aa3da1d372cdd6c15ae338bbb4e45
323f3b83c2df13eaaf3e82915aac465d018a8310
refs/heads/master
<repo_name>mgingras/sorbet<file_sep>/test/helpers/expectations.cc #include "doctest.h" // Include first as it uses poisoned things #include "absl/strings/match.h" #include "absl/strings/str_split.h" #include "common/FileOps.h" #include "common/sort.h" #include "dtl/dtl.hpp" #include "test/helpers/expectations.h" #incl...
b95524f81f2a8f1ad52aeb5ef648a7f6f5d699e1
[ "C++" ]
1
C++
mgingras/sorbet
016a3686df86f9888f89df02bd81055d119c87a6
af85100fa0701d77508e48186c43bfd7f2f0f784
refs/heads/master
<repo_name>NikonMcFly/Go-Concurrency<file_sep>/daily-walk/main.go package main import ( "fmt" // "math/rand" "time" ) func main() { aliceReadyChannel := make(chan bool) bobReadyChannel := make(chan bool) // Let's go! fmt.Println("Let's go for a walk!") // Let everyone get ready go doSomething("Alice", "ge...
66ae07e000820bc791cbf4cc170b138f22c23107
[ "Markdown", "Go" ]
2
Go
NikonMcFly/Go-Concurrency
14f0d03d28c346df4362296e0b1392bf9d06275c
5a3d6ef353b79a12c462efcab3b2f1977830bde7
refs/heads/main
<repo_name>jaewoong0119/smart<file_sep>/20210427/src/package06/Ex29.java package package06; public abstract class Ex29 { //추상 클래스 abstract void method1(int dante); //추상 메서드 public void method2() { //일반 메서드 System.out.println("MyInterface-method2 실행"); } } <file_sep>/20210427/src/package5/Ex25.java packa...
64acf11f1198b6b3d8a28cfbfbf034e6cadbfcea
[ "Java" ]
2
Java
jaewoong0119/smart
5f9b3cf12531070d0ecf1badab8b688312560e16
3470bc04bc4bd1ce30d403fe989efb70473a7aa2
refs/heads/master
<repo_name>ajduberstein/grid_pen<file_sep>/grid_pen.sql CREATE TABLE squares AS SELECT ('polygon ((' || (x)::text || ' ' || (y)::text || ',' || (x)::text || ' ' || (.01 + y)::text || ',' || (.01 + x)::text || ' ' || (.01 + y)::text || ',' || (.01 + x)::text || ' ' |...
38ca6dd6d2ca12ed772ce7acd786580acfc191f4
[ "SQL" ]
1
SQL
ajduberstein/grid_pen
38d232619890110ac12ad5fc2cc3c687f0c3f159
f38001afc05bd393178963db752c40b319bf9b59
refs/heads/main
<repo_name>panost/StringCache<file_sep>/Bench/Intern.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Jobs; using ecl.Collections; namespace Bench { [SimpleJob( RuntimeMoniker.Net50 )] ...
8e984956eb782c0edafd66dd3e1e65db982651d4
[ "Markdown", "C#" ]
5
C#
panost/StringCache
75ba8db40a10e61d194f78461389c3b1256d62a5
6dc04834e0add469b72e1f8c61ec1a9da1bfc0c3
refs/heads/master
<file_sep># -*- coding: utf-8 -*-` """api.py - Create and configure the Game API exposing the resources. This can also contain game logic. For more complex games it would be wise to move game logic to another file. Ideally the API will be simple, concerned primarily with communication to/from the API's users.""" impor...
549eff48e656d4408d06d9753abf380a7401d6ce
[ "Python" ]
1
Python
Ascariel/UdacityGameDesignProject4
43d2ba13d535f9a75a3428b668d12c8f137eddf4
0759fdc226234e2f4992a06a06b774c6197fe92d
refs/heads/master
<file_sep>##################################################################################################### # Matrix inversion is usually a costly computation and # there may be some benefit to caching the inverse of a matrix rather than # computing it repeatedly. There is a pair of functions that cache the inver...
77f593af39aa55e41166afb2b62896c9bb8f29d2
[ "R" ]
1
R
marileksa/ProgrammingAssignment2
3c829e5a49f007b6ad5b00b4a3d503062a8a7834
cbc079cc1045140c55e83061b0b046d66ede8d38
refs/heads/master
<file_sep> require(ggplot2) require(gridExtra) require(RColorBrewer) require(pracma) require(scales) get.mfARI <- function(Ks, Delta.tau, Phi) { # # From regression on bounded mfARI parameters made # on mar 06 2015 # # Call: # lm(formula = ATARI ~ Ks + Delta.tau + Phi, data = params) # # Residuals: ...
7838b2d5a69ef228134d0709a52529fcf3a591c8
[ "Python", "R" ]
44
R
luisorellana777/DataScience
5142e5ae4c8d952f2f766f93b311a018266d832d
05a3b363d0e98bb0e16d01aa613174e63449d50e
refs/heads/master
<repo_name>igenoe/Second<file_sep>/app/enrollmentUpload/index.jsx import React, { useState, useEffect } from 'react'; const EnrollmentUpload = () => { return ( <div> EnrollmentUpload </div> ) } export default EnrollmentUpload;<file_sep>/app/paymentUpload/index.jsx import React, { u...
690299879844cd71ded262fc70d4681ecd168f11
[ "JavaScript" ]
4
JavaScript
igenoe/Second
ef048c48827cf419f93173681430b4e07630a289
78f1d0d981bbbd19004e99b9856874b2dbfd9874
refs/heads/master
<repo_name>IainMeeke/distributed_lab2<file_sep>/server.py import socket import sys from threading import Thread from Queue import Queue import os HOST = '' #host becomes any address the machine happens to have PORT = int(sys.argv[1]) #get the port from the command line arguments and convert to int STUDENT_ID = '39e95f...
4fe1aa235f37e13664a1d7be8fcf2905b175bd80
[ "Markdown", "Python" ]
2
Python
IainMeeke/distributed_lab2
64c1ebc966e043358f392dd7637ce8148e31303d
4c34917b0c8c36882b72fbef38f7ad92f3ba3e55
refs/heads/master
<file_sep># TDNET TD 6 : mise en place du web service http://www.dneonline.com/calculator.asmx ![alt text]( https://github.com/edossantos241/TDNET/tree/master/TD/Image/TD6.png) <file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Re...
9d31dd6dcd829949efe96c6ea6c4ff55b190b9c4
[ "Markdown", "C#" ]
3
Markdown
edossantos241/TDNET
f25d05a30a2041ec25097564c4c7c727824ae5a4
b2600eb48364b2ee67bd49a54027433819d81634
refs/heads/master
<repo_name>aameen951/simple_compressor<file_sep>/src/file.h #include <stdio.h> struct ReadFileResult { bool succeeded; DataView data; }; ReadFileResult read_input_file(char *file_path){ auto file = fopen(file_path, "rb"); if(file) { fseek(file, 0, SEEK_END); auto size = ftell(file); fseek(file, 0...
1e09b85b474dd781e68b70b3597c30994181bc56
[ "C", "C++" ]
6
C
aameen951/simple_compressor
a0c9bb86cdec0c31cf34f87f084c474e2b92867d
a30bbbd534fef82d99a3c814af6b6d91536920f7
refs/heads/master
<repo_name>RegularTriangle/Study<file_sep>/Python/draw_owl.py #部分代码参考CSDN, 但是时间有点久, 记不清参考哪个帖子了 from turtle import * #设置画板大小 wight = 900 height = 1000 setup(wight,height) #绘制速率 speed(10) #取消画布的延迟 #Turtle().screen.delay(1) #绘制网格 for i in range(17): up() goto(0+i*50-wight/2+50,0-height/2+50) ...
9b68607f49a37b5d8f3fc00a48d620ec99f2fd80
[ "Markdown", "Python" ]
2
Python
RegularTriangle/Study
8366b3fa962f425bcfc561ac9e1ef8ec9def26a8
9fe3f1701fa00d95b23248e5215a13d1bb2e58c2
refs/heads/master
<repo_name>kevinkovalchik/RealTimeOrbiWiz<file_sep>/RealTimeOrbiWiz/Program.cs using System; using System.IO; using System.Security.Permissions; using System.Threading.Tasks; using ThermoFisher.CommonCore.Data.Business; using ThermoFisher.CommonCore.Data; using System.Linq; namespace RealTimeOrbiWiz { class Progr...
31d2ea0fb7739511666ccaa9d2f6a0d808ca0451
[ "C#" ]
1
C#
kevinkovalchik/RealTimeOrbiWiz
14cf1092fdcf7cd61ef559ba11ebfac9f565fdfd
1d5d47577d7239e91204f2170979debb57a02a35
refs/heads/main
<file_sep>require 'time' class Hiker attr_reader :name, :experience_level, :snacks, :parks_visited def initialize(name, experience_level) @name = name @experience_level = experience_level @snacks = Hash.new(0) @parks_visited = [] end def pack(snack, q...
3f7e94ff9c5dcc1f129c64d0a41abf84d5efa6dc
[ "Ruby" ]
6
Ruby
netia1128/adventure_2103
b207eee32bef327bee85f58807818b75a66a4fbf
987efdd1e919e51dfa10c232f15b963d43a088bd
refs/heads/master
<repo_name>JakeDillon/model-a-car<file_sep>/Model a car/main.swift // // main.swift // Model a car // // Created by <NAME> on 8/20/18. // Copyright © 2018 <NAME>. All rights reserved. // import Foundation print("Hello, World!")
9099dc486aa6a8a24c776c0d4385c33f7a119c82
[ "Swift" ]
1
Swift
JakeDillon/model-a-car
56de2e6890533341d4e817fa188922244bad9281
ef08f85790aa2258400a9b87a644af6a6fbc96b2
refs/heads/master
<file_sep>package view.Empreededor; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JFrame; public final class Alterar extends JFrame{ //Instancia private static Alterar instancia; //Variáveis do JFrame ...
0bb18e47320bfe86b9eda31c59e7dd1840d525e9
[ "Markdown", "Java" ]
8
Java
Trabalho-POO-UFG-2018/conpro
e25654eb192d4b347280843adb1750c1e46db5b0
3b55ea86aca5517029b87a9dc159a956f128e072
refs/heads/master
<repo_name>Genstrom/Vocabulary-Trainer<file_sep>/LanguageLibrary/WordList.cs using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace LanguageLibrary { public class WordList { private static readonly char[] CharArray = {';'}; private readonly List<Word> _w...
d0a8675dd4a45d2e92230414e12e071957bb956c
[ "C#" ]
6
C#
Genstrom/Vocabulary-Trainer
12335cc6c8b5e08f94d06bc19cd88750c9766b9f
ed1efd69b3b9c1a77d93141fc37a0f4490d261e3
refs/heads/master
<file_sep><?php namespace MicroGames\Http\Controllers; use MicroGames\gameObject; use MicroGames\gamePages; use Chumper\Zipper\Facades\Zipper; use Illuminate\Http\Request; use Cviebrock\EloquentSluggable\Sluggable; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\File; use Illuminate\Support\Facade...
19ebad4d0260402971ae09a9c69a9fa76bcd691e
[ "JavaScript", "Markdown", "PHP" ]
22
PHP
joey-dev/microgames
6333d249f3e8f317de4eea7e744784a5eb9191c9
dd958797efb6d050da6fc152171dc20bc5746dce
refs/heads/master
<repo_name>codeneverstop/JavascriptRoad<file_sep>/Tetris/game/connection_manager.js class ConnectionManager { constructor() { this.conn = null; } connect(address) { this.conn = new WebSocket(address); /* 这个open和new有什么区别? 应该是 如果new了以后 server没反应,这个open也应该不会有执行*/ this.conn.addEventListener('open', () => { ...
83975c6814407a2bccd7ba6c71c150a8218cc7eb
[ "JavaScript" ]
6
JavaScript
codeneverstop/JavascriptRoad
f41755f0a6aa2b7a41b10f941e1bd866fa44c6e1
4b4a08f5fe2342b8e645f42dd165e16e0f480ef5
refs/heads/master
<file_sep>alias pbcopy='xclip -selection clipboard' alias pbpaste='xclip -selection clipboard -o' alias emacs='emacs -nw' alias vim=nvim <file_sep>if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi export EDITOR=nvim # GIT_PROMPT_ONLY_IN_REPO=1 # source ~/.bash-git-prompt/gitprompt.sh export HISTFILESIZE=10000 ex...
da3dfd9b5c9f9f661c4187e64edd1b0d81e1a32b
[ "Shell" ]
2
Shell
sgeop/dotfiles
c5d2847d23620750859c4e515553214a84802ffe
f308453e41dd37dcbffaa46eba7132d6ca27d9c8
refs/heads/master
<file_sep>package kr.ac.jejunu; import org.junit.Before; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import java.sql.SQLException; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest...
a0b6a32e0ef530d228cd37281e82b694c8b572cf
[ "Java" ]
1
Java
seung-yeol/java-framework-class-miexam
3082e7a4359d2a56e3358c647b0394b1ff87faf3
de0bca875fa6a43f3fad586b752a31c19ceb02e7
refs/heads/master
<repo_name>JustinGuese/tensortrade-experiments<file_sep>/README.md My fix / implementation of tensortrade examples ----- install the following pip install git+https://github.com/tensortrade-org/tensortrade stochastic ta # how to start it in the cloud 1. choose an aws ec2 instance 2. in the bootstrap area copy the ...
72b5255a61ef34139ea6d54d4dffa9522fe9536b
[ "Markdown", "Shell" ]
3
Markdown
JustinGuese/tensortrade-experiments
c97fe51c7bb90860ffbeeb38404d35dcaf242026
9d4b54c93beba187516c13882fef41ba1f73685d
refs/heads/master
<repo_name>everystone/is105<file_sep>/lab2.py # -*- coding: latin-1 -*-# # IS-105 LAB2 # # lab2.py - kildekode som inneholder studentenes lQsning. # # # import sys # Skriv inn fullt navn paa gruppemedlemene (erstatte '-' med navn slikt '<NAME>') gruppe = { 'student1': '<NAME>', \ 'student2': '<NAME>', \...
202e8482af0d74c57c24ee7e60110e85bbfde027
[ "Markdown", "Python" ]
8
Python
everystone/is105
ed8e7ad7a450237f8da8f1b1e76ef7559d61cf05
c08c371940f62a16842d9c8f433c553af89b6b9f
refs/heads/master
<repo_name>lotrikys/DZ_9<file_sep>/app/src/main/java/ua/org/lotrik/dz_9/MainActivity.java package ua.org.lotrik.dz_9; import android.content.Intent; import android.database.Cursor; import android.net.Uri; import android.provider.ContactsContract; import android.support.v7.app.AppCompatActivity; import android.os.Bundl...
23d4f16816f28194944f39aa9fc04e290b719414
[ "Markdown", "Java" ]
2
Java
lotrikys/DZ_9
a00f2ba42b8592c560e1cbfa3fe4cae0aaf750be
52d8be6b553bbf4d5d31eb401210b5582ea92a8c
refs/heads/master
<repo_name>Umrzoq-developer/autosmonsters<file_sep>/src/Components/ChatPage/ChatPage.jsx import React from 'react' import socketClient from "socket.io-client"; import Chat from './Chat'; const SERVER = "http://127.0.0.1:8080"; const ChatPage = () => { var socket = socketClient (SERVER); return ( <div...
e8b755f3b5f97d5d9dde6bdbfe9f05a9404c368b
[ "JavaScript" ]
3
JavaScript
Umrzoq-developer/autosmonsters
231f09c7582d517e25782b1319eb864c6c9896ee
548f48846cf29d629a99bece7ce1bf2007224a0f
refs/heads/master
<file_sep># encoding: utf-8 require "logstash/inputs/base" require "logstash/inputs/elasticsearch" require_relative "../../logstash/inputs/value_tracking" require "logstash/json" require "time" # This plugin is a simple extension of Elasticsearch input plugin. We added tracking_column property # for search in elastics...
c848de5d5b7559c9f6c726045f8ed41633dc07ca
[ "Markdown", "Ruby" ]
4
Ruby
ernesrocker/logstash-input-elastic_jdbc
5d31ab2cf94ac1d6e44250b81af7f2642c5c7a5a
feb6ac20bc1526c8b2709c7679225a029bdd2485
refs/heads/main
<file_sep>#[macro_use] extern crate serde_derive; use std::io; use std::process; use std::io::Write; mod blockchain; fn main() { let mut miner_addr = String::new(); let mut difficulty = String::new(); let mut choice = String::new(); print!("input miner address: "); io::stdout().flush(); io::...
7d4e1b79e49a964fcad3c8c73955a588e215eaba
[ "Rust" ]
1
Rust
sebdeveloper6952/rust-blockchain
c6ed334144e451d07e84f5167079c63d03f72086
b836c229cd79e95e3100328b42b21ab666d05ec1
refs/heads/main
<file_sep>/* This file is a part of DSRC software distributed under GNU GPL 2 licence. The homepage of the DSRC project is http://sun.aei.polsl.pl/dsrc Authors: <NAME> and <NAME> Version: 2.00 */ /* Modified by <NAME> <EMAIL> */ #ifndef BUFFER_H #define BUFFER_H #include "Globals.h" #include <algo...
a910fcfafc796f731587ba5e3bccc8b95357e7e1
[ "CMake", "C++" ]
7
C++
LeiHaoa/RabbitIO-Ktrim
1c065145341731e4f5b4382b6c591d952d43af6b
9a4d5e9e34a03a3895c30564b0433c9e549ea60d
refs/heads/master
<repo_name>SaturnR/geogram<file_sep>/run.sh #!/usr/bin/env bash export FLASK_APP=main.py flask run <file_sep>/dbcontroller.py #!/usr/bin/env python3 import sqlite3 class Controller: def __init__(self, db_path='./words.db'): self.words = {} self.db_path = db_path def save(self, data, a...
f35c5dc9ac988fd99c19e1cc98a7fec3856bb664
[ "Markdown", "Python", "Text", "Shell" ]
5
Shell
SaturnR/geogram
7cfc3489370edacf2eaef14f89f8ecb509f8107c
67e4c0a58ecece92595e6a285ce4d72885c20675
refs/heads/master
<file_sep>#!/usr/bin/env python # -*- coding:utf-8 -*- # @Time : 2019/3/2 16:02 # @Author: Vincent # @File : test.py import random from functools import reduce from numpy import * from DL.xjtupy.dl.network.network import Network class Normalizer(object): def __init__(self): self.mask = [0x1, 0x2, 0x4...
486580a3d48cc09664057888649c20ca25ff9f11
[ "Markdown", "Python" ]
5
Python
xjtupy/DL
6a877c62d3ac82f27cd65fd85850d74c988e544d
c62dabb17683cf08f4878df56b37c8dad5ab0b76
refs/heads/master
<repo_name>pierorolando1/balongonline<file_sep>/config.firebase.js import firebase from 'firebase/app'; import 'firebase/firestore'; const firebaseConfig = { apiKey: "<KEY>", authDomain: "balongonline.firebaseapp.com", projectId: "balongonline", storageBucket: "balongonline.appspot.com", messagingSenderId: "...
a893480071b22036786e1b11ae3d59e9b4546940
[ "JavaScript" ]
1
JavaScript
pierorolando1/balongonline
f1144d1d55ed457fb846a3699a84c90c53e0bca3
c36c02bf69e32923dd28474a4b8f4625c0898839
refs/heads/master
<file_sep># BLEDemo a demonstration of notifications coming from iBeacon <file_sep>// // ViewController.swift // BLEDemo // // Created by <NAME> on 8/22/18. // Copyright © 2018 <NAME>. All rights reserved. // import UIKit import CoreLocation import UserNotifications class ViewController: UIViewController, CLLocat...
04b0bc129902e0a984a16372f768f3f116ab010f
[ "Markdown", "Swift" ]
2
Markdown
thegrimheep/BLEDemo
63e74bd035ae2a35c8ed2571b6c17a9b8c463abd
688afe2d6c8bf122afff1274d42b6fc1f51d6975
refs/heads/master
<repo_name>averlor/blog-note2.0<file_sep>/app/app.py from flask import Flask from config.conf import Configuration app = Flask(__name__) app.config.from_object(Configuration)<file_sep>/app/templates/index.html {% extends 'base.html' %} {% block title %} Главная {% endblock %} {% block content %} <section class="con...
d9105c96326c2b7bf2c5c51b0a739478fdef1e3e
[ "Python", "HTML" ]
3
Python
averlor/blog-note2.0
af34b4a764f4565c769eecbc6971b3eb9f59b0f9
97b84bdbbdb136b45487d8ff81e40b6185b42d4e
refs/heads/master
<repo_name>iamcucusa/e2e<file_sep>/iDareUI/PageInteractions/LoginPage.cs using System; using iDareUI.Common; using OpenQA.Selenium; using OpenQA.Selenium.Remote; namespace iDareUI.PageInteractions { public class LoginPage { private readonly RemoteWebDriver driver; private readonly ILog log; ...
b46e7d244a59ea3393cf6c0b678734aefe292d6f
[ "C#" ]
30
C#
iamcucusa/e2e
fb90010217ff9fc00147c894bebbd098a7823957
a3ad2de6000bb60211d571b109f6b257d58b0e8d
refs/heads/master
<repo_name>ohack38/vue_kurs_test<file_sep>/src/router/index.js import Vue from 'vue' import VueRouter from 'vue-router' import Home from '../views/Home.vue' Vue.use(VueRouter) const routes = [{ path: '/', name: 'Home', component: Home }, { path: '/about', name: 'About',...
697bee15d8e96a1f0012d0a207918c78a189bd00
[ "JavaScript" ]
1
JavaScript
ohack38/vue_kurs_test
29ae19e26bcc36cedcb391eaebdc2707cb70aa9d
15ffaa388022601a98a1cee81a0a0d97242cb4f7
refs/heads/master
<repo_name>prezaie/Skill-Matching-Python-Flask<file_sep>/preproces.py from sklearn.preprocessing import StandardScaler from sklearn.model_selection import train_test_split def preprocess(df, X_te): """Standardize data Args: df (str, or DataFrame): input data test_size (float) : size of test se...
c24e33f438dbc9e131cb321332c0701813001644
[ "Python" ]
5
Python
prezaie/Skill-Matching-Python-Flask
845bbe3106cc91bd7106504e1296956da242a2d9
5fa3fc1af5fb114df9870f2b2a7771d5d73b63b3
refs/heads/master
<repo_name>xShadov/NetworkConnectivity<file_sep>/src/main/java/com/shadov/networkconnectivity/task2/CustomEdge.java package com.shadov.networkconnectivity.task2; import org.jgrapht.graph.DefaultEdge; public class CustomEdge extends DefaultEdge { private final int maxBandwidth; private int bandwidth = 0; public C...
f1a9f31fdc1d3bf79ea3a8dac3b5a7364cc0570f
[ "Java" ]
5
Java
xShadov/NetworkConnectivity
7b9b5ebd503981f1dae0a7a7a99e56719141a92d
72fd9e51475d366122189daa5cc5245ff387472d
refs/heads/master
<file_sep>package com.b_lam.resplash.ui.photo.detail import androidx.lifecycle.* import com.b_lam.resplash.data.collection.model.Collection import com.b_lam.resplash.data.photo.model.Photo import com.b_lam.resplash.di.Properties import com.b_lam.resplash.domain.collection.CollectionRepository import com.b_lam.resplash...
72516dedd85245450a2451a8fc73cd51c44c3ce9
[ "Kotlin" ]
3
Kotlin
ChristosBouronikos/Resplash
23ddd1cebaa4ef5dec046f241bbe02c6dbac94e7
6a871d9e88294a538dee6386371aacb544d35aeb
refs/heads/master
<file_sep>// stdafx.h : include file for standard system include files // // This is a part of the Microsoft Foundation Classes C++ library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and Microsof...
e5d7777af0a4acb38cbe967418f7e04e634fec07
[ "C" ]
2
C
DiablosOffens/VCSamples
f223c3058d900b9a8f0556e3f141ddd19d6d967f
3ccc6138efb52a0aa778ffdb4a3892dcde6076c0
refs/heads/master
<file_sep>const viewHandler = () => { const previousRow = document.querySelector("#previousRow"); const previousPage = document.querySelector("#previousPage"); const nextRow = document.querySelector("#nextRow"); const nextPage = document.querySelector("#nextPage"); // Keeps track of state let offset = 0; nextR...
b1330192c7372fa3784fc00b4846dda4f148ad10
[ "JavaScript", "Markdown" ]
3
JavaScript
GAdowei/pokedex
f7c4263ce5de3762c0f4313e5fbee6b28f6b7d71
af6cb1a87153d4233bbfe73d3bc71dceef41f2ce
refs/heads/master
<file_sep>var helicopterIMG, helicopterSprite, packageSprite, packageIMG; var packageBody,ground function preload() { helicopterIMG=loadImage("helicopter.png") packageIMG=loadImage("package.png") } function setup() { createCanvas(800, 700); rectMode(CENTER); packageBody = createSprite(width/2 , 200 , 5 ); pac...
ad91b625d07e7332ea569d928a2c79da8207e0e0
[ "JavaScript" ]
1
JavaScript
krrish012/Project-SupplyMission-1
83873de4f781671ae7fa7bd66b08a7864a368b57
f9965d5334d4f5c33574c28063a0031e67431a3f
refs/heads/master
<repo_name>aurelien-w/games<file_sep>/src/Entity/Season.php <?php namespace App\Entity; use Carbon\Carbon; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="App\Repository\SeasonRepository") * @ORM\HasLifecycleCallbacks() */ class Season { con...
dd6e0fbf0d2f181e66f464c5c539476e9883cd15
[ "JavaScript", "PHP" ]
10
PHP
aurelien-w/games
9fce378177b3f3db94860a327108c388f0893ef6
742907fbfc44abc355e391d58367cb867ec64a70
refs/heads/master
<file_sep>import { Injectable } from '@angular/core'; import { Observable } from 'rxjs'; import { User } from 'firebase'; import {AngularFireAuth } from '@angular/fire/auth'; import { first } from 'rxjs/operators'; @Injectable({ providedIn: 'root' }) export class AuthService { public user:User; constructor(pub...
ffc9f6cf891e87c58f24347b0441b126a082eb58
[ "TypeScript", "reStructuredText" ]
26
TypeScript
dev28aiatic/teamDC
df2d753c81b6578a0fda07acdd102440fd2f58ed
facdb23d533209cdaaa4ded151e22da043fe3498
refs/heads/master
<repo_name>nishantrana2/UsersList<file_sep>/src/App.js import React, { useContext } from 'react'; import Users from './components/Users/Users'; const App = props => { return <Users /> }; export default App; <file_sep>/src/components/Users/UserList.js import React from 'react'; import './UserList.css'; const Us...
d1d341c87b9ae0523c4b50e05d2fbc296148cce5
[ "JavaScript" ]
2
JavaScript
nishantrana2/UsersList
548b26a3d88a41586614295e461d3945593b4299
9ad32e775ada77ef39a80c2b0a7ca0ccd3f6178d
refs/heads/master
<file_sep>React project copying look feel of reddit post. State is used for up/downvoting posts and rearranging posts based on voteCount. <file_sep>import React from 'react'; import PropTypes from 'prop-types'; import './Post.css'; function Post({ post, onUpVote, onDownVote }) { return ( <div className="PostCont...
e9acdbf0f35763b3cfa3a59c7899acbf9059c073
[ "Markdown", "JavaScript" ]
3
Markdown
ewarrenG/reddit-react
3726efc0b53f1455cc409409ade71885780a9e2b
6200ba179b4192148d00d7d9d2be5fd49becdccc
refs/heads/master
<repo_name>haginus/pao-labs<file_sep>/lab2/ex2.java package lab2; public class ex2 { public static void main(String[] args) { Person p1 = new Person("John", "Doe", 24, 1123444L, "student"); Person p2 = new Person("Jane", "Roe", 56, 2233444L, "teacher"); System.out.println(p1.ge...
74e457f75934aefe3616386c63e32323acdee703
[ "Markdown", "Java" ]
17
Java
haginus/pao-labs
4554599c1cd1f9e16d26f3aaa20e4cbe6873b3c0
52e6b4741f15b3f8eddf27aeda206164df8ddb3c
refs/heads/master
<file_sep>const path = require('path'); const webpack = require('webpack'); const ExtractTextWebpackPlugin = require('extract-text-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const V8LazyParseWebpackPlugin = require('v8-lazy-parse-webpack-plugin'); const CompressionWebpackPlugin = requir...
f61b2aefdcc8ad3374b61b182e146dd487075e1e
[ "JavaScript", "Markdown" ]
9
JavaScript
webpack-academy/starter-page
a78b6305face6f831c88083acfb927e48f5fd6ab
185d59de2ce29a0280707e65c96ae4e0781272c8
refs/heads/master
<file_sep>import React from "react"; import "./buyItem.css"; import NumberFormat from "react-number-format"; import db from "../CONFIG"; import ProductHover from "./ProductHover"; function BuyItem({ gameIcon, name, image, price, quantity, id, gameName, hero, quality, type, rarity, }) { const ha...
a34836322e56357add2c623db3b1be3f25e406d4
[ "JavaScript", "Markdown" ]
28
JavaScript
kriztkrtmg/steambazarnepal
971eca378563d4b7cf5ec073b17f132b323dfe60
b3395203c9f8181101675a793e0cbe1aa8003d96
refs/heads/master
<file_sep>/* * Copyright (c) 2018 <NAME> * * 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 agr...
2b951b8dd35947704776f32443c6b1ac5d2692bf
[ "Kotlin" ]
1
Kotlin
airmax93/CatchUp
d93b42ec7bf19c27b3569a766c5280fbed0c9122
17b19f49a847920163e431520b6da0c8974414f0
refs/heads/main
<file_sep>import * as firebase from 'firebase'; require('@firebase/firestore'); const firebaseConfig = { apiKey: "<KEY>", authDomain: "c71p-7bd59.firebaseapp.com", projectId: "c71p-7bd59", storageBucket: "c71p-7bd59.appspot.com", messagingSenderId: "555477332696", appId: "1:55547733269...
b2dccafe485b789a6cddc2e2ab748653e246db26
[ "JavaScript" ]
1
JavaScript
achillesshui/C72-P
f9fd45981f62fca753046169e5591016c5dc63ab
a5b33f9770ea0f706624bd67fceb3f621cc5d310
refs/heads/master
<repo_name>iosclubT/iosTree<file_sep>/README.md # iosTree The first practice(calculator) <file_sep>/calculator/calculator/ViewController.swift // // ViewController.swift // calculator // // Created by 上海海洋大学 on 17/3/12. // Copyright © 2017年 上海海洋大学. All rights reserved. // import UIKit class ViewController: UIView...
e1487813c3874cd7d606de5e0a46e10279ab39bc
[ "Markdown", "Swift" ]
2
Markdown
iosclubT/iosTree
8c1ebbc8b4e9bd972aa102c24262f1969f3485cf
1c0c01416033ecf5608378e885b48b731ba9fa89
refs/heads/master
<file_sep>#include <stdio.h> #include <stdlib.h> #include <math.h> /////////////////////////////////////////////////////////////////////////////// //Liste de fonction appel √ ©dans le programme //////////////////// double saisi() { //fonction saisi des nombres √ †traiter. double x = 0; ...
71fa0c3afc721d1533641070fe203cde79570011
[ "C" ]
2
C
xlf425/CalculStructure
1058cecd396e7abd652bda6466ff3f449f693947
aea01aaa722acfca6e39cb22a9c0633d327860d7
refs/heads/master
<repo_name>Omkar1493/myproject<file_sep>/rfile.py '''n=raw_input('enter the number of record to fetch'); f=open('russia.txt','r'); column = [] arr1=[] for line in f: column = line.split("|") column.append() print column[2];''' '''for data in column: print data[2]; print (arr1.sort())''' '''fi...
4733cd64f3c231140ea993de7ed347837253bb9e
[ "Python" ]
1
Python
Omkar1493/myproject
67e57989a7190dbe0cedecb7688f463b5cd48728
d11cdc34edc965063d7d87505dc2776ecf068928
refs/heads/main
<file_sep><?php namespace App\Controller; use Cake\Controller\Controller; class BooksController extends Controller { public function index () { $books = $this->Books->find()->fetchAll(); $this->set('books', $books); $this->render('index'); } }<file_sep><?php va...
c6b5636aee58644afc1a30dd07096297aa85b00c
[ "Markdown", "PHP" ]
5
PHP
merciof/sebo-rural-cakephp
3254bc12a50f646f4b3e525e151aba876957e63e
842c19b11a123beef5a9f5c2f0556344f3522229
refs/heads/master
<file_sep># gschedule Simple scheduling script to be used with Google Spreadsheet (and Javascript) <file_sep>/** * Smith ML Automated Scheduler * JCR -- (<EMAIL>) * ver 1.51b * MIT License * * Basic scheduling with Google spreadsheet and Google forms. Can be extended as necessary. */ function onOpen() { var...
7f251a234a4eb9e5f6230c239da856202f747629
[ "Markdown", "JavaScript" ]
2
Markdown
jcsagar/gschedule
d47c299451ece94fe3621c3accb2198b18d03c51
290dd0ae6d23fead449686b4f88ae2a9cdbb3f4e
refs/heads/master
<repo_name>gavalon/seattletimesbot<file_sep>/README.md seattletimesbot =============== This is the code for a bot that scrapes articles from the Local section of The Seattle Times, gets the google cached versions of the articles, and posts them to a subreddit. The idea was to find a way around the paywall. It worked n...
7c8455f1562f886e17472ee84d9ff09c3a258b49
[ "Markdown", "Python" ]
2
Markdown
gavalon/seattletimesbot
eb2f85664a4fe89ee3ffbb9fc5950ec8e2cd358b
691dc2acdfbe486bd132c42a928f40bfab78648d
refs/heads/master
<repo_name>Alcuri/Alg_BQI<file_sep>/Alg_BQI/src/Interacao/Menu_ComInteracao.java package Interacao; import java.util.Calendar; import java.util.Scanner; import BubbleSort.Bubble; import InsertionSort.Insertion; import QuickSort.Quick; public class Menu_ComInteracao { /*Esta eh a versão final utilizando...
7df5272ebf2ea98ed4d1fc5da493a31b03a087c8
[ "Markdown", "Java" ]
3
Java
Alcuri/Alg_BQI
68dfd37a497cf9e97bcd966c55e15c1eea983914
88bb467682c7f58434ee4ba4be3b319dd7e1a360
refs/heads/master
<repo_name>pisa-engine/wapopp<file_sep>/src/wapopp.cpp #include <wapopp/detail.hpp> #include <iostream> using namespace wapopp; template <class C, class Fn> void append_content(nlohmann::json const &node, std::vector<Content> &contents, Fn read_content) { auto content = read_content(node); if (detail::holds<C...
dbbf753cb50bf333d3caeec420c00f5f28c4617c
[ "CMake", "C++" ]
9
C++
pisa-engine/wapopp
25ff64e373bfaf51b24191cc7181b7db56119654
676f8bcab10c1d3584cad629e1e2da95cac607b4
refs/heads/main
<file_sep>import React, {Fragment} from 'react'; import './Nav.css' const Nav = () => { return ( <div className="nav"> <div className="row" > <div className="col-6" style={{textAlign:"left"}}> <h1 style={{color:"blue", paddingLeft:"40px"}}>User DashBoard</h1> ...
5224ca76f18372ab0e1e3f99994acad1f50c349b
[ "JavaScript" ]
5
JavaScript
shanu-droid/PlayAroundMovie-DashBoard
95ac4562e1b5256ac7f83691d8652cd08a7ce25f
81456aaef304125c6d7c1c4fd89bc566253cf63f
refs/heads/master
<file_sep>#!/usr/bin/env node process.title = 'watch'; var argv = require('minimist')(process.argv.slice(2)); var watch = require('../'); var pattern = argv._.shift() || argv.p || argv.pattern || argv.f || argv.files var command = argv._.shift() || argv.c || argv.cmd || argv.command; var options = { pattern: pat...
b6fd5d8a0bcca2d8ade7b1aec9e355415dd7ceb1
[ "JavaScript" ]
2
JavaScript
0xflotus/watch-cli
b5fd61de2dddc3ecc9b55f9efd0b7aa17c0c0042
6db52c36c72cf99f4c7d76a5777352f896e91114
refs/heads/main
<file_sep># coding=utf-8 # Copyright 2021 DeepMind Technologies Limited. # # 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...
a4a1423e679c091fec6bbf8a0d62a53dc74ad2bc
[ "Markdown", "Python" ]
41
Python
smbale/android_env
5ecfbfe56bb5843b298791d3c8c73b01a79e864a
db1bd314ff13b97487c64800dab4e6956236f4af
refs/heads/master
<file_sep>import { CounterAction } from '../action/counter'; const INITIAL_STATE = { count: 0, }; export function CounterReducer(state = INITIAL_STATE, action) { switch (action.type) { case CounterAction.INCREMENT_COUNTER: return Object.assign({}, state, { count: state.count + 1 }); ...
ec18baef1749500e1d96194cfbb6c23f2d47ab4e
[ "JavaScript" ]
9
JavaScript
Hamzakhann/uit-module-b
b458c8a18e0784fc2f836b2f361b333192896fba
2e713e25fad0dbf24240cffeb7a944c94b48c59b
refs/heads/master
<repo_name>henrytwo/EdsBlock<file_sep>/injection.js (function() { // just place a div at top right setTimeout(function() { var div = document.createElement('script'); var blacklist = ['Ahmad', 'Ahemd', 'Ahmed', 'Hamza', 'Ali', 'Jerry', 'Kennedy', 'Syed', 'Hasan']; console.log('heres da b...
1a62970e5b58906d5068994ad108f8a4f2bb1423
[ "JavaScript", "Markdown" ]
2
JavaScript
henrytwo/EdsBlock
a31c52b1a41fbd14b58f77e887429d0f3cfa1fb5
b6d92bc2498c32c41bd4b218dc89301334e243c0
refs/heads/master
<repo_name>thomazcarvalho/csgo_data-web_scraping<file_sep>/studying_web-scraping-(p2)(getting-hltv-data).py from bs4 import BeautifulSoup import requests import mysql.connector conn = mysql.connector.connect( host='localhost', user='root', password='' ) cursor = conn.cursor() cursor.execute('USE csgo_hltv...
d16d1bcea69707eb90a7160e1c14ecdaffa60747
[ "Markdown", "Python" ]
3
Python
thomazcarvalho/csgo_data-web_scraping
52259b98e9b55acafb4b10bcc9a222100e43ee95
f19278846b2b83f567880617f70cfe2e06077fd4
refs/heads/master
<file_sep>var apl = angular.module('apl', []);<file_sep>AppdevPremierLeague =================== <file_sep>apl.factory('data', function(){ var listOfPlayers = [ { name: '<NAME>', bats: true, bowls: true, team: '', cost:100, sold: false, active: true, description: 'I ...
56274340981a25f5fae4239aa689d0c2bc3ab8fb
[ "JavaScript", "Markdown" ]
3
JavaScript
adityasaxena/AppdevPremierLeague
1e8ef75157dc3c09a9c93b63be3e29cbe814632d
b9183506759657c933a51556609614e0bd4348d9