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
<repo_name>chendss/imageBed<file_sep>/src/script/upload.js import BaseUpload from './baseUpload' import { log, objToFormData } from '@/utils' import { PostXhr } from '@/utils/baseRequest' class UploadFile extends BaseUpload { constructor() { super() this.dict = { jd: 'https://api.uomg.com/api/image.jd...
174a2d036e45644094188dbefa95da32d2fc304a
[ "JavaScript", "Python", "Markdown" ]
12
JavaScript
chendss/imageBed
edf9baa39d6cdca35ae21b480104e222dc62427e
436fb429457d7ee8259916559d299e0c89f980a1
refs/heads/master
<repo_name>etoki/0726_biginning<file_sep>/README.md # 0726_biginning 初めて書いたコード集 <file_sep>/bootstrap/app/views.py from django.shortcuts import render from django.http import HttpResponse from django.template import loader, Context def show_temp(request): context = Context() context.update(dict(metadata=request.MET...
77515e0b8201c3b39190e10e3d4cfb3954c26839
[ "Markdown", "Python" ]
4
Markdown
etoki/0726_biginning
7c7f82312cfffbbddcfb32c2e507da01834b3a31
36564a00912317c8afe06b03a2f42fbb4bbe44dc
refs/heads/master
<repo_name>Felipe-Borba/hello-world<file_sep>/README.md # hello-world In the editor, write a bit about yourself. test of something sadasdasdasd asdasdas <file_sep>/Codigo em c/teste.c #include <stdio.h> int main(void){ unsigned int in = 0x0f; unsigned int out; out = (in>>1); printf("in: %x\n", in); printf("out: ...
0e2f0d37a0ed5529d281b73fd8a04427bdfb3b02
[ "Markdown", "C" ]
3
Markdown
Felipe-Borba/hello-world
b7ca51d729521cc7addb2924cde9e6e9d095915f
20e5cb411ab6bc2b02868d50cd44df0a5290acf8
refs/heads/master
<repo_name>bomek1/nowa_pem<file_sep>/nehisa/Form1.cs using System; using System.Collections.Generic; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.IO; using System.Text; using System.Windows.Forms; namespace nehisa { public partial ...
efeb6b62402db4fdca052458f9c2d5777f79be16
[ "C#" ]
1
C#
bomek1/nowa_pem
9d240cc75e231b48fbfae04752ad03dfce32c3f1
33ec403b236454ab85dbd01f031f63392055c6be
refs/heads/master
<repo_name>st55425/NNPIA_React_Todo<file_sep>/src/components/TodoItem.js export default function TodoItem({item, onClickHandler}) { return ( <div className="border d-flex flex-row itemContainer mx-auto"> <p className="item">{item.name}</p> {!item.completed && <button className="btn...
2150804e301e15108392a677a30e1d1b138b33d2
[ "JavaScript", "Markdown" ]
5
JavaScript
st55425/NNPIA_React_Todo
be44b43017bccf9306820a70e945692a32e8431b
ff199e698172a834a1030efef2b6feb11d89bfa5
refs/heads/master
<repo_name>angeldelacruzdev/contador-con-react-native<file_sep>/src/pages/CounterPage.js import React from "react"; import { StatusBar } from "expo-status-bar"; import { View, Text, StyleSheet, SafeAreaView, Pressable } from "react-native"; import { useSelector, useDispatch } from "react-redux"; import { increment, de...
03a5b53fc9f294024b752f253a09dfdaccb25426
[ "JavaScript" ]
1
JavaScript
angeldelacruzdev/contador-con-react-native
34945ef71885a4fd42c9c623dad2e6832ee3af2d
e8ad4a36990e4e2a5be45a4edffd55948497b41d
refs/heads/master
<repo_name>julia-francais/hackernews-<file_sep>/src/App.js import React, { Component } from "react"; import "./App.css"; import { sortBy } from "lodash"; import Search from "./components/Search"; import Table from "./components/Table"; import Button from "./components/Button"; const DEFAULT_QUERY = "redux"; const DEFA...
4b0c3f4a7b00dbb3d77f4a0c2383b5bba526759e
[ "JavaScript" ]
1
JavaScript
julia-francais/hackernews-
c70f98fd93901b8b5079e44780999860b82b1719
8d7669e5e02ebe519af4182b6b414196411d056f
refs/heads/master
<repo_name>timproctor/Just-summing-arrays<file_sep>/total.rb Just-summing-arrays =================== Two ways to sum array # Using #inject is a efficient way to sum any array def total(array) array.inject(:+).to_f end # Or..... def total(array) total = 0 array.each do |number| total += number.to_f en...
2b05469cea88c428272dfc3460565da90a69c417
[ "Markdown", "Ruby" ]
2
Ruby
timproctor/Just-summing-arrays
226ea6aa11ceb5bf513cf5a2cb0270d65f5aa52f
bc2bad9801e5d25852d26fe30210a81cfe116496
refs/heads/master
<repo_name>jarpar/Dziedziczenie<file_sep>/src/dziedziczenie/potwory/Zombie.java package dziedziczenie.potwory; public class Zombie extends Potwor { @Override protected void opis() { } public Zombie() { System.out.println("Domyślny konstruktor z klasy Zombie"); } @Override public ...
7f77690ae29106fa444e87c1fe9622efcf38f4f7
[ "Java" ]
4
Java
jarpar/Dziedziczenie
e42ef5356ec8364299670cc82d53c8dd3e81b57b
bf4cb588069a6f2862055be75cde26e33043d025
refs/heads/master
<file_sep>#!/usr/bin/env python # options @ http://tidy.sourceforge.net/docs/quickref.html import tinytidy options = { 'indent': 1, 'markup': 1, 'add-xml-decl': 1, 'output-xhtml': 1 } print tinytidy.parseString('<title>Foo</title><p>Foo!', options) <file_sep>/* * Python TinyTidy: a minimal TidyLi...
71d72868315429bca18854c00311d18e07292325
[ "C", "Python" ]
3
Python
xNidmeSx/tinytidy
fe0db88e9f06871acdab4177f016678de3425692
de4c0cbaf6ddcad9a22f81e048c1b27fb660b5c2
refs/heads/master
<repo_name>Emomotko/Beatbox<file_sep>/module2.py #!/home/emilia/anaconda3/bin/ipython # -*- coding: utf-8 -*- """ Created on Sat Nov 28 18:22:16 2015 @author: emilia """ import re import sys from module1 import * from module2 import * import numpy as np import scipy.io.wavfile import scipy.fftpack import os def sa...
70ffe9eb8d6a651d243bb9cc5fe32f17793d6deb
[ "Python", "Text" ]
4
Python
Emomotko/Beatbox
9fa0f858b54f7ee497ec5d78f1c5a46925a9c849
3208785d031766abd087ff81d534bde752e50d66
refs/heads/master
<repo_name>cs1102-lab1-09-2019-2/proyecto-final-streetlab<file_sep>/ProyectoFinalStreetLabV2.cpp #include <iostream> #include <iomanip> #include <fstream> #include <string> #include <vector> using namespace std; class Mapa { public: string texto; ifstream inFile; vector<vector<int>> matriz; int j = 0;...
e123350a954aea1ab3ca90d2718fd514f4a5db3b
[ "Markdown", "C++" ]
4
C++
cs1102-lab1-09-2019-2/proyecto-final-streetlab
1b733825f9a1917a1bb05a9d9921f75c977ef27e
8eab1d09c36e924ecab1b5cc9a0b9bf201c69e6c
refs/heads/master
<repo_name>guranshdua/laworder<file_sep>/officer/pages/citizens/approve.php <!DOCTYPE html> <html lang="en"> <head> <?php include('../../partials/_head.php'); ?> </head> <?php if(isset($_GET)) { extract($_GET); $query="SELECT * from `citizen` where Citizen_id=$id"; $result=mysqli_query($con,$query); $r...
b52d107ae6f0947951c6c83b7fe7615c1f2e1628
[ "PHP" ]
20
PHP
guranshdua/laworder
fdb92aec7b5b58f634e7d91b8a025ae0f0ccf1e0
e2fc220df4cf3ebcd8ccd3bc1e467688d3a23b02
refs/heads/master
<file_sep>window.onload=function (ev) { lun_bo(); let w = parseInt($('.win').width()); $('.cir').css({ left:(w/2-35)+'px' }) }; let t = 0; function lun_bo() { t++; if (t >= 100) { let w = parseInt($('.win').width()); let l = parseInt($('.imgs').css('marg...
4ce7fa16cea9a52685b9a5a1a3b8bdc92b19042e
[ "JavaScript" ]
1
JavaScript
gebidawang/gebidawang
1079d0f5b34f23e887bd051f483a289d60204ff4
96e8af2312f0a86a792906f21b127fa00e0d06a5
refs/heads/master
<repo_name>Shas77/Sprint2<file_sep>/Asian_Paints_Sprint2/src/test/java/pageFactory/HomePageFactory.java package pageFactory; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.Pa...
f4f557d3bcc4fcbcadd7ff54eef8fbb4d74d7410
[ "Java", "HTML", "INI" ]
4
Java
Shas77/Sprint2
abdddbd03824a146ccfaf57209d7e6122e34947c
252299a110199b3b67b0cafefc3af2aa10086b1f
refs/heads/main
<repo_name>poojakolani/hacktoberfest-1<file_sep>/codevita1.py def isPrime(n): b = True for x in range(2,n-1): if(n%x==0): b = False break return b totalHr , division = map(int,input().split()) peroid = int(totalHr /division) counter = 0 for i in range(2,peroid): if isPr...
188eec5404320313afa3cc81e089136877dd9029
[ "Python" ]
1
Python
poojakolani/hacktoberfest-1
5a6ea948b7979c8b000ea40e568c8d21df577a61
9fd966a3eab104267cb4fdb4f074d982f849afd0
refs/heads/master
<file_sep># valter.2019.2.poo<file_sep>package aula1; public class camisa { String manga; String cor; String tipo; String tamanho; boolean desenho; void desenhar(){ if(desenho) System.out.println("Desenho encontrado"); else System.out.println("Desenho não encontrado"); } ...
a0b4a36818d411f370eccd49756f9ea24585d307
[ "Markdown", "Java" ]
2
Markdown
lorenzanf/valter.2019.2.poo
f00ccd156fa819212cd3ddf3d5c3914c494e0e6e
fa3451464282918babaa3e5ce492d23a34c1c33e
refs/heads/master
<repo_name>rodrigobarro/meutimefcapp<file_sep>/README.md # MeuTimeFC App [![Build status](https://build.appcenter.ms/v0.1/apps/4cec468d-6e8a-460c-8dab-51eb9a1e4a75/branches/master/badge)](https://appcenter.ms) <file_sep>/ios/Podfile # Uncomment the next line to define a global platform for your project # platform :ios...
72e2ed5f2fea3ea2f853e40bc214b57366cd385b
[ "Markdown", "JavaScript", "Ruby" ]
10
Markdown
rodrigobarro/meutimefcapp
4e19fbf2f4fa2d23378a490fdadd6a6af425c3f8
5ee7419e7c66a6f2958fed342d50763e70c7d1fc
refs/heads/main
<repo_name>MitsuiWei/Temperature-conversion<file_sep>/temperature.py tem = input('請問你要將華氏轉攝氏(F),還是攝氏轉華氏(C): ') if tem == 'F': f = input('請輸入華氏溫度:') f = int(f) c = (f - 32) * 0.555 print('相當於攝氏溫度:', c) elif tem == 'C': c = input('請輸入攝氏溫度:') c = int(c) f = (c * 1.8) + 32 print('相當於華氏溫度:', f) #pw:0
128227df8358c7cffce122a1976cce0d13375885
[ "Python" ]
1
Python
MitsuiWei/Temperature-conversion
ae6d007b17d8edce8613e3bc815bb4222702963f
7339ea575feacfa791edc4f3cccbf3421ea73bfe
refs/heads/master
<repo_name>zesbr/minigolf<file_sep>/minigolf/src/test/java/minigolf/domain/HoleTest.java package minigolf.domain; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; public class HoleTest { Hole h...
077e804f0cef0f63cd8ab833508a571eb260890f
[ "Markdown", "Java", "HTML" ]
24
Java
zesbr/minigolf
cdf33c00e55054d4993663e87576c1fb37c295fa
0a09d82f9f855fe042fd46d3789e8a03f10c3ff8
refs/heads/master
<repo_name>rubemvieira/projetointegrador-modulov<file_sep>/LojaServico/src/main/java/persistencia/ServicoDAO.java package persistencia; import java.io.Serializable; import java.util.List; import org.hibernate.query.Query; import org.hibernate.Session; import org.hibernate.Transaction; import bean.Servico; ...
361eb1d3bbefd3b1582eca2b7c7b64e170cad89a
[ "Java", "Maven POM" ]
9
Java
rubemvieira/projetointegrador-modulov
a783bf64fbf689189503a94ee660067c20d8e4ce
ff561ba20d7e98643947d7b3d7d2add804c83a9f
refs/heads/master
<file_sep>#include <iostream> #include "matgen.hpp" #include "fdops.hpp" #include "IterativeSolvers/jacobi.hpp" namespace bz = blaze; namespace bu = blazeutils; /**/ int main() { std::mt19937 g(0); bz::DynamicMatrix<double> A = bu::randn_matrix_real<double>(3UL, 3UL, g); //bu::print_mat(A); bz::Compress...
7302ed9767cef24123f3881b23cc78385dc69b53
[ "CMake", "C++" ]
8
C++
Chronum94/BlazeUtils
86a47b756cbda562d3db28221b5ddf2a31613345
610cb3c390580f667faf4997e601117b73e5683a
refs/heads/master
<repo_name>citradp/DOM-practice<file_sep>/dice.js // alert("Hello") var randomDice1 = Math.floor(Math.random() * 6) + 1; var numberDice1 = "/images/dice" + randomDice1 + '.png'; var randomDice2 = Math.floor(Math.random() * 6) + 1; var numberDice2 = "/images/dice" + randomDice2 + '.png'; var dice1 = document.querySelec...
3515d070c2fba0a172e44bba88299d61b224feb0
[ "JavaScript" ]
1
JavaScript
citradp/DOM-practice
58dafc6ff31ddca4107ef45184f73ec2986d38a4
a0bfca77cfeb995f4bceacdcbc38bcdfab0363dd
refs/heads/master
<repo_name>LeoCR/react-redux-users-restaurant<file_sep>/src/actions/userActions.js import {SET_USER,EDIT_USER} from '../constants/userTypes'; import api from "../apis/api"; export const setUser=(user)=>{ return{ type:SET_USER, payload:user }; } export const editUser=user=>async dispatch=>{ c...
ff23bc83f866abd6333d65ec1d368bd573803d0d
[ "JavaScript", "Markdown" ]
13
JavaScript
LeoCR/react-redux-users-restaurant
e437875b65530d45899512174b22c25e25332f62
d1a69b7dd9a9bcbc58154f20feea3b8fec0f3096
refs/heads/master
<file_sep>package fr.comvqh.lvinbottle; import org.bukkit.command.CommandExecutor; import org.bukkit.event.Listener; import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; import fr.comvqh.lvinbottle.commands.Commands; import fr.comvqh.lvinbottle.listeners.BottleXPListener; public class Ma...
e2d85dc5b2941512d10a0342836b16318d1247f8
[ "Java" ]
1
Java
comvqh/Level-In-Bottle
7f9c0597835e5544c0ac0c35e6bacf3e8d1fe824
4298c616414b6e0488b5919f837bf621c1401d69
refs/heads/master
<file_sep>function createEmployeeRecord(empArray){ let employee = {} employee.firstName = empArray[0] employee.familyName = empArray[1] employee.title = empArray[2] employee.payPerHour = empArray[3] employee.timeInEvents = [] employee.timeOutEvents = [] return employee } function creat...
43b8e5d6cfe0d0343f2b8bdb69dce667096a8278
[ "JavaScript" ]
1
JavaScript
christopherleja/js-advanced-functions-introduction-to-context-lab-nyc04-seng-ft-021720
f44841dd29cad38f5748cbfec8d377e0064a8aed
3942181158eef5909eb0de5383d17da5c4f45824
refs/heads/main
<file_sep>using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AbaloneGameForm { class Board { public static int CENTER_ROW_INDEX = 4; public static int COLUMNS = 17; public stat...
c884af06add93ca085f98d4df1762e8c22f24f1c
[ "C#" ]
1
C#
honyelbaz/AbaloneGUI
2236bf88f46b645a0f260d4015b2018d695eea6a
d58658cf119133f018e26ed983d6f0440a027da9
refs/heads/master
<file_sep># FriendFinder- A small Web App to match you with compatible friends ## Project Overview The FriendFinder is a project that involves a few components: client-side interface, an express.js server, and server-side routing. The app is designed to take in user's answers to a survey of 10 questions including the...
caf8d08cfbd3f5677045743a368bad5417732c65
[ "Markdown", "JavaScript" ]
2
Markdown
blmlol/FriendFinder
1af96820781a1cac03abd5fd6d327bddf79a9d5a
efcc331148a9020774433ae3562378051d9b5aa9
refs/heads/master
<file_sep>$(document).ready(function() { // REMOVE LINK FROM TOP MENU ITEM $('.sidebarNavItem .menu-item > a').first().removeAttr('href'); // SIDEBAR NAV MENU var nav_item = $('.sidebarNavItem li'); $(nav_item).mouseover(function() { $('ul:first()', this).addClass('visible'); }).mouseout(function() ...
34fe0f1dcc9c83429b6d931514473e43f7d1b8c3
[ "JavaScript" ]
1
JavaScript
mru24/Navbars
6aaa3dd859201d8f86fde75f81944b656784abc4
073955da713dffbf7f738caaea56481bae4aa89e
refs/heads/master
<file_sep>using Microsoft.VisualStudio.TestTools.UnitTesting; using stringCalcKata; using System; namespace stringCalcKata.Tests { [TestClass] public class AddStringCalcTest { [TestMethod] public void add_getsEmptyString_returnsZero() { //arrange string input...
6fbb1ee7fae009221d3950d459ddc173340bfa24
[ "C#" ]
2
C#
bigMackD/stringCalcKata
017791faf2505b8e60a1dfff70c9a79d0ac15c50
bc825d3e1f826af758913d659effb175f360bcf2
refs/heads/master
<file_sep>/* Tabla de Simbolos */ struct simbolo { /* Nombre de la variable */ char *name; char *type; char *scope; }; char *compareTypes(char*a,char*b); char *resultOperations(char *a, char *b, char *op); char *getTypeOfFunc(char text[]); char *getTypeOfArray(char text[]); int getRangeOfArray(char text[]); ...
4361ef1b3c9a94218c77655011f5c900a907e87d
[ "C", "Makefile" ]
5
C
MemoBego/JaguarC
ecf8b24ef316893ee91d3b6450832868ee27eca9
92fe75adfed50031417a53ba801dfef1bb60f6d1
refs/heads/master
<file_sep>import Share from 'tencent-share'; Share.setShareInfo(shareData); document.querySelector('.btn').addEventListener('click', function(){ Share.show(); })<file_sep># 设置分享信息 该模块集成了微信、QQ、腾讯新闻客户端、腾讯视频客户端的分享API,可以设置分享的标题、描述、图片和链接。 请注意: 当前功能只能在`*.qq.com`域名的网页中使用,其他域名调用当前模块是没有效果的。 使用方式: ```javascript impor...
3977bf25538ca232ef38e28f8698bfe9f2e9f030
[ "JavaScript", "Markdown" ]
2
JavaScript
lyken/tencent-share
195960cd0795e69ab27f36995ffbd54193097459
fd71a1f9d151c93b42c9dd13ae610397055a8a1a
refs/heads/master
<file_sep>import { Controller, Get, Param, Query } from '@nestjs/common'; import { Project } from '../project.interface'; import { ProjectsService } from './projects.service'; import { DateBoundQuery } from '../date-bound-query.interface'; @Controller('projects') export class ProjectsController { constructor(private...
f019532a87dd1e8a47ec4103e23b7443b55b332b
[ "Markdown", "TypeScript" ]
8
TypeScript
adrianchung/4-kpis-take-2
42e0b0547eee32715208bae2e55e32a915fd0966
b06005a9f542b7d865425d6766d10bd8b95f8a90
refs/heads/master
<repo_name>szymcio32/flask-aws-esc-terraform<file_sep>/flask_app/config.ini [app] secret_key = secret_key [awssqs] name = flask_app [awscognito] user_pool_name = flask_app user_pool_client_name = flask_app username = test user_password = <PASSWORD>!<file_sep>/README.md # Deployment of Flask application on Amazon Farg...
7e05cbd20699967a441d71a88f8d87a5ae890456
[ "Markdown", "Python", "Dockerfile", "INI" ]
9
INI
szymcio32/flask-aws-esc-terraform
29035ecf19486e671429cd62c59bd71c8a080a72
34ad76e29a86eecfbbcfe8daa243cce88a501c01
refs/heads/master
<file_sep>package test.model; import org.fanfan.resp.param.annotation.Document; import org.fanfan.resp.param.annotation.ResponseField; /** * @description: 内部类 * @author: fanfanlordship * @create: 2021-03-03 23:06 */ @Document public class InC { @ResponseField(name = "开始") private Integer start; } <file_s...
4a1b34d0a3f34a2a2e421d9d3bf5d81dc78de2b7
[ "Java" ]
4
Java
fanfanlordship/ResponseArgs
6646b7fb1355baf2caaa50690e4b58881eb25e04
58af664b6f2b647752f2bd5cfc78b46f5747fb28
refs/heads/master
<file_sep>const defaultResult = 0; let currentResult = defaultResult; let logEntries = []; function getUserInput() { return parseInt(userInput.value); } function writeToLog(operator, pervResult, operationNum, newResult) { const loogEntry = { operation: operator, prevResult: pervResult, number: operati...
97a803b66bed397f1cbe541d27ca45b0e824b054
[ "JavaScript" ]
2
JavaScript
amahmadnia/javascript
d9eb6cbe21e94ac8c3609178575bb88a0c7761c7
6f2c314029b45c590bc077308203bb7ac8f95f43
refs/heads/master
<file_sep>package net.icenet.massrenamer.core; import java.io.File; /** * A file that reads names of all similar files in the folder + their extentions separately * It can add a random length text into every files' name - and add a complex iterable number as well */ /* * Class READER - reads all file...
4129f6fdf63e526b54316da984d54e3c933ad4d7
[ "Markdown", "Java" ]
4
Java
vtolok/File-renamer
737618e7e97b84509663987913505b7a3fd79f21
ec993ca5c61e2eeff55844b761b100510c30c140
refs/heads/master
<repo_name>mandypand/WeCreative-mongoDB<file_sep>/mongo.js const mongoDB = require('mongodb') const mongoClient = mongoDB.MongoClient const Url = `mongodb+srv://${process.env.DB_USERNAME}:${process.env.DB_URL}:${process.env.DB_PASSWORD}` async function run() { try { const client = new mongoClient(Url) ...
26bc4a904c2321976f6df29668db8660360dfccf
[ "JavaScript", "Markdown" ]
2
JavaScript
mandypand/WeCreative-mongoDB
11cc77e6de9d52b8a883c3da46591fed9dfa5bda
c4330b90a3cf67300835489a759cfcd87fc96b23
refs/heads/master
<file_sep> class HtmlOutputer(object): def __init__(self): self.datas = [] def collect_data(self, data): if data is None: return self.datas.append(data) def output_html(self): fout = open("output.html", "w", encoding = 'utf-8') fout.write("<html>") ...
494b92d05b8105500fd04facca57a3d73a1a588a
[ "Python" ]
1
Python
xfwaaang/baike_spider
5f0c083e2cda52a1682e5d383ccad14651fbb501
68c07492bcea288725764c1fd2fdda26c2b8aa06
refs/heads/master
<repo_name>manoelrmj/CPA-III<file_sep>/strings/leString.c #include <stdio.h> #include <stdlib.h> #include <string.h> void main(){ char texto[100]; char padrao[100]; int i; int j = 0; int found = 0; printf("Insira o texto T: "); scanf("%[^\n]s", texto); scanf("%*c"); printf("Insira o padrão P: "); scanf("%[^\...
4100043d9e8da7704d6907bd215ba0669929b30d
[ "Markdown", "C", "Shell" ]
9
C
manoelrmj/CPA-III
7e84f0f1581615a3b66d07f5f4719475c9682fe4
0570a3916d45373e13d60837bb9965cd699bb637
refs/heads/master
<file_sep>## mote-models Intended to be a simple data modeling library with immutability built-in. It is inspired by Ruby's ActiveModel, though much fewer features. ### Installation ``` npm i -S mote-models ``` Note: lodash 4.17.x is a peer dependency. So make sure to include it in your application's dependencies....
86ed474582cb812392f921ca515296eec6827745
[ "Markdown", "JavaScript" ]
5
Markdown
disbelief/mote-models
574951bc49673951d0bcef3d5570da0649d1f359
5a7375d4f9792bd2bdee591dc6b2fb1b8e45cfff
refs/heads/master
<file_sep>import React, {PropTypes} from 'react' export default React.createClass({ propTypes: { appID: PropTypes.string }, render() { const appIDSwitcher = this.props.appID ? ( <select> <option>appID1</option> <option>appID2</option> </select> ) : '' return ( ...
372563309583631144d6ef5ada30306d13ad3175
[ "JavaScript" ]
1
JavaScript
WeBest/react-sample-project
3534099214afeb6c13f86eb2c7a32d071db0fb86
e7268b14cad74030917aab9f964977e52655c098
refs/heads/master
<repo_name>alifahfathonah/website-presensi-karyawan<file_sep>/pengajuan.php <?php include('koneksi.php'); $kepentingan = $_POST['kepentingan']; $nip = $_POST['nip']; $tgl = $_POST['tgl']; $waktu = $_POST['waktu']; $absen = $_POST['absen']; $result["message"] = ""; if ($kepentingan == "") { $result["message"] = ' ...
45659d69304c871c9e4bb151683674c153cf4aeb
[ "SQL", "Text", "PHP" ]
37
PHP
alifahfathonah/website-presensi-karyawan
a0cfbae36dd1e8a418eac858bfbcf204b608d616
d332d472f57cbc38761b4fd95a9899ecbf9692a0
refs/heads/master
<file_sep># 0x07. Networking basics #0 --- ## Description This project in the System engineering & DevOps series is about: * What is the OSI model and how many layers does it have * How is the OSI model organized * What is a LAN, its typical usage, and typical geographical size * What is WAN, its typical usage, and t...
5f52b4460cafdf467ec4d4b980e0e91778627237
[ "Markdown", "Python", "Shell" ]
58
Markdown
johnconnor77/holberton-system_engineering-devops
14287d663af81bfb3531181ebb5aa78d2f09526b
1306bfeeca95c8e0221e0bd70b8c04026c3c525b
refs/heads/master
<repo_name>manojbalendin/RestAPI<file_sep>/RestApi.DataAccess.Dapper/Interfaces/DeveloperRepository.cs using Microsoft.Extensions.Configuration; using RestApi.Domain; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using System.Data; using System.Data.SqlClient; using D...
13707a8d6dc90e3b3e5cc6cdae51bca77803ffd1
[ "C#" ]
15
C#
manojbalendin/RestAPI
a4ae43b7916495831bf94b21cf73089b7251774b
2cd91a31097dbdd3962af3c1a8224bb5b835919f
refs/heads/master
<repo_name>18521604/Bs4-StartBoostrap<file_sep>/index.js $(function () { //Responsive header $(window).resize(function () { var docao = $(window).height(); $('#header').css({height: docao}); }); //Shrink navbar $(window).scroll(function(){ if($(this).scrollTop()>100){ ...
00169425ad627c7bea9d255192b83fbe614d90fd
[ "JavaScript" ]
1
JavaScript
18521604/Bs4-StartBoostrap
a715eeb7ef3a92cec2d4b57c4b6042783b7b5b4a
705d99cfe82784909fbf76a7e0632d3a3d3301af
refs/heads/master
<file_sep><?php /** * Created by PhpStorm. * User: shes * Date: 29.06.2017 * Time: 16:35 */ namespace ShesShoppingCart\Src; use ShesShoppingCart\Model\Carts; use Illuminate\Support\Facades\Redis; use Illuminate\Support\Facades\Session; class Cart { protected $storage = 'mysql'; // mysql, redis protected...
5a9a7d82d1e7914c460c9badadf74f132620a88e
[ "PHP" ]
2
PHP
evgShes/shes-package-cart
733243ad040f20ff520a81f9117a3c176f568bdd
902d2988e3367ec3838e9e4f209647460b2facbb
refs/heads/master
<repo_name>gocode/goplayer<file_sep>/README.md mediaplayer =========== web based media player <file_sep>/files.go package main import ( id3 "github.com/gocode/go-id3" "io/ioutil" "os" "path/filepath" "strings" ) type MediaFile struct { Name string IsDir bool AbsPath string Size float64 IsAudio bool...
5192ca86af8a74b03afbdf3f38e2d2a0f698944e
[ "Markdown", "JavaScript", "Go" ]
4
Markdown
gocode/goplayer
a79867b17b348aaf83dc3068199d9658be89d7b0
5394231fd1ee6d112e1a2d7d5ad74159e2b13fdf
refs/heads/master
<repo_name>AishwaryaPa/Cpp-Programming-Introduction<file_sep>/proj4/Game.cpp /***************************************** ** File: Game.cpp ** Project: CMSC 202 Project 4, Fall 2017 ** Author: <NAME> ** Date: 11/17/16 ** Section: 07 ** E-mail: <EMAIL> ** ** This file contains the code that controls the en...
f24b08e2cf0f13b85e73355587a04eebd9fa927f
[ "Text", "Makefile", "C++" ]
30
C++
AishwaryaPa/Cpp-Programming-Introduction
1700fb9f14ef19173c133830b6f16e8b66c7af9c
8ad8672b57745d29ce3df4053c3491b236e650c4
refs/heads/master
<repo_name>sangwonle/fds-picky<file_sep>/README.md # 0802 update package.json의 의존성 항목에 vuex를 추가하였습니다. 따로 pull이나 merge등을 할 필요는 없고 현재 project에 vuex를 설치하면 됩니다. ``` bash npm install -save vuex ``` 아직 이 repository를 clone 하지 않았다면 clone후 다음 명령어를 실행해 주세요 ``` bash npm install ``` 또한 vuex 사용을 위해 ./src/store ./stc/index.js 가 ...
ad00d775addff8b92523082fcad67a8717bb98be
[ "Markdown", "JavaScript" ]
3
Markdown
sangwonle/fds-picky
473d85722b71207a0b3d9bcdce95d9e1ba9379fc
cff29e18fb1eb12127a472366966d93d4ede967a
refs/heads/master
<file_sep>// // ZJScreenAdaptaionMacro.h // FreeLimit1502 // // Created by mac on 15/5/21. // Copyright (c) 2015年 <NAME>. All rights reserved. // #ifndef FreeLimit1502_ZJScreenAdaptaionMacro_h #define FreeLimit1502_ZJScreenAdaptaionMacro_h #define AdaptaionFlag #ifdef AdaptaionFlag #define CGRectMake CGRectMa...
69fe9c7604bab5c2be91b978d81c6b2f5f7a9517
[ "Markdown", "C" ]
3
C
Joanwq/FanMovies
dba9ca5211973c84d02d09630dfa752753ead99d
36a050f4457860d3cd2fa01512ba5f4266e54ab8
refs/heads/main
<file_sep>package com.battleship.board; public enum XCoord { One("1"), Two("2"), Three("3"), Four("4"), Five("5"), Six("6"), Seven("7"), Eight("8"), Nine("9"), Ten("10"); private final String identifier; XCoord(String identifier) { this.identifier = identifier;...
ca2c096900a3d9345efc122e284ee3931f5b976c
[ "Markdown", "Java" ]
7
Java
JDahl-code/battleship
5506c3c031fe5a0bf7b94cb46e696685d9d96fb1
5d31dc849bb47ead73f47cf5b6b9ffa29918c3f9
refs/heads/master
<file_sep>import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.image.BufferStrategy; public class PreGame extends JFrame implements MouseListener { public CreatePlayer creator; public ClickableObject finish; public boolean isReady =...
cb3d271fe7d55b11b63e13fbc0b9bcfb32928f33
[ "Java" ]
3
Java
IvanGrigin/MultyCards_2021_03_12
143eeebf7c428467aaf925d61797682c0d71ece6
ea537a44f8aa4a00a1fea83a63a70e79bec438d3
refs/heads/master
<repo_name>NimraPro/izracunaj<file_sep>/tesanj.js $(document).ready(function() { setTimeout(function(){ $("#deviceready").hide(); $("#zovko").show(); }, 3000); $('#god').keyup(function() { var god = (new Date).getFullYear(); var sad = $(this).val(); if (sad.length == 4) $(this).val(god-sad); }); ...
1697732e06536a594f7f4dc1c720521c50b902be
[ "JavaScript" ]
1
JavaScript
NimraPro/izracunaj
380b026fa1208e88993b10fcebee99f789d8dac1
578e779b1b052c43d759dcd0d3da168d1fe3a1d5
refs/heads/master
<repo_name>ivan9blagorodov/-<file_sep>/АиСД/1/1.1.py def linear_search(array, key): for i in range(len(array)): if array[i] == key: return i else: return -1 def binary_search(array, key): minimum = 0 maximum = len(array) - 1 search = 0 while mini...
b1b28ba69bc27d027a4733383e8cd97cd9faac1d
[ "Markdown", "Python" ]
6
Python
ivan9blagorodov/-
0a657761115da09498a1b89ec341c69c3a3f7e78
c5c631cb2d68dab91b3b706ede54c978a903b45f
refs/heads/master
<repo_name>Tyler135/Algorhythm<file_sep>/MyPlayground.playground/section-1.swift // Playground - noun: a place where people can play import UIKit println("Hello world")
40d032ba1d859027d39b2d53b1792b60cd98add9
[ "Swift" ]
1
Swift
Tyler135/Algorhythm
712d4ece96d5c12d37cfcf9f0d063b1980ec349a
659acbec1d5831d7621b48accf9ba053d6d0ab4e
refs/heads/master
<file_sep>//app.js const url = require('common/url.js') const utils = require('common/utils.js') const request = require('common/request.js') const jim = require('common/jim.js') let { WeToast } = require('widget/wetoast/wetoast.js') App({ WeToast, onLaunch: function () { let app = this utils.init(this) ...
1622cd929897b46c049d29f9e5faef5525c467e1
[ "JavaScript", "Markdown" ]
10
JavaScript
LiPengfei0106/RemoteControl
bbab8a1c512860624ed9af7578d1e15fcf6e83d3
9194e8a69047b51aa047b65401b9987f7dce64df
refs/heads/master
<file_sep>import React from "react"; import Header from "../../Components/Header"; import Footer from "../../Components/Footer"; import "./Home.css"; import Images from "../../ProjectImage/ProjectImage"; import { Link } from "react-router-dom"; class HomePage extends React.Component { render() { return ( <...
4d219222801de530bef6403ec0fb3b252c5c7d3f
[ "JavaScript" ]
3
JavaScript
27ishita/ChatNow.io
30b0bff2c5bfe849e190a01a881b6a21a10410b6
3ed213a60bc9c7ac6aa68a6898ff55b6f76b7e0d
refs/heads/master
<file_sep>import React, { Component } from 'react'; import ReactDOM from 'react-dom'; import * as d3 from 'd3'; class XAxis extends Component { constructor(props) { super(); this.xScale = d3.scaleTime(); this.update_d3(props); } componentWillReceiveProps(newProps) { this.update_d3(newProps); ...
75c7df85b2fef3ccfee1ae4c2017977111a25182
[ "JavaScript" ]
2
JavaScript
seanslerner/farm-data
35fd123044cc48c5186b67d0f3b4cf8797297750
e18e23acbd5f102903e22115417351815f0ee754
refs/heads/main
<file_sep>from functools import reduce def sum_num(a, b): return a+b li1 = reduce(sum_num, [1,2,3,4]) print(li1)<file_sep># python_programs_2 Some more Intermediate and Advanced Level Python Programs. <file_sep>import bisect # It does tell you where to place the value but your list should be sorted. If...
bd2e42e74d13f848d19071472b586b333afeec4c
[ "Markdown", "Python" ]
9
Python
soham0511/python_programs_2
94e835d0fdccb0e131e712a921995227b7757eff
0a0b19fb7756624488bdcbdc66479a604781a40b
refs/heads/master
<repo_name>LukeRobbins2112/TLPI_Exercises<file_sep>/chapter4/tlpi_cp.c #include <fcntl.h> #include <stdio.h> #include <unistd.h> #include <sys/stat.h> #include <sys/types.h> #define BUF_SIZE 1024 int main(int argc, char ** argv){ if (argc != 3){ printf("Err - incorrect num arguments\n"); _exit(-1); } ...
10bd87e1678e137daa89a5fa6089be7e6fef2e81
[ "C" ]
11
C
LukeRobbins2112/TLPI_Exercises
2da15078737057e2eda0015b7219bc7307ddf65b
8b8e8bf27c596e1ba1433776f77d09c240c7f8b0
refs/heads/master
<file_sep>import vk_api import time import re import collections locations = ['гараж', 'склад', 'склад 2', 'дом', 'лес', 'корабль', 'самолет'] cur_location_id = 0 responce = '' id = -162041941 stat_msg = 'статистика' vk = vk_api.VkApi(login = '', password = '') vk.auth() def get_statistics(): vk.method('messages.s...
f379bb49c97323b1f1e293f0d40580579f4add80
[ "Python" ]
1
Python
denis5417/auto_btc_player
bb04dc3a8de8caa4f03277c9f65df46ffd7ea2bb
cbb2b35ef88676e338eb8f5aede99469eceedefa
refs/heads/master
<file_sep># 自定义倒计时组件 ## component install 组件引入 ``` npm/cnpm install --save-dev dircountdown ``` ## file of vue reference vue文件引入 ``` import CountDown from 'dircountdown' components:{CountDown} ``` ## html reference html引入 `<dir-clock :start="startSecond" end="0" style="color:#000;" v-on:endcallback="endFn" :aut...
a7f7084f3b5d94bf874baf89d87017f0481b7421
[ "Markdown", "JavaScript" ]
2
Markdown
applebring/DirCountDown
017a839d300fca91c8568a64ac1a62741ceba418
d463bed4e9fd93e40a37d40288e50d66ec46175d
refs/heads/devel
<repo_name>ralic/dbeaver<file_sep>/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/internal/PostgreMessages.properties postgre_referential_integrity_disable_warning = All triggers will be either enabled or disabled <file_sep>/plugins/org.jkiss.dbeaver.ext.vertica/src/org/jkiss/dbeaver/ext/...
cd25e7eec0f65f3a7ab57a1238c267f0269c1fc8
[ "Java", "INI" ]
6
INI
ralic/dbeaver
076e39fad778fe9bdbe3817b707b928657ebab94
d9d7c147252fdab72c06f90393d6816e73a49548
refs/heads/main
<repo_name>matthiatt/employee-tracker<file_sep>/db/sqlDatabase.sql create database employee_db; use employee_db; create table employee ( id integer(10) auto_increment not null, first_name varchar(30) not null, last_name varchar(30) not null, role_id integer(10) not null, manager_id int(10)null ); create table rol...
7cc7c093efeea12e916ee4dc889c10891f76ffbc
[ "JavaScript", "SQL" ]
3
SQL
matthiatt/employee-tracker
2ec6110a9fa0785075f0b39c36c56deba2725bbc
89d66c60c101b2c1c91fccdd2c51ab12c24f8168
refs/heads/master
<repo_name>pierce-eric-wm/Subscription-Service-Project-<file_sep>/admin.php <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Space Station ADMIN</title> <link rel="stylesheet" type="text/css" href="stylesheet.css" /> </head> <body> <?php require_once ('authorize.php'); require_once('de...
2b5a16dfbbb716e13708f9c1793a1392a0e9a3e5
[ "PHP" ]
8
PHP
pierce-eric-wm/Subscription-Service-Project-
b6d5ef954862435ae168313f730f6f73eb249e75
21d8a58d4bd1648bac64de10c74d66fb02f6684e
refs/heads/master
<repo_name>artfu/data_struc<file_sep>/c/seqlist/seq_list4.c #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define MAXSIZE 10 typedef struct { double x; double y; double z; } Node; typedef struct { Node* pn; int len; } Seqlist; Seqlist* init(Seqlist* pseq) { pseq ...
1229866d2726f5d0540581f73acf730bd14f0628
[ "C", "C++" ]
17
C
artfu/data_struc
0ed0110e08e202b4fda594c622f3297ac5ba5c3a
0bccda78f8a48e4d3dd76d789862eabf56ee7023
refs/heads/master
<repo_name>fdosalazar/api-base<file_sep>/app/core/model.go package core type Api struct { Status int `json:"status"` Message Message `json:"message"` Time float64 `json:"time"` Error string `json:"error"` Data interface{} `json:"data"` } type Message struct { Description string `j...
c9f0cc4585170892a1fc7b075441cfbda3c71d00
[ "Go" ]
9
Go
fdosalazar/api-base
79e17303602e004eca8c6e9b806285fd08fc3857
7d7cd31563238ede974da9e4703ace1eadab9041
refs/heads/master
<file_sep>import React from 'react' function EmployeeCard({user}){ let moviesList = user.favoriteMovies.map(movie => <li>{movie}</li>) return( <div className='card-box'> <div className='current-card'>{user.id}/25</div> <div className='person-info'> <h2>{user.n...
5fa72a73aa75ed75b63e5f1db337069ad3149401
[ "JavaScript" ]
3
JavaScript
psain1987/Week-3-day4-afternoon
596da17e9bd51231fb064554670dee808f347d43
a2c26a94283a60a295bdcd9d31dc3c8ef1a86a78
refs/heads/master
<repo_name>nvdnkpr/express-mvc-routes<file_sep>/lib.js 'use strict'; /** * Create new route for express app. */ var Route = function (options, app) { if (app) this.app = app; return this.createRoute(options); }; Route.prototype.createRoute = function(options) { options ? this.unfoldOptions(options) ...
6f33a52e23b7fa3666b38fb1820bc69b535246ed
[ "JavaScript" ]
1
JavaScript
nvdnkpr/express-mvc-routes
b25b326a409abc5f3c19e12c649ac35f32084f76
59ed25aae124955a27cd486fc144a82cf62d0ccb
refs/heads/master
<file_sep>using System; namespace TestRepoProject { class TestRepo { static void Main(string[] args) { Console.WriteLine("Hi from GitHub"); } } }
670dd9f203f83e3b1e455f476c33ec4cdd59556a
[ "C#" ]
1
C#
radoslav39/test-Repo
7361975e9bff282462fbe375c4d58fc759c1fd7e
e0cd000849da67efb3f3cf634338348b738ffef3
refs/heads/master
<repo_name>daihenka/NavMate<file_sep>/locale/deDE.lua local L = Apollo.GetPackage("Gemini:Locale-1.0").tPackage:NewLocale("NavMate", "deDE") if not L then return end --[[ Proper Translations ]]-- --[[ Google Translations ]]-- L["WaypointContextMenuTitle"] = "Wegpunkt-Menü" L["ContextMenu_SetWaypointAsArrow"] ...
d6fca20fdb9f4c48d3d5ca08dc80f58eaac85b9c
[ "Lua" ]
1
Lua
daihenka/NavMate
1aa60178063212f181851c8d89678fd3a5008e31
f86613aceb73dbb2a071d67048a5753126dd38f3
refs/heads/master
<repo_name>guoxuanlaiye/crm<file_sep>/crm/admin.py from django.contrib import admin from . import models # Register your models here. admin.site.register(models.Customer) admin.site.register(models.Tag) admin.site.register(models.CustomerFollowUp) admin.site.register(models.Enrollment) admin.site.register(models.Cours...
cdf5db9cc89ad2cccdce60b9b385edb00565ba9a
[ "Python", "Shell" ]
2
Python
guoxuanlaiye/crm
62fca847ec54e9535221104eab329f41fdbeb5e9
5a0602053259cc273deec78fb95681d3ae79767f
refs/heads/master
<file_sep>var mensagem = document.getElementById('mensagem'); mensagem.addEventListener('keyup', Contador); var h; var m; var s; var Contador = document.getElementById('Contador'); function Enviar(){ var msg = mensagem.value; document.getElementById("stilo").innerHTML += "<p>" + mensagem + "</p>"; } //h=getHours(); //...
ac54c416619afae28a138630b162e706d71189e4
[ "JavaScript" ]
1
JavaScript
giselicosta/Twitter
1b396166d6f4ff7250126f4e7ac43ca8a975906c
f0c644284cdf329eb21c206034c0caf945d1ea68
refs/heads/master
<file_sep>(在原有仓库的基础上,加入一些调用sklearn进行尝试的代码,实践,思考) 前言 ==== 力求每行代码都有注释,重要部分注明公式来源。具体会追求下方这样的代码,学习者可以照着公式看程序,让代码有据可查。 ![image](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/CodePic.png) 如果时间充沛的话,可能会试着给每一章写一篇博客。先放个博客链接吧:[传送门](http://www.pkudodo.com/)。 ##### 注:其中Mnist数据集已转换为csv格式,由于体积为10...
b8dca1e77a9534269b594a08fc2b26e8504c642b
[ "Markdown", "Python" ]
3
Markdown
llgithubll/Statistical-Learning-Method_Code
d238da3f76eb70ba83ccdae7710e3824f6809a0e
3a9446623a023319f921057d842044276cff658b
refs/heads/main
<file_sep>import "./App.css"; function App() { const handleSubmit = e=>{ e.preventDefault(); console.log(e); } return ( <div className="App"> <form onSubmit={handleSubmit}> <input type='email' placeholder="Enter Username" name="uname" required> </...
cf4ceeae997d4e942b05a1e1a6b7a99b9c90b74c
[ "JavaScript" ]
1
JavaScript
BitNeel/react-login-page
5beac7b3b66cdf104482ba567810a862a9c018f6
bd2ae1f1fc051f7f69c4bb555efddffe55fc46b8
refs/heads/master
<file_sep>using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; public class IntroSequence : MonoBehaviour { [SerializeField] private GameObject titleAnim; private Animator anim; private bool flag; // Start is called...
55868c584d535e49beddc113ca5830ce63536652
[ "C#" ]
14
C#
LoboAnimae/GGJ20
90a5914b4e70c62a034a362f3aa2e6a9f3e83081
337ed2b02575663299d6dbc40f753c215ed62aeb
refs/heads/master
<file_sep>using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Domainlayer; namespace ApplicationLayer { public class ImportController { string[] text; string[] orderItems; string[] sampleTypeArray; List<string>...
68b69bdf5e908deaf3c732293917bfcb28b9b329
[ "C#" ]
11
C#
asbj2903/EksamensProjektUnigGardin
df85f0a4f7d2c88d757299ee1508012d8bd5b2f7
ea51275a2ab4d5702700a4f2aef0ceec846c597b
refs/heads/master
<file_sep><?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>bigpackage</art...
fa8dbd406f94aea95fad3906c8cb8c3abc6bf57c
[ "Java", "Maven POM" ]
12
Maven POM
AFunBoy/algorithm
b180999ec56a1f46f512173781f196288577a5a4
4c33b81398b20b163139edf8b0572d155d870910
refs/heads/master
<repo_name>sapi2021/saddlestitchsplitter<file_sep>/rightfirstsort.py from pagesort import PageSort class RightFirstSort(PageSort): def sort(self, lhs): numPages = len(lhs)//2 sortedPages = [0] * numPages*2 for i in range(0, numPages//2): sortedPages[ i*2] = lhs[...
2f5a9fd004deefe4428e0a5c975623dd628138bd
[ "Python" ]
4
Python
sapi2021/saddlestitchsplitter
c96ba9fdc28c31baae4d7917ed91ff1eaef2eaa4
a1de75a5345d2c7a7ba555cbd061752f84245feb
refs/heads/master
<repo_name>kaestel/lsb_dk<file_sep>/theme/www/js/lib/smartphone/i-findcenter.js Util.Objects["findcenter"] = new function() { this.init = function(scene) { // get all regions var regions = u.qsa("li.region", scene); var region, i; for(i = 0; region = regions[i]; i++) { // map region header region.head...
39de063aa27c31e228a2cfdda7682129a7fb9f92
[ "JavaScript", "PHP", "Shell" ]
26
JavaScript
kaestel/lsb_dk
ecb589a29a9f6180300314889c5aa94450884e5b
ddc54741d0fbbcbf93b98bffd9461f5ca51e8c19
refs/heads/master
<file_sep>"use strict"; function copyObject(obj) { var key; var copy = {}; for (key in obj) { if(obj.hasOwnProperty(key)) { copy[key] = obj[key]; } } return copy; } module.exports = copyObject; <file_sep>'use strict'; function analogSlice(arr, param1, param2) { ...
ff90a65ae000d4e468e6f21220c5c2d7a9621fba
[ "JavaScript" ]
16
JavaScript
Tochilina/external-courses
3d0067b579ee1d50cf75cf2caddd984efb338929
b58ee0d199eae47dec9d4bca6fe576e1c88a231d
refs/heads/master
<file_sep># mysite My first django project and also GitHub repository <file_sep>from __future__ import unicode_literals from django.db import models # Create your models here. class Question(models.Model): number = models.IntegerField(default=0)
cf116438e0144c06df4c63192e53844ad766d728
[ "Markdown", "Python" ]
2
Markdown
ananth1996/mysite
de938fbac6bc33706c4af210d0578182762a36b2
fad088252924b569a847d5364e52ed0c0956aba8
refs/heads/master
<file_sep>from rest_framework.authtoken.models import Token from .models import Student from .serializers import StudentSerializer from rest_framework import viewsets from rest_framework.authentication import BasicAuthentication, SessionAuthentication, TokenAuthentication from rest_framework.permissions import AllowAny...
08019c493cea03d5d237093c19afc12995190399
[ "Python" ]
1
Python
rizwanch786/token_authentication
99b881daf3b2bbea65f09aa99c357026d1d118b1
9943ecb7348e6ff56cde8bb49c38b9de829d7481
refs/heads/master
<file_sep># -*- coding: utf-8 -*- from __future__ import print_function import os import copy from keras import backend as K from keras.backend import tf from keras import callbacks as cbks # import numpy as np from keras import optimizers, objectives from keras.engine.training import _collect_metrics, _weighted_masked...
ab6035e29fbd70c465e69dd9dc8deb1499406aa3
[ "Python" ]
2
Python
LLCF/keras_tfrecords
109b619e60c1af3b2aa8f8ae503883456f5602af
beb2a97cd1c04f7b6806b7e87a4c420d8951ada0
refs/heads/master
<file_sep>from urllib.request import urlopen import xml.etree.ElementTree as ET url = input("Enter Location:") print("Retrieving",url) data = urlopen(url).read() print("Retrieved:",len(data),"characters") tree = ET.fromstring(data) counts = tree.findall('.//count') print("Count:",len(counts)) sum = 0 for count in...
35dbc35e9031e5a19cb92118345c1406ccae8087
[ "Markdown", "Python" ]
3
Python
Tanvi10072000/PY4E-Coursera
2f7044d55ec784996b7dad0631052601585f015e
a25d9b264dc85863d6aa1ec8246a5844482646d8
refs/heads/main
<file_sep><div class="sidebar" data-color="blue"> <!-- Tip 1: You can change the color of the sidebar using: data-color="blue | green | orange | red | yellow" --> <div class="logo"> <a href="../index.php" class="simple-text logo-normal"> <img class="img-fluid" src="../assets/im...
22caa7445a94707df4eb43ccdb0ad5c6f784e93d
[ "Markdown", "SQL", "PHP" ]
6
PHP
cairofelipedev/rendebank
1f06dbde13577f891156b93cd752f89088b3007d
fd61b04f9f87a32c17ea7c6fc4d5a514ea610166
refs/heads/master
<file_sep>package com.sikiedu.intercept; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor; import java.util.Collection; import java.util.Map; import java.util.Set; public class MyIntercept extends MethodF...
85cc448b624a4b8ef652e73f3f297d9ea1254609
[ "Java" ]
3
Java
zhangsan301/StrutsForum
4db2315483ed4b1b09818462e62f537de6d65579
3bbd8d2b9af8d2ebdfb0164b222b49bde85c70a9
refs/heads/master
<file_sep>const config = require('../config/config').config const driver = require('bigchaindb-driver') const conn = new driver.Connection(config.api_path) const publicKey = '<KEY>' const privateKey = '<KEY>' const imgUrl = '/home/jason/Documents/newestProjectShow/backend/public/images/files-1572787372229-fox-4589927_...
b78bc9375049a6cea7dc1d4db2d6360026eb73a6
[ "JavaScript" ]
5
JavaScript
GetALittleRough/newestProjectShow
b7ec71d605080c4382ce63f277b7fdd0997b5ef5
ad2fa2f8eadf8692ccd540707e12f21bb473eef6
refs/heads/master
<file_sep>/* * 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 tugas1; /** * * @author user */ public class Tugas1 { String fName; String IName; int stuId; Stri...
f7edff010efc91b21864d956b40b19f314d2627a
[ "Java" ]
1
Java
allyaapp/E41200744_Nur-Allya-APP_GOL-B
0a5aa7334ebb80a07891dfd844cabb7264cc76a7
470b6197efb833ab7c7f5611aaf58b19e24e574a
refs/heads/master
<repo_name>go-passwd/marshaller<file_sep>/marshalable.go package marshaller // Marshalable defines interface for hasher who can be marshalable type Marshalable interface { HasherCode() string Iterations() int Salt() string Password() []byte } <file_sep>/predefined.go package marshaller // DjangoMarshaller stores ...
b3cff859c978f46808f6aa6c9e7f34c98db9d300
[ "Markdown", "Go" ]
7
Go
go-passwd/marshaller
f5358e16f72764e36a5ba60532a4b1f2a0240afc
6914c21d2698fb04f6de0b2be822078bb6526571
refs/heads/main
<repo_name>yehorbk/annotations-js<file_sep>/annotations.js 'use strict'; module.exports = require('./lib/annotation'); <file_sep>/CONTRIBUTING.md # Annotations-JS Contributing Contributing requests are always welcome. Feel free to make issues or mail me to discuss features that you want to implement. ## Making a Pul...
109b988420e8db87c8e353dce380a991b779b355
[ "JavaScript", "Markdown" ]
7
JavaScript
yehorbk/annotations-js
d5c0bbc2076d16daaf3d23adbf1d8d2ad2f085c0
497fe66f28cbb4359fc4251de083eca7e0eb56eb
refs/heads/master
<file_sep>require 'net/http' Puppet::Functions.create_function(:'cobaltstrike::download') do dispatch :download do param 'String', :key param 'String', :output end def gettoken(key) uri = URI("https://www.cobaltstrike.com/download?dlkey=#{key}") res = Net::HTTP.get(uri) res.split("\n").grep(/...
a889eee2a0aea28c5f2559544af2a0b7a8afcfbf
[ "Markdown", "Ruby" ]
3
Ruby
jamesbcook/vagrant
4b7624ae4dd5ada639178eeed8c9d42312f7c141
0706e0aecc870e55704c6eb84a4d7dad80d42a04
refs/heads/main
<repo_name>feyzateker/-E-commerce-Website<file_sep>/index.php <?php include "config.php"; ?> <!doctype html> <html lang="en" > <head> <style> p.groove {border-style: groove;} form {border: 3px solid #f1f1f1;} </style> <meta charset="utf-8"> <title>SUHOES</title> <meta name="descript...
245d481bd8d0f20ac3fe8fc3f537abab91370cf7
[ "Markdown", "SQL", "PHP" ]
23
PHP
feyzateker/-E-commerce-Website
d6da4a0e857f74006f5c1f507532e956f96c6dd1
86ea8c1fa3951fd20a58b027c5749bbcd13034a0
refs/heads/main
<file_sep>/api/login: pasar (user) y (password) despues de registrar al usuario /api/logout: pasar (user) y (password) despues de generar el token del usuario Lo mismo esta implementado en el apartado grafico (si tienes un usuario con un token activo, al entrar al login te inicia sesión automaticamente). Una vez en ...
262ce88c0c6254306cc16d58523e5eaf6b3e25ca
[ "Markdown", "JavaScript" ]
2
Markdown
PMartinOnTheCloud/login-register
b94dc5bb0dd29599f4fcfa076c4cf51d689fa163
2516dc4bd1f6cfcb921d9af93c8482284ac5be5a
refs/heads/master
<repo_name>noelcodella/segmentation-mask-utils<file_sep>/mergeImagesCMAP.py # <NAME> # python utility to merge/join multiple binary masks into a single color coded mask # Combine multiple binary masks into a single color mask # 4/24/2020 import sys import cv2 import numpy as np def main(argv): if len(argv) < 2: ...
1499f4a6996888aa84de557dc8cbd7700aff61da
[ "Markdown", "Python", "Shell" ]
7
Python
noelcodella/segmentation-mask-utils
9dba03f4ee1b4775ad8207ab166327e790b65c15
07c4243577a380c31d56f14aab15b01f8a9f0e93
refs/heads/master
<repo_name>ngerasimov7/WebStore<file_sep>/WebStore/Controllers/HomeController.cs using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using WebStore.Models; namespace WebStore.Controllers { public class HomeController : Controller { private static readonly List<Employee> __Employees = new...
72cc7482277cfcf16d9c7a673090278f7915c88f
[ "C#" ]
1
C#
ngerasimov7/WebStore
6eb1596fdd31286c257d21e5d2d30a2b98ef4db9
01d7ce66918d44a6db300f2175dacc728a187d10
refs/heads/master
<file_sep># qt-creator-ffmpeg-helloword Qt集成ffmpeg x64 <file_sep>#include "widget.h" extern "C"{ #include "libavutil/log.h" }; Widget::Widget(QWidget *parent) : QWidget(parent) { av_log_set_level(AV_LOG_DEBUG); av_log(nullptr,AV_LOG_DEBUG,"hello world\n"); } Widget::~Widget() { }
76dd329ade22e5f9ecc20f6cd8d7a64cc671c887
[ "Markdown", "C++" ]
2
Markdown
swq0001/qt-creator-ffmpeg-helloword
565b860312e01ba29fa821da27d1f7ef95b8e88c
a5921794e4b2df07aec9121fc20fcb332165b76b
refs/heads/master
<file_sep>#!/usr/bin/env bash ################################################################### # ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ ⊗ # ################################################################### ################################################################### # Constants ####...
7b96f370d9b372e60f2ec51e550d236052d43f84
[ "Markdown", "reStructuredText", "Shell" ]
4
Shell
mcmahonmc/xcpEngine
78deca684b4211f2f1d1b4824b9cbceb2511c754
75dc7408de35bef0f20af51bcce507161bc6a0fe
refs/heads/master
<file_sep><?php namespace App; use Illuminate\Database\Eloquent\Model; use Validator; class blogpost extends Model { protected $table = 'blogpost'; protected $fillable = ['users_id', 'title', 'content', 'comment_count', 'published_at', ]; protected function validateData($post){ $rules =arr...
bb2cacb148d8abc19084a9583e200e237a2ec061
[ "PHP" ]
7
PHP
harshpatel11/LaravelBlog
c3168067ec1e618de89b5a8191746416d563dcaf
15c12b47e094ad2b24b19f5f5f469ad93069b07b