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/main
<repo_name>skaiterskull/api-admin-cms<file_sep>/src/routers/tokenRouter.js import express from 'express' const Router = express.Router() import { verifyRefreshJWT, createAccessJWT } from '../helpers/jwt.helper.js' import { getUser, getUserByEMail } from '../models/user/User.model.js' import { createPasswordResetOTP } f...
e80ab56cdf9c7acfd2c1790c29ddb16cd822d5bb
[ "JavaScript", "Markdown" ]
7
JavaScript
skaiterskull/api-admin-cms
5fe4258c971cc8c85877b095fc56a20a6b41414d
ad0e6e248379169d70b03c6fa1e423ecd96d9823
refs/heads/main
<repo_name>faraz176/Connect_4_Ai<file_sep>/Code.py class Board(): def __init__(self): self.board_game = [] self.board_dict = {} def board(self): row_wise = ['A', 'B', 'C', 'D', 'E', 'F', 'G'] column_wise = [1,2,3,4,5,6] for i,k in enumerate(row_wise): for ...
9a6235c0a5fc8d276e6011b1304da6487438f7d1
[ "Python" ]
3
Python
faraz176/Connect_4_Ai
b7a77e45df36fcfec981162c4f7cb5bfdf7a07ea
ef480e8d6c3bcc9b668a725866270d8a56d91a33
refs/heads/master
<file_sep>''' AUTHOR: principio LAST EDITED: 2015-06-04 22:34:31 DESCRIPTION: Circle item class. KNOWN ISSUES: *> Will crash if anything on OpenGL side fails (which, mind you, was barely tested). ''' from helpers import getRandomColor, load_GLshaders import constants as const import geometry import py...
b1e19026f689405218464cb3a5138806e7dc8d72
[ "Python" ]
9
Python
principio/Final
578b179f84946e3b8f18c0905f5ff46b63126175
997631d2cdc003ea5f200dfc01208a2f229b280f
refs/heads/master
<file_sep>class ContactForm < ApplicationRecord validates :name, presence: true validates :email, presence: true, email: true validates :message, presence: true #honeypot attr_accessor :telephone validates :telephone, inclusion: { in: [''] } end
df004bec64902d5d2e42490272e2bce0bd89fd4f
[ "Ruby" ]
1
Ruby
Capt-Obviouse/portfolio-series
020c5f183c54c0336c7caf95ce949754d72b1f4b
0ddd99fcf5e925014f1fc1217c711dc2121ccfab
refs/heads/master
<repo_name>qyjandroid/h5-logutils<file_sep>/test.ts // import LogUtils from "./build/es6" // ES6 const LogUtils = require("./build/cmjs").default; // commonjs // console.log("LogUtils==", LogUtils, "===hhh==", LogLevel) //import LogUtils from "./build/es6/index"; const logLevelEnum = LogUtils.getAllLogLevel(); //2....
99ef9cf9d1d9dd738308cab3ae7a8f8f00e96d5d
[ "JavaScript", "TypeScript", "Markdown" ]
13
TypeScript
qyjandroid/h5-logutils
1ff82f5412883fdd0f26721eca53d16238079d94
5302bc354d385be2a5703dd35ef1d196736d9a5f
refs/heads/main
<repo_name>Starichok1993/Organizer<file_sep>/src/Organizer.Web/ClientApp/src/app/reducers/index.ts import { createSelector } from '@ngrx/store'; import * as fromTodos from './todo.reducers'; export interface State { todos: fromTodos.State; } export const reducers = { todos: fromTodos.reducer } export const ...
7a6cbca317156e609ee9504011d4bc6f7efdf34f
[ "Markdown", "C#", "TypeScript", "SQL" ]
39
TypeScript
Starichok1993/Organizer
3d4977e9d0bcc2bc01dacadef165ec26c3cb2156
2b1ac0d164cbd719c94e53786881d3b6b19a0b4d
refs/heads/master
<file_sep>urllib3>=1.24.1 <file_sep># MyLibrary Organize papers so that relevance papers is easily assessable. This is a 4-week daily coding project. I am planning to build a Python app which will help me to follow other's researches. It's my first time playing with the web, I have no idea how doable it will be... ...
f0d25a3218c5810aafe5f8f393d222e14743f145
[ "Markdown", "Python", "Text" ]
11
Text
Hoseung/MyLibrary
c7e3cd49670bd45edce787eac75a6f702d96d0d4
163b59a2f63f1fae07733e4a227dc7145506b551
refs/heads/master
<repo_name>mousechen/courses<file_sep>/deeplearning1/nbs/myvgg16.py # 自己定义一个Vgg16的类,封装起来。 import os, json from glob import glob import numpy as np from scipy import misc, ndimage from scipy.ndimage.interpolation import zoom from keras import backend as K from keras.utils.data_utils import get_file from keras.models i...
39b775bda49398bb3b5f13dea5e6edcc3792577a
[ "Python" ]
1
Python
mousechen/courses
8eab58a6aa9b3d0c8b926408deb5c88469efa834
ca1e12a0777681cbab342cac90f1d43837303e4d
refs/heads/master
<repo_name>BibhashK/Threads-in-Java<file_sep>/README.md # Threads-in-Java Threads code <file_sep>/Threads/src/ThreadSync.java public class ThreadSync implements Runnable{ public void run() { // TODO Auto-generated method stub } public synchronized void run(String name ){ System.out.println("cur...
51f259540a564644d1f408b99b10059e4b8fec95
[ "Markdown", "Java" ]
3
Markdown
BibhashK/Threads-in-Java
e1f32fb4794dec93a49e284da12647fa5dfe65ab
1e2994e15cf1fa9a3e8867da016adea2ae377ebb
refs/heads/master
<file_sep><?php use Illuminate\Database\Seeder; class UsersTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('users')->insert([ 'first_name' => 'Manuel', 'last_name' => 'Bruña', '...
b8b366a65955d9ed0c1b716d8404a1047d24d9ba
[ "Markdown", "PHP", "Shell" ]
3
PHP
gemins/Lumen-JWT-login
5bb48fddc909e7321fe3ac6a2c741db45a2ed22a
2085e52dca95f4b0ba2a8ce958b342ec68674f2a
refs/heads/master
<file_sep>// Copyright 2015 <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 agreed t...
10138c8e51487bf2b95a3ca29788f1eebb85f782
[ "Markdown", "C#" ]
405
C#
ESOmenium/WeatherSampleCode
347368537ff2316a5cccf49fe8cfd65c6d176ab4
c3cc9898acd2ba94173f11aaf9102cce99777607
refs/heads/master
<file_sep>// // ViewControllerInterface.swift // MVC // // Created by <NAME>. on 5/9/20. // Copyright © 2020 <NAME>. All rights reserved. // import Foundation import UIKit protocol ViewControllerInterface: class { associatedtype ContentView var contentView: ContentView { get } func load...
b8179030d84cce73b15d95e4e8749a1b41522c2e
[ "Swift", "Ruby", "Markdown" ]
26
Swift
demonukg/MVC
5d3df3f9fb04c190853652dd9f2b7b2b4a321439
aafd2b50a25a776b2f07e6971379de3cecab98fc
refs/heads/master
<repo_name>GeeKayeBehnke/GitHubExample2017<file_sep>/GitHubExample2017/main.swift // // main.swift // GitHubExample2017 // // Created by behnke on 12/6/17. // Copyright © 2017 behnke. All rights reserved. // import Foundation print("Hello, World!")
31b8bc25848b7ad8018b2ef4f1f8f22b83a09160
[ "Swift" ]
1
Swift
GeeKayeBehnke/GitHubExample2017
84f14b6d0fc4863b67f76757330acd7da9ceba5d
fc15ff099f3a8cb65162f668fd22bc6837267e13
refs/heads/main
<repo_name>renantms/payment-sabadell<file_sep>/src/main/java/br/com/invillia/payment/control/PaymentControl.java package br.com.invillia.payment.control; import br.com.invillia.payment.domain.request.PaymentRequest; import br.com.invillia.payment.domain.response.PaymentResponse; import br.com.invillia.payment.service....
20a175492a1f23d05d44264049d59c53203b3f39
[ "Java" ]
3
Java
renantms/payment-sabadell
3480fe4d73c0d0991962867ac610df213332039f
99da1c0e5098376a11b2e6d7fcfcc82d7a51c0b3
refs/heads/master
<file_sep>import de.cgi.selenium.pageobjects.HornbachMainPage; import io.github.bonigarcia.seljup.SeleniumExtension; import io.github.bonigarcia.wdm.WebDriverManager; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.s...
750db4a919599a7b8898194edd09912b52358f2d
[ "Java" ]
4
Java
GoranStuc/testingstuff
8ff8a865d272fcd26a43e2428adad68d51a25430
6207b1b0d20d04f0e70fc3e08f41effe53b92189
refs/heads/master
<repo_name>wasanthag/concourse_ci_pipelines<file_sep>/create_and_upload_base_image/Dockerfile FROM alpine:3.4 RUN apk update RUN apk add python RUN apk add py-pip RUN apk add python-dev RUN apk add py-requests RUN apk add py-lxml COPY requirements.txt /tmp/ RUN pip install --requirement /tmp/requirements.txt #COPY a...
4264019cab9558b34413868c337a4eae13cfa705
[ "Markdown", "Python", "Text", "Dockerfile", "Shell" ]
7
Dockerfile
wasanthag/concourse_ci_pipelines
38aebb1879731ba6976ea893f274cd8a4ce4ba6a
446d765b2c8160badf8312564373f15f493b0ebf
refs/heads/master
<file_sep>var self = require('sdk/self'); var { ToggleButton } = require('sdk/ui/button/toggle'); var tabs = require("sdk/tabs"); var l3nsOn = false; var button = ToggleButton({ id: "switch-l33t-mode", label: "Switch leet lens on/off", icon: { "16": "./icon-16.png", "32": "./icon-32.png", "64": "./ic...
da789a57f2266071f24daa66cffccbd1b7741853
[ "JavaScript", "Markdown" ]
3
JavaScript
takahawk/l33t-l3n5
f588bbf3e7a17a0ad50d2890c7fec00f147fa2b7
5c43d9a234ef3dbbe887aaadb7215c8affbda6d6
refs/heads/master
<file_sep>var DoPattern = (function (viewport, options) { "use strict"; var stage; var circles = []; var connector; var connections = []; var initialize = function() { stage = arguments[0]; var vertices = arguments[1]; //create background stage.addChild(Utils.createjs.createRectangle(0, 0...
e6a5e658cfbdf2dc09488e46823082eca0904f3d
[ "JavaScript" ]
3
JavaScript
achirita/unlock
d44a405f3e04d4d7f344dbb8293fd1e2be2afdb0
9d1f6112942b010f7683d5da78aa0b1c2e81aac3
refs/heads/master
<file_sep><?php namespace App\Http\Controllers; use App\Models\Categoria; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; class CategoriaController extends Controller { public function index() { $categorias=Categoria::paginate(5); /* $categorias=$categorias->distinct()->g...
5d0f8b2228e3210fd93fa251a3ab7366034b2278
[ "PHP" ]
23
PHP
JhonatanWCL99/gimnasiosi1
dbbade23b64a98153c8b32cf78045f3aa7eb3432
9755dcd8f901ce771e7a6b602ccf8b87f92051fb
refs/heads/master
<repo_name>seyleigh/burgurz<file_sep>/db/seeds.sql INSERT INTO burgers (burger_name, devoured) VALUES ("Avacado and Fried egg", false); INSERT INTO burgers (burger_name, devoured) VALUES ("Black Bean patty", false); INSERT INTO burgers (burger_name, devoured) VALUES ("Turkey with Avacado", false);<file_sep>/README....
93347dbdd7f288af7456fa95402b5d4bf2e2114f
[ "Markdown", "SQL" ]
2
SQL
seyleigh/burgurz
17f3d68e47e98ae71317f23636c4ca68253982d5
e191cb0bab378a729997193f50fc38fa29d15586
refs/heads/main
<repo_name>Ori2846/3drunner<file_sep>/PlayerController.cs using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerController : MonoBehaviour { Rigidbody m_Rigidbody; public float m_Speed; void Start() { //Fetch the Rigidbody component you...
04f92ff8fc2e6933e453f078f716660b8a20699d
[ "Markdown", "C#" ]
2
C#
Ori2846/3drunner
fcf5355f128779e51aafa76e7363ee7d0fa4e823
0f04955e4269e5d71925ade99d5cdf6f1d2df51d
refs/heads/develop
<file_sep>export default function Animaciones() { return ( <div> <h1>Animaciones</h1> </div> ) } <file_sep>import React from 'react' import { Container } from './styles' import Router from './Router' function App() { return ( <Container> <Router /> </Container> ) } export default ...
6219af936feeac15d65b84b513d442fe779208b9
[ "JavaScript" ]
13
JavaScript
nickothan/practica-de-conocimientos
c01bdeb88ddffe0545603409fc74a12c73909170
6feb9d0a0c68edc4220a0ea5dbd67b0c91bbeda0
refs/heads/master
<file_sep>export interface Article { title: string; contents: string; imgSrc: string; date: string; }
b37d950c844c3b2756b222d61128ae10378a836b
[ "TypeScript" ]
1
TypeScript
thjang94/homepage_project
0964fd2ec9479bee4d028d72152da9fbe9890342
b0d6a67479f911e7e3894c60b4928f5d370493b4
refs/heads/main
<repo_name>wangEtsu/muffin_break<file_sep>/barista-diary.js // set initial counts localStorage.setItem("day", 20); localStorage.setItem("dayCount", 0); function getRandomArbitrary(min, max) { return Math.ceil(Math.random() * (max - min) + min); } console.log(localStorage.getItem("dayCount")); // 4 ...
984d3c6864081d01ec6a05ba293a5ebc5c678841
[ "JavaScript" ]
1
JavaScript
wangEtsu/muffin_break
d6cc5ae1ed44de2a4f23c892e087eafad13c7bf9
66626f8430b047a7a5a7847341d7ecd692bb821a
refs/heads/master
<repo_name>s20168/ASD<file_sep>/Zadanie3.py # set_of_numbers = [0, 1, 1, 0, 1, 0, 1] set_of_numbers = [4, 14, 14, 4, 14, 4, 14] for i in range(len(set_of_numbers) - 1, -1, -1): index = 0 for j in range(0, i + 1, 1): if set_of_numbers[j] > set_of_numbers[index]: temporary_index = j list =...
a3743053018fbee6fc7a6975c868a27c9823f328
[ "Python" ]
5
Python
s20168/ASD
dabd55748879e66a6e212947fd514314bcc8088a
884828c07fb012cca8c28343e8b27ac833fdb034
refs/heads/master
<file_sep>#!/bin/bash mkdir dump-cache rm dump-cache/*.dump grep rw-p /proc/$1/maps | sed -n 's/^\([0-9a-f]*\)-\([0-9a-f]*\) .*$/\1 \2/p' | while read start stop; do gdb --batch --pid $1 -ex "dump memory dump-cache/$1-$start-$stop.dump 0x$start 0x$stop"; done cat dump-cache/*.dump > $1-dump
980b182273e67d143deceb906621a97cae6e1fdd
[ "Shell" ]
1
Shell
4shadoww/linux-memory-dumper
0a48bed82e6f71fff3f4e4b543c4e459bb197726
d91f9bbbcf7862c31263e0dedc03d1503a78cc4e
refs/heads/master
<repo_name>chrysler76/logoergo<file_sep>/email.php <?php header("Content-type: image/png"); // Your email address which will be shown in the image $email = "<EMAIL>"; $length = (strlen($email)*8); $im = @ImageCreate ($length, 20) or die ("Kann keinen neuen GD-Bild-Stream erzeugen"); $background_color =...
5ef7b10cb91b8a1bd33c37e5e5b38fa55d8f6bdf
[ "PHP" ]
1
PHP
chrysler76/logoergo
2fda77dca287860dbc9fc6af7c74e023281116f4
e43ad6fbfd3a11cb3886fec56c04f8d40c75046a
refs/heads/master
<repo_name>be222dd/Round-Robin-Alghorithm<file_sep>/src/RR.java /** * Created by beysimeryalmaz on 2017-11-12. */ /* * 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. */ /* * To change t...
f8817bb0c33d80b907636a55c249ed69fe603245
[ "Java" ]
2
Java
be222dd/Round-Robin-Alghorithm
b6ae5494869ca3c121c02f1ec3f8571589a7a532
647526e3edde475b8301de8901226850764c6b6f
refs/heads/master
<repo_name>420805513/Text0810<file_sep>/app/src/main/java/com/example/dllo/text0810/Text.java package com.example.dllo.text0810; /** * Created by dllo on 16/10/21. */ public class Text { private String b; } <file_sep>/README.md # Text0810 项目描述
f28d76a09180edf5520866e328a876d1dbd99910
[ "Markdown", "Java" ]
2
Java
420805513/Text0810
52da8110e776c6d1d2701d03455a91bafd9a05a7
b21b99be9739e6ef4bbeb5332fa99a23d0e27b64
refs/heads/main
<repo_name>wabzqem/AU-COVID-vaccine-certs<file_sep>/Shared/Service/DataFetchers.swift // // DataFetchers.swift // AU COVID Verifier // // Created by <NAME> on 15/9/21. // import Foundation import UIKit class QRCodeFetcher: ObservableObject { @Published var image: UIImage? func getQRCode(irn: Int, comp...
7407ed2f8ad532be259b84dc5ad5ffa71cf57f36
[ "Swift", "Markdown" ]
9
Swift
wabzqem/AU-COVID-vaccine-certs
66e27b3355b0ea6600c5e10eb15c2d111f1e606d
b5456d3eee388317eba674c8739e357429f3d0a3
refs/heads/master
<file_sep>import { Component } from '@angular/core'; import { IonicPage, NavController, NavParams } from 'ionic-angular'; import { LoadingController } from 'ionic-angular/components/loading/loading-controller'; import { AngularFireDatabase } from 'angularfire2/database'; import { ProductDetailsPage } from '../consumer'...
8e2c0b700cca83ddd5a4410fb82e8ccdbfe5be30
[ "Markdown", "TypeScript" ]
61
TypeScript
ashaqmir/SynerOme
6888047b9de603f09a279a8e4fb3ebb6a2ecfd86
7b3e7828afdbc0ca497c56263fac3bfeb62514c2
refs/heads/master
<repo_name>SanjeevKV/algotrading<file_sep>/Scrapers/capital_market_scoreboard.py from selenium import webdriver from selenium.webdriver.common.keys import Keys import numpy as np import pandas as pd import datetime def main(): profile = webdriver.FirefoxProfile() profile.set_preference("browser.download.folderList",...
9541cf55571419fc28a0e89ad625828f94be5ab0
[ "Markdown", "Python" ]
7
Python
SanjeevKV/algotrading
c45053f846a330a45a642031cdb19b1e59ac6278
2bc59248c131e58b48accc8c283747caffd552ab
refs/heads/master
<file_sep>package coroutines.practice.oncompletion import kotlinx.coroutines.ExperimentalCoroutinesApi import kotlinx.coroutines.flow.* import kotlinx.coroutines.runBlocking fun foo() = flow { emit(1) throw RuntimeException() } /** * onCompletion is just like 'finally' in try/catch block. It's used for exec...
36b83251d8749d3d5f0c484ce685a3fd1968b0db
[ "Kotlin" ]
15
Kotlin
YogeshUmeshVaity/kotlin-coroutines-language-guide-practice
f729710a0c7044c20da0e455201bb12b4438e6e3
3d4eea77e74c743d3757dbbfcaf1cd66b0c11511
refs/heads/master
<repo_name>Evolver90/LanguageGenetics<file_sep>/tree/Tag.java package tree; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Random; public enum Tag { START { @Override public String toString() { return "START"; } }, CC { @Override public String toString...
307b3e01a0a1dfc09f95d2ddb57b3a9cd48f57e8
[ "Java" ]
3
Java
Evolver90/LanguageGenetics
e21932cfe717966a11b84d40d9ba17396418a43e
ffaf1ffb1c590858370116ae7acaac4c93b5703b
refs/heads/main
<repo_name>OnlyTense/DiscordJS-Bot<file_sep>/Commands/ping.js module.exports = { name: "ping", description: "This is a ping command!", execute(message, args, Discord, client){ message.channel.send('Pong!') const Embed = new Discord.MessageEmbed() .addField("My Latency is:", `> ...
35979f6039183658be5ba72646aab537b09af1d1
[ "JavaScript", "Markdown" ]
5
JavaScript
OnlyTense/DiscordJS-Bot
b12ea3762ca01a031175404c2136bb9342207803
b920e723db25c7715fa9cc6e1fce32bad0057b92
refs/heads/master
<repo_name>rmnppt/codeclan<file_sep>/BBall_kNN.R ###-----------------------------------------------------------------------### ### Predicting the salaries of baseball players with k nearest neighbours ### ###-----------------------------------------------------------------------###...
6fb988a7c325fced27c7d2c812395be0aab723cc
[ "Markdown", "R" ]
2
R
rmnppt/codeclan
e30f1f208b534efc711eada1120e143603ec4da6
ea5e9e93258554b2201d2122d7e1229c010c48d6
refs/heads/master
<repo_name>himanshi2626/Script_Twoo_Auto_Two<file_sep>/target/site/cucumber-pretty/report.js $(document).ready(function() {var formatter = new CucumberHTML.DOMFormatter($('.cucumber-report'));formatter.uri("src/test/java/Features/a1.0_PDP_Email_Sign_UP_Incorrect_Data_1.feature"); formatter.feature({ "line": 2, "nam...
fc9c9e07d0638eb5c97c7461ee24bfb967686404
[ "JavaScript" ]
1
JavaScript
himanshi2626/Script_Twoo_Auto_Two
14cf73de333857c5e7f3635d4c41ff5d750a8dab
ebff333a3c8f9ce7026718a9e41b1cfbe78d8a22
refs/heads/main
<file_sep>img2pdf==0.4.0 lxml==4.6.2 pikepdf==2.8.0.post2 Pillow==8.1.2 PyPDF2==1.26.0 <file_sep>import glob import img2pdf from PyPDF2 import PdfFileReader, PdfFileWriter def convert_all(regex="*.jpg"): images = glob.glob(regex) images.sort() convert_list(images) def convert_list(images): for image...
e8551d5f94bf53f0822cd3633483b136cc8f67b5
[ "Python", "Text" ]
2
Text
aless-ishy/common_life_utilities
9df67aa86b14a74c526e910d695bc08e3019bc50
4b9419eaa66287309c2e26b7e4496642ac740eab
refs/heads/master
<file_sep>package report; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence....
3ea278590fb1079b36e02bba7e59a434079b13f0
[ "Markdown", "Java", "TypeScript" ]
13
Java
wjchwygood/demo
6ce761a9e5871fc7385eedd438bb39469f08536e
f5aec3f3f0bb8d0371dcde43e937e9910d254e27
refs/heads/master
<file_sep>""" Compared with model_baseline, do not use correlation output for skip link Compared to model_baseline_fixed, added return values to test whether nsample is set reasonably. """ import tensorflow as tf import numpy as np import math import sys import os BASE_DIR = os.path.dirname(os.path.abspath(__f...
f54c9b519b2f7348d092fab169ef9e45cd3ebc09
[ "Python" ]
4
Python
fly519/ELGS2
88de170dfcab167776f47ebc5e4c5cffab91ed92
b9d694785be6323f0aeff0ea0d14a230e5fd4000
refs/heads/master
<repo_name>homam/android-landingpages-apps<file_sep>/maFeaturePhoneHtml/localhost_7645/Special/Scripts/Babelbay/Dumb/FlashAudioPlayer.js var __extends = this.__extends || function (d, b) { function __() { this.constructor = d; } __.prototype = b.prototype; d.prototype = new __(); }; var FlashAudioPlayer = (...
1021af75f89d797039c28192225cff18d055b478
[ "JavaScript", "HTML", "Markdown" ]
10
JavaScript
homam/android-landingpages-apps
4420df6bba38ef5e68cf3fc5953890842c7580c5
6a3df39aac6102ed46ec7e43a7307bb8a9f0ac95
refs/heads/master
<repo_name>liu1234/perceptron<file_sep>/cpu/testers/traffic_gen/traffic_gen.cc /* * Copyright (c) 2012 ARM Limited * All rights reserved * * The license below extends only to copyright in the software and shall * not be construed as granting a license to any other intellectual * property including but not limited...
6e5fbb0af54311e70fdaba8732ab59124873af0a
[ "Markdown", "Python", "C++" ]
12
C++
liu1234/perceptron
4a427cd252cd40f2cafb96acc18db8f1ca4ac939
05c24eaada5720e7cacd178b20fec71cbec471ae
refs/heads/master
<repo_name>stephenmussel/weekend-react-gallery<file_sep>/notes.txt Strategies to not panic: - Build the easy setup stuff first, build moment - kicking it off Fri while it's fresh - caffeine - take breaks Todo Provided [x] server-side GET to retrieve data [x] server-side PUT to update (like) photo [] no DB needed fo...
767c7bade8308610049dfe699c3e7def2ff4a52f
[ "JavaScript", "Text" ]
5
Text
stephenmussel/weekend-react-gallery
8e5729c636ca01fb8d6d2a52bbe0eaaee3e73dc8
0cbd06a2ec4d6e2f1e9a17070f478cd01eb56d73
refs/heads/master
<repo_name>quocdatt8/week2-assignment<file_sep>/baseProject/BaseRN-master/App/Config/ScreenConfig.ts import { Color } from 'App/Theme'; const ScreenConfig = { headerColor: Color.headerSafe, safeAreaColor: Color.headerSafe, }; export default ScreenConfig; <file_sep>/demoHook/AppNavigation.js import React, { useStat...
aa1e1bb0bb7c7d0dc84b2c24fb8468b2bca6ee9f
[ "JavaScript", "TypeScript" ]
22
TypeScript
quocdatt8/week2-assignment
6f02bf360999e4842195d9c654d2b5210f2e8a78
b4747538cb21fecb5a70b93891806bbd8878e5b1
refs/heads/master
<repo_name>vanh17/panthrMath<file_sep>/test/finite.spec.js var chai = require('chai'); var expect = chai.expect; var precision = 1e-10; var utils = require('../panthrMath/utils'); var main = require('..'); describe('finite distribution', function() { it('specified via list of values and probabilities', function() {...
99043deee789cf0984ff1d4bdef29aed0bb114b4
[ "JavaScript" ]
2
JavaScript
vanh17/panthrMath
9521f899b7c494e787da37759974203a889073cb
cc3d967fc1d6ec5df96f4be5ed656fd4a1c70134
refs/heads/master
<file_sep>//CREATE A ROTATING CUBE AND ALSO A CAMERA WITH A RIGID BODY var scene, camera, renderer, clock; var keyboard = {}; var player = { height: 3.0, speed: 0.2, turnSpeed: Math.PI * 0.02 }; var geometry = new THREE.BoxGeometry(1, 1, 1); var material = new THREE.MeshBasicMaterial({ color: 'blue' }); var cube = new...
78cfdc730c386340ef03db32d6c08b7d2ac4fbc2
[ "JavaScript", "Markdown" ]
2
JavaScript
Cesarsk/My-Little-Universe
466825bfb75db02a1a68a84ab056be6b3132e71b
160a66030ae5fc77d8987978aae284595a217fc0
refs/heads/master
<file_sep>/** * <NAME>, 107, Assignment 2 */ import java.util.Arrays; import java.util.stream.Collectors; /** * SimpleList class implements methods to create and use a custom ArrayList */ public class SimpleList { private int[] list; private int count; /** * creates an array called list and a co...
e1d7e5533e0a281692949ca43e904ab67377a5b1
[ "Java" ]
2
Java
ahomais/360-Assignment-2
436fd2cb615125199d7a62ffbcafd530e4bbe976
b9589171a2592dd0f63e4396b91a6996bba918d2
refs/heads/master
<repo_name>alwaysleep/aki-sample<file_sep>/src/main/java/com/aki/sample/service/impl/OnlyForTestServiceImpl.java package com.aki.sample.service.impl; import com.aki.sample.service.OnlyForTestService; public class OnlyForTestServiceImpl implements OnlyForTestService { } <file_sep>/src/main/java/com/aki/sample/...
c5707c81405c04f690f0721d63502f8cea3d072d
[ "Markdown", "Java", "SQL" ]
6
Java
alwaysleep/aki-sample
12d6daf844d74b4edbcfe1fb15c907c833d3045c
19c7cd04a42d3d28040516448cfd7671d0c89a47
refs/heads/master
<repo_name>Mr-Jess/color-converter<file_sep>/README.md # Color Converter Color converter app is a digital color flow-chart that is simple and easy, targeted towards children based learning. ## Objectives / Usage * When any **two** primary colors are mixed together the outcome will result in its secondary color. * Wh...
f79f7b7c0033667e3c56362cd1cf8ab172b74df6
[ "Markdown", "JavaScript" ]
2
Markdown
Mr-Jess/color-converter
2be0569acd3d424a12c6e9e8360412d3b86907dd
059cb812e7ccf4ff6d44f236b487c8993d1a6ff7
refs/heads/master
<repo_name>Gharibw/RTBD<file_sep>/CarMate/mcslptds.1/README.txt Cars are equipped with various types of sensors that notify the current status the car. Moreover, new automotive technologies exist, such as Connected Cars, Android Auto, and CarPlay, which are built to provide some effective solutions like automatic notif...
d0047d1f70fa593a55815764154209b7245ac8c6
[ "Markdown", "JavaScript", "Text" ]
3
Text
Gharibw/RTBD
3c57c753b209b7ff88e54a1f4645f727b1c01d22
a520eb8ea2ebd9412155970cf6c3f1933393f969
refs/heads/master
<file_sep>library("Phenoflow") library("dplyr") library("ggplot2") library("grid") library("gridExtra") library("egg") library("qdapRegex") library("scales") library("cluster") library("factoextra") library("flowClean") library("nlme") library("mgcv") source("functions.R") my.settings <- list( strip.background=list(c...
bb3f3893f8ac787ffaa6ff42574045e364fc1974
[ "Markdown", "R" ]
2
R
bpollner/WaterResearch_Props2018
3db7878a53b52624b55aae2b4e98fc8484a7b7f5
baa7ced24b89ee72485fc5b9b310f86ec2c7a415
refs/heads/master
<file_sep># EDGECASTLE ASP.Net Identity (Graph) # An ASP.NET Identity provider backed by the Neo4J Graph Database.<file_sep>using Microsoft.AspNet.Identity.Owin; using Microsoft.Owin; using Microsoft.Owin.Security; using System; using System.Collections.Generic; using System.Linq; using System.Security.Claims; using ...
d3deb07b54f5f4a7da556ef1657258bc9ccab8e6
[ "Markdown", "C#" ]
9
Markdown
edgecastle/AspNetIdentityGraph
1d37fdf4c184bbb0902e8bfedaa2ec569aba2085
ac537f18f8f89a3069ad7244c514a532194e2ab3
refs/heads/master
<repo_name>danielfedatto/typewriter<file_sep>/typewriter/stories/index.js import './stylesheets/typewriter.scss' import './plain-text' import './rich-text' import './contextual-toolbar' import './video' import './embed' import './image' import './inserter' import './showcase' <file_sep>/typewriter/src/plugins/paragrap...
558fb94ad2eefe6517e815eef01ffc7645fda970
[ "Ruby", "YAML", "JavaScript", "Markdown", "Dockerfile" ]
58
JavaScript
danielfedatto/typewriter
75ffbdc3cf576202cc457c883fca52b4a88418d0
191ac25438f887b01c83f25dcd2c17cadb2d9992
refs/heads/main
<file_sep> ================================================================== Migrating a DIY TGW to Aviatrix Managed TGW Deployment ================================================================== If you built an AWS Transit Gateway (TGW) deployment by yourself (the DIY way) and would like to migrate to an Aviatri...
d2ef81b9e505305a3851b7932b7f1f48f6834a49
[ "reStructuredText", "JavaScript", "Markdown", "Text", "Shell" ]
333
reStructuredText
AviatrixSystems/Docs
1cf6e64dac41e3286c312cd8a66c6ca3101c05c1
54993081dabd25391c8272254f984681c1af7285
refs/heads/master
<repo_name>kyam3235/OpenGLTraining<file_sep>/OpenGLTraining/OpenGLTraining.cpp // OpenGLTraining.cpp : アプリケーションのエントリ ポイントを定義します。 // //OpenGLを使ってグラフィック処理を行ってみるためのアプリ //参考 //THe Program Ported to Windows //https://msdn.microsoft.com/ja-jp/library/windows/desktop/dd369065%28v=vs.85%29.aspx #include "stdafx.h" #include "...
6ae9a1f3ae3073f04ccec0d13b7be09e5ecb85ed
[ "C++" ]
2
C++
kyam3235/OpenGLTraining
4a425253f6c9c47c04f7418ad17186b44518e274
2a2225d2657bde9a322e0babf0f81226f37f5ad2
refs/heads/master
<repo_name>JimzyLui/pre-immersive-challenges<file_sep>/insert-dashes/insertDashes.js module.exports = function insertDashes(num) { // write your code in here var str = num.toString(); var result = str[0]; var isEven = x => { return x % 2 == 0; }; for (var i = 0; i < str.length - 1; i++) { if (isEven...
f099908dd9c6122ee23039233ad110554b316bb4
[ "JavaScript" ]
11
JavaScript
JimzyLui/pre-immersive-challenges
f33dc7cdb28400e9408c824e2241cc1b7dc9e1d0
8eeeb9aa690ff9d9a4200aeea47a48aff0d6e828
refs/heads/master
<file_sep>from django.db import models # Create your models here. class Author(models.Model): full_name = models.CharField(max_length=160, verbose_name='Имя') birth_year = models.SmallIntegerField(verbose_name='Дата рождения') country = models.CharField(max_length=2, verbose_name='Страна рождения') de...
ee119ecf22862bbbaeab1d796af3a1842765dea6
[ "Markdown", "Python" ]
7
Python
Joly-Roman/D6_HM-RRR
46f992f387d2e86d072df87e988abc6c66bf54b5
35cce9cb2eb43b91c55d4c5de5b2d0155166b5f3
refs/heads/main
<repo_name>Eteye77/HR_database_analysis-using-SQL<file_sep>/sorting_and_grouping.sql # Sorting-and-Grouping CREATE TABLE EMPLOYEES ( EMP_ID CHAR(9) NOT NULL, F_NAME VARCHAR(15) NOT NULL, L_NAME VARCHAR(15) NOT NULL, ...
1d668438e54512d85b21325fc9162f1ffd421500
[ "SQL" ]
1
SQL
Eteye77/HR_database_analysis-using-SQL
e044a2eaa5da45c9d5902d5b769528156021bb22
abc184f2f58454b1ad837bfc7397e4538eda49e7
refs/heads/master
<repo_name>serpent5/SO53654020<file_sep>/README.md # SO53654020 Sample repository for configuring ASP.NET Core to support Google's OAuth login process without using ASP.NET Core Identity, in response to a Stack Overflow question [here](https://stackoverflow.com/questions/53654020/how-to-implement-google-login-in-net-c...
1a81d68c5a05b062ae08745c8efbbf5bcc25a5bf
[ "Markdown", "C#" ]
4
Markdown
serpent5/SO53654020
bc8d5083b96c9d6f4c84ce34cabfb7471221e9d5
e6704f9149c7089977e8bff66d5174bfb9c1e529
refs/heads/master
<repo_name>RoterFuchs/photoweb<file_sep>/src/HTW/PhotoWebBundle/Component/Authentication/Handler/LoginFailureHandler.php <?php namespace HTW\PhotoWebBundle\Component\Authentication\Handler; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKer...
8bcf2a8ecdc406bc54e734a3f75c7fe9cda0a663
[ "PHP" ]
9
PHP
RoterFuchs/photoweb
0cdd5d321a1d6f29e62273922caaa883cc8ff3d8
8862f5b3ac00b005dbb85d8cacd5848c982f4b14
refs/heads/master
<file_sep>import 'dotenv/config'; //this needs to come before other imports if they need access to the details // import express from 'express'; import cors from 'cors'; import uuidv4 from 'uuid/v4'; import bodyParser from 'body-parser'; // import models from './models'; import routes from './routes'; import models, { ...
fd93666dec55a1c1cbf3045c2023c01cea0dc5f8
[ "JavaScript" ]
1
JavaScript
jhuiet/express-routing
fc1144a89b70f253a1713252057ddaef13b4241c
fe2517a7b8c302087060b279033b8fbf2920e75c
refs/heads/master
<repo_name>annawinther/DOM-II<file_sep>/js/index.js // Your code goes here // Making variables const body = document.querySelector('body'); // const navCont = document.querySelector('.nav-container'); const link1 = document.querySelector(' a:nth-child(1)'); const link2 = document.querySelector(' a:nth-child(2)'); cons...
a82ce2160560e7fbe89c47da8ab248bb6529e721
[ "JavaScript" ]
1
JavaScript
annawinther/DOM-II
80330fa32125852d50e1eb788bd80417b635ebda
31e3ce96ff9d800be9487b56444789393b8baff6
refs/heads/master
<repo_name>rohits-sirpi/plumberExamples<file_sep>/inst/plumber/18-logging/plumber.R ## ---- logging library(plumber) library(logger) library(glue) # Path for log files log_path <- "logs" # Create log file directory if it doesn't exist if (!fs::dir_exists(log_path)) fs::dir_create(log_path) # Send logs both to stdout...
19a9bd828af72248d556a13acc6191e68b31b655
[ "Markdown", "R", "RMarkdown" ]
68
R
rohits-sirpi/plumberExamples
865f936fb1a5dfb8841b71f5c4ccc8c29244aba8
31d3ca11988df10245db6c6a9e76c45a3866c753
refs/heads/master
<file_sep> // testDlg.cpp: 实现文件 // #include "pch.h" #include "framework.h" #include "test.h" #include "testDlg.h" #include "afxdialogex.h" #include <TlHelp32.h> #include "newprocess.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // 用于应用程序“关于”菜单项的 CAboutDlg 对话框 class CAboutDlg : public CDialogEx { public: CAboutDl...
33a33d0b8e703fb23f539c78723584745d4e57bc
[ "C", "C++" ]
4
C++
Kafuu-Chino-GYZ/-
6246fd0a111310ef457f957ed114452771564b57
524f6329bbbbd21fb89dca5c05ce47fd45c825cb
refs/heads/master
<repo_name>mbrotos/DailyCodingProblem---Python<file_sep>/src/Problem4.py """ Given the root to a binary tree, implement serialize(root), which serializes the tree into a string, and deserialize(s), which deserializes the string back into the tree. For example, given the following Node class class Node: def __init_...
097d302c5d976a335518d2cca65ca585695577f7
[ "Python" ]
1
Python
mbrotos/DailyCodingProblem---Python
0109a6e717b90625b5277f9e8dd759064a3ad423
2b6643ae7064affd35d1d90a1cb2cc7422a0d989
refs/heads/master
<repo_name>egus032/testproject_3-master<file_sep>/src/main/frontend/gulpfile.js var gulp = require("gulp"), runSequence = require("run-sequence"), // inject mainBowerFiles = require("main-bower-files"), inject = require("gulp-inject"), // minify concat = require("gulp-con...
943a62f8d92cacbffb921cf3ca51688da6aab1c4
[ "JavaScript", "Java", "Maven POM" ]
32
JavaScript
egus032/testproject_3-master
fa2a1c2753da6d2347d7a584a28f8af4ba9f8bbb
8c27a5c5c088f826efaeff3f7cf5fe0ab75d9a8e
refs/heads/master
<repo_name>anmuro7/TheObjectHome<file_sep>/app/src/main/java/com/example/toni/app_the_object_home/AdaptadorPrincipal.java package com.example.toni.app_the_object_home; import android.content.Context; import android.database.Cursor; import android.graphics.Bitmap; import android.net.Uri; import android.support.v4.graph...
10c8c716a1bf51fb469bc47ad11a149b2e1bcfbc
[ "Java", "Text" ]
4
Java
anmuro7/TheObjectHome
ee60d52954e76a34d0567e59eedd6629be02b6b7
7525b91f1cd933917c0a44e4bee8ef904b86bec2
refs/heads/master
<repo_name>dlsimpao/PokeApp<file_sep>/global.R # packages library(shiny) library(shinythemes) library(shinycssloaders) library(shinyWidgets) library(tidyverse) library(knitr) library(ggfortify) library(plotly) library(FNN) library(jsonlite) library(lubridate) library(httr) library(rvest) library(shinyjs) ...
3f31ca3ea4ead0c1c4672448eb1440775535254a
[ "Markdown", "R" ]
5
R
dlsimpao/PokeApp
161254bd0a2a11f48e5df83f32c0dccd08ddce59
f2d2af0a26d509edb7e8680daa177409e84781aa
refs/heads/master
<file_sep>/* * Copyright (c) 2019 - Adjacent Link LLC, Bridgewater, New Jersey * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above ...
0861b05fd9c742655054cb6adf3fb8638e7f8a13
[ "C++", "Shell" ]
10
C++
learning-lte/emane-model-lte
b98f28db8b0dc30f94eace042f48915e309f8420
d338925a125fce7ba13e749dfbd7d5893f6101b4
refs/heads/master
<repo_name>CrazyLemonLin/ctjs2016-ng2demo<file_sep>/src/app/shared/data.service.ts import { Injectable } from '@angular/core'; import { Http, Request } from '@angular/http'; import 'rxjs/add/operator/map'; @Injectable() export class DataService { url = '/api/articles.json'; constructor(private http: Http) {} ...
9c6a77793c83b32eaf576437361066f28ddeed99
[ "TypeScript" ]
2
TypeScript
CrazyLemonLin/ctjs2016-ng2demo
7059eb6368a8447252235fc617b7e30e49b7ae6e
7e786004980cd6728683321368dafd46fa382699
refs/heads/master
<repo_name>nikkelberg/telegrambotgetchatid<file_sep>/chatidtoken.php <?php include 'funzioniutili.php'; $response = file_get_contents("https://api.telegram.org/bot<bottoken>/getUpdates"); $dati = explode('"id":', $response);//divide for id unset($dati[0]); //delete first array field $users = Array(); foreach($dat...
03628cc62394c41212ccb4e6d045e2171d7e3651
[ "Markdown", "PHP" ]
2
PHP
nikkelberg/telegrambotgetchatid
4b4caf0e4bbc6a2b5cd6dff29d9623906a31d061
655247d7e1517d0c7c077a361e3b9a52ada35cd9
refs/heads/main
<file_sep>from os import add_dll_directory import re from flask import * import sqlite3 import itertools from datetime import date,datetime,time app = Flask(__name__) app.secret_key = 'MRP' @app.route('/pedidos/<float:total>') def pedidos(total): now = datetime.now() data = str(date(day = now.day,...
477af100bcc99dc323e01081f588a1536e1749cc
[ "Python" ]
1
Python
Marianaap/E-commerce-
c094ad1c7b90b744ac4168eb79f16f3a7565a0d9
fb7469dda513129ca80201649c50cd548b28ec2e
refs/heads/master
<repo_name>swaff68/JS18-I-Quotes<file_sep>/main.js var quoteArray = []; var quoteMemory = []; var QuoteInput = function (quote, album, song){ this.quote = quote this.album = album this.song = song }; QuoteInput.prototype.create = function(){ this.el = $('<div class="quoteBox"><div class="quoteArea"><i>...
aa6b161a68f5e7f8503a3419c734bceb2abf4064
[ "JavaScript" ]
1
JavaScript
swaff68/JS18-I-Quotes
5f668619b396c4c600d0d14a2e2fd7204f6d0dde
68b356440cf74144b68f95b974799f007375585a
refs/heads/master
<file_sep>#!/bin/bash echo "compilando" gfortran -o prueba2 -fcheck=all -Wall constants.f90 linalg.f90 aus.f90 mesh.f90 prueba2.f90 echo "Listo. Ejecute prueba2" <file_sep># mi-primer-fortran Code for the started program Some codes in fortran ## Para compilar Para compilar el programa prueba1 necesitas tambien compi...
bddb3a90d551d287ff70a071d48f45a561db1754
[ "Markdown", "Shell" ]
2
Shell
vicmans/mi-primer-fortran
2cceb4735e8543f84e5e4fbf6eafb1fcde073864
576db75b342f08f276695376e012949aec6910f6
refs/heads/master
<file_sep>namespace Supermarket.EneityFramework { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("AdminInfo")] public partial class AdminInfo { ...
6f8f91ef52e9d669dbb5a6983afbdfbb9c0c5ce9
[ "JavaScript", "C#" ]
29
C#
Meng1231/supmarket
b32585424a3a4d2a7cb245ec0c2ee4d0b760efbe
e994067685a87b14fcd20ead9439c234e7fe0777
refs/heads/master
<repo_name>digideskio/js-data<file_sep>/test/integration/datastore.test.js import { assert, JSData } from '../_setup' describe('DataStore integration tests', function () { it('relation links should stay up-to-date', function () { const store = new JSData.DataStore() store.defineMapper('foo', { schema: ...
a15b962ea4553a3b55be16a71589e3c617557220
[ "JavaScript" ]
3
JavaScript
digideskio/js-data
135651e4a8edc62793050fce300cb64a4058a8da
3c32b4b730a47fe98be122189f0748975f78e5f7
refs/heads/master
<file_sep>//MUSIC var audio = new Audio('music/The_End_Is_Near.mp3'); audio.play(); //GAMEPLAY var circleFill = $('.circle-fill'); var circleHole = $('.circle-hole'); var t = 0; var isRotate = false; var life = 10; var score = 0; var newLeft; var newTop; var speed = 31; function calcRotate(){ t += 0.05; ...
fb7c5a9c571875aa754b4bd9ae729540f3358a78
[ "JavaScript" ]
1
JavaScript
devmanuelragusa/Center
b1832ac0f851b82f286030204cb52910a72b976e
4f77843792999484f2538973ac77be4a7b238db3
refs/heads/master
<repo_name>danben2904/findmamik<file_sep>/main/views.py from django.shortcuts import get_object_or_404, render, redirect from django.http import HttpResponse from django.contrib.auth.forms import UserCreationForm from django.contrib.auth import authenticate, login, logout from django.contrib import messages from dja...
28ed5b814f49e431dc2d10b485b79d7424b94667
[ "Python" ]
12
Python
danben2904/findmamik
be7d99c0335780b321975a4a5b96971fc038f1d4
3ed89c0d06cfbfc31999de0ca6f612055b16e600
refs/heads/master
<file_sep>'use strict'; const config = require('./configuration'); const Response = require('./response'); module.exports = function signout (req, res) { req[config.session.name].reset(); Response.ok(res); }; <file_sep>'use strict'; const config = require('./configuration'); const Gstore = require('gstore-node')...
b9861913f34b88832a04cff07d0b21e7606ef4a8
[ "JavaScript", "Markdown" ]
22
JavaScript
Eric013/google-function-authorizer
e4adf9e5620694c1c71c7e546c84dcbf3189e197
9e4728ebe551b99bcc2a7a4de5d2b2333d8007e1
refs/heads/master
<file_sep>spring.datasource.url=jdbc:postgresql://localhost/spring spring.datasource.username=postgres spring.datasource.password=123 spring.jpa.generate-ddl=false spring.jpa.show-sql=false spring.jpa.hibernate.ddl-auto=validate spring.freemarker.expose-request-attributes=true upload.path=/home/artur/IdeaProjects/spr...
58d0c2bd3407dd54db2cf2c1a67ae878bb28102a
[ "Shell", "INI" ]
2
INI
ArturAzizean/Spring-project
b3dd5a889635872f6370052cfac0dff3c86bf38d
d8a57fb147463c97a850bc61d19359257542f84f
refs/heads/master
<file_sep>class NycParks::CLI def call make_parks greetings list_boroughs until boro_valid? == true list_boroughs end list_borough_parks until park_valid? == true list_borough_parks end list_a_park again end def make_parks parks_array = NycParks::Scraper.p...
0f23c4efd3b30f40c40863e6e18275849038efc5
[ "Ruby" ]
4
Ruby
verokim85/NycParks-cli-app
c82917f92f1edb109ed306ee7a595cc2cac07718
a2741279a0fee531ff123ab38815eeaeb1b8e1f4
refs/heads/main
<repo_name>happygeekme/Opdracht26_function_3ways<file_sep>/script.js // function squared(number1, number2) { // const squared1 = Math.pow(number1, 2); // const squared2 = Math.pow(number2, 2); // const sumSquared = squared1 + squared2; // return(Math.pow(sumSquared , 2)); // } // const outcome =...
f20833ecf4363233902d04f887d8920bc423b7ed
[ "JavaScript" ]
1
JavaScript
happygeekme/Opdracht26_function_3ways
8610127769582ff2b1a0bd6fe4e964c1a49be297
97d567c1d69072c81a945680edd37a128ff7d915
refs/heads/master
<repo_name>andrewboisen/SarahSoundBoard<file_sep>/SarahSoundBoard/SarahSoundBoard.iOS/Service/AudioService.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using Foundation; using UIKit; using SoundBoard.Service; using SoundBoard.iOS.Service; [assembly: Xamarin.Forms.Dependenc...
31466665c75e5fcbf2c135e85607962db5e8a8a3
[ "C#" ]
4
C#
andrewboisen/SarahSoundBoard
b509d1d73cac4f62307c5d2c7fd01d959b5d1d82
72b5ba7ee7a687e5214e08df2e4b82f4e58b9dcf
refs/heads/master
<file_sep>package com.lifeistech.andoroid.tapnumber; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.TextView; public class SubActivity extends AppCompatActivity { TextView textView8;//今回の得点 TextView tex...
356debf0e160614cfaf0d0d5abb259833ccd8ef0
[ "Java" ]
3
Java
LiT-Android10th/p_tapnumber_level
ae67330d0ecd3e822f155a5435b07c5c51e166e7
1f0fb916eb67339ba7d31f2c62441d97a70af1c1
refs/heads/master
<file_sep># ''' # generate gt file based on siammask tracking result # ''' import glob import argparse import torch import cv2 import numpy as np from os.path import join, isdir, isfile from utils.config_helper import load_config from utils.load_helper import load_pretrain from utils.tracker_config import TrackerConf...
b9cba5586d18599d9b81877239f142e863945454
[ "Markdown", "Python", "Shell" ]
19
Python
enkiwang/attackTrack
3578873fd3aec33e3b58e5aee9d372139e993d93
055b749c778986cad902c65015c0ce709dc0d776
refs/heads/master
<file_sep>// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. #include "common/environment_internal.h" #pragma warning(disable: 4172) namespace pmwcas { unique_ptr_t<IEnvironment> Environment::environment_; Status Environment::Initialize(std::function<Status(IEnvironment...
d579c4d11d84e330ec48fc5eb05985e98af3bb3f
[ "Markdown", "C", "CMake", "C++" ]
59
C++
microsoft/pmwcas
3c50dec9cfbe31e3c4b02ef7e0ffd9f0a210adc3
6b24e6ae11156be3f9daaf8284cb8d8834e72321
refs/heads/master
<repo_name>ARAGroupGIA/arapractice0-ARAJAMOMO5<file_sep>/Exercise2/exercise2.c /******************* Problem definition **********************************/ /* Implement a program that it shows the message "Hello World" on screen. */ /*************************************************************************/ /* Here, yo...
b944cf748670f6c9c356e3d43ec9623aaff0801a
[ "C" ]
1
C
ARAGroupGIA/arapractice0-ARAJAMOMO5
ac60f74ef71aa8dcd564a075dc102b956bd490a6
7d3fc46f4e48589184598e417acac6b443ecace0
refs/heads/master
<repo_name>leewaggoner/DEPRECATED-RecyclerViewExpandingAdapter<file_sep>/recyclerviewexpandingadapter/src/main/java/com/wreckingball/recyclerviewexpandingadapter/ExpandingData.kt package com.wreckingball.recyclerviewexpandingadapter abstract class ExpandingData(var isParent: Boolean = false, var children: MutableList<...
11112ec2f8fcacf585e311bcb9cbf44bad25a868
[ "Markdown", "Kotlin", "Gradle" ]
10
Kotlin
leewaggoner/DEPRECATED-RecyclerViewExpandingAdapter
7b33f4f4f2c18e30b5f15b57ae0ab5d778cd8405
34199185c190472584b0956cb33381f36d977da8
refs/heads/master
<file_sep># target.py # Simulates an archery target. Click anywhere to exit. from graphics import * def main(): win = GraphWin('Target', 320, 320) win.setBackground('gray') center = Point(160,160) yellowCirc = Circle(center, 30) yellowCirc.setFill('yellow') redCirc = Circle(center, 60) ...
7c36ca9f69badf9a80257cfa048bede7379bf75b
[ "Markdown", "Python" ]
33
Python
MatthewJulian/CS-1400
993add3b016f889642fdeab6bb085df3a3c87369
89daa3ff8defec16540ae40d25b142985b82eca5
refs/heads/master
<repo_name>elderz6/crypto<file_sep>/Crypto2.py def cript(texto1): texcript = "" i = 0 while i < len(texto1): cript = ord(texto1[i]) texcript = texcript + chr(cript + 5) print(texcript) i+=1 print("Decrypt?") check = input(str()) if (check == "y"): ...
74935e727b7397f89b736ecf30fdb81669e34897
[ "Python" ]
1
Python
elderz6/crypto
7edb3fdf27929cf40bb44558144658217de32613
48f3f8001cdd8bb06357f3be868e86917a520452
refs/heads/main
<file_sep>import { Component, OnInit } from '@angular/core'; import { Cours } from '../models/Cours'; import { CoursService } from '../services/cours.service'; @Component({ selector: 'app-cours-details', templateUrl: './cours-details.component.html', styleUrls: ['./cours-details.component.scss'], }) export class...
3d31d7b7242106be4da48c60c1f0fbff03b1a56a
[ "TypeScript" ]
6
TypeScript
tsopgniduhamel/skoole
62c9993881c1386c869c515b2098a92ef6bd2839
718b316b2ec193b4c5911e66a689e5d7d3ebb71e
refs/heads/main
<file_sep><?php declare(strict_types=1); namespace BrenoRoosevelt\Psr11; use Exception; use Psr\Container\ContainerInterface; use Psr\Container\NotFoundExceptionInterface; class CompositeContainer implements ContainerInterface { /** @var ContainerInterface[] */ private array $containers; public function...
d69bf5eb9c2eeeb1a763a1135af2ac9704c942c1
[ "Markdown", "PHP" ]
7
PHP
brenoroosevelt/psr-nullcontainer
90043924c6495588c7ecdda40685b649a44399ba
a457c1116f25e474ad2db324247c6212d5bfca3e
refs/heads/master
<file_sep>package com.rabobank.controller; import static org.junit.Assert.assertEquals; import static org.mockito.Mockito.when; import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import or...
7b2239ffc3d554beb32d103190302b4d49984c10
[ "Markdown", "Java" ]
6
Java
rajshekar4/robobank-assignment
fc9463808bfab4e23de0a9cb53f18929275daf06
b62827d0364ab0367bea75a210988a005e153a69
refs/heads/master
<repo_name>BenJacobsen/DeltaHacks<file_sep>/flask_implementation/global.py from flask import Flask, request, Response, g from frame import game, player def prompt_assign(num_players, prompts): return [[prompts[0], prompts[1]] for i in range(num_players)] app = Flask(__name__) @app.route('/api/login', methods=['P...
da36cb4209914a95aeb73c4f3747ae6d2c67a7fe
[ "Markdown", "Python" ]
7
Python
BenJacobsen/DeltaHacks
c7f9e6c0c1c38554a0254a3aa6b6cb2514a77cf0
adbc5d277ba5b680df998a58988878afd751abb3
refs/heads/master
<repo_name>longhuang318/adp_rl<file_sep>/scripts/maze_solver.py """ Approximate Dynamic Programming & Reinforcement Learning - WS 2018 Programming Assignment <NAME> 30.01.2019 Command necessary to test the code. python main.py maze.txt """ #from __future__ import division from maze_env...
d6219e91be402f94d73297a26f8e540b738521b6
[ "Markdown", "Python" ]
4
Python
longhuang318/adp_rl
644a50a9b13ca23bcc1b1399c5b4aa178d5d3e40
60117ecf7461f0d5ee2dc30af4e604c328c63434
refs/heads/master
<file_sep>const { generate } = require('../src/lib') describe('testing generate() function', () => { it('generate() without any parameter should generate data with predefined values', () => { const data = generate() const firstWeek = data[0] || {} const lastWeek = data[51] || {} expect(data.length)....
11fdf7e9af070c2dd1c1794846e56f6c89680af6
[ "JavaScript", "Markdown" ]
3
JavaScript
emanuelgsouza/fifty-two-challenge
aab4fb8c1eeaebb4d892628272f28668e0fedbcc
92b00bb0f86ea7afa702a6ce9b46a39e70b951f3
refs/heads/master
<file_sep>#include <linux/module.h> #include <linux/vermagic.h> #include <linux/compiler.h> MODULE_INFO(vermagic, VERMAGIC_STRING); struct module __this_module __attribute__((section(".gnu.linkonce.this_module"))) = { .name = KBUILD_MODNAME, .init = init_module, #ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module, ...
8aefda2495c38685cfce9321d919cd6d2f13d68b
[ "C" ]
2
C
nourSmaoui/OfdmVLCKernel
bf660ef31b5eaaa339d1d1821e348b2f3ccf77a3
50e262c20dd276963c9a9bb0f3c2fc56e42cc7d6
refs/heads/master
<repo_name>justin-john/web-server-log-parser<file_sep>/calculate.js module.exports = function (filePath, isTestRun) { var fs = require('fs'); /* Set file path */ var fPath = filePath || 'sample.log'; /* EndPoint Object Declare */ var cntPenMsg = { pattern: /\/api\/users\/(\d)+\/count_pending_messages/, count: 0...
f6780283004b1d3b45ed83d6ccaa0d01d980d6c4
[ "JavaScript", "Markdown" ]
3
JavaScript
justin-john/web-server-log-parser
682c642016292d93b7213c66175fe8d253e8b6a5
52151f9afd3c5daa70e5dc31a5b9ff00169f9935
refs/heads/master
<file_sep># Event Reminder Ever forgot important event or someones birthday? Do you spend a lot of time on your computer? Well look no further than my ghetto event reminder! ## Requirements This was written in python 3.7 so it is required to run it. Additionally you need to install [Dateutil](https://dateutil.readt...
d87c5cc0f79050cf6c36f23ba11f5b6b91990605
[ "Markdown", "Python" ]
3
Markdown
RevinderDev/event-reminder
6fed61338989ba0bb586a23ffe12f6e6cfcd79b3
9fb20b559e4c57c0b320005dcf6195552cd8f77d
refs/heads/master
<repo_name>Insoumis/analysons-lepen<file_sep>/scripts/genenrate.js const path = require('path') const fs = require('fs') const Hjson = require('hjson') const marked = require('marked') const THEMES = path.join(__dirname, '..', 'themes') const OUTPUT = path.join(__dirname, '..', 'src', 'themes.json') const TOMD ...
3d63ee0603aa5871266ab6f4521f47bcd7d6b6c1
[ "JavaScript", "Markdown" ]
3
JavaScript
Insoumis/analysons-lepen
38ad6d04fc018afb7ed60e73c8daf38a54ff8d59
2b20f5eefe44ddc6e8c3871aed027acc3100249b