branch_name stringclasses 15
values | target stringlengths 26 10.3M | directory_id stringlengths 40 40 | languages listlengths 1 9 | num_files int64 1 1.47k | repo_language stringclasses 34
values | repo_name stringlengths 6 91 | revision_id stringlengths 40 40 | snapshot_id stringlengths 40 40 | input stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|
refs/heads/master | <file_sep>#include "xep_vcard_data.h"
#include "helpers.h"
#include "errors.h"
const char *ns_vcard = "vcard-temp";
struct vcard_vcard_t *
vcard_vcard_decode (xmlreader_t * reader)
{
struct vcard_vcard_t *elm = NULL;
elm = malloc (sizeof (struct vcard_vcard_t));
if (elm == NULL)
fatal ("vcard_vcard_t: mallo... | 6d909d421038771712ea8f2ded1368ba084c78b8 | [
"C",
"Makefile"
] | 104 | C | ermine/jru | 8f1c3e983682a4e9a913e0d410f4eab6587adf84 | 0b5c4d4ded06d6c282891cc0a0bace5aa83a308f | |
refs/heads/master | <file_sep>#Importing data
##2ARetrieve data from online APIs
import request
import requests
data=requests.get('http://api.open-notify.org/iss-now.json')
print(data.text)
#mydata=data.json()
#print(mydata["message"])
dataDS=requests.get('http://api.open-notify.org/astros.json')
print(dataDS)
url = 'https://www.al... | f94e81ab4638310da7766c63897455ad64909a5f | [
"Python"
] | 1 | Python | DominikaDS/UCDPA_DominikaSzwajca | af0e42c1fbdb31b35a7e5f3942c60d58be66b62f | 97279b32773b1949188a852e40ff82e4f86adaf9 | |
refs/heads/master | <file_sep>package fr.hd3d.html5.video.client.events;
import com.google.gwt.event.shared.GwtEvent;
import fr.hd3d.html5.video.client.handlers.VideoSeekedHandler;
/**
* The seeking attribute changed to false.
*
* @author michael.guiral
*
*/
public class VideoSeekedEvent extends GwtEvent<VideoSeeke... | 1a03c58cb74e7ee3fe2490ab84e345cb5b77f5b9 | [
"Java",
"Maven POM",
"Ant Build System"
] | 18 | Java | draleyva/gwt-html5-video | 4898fd1b3ab5120f69bfd5de2825a73659cc589e | fe64e4b8ce9f1577bd1a86afa39738cd197550aa | |
refs/heads/master | <repo_name>winfever/e.j<file_sep>/Step04_Method/src/test/main/MainClass03.java
package test.main;
public class MainClass03 {
public static void main(String[] args) {
// showNum() 메소드를 호출해 보세요.
MainClass03.showNum(7);
int myNum=999;
// showNum() 메소드를 호출하면서 myNum을 전달해 보세요.
MainClass03.showNum(myNum);
}... | 081802536192c2005da9cef4691d77624f519a89 | [
"Java",
"INI"
] | 8 | Java | winfever/e.j | cb2d5c3657582e03a51d11d2b8721d456fa9b084 | 442dbfc2562025e95b34b18c9e5e5af94a6e7648 | |
refs/heads/master | <file_sep>package com.task;
import java.io.IOException;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class MessageDecrypt {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter... | 0c1c11d04f446cd3219df17693de6581d7f6bade | [
"Java"
] | 1 | Java | sup-678/Barclays-task | a9eb3f107d2816d70c2403e01f317592a40b64c4 | 5c220e79bb0643aea5388283d9598b1c5bd35f6c | |
refs/heads/main | <repo_name>ToniSach/CrudNode<file_sep>/src/controllers/customerController.js
const controller = {};
controller.list = (req, res) =>{
req.getConnection((err, conn) => {
conn.query('SELECT * FROM dragon', (err, filas) => {
if (err){
res.json(err);
cons... | 789a6502a1383adfe5a09f955cfd741338a04c40 | [
"JavaScript"
] | 2 | JavaScript | ToniSach/CrudNode | 8ada7e65a03a8803f36ef2820257b7d5d8d571a4 | c710c1cacc26b1cd1d5aa53d48de84456e709970 | |
refs/heads/master | <file_sep>/**
* Серверная часть
*/
const express = require('express');
const path = require('path');
const app = express();
const port = process.env.PORT || 7000;
if (process.env.NODE_ENV === 'production') {
app.use(express.static(path.join(__dirname, 'build')));
}
app.listen(port, () => console.log(`Listening on... | 43c6423e3fcc6477ce558760ff6743769d57363f | [
"JavaScript",
"Markdown"
] | 7 | JavaScript | Panteleyev/d-table | 5531cd5b21a5a1632aeaca3e5081aa0ee5aedee6 | 0ba264c09245013ba4e901d9e1d2ce8b12e7c91c | |
refs/heads/master | <file_sep>###############################################
## PS 5625 - Applied Statistical Programming
## Problem Set 5
## Author: <NAME>
## Tasks: 1 - Develop the package FitStatisticsPack
rm(list = ls())
# Load libraries
library(devtools)
library(roxygen2)
# Define WD
setwd("~/Google Drive/2. Academicos/6. Doutora... | 9748710c5adb38c7f2f829db1a2c95504b0a8ade | [
"R"
] | 6 | R | pcunhasilva/PS5 | 25d3881359921c87df0f4f20f752867d28f438bf | 8737f6cd44ed88571cf27c33294d026ddb11320e | |
refs/heads/master | <repo_name>slamdunking/pouchdb-facade<file_sep>/main.js
/**
* @class Angular controller for notes list.
* @param {angularScope} $scope
*/
var remoteDbUrl = 'http://localhost:5984/notes',
NotesController = function ($scope) {
var notes = $scope.notes = [],
onDbError = function (err) {
... | 49b96f52bb7774579cd2287cbb715ea113d727f5 | [
"JavaScript",
"Markdown"
] | 3 | JavaScript | slamdunking/pouchdb-facade | 75bef5b7f2bee67c6cd7945fdc87a3148b09c4b0 | dca8eae0ea2671ebf36faab639fb87cb734e452a | |
refs/heads/main | <repo_name>kailex/http_poll<file_sep>/final.cpp
#include <iostream>
#include <algorithm>
#include <string>
#include <fstream>
#include <streambuf>
#include <set>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <fcntl.h>
#in... | ee1dd61bd561ce826cf4d9f9431c2d8ba510a295 | [
"CMake",
"C++"
] | 2 | C++ | kailex/http_poll | 849c950257a4fb02184560776e215220931d57af | 6cfad4322badcca0736a22dff7d0f22943f99b67 | |
refs/heads/master | <file_sep>import { Grid, List, ListItem, ListItemText, Paper } from '@material-ui/core';
import { isEmpty } from 'lodash';
import { makeStyles } from '@material-ui/core/styles';
import Details from './details';
import React, { useEffect, useState } from 'react';
import axios from 'axios';
const useStyles = makeStyles(... | c1ca28076b7f70d6de8e4099478bb05085ad76c3 | [
"JavaScript",
"Markdown"
] | 6 | JavaScript | kratos-42/to-do-website | 064585f979148808392c92fe6dfb5df80b180758 | c0228bcf4af30fb73a0a5992408fce8ee108373f | |
refs/heads/master | <file_sep># rpm_version_facts
Module to create set fact to give all rpm versions on the systems.
<file_sep>require "spec_helper"
describe Facter::Util::Fact do
before {
Facter.clear
}
describe 'package_foo_123' do
context 'returns package versions when rpm present' do
before do
Facter.fac... | 91f27c5dccf69bb2235c940893613c7cefd7f327 | [
"Markdown",
"Ruby"
] | 3 | Markdown | petems/petems-rpm_version_facts | a09f150a7ad5a3e153e4112176e1bae0210067e1 | 82b103887792092e23017841f5ee036e1b7b326b | |
refs/heads/master | <repo_name>jitanderkapil/API-Project<file_sep>/README.md
# API-Project
API
<file_sep>/iu-qa-api/pom.xml
<?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.apac... | add9f635137a031457165a1b73d24bf2e424b4b5 | [
"Markdown",
"Java",
"Maven POM"
] | 3 | Markdown | jitanderkapil/API-Project | cc2b6c112291e3a137e053870d8adda76caa6cbf | 0cb246681afefe22c0598a4853fb98d6c283b005 | |
refs/heads/master | <file_sep>
import pdftables_api
c = pdftables_api.Client('2cqxg9d46nfl')
c.csv('usatodaybooks1.pdf', 'usatoday.csv')
<file_sep># Load packages
import json
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from bs4 import BeautifulSoup
import pandas as pd
import time
import os
baseU... | 397599d6d81ab1b0900a5c71df1e2146880f797b | [
"Markdown",
"Python"
] | 3 | Python | Richa-Vala/NYCWebscraping | 72bdd5e7ca87ae494705943346bb99610573ade8 | 81476c60291210b53e36bf64460aabcbd3777c7a | |
refs/heads/master | <file_sep>package com.iilei.consumerfeign80;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframew... | b8cfd9deeb16b1b866bdd400ffcc7a1fa464bf63 | [
"Java"
] | 2 | Java | Asssssert/springcloud | 1c7583335f83037be5d066820fed126dd0f8612d | 9b0a394caa616b4ea9000c1f686a820a929a5793 | |
refs/heads/master | <file_sep>import {FullscreenOverlayContainer, OverlayContainer} from '@angular/cdk/overlay';
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {RouterModule} from '@angular/router';
import {LayoutModule} from '@a... | 9d554f7273a4e2f940d789000b93ec4600c3005c | [
"TypeScript"
] | 15 | TypeScript | PoojaGupta12/pantryandkitchen | afc95d76777d582a98e3fc07d994c9c6273a9fe9 | f6df125d5e46ae3619938d46eb4afacb45b585f5 | |
refs/heads/master | <file_sep>package com.atguigu.guliedu.ucenter.service;
import com.atguigu.guliedu.ucenter.entity.MemberLoginLog;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 会员登录日志表 服务类
* </p>
*
* @author LiuZhiPeng
* @since 2019-01-11
*/
public interface MemberLoginLogService extends IService<Membe... | d0645651cc8167b1b8b7a86321e98b3473ec9bea | [
"Java",
"Maven POM"
] | 7 | Java | zhipeng0537/Zhipeng_Demo | 5bbfea096652707deb4a9b69b10e70514613edfa | 9e36f26ba2570d95d25e795371246ef9f23c8491 | |
refs/heads/master | <file_sep>import React, { useState } from "react";
import { Container, Row, Col, Image} from "react-bootstrap";
import "./style.css";
import { Link } from "react-router-dom";
import Axios from "axios";
import { Navigation } from "../Components/Navigation";
import jwt from "jsonwebtoken";
const Content = (props) => {
... | c57dec3a27b213a6c0b1b867bda036361441c613 | [
"JavaScript"
] | 23 | JavaScript | drajat824/Week-5 | 2dd1cf286f56fa634a16762fe8bbd011a0e5e687 | 165699abf1736c7d7b46b95b97fb709faac9bd0e | |
refs/heads/master | <file_sep>using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace RemoteDeployment.Contracts
{
[DataContract]
[KnownType("GetKnownTypes")]
public abstract class DeploymentAction
{
private ... | 5de75be7e235400296a7cb7804742ffd999e3f7d | [
"C#"
] | 3 | C# | CeesKaas/RemoteDeploymentManager | 97cc39ff332de5b4632a1d437df57e4009ed42c4 | 7cd1277c98a19278ca362843a8a421a15c32e3f3 | |
refs/heads/master | <repo_name>nicoomarquez/La-maravilla<file_sep>/Vista/JListEjemplo.java
package Vista;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.util.Vector;
import javax.swing.DefaultListModel;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import... | 9a30e2a33909abdd579157bfdc5ffbb0784a273c | [
"Java",
"SQL"
] | 15 | Java | nicoomarquez/La-maravilla | fae429eda28b7a1a27462a0af88fb33fcf848850 | 0da0eca2f082ec13c00e01ad2e0fefa5e46ab93a | |
refs/heads/master | <repo_name>stevengreens10/NodeItems<file_sep>/src/me/NodeDigital/NodeItems/listeners/BlockListener.java
package me.NodeDigital.NodeItems.listeners;
import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukki... | 753f303a42dadb3ed2dc2108b0208231683904ff | [
"Markdown",
"Java"
] | 9 | Java | stevengreens10/NodeItems | a50a7053250c05b17b5e797f834d1d7923290193 | 908a32f732e213d721f762e08e6fe1dd8fb17133 | |
refs/heads/master | <repo_name>jefarrell/Scrape-Github-Profile-Data<file_sep>/README.md
# Scrape-Github-User-Data
#
#### Scrape Github profile activity
>Creates a CSV of dates and commit data from profile data visualization. Also creates JSON file containing basic profile information and highlights, as well as downloading avatar photo.
... | 642c43c30ab6711b9843c590315aef37206a34d5 | [
"Markdown",
"Python"
] | 2 | Markdown | jefarrell/Scrape-Github-Profile-Data | cf11b911ac25a52a1cc046157862933ee13bd52b | b4568746fbf8a2f208ad5c9c905865a162a71a70 | |
refs/heads/master | <repo_name>Santt99/Sudoku-verifier<file_sep>/README.md
# Sudoku-verifier
This is a multi-thread sudoku verifier made in c, each thread verify a diferent column, row or 3x3 square to check if all are valid, that is why i am using a total of 27 threads.
In this project i learn the basics of multi-thread programming.
Te... | c8871538ed79911ea4e4ea5fff7ab917a9bca096 | [
"Markdown",
"C"
] | 2 | Markdown | Santt99/Sudoku-verifier | 2b1075ceb7cce02d65938dc43bbe6e8ee4ac005c | f6de37ae896a79ac2776703d95bfec2cad4dde76 | |
refs/heads/master | <file_sep>package com.example.travelchoice;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appco... | e1c9009c326ecac089b42a44e4f61d133c0bd7da | [
"Java",
"Gradle"
] | 6 | Java | oussamaRakye/TourismApp | 5c9849b4b86f5a85ca55fb41e6a3beabcfe1eeda | 936123d1377c290ba38b073d35534f10737af4dd | |
refs/heads/master | <repo_name>Gwayway/springboot2<file_sep>/src/main/java/net/togogo/springboot/bean/person.java
package net.togogo.springboot.bean;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "person")
public c... | 1b432c8bcc6b6f12aee84faec696db685ce93723 | [
"Java"
] | 1 | Java | Gwayway/springboot2 | 182c036a629857493a3e847477bd5190099dc5b0 | f018475699f1c667bc32e25697f2fe52a7812a93 | |
refs/heads/master | <repo_name>devjindev/our-emotions<file_sep>/passport/kakaoStrategy.js
//* passport(로그인) - 카카오 로그인 전략
// 처음 로그인할 때는 회원가입 처리 필요, 두 번째 로그인부터는 회원가입 처리 필요 X (바로 로그인 처리)
'use strict';
//! 패키지(미들웨어) 참조
const KakaoStrategy = require('passport-kakao').Strategy; // 카카오 로그인 전략
const { User } = require('../models'); // user DB
... | f5f0bbee313ad7fd3b5ecec1d2945d50ac08eb63 | [
"JavaScript",
"HTML",
"Markdown"
] | 12 | JavaScript | devjindev/our-emotions | 7ec406a23de4970a669967af048a6c37d60af6b5 | b6524d8dbb34404dec5dd9e8629817bfb876da80 | |
refs/heads/master | <repo_name>NSJ-backup/BinToArray<file_sep>/BinToArray/Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace BinToArray
{
... | f9d75450a0f9ac2b86f5d382f4f2d598395f373b | [
"C#"
] | 1 | C# | NSJ-backup/BinToArray | 8ac3982501591480c1db01969bf376c66981cd2e | ff0c48204e84d2f4e1a3aa32edaec6abc37408c5 | |
refs/heads/main | <repo_name>ExistOrLive/SYDCentralPivot<file_sep>/SYDCentralPivotForVC.h
//
// SYDCentralPivotForVC.h
// Pods
//
// Created by 朱猛 on 2021/9/20.
//
#ifndef SYDCentralPivotForVC_h
#define SYDCentralPivotForVC_h
#endif /* SYDCentralPivotForVC_h */
<file_sep>/README.md
# SYDCentralPivot
[:
# Your c... | e6d1e7d0c9d1881a448a8e0c4e929139ecdd9cd0 | [
"Markdown",
"Python"
] | 3 | Python | OozyGrub/Assignment-3-MVC-MVP-MVVM | f5f86262c795bba169cfeebc8f1d72c8ff20d85c | aab813c0f372830ea57a7c430f83e18038a5ca50 | |
refs/heads/master | <repo_name>Glamopod/MVP<file_sep>/src/main/java/de/mvpdt/mvp_dt/controller/MainController.java
package de.mvpdt.mvp_dt.controller;
import org.json.simple.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpRequest;
import org.springframework.stereotype.Control... | 334b4c14087763abf34c4dc8be41c0e3df4d0372 | [
"Java",
"Gradle"
] | 6 | Java | Glamopod/MVP | 4013ebb6dc59240f71f4eb11ff31974efcc39754 | be58f0e3141de67d7a234f47d1e1f1a985d90dc2 | |
refs/heads/master | <file_sep>#include <stdio.h>
#include <stdlib.h>
//global variable for molar mass, utilized a lot, better off global than passed as parameter
float M = 0;
float calcMM (char* substance, int length, int start);
int subscript (char* substance, int position);
int main (int argc,char* argv[]) {
if(argc == 1) { //no comm... | a94e9831ee6b9de359f9801e885fa5dd7455f3e5 | [
"Markdown",
"C",
"C++"
] | 8 | C | ShivamDh/Side-Projects | 6a4942e8133877834261e02e8ccaba331c743186 | 38ea8b2830276ee0d6d648616b6644cd17defbad | |
refs/heads/master | <repo_name>Renancp01/ColetorDeDados<file_sep>/ColetorDeDados/ColetorDeDados/ColetorDeDados/GravaRegistros.cs
using System;
using System.Data;
using System.Windows.Forms;
using ColetorDeDados.Forms;
using System.Windows.Forms;
using System.Net.Mail;
namespace ColetorDeDados
{
public class GravaRegistros
... | 137f1e7bcc246368dcd98f01041dcc59fbb7c6c3 | [
"Markdown",
"C#"
] | 8 | C# | Renancp01/ColetorDeDados | e51458e5b5df75ea10d46a19a4a527adf76f7ceb | 490cd577dd5119bd82601905f5dc703c9c5ffd01 | |
refs/heads/master | <repo_name>anischenkozhenya/PadawansTask1<file_sep>/Population.cs
using System;
namespace PadawansTask1
{
public class Population
{
public static int GetYears(int initialPopulation, double percent, int visitors, int currentPopulation)
{
if (initialPopulation <= 0)
t... | 30a812bf59b1bbf88152d6bcdd02973b61b38258 | [
"C#"
] | 1 | C# | anischenkozhenya/PadawansTask1 | a2c633e585faa55fcd70f3bc846fb61f100baf8d | 348866be0e14e96a58392c4523da66dfc101434f | |
refs/heads/master | <file_sep># DSFile
Data Structures file
Bhavika
(1610991225)
<file_sep>#include<iostream>
using namespace std;
void del_val(int arr[], int size)
{
int del, i, count=0;
cout<<"Enter element to be deleted: ";
cin>>del;
for(i=0; i<size; i++)
{
if(arr[i]==del)
{
for(int j=i; j<(size-1); ... | f2c3f2c6db36f11461df2c3ad47fda0804b52f05 | [
"Markdown",
"C++"
] | 4 | Markdown | bhavikag1197/DSFile | 9f615d06dc92d771522e4667cf2d1bcb561d03ef | fc81be3e0f72704e3228c38434fe887fc5bed2df | |
refs/heads/main | <file_sep>
namespace Aoc.Day8
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using Aoc.Misc;
using static Aoc.Misc.Tools;
publ... | 0c68ad38d30f4ccea9798bb7bd10a8db7ff7573d | [
"C#"
] | 18 | C# | KiritchoukC/advent_of_code | 5af52aa9637d252cdf2a7d40d6974d9ea5b9a631 | 5c1f5069b53ed903a7d72f5f58aefaa036a30fc7 | |
refs/heads/master | <repo_name>alshashiguchi/frontendBox<file_sep>/src/features/Box/test/Box.test.js
import React from 'react';
import { MemoryRouter } from 'react-router';
import { mount } from 'enzyme';
import Box from '../Box';
describe('Box Component', () => {
it('should mount', () => {
const wrapper = mount(
<MemoryRout... | ec37e058219daece46c764afd60f9b929736c25f | [
"JavaScript"
] | 1 | JavaScript | alshashiguchi/frontendBox | e78469bcb8518fa165616e6fe77f95abef20196b | 251fd35951cab9d2fee14c17762b5fc01731d397 | |
refs/heads/main | <repo_name>jerzokb/1.HalloWorld<file_sep>/witaj.js
console.log("Hello Jan");
console.log("How do you do?");
console.log(" * ");
console.log(" *** ");
console.log(" ***** ");
console.log(" ******* ");
console.log(" ********* ");
console.log(" *********** ");
console.log(" ******... | 627e650a61e12b2fa798e441b450c9eddc149abe | [
"JavaScript",
"TypeScript"
] | 2 | JavaScript | jerzokb/1.HalloWorld | 2e8bc0d67b7cb2319af5fd89993c058f92b4305f | 2c48975f1ab5a337814a69e379aca2f838f39943 | |
refs/heads/master | <file_sep>module CustomFields
module Types
module TagSet
class Tag
include Mongoid::Document
field :name, :localize => true
field :_slug, :localize => false
before_validation :set_slug
validates_presence_of :name
validates_uniqueness_of :name, ... | d9cbc68c3635dbdf74659d2c1bd0b8b349ba4850 | [
"Ruby"
] | 4 | Ruby | Liquidthread/custom_fields | 46e08d936b4d5f87469b7c75a20fece4fd4b5850 | 72d3366cfb0696043e7333a20b564230688fc510 | |
refs/heads/master | <file_sep># Based off of a LucidProgramming Tutorial
# https://www.youtube.com/watch?v=x5o0XFozYnE
# Created/Modified by AV 4/16/19
# Environment: go to anaconda cloud then search for borchr27/stableenv
# chromedriver (needs to match your version of chrome use this link to download chrome drivers)
# chromedriver link... | a186975a59be6ebda396224565ec62dc03322d3a | [
"Markdown",
"Python"
] | 2 | Python | borchr27/CraigslistScraper | 4f30141024779f7a6d225552e90081b169c44411 | 553298935b81b35b2d72c266129810cbe95f3aee | |
refs/heads/master | <file_sep>rootProject.name='Mantenimiento2020'
include ':app'
<file_sep>package com.example.mantenimiento2020;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotatio... | d83473237d9bb8eda37213531bfdf52ba9305c97 | [
"Java",
"Gradle"
] | 5 | Gradle | ETERLECKI/CMMS_Mobile | 130ef595f100f57de5565308b4b60920a3b8161e | 9d98f6892cde6fb373d6ad671d7e79759cc68163 | |
refs/heads/master | <file_sep>using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CustomScripts
{
public partial class Settings : Form
{
public Settin... | 03f70ea33583146b70123f5a3d70da7f5dd7fa8d | [
"C#"
] | 3 | C# | simzzdev/CustomScripts | 1fc2eefccc920a83ba444d0a4c3e6a5b255d0ff4 | a6d6790d27b62ae61820b89f22cd53b0e336afcb | |
refs/heads/master | <file_sep>package com.hari;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repositor... | 11c06424fa48c10c3b3726e77a369c18a5ef0979 | [
"Java",
"INI"
] | 8 | Java | Hari-Venkatesh-P/Employee-Dashboard-and-Project-tracker-Backend | b7f748aea5218cdcbba7ed65b7a9d7427d293e90 | 32271198a995a7922cc852022732a4c9be2ec967 | |
refs/heads/master | <repo_name>liutao1314/springboot-mybatis-demo-master<file_sep>/src/main/java/com/winter/interceptors/MyInterceptors.java
package com.winter.interceptors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndVi... | f2e12126f9b44cc748e6e3dba96f8ecc230df8d0 | [
"Java"
] | 4 | Java | liutao1314/springboot-mybatis-demo-master | fa9162e36b276016b9ef7a7e04f39adef02d432b | c2f4dca46911e5af0245f3ed517e75381ab78eab | |
refs/heads/master | <file_sep>// Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS P... | 3a778b3d0f615fd4c4e76fb74e74bff665875efb | [
"Python",
"C++"
] | 3 | C++ | zealxp/bundy | a577b623617993a1478dde8a9684f5ee6a05b8aa | ad3be8f021b9b6ec86dbcef8238edd04157defcb | |
refs/heads/master | <repo_name>gishoo/gomap<file_sep>/README.md
GoMap is a Web Application Vulnerability Analyzer
<file_sep>/request/request.go
package request
import (
"fmt"
"os"
"github.com/anaskhan96/soup"
)
func Get(addr string) string{
addr = "http://" + addr
resp, err := soup.Get(addr)
if err != nil {
... | e6d31d0b0b13d53e9e41accf4d9f73fdde2c90f4 | [
"Markdown",
"Go"
] | 3 | Markdown | gishoo/gomap | c310d9c26fb2f6e078b56ea6002f2c93d6002a38 | fd28e4aa638d97f5bc4363364a42d96a063d94aa | |
refs/heads/master | <file_sep>def create_an_empty_array
arr = []
end
def create_an_array
arr = [1, 2, 3, 4]
end
def add_element_to_end_of_array(array, element)
arr = ["array", "element"]
arr.push("arrays!")
end
def add_element_to_start_of_array(array, element)
arr = ["array", "element"]
arr.unshift("wow")
end
def remove_elem... | d5b4a5e7a1f27b89234bd8135fdf8f30ec289038 | [
"Ruby"
] | 1 | Ruby | haaminyangibo/programming-univbasics-4-crud-lab-london-web-080519 | 519768b2d7a0c4a04aa4552d848ac8fa5d1af3e8 | eb81bf0b37a05a96a7f8e8fac3f9f357958be3a7 | |
refs/heads/master | <file_sep>module Wisper
class Testing
class FakeBroadcaster
def broadcast(listener, publisher, event, args)
if Wisper::RSpec::EventRecorder === listener
listener.public_send(event, *args)
end
end
end
end
end
| c07eb2792f21b2a6db2b9698636d30f94dd9749b | [
"Ruby"
] | 1 | Ruby | jfahrer/wisper-testing | 399be7474767841b3a0fa11d706656567ed330cf | eabd038af9321df8f00a7c550389b928ff1a3733 | |
refs/heads/master | <repo_name>vladisgrig/mydoctor<file_sep>/todoctor/urls.py
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.main_page, name='main_pade'),
url(r'^results/$', views.results, name='results'),
url(r'^coupon/$', views.coupon, name='coupon'),
]
<file_sep>/todoctor/models.py
from ... | 1c1f92b60e4d7d7546fd1537ea2763816e942c52 | [
"Python"
] | 4 | Python | vladisgrig/mydoctor | 2321717953942efa8a70f26cfeccfbeba1e2ba60 | 95512120742c6afb3edd8d86ede3e2b53d38b03b | |
refs/heads/master | <file_sep>import sys
import socket
import string
HOST="irc.freenode.net"
PORT=6667
NICK="sdkie"
IDENT="sdkie"
REALNAME="sdkie"
CHANNEL="#etherboot"
readbuffer=""
s=socket.socket( )
s.connect((HOST, PORT))
s.send("NICK %s\r\n" % NICK)
print "send:"+"NICK %s\r\n" % NICK
s.send("USER %s %s bla :%s\r\n" % (IDENT, HOST, R... | 27621a73329af620c0a1b976b4291e1f157b4f05 | [
"Python"
] | 1 | Python | sreejadas/Python-IRC-bot | 1c043b874d0ed45f1b323f592c8ae6ff38509444 | a7fa968bb67546f745391fd9e343c6b2b7b386e9 | |
refs/heads/master | <file_sep>import pyttsx3
import datetime
import speech_recognition as sr
import wikipedia
import smtplib
import webbrowser as wb
import os
# import pyautogui
import psutil
import pyjokes
engine=pyttsx3.init("sapi5")
voices = engine.getProperty('voices')
# print(voices)
engine.setProperty('voice', voices[0].id)
def... | 70d7b3ab06bad187419d4851638942b0a132bdf8 | [
"Markdown",
"Python"
] | 2 | Python | Dheeraj-1999/AI-DO-MY-WORK- | 36a639709023685bca9e482af93ffa8b595440ba | 78b0b75eda6d7232000479d7927f8692455678c7 | |
refs/heads/master | <file_sep># -*- coding: utf-8 -*-
"""
Created on Sun Apr 26 09:50:39 2020
@author: Vaishnavi
"""
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
dataset = pd.read_csv('Social_Network_Ads.csv')
X = dataset.iloc[:, [2,3]].values
y = dataset.iloc[:, 4].values
from sklearn.model_selection import... | 61076ee22971ff0979c282ee7f6760e43a19634f | [
"Python",
"R"
] | 14 | Python | vaishnavinalawade/Data-Science-Python-Projects | 3f1ae8e3e85e869dde0f168f5928ded8d52b96a5 | 419618da83fba74b9bd7065b6318a59eb18f49fd | |
refs/heads/master | <repo_name>aalmacin/salsa-dashboard<file_sep>/README.md
# Requirements
You need to have AWS **Access Key** and **Secret Access Key** with the right permissions. And create the following environment variables
* HACK_HOUR_ACCESS_KEY
* HACK_HOUR_ACCESS_SECRET
<file_sep>/index.js
const AWS = require('aws-sdk');
const cost ... | 0fd4f309374b64cd2ac945835e8b7e68d2d07fde | [
"Markdown",
"JavaScript"
] | 2 | Markdown | aalmacin/salsa-dashboard | f4a7485da552b01f05143536787decedbd277464 | 2132ab32750ac5125b83990a13026f4e39afdd13 | |
refs/heads/master | <repo_name>iznogoud-zz/iznokb<file_sep>/src/iznokb.c
/*
* This file is part of the libopencm3 project.
*
* Copyright (C) 2010 <NAME> <<EMAIL>>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software... | 7a911bc69e70e9ed6e43cb57da37a166e58eb794 | [
"C",
"Makefile"
] | 5 | C | iznogoud-zz/iznokb | 1f2bec000245a9ce824131ee444ab6127735149f | ce94c805386751f7213de8794e908c441d24acde | |
refs/heads/master | <repo_name>searchrpm/python-challenge<file_sep>/PyBank/main.py
import os
import csv
#Break
csv_path = os.path.join("bank_data", "budget_data.csv")
csv_path
#Break
month_count = []
profit = []
change_profit = []
with open(csv_path, "r") as csvfile:
csv_reader = csv.reader(csvfile, delimiter=",")
csv_header =... | b5868a89d0b1ceea5f20dffb6eac4427a6b7b702 | [
"Python"
] | 1 | Python | searchrpm/python-challenge | ca10a5d757ea43aba4aabdde3ef66c2012922bed | 7c655eed0ca350739c2f6ec7985b45a0bbff0870 | |
refs/heads/master | <file_sep>class RemoveAttrToImages < ActiveRecord::Migration[5.1]
def change
remove_column :images, :title, :string
remove_column :images, :text, :text
end
end
<file_sep>class AddAttrToImages < ActiveRecord::Migration[5.1]
def change
add_column :images, :url, :string
add_column :images, :alt, :tex... | cb6643c77724a1c687bf7e7ac55bd53ee8f054db | [
"Markdown",
"Ruby"
] | 5 | Ruby | velossien/railsgallerytest | cc1aca83563d630a261fb0f7de57e6c43ecc138c | 829ef27c82b5063d39074e5d1fe3c8481406340e | |
refs/heads/master | <file_sep>#ifndef _ra8875_h
#define _ra8875_h
#define LCD_PORT PORTD
#define LCD_LAT LATD
#define LCD_TRIS TRISD
#define RESET LATCbits.LATC13
#define RESET_TRIS TRISCbits.TRISC13
#define RESET_LOW() RESET = 0
#define RESET_HIGH() RESET = 1
#define C86 LATCbits.LATC14
#define C86_TRIS TRISCbits.TRISC14... | 8b2166c7e350b4d54e46088c40f75c0baf8afaba | [
"C",
"Text"
] | 14 | C | AtomSoftTech/RA8875_8080_795f512H | f26c1bae8e750f0100b8ec6eb42f8d56b1f52bec | 68364b8171f416310303921660f6dc74d0e0b470 | |
refs/heads/master | <repo_name>dnwiebe/Simulino<file_sep>/README.md
# Simulino
Another attempt at a simulator for the Arduino family of microcontroller boards, with a specific eye toward TDD.
### Rationale
Test-driven development has always been difficult on an Arduino, because the system on which the tests are running
is likely a 64-bit... | 61bf0efc743c4758c5d544fba38f3a6179e2c049 | [
"Markdown",
"Java",
"C++"
] | 3 | Markdown | dnwiebe/Simulino | 8be7e8cad55cd4ede560e1db3d6c931c01e0ab79 | 2606691c845e7f9e44f83ad4208b9032489794b6 | |
refs/heads/master | <repo_name>BHerpolsheimer/MobileSensorNetwork<file_sep>/Algorithms.java
// <NAME>
// February 2, 2018
// CS 455
// Algorithm implemetations for the movement of the mobile sensor network.
import java.io.*;
public class Algorithms {
// Computes the euclidean distance between two sensors.
public static double comput... | 23c30726a0f4a7ec3d529e1743272b6a210cb6c2 | [
"Java",
"Text"
] | 5 | Java | BHerpolsheimer/MobileSensorNetwork | 7284b553afa259a7a0050c400a04358024a832a2 | 65463ca0255207942fb6890d4a5cd5154f4acfa9 | |
refs/heads/master | <repo_name>pratikalladi/candylibrary<file_sep>/log.md
### Week One:
1. [Dropfolder](https://github.com/yxie21/library/blob/master/DropFolder.java)
We start off with a simple scenario,
- ##### Context:
In the folder "folder," you enter two more levels of subfolders before being able to reach individual files endi... | 775e88821f14b1d82b9b1cd6f16aea428877b873 | [
"Markdown",
"Java"
] | 6 | Markdown | pratikalladi/candylibrary | 6ee8bffcf97bc2c5cf77e3c30cce64e6c20a9dd0 | a5861d3c2cf716417097c6f833b1592a8bc45aa0 | |
refs/heads/main | <file_sep>package DataStructures;
import java.util.ArrayList;
import edu.princeton.cs.algs4.Digraph;
public class Controller {
// The multithreaded computation
protected MultithreadedComputation multithreadedComputation;
// Work stealing controller
protected ControllerStealing workStealingController;
// A... | a2f0b0ca746c57fda04938a75c0a7eb47a6025dd | [
"Markdown",
"Java"
] | 5 | Java | FLAGlab/TesisSistemas2020 | 5b9780c25e08b0871ee1c4d51d5b5a069ac03bdb | 74bed129f084cb9be82db219823f282b7055ec7a | |
refs/heads/master | <file_sep>package com.example.alexander.myapplication;
/**
* Created by Alexander on 15.10.2016.
*/
public class Test {
public String callMe(){
return "Einstellungen noch nicht implementiert";
}
}
| ff2fb2c07c255de07b60cdd93fa38db5499e37de | [
"Java"
] | 1 | Java | HSWalohr/Innot | 10a3b449588cddebf183ba48ced55f4f6cce167a | 44002eac384e5e21e336d53b960d144b73286226 | |
refs/heads/main | <file_sep>"""
Tests for somebody algo (pytest)
"""
import pytest
import algo
@pytest.mark.parametrize(
"input_number, expected_number",
[
(1, 1),
(+100, 100),
(2048, 2048),
("8", 8),
("101", 101),
("1024", 1024),
(" 56", 56),
(" +78 ", 78),... | 6f80e8da10f3aac00af4acdf8d0e52b98e8f8371 | [
"Markdown",
"Python",
"Text"
] | 8 | Python | kolyasalubov/Lv-575.Python-project-MC | 8ce513fa995d73585057c300c169cd34d9775124 | 2c086975b4561f59c3549f4ab3094004834c4922 | |
refs/heads/master | <repo_name>jescholl/belt<file_sep>/share/toolbelt/tools/.hashicorp
#!/bin/bash
#set -x
name="$(basename -s .sh "$0")"
latest_version() {
curl -Ls "https://checkpoint-api.hashicorp.com/v1/check/$name" | jq -r .current_version
}
remote_versions() {
echo "Not supported" >&2
}
_url() {
echo "https://releases.hash... | e6107820745e932d02109813a501385a6f2783b0 | [
"Markdown",
"Shell"
] | 8 | Shell | jescholl/belt | da33b1453595b6a75bdffa6cf681d36431656219 | 809449daf17b14eed0e6fc8be3fce9a6d29a936d | |
refs/heads/master | <file_sep><?php
/**
* Created by PhpStorm.
* User: MAlzate
* Date: 3/13/2019
* Time: 1:23 PM
*/
class HtmlTags
{
public static function BeginOfTable()
{
return '<table class="table">';
}
public static function EndOfTable()
{
return '</table>';
}
public static function B... | 32f964de06266b2d6afde1f97218c226a304cad4 | [
"PHP"
] | 1 | PHP | ma867/secondProject2 | 550f3b9a922ec289640b13743b355c570d849293 | a8207965c42fd1aa375fba443cb125ddfb635687 | |
refs/heads/master | <file_sep># make sure this is in Rmarkdown output: md_document
install.packages("questionr")
getwd()
#setwd("C:/Users/anobs/Documents/GitHub/Unit6Casestudy")
# used these first but I was getting odd looking data ...
casestudy.link.GDP <-c("https://d396qusza40orc.cloudfront.net/getdata%2Fdata%2FGDP.csv")
casestudy.lin... | 0b5073e7c52aee6de006315efae166c6519a0f8f | [
"Markdown",
"R",
"RMarkdown"
] | 9 | R | rlisbona/Unit6Casestudy | 3509f538c81a57e33c39b35a078a87d6643831d6 | c46a2266da42615b1534e6f60a57cf962100134f | |
refs/heads/master | <repo_name>mcquaidawesome/webapps1<file_sep>/3-claim-your-birthright/index.html
<html>
<head>
<title>The History Of American Airlines</title>
<link rel= "stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id: <div id="Intro">
<p>
This Is The History Of Avery American Airlines... | f3444fef5c379a214dcafa4e084dd99e941fb27f | [
"JavaScript",
"HTML",
"Markdown"
] | 3 | HTML | mcquaidawesome/webapps1 | 3d05dffb4c0dbc596043484c2cd36b50a51e3c64 | e330c8012465b25be4e8e8accf0474593320454c | |
refs/heads/master | <file_sep># Maintainer: PyroDevil <<EMAIL>>
pkgbase="python2-queuelib"
pkgname="python2-queuelib-old"
pkgver=1.1.1
pkgrel=2
pkgdesc="Collection of persistent (disk-based) queues."
arch=(any)
license=('BSD')
url="http://scrapy.org"
makedepends=('git')
optdepends=()
provides=()
conflicts=()
options=(!emptydirs)
depends=(... | a1c5e42954e6333eb77e79d06b57eeb54b7fa0f7 | [
"Shell"
] | 1 | Shell | aur-archive/python2-queuelib | 91d33136a4704eeb7c84cf793d7ccdfe7bd99a8c | 5a582d92ccf7a85224490a668434af7ea948286c | |
refs/heads/master | <repo_name>dnrahmath/algoritmaAer<file_sep>/module/imgCore.js
class imgClass { //Class Model Memanggil seluruh function pada Class Car
constructor() {
this.dataArray;
}
//--- Start --- statusAwal() ---
statusAwal(Q,W,R) {
var elemKondisi = document.getElementById("kondisi"... | 05320551ddd0c535e2139be941da469b898e9baf | [
"JavaScript",
"Markdown"
] | 3 | JavaScript | dnrahmath/algoritmaAer | 60d85ac03e232f2a4689b330896b5e9e966ba8eb | f73c868973857f7673353d421ebc5d215c3ae96c | |
refs/heads/main | <repo_name>MikeWellC/ESP32-CAM-car-android-app<file_sep>/app/src/main/java/com/theretrocenter/esp32_camandroidapp/UserGuideFragment.java
package com.theretrocenter.esp32_camandroidapp;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android... | 45f7b1408d34f0c3cf6a4badf872bb695b64f535 | [
"Markdown",
"Java",
"Gradle"
] | 8 | Java | MikeWellC/ESP32-CAM-car-android-app | 51d3b9606f6a26b771daf302d6846bd0c05e1ccb | eae9f40143b2667c59dc85d0658a55c88311da8c | |
refs/heads/master | <repo_name>rootfinlay/OutlastEnterprise<file_sep>/ItemsForSale/admin.py
from django.contrib import admin
from .models import Clothing, Shoes, Accessories
#Admin
class ClothingAdmin(admin.ModelAdmin):
list_display = (['ITEM_CONDITION' , 'Price' , 'Brand' , 'Type' , 'Description'])
search_fields = (['ITEM_COND... | 039b4fb1ae8824d4e34e3c848c206f52d05f0123 | [
"Python"
] | 10 | Python | rootfinlay/OutlastEnterprise | 4e01b0983ddbcdb5ccd4a7f9cf273beea42ab068 | 497cf860164b667427ccd16406aa8bc45f94af34 | |
refs/heads/master | <repo_name>ChaonengTan/FEW2.1-GTranslateAPILib<file_sep>/README.md
   {
modelYear = year;
modelName = name;
}
public static void main(String[] args) {
Main myCar = new Main(1969, "Mustang");
System... | 7ac2007e689807a15cde22f9afa2421e6e3003dd | [
"Java"
] | 1 | Java | camilaluyza/myproject | a142eba4ed4202d9cccd3ae661b39af09ad35c1a | 867db8edcc3f2d607949217d23eb601414522b10 | |
refs/heads/master | <file_sep>-- phpMyAdmin SQL Dump
-- version 4.2.11
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: May 14, 2017 at 02:27 PM
-- Server version: 5.6.21
-- PHP Version: 5.6.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_C... | bdced04673a7a63b8a88f81a236adf03dd60695f | [
"SQL",
"PHP"
] | 3 | SQL | nguyenthieuluan/WebBAD | daa9b21d99b74249631754d3dac0117c6df2d57b | 98f1717d505947ba0224cb6ce716936cb1afa247 | |
refs/heads/master | <repo_name>Caisorda/ADVANDB-MC02<file_sep>/Converted-Queries.sql
/*#1: basic; Total volume of fish caught*/
select total_aquani_volume as volume
from cube
where hpq_hh_id is null and hpq_aquani_id is null and hpq_aquaequip_id is null;
/*#1CONVERTED*/
SELECT SUM(aquani_vol)
FROM hpq_aquani a
INNER JOIN hpq_hh h
ON (h.`... | a908459757c52dd60e0f57a2fdb2f150129f38b7 | [
"Java",
"SQL"
] | 7 | SQL | Caisorda/ADVANDB-MC02 | a772966b23d0f63ab3a631b603d605c892254973 | 8e339d8fbcd0c0528271fd95ed4ad22cda0085be | |
refs/heads/master | <file_sep>from binance.client import Client
from binance.exceptions import BinanceAPIException, BinanceWithdrawException
from binance.enums import *
from secrets import KEY, SECRET
# initialize api
client = Client(KEY, SECRET)
# load constants
SYMBOL_TYPE_SPOT = 'SPOT'
ORDER_STATUS_NEW = 'NEW'
ORDER_STATUS_PARTIALLY... | 06378f9108cda96596db00779475d055b7ef2481 | [
"Markdown",
"Python"
] | 5 | Python | naveenailawadi/CryptAlgo | 3d44009a70a2d0413f28a170276d2134c7be415e | a72d8a40df53a4dbb053b512e7de849303aaa710 | |
refs/heads/master | <file_sep># listpack
Redux package for managing lists
<file_sep>export default {
fields: {
id: "ID",
data: "row",
filters: "query",
paging: "pageInfo"
},
source: {
fetcher(serviceData) {
}
},
filters: {
validation: true,
constants: {},
source: []
},
actions: {
appen... | a2066162c1021d7c080cbd7aa7028348ccab038f | [
"Markdown",
"JavaScript"
] | 2 | Markdown | cirbuk/listpack | 517f9c463248588fae21741a9bd3a22185f4d784 | 5efc7412ac466a71c107d044294ad7527a3d3d74 | |
refs/heads/master | <file_sep>export const BASE_URL = "http://localhost:8080";
//AUTHENTICATION URLS
export const LOGIN_URL = BASE_URL + '/login';
export const SIGNUP_URL = BASE_URL + '/signup';
//ROOM URLS
export const CREATE_ROOM_URL = BASE_URL + '/room/create';
export const JOIN_ROOM_URL = BASE_URL + '/room/join';
export const LEAVE_... | b01e0d5caacf85ec8adcb56a2861827c87042200 | [
"JavaScript"
] | 4 | JavaScript | kewinshah25/RoomEase-FrontEnd | 2015beabc11686363e8ee8e591b82bc2c8c95cd8 | e4fe546faf7492f218337ffcccf7c7ecf9d24d8a | |
refs/heads/master | <file_sep>#Tue Dec 17 10:22:46 IST 2019
org.eclipse.core.runtime=2
org.eclipse.platform=4.11.0.v20190307-0500
<file_sep>package qa.com.test.scenarios;
import qa.com.baseclass.Baseclass;
import qa.com.pages.BuyerRegistrationPage;
import qa.com.pages.LaunchPage;
public class BuyerRegistrationScenario extends Baseclass ... | 93ddfd7b0d5a1c58401b783a6366f52176429fb2 | [
"Java",
"INI"
] | 15 | INI | swathicnbr1/moonlyteAutomationProject | 38af6cba5bd6fabd7b7c7a55b12d6ece6b59bcb9 | c39d0f44b1b55363b13177eb8d15b27222969f85 | |
refs/heads/main | <file_sep>package com.game;
public class RuleManager {
public boolean breakShot = true;
public boolean firstIn = false;
public boolean pocketed8 = false;
public boolean pocketed = false;
public boolean pocketedCue = false;
public boolean hitAnother = false;
public boolean correctFirstHit =... | 87748f07f05fbc97d10f08cc4bda737af3d9adfc | [
"Markdown",
"Java"
] | 5 | Java | go6o12344/8ballpool | fcc00a1912c93d7291b1c73813a88819c5ced221 | 5610657759c3cc55cdf16eae4d30ffd1919aca9a | |
refs/heads/master | <repo_name>Agusdld/conexiones<file_sep>/proceso1.c
#include <stdio.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <string.h>
int main(void) {
puts("hola soy el cliente"); /* prints !!!Hello World!!! */
//creo la estructura con la direccion del servidor
struct sockaddr_in direccionDe... | 969af1138a0d75f11a3f0e506d44c8810b4e3197 | [
"Markdown",
"C"
] | 3 | C | Agusdld/conexiones | db1af311ad7ad102190b4c9791676f2accffb278 | 321f0e0e2626d0304442081bbae23fc12856542f | |
refs/heads/master | <file_sep>function AddressBookCtrl($scope) {
$scope.contacts = [
{
firstName:'Greg',
lastName:'Carr',
phoneNumber:'310.995.9288',
emailAddress:'<EMAIL>'
},
{
firstName:'Joe',
lastName:'Shmo',
phoneNumber:'310.123.4567',
emailAddress:'<EMAIL>'
}
];
$scope.addContact = function() {
if ... | 7e384de73c45b51e51e4ed0fca5268ef923a0c7a | [
"JavaScript"
] | 1 | JavaScript | gregcarrart/angular-contacts | f5535fd7fedae3e4ee2eb20c42bb2b24bf41193a | 2283f3878959d8c382114a6767e109a57a7b5d9b | |
refs/heads/master | <file_sep>//
// PINDetailTableViewController.swift
// PINKeeper
//
// Created by <NAME> on 8/13/15.
// Copyright (c) 2015 <NAME>. All rights reserved.
//
import UIKit
import MagicalRecord
class PINDetailTableViewController: UITableViewController {
@IBOutlet weak var descriptionField: UITextField! {
... | df5224691cc1b3a1e79618371018911d4224c26e | [
"Swift",
"Ruby"
] | 11 | Swift | Tsymlov/PINKeeper | 108fe31ad568a36a7987c351f9cd0e541c7791d5 | 599d339d702f0c667bfdcd71206f3400a0641d62 | |
refs/heads/master | <file_sep>/*
* =============================================================================
*
* Filename: rbtree_api.h
*
* Description: api for rbtree to use.
*
* Created: 09/30/2019 11:39:34 PM
*
* Author: <NAME>, <EMAIL>
*
* ==========================================... | 799b055dcdd0cdde92aefc0ade28eb6cee49c939 | [
"Markdown",
"C",
"Makefile"
] | 5 | C | jeyawn/RbTree | ac6b20a4af5866f2eb11ae7a0f38767f8e156e8a | 4de2064ed9cd5559a03254855c7fb669bc6ffbc7 | |
refs/heads/master | <file_sep>using System;
using System.Collections.Generic;
using System.Text;
namespace Photo
{
class Wyszukiwanie : IWyszukiwanie
{
private List<string> wynik = new List<string>();
#region IWyszukiwanie Members
public void And(IWyszukiwanie W)
{
wynik... | a0aa17ad52176c5866863b8a550288438e9ab6e6 | [
"C#"
] | 69 | C# | BackupTheBerlios/iiphoto-svn | 28a5e62d4d1ba56992ed6c942f6cb883634b5378 | df6858ab7cdde23e650ebc4ed54078e6f4dff932 | |
refs/heads/master | <file_sep>import redis, json, subprocess
from time import sleep, time
# -------------- Settings ----------- #
mac = "XX:XX:XX:XX:XX:XX" # the bluetooth address of our speaker
redisServer = "127.0.0.1"
redisPort = 6379
redisDB = 0
# ------------EO Settings ---------... | 704ec458868cc1f4c0ac3f7a0deff2c20b6a6e2f | [
"Python"
] | 2 | Python | robtrevino/visualNotifier | 20c302a732b82345e64e9195d0b23e9dad3a6eee | d8339ac293103cffd4d11b4a63e9da0df9611037 | |
refs/heads/master | <file_sep>package com.kotlin.latigo
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.media.MediaPlayer
import android.hardware.SensorManager
import android.hardware.SensorEvent
import android.content.res.AssetFileDescriptor
import android.media.AudioManager
import android.content... | a6f2e46ed2b318602609891a076c9903b6ba3fb5 | [
"Markdown",
"Kotlin"
] | 2 | Kotlin | seedunk6/Whip | 87e81def041bfec9393b6b139767d2b79af52048 | 238eeffede6adf598056a1d38508333d3e3c11d7 | |
refs/heads/master | <repo_name>miensol/conf2013<file_sep>/server/wiki-search.js
var superAgent = require("superagent"),
search = function(query, callback){
var queryParams = {
action:'opensearch',
search: query
};
superAgent.get('http://en.wikipedia.org/w/api.php')
.quer... | b4a54f5d998059719a42ced18c164defc9961a51 | [
"JavaScript"
] | 17 | JavaScript | miensol/conf2013 | c1f7719e2c25c27cf466e3434b2ff2b57e9971d4 | 7225e6e840f2adbb20e52ea9b6907e94c5ba0fda | |
refs/heads/master | <file_sep># Debrief du 24/02/2021
PO: <NAME>
## Bilan
Pourcentage de tâches réalisées: 85 %
### Ce qui a fonctionné
Les différentes parties du projet ont fusionné pour aboutir à la version finale du projet.
### Ce qui n'a pas fonctionné
### Retour d'expérience du PO
Bonne expérience pour une première fois, mét... | f4122f19559109bf266f7373c64ea94f62cfacef | [
"Markdown",
"Python"
] | 4 | Markdown | Scaraball/TennisBallCollector | 4bee42139e736874e5c0eeff968419f8a571974f | 58b18375a7c0951d99469f1a5fbea702262712df | |
refs/heads/main | <file_sep><?php
function escape($string){
return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
}
function revertescape($string){
return htmlspecialchars_decode($string, ENT_QUOTES);
}
?><file_sep><?php
require_once 'core/init.php';
if (Input::exists()) {
$delprewardID = Input::get('delprewardID');
funct... | 0f06c9e5ce0333e9b4462d73a92c3dcca953670c | [
"PHP"
] | 37 | PHP | fikky123/Claim-System | e0af0b1ee2bd34bbdee0eeb3088320fc5852adc3 | f83ef8533947ccd28a54ebab37ecc2a7a46ab221 | |
refs/heads/master | <file_sep>var viewDivision = {x1: 60/75, y1: 0, x2: 60/75, y2: .875}
var topBarBottomLine = {x1: 0, y1: 3/75, x2: viewDivision.x1, y2: 3/75}
var videoRect = {x: 2/75, y: .55/75, w: 56/75, h: 25.04/75}
/*
var view1 = {x: viewDivision.x1 + 1/75, y: 2/75, w: 11.375/75, h: 5.075/75}
var view2 = {x: viewDivision.x1 + 1/75, ... | 43663e33d8f0c832db86fd6bcb306007907ae928 | [
"JavaScript",
"Markdown"
] | 5 | JavaScript | AdamChristie/chrome_experiment | 7315a2afc34f3b016d56a9e2c04c47fe832c4bc3 | b458415b949cbf3f0fddb618ae3f2e6d6688d864 | |
refs/heads/master | <repo_name>croatech/filtering<file_sep>/lib/filtering.rb
require 'filtering/version'
require 'filtering/base'
module Filtering
# Your code goes here...
end
<file_sep>/README.md
# Filtering
Gem for comfortable filtering of ActiveRecord queries.
## Installation
Add this line to your application's Gemfile:
```ruby
... | 178607a5c6e5a91c2ed3239b63f8dc2b3d9f0a1a | [
"Markdown",
"Ruby"
] | 3 | Ruby | croatech/filtering | 98d0cded2264ca4062a8f53e6f25e2f8fa15a9e2 | b10f13b9480068bb47e0b98ae5c9788c924229f2 | |
refs/heads/master | <repo_name>pkyt/splitter<file_sep>/app/js/app.js
require("file-loader?name=../index.html!../index.html");
const Web3 = require("web3");
const Promise = require("bluebird");
const truffleContract = require("truffle-contract");
const $ = require("jquery");
// Not to forget our built contract
const splitterJson = require(... | 9ca9073d5b5a744f7cda9a4a5e3eb8b26d94e12d | [
"JavaScript"
] | 1 | JavaScript | pkyt/splitter | 278e127fd4a98fbc678a42c44781f7346d2b5118 | 91c4a2bb53190ff4f648808b354774a3479d8e41 | |
refs/heads/master | <file_sep>
<?php include 'app/views/inc/header.php';?>;
<h1>WELCOME TO MY BLOG</h1>
<?php include 'app/views/inc/footer.php';?><file_sep><?php
/**
* Test Controller
*/
class Test
{
function __construct()
{
echo "I'm Test from Test Controller";
}
}<file_sep><?php
/**
* Category Controller
*/
Class... | feb5efb9d49933d4ae4adb2be0afc801097207d7 | [
"Markdown",
"PHP"
] | 13 | PHP | gillespatrick/OC_BLOG | e0275e48772678c0ce27a68427bad278ffd8af4d | 93df934c69faab92cc3435a867a48fa112bb05c1 | |
refs/heads/master | <file_sep>package com.central.medicare.controller;
import com.central.medicare.common.PageResult;
import com.central.medicare.common.Result;
import com.central.medicare.model.DataCollect;
import javax.annotation.Resource;
import com.central.medicare.service.DataCollectService;
import org.springframework.web.bind.ann... | b86ae5914c39ee9141b0e86c71998a49621f91a0 | [
"Java"
] | 2 | Java | TaiJi-team/cloud-medicare | 5f655ce480bcb3cbde9e2af1ab4634db4c9cc10b | 9d2e7e96f7553bcec36db1652671543c567fba26 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.