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># DEMETER2 in Stan [DEMETER2 website](https://depmap.org/R2-D2/) [data](https://figshare.com/articles/DEMETER2_data/6025238) [Paper](https://www.nature.com/articles/s41467-018-06916-5) [Supplemental](https://static-content.springer.com/esm/art%3A10.1038%2Fs41467-018-06916-5/MediaObjects/41467_2018_6916_...
7c1bd066cce9a5d86ee55a491931e08ec4367926
[ "Markdown", "Python", "C++", "Shell" ]
10
Markdown
jhrcook/demeter2-stan
5d621322dbaf4c53ffb533e605106de15c847dc7
5cb66c301c51041df9e52116b8d90fce70e0dd3c
refs/heads/master
<file_sep>#!/usr/bin/env bash set -ex date input_file="$1" contract_name="$2" compiled_path="compiled/$(basename "$input_file")" solc --overwrite --bin-runtime "$input_file" -o "$compiled_path" docker run -v "$(pwd)":/tmp/host -it gigahorse "/tmp/host/docker-run-gigahorse" "/tmp/host/$compiled_path/$contract_name...
1b216752f5fb6cb415c0aed7c795971726921635
[ "Python", "Shell" ]
10
Shell
xueshijun/EVMCorpusStudy
23ad3b1004a90a300152071e9ae59424209c6575
5dedba5ccf53980eaab436165c571f8bae1208d1
refs/heads/master
<repo_name>laandrad/Text-Mining<file_sep>/myTMtools.py from types import StringType import io import nltk import os def get_imlist(path): # This function extracts a path toward each txt file inside 'path' folder return [os.path.join(path, f) for f in os.listdir(path) if f.endswith('.txt')] def ...
45baff035ebff6a8b0b2b84daac0bf8a2d265541
[ "Markdown", "Python" ]
7
Python
laandrad/Text-Mining
bf1293845bf1bf823a928aa466d3be95bc1f43d9
6238fbd81a6109fafd991e9cecaea0aed8a4392d
refs/heads/master
<repo_name>fomindanny/Mandelbrot-Set<file_sep>/mandelbrot_set.py import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation def iterations_until_diverge(complex_number: complex, threshold: int) -> int: """Returns an amount of iterations until function diverges. Function is z(n...
593b4bee32a0041f441a9b8b899f7644c51db35d
[ "Markdown", "Python" ]
2
Python
fomindanny/Mandelbrot-Set
30771387972c92e580669359c55715e904c55596
9ee26dd19de694a895875ff13edf7ce584ad3fa2
refs/heads/master
<repo_name>ccwei/textSupport<file_sep>/ModRest.rb require 'rest-client' DOMAINNAME = 'text-support.org' ADMIN_ACCOUNT = 'admin' ADMIN_PASSWORD = '<PASSWORD>' def send_ctl_command(command) server_str = 'http://' + DOMAINNAME + ':5285/rest/' auth_str = '--auth ' + ADMIN_ACCOUNT + ' ' + DOMAINNAME + ' ' + ADMIN_PASS...
56b8ef0d527f531b285a07d5715d7bca8c60f294
[ "Ruby" ]
15
Ruby
ccwei/textSupport
6aa86496082049eb483d17149ea1596da8497f75
2645db61a2ac8c5e46aa54708cad3471cbfd17fd
refs/heads/master
<file_sep>package fr.r0x.main; import java.sql.*; import java.util.Date; import java.text.SimpleDateFormat; import org.bukkit.Material; import org.bukkit.inventory.ItemStack; public class MySQLManager { private Main plugin; private Connection con; private String url; private String user; ...
34b4c29b05266cba907c6e73e2de89a6f8df1271
[ "Java" ]
3
Java
Cilag/r0xShop
4780e39ec9ce7916f7c3cbb2e137faab9cc9c1cc
904815c92a0f552858ef59f542a0b2c98db5d61f
refs/heads/main
<repo_name>nuhu-ibrahim/Python-Twitter-V2-API-examples<file_sep>/README.md # Python-Twitter-V2-API-examples Python codes for using Twitter v2 for username lookup and full archive search. Note that the full archive search requires access via the Academic Researcher Twitter product track. <file_sep>/read_historical_twitt...
771fc39432837e71babe072738479f9ca16aa563
[ "Markdown", "Python" ]
2
Markdown
nuhu-ibrahim/Python-Twitter-V2-API-examples
c268d75b03221d630d2e7d3626238fce7d03071a
36e5d9d26ff2d7f9adb7cba5261d7e1592efd022
refs/heads/master
<repo_name>torans51/memory<file_sep>/src/types.js export const INIT_BOARD = 'INIT_BOARD'; export const INCREMENT_MOVE = 'INCREMENT_MOVE'; export const CHECK_FLIPPED_CARD = 'CHECK_FLIPPED_CARD'; export const FLIP_CARD = 'FLIP_CARD'; export const FLIP_CARD_TIMEOUT = 'FLIP_CARD_TIMEOUT'; export const CHECK_MATCH = 'CHECK_...
2a5c93ee38ffb2a6c7f1e2d8c15bb5591579f59f
[ "JavaScript" ]
5
JavaScript
torans51/memory
e0cdac2cb8e1f387e0e889adeea96e568d7cb21f
ae73c57dfe0b9e7bef7fa95bf831928e1531b75a
refs/heads/master
<repo_name>alexcrichton/port-of-rust<file_sep>/i686-pc-windows-gnu/Dockerfile FROM ubuntu:16.04 RUN apt-get -y update RUN apt-get -y install curl file gcc gcc-mingw-w64-i686 ENV CARGO_HOME=/usr/local/cargo \ RUSTUP_HOME=/usr/local/rustup \ PATH=/usr/local/cargo/bin:$PATH COPY support/install-rust.sh /tmp/ RUN...
4caac39443bfb441a9b1dbfd83b96f69a2cb4c8b
[ "Markdown", "Dockerfile", "Shell" ]
22
Dockerfile
alexcrichton/port-of-rust
bab3fda2e923170d294a8dc3ed5737a49fa66920
083636873bda3cd849950f214f50c529ae52036a
refs/heads/master
<file_sep>package com.basic_demo.Activity; import androidx.appcompat.app.AppCompatActivity; import androidx.databinding.DataBindingUtil; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProviders; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.Recycle...
04188023d1e873d8d6705d905c273e573e42dbcd
[ "Java" ]
1
Java
Prajwalpraju3/BASIC_MVVM
93889444673060db7370f8c746e40c7b107e817e
9f7d3a8ef2f26de76db773b80b2290cbac00172e
refs/heads/master
<file_sep>package com.kaungmyatmin.haulio.common.baseclass; import android.view.View; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; public abstract class BaseViewHolder<T> extends RecyclerView.ViewHolder { public BaseViewHolder(@NonNull View itemView) { super(itemV...
a741f2ad3aa2a4656f5b8ec730091ec4a84a6f07
[ "Markdown", "Java", "Gradle" ]
18
Java
KaungMyat-Min/haulio
0bddf5e14b518dd12254d8963867426c9450467b
e3984a0f128ab10177087dfe61862e9f2bff771c
refs/heads/master
<file_sep># Python_Programs This contains some programs written in Python language. <file_sep>d1={1:'a',2:'b',3:'c'} print(d1) d2={1:'a',2:'b',3:'c'} print(d2) cmp(d1,d2)
99cffde4070ed59be24e337629b361f749e0e1d3
[ "Markdown", "Python" ]
2
Markdown
muskangupta19/Python_Programs
24f67fba25b2db8b4afdefa564c7f41ef816688e
db36297df04cb4b3f9d480209f7926a579b5e26b
refs/heads/master
<repo_name>TriDianaRimadhani/Praktikum5-PHPPemweb<file_sep>/ceklogin.php <?php include "akun.php"; //file juga mengambil file akun.php untuk dieksekusi disini //kondisi untuk mengecek inputan dari form dengan variable yang telah dideklarasi if ($_POST['username']==$username){ //variabel username diambil dari akun.php ...
1718cf925a54e96699b81e716584a2e0fa8b0036
[ "PHP" ]
18
PHP
TriDianaRimadhani/Praktikum5-PHPPemweb
c5d8e81f33f03a3ee3023d1c4c5fb8180918f17d
349e12a441304ba2c8ccc9cf691f637a4bf22a14
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RPG.Core { class Ennemie:Entity,ISoignable,IAttaquable { public void Soigner(int PvGagner) { _pvActuel = _pvActuel + PvGagner; } public void PrendreDegats(int...
2ecf867758c0961e4210844b28619795a4a585f4
[ "C#" ]
8
C#
Sakyo59/RPG
57b2799bcd4d87c70e3548b072659f33c3f77f29
60c4c15a8df2a2062a0cc157eab50d732d2961eb
refs/heads/master
<repo_name>wshenk/pcapmap<file_sep>/README.md # pcapmap **pcapmap** utilizes Scapy to quickly parse pcap files for active hosts and ports. ### Usage: ``` python3 pcapmap.py [-h] [-n] [-t TIMEOUT] pcap_file Parse pcap file for hosts, protocols, and ports positional arguments: pcap_file optional arguments: -h, -...
cb1ac0fc7c8101fc2ab54a3339e2c295a7fc36f8
[ "Markdown", "Python" ]
2
Markdown
wshenk/pcapmap
f4d4788770cdabe3d0d7cc6d770dd27bb749242f
9199479d47fab0d23a163cb4faac387e37144957
refs/heads/main
<repo_name>AnadeLuna/streamlit_me_mola<file_sep>/src/manage_data.py import pandas as pd def renombra_id(x): x = f"Frase {x}" return x def carga_data(): data = pd.read_pickle("data/clean.pkl") return data def grafico_barras_st(): data = carga_data() data = data.groupby("character_name").agg(...
181715a18b64527d4004b7cf95a9b7e92c879cfb
[ "Python", "Text" ]
3
Python
AnadeLuna/streamlit_me_mola
83bae101dfb7f4c9bbe6639ac2824ccfff176980
89a0703a28946ed0ae797c8abc3fd3b68785c339
refs/heads/master
<file_sep>package com.exercise.pokerhand; /** * Card class is used to represent a single card in the hand. * There will only be one instance of each card type. * * @author <NAME> * */ public class Card implements Comparable<Object> { private String suit; private String value; private int rank; /** * Def...
153d8960b71529edc7c73a737e3f230ed648e441
[ "Java" ]
2
Java
raodeepa/Poker
0d19a5865819f722946564c8538e446b8f1676e1
86e699a8a830097daf7a639c50bd7d18c0cd234e
refs/heads/master
<repo_name>awesomephant/humboldt-theme<file_sep>/static/site.js var gri = function (min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } const randomiseCards = function () { var objectImages = document.querySelectorAll('.object-list .card'); for (var i = 0; i < objectImages.length; i++) ...
f8b230f64ac40503570666b0326ff7ddd6ef3f0b
[ "JavaScript", "PHP" ]
2
JavaScript
awesomephant/humboldt-theme
6e995353c0178b6981017236e3957f062dfe5c86
c9bfd0ee97b19e29c698191775391d31503ebefb
refs/heads/master
<repo_name>rock626/Particle_Filter<file_sep>/src/particle_filter.cpp /* * particle_filter.cpp * * Created on: Dec 12, 2016 * Author: <NAME> */ #define _USE_MATH_DEFINES #include <random> #include <algorithm> #include <iostream> #include <numeric> #include <math.h> #include <iostream> #include <sstream> #i...
3d895c650b1858a8bfb05131949824c11416af57
[ "C++" ]
1
C++
rock626/Particle_Filter
9f31029aee4eab455ed4299376f2b3d185327ca0
eb00cdec5a4b4e0fe45c49a8f881083f68d3783b
refs/heads/master
<repo_name>NDehkordi/SuperDuperUniv<file_sep>/src/java/besteman/model/StudentFinancial.java /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package besteman.model; /** * * @author ...
40a1ab8dd638be4f42470c840391711d57efa861
[ "Java" ]
6
Java
NDehkordi/SuperDuperUniv
dcc23fa5d498e2e6d53649ee0513153f05737533
63e8d3ce9c04783db488591226f217d0a85cbd6c
refs/heads/main
<repo_name>AMAN123956/Working-with-Sessions-and-Cookies<file_sep>/src/routes/generalRoutes.js const router = require("express").Router(); const {landingController} = require('../controllers/general/landing') router.get('/', landingController) /* Exporting Router */ module.exports = router
c39047c09e75d749c47a068ca3c7a84b8ce42df3
[ "JavaScript" ]
1
JavaScript
AMAN123956/Working-with-Sessions-and-Cookies
2237283fac330e171d4f0d066dd481e12a5ea9bc
04f705a85cc36e00da4ec5c548041ef8de6e10d2
refs/heads/main
<repo_name>Drawserqzez/SpotifyCLI<file_sep>/src/Core/App.cs using Draws.CLI; using SpotifyAPI.Web; using SpotifyCLI.Services; using SpotifyCLI.Utilities; using System.Linq; using System.Threading.Tasks; namespace SpotifyCLI { public class App { private readonly IOutputHandler _outputHandler; privat...
60aec6698f1a2a774d6074b17e414eba326f0fd2
[ "Markdown", "C#" ]
20
C#
Drawserqzez/SpotifyCLI
dfed65334b89361be488876824632d7cb68cb3aa
545c8e22825affdec5fbfb6fdc11ca4350c3e0bc
refs/heads/main
<repo_name>maximeso/character-sheet<file_sep>/src/main/java/com/iledeslegendes/charactersheet/service/RaceService.java package com.iledeslegendes.charactersheet.service; import com.iledeslegendes.charactersheet.domain.Race; import java.util.Optional; import org.springframework.data.domain.Page; import org.springframew...
e021a736f390320b1f7bcc11eac0d1d22a023a06
[ "Java", "TypeScript", "INI" ]
24
Java
maximeso/character-sheet
f0bc7badc49b9e81860a2d2b6da8bc92fe8d5f61
a6da6a5abb079916dd1e2dff11096cc3e75f3e4e
refs/heads/master
<repo_name>Elycin/AWSBucketDownloader<file_sep>/README.md # AWSBucketDownloader Tool to download everything in an AWS S3 Bucket ## Purpose This tool was created to assist in orchestration of downloading files to server in a personal project, in a timed basis. ## How it works and how to use - The first initial run wi...
b9eb3f851f28e046cc8b29bffbef6b1dd0063c3d
[ "Markdown", "C#" ]
4
Markdown
Elycin/AWSBucketDownloader
7089c0235d44f1788da410a019f8627dfac65643
094a22ecb70a81992f67fb38593a8b72bd0d64ed
refs/heads/master
<file_sep>import { Component } from '@angular/core'; import { DailyTranService} from '../../Services/daily.service'; import { UUID } from 'angular2-uuid'; import { Router, ActivatedRoute} from '@angular/router'; import { XmlLognService} from '../../Services/xmllog.service'; import { Sorter} from '../../Services/a...
5991604fd7e7b4b3b3eeddaf204e8e9ed6f7d892
[ "JavaScript", "TypeScript" ]
34
TypeScript
amrikrudra/EDI-XML
088d20a53561693c0e9073cadd82952ab2098312
25fa290012296469d6756d1c779b69878145b449
refs/heads/master
<file_sep>export default{ apiKey: "<KEY>", authDomain: "vueapp-fd687.firebaseapp.com", databaseURL: "https://vueapp-fd687.firebaseio.com", projectId: "vueapp-fd687", storageBucket: "vueapp-fd687.appspot.com", messagingSenderId: "412256577593" }
a70dc50732481dced293d670288c2926a8391208
[ "JavaScript" ]
1
JavaScript
Przemyslawpomorski98/vueapp
9a0ef790dd5de3d787f0f1b3e5346ffa23105bc9
662fa3157aa2a02f6edd0bb1c8b34338416c308b
refs/heads/master
<file_sep>package anshima.com.webservice; public class Calculator implements CalculatorWS { @Override public int sum(int add1, int add2) { // TODO Auto-generated method stub return (add1 + add2); } @Override public int multiply(int mul1, int mul2) { // TODO Auto-generated method stub return (mul1 * mul2...
c34c3b5d73811ecd709919a0d94c43cd1f6999a6
[ "Java" ]
1
Java
anshimagupta/soc
53d973751af8610c414f0e7f466dcd536036b385
e7a9482df01775a041f547c3193ff58f209ce9e3
refs/heads/master
<file_sep># forms-ng Note: This package is under development. Expect breaking changes in upcoming releases. ## Purpose * reuse form behavior in Angular * allow flexibility of design * type safety ## Installation ``` npm i forms-ng ``` ## Validation Errors The FormValidationErrorsComponent class holds the logic th...
7eb41db01ac1593a640dba2286221d5c07b81203
[ "Markdown", "TypeScript" ]
17
Markdown
better-automation/forms-ng
d2668ec0c56a805cfaa8b64fa0fd7800632f4e0d
0d18aae8e989550ce196fcfb14cf07f78a3ae9cf
refs/heads/master
<repo_name>ccschmitz/oh-my-zsh<file_sep>/custom/aliases.zsh # Git alias g="git" alias gs="git status" alias gc="git commit" alias gcv="git commit -v" alias gA"git add -A" alias gg="git-goggles" # Reset Coreaudio service alias resetaudio="sudo kill -9 `ps ax|grep 'coreaudio[a-z]' | awk '{print $1}'`" # Redis alias sta...
5342d37d5624181fedb041c5d69e22c4c481f8d1
[ "Shell" ]
1
Shell
ccschmitz/oh-my-zsh
95b9eac20fbfef83fad200dafcda5f18aa0c4e2a
65888601aa54c1a1ce0e0be36a8822fc9c2ca504
refs/heads/master
<repo_name>twfth9/LRDT-ThomasFork<file_sep>/Documents/Igniter code/Ground Station/GSModules/Logging.py import os from datetime import datetime import time class Logger(object): def __init__(self): self.startTime = time.time() self.isOpen = False def start(self, filepath): self.startDate...
78d910cc1454d996a60f1208a0df4c0109f4c217
[ "Python" ]
3
Python
twfth9/LRDT-ThomasFork
2a309859f967277a36c76cd9d9b6911f19481b09
179c57fe1e071548dc035826f915d4f02272400e
refs/heads/master
<repo_name>asanc305/cop-lab4<file_sep>/test/test.c #include <stdio.h> #include <stdlib.h> #include <string.h> int main( int argc, char* argv[] ) { unsigned char buffer1 ; FILE* input_file ; FILE* output_file ; //open files input_file = fopen( "/test/war-and-peace.txt", "rb" ) ; output_file = fopen( "/test/o...
014e7f0c0f8697d8577cf7283c8e2a536f105511
[ "C" ]
1
C
asanc305/cop-lab4
e4a34daf6182707f6e15afe4ef9fc243641ad899
514b4412e0ff2442a41ef3425fe6a71741351ae8
refs/heads/master
<repo_name>iamalibabaei/docker-exim-smtp<file_sep>/README.md # Docker Exim Relay Image [Exim](http://exim.org/) relay [Docker](https://docker.com/) image based on [Alpine](https://alpinelinux.org/) Linux. A light weight Docker image for an Exim mail relay, based on the official Alpine image. For extra security, the...
5b1c17ca04e25575226b56a8b5419db2c6edadb6
[ "Markdown", "Shell" ]
2
Markdown
iamalibabaei/docker-exim-smtp
e05b718fa20087ad097a67cdfee71df4dfb7b83c
89121d4547f24ae18cd236988a0e917169a59f58
refs/heads/master
<repo_name>hucongting/beifen<file_sep>/文件备份/TestPhoneSMS01/src/com/sve/util/SendSMS.java package com.sve.util; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax...
afa08851cf87b41119a4c048cbe11f7d54f2e296
[ "Java", "Text", "SQL" ]
6
Java
hucongting/beifen
24b81d816afcd8ba6eecf62d200f4041fabe64e8
7d3289a2426c8d18fb6df543eb30b22a115ea7dc
refs/heads/master
<repo_name>rajansanthanam/support<file_sep>/Tools/Utilities/ports.sh #!/usr/bin/env bash ssh -i ~/.ssh/sanju.pem -f -N -L 18391:10.10.48.216:18391 172.16.58.3 ssh -i ~/.ssh/sanju.pem -f -N -L 7180:10.10.48.216:7180 172.16.58.3 ssh -i ~/.ssh/sanju.pem -f -N -L 18631:10.10.48.216:18631 172.16.58.3 ssh -i ~/.ssh/sanju.pe...
3f92a28011d9bcf6500c6148edef0b513fd233e0
[ "Shell" ]
2
Shell
rajansanthanam/support
6b66b255db0972bf448c05bc818d91719c26208f
318e319014c97c4e4d9c61e50116d35266e7cb0f
refs/heads/master
<file_sep># exe would like to turn the python app into exe <file_sep>from tkinter import * import tkinter from tkinter import messagebox def proces(): number1 =Entry.get(E1) number2 =float(number1)/3 number3 =float(number1)/3 number4 =float(number1)/3 Entry.insert(E2,0,number2) ...
44348a089d64c60f857c885b4387e37d674f2979
[ "Markdown", "Python" ]
2
Markdown
lucmat/exe
084894964a02d223012df22408a024d2900d27cd
04fe507129c66f7900bcd93c291a59f6119e8497
refs/heads/master
<repo_name>Jonathan-Eboh/WebDevelopment<file_sep>/Python/Learning_Python/Django_Projects/login_Reg/apps/logNReg/views.py from django.shortcuts import render, redirect, HttpResponse from django.contrib import messages from .models import User import bcrypt from django.urls import reverse # Create your views here. def i...
a6955f9ba3f6cedc9ae0d1456a78b684b655a210
[ "SQL", "HTML", "JavaScript", "Markdown", "Python" ]
73
Python
Jonathan-Eboh/WebDevelopment
03c14195ec2c522e3bba6cb7d5d6bfa8cff8623f
f584c0ccb103aee1775a7d00094c5639f9f3499e
refs/heads/master
<repo_name>pigey/variabel-labbar<file_sep>/variabellabbar/src/main/java/se/filip/Lab5.java package se.filip; public class Lab5 { public void Execute(){ System.out.println("Mata in nummer 1: "); int num1 = Integer.parseInt(System.console().readLine()); System.out.println("Mata in ...
0aa7263ccc9969141c9d0e7502e9e256c18d1ac0
[ "Java" ]
2
Java
pigey/variabel-labbar
9552a61613cb4b0ad412fff4f4bfe65c967e866d
b448edd62fcf0f6828dea1441dc49c10e9cb32fc
refs/heads/master
<file_sep>// // CalendarViewController.swift // TestApp1 // // Created by <NAME> on 7/8/20. // Copyright © 2020 <NAME>. All rights reserved. // import UIKit class CalendarViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } } <file_sep># MoveTheEa...
89dd91a874803e969ce435581da0e3614383d052
[ "Swift", "Markdown" ]
3
Swift
jjtrinh99/TestApp1MTE
e42afe3d15b3099004422d16b204ee77dc6d8f32
045699f123653c32cd795917bfeee30cdec51789
refs/heads/master
<repo_name>QMSS-G5072-2020/final_project_zhang_alysandra<file_sep>/smithsonian_queri/smithsonian_queri.py import requests import json import csv import time def create_smithsonian_csv(category, api_key): """ Query data from the Smithsonian Open Access API using category filters provided by user input. Pa...
c0f0e4b148af0291e3986f794c12e25a93dcef39
[ "Markdown", "TOML", "Python", "reStructuredText" ]
6
Python
QMSS-G5072-2020/final_project_zhang_alysandra
591bb68442c231f972fc0e83a26360e643d1a3ca
55138af8d7eb769b78a3c1bf04f17a55d6317293
refs/heads/main
<file_sep> -- deletes the entire table -- DROP TABLE Students; -- CREATE TABLE students( -- id INTEGER PRIMARY KEY, -- firstName VARCHAR(100), -- lastName VARCHAR(100), -- age INTEGER -- ); -- ALTER TABLE students ADD email VARCHAR(100); -- this creates a table -- CREATE TABLE courses ( -- id INTEGER PRIM...
6e136d14a7467e7f65ba0862138843826fb2fbbf
[ "SQL" ]
1
SQL
JoshRoth909/myFirstSQL
44b1bc6f4b239bfe747fe8b60d1051c93844167e
c4c65400d6b5fb9fed0a49f8041009609df358af
refs/heads/main
<file_sep>// // Model.swift // middle_todo // // Created by suhee❤️ on 2021/07/14. // import Foundation //class Memo { // var content: String // var insertDate: Date // init(content: String) { // self.content = content // insertDate = Date() // } // // static var dummnyMemoList = [ ...
38e51ac4f637cc7556f0fea304edad4d4850dbb8
[ "Swift", "Markdown" ]
2
Swift
comeevery-git/middle_ios
00417ddf4000192045adbf4548ac4ae701613499
e0b8f00f3787f92c779b73edec7ea60148f54a03
refs/heads/master
<repo_name>linylmfos/react_demo<file_sep>/src/StateCom.js import React, { Component } from 'react'; class Cmp1 extends React.Component{ constructor(props) { super(props); this.state = { a: 4 } console.log('a', this.state.a); } fn() { this.setState({ ...
32c69d2a175d24b12f8f001387b25852b618d349
[ "JavaScript" ]
7
JavaScript
linylmfos/react_demo
52e364047fa8df8c035e3b749b35d5a070f9fbe6
4f704c11bb0b5eacc17d3a4c5a9d9411fcdf006c
refs/heads/master
<file_sep>import * as fs from 'fs' import { featureCollection, polygon } from '@turf/helpers' import geobuf from 'geobuf' import * as jsts from 'jsts' import _ from 'lodash' import Pbf from 'pbf' const geoJsonReader = new jsts.io.GeoJSONReader() const geoJsonWriter = new jsts.io.GeoJSONWriter() export default functi...
0fd7adc8d2f91fbd7bdb8daa90e2c895acb89373
[ "Markdown", "TypeScript" ]
10
TypeScript
evansiroky/node-geo-tz
0608027787cf39b69214bfe0e4ba9e2ff6ff4edb
9969098b826db4f464a99ab9c2379ce5a66b75f2
refs/heads/master
<file_sep>import java.util.Iterator; import java.util.LinkedList; public class LinkedlistPrac { public void getlinkedlistprac(){ LinkedList linkedList = new LinkedList(); linkedList.add("A"); linkedList.add("B"); linkedList.add("B"); linkedList.add("C"); System.out.pr...
aa329ec9183c31a90c3e73acae2b7ee9c93e76d2
[ "Java" ]
3
Java
SifatNawrinNova/Collection
e6f2fddd06df58e52c7429266bc87e28a81d19a1
e349cae95a549777bc6b950eff5778d97f8c4625
refs/heads/master
<file_sep>import React, {Component} from 'react'; import Specie from './specie'; import './styles.css'; import {api} from '../../services/api'; export default class Main extends Component { state = { stPkmnList: [], fetched: false }; componentDidMount() { this.lis...
085e7764676bcfce76477b19ac90f9c5dc66fcff
[ "JavaScript" ]
2
JavaScript
dalcarobo/pkmn-api-test-react
1a93d14097e0d830c5aa6098aea8cadce1031c40
503e3941a005c67b52ee204d4725304ea09b07d9
refs/heads/master
<file_sep>## 1、可变与不可变 String类中使用字符数组保存字符串,有final修饰符,因此string对象不可变。 StringBuffer和StringBuilder都继承自AbstractStringBuilder类,也是使用字符数组保存字符串,但是没有final字符修饰,因此可变 ### 问题:如何在不重新分配内存地址的情况下修改string对象? 利用Java的反射机制(final只对编译有效,对运行无效,因此可以在运行时改变final的内容。) ## 2、是否多线程安全 String是不可变的,可以理解为常量,因此是线程安全的。 StringBuilder对方法增加了同步锁或者对调用的方法加了同步锁,因...
0377961e9a534499bf072f655800c13920764eec
[ "Markdown", "Java" ]
14
Markdown
mulinsenpan/CrackingTheCodingInterview
cf53449606f7035794f2a93bd8d999300580aff9
5fc73146b57c9e93c5c8e68c0a6c4cf0a537e8d3
refs/heads/master
<repo_name>rafaelmvargas/web-front-end-final<file_sep>/src/js/modules/pokeDetails.mjs import { PokemonAPI } from "./api.mjs"; function showPokeDetails(pokemon) { var pokemonModal = document.querySelector(".pokemon-modal"); let getData = fetch(PokemonAPI + pokemon) .then((response) => response.json()) .the...
568163f249a47db46820d5002341331cc95833b6
[ "JavaScript", "Markdown" ]
9
JavaScript
rafaelmvargas/web-front-end-final
cf4945c778ec07048d6427229a9152a8503e4e7b
0c79efb4443486750b6b760c7cda6de7ee180a0c
refs/heads/master
<repo_name>simonnagel/VRED-actionBasedOnDistance<file_sep>/VRED-actionBasedOndistance.py ''' DISCLAIMER: --------------------------------- In any case, all binaries, configuration code, templates and snippets of this solution are of "work in progress" character. This also applies to GitHub "Release" versions. Neit...
84efbf1a14cc7d249861c6dbb143f082e71a9bbd
[ "Markdown", "Python" ]
2
Python
simonnagel/VRED-actionBasedOnDistance
e1f692ec8a96638823250b4ed967da596c1577fb
2d2a0113aa7fd7a35e63469e64dfbb8efbad079b
refs/heads/main
<repo_name>Food-Ordering-Application/driver-android<file_sep>/app/src/main/java/com/foa/driver/adapter/OrderItemListAdapter.java package com.foa.driver.adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; ...
b13286ca7c4ca24c276697bff9d0c5957526b82c
[ "Java", "Gradle" ]
26
Java
Food-Ordering-Application/driver-android
8d270def30cedb7100861cc362cd72e70213fdba
d01ea2c9d9ded1d122447ab635e74bbd5485454e
refs/heads/master
<file_sep><?php namespace App\Http\Controllers; use App\Models\Articles; use Illuminate\Http\Request; class BlogController extends Controller { /** * @Get("/articles") */ public function articles() { $articles = Articles::all(); return view('articles', [ 'articles' => ...
4d99e1c24369cd448769bf2b5da8765e72d8a381
[ "PHP" ]
3
PHP
chouti44/laravelCecileLivetA2dev
9d8c6949fd0fc65ccb7537eb4d0f549735caa162
a0eaaab8ff5cb28520988dcae69c2bfb28f2a196
refs/heads/master
<file_sep>'use strict'; var fs = require('fs-extra'); var expect = require('chai').expect; var Entry = require('../lib/entry'); var FIXTURE_DIR = 'fixture'; require('chai').config.truncateThreshold = 0; describe('Entry', function() { describe('constructor', function() { var size = 1337; var mtime = Date.n...
3080dac0d08c8968d710f52677f6cc4639a96214
[ "JavaScript", "TypeScript" ]
2
JavaScript
ef4/fs-tree-diff
2f5877d7aacf05def588ca82daa8068ea44d9d81
555cfabaedd7e85ea24f2a3ec922389c724b2b82
refs/heads/master
<file_sep>#!/usr/bin/python3 import json,os file_name='.credentials.json' full_file=os.path.abspath(os.path.join(file_name)) def credencial(): with open(full_file) as jsonfile: parsed = json.load(jsonfile) servidor = parsed['informacoes']['vsphere'] usuario = parsed['informacoes']['user'] senha = parsed['infor...
2733c9c3f9997cfa97b709f83cf66de89e58d9d9
[ "Markdown", "Python" ]
3
Python
laurobmb/List-Vmware-Machines
526dd5a60c0abcf36d4fcdf7748d188eee379053
db1371fe095ffe6806f5f0feed0bebb55d34d1ca
refs/heads/master
<file_sep>using System; using System.IO; using System.Xml; namespace SpellEditor.Sources.Config { public class Config { public enum ConnectionType { SQLite, MySQL } public string Host = "127.0.0.1"; public string User = "root"; public st...
d78db3678ce2bbbe819375808e9ece33927e5e88
[ "C#" ]
1
C#
azerothcore/WoW-Spell-Editor
b99ce21037080d7f7c176eb1e4b5d430a3287cd1
922ab8b6145d9b1606bad02d25be2b703783e0b5
refs/heads/main
<repo_name>Dvangstad/Book-Search-Engine-<file_sep>/README.md # Book-Search-Engine- This is book search engine that allows someone to search for new books to read so that they can keep a list of books to purchase <file_sep>/server/schemas/resolvers.js const { User } = require("../models"); const { signToken } =require("...
c1cfe5326415d514846576bc21f58aa78126f64f
[ "Markdown", "JavaScript" ]
3
Markdown
Dvangstad/Book-Search-Engine-
8d1da416df6d04b1adbcfdcce9a1e92536b300f5
1dc50caa4b435a596695dd109cc6534428a73f6e
refs/heads/master
<file_sep>package com.skillstorm.mobile.Service; import java.util.Optional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.skillstorm.mobile.models.User; import com.skillstorm.mobile.repository.UserRepo; @Service public class UserService {...
e7d9cb816b23148dc67df8c4b944a348b67552f3
[ "Java" ]
2
Java
AbdullahHady/TemporaryRepo
f050b024be8d345eb409c0223d7039c3698def5b
f597b95082903997e6368231542ea6ccc91cc0ad
refs/heads/master
<file_sep>package com.example.simplecalculator import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.widget.Button import android.widget.EditText import android.widget.TextView import android.widget.Toast import java.lang.Exception class MainActivity : AppCompatActivity() { over...
7c22b8017c9f1526fa2ee0cb309855e7db31dca2
[ "Kotlin" ]
1
Kotlin
hsn-amr/Simple-Calculator
1750433778df8d6daee43115e2faf3dff10bcc55
c0d8cf717063bbffd938cc94d1e72c993225d2f1
refs/heads/master
<repo_name>SubhamGupta007/Weather_App<file_sep>/src/components/Wheather.jsx import { Box, makeStyles } from '@material-ui/core'; import logo from '../images/back.png' import Form from './Form' const useStyles = makeStyles({ component: { justifyContent: 'center', alignItems: 'center', displ...
706b149fb49dc4344efc6bf3b9d72dfd48aca4c1
[ "JavaScript" ]
3
JavaScript
SubhamGupta007/Weather_App
d21d8acf912d3b2926aa424c315f051d49cdaadc
2b018e3b7aaa6e81e5073e580e4705fdc818fa6e
refs/heads/master
<repo_name>puffyelms/PayupDashboard<file_sep>/src/main/webapp/js/app/payup-poc/payup-poc-fm-filter-dropdown-directive.js (function() { angular.module('appPayupPoc') .directive('fmFilterDropdown', function() { return { scope: { dropdownList : '=', ...
5482511b1cd57858cfcb3350f756dbf69738747c
[ "JavaScript" ]
4
JavaScript
puffyelms/PayupDashboard
74f0ef6b27f4a763dbdbaff0f351f41d95613c65
270082da5e55995e0df393adad7a27466b01f804
refs/heads/master
<file_sep>using Microsoft.AspNetCore.Components; using S3.WebUI.cBlazor.Models; using S3.WebUI.cBlazor.Utility; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; namespace S3.WebUI.cBlazor.Shared.Services.Interface { public interface IRuleServic...
053c0921cd8025f7c4a7608400ec195069c8305c
[ "JavaScript", "C#", "Dockerfile", "Shell" ]
72
C#
abibtj/LNX-S3.WebUI.cBlazor
d6b70be359cf72a5a0c69d08280b9ad411b280f6
5f256c85ccc73cca8c80f3fee71cab86b7c94249
refs/heads/master
<repo_name>geeeero/npb-cens<file_sep>/survobject.R # what are Surv objects? library(survival) ?Surv test <- Surv(skrpd$time, skrpd$cens) test attributes(test) test2 <- unclass(test) test2 # matrix with first column time and second column event indicator (0 = censored, 1 = failed) # and attribute "type" = "right". # ...
21f712af8e9d55bb19cc8855966ec0af89c6b091
[ "R" ]
3
R
geeeero/npb-cens
7d6a968ce4b6f591d545bbf271877653951c50ba
d8077ca261c067ea7b7c43ec5b27300c2df557d8
refs/heads/main
<file_sep>import React, { useEffect, useState } from 'react' import { Container, Icon, Table } from 'semantic-ui-react' import Transaction from '../Transactions/Transactions' const TransactionsList = () => { const [transactions, setTransactions] = useState([]) useEffect(() => { fetch('https://mern-inv...
97445d471082a8f04c0905e830c6b047c346951a
[ "JavaScript", "Markdown" ]
29
JavaScript
kentiet/mern-inventory
13050e0923df2b1955b6736e8a91f48962003cca
f8deedec5f368ca297fd700e101a750a3e79b025
refs/heads/master
<repo_name>segfault88/misc-go<file_sep>/wg-gotcha-fixed.go package main import ( "log" "math/rand" "sync" "time" ) func main() { var wg sync.WaitGroup for i := 0; i < 100; i++ { wg.Add(1) go doWork(i, &wg) } log.Println("Starting to wait") wg.Wait() log.Println("Done") } func doWork(i int, wg *sync.W...
5c7bf798db705619bff4f688e3572cc56bc58784
[ "Go" ]
1
Go
segfault88/misc-go
3376704825d69f5a1045f8dd2aee2addd5cb7394
92fbb3c4af17a71f3f6c8171d8902b73f690066c
refs/heads/master
<repo_name>Anthnoybs/PHP-simple_algorithm_collection<file_sep>/algo3.php <?php for ($i=0; $i <13 ; $i++) { $results = $i*13; echo $i .'X 13 = '. $results. '<br>' ; } ?><file_sep>/algo2.php <?php for ($i=0; $i <500 ; $i++) { echo "je fais des sauvegarde regulières de mes fichiers !<br> "; ...
6c5fa4b94e6f58d2b1ca24fea0765508de7b1f4a
[ "PHP" ]
9
PHP
Anthnoybs/PHP-simple_algorithm_collection
e27986c4afd818621d7f81f883388d4d0ec795f0
7584db8586b950595e2f59ce6b20471b22a241f6
refs/heads/master
<file_sep>/** * * * * * * */ package Dhvani; import java.util.HashMap; import java.util.Map; import java.util.StringTokenizer; import com.amazonaws.AmazonClientException; import com.amazonaws.AmazonServiceException; import com.amazonaws.auth.AWSCredentials; import com.amazonaws.auth.Pr...
e14145a71cf3a03ed08b69cbc8e275cfd9de1763
[ "Java" ]
4
Java
Dhvani-UFL/Ingesting-Searching
79a976583cfcca7b7597d516758ef7d3a553c77d
27986821afafe546c8afa0740cbfd945364c9339
refs/heads/master
<file_sep>using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace BilgiIslemEnvanter.MyClasses { public class TonerZimmet { public int YaziciID { get; set; } public string YaziciMarka { get; set; } public string YaziciModel { get; set; } p...
0b34f6aa0de3162bdc0ddc3de62218b496fa7c92
[ "JavaScript", "C#" ]
13
C#
adaletinsesi1515/BilgiIslemEnvanters
609c9a8f10833dcf803d18a831712d8eb1e66dbd
df9d0870d56481f7582cba5ad54f7306d75394e1
refs/heads/main
<file_sep><?php require("dbconnect.php"); $title=mysqli_real_escape_string($conn,$_POST['title']); // 轉換字符串中特殊字符 $content=mysqli_real_escape_string($conn,$_POST['content']); // $_POST: 接收使用者傳送的資料 $assignee=mysqli_real_escape_string($conn,$_POST['assignee']); $emergencylevel=mysqli_real_escape_string($conn,$_P...
d0161ffed54f0d73e48eabdd7cd4ab48d0e8d8d2
[ "PHP" ]
8
PHP
jasonchang1126/test1
afb0d95eca1b65f2003abca9f2a296352d4511b3
8a2650e31729cf1398be82afe2ab6ded32f0ca0e
refs/heads/master
<file_sep>const express = require('express'); const bodyParser = require('body-parser'); const Promise = require('bluebird'); var request = Promise.promisifyAll(require( "request"), { multiArgs: true }); const app = express(); app.use(bodyParser.raw()); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ exten...
f67d1c01c36a8c378bbb84d9e0e2944559bf6772
[ "JavaScript" ]
7
JavaScript
saiftase/sw-character-appearance-tracker
11545061cc0c17541f42de209b3dd11e828b0e2f
d29871272415314a662524d8f58cb3e01da28c06
refs/heads/master
<repo_name>zhangdexing/StudentManagementSystem<file_sep>/main.c #include "head.h" //info_t array[5]; int tmp=0; int i,j,flag2,mode,student_num,elect; info_t *p; info_t *q; info_t str_tmp; int main(int argc, char const *argv[]) { //q=malloc(sizeof(int)*4); p=malloc(sizeof(info_t)*6); if (p ==NULL)...
030395cd983a2229d14ce307725a4523be490c4e
[ "C", "Makefile" ]
6
C
zhangdexing/StudentManagementSystem
2e761ddc5cf51eb006ff0d155f9d6f58d12b074a
59b6060c4daa49cd4bdf3c570a12ece1c0569f59
refs/heads/master
<repo_name>Strider2009/Arduino-TestProjects<file_sep>/bit_reg/bitShift_MotorControl/bitShift_MotorControl/bitShift_MotorControl.ino //**************************************************************// // Name : shiftOutCode, Hello World // Author : <NAME>,<NAME>, <NAME> // Date ...
e25a7b073de1a10423b25601a1c71b81ad3d06a7
[ "C++" ]
3
C++
Strider2009/Arduino-TestProjects
0ac3bf8ceb086fb84a6d4a56fc0911a5168b1fc3
a9b8269f0b28f5a38f5a0f364f25d1cf05a89f00
refs/heads/master
<repo_name>skorulis/drone1-gdx<file_sep>/drone1/src/com/skorulis/camera/IsoFollowCamera.java package com.skorulis.camera; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Camera; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.math.Vector3; import com.skorulis.drone1.scene.Sce...
a38ddfffaf29451a3809125352e9ccf14527d125
[ "Markdown", "Java" ]
7
Java
skorulis/drone1-gdx
9f2cd49ec417e9cc3ec7114c4495cbf827384194
5913072f136adf8c3f2a12206352e2e282e883f9
refs/heads/master
<file_sep>#include <stdio.h> #include <stdlib.h> #include <math.h> #define casa 20 int gg; int main(int argc, char *argv[]){ gg=15; long int a = 0,b,c=10; float h,g=1.1; long int hh; int q[3] = {1,2,3}; int qqq[] = {1,gg,3}; char t = 'F'; char w = 65; char x = 'a'; long double aa; short int qq; int rt =...
f5430d6d6249d2a44f1c3118d4ebee016634fca2
[ "C", "Shell" ]
2
C
dvarasm/Analizador-Lexico-Sintaxtico-C
69990c7ba4bbefc049026f5146bcac18c3a898fe
3ae89d6ae170aa2aba194803ed50bc28f528c4ed
refs/heads/master
<file_sep>$(document).ready(function() { $("#calculateBtn").click(function() { // Remove validation and results reset(); let weight = $("input[name=weight]").val(); let height = $("input[name=height").val(); // Validation let noWeight = (weight === ""); let ...
98f89bcfeb6b8a5bc5ab8ac9550677782f9e852b
[ "JavaScript" ]
1
JavaScript
tiffanyolw/BMICalculator
2aad136d6207fc8263cdba134e25a11f3909ecec
acdf0569e32d1ec4ccc797f52d06692d2a86b90d
refs/heads/master
<repo_name>kaqc/portal<file_sep>/Shared/src/main/java/me/joeleoli/portal/shared/jedis/JedisPublisher.java package me.joeleoli.portal.shared.jedis; import com.google.gson.JsonObject; import lombok.RequiredArgsConstructor; import redis.clients.jedis.Jedis; import java.util.LinkedList; import java.util.Queue; @Requir...
e81db550181b857eb657cf7d2027c9cc4ee5dd70
[ "Markdown", "Java", "INI" ]
18
Java
kaqc/portal
91f25612a724c0fc7bf9f6f36f537a3c0c451331
d2a853fdb2a2fd34929bc4df910736d9f29dd13f
refs/heads/master
<file_sep>/** * set up requirejs config * @function * @return {object} configuration option */ ( function( ) { var options = { baseUrl: "/public/script" , paths : { // lib "requireLib" : "lib/requirejs/require" , "async" : "lib/requirejs/plugin/async" , "text" : "lib/requirejs/plugin/tex...
ddef2191fe564f191fdb567b1c628790b7a46231
[ "JavaScript" ]
2
JavaScript
html5webster/learning-backbone
35438e4139a2ea154f3b64ca968dd6abca4f173f
2f5a9ef0a854f8ec55e68942bdfa6b36dd66fb08
refs/heads/main
<repo_name>akashlhire/Python-based-Student-Management-System<file_sep>/requirements.txt tkinter matplotlib pandas numpy cx_Oracle csv bs4 requests socket Pillow <file_sep>/StudentDataManagementSystem.py from tkinter import * from tkinter import messagebox from tkinter import scrolledtext import matplotlib.pyplot as ...
f45c4dcc2c24ecc21fc47ebdc36ea32176f81126
[ "Markdown", "Python", "Text" ]
6
Text
akashlhire/Python-based-Student-Management-System
32a728c1feff3cbe3e54424f2cdb82aad253271d
d7ef69b42295844b91b7c606e923f517e2042c31
refs/heads/master
<repo_name>danielmakarzec/rails-mister-cocktail<file_sep>/db/seeds.rb # This file should contain all the record creation needed to seed the database with its default values. # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). # # Examples: # # movies = Movie...
1bcf5ceabdacfde178a306eb19b17f84fa75ee88
[ "JavaScript", "Ruby", "Markdown" ]
4
Ruby
danielmakarzec/rails-mister-cocktail
a68cde0684907e9892f14a8d16604ce3eceda527
b62a3fda3e1f7cca4cc2fbcb18d0b55e786d0718
refs/heads/master
<file_sep>/* Copyright 2017 Google Inc. All rights reserved. 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...
69081bb589ef78d842f705ff69fc2f8861a486aa
[ "Markdown", "Go", "Dockerfile", "Shell" ]
13
Go
rimusz/flargo
9f7f5bb7fb066a2e75cbf14949b913888c893dc8
34fb6c7668faec68a724e796976891fd9e6e50c7
refs/heads/release-2.1.0
<file_sep>/** * PersistentStoreCoordinator.swift * * 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 ...
efb89c28922042f1e05f0ca2593099bde338d528
[ "Swift", "C", "Ruby", "Markdown" ]
20
Swift
TheClimateCorporation/coherence-2-x-swift-4
5d48a3eba894f30cd005f160c0328fb9ddb966f4
2f7a7bcc31600501540b3e74bdea99d6eb14bd13
refs/heads/master
<file_sep>module RecipesHelper def filter_heading(search_term) day = Date.today.strftime("%A") if @search_term == "" "#{day} is a great day for " else "You searched for #{search_term}." end end def filter_string(ranking) ranking = ranking.round(1) end def pagination_next...
d7f30fa5c7c980fbc99b3248bb7770c93eb19cdd
[ "RDoc", "Ruby" ]
4
Ruby
pwdd/recipe_finder
b986b9f8210db6b6dbca205e78b9a91fda914119
6fd0966a3f79dbe499b141fdbcd3057f0516a9e9
refs/heads/master
<repo_name>volente/manesapo<file_sep>/settings.gradle rootProject.name = 'manesapo' <file_sep>/src/test/java/com/rocksbook/manesapo/ManesapoApplicationTests.java package com.rocksbook.manesapo; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class Manesa...
b0c089e82709e5483cfe1906fc920a635a468429
[ "Java", "Gradle" ]
2
Gradle
volente/manesapo
362318d2f96349df72a4e4c64c947d22684aefe8
364092a37b3e327934c926098dac9b7bdc439548
refs/heads/master
<file_sep>import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText #mime(物件)包下常用的三個模組: text image(圖像) multipart。text常用於製作文字內文 gmail_user='<EMAIL>' gmail_password='<PASSWORD>' from_address=gmail_user to_address=['<EMAIL>'] Subject="Hi" contents="ergrgrttg" mail =MIMEMultipart() ...
9a4c2ad4d3ad2dc957c603695b27c430da45eebd
[ "Markdown", "Python" ]
2
Python
Timothy12christ/mail
994058b678f59845bbfbf7d7dac54debced589c4
1d5d0ac9d7f95aea3f4559606476e427c7552ba1
refs/heads/master
<repo_name>Gortubia/solemne3.tiwebcom<file_sep>/build/generated-sources/ap-source-output/cl/duoc/dej4501/solemne3/tiwebcom/entity/Provincias_.java package cl.duoc.dej4501.solemne3.tiwebcom.entity; import javax.annotation.Generated; import javax.persistence.metamodel.SingularAttribute; import javax.persistence.metamode...
5a62d90711e742e969d86a65468563e24a411d83
[ "Markdown", "Java", "INI" ]
17
Java
Gortubia/solemne3.tiwebcom
b817d11a64ddd0d7f4370ff80b490b0e1b6fbe7e
c2c87c4a8bf6bf8ac1a51dc00499193982c2f41e
refs/heads/main
<file_sep>using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using SuperHeroProject.Data; using SuperHeroProject.Models; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SuperHeroProject.Controllers { public class SuperHeroController : Contro...
24ef5843fe02741df8d96f6a849224622920dcca
[ "C#" ]
1
C#
adustin70/Heros-That-Are-Super
b595f3f68d0429518f031daa3390c650cee4ea9b
df1dd2cab3a33ed560882089530de6e01e77d704
refs/heads/master
<file_sep>version: '2' services: nodejs: build: . container_name: nodejs volumes: - .:/user/src/app command: ['/bin/sh', '-c', 'yarn install && yarn run dev'] expose: - "8080" nginx: container_name: nginx image: nginx:stable-alpine restart: unless-stopped environ...
4ede0601360aaaa5395c3415ed2832bbb2a0fd55
[ "JavaScript", "YAML", "Dockerfile" ]
5
YAML
worawut007/node-express101
789c75cc98b96ca6e3026e655f8d447ec4e932e6
1b4317425e12ee9fc07dbb46df483da59b2d043f
refs/heads/master
<file_sep>from django.db import models # Create your models here. class Member(models.Model): member_name = models.CharField(max_length=50)<file_sep>from django.shortcuts import render # Create your views here. def create_member(request): pass def retrieve_member(request): pass def delete_member(req...
01c6b9e968037794085f2704823b4fa97274e2e3
[ "Markdown", "Python", "HTML" ]
11
Python
Abdelbasset-Aidouni/CSE
9237f13ec5f8fec723f492d91f52b995321f860b
1e7c8fe33676949cafed6e09e0207292c7bd2ee9
refs/heads/master
<file_sep>/* * practice.c * * Created on: Nov 4, 2016 * Author: qshan */ #include <stdio.h> #include <stdlib.h> #include <practice.h> //sort##### int sort_int(int Array[], int size_array) { printf("\nHello from %s function!\n", __func__); int i,j; int temp; // for (i=1; i<(sizeof(Array)/sizeof(Array[0...
3f55464cb01d12ddfa7a35ad6c048ccd25f0005d
[ "CMake", "Markdown", "Makefile", "Python", "Text", "C", "Shell" ]
115
C
qshan/ctest_qshan
13ca45dee9cde3ab8d28dc2d7a707ddd83ade8d7
10c1094d35c9108b402bdea8b47f39790abb7ee1
refs/heads/master
<repo_name>deftomat/opinionated<file_sep>/src/yarn.ts import { bold, underline, yellow } from 'chalk'; import execa from 'execa'; import { existsSync, readFileSync, writeFileSync } from 'fs'; import { fixDuplicates, listDuplicates } from 'yarn-deduplicate'; import { Context } from './context'; import { ToolError } from...
dc5a3873cf539d5bb9adba711244bedc5415d8c1
[ "Markdown", "TypeScript", "JSON with Comments", "JavaScript" ]
24
TypeScript
deftomat/opinionated
3684c67c5f4a565ce13c3f2b6484273c6abaae40
35a07cef9d918adc5aa74a2fbfea7a6cdc2ec0b4
refs/heads/master
<repo_name>angobey85/andesiot_app<file_sep>/api/models/data.js import mongoose from "mongoose"; const Schema = mongoose.Schema; const dataSchema = new Schema({ data_userId: { type: String, required: [true] }, data_equipment_id: { type: String, required: [true] }, data_variable: { type: String, required: [tru...
eca406111485faff452a823274358877f3209244
[ "JavaScript" ]
14
JavaScript
angobey85/andesiot_app
91b4ef76064fc2f18896405abf382bc8e41aa56f
b905b13f9af6f8dd7c4e0bdc85f4ed060a4fdedb
refs/heads/develop
<file_sep># NoteMaker This a note making and sending app build using express , mongodb and nodejs , allowing an user to create and send notes to a particular person on his/her email id. Pre Requisites : 1. Make sure that you have mongodb Installed on your system and congfigured it properly by setting up the command...
f2f0acff6101268a3e9e918002f0d24533cb1bd4
[ "Markdown", "JavaScript" ]
3
Markdown
mjindal585/NoteMaker
290b90d12d6d93aaa4fb4a2946d9b1dc9ee05f54
e285d0b444f2a0e153221746637cdc4c07673a8f
refs/heads/master
<repo_name>vlakoff/framework<file_sep>/src/Illuminate/Database/Schema/ColumnDefinition.php <?php namespace Illuminate\Database\Schema; use Illuminate\Database\Query\Expression; use Illuminate\Support\Fluent; /** * @method static after(string $column) Place the column "after" another column (MySQL) * @method static...
5673342bfe63fb18549623856660a94319929c69
[ "PHP" ]
1
PHP
vlakoff/framework
46084d946cdcd1ae1f32fc87a4f1cc9e3a5bccf6
6fe9b9df9a7c460c8cbf60de09e7cc14a34e0342
refs/heads/master
<file_sep>sudo apt install sysstat net-tools -y<file_sep>def test_interfaces_up(collected_data): for key, value in collected_data['interfaces'].items(): assert 'UP' in value def test_default_route_present(collected_data): assert collected_data['default_route'] def test_processor_load_by_system(colle...
4ea1e3fb0e31b4c67cc80fdd783b15974798e956
[ "Markdown", "Python", "Text", "Shell" ]
7
Shell
alex-rybin/otus-qa-automation-os-tests
bb47d553431dad322cbbd9b488e486a60fd2b12a
91d6fe3d4477f5b3d183c8df5217af3f536e4f31
refs/heads/main
<repo_name>promisepreston/devops_exercise_docker<file_sep>/python_stop_server.py # /usr/bin/python3 import boto3 ec2 = boto3.resource('ec2') instance = ec2.Instance('id') response = instance.stop( Force=True ) <file_sep>/python_start_server.py # /usr/bin/python3.8 import boto3 ec2 = boto3.resource('ec2') insta...
635d1cfa48d59b8c52f90fa45826005ee18e8bce
[ "Markdown", "Python", "Shell" ]
4
Python
promisepreston/devops_exercise_docker
4d8ce54d548d5a28f2913f5ffed1eb705cb41e06
982066679a4afa7509b514e8214b0d3b31cd7bfe
refs/heads/master
<file_sep>/* soapStub.h Generated by gSOAP 2.8.32 for soap.h gSOAP XML Web services tools Copyright (C) 2000-2016, <NAME>, Genivia Inc. All Rights Reserved. The soapcpp2 tool and its generated software are released under the GPL. This program is released under the GPL with the additional exemption that compiling, l...
c3daa61e3c2f4e629ce1d815e5afa3744c461506
[ "Makefile", "C++" ]
7
C++
linuxxunil/gsoapExample
ba76eed9522ef0fe3d302dd14e99be9a703753ca
310c947804118ad139446ec773449668d0d99f3b
refs/heads/master
<file_sep>import os import numpy as np import itertools import matplotlib import matplotlib.pyplot as plt from scipy.spatial import ConvexHull from yahist import set_default_style set_default_style() from matplotlib import rcParams rcParams["axes.xmargin"] = 0.1 # set_defaults() srs = {2: {}, 3:{}} # nb range, nj...
8f8b24714c27b2785bc4b66604feb66a47ec2b1f
[ "Markdown", "Python", "Makefile", "Shell" ]
13
Python
aminnj/notmythesis
1ad00aa07e7b5b37a3eea60cf5206e85fafd43fb
4413c468135216922136e2c1edbd172c8dde69cb
refs/heads/master
<repo_name>Ziyu-Chen/image_hashing<file_sep>/download_image.py import requests from PIL import Image from choose_headers_randomly import choose_headers_randomly directory_path = '/Users/Ziyu/OneDrive - Clarivate Analytics/Desktop/lego/' def download_image(url): image_path = directory_path # Generate the corr...
1ab2c3dbe3b8323c9167236160af263daca0ec5d
[ "Markdown", "Python" ]
8
Python
Ziyu-Chen/image_hashing
d48443b59959f2f785b864908e9b0979de59fe7a
d2a79ff610bf5bdfb35a451a05d99bdf95bb64ec
refs/heads/main
<repo_name>hopcolony/flutter-hopcolony<file_sep>/test.sh project=${1:-} root=$PWD if [ -z "$project" ] then cd $root/packages/hop_init && flutter test cd $root/packages/hop_drive && flutter test cd $root/packages/hop_doc && flutter test cd $root/packages/hop_auth && flutter test cd $root/packages...
6f5f1bc42aa8a610257f32779302ebbafe5abe2b
[ "Markdown", "Shell" ]
10
Shell
hopcolony/flutter-hopcolony
7b00bc107d83126b56f2c8f93a3b189f232c38c7
c62a89bd2d7011a0ee387e315ae2c0fe24af7d86
refs/heads/master
<file_sep>""" // Time Complexity : O(n), length of T // Space Complexity : O(1), max 26 // Did this code successfully run on Leetcode : yes // Any problem you faced while coding this : no """ from collections import defaultdict class Solution(object): def customSortString(self, S, T): """ :type S: ...
64580c64ea202ae230028f96a832920b2e0d50c1
[ "Python" ]
2
Python
akshatasawhney/Strings-1
90e9b51f6652549316499c24b7ca3089982bd602
cbe14b0373106d4c443fcb8dd6f4e61c5a815bf9
refs/heads/master
<file_sep>const shoppingLists_view = ((data) =>{ let html =` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="style.css"> ...
0b75518bc98ed0b6afcf27998cb786cbf48b62a3
[ "JavaScript" ]
2
JavaScript
ohsu19mika/VEOH-ShoppingList
90aca806badf2e70a48a92d5f5fe934afc3fee39
747d15d5647f16a1639d56753fc33c0af0b7dcc1
refs/heads/master
<repo_name>MohAnghabo/pinGen<file_sep>/routes/index.js var express = require('express'); var router = express.Router(); /* GET home page. */ router.get('/', function (req, res, next) { let validPins = [] let unvalidPins = [] function pinChecker(pin) { let pingString = pin.toString().split(""); if (ping...
1e124f0d5d35c9ef86bc8289751b12ef819398d8
[ "JavaScript" ]
1
JavaScript
MohAnghabo/pinGen
fa7d93f99cd5600a46ecb5db1bfd65a22d4d3bf6
28a339a1cc0020a49d57422d5939ec0420ffabc5
refs/heads/master
<repo_name>pigottlaura/SSP-Assignment-02-PortfolioBuilder<file_sep>/public/javascripts/loginScript.js jQuery(document).ready(function ($) { console.log("Login script loaded"); // Everytime the username or password field of the create account form are changed, sending AJAX requests // to the server to see i...
54372eb2e1a2cab1b63aa97ebe3b46bd65ab5cb8
[ "JavaScript", "Markdown" ]
10
JavaScript
pigottlaura/SSP-Assignment-02-PortfolioBuilder
bd043a25f1de79636f3205cee9e998f385a4b453
48b8fbc279e8a74c5a99de7fb40c32c7828182f9