repo
stringlengths
5
121
content
stringlengths
35
2.09M
00-01/temp
00-01/temp base.py ```import os import sys from time import time import cv2 import face_recognition as fr import numpy as np from PyQt5 import QtWidgets from PyQt5.QtCore import QThread, pyqtSignal, Qt from PyQt5.QtGui import QPixmap, QImage, QScreen from PyQt5.QtWidgets import QDialog, QMessageBox, QApplic...
0072016/-.-.-.-.-.----.---..
0072016/-.-.-.-.-.----.---.. CHANGELOG.md ```# Changelog ## 0.1.0 - fix checkFormat task to use the passed folders instead of `.` - initial release - add default Grinder tasks ``` README.md ```# BWU Utils Dev [![Star this Repo](https://img.shields.io/github/stars/bwu-dart/bwu_utils_dev.svg?style=flat)](https://gith...
007arunwilson/react-native-firebase
007arunwilson/react-native-firebase README.md ```## React Native Application with Firebase - Firebase notification Implemented ( google-services.json file is git ignored ) ```
00mjk/snafu
00mjk/snafu test.c ```const char *handler(const char *input) { return "Hello World"; } ``` docker.py ```# Snafu: Snake Functions - Docker Executor import requests import os import configparser import time import random container = "jszhaw/snafu" endpoints = {} multi = 3 authorised = True def launch(tenant, portnu...
00s/lorn
00s/lorn Diamond.js ```// Diamond CLass var Diamond = (function () { // constructor function Diamond(x, y) { this._width = 52; this._height = 40; // spriteSheet setup this.data = { images: [queue.getResult("diamond")], frames: { width: this._width, height...
0100101001/PyTestKSED
0100101001/PyTestKSED test_SZ.py ```#!/bin/sh #!/usr/bin/python3 # -*- encoding=utf8 -*- # How to run: #.... python -m pytest -v --driver Chrome --driver-path WebDriver\chromedriver --alluredir ./allure_report #.... allure generate ./allure_report && allure open allure-report # -s команда вывода всех print в консо...
010V/frontend-project1
010V/frontend-project1 README.md ```# frontend-project1 Group project 1 ```
014248120/poytasaha
014248120/poytasaha FileIO.java ```package ohtu.io; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import org.springframework.stereotype.Component; /** * Class for reading and writing text files. */ @Component p...
01Eddie/nodejs_esenciales
01Eddie/nodejs_esenciales profile.js ```module.exports = function (app) { app.get('/profile/:user' ,(req, res) => { res.send(`Hola, estoy en el perfil de ${req.params.user}!!!` ) }) }``` index.js ```const mongo = require('./connect'); const { DB_NAME } = require('./config'); module.exports = { pos...
01rucha/TASK2
01rucha/TASK2 script.js ```// XML HTTP request // step1: create an instance of xml http var request = new XMLHttpRequest(); // step2: initiate a new connection request.open('GET', 'https://restcountries.eu/rest/v2/all', true); // step3: send request to server request.send(); // step4: if the server respond suc...
0227xiaohan/jdbcTest
0227xiaohan/jdbcTest Test_StudentManager.java ```package com.neuedu.HomeWork; import com.neuedu.biji.RowMap; import java.sql.ResultSet; import java.util.List; public class Test_StudentManager { public static void main(String[] args) { // StudentManager.tool("insert into student (id,sno,sname,spsw,sage,ssex,...
0324007/oose_0324007
0324007/oose_0324007 README.md ```#組長:資管3A 0324007 鍾雅如 #資管3A 0324047 鄭聿晴 #資管3A 0324063 王士銘 #資管3B 0324068 賴建能 ##工作分配: ![image](https://github.com/0324007/oose_0324007/blob/master/未命名.png) ##專題介紹:利用R軟體來分析高雄市登革熱的數據,而我們的呈現方式是以各種圖示來呈現在一個版面上。 ##介面圖: ![image](https://github.com/0324007/oose_0324007/blob/master/介面圖.png...
04551lh/Contacts
04551lh/Contacts BaseActivity.java ```package com.feicui.android.contacts.activity; import android.app.Activity; import android.os.Bundle; import android.view.Window; /** * @author G505 * @description Activiy的基类 */ public abstract class BaseActivity extends Activity { @Override protected void onCreate(B...
04pys/AnimalCare-2
04pys/AnimalCare-2 StorageActivity.java ```package com.example.animalcare; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import com.google.android.gms.tasks.Continuation; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.OnFailureListene...
07akioni/vue-attrs-bug
07akioni/vue-attrs-bug b.js ```import { h } from 'vue' import A from './a.js' export default { name: 'B', render () { return h(A, null, { default () { return h('div', null, ['B']) } }) } }``` index.js ```import { createApp, h } from 'vue' import B from './b' const app = { render (...
07kshitij/Object-Detection-Playground
07kshitij/Object-Detection-Playground getdata.py ```import os class data: def __init__(self): self.getData() def getData(self, params, source_file): path = "." orgFR = 25 frame = params["frameRate"] img = params["imgSize"] os.system( 'ffmpeg -i {...
07nguyenpaul/eloquent-chapter6-7
07nguyenpaul/eloquent-chapter6-7 README.md ```# eloquent-chapter6-7 I read through both chapters. I'm starting to understand chapter 6 with objects and prototypes. However, once I got to chapter 7 it got really confusing to me. I feel like when I'm looking at the code I can understand and see what is being implimen...
08160572/2021graphics
08160572/2021graphics main.cpp ```#include <GL/glut.h> float angle=0; void hand() { glPushMatrix(); glScalef(0.5,0.1,0.1);//細長的 glColor3f(0,0,1);//藍色的 glutSolidCube(1);//方塊 glPopMatrix(); } void display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glColor...
0918nobita/psvg-playground
0918nobita/psvg-playground out.js ```function __val(x) { if (new RegExp(/^[+-]?(\d+([.]\d*)?([eE][+-]?\d+)?|[.]\d+([eE][+-]?\d+)?)$/g).test(x)) { return parseFloat(x); } if (x == `true` || x == `false`) { return x == `true`; } let hascm = x["includes"](","); if (hascm) { ...
09o/ExpressCURD
09o/ExpressCURD members.js ```/** * members.js * 数据操作文件模板 * 职责: * 操作文件中的数据,只处理数据,不关心业务 */ var fs = require('fs') var dbPath = './db.json' // 获取所有成员列表 // callback() 中的参数 // + 第一个是err // - 成功是 null // - 错误是 错误对象 // + 第二个是结果 // - 成功是 数组 // - 错误是 undifined // // 封装异步API exports.find = function (callbac...
0AdityaD/raytracer
0AdityaD/raytracer README.md ```Haskell Ray Tracer =================== ## Requirements This project requires [Stack](https://github.com/commercialhaskell/stack) to build. Most Linux distros will come with a stack package in their repos--on Windows and MacOS systems, you can use the [Haskell Platform](https://www.has...
0IvI0/javatraining
0IvI0/javatraining README.md ```# javatraining GitHub Learning Lab - java training ```
0MikoMiko0/Small-GLua-Things
0MikoMiko0/Small-GLua-Things README.md ```A lot of helpful things there! Few small scripts and few examples. So u can take note of some of this :) ```
0b-ivan/docker-wow-legion
0b-ivan/docker-wow-legion dbuild.sh ```#!/bin/bash # @author Michael Wiesendanger <michael.wiesendanger@gmail.com> # @description build script for docker-wow-legion-server container set -euo pipefail WD="${PWD}" # variable setup DOCKER_WOW_LEGION_SERVER_TAG="ragedunicorn/wow-legion-server" DOCKER_WOW_LEGION_SERVER_...
0d1nAndl0k1/0d1nAndl0k1
0d1nAndl0k1/0d1nAndl0k1 README.md ```### Hi there 👋 0d1n is currently working on a discord bot and website for us L0k1 is currently working on a booru downloader -How to reach us: 0d1nandl0k1hack3rs@gmail.com or in our discord sever -ask us anything in the sever -can do custom stuff ## join our discord...
0escobarjosue/assignment
0escobarjosue/assignment teamsBox.js ```import React from "react"; import "./teamsBox.css"; const TeamsBox = (props) => { return ( <div className="teamsBox"> <div className="teamsBoxItem"> <div className="teamLogoDiv"> <img src={props.logo} alt="logo" className="teamLogo"></img> ...
0keita/configs
0keita/configs extension.js ```"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.deactivate = exports.activate = void 0; const vscode = require("vscode"); const classpath_1 = require("./classpath"); // called once per VSCode session when the plugin is launched function activate...
0na/React.js-ListOfMovies
0na/React.js-ListOfMovies script.js ```"use script" var movies = [{ id: 1, title: 'Django Unchained', desc: 'With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner,', image: "images/django.jpg", }, { ...
0on/angular-test
0on/angular-test store.js ```angular.module('comments.service', []) .factory('LocalStorage', function () { "use strict"; var ID = "comments-local-storage"; var store = { save: function (comments) { localStorage.setItem(ID, JSON.stringify(comments)); ...
0restis/Coursera_Bitcoin_Cryptocurrency
0restis/Coursera_Bitcoin_Cryptocurrency CompliantNode.java ```import java.util.ArrayList; import java.util.Set; import java.util.HashSet; import static java.util.stream.Collectors.toSet; /* CompliantNode refers to a node that follows the rules (not malicious)*/ public class CompliantNode implements Node { double...
0wlism/our-ui
0wlism/our-ui webpack.prod.js ```const path = require('path') const webpack = require('webpack') const merge = require('webpack-merge') const common = require('./webpack.common.js') const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin') const UglifyJsPlugin = require('uglifyjs-webpack-plugin') c...
0x111/tailwind-starter
0x111/tailwind-starter README.md ```# tailwind-starter Tailwind Starter template pre-configured! ## Building and running on localhost First install dependencies: ```sh yarn install ``` To run in hot module reloading mode: ```sh yarn start ``` To create a production build: ```sh yarn run build-prod ``` ## Runn...
0x566164696D/missconfigured-tarantool
0x566164696D/missconfigured-tarantool README.md ```# Сборка Tarantool для иллюстрации ошибок конфигурации ## Описание Сборка включает в себя 3 тестовых приложения - Порт 3301. Приложение, где учетная запись guest имеет права на создание объектов, вызов модуля os и т.п. - Порт 3302. Учетная запись guest ограничена в ...
0x686c70/SPpro
0x686c70/SPpro lagou.py ```# -*- coding: utf-8 -*- import scrapy from scrapy.linkextractors import LinkExtractor from scrapy.spiders import CrawlSpider, Rule from items import LagouJobItemloader, LagouJobItem from utils.common import get_md5, get_common_range from datetime import datetime class LagouSpider(CrawlSpid...
0xArKrant/0xArKrant
0xArKrant/0xArKrant README.md ```<h3 align="center">Hi, I'm Benjamin 👋</h3> <br /> <p align="left"> Hi, I'm Benjamin, a 21 yo Fourth-year Postgraduate student at @Epitech ! <br /> I'm also currently in a double master degree (MSc Networks & Security) at University of Kent in UK ! <br /> 💻 I enjoy...
0xChrisJL/INNO-WalletSupport
0xChrisJL/INNO-WalletSupport README.md ```# INNO-WalletSupport INNO对多种链上钱包的集成封装,包括:trous、metaMask、walletConnect等 ```
0xD34DC0DE/TP2
0xD34DC0DE/TP2 Account.java ```package com.fabeme.tp2backend.model; import javax.persistence.*; import java.util.HashSet; import java.util.Set; @Entity @Table(name = "accounts", catalog = "tp2") @Inheritance(strategy = InheritanceType.JOINED) public class Account { @Id @Column(name = "email") protected String em...
0xFelixx/fibonachiArray
0xFelixx/fibonachiArray main.py ```import numpy as np # Importing some stuf import cv2 import time num = 17 color = 255 imSizeX = 1400 imSizeY = 700 x = 700 y = 350 arr = np.zeros( (imSizeY,imSizeX,3), "uint8" ) for o in range(1000): fibo2 = 0 fibo1 = 1 fibo = fibo1 + fibo2 eksx1 = x # Ekstra x1 s...
0xLeif/ChainDemo
0xLeif/ChainDemo ChainDemoApp.swift ```// // ChainDemoApp.swift // Shared // // Created by Zach Eriksen on 1/12/21. // import SwiftUI @main struct ChainDemoApp: App { var body: some Scene { WindowGroup { ContentView() } } } ``` ContentView.swift ```// // ContentView.swift // ...
0xLeon/com.leon.pokemon.cheatdatabase.core
0xLeon/com.leon.pokemon.cheatdatabase.core CheatDatabaseEntryDeleteAction.class.php ```<?php // wcf imports require_once(WCF_DIR.'lib/action/AbstractSecureAction.class.php'); // cheat database imports require_once(WCF_DIR.'lib/data/cheatDatabase/entry/EntryEditor.class.php'); /** * Deletes a cheat database entry. ...
0xNaN/conway-140byt.es
0xNaN/conway-140byt.es conway132.js ```function(g,x,y,w,h){v=g[x][y];s=0;for(i=x-1;i<x+2;i++)for(k=y-1;k<y+2;k++)if(i>=0&&i<w&&k>=0&&k<h)s+=g[i][k];return s==3||v&&s==4;} ``` README.md ```Conway's Game of Life in 132 bytes of javascript ===== An implementation of Conway's Game of Life in only 132 bytes of javascript c...
0xNacho/flink-savepoints-test
0xNacho/flink-savepoints-test SavepointTest.java ```package org.apache.flink.quickstart; import java.util.concurrent.TimeUnit; import org.apache.flink.api.common.functions.MapFunction; import org.apache.flink.api.common.state.ValueStateDescriptor; import org.apache.flink.api.common.typeinfo.TypeHint; import org.apach...
0xSojalSec/h4rpy
0xSojalSec/h4rpy config.sh ```#!/bin/bash rm Output/sample.txt if [ -x "$(command -v pacman)" ]; then pacman -Sy aircrack-ng terminator net-tools elif [ -x "$(command -v apt)" ]; then apt install aircrack-ng terminator net-tools fi mkdir /root/.config mkdir /root/.config/terminator cp config /root/.config/terminato...
0xbeer/0xBEER
0xbeer/0xBEER app.js ```!function(n){var e={};function t(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return n[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}t.m=n,t.c=e,t.i=function(n){return n},t.d=function(n,e,i){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:i})},t.n=f...
0xbharath/GoI-subdomains-directory
0xbharath/GoI-subdomains-directory README.md ```# List of subdomains/web applications by Indian government The repository contains list of subdomains/web applications maintained by government of India. 1. `nic.in-subdomains.txt` contains list of subdomains under `nic.in` domain ## Frequently Asked Questions (FAQs) ...
0xboz/webautoapp
0xboz/webautoapp README.md ```# webautoapp webautoapp ```
0xflotus/transform-graphql
0xflotus/transform-graphql index.spec.ts ```import { TransformerDef, TransformGraphQLSchema } from '../'; import { TreeToGraphQL } from 'graphql-zeus'; const GraphQLTransform = ` type Post implements Nameable @model{ name: String! content: String! createdAt: String! } type Query{ ...
0xh3x0r/SimpleWebConcepts
0xh3x0r/SimpleWebConcepts AccessCodeBehindFromJS.cs ```using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication1 { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(o...
0yedediqizhang0/CWS
0yedediqizhang0/CWS 1.py ```# -*- coding: utf-8 -*- """ Created on Thu Jul 12 15:58:16 2018 @author: JQ """ from data import data from lexicon import Lexicon from embedding_weights import Embedding_weights lexicon,lexicon_reverse,lexicon_len=Lexicon(corpus_path) train_data,val_data,train_label,val_label=d...
0zonet/bacsgroupweb_v1
0zonet/bacsgroupweb_v1 team.js ``` $(document).ready(function(){ $(".galery-item").click(function(){ var item, i; item = $(this); i = item.attr('id'); if(i == 'team1'){ //Añadir clases active $('#team1').addClass('galery-ite...
1-3calculator/1-3calculator.github.io
1-3calculator/1-3calculator.github.io script.js ```function start() { document.getElementById("submitBtn").addEventListener("click", function () { formula(); }); } function formula() { var userIn = document.getElementById("numberIn").value; var results = document.getElementById("results"); results.innerH...
10-kp/Horiseon_site_accessibility
10-kp/Horiseon_site_accessibility README.md ```# Horiseon_site_accessibility Undertaking of refactoring of the site to meet accessibility standards Link to the page: https://10-kp.github.io/Horiseon_site_accessibility/ Installation - Created a new repository in GitHib called Horiseon_site_accessibility - Cop...
1000ideas/redmine_ckeditor
1000ideas/redmine_ckeditor application_helper_patch.rb ```require_dependency 'application_helper' module ApplicationHelper def ckeditor_javascripts root = RedmineCkeditor.assets_root javascript_tag("CKEDITOR_BASEPATH = '#{root}/ckeditor/';") + javascript_include_tag("application", :plugin => "redmine_ck...
100101Ed/shopping
100101Ed/shopping IdentifyObject.java ```/** * File Name: IdentifyObject.java<br> * Mora, Eduardo<br> * Java Boot Camp Exercise<br> * Instructor: Jean-francois Nepton<br> * Created: Feb 10, 2016 Create a helper class to add to your framework which * gives information on any class you create. The method signature...
100297/TakoTest
100297/TakoTest README.md ```# TakoTest RepositoryTestGits ```
10086XIAOZHANG/react-zkcarousel
10086XIAOZHANG/react-zkcarousel index.js ```import React from 'react'; import ReactDOM from 'react-dom'; import Carousel from '../src/index'; export default class MyCarousel extends React.Component { constructor(props) { super(props); } handleItemClick(index,event) { console.log(event.target); } ren...
1009700427/Disputify
1009700427/Disputify dbDriver.js ```const mysql = require('mysql'); const config = { host: 'localhost', user: 'root', password: 'abc', database: 'DisputifyDB' }; // adds user into database module.exports.addUser = function(data){ // sets up connection var connection = mysql.createConnection(config); conne...
100DaysOfVue/100daysofvue.github.io
100DaysOfVue/100daysofvue.github.io README.md ```# 100daysofvue.github.io Webpage &amp; Indexer of #100DaysOfVue where can be found all projects made. This is a project inspired by the initiative of a friend [@ChinuxParibus](https://github.com/ChinuxParibus) and his [ThousandDaysOfVue](https://github.com/thousandday...
1012960050/letao
1012960050/letao common.js ```/** * Created by Administrator on 2018/4/9 0009. */ mui('.mui-scroll-wrapper').scroll({ indicators: false }); var gallery = mui('.mui-slider'); gallery.slider({ interval:1000 }); function getSearch(key) { var str = location.search; str = decodeURI(str); ...
10183308/CRNN_CTC_Tensorflow
10183308/CRNN_CTC_Tensorflow dowload_Synth90k_data.sh ```#!/bin/sh # download s wget -c http://www.robots.ox.ac.uk/~vgg/data/text/mjsynth.tar.gz tar -xzvf mjsynth.tar.gz find ./mnt/ | xargs ls -d | grep jpg > image_list.txt ```
10190997/animation_application
10190997/animation_application MainActivity.java ```package com.example.animation_app; import androidx.appcompat.app.AppCompatActivity; import androidx.constraintlayout.widget.ConstraintLayout; import android.animation.ObjectAnimator; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; imp...
102316123/hw1
102316123/hw1 README.md ```# hw1 poem ```
1048229503/Point24c
1048229503/Point24c ExceptionDemo.java ```package demo; public class ExceptionDemo { /** * @param args */ public static void main(String[] args) { try { System.out.println(1/0);//ArithmeticException } catch (Exception e) { System.out.println("I catched it!"); } System.out.println("hello world"); ...
107061206/hw1
107061206/hw1 hw1.py ``` import csv cwb_filename = '107061206.csv' data = [] header = [] with open(cwb_filename) as csvfile: mycsv = csv.DictReader(csvfile) header = mycsv.fieldna...
1084195820/vue-demo
1084195820/vue-demo README.md ```# vue-demo vue用好的组件收集 ```
1094469464/test
1094469464/test README.md ```# test BeiJing huan ying ni now! BeiJing huan ying ni 2016/5/17;xiu gai ```
109km/exercises-from-operating-system
109km/exercises-from-operating-system reform-python-print.py ```import sys import re def reform_file(file_name, callback): reformed_file_data = "" try: file_obj = open(file_name, "r") for line in file_obj.readlines(): reformed_file_data = reformed_file_data + callback(line) ...
10N1ceTry07/homework-2019
10N1ceTry07/homework-2019 parfum.h ```#ifndef LAB4_PARFUM_H #define LAB4_PARFUM_H #include<string> #include<iostream> using namespace std; class parfum { private: string name; int volume; int price; protected: string color; string smell; public: string country; int alcohol; parfum(...
1107705933aa/nfsq-large-screen
1107705933aa/nfsq-large-screen utils.js ```export const formatNumToArr = (testnum, len = 2) => { const list = [parseInt(testnum % 10)]; // 去个位数的值 // 判断是否是大于个位数的值 if (len > 1) { // 对数字进行循环并存入数组中 for (let i = 2; i <= len; i += 1) { list.push( parseInt( (testnum % Number(1 + "0".repe...
111-www/login
111-www/login shop.java ```package com.yueqian.shop; public class shop { public static void main(String[] args) { System.out.println("正在购物"); } void fun(){ System.out.println("购物完成"); } } ```
111012asd/hunzhang
111012asd/hunzhang README.md ```# hunzhang 111012asd ```
1134260838/datasci
1134260838/datasci README.md ```# datasci used for datasci homework ```
1174068265/YouChat
1174068265/YouChat README.md ```# YouChat 聊天工具 ```
11BelowStudio/ce316labs
11BelowStudio/ce316labs bikky ```#!/usr/bin/env python3 """A bare-bones program to help you identify broken biscuits, to be used in conjunction with the images of CE316/CE866 experiment 4. You should run this program with one or more images on the command line, and it processes each of them in turn. The processing i...
11aw/violet.github.io
11aw/violet.github.io README.md ```# violet.github.io```
11character/microbit-web-motion-client
11character/microbit-web-motion-client index.js ```import * as THREE from 'three/build/three.module'; import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'; const width = window.innerWidth; const height = window.innerHeight; //--- const renderer = new THREE.WebGLRenderer({alpha: true, antialias: ...
11kashifali/vue-search-select
11kashifali/vue-search-select vue-search-select.min.js ```!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.VueSearchSelect=e():t.VueSearchSelect=e()}(this,function(){return function(t){function e(i){i...
11tickles/sf-ltd-api
11tickles/sf-ltd-api README.md ```# sf-ltd-api Limited API concept for Salesforce ```
12-MrBa/Snake-Game-2
12-MrBa/Snake-Game-2 README.md ```# Snake-Game This is the normal snake game. ```
1234Nikster/gulp-s-settings
1234Nikster/gulp-s-settings script.js ```// 'use strict' // @@include('alert.js') // j()``` script.js ```// 'use strict' // function j (){ alert('hi') } // j() // j()``` alert.js ``` function j (){ alert('hi') } // j()```
123abkls/-
123abkls/- README.md ```# - 放置视频资源 ```
123andrzej123/TaxiServer
123andrzej123/TaxiServer TaxiServer.java ```package pl.rabkataxi.taxi.taxiserver; import java.io.IOException; import java.net.ServerSocket; import java.net.Socket; import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; public class TaxiServer { public static final int CUSTOM...
123jimin/RGTools
123jimin/RGTools OffsetMeasure.cs ```using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RGData { /// <summary>Represents measures with fixed time.</summary> public class OffsetMeasure: Measure { protected double length; ...
123usa/jan2019
123usa/jan2019 README.md ```# jan2019 this is a java project this is Github project this is good one ```
123wdd/GuiMeiShopping
123wdd/GuiMeiShopping DiscountServiceDaoImpl.java ```package service.impl; import Dao.impl.DiscountDaoImpl; import pojo.Discount; import pojo.page; import service.DiscountServiceDao; public class DiscountServiceDaoImpl implements DiscountServiceDao { private static DiscountServiceDaoImpl ourInstance = new Discou...
123yoyo6/123lucas6
123yoyo6/123lucas6 README.md ```# 123lucas6 Hello world ```
12819953/learning_log
12819953/learning_log README.md ```# learning_log Test python Only test python Django ```
12Tech/ElastiQS
12Tech/ElastiQS README.md ```# ElastiQS Elastic SQS consumer ``` elastiqs.py ``` import logging import time import threading import sys from collections import deque import multiprocessing import logging from datetime import datetime import boto3 from exceptions import InvalidQueueError, EmptyProductionQueueError l...
12abenedict/OOPExercise
12abenedict/OOPExercise app.js ```// 1a const elf = { title: `Elf`, main: `Buddy`, // 1b quote: function () { return `The best way to sprad Christmas cheer is singing loud for all to hear`; }, // 1c info: function () { return `${this.title} is about ${this.main}`; // or //return this.titl...
12bme/Algorithm
12bme/Algorithm SieveOfEratosthenes.java ```/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package algorithm; /** * * @author jiseonoh */ public class SieveOfEratosth...
12dmodel/gradient-halide
12dmodel/gradient-halide HalidePytorchHelpers.h ```#ifndef HL_PYTORCH_WRAPPER_H #define HL_PYTORCH_WRAPPER_H #include "HalideBuffer.h" #include "HalideRuntimeCuda.h" #include <vector> #include <iostream> #include <string> #include <sstream> #include <exception> #include "TH/TH.h" #include "THC/THC.h" #define WEAK _...
12thtone/FirebaseJokesComplete
12thtone/FirebaseJokesComplete README.md ```# Firebase Jokes A Tutorial App for Building a Simple Jokes Social App in Swift using Firebase * Swift * Firebase * CocoaPods Checkout the tutorial at [AppCoda](http://www.appcoda.com/firebase/) ```
13147011362/test_by_ci
13147011362/test_by_ci ArrayListTest.java ```package test; import java.util.ArrayList; public class ArrayListTest { public static void main(String[] args) { ArrayList<String> arrayList = new ArrayList<String>( ); arrayList.add("1"); arrayList.add("2"); arrayList.add("3"); ...
13240031972/ht
13240031972/ht README.md ```# ht 初始化 ```
13301338176/FogML
13301338176/FogML iris.py ```import pickle from sklearn import datasets, tree, naive_bayes from sklearn.neural_network import MLPClassifier from generators.generator import GeneratorFactory factory = GeneratorFactory() iris = datasets.load_iris() X = iris.data y = iris.target # clf = tree.DecisionTreeClassifier(r...
13528770807/python_script
13528770807/python_script qiang.py ```#!/usr/bin/python3 import shutil import sys class Place: def __init__(self, num): self.num = num self.place1 = './license_plate/ZABC255/lp_database.txt' self.place2 = './license_plate/ZB53Y11/lp_database.txt' self.place3 = './license_plate/ZC7...
13548899356/p2p_L
13548899356/p2p_L SysPowerServiceImpl.java ```package com.zking.ssm.services.impl; import com.zking.ssm.mapper.SysPowerMapper; import com.zking.ssm.model.SysPower; import com.zking.ssm.services.ISysPowerService; import com.zking.ssm.util.PageBean; import org.springframework.beans.factory.annotation.Autowired; import ...
13588936722/startup-project
13588936722/startup-project REMARD.md ```# 1.测试标题 <!-- 测试数据 -->```
1359219091yu/newApp
1359219091yu/newApp app.js ```Vue.config.productionTip=true //孙子元素 var Editor = { props:['entityObject'], data:function(){ return { entity:this.entityObject } }, //update函数进行更新 methods:{ update:function(){ //子元素向父元素传递数据 this.$emit('updateEvent') } }, //表单模板...
1363899341zx/xiaomi
1363899341zx/xiaomi README.md ```# xiaomi zheshiwodexiaomi ```