repo
stringlengths
5
121
content
stringlengths
35
2.09M
3RMMLLC/Baby-Boomer
3RMMLLC/Baby-Boomer README.md ```# Baby-Boomer My Family ```
3a713240/hw15
3a713240/hw15 hw15.cpp ```#include<stdio.h> #include<stdlib.h> int main(void) { int h, m; printf("請輸入幾點幾分:"); scanf("%d %d", &h, &m); if (h> 7&&h<17) { printf("上學時間"); } else if (h == 7&&m>=30) { printf("上學時間"); } else if(h>24){ printf("輸入時間錯誤"); } else if(m>=60){ ...
3aByJI0H/Sock-Registration-Service
3aByJI0H/Sock-Registration-Service JpaWithQueryDslRepository.java ```package org.vetirdoit.sock.registration.repositories; import com.querydsl.core.types.dsl.EntityPathBase; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.querydsl.QuerydslPredicateExecutor; import org.spr...
3bab/keora-camel
3bab/keora-camel README.md ```# keora-camel ``` TestController.java ```package com.keoracamel.api; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("...
3dh-de/room-sensor
3dh-de/room-sensor README.md ```# room-sensor Arduino based room sensor with SSD1306 OLED (128x64 pixel black/white) and DHT22 temperature+humidity sensor ## Prerequisites * Arduino IDE 1.8.8 or newer * Visual Studio Code 1.3.1 or newer with C++ and Arduino extension * Arduino Libraries installed: * Arduino GFX ...
3dprintedcat/Hackathon
3dprintedcat/Hackathon README.md ```# Hackathon This is the application we made when we were at 2019 FirstNet Hackathon hosted by AT&amp;T. # How to start the app TBA # Other info Check out our OrgSync for photos from this event! ```
3dv1n/hello-word
3dv1n/hello-word README.md ```# hello-word hooo booooy hooooo booooy ```
3for/Compressed_sigma-protocol
3for/Compressed_sigma-protocol scalar_math.rs ``` use super::super::scalar::Scalar; // compute linear form $y=L(\vec{x})$ pub fn compute_linearform(a: &[Scalar], b: &[Scalar]) -> Scalar { assert_eq!(a.len(), b.len()); (0..a.len()).map(|i| a[i] * b[i]).sum() } /// Computes an inner product of two vectors /// \\[ ...
3hedgehogs/simple-https-auth-server.py
3hedgehogs/simple-https-auth-server.py README.md ```# simple-https-auth-server.py Simple python3 https server with basic authorization ```
3izzo/Google-Hashcode-2019-FTC-KSU-Solution
3izzo/Google-Hashcode-2019-FTC-KSU-Solution Core.java ```import java.io.File; import java.io.FileNotFoundException; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java...
3jin-p/KotilinPractice
3jin-p/KotilinPractice README.md ```# KotilinPractice Kotlin 연습 - Kotlin In Action 진행중.. ``` readme.md ```Kotlin 타입 시스템 -- ### 1.Null Safety 코틀린은 기본적으로 프로퍼티나 변수에 Null 할당을 지원하지 않는다. 코틀린에서 변수에 null 을 할당하기 위해서는 아래와 같이 선언해야한다. ``` kotlin var name: String? fun strLenSafe(s: String?) = ... ``` nullable 변수는 non ...
3levate/learningjavafx
3levate/learningjavafx Planet.java ```package blackholesimulation.spaceobjects; import blackholesimulation.space.MassiveBody; import javafx.geometry.Point2D; public class Planet extends MassiveBody { public Planet(Point2D position, Point2D speed, double mass) { super(position, speed, mass); ...
3ll3rach3l/w6d2Project
3ll3rach3l/w6d2Project curl.js ```const dash = require('dashdash'); const fetch = require('node-fetch'); const fs = require('fs') const options = { allowUnknown: true, options: [{ names: ['output', 'o'], type: 'string', help: 'file in which to store the fetched content' }], }; con...
3mhurley/NYTimes-Search
3mhurley/NYTimes-Search app.js ```// API Key: ifxosl5pYkbjEth9gms8XcOR0okRrt58 // Make Card function name(param) { } // Create Articles function printArt(param,iter) { $('#articles').append(`<div class='card' id=${iter}></div>`); $('#' + iter).append(`<div class="card-header">`); $('#' + iter).app...
3mpp1901/Kravtsov_S
3mpp1901/Kravtsov_S README.md ```# Kravtsov_S Student: Kravtsov S ```
3nth/homebase
3nth/homebase README.md ```# homebase a ~ builder ## homebase does homebase will set up your home environment with your dotfiles and favorites tools. if you like my home, then come on in... bash < <(curl -fsSL https://raw.github.com/3nth/homebase/master/homebase) ...but you probably want your own, so fork ...
3sham/Library
3sham/Library HomeController.cs ```using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Mail; using System.Web; using System.Web.Mvc; namespace Library.Controllers { public class HomeController : Controller { // this function to send sms code to Email...
3sidedcube/react-native-banner
3sidedcube/react-native-banner README.md ```# react-native-banner An react-native library for showing banner notifications on iOS ``` index.js ```import RNBanner from "./RNBanner" export default RNBanner; ``` RNBanner.ios.js ```/** * @providesModule RNBanner * @flow */ 'use strict'; import { processColor } from "r...
3t0e5git/datasciencecoursera
3t0e5git/datasciencecoursera README.md ```datasciencecoursera =================== A repo for Coursera's The Data Scientist’s Toolbox ```
4000s/EtsyPillowEntry
4000s/EtsyPillowEntry etsy.py ```import os from selenium import webdriver from selenium.webdriver.common.keys import Keys from time import sleep, time from selenium.webdriver.support.select import Select import pyautogui as pg import pandas as pd import smtplib import xlrd #if any exception is happened, this function...
40206111/set10108
40206111/set10108 atomic-flag.cpp ```#include <iostream> #include <vector> #include <memory> #include <chrono> #include <thread> #include <atomic> using namespace std; using namespace std::chrono; void task(unsigned int id, shared_ptr<atomic_flag> flag) { // Do 10 iterations for (unsigned int i = 0; i < 10; ...
40418210/40418210.github.io
40418210/40418210.github.io README.md ```# 40418210.github.io ```
4080E038/python
4080E038/python Plotting Learning Curves¶.md `````` print(__doc__) import numpy as np import matplotlib.pyplot as plt from sklearn.naive_bayes import GaussianNB from sklearn.svm import SVC from sklearn.datasets import load_digits from sklearn.model_selection import learning_curve from sklearn.model_selection import S...
409H/cryptocurrency-scam-reports
409H/cryptocurrency-scam-reports README.md ```# Domains Reports A bunch of punter.py reports on malicious domains on the EtherAddressLookup blacklist. It is run every midnight. ```
41y08h/proshop
41y08h/proshop Home.js ```import { Row, Col } from "react-bootstrap"; import products from "../products"; import Product from "../components/Product"; export default function Home() { return ( <div> <h1>Latest Products</h1> <Row> {products.map((product, index) => ( <Col key={index}...
420-Beaudoin-Cours/c1atelier1-utilitaires-tableaux-TheRoux04
420-Beaudoin-Cours/c1atelier1-utilitaires-tableaux-TheRoux04 Tableaux.java ```/** * @author France Beaudoin rebe */ public class Tableaux { private static void permute(int[] tab, int i1, int i2){ int transit = tab[i1]; tab[i1] = tab[i2]; tab[i2] = transit; } private static void p...
42Bots/TicTacToe
42Bots/TicTacToe Main.cpp ```#include <iostream> /* cin, cout */ #include <stdio.h> /* printf */ #include <stdlib.h> /* srand, rand */ #include <time.h> /* time */ #include <vector> /* vector */ using namespace std; // Variable declarations int next_move = 5; // "X" = 2; "O" = 5; int next_pl...
42Spikes/sftf
42Spikes/sftf readme.md ```Hi everyone I said I'd post more certs for, I will get to it. I didn't get the time this afternoon. I will try tonight / tomorrow. ```
42alter/skyscraper
42alter/skyscraper skyscraper_solver.c ```#include <unistd.h> #include <stdlib.h> int ft_calcul_view(int *T,int dim) { int max; int i; int view; int t_view; max = T[0]; i = 0; view = 0; //calculat left-view while (i < dim) { if (T[i] > max) { max = T...
44-563-WebApps-F21/webapps-f21-assignment-3-sumant-15
44-563-WebApps-F21/webapps-f21-assignment-3-sumant-15 README.md ```# WebApps-F21-Assignment-3 Assignment 3 - Basic HTML Hosted at https://44-563-webapps-f21.github.io/webapps-f21-assignment-3-sumant-15/ ```
44-563-WebApps-F21/webapps-f21-assignment-6-JAYANTH8084
44-563-WebApps-F21/webapps-f21-assignment-6-JAYANTH8084 README.md ```# WebApps-F21-Assignment-6 Assignment introduction Java Script and DOM <br> [Hosted at](https://44-563-webapps-f21.github.io/webapps-f21-assignment-6-JAYANTH8084/pass.html) <br> [Hosted at](https://44-563-webapps-f21.github.io/webapps-f21-assignment-...
450093854/ctg-demo-service2-caller
450093854/ctg-demo-service2-caller IndexController.java ```package com.example.demo.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * Created by cheney on 2017/6/15. */...
452693688/More
452693688/More MainActivity.java ```package app.gm.com.more; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; public class MainActivity extends AppCompatActivity { @Override...
454400098/UI_snow_clean
454400098/UI_snow_clean urls.py ```from django.conf.urls import url from django.contrib import admin from . import views admin.autodiscover() from django.contrib.auth.views import login urlpatterns = [ #url(r'^$', views.index, name='index'), url(r'^login/$',login,{'template_name': 'snow/login.html'}), url...
456Xander/JRFTL
456Xander/JRFTL RegisterHandler.java ```package at.xander.jrftl.handler; import java.util.ArrayList; import java.util.List; import at.xander.jrftl.JRFTL; import net.minecraft.item.Item; import net.minecraftforge.event.RegistryEvent.Register; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public c...
45722053P/ElTemps
45722053P/ElTemps MainActivityFragment.java ```package com.example.poblenou.eltemps; import android.os.Bundle; import android.support.v4.app.Fragment; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.v...
45cali/seeker
45cali/seeker build.sh ```mkdir seeker cd seeker vagrant init curl https://raw.githubusercontent.com/45cali/seeker/master/config/vagrant/Vagrantfile > Vagrantfile vagrant up``` README.md ```# seeker hostname lookup tool ## docker build curl https://raw.githubusercontent.com/45cali/seeker/master/config/docker/build.sh...
472Riddhi/growbank.github.io
472Riddhi/growbank.github.io README.md ```# growbank.github.io```
478632418/vue-elemnt-ui-site
478632418/vue-elemnt-ui-site README.md ```# vue-elemnt-ui-site vue+element-ui实现的一个后台项目,包含登录,人员、角色、权限。基本上够自己以后弄一个后台时,参考来源使用。本项目根据学习网络教程过程中完成的一个学习项目。 ``` index.js ```import Vue from "vue"; import Router from "vue-router"; import Login from "../views/Login.vue"; import Home from "../views/Home.vue"; import Welcome from "...
496080199/pm
496080199/pm forms.py ```# coding: utf-8 from flask_wtf import Form from wtforms import StringField,PasswordField,IntegerField,TextAreaField,SelectField from wtforms.validators import DataRequired,EqualTo,Length,Regexp from flask_wtf.file import FileField from .models import Course class RegisterForm(Form): ...
4Dager/4DFace
4Dager/4DFace detector.py ```import os import numpy as np import cv2 import dlib import sys print(dlib.__version__) face_file_path = sys.argv[1] out_path = face_file_path +'/out' os.mkdir(out_path) predictor_path = './models/shape_predictor_5_face_landmarks.dat' detector = dlib.get_frontal_face_detector()...
4JD-Studio/Battle-Of-Swords
4JD-Studio/Battle-Of-Swords CharacterSliderController.cs ```using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class CharacterSliderController : MonoBehaviour { public Button PriceButton, PlayButton; public Image CharacterHolder, ProfileImage, Cha...
4L3KP/03.z1
4L3KP/03.z1 Dog.java ```package com.company; public class Dog extends Animal{ public void makeSound(){ System.out.println("Woof. I'm " + name + " and i'm " + color); } } ``` Main.java ```package com.company; public class Main { public static void main(String[] args) { Cat kot = new Ca...
4SS1S/tstetris
4SS1S/tstetris global.d.ts ```declare class GameProps { constructor(canvas: HTMLCanvasElement); } declare class CanvasProps { } interface LevelProps { new (name: string): LevelProps; } type Newable<T> = { new (...args: any[]): T; };``` level.ts ```import Canvas from './canvas' export default class Level exten...
4al16cs070/INHERITANCE
4al16cs070/INHERITANCE Whatsup.java ```package pac; public class Whatsup { void image(int size,String shape) { System.out.println("only image"); } void image(double size,String shape) { System.out.println("output with data"); } } ``` Engine.java ```package pac; public class Engine { String name; double ...
4chen-dev/eclipseDemo
4chen-dev/eclipseDemo TestHelloWorld.java ```package com.chen.test; import com.chen.pojo.User; import com.chen.utils.Cat; import com.chen.utils.Dog; public class TestHelloWorld { public static void main(String[] args) { User user=new User(); user.setAge(20); user.setName("jay"); System.out.prin...
4ernoknijnik/GitProject
4ernoknijnik/GitProject SnakeGame.java ```package pac1; import java.awt.Color; import java.awt.Graphics; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyAdapter; import java.awt.event.KeyEvent; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing....
4mazom8383/Dawson
4mazom8383/Dawson script.js ```/*HIDDEN NAV*/ function now_nav() { var a = document.getElementById("drop_dow"); if(a.style.display === "none") { a.style.display = "flex"; document.getElementById("close_icon").style.display = "block"; document.getElementById("body_bg").style.dis...
4n1k1/self-driving-car
4n1k1/self-driving-car torch_ai.py ```import os import torch from torch import nn from torch import optim from kivy.logger import Logger _HIDDEN_LAYER_NEURONS_COUNT = 30 # this is something to experiment with """ Also called temperature, decreases low softmax values and increases high values. This speeds...
4ngelaMarie/PID-Algorithm
4ngelaMarie/PID-Algorithm PIDFinalVersion.ino ```/* 5/14/18 Angela Almquist Ethan Spaid This code implements a PID algorithm to control an inverted pendulum. */ //Optimal PID Gain Constants for 30ms sampling period double k_p = 1.0; double k_i = 0.6; double k_d = 0.007; int MODE = 0; // 0 == Stablizing // 1 =...
4ntonin/fraction-cpp
4ntonin/fraction-cpp README.md ```# fraction-cpp Code d'entraînement C++ ``` Fraction.h ```#ifndef FRACTION_H #define FRACTION_H #include <iostream> class Fraction { public: Fraction(int numerateur, int denominateur); Fraction(int numerateur); Fraction(); void affiche(std::ostream &flux) const; ...
4orest/Software-for-IPSJ-International-AI-Programming-Contest-SamurAI-Coding-2019-2020
4orest/Software-for-IPSJ-International-AI-Programming-Contest-SamurAI-Coding-2019-2020 gameInfo.hh ```#include <iostream> #include <map> #include <set> using namespace std; struct Cell { int x, y; Cell() {} Cell(int x, int y); Cell(istream &in); bool operator<(const Cell &another) const; bool operator==(...
4realDev/Covid-Buster-9000
4realDev/Covid-Buster-9000 MainActivity.java ```package com.co2team.covidbuster; import android.Manifest; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import androi...
4rlm/mechanizer
4rlm/mechanizer mechanizer.gemspec ``` lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mechanizer/version" Gem::Specification.new do |spec| spec.name = "mechanizer" spec.version = Mechanizer::VERSION spec.authors = ["Adam Booth"] ...
4rslanismet/tas-kagit-makas-oyunu
4rslanismet/tas-kagit-makas-oyunu k_ödev2.java ```import java.util.Scanner ; public class Main { public static void main(String[] args) { int sayac1 , sayac2=0; Scanner Scan=new Scanner(System.in); // kullanıcının tahmini al System.out.println("oyun başlıyor ..."); System.out.println("0-taş ,1-kağ...
4ss0/gas
4ss0/gas gas.py ```#!/usr/bin/python # -*- coding: latin-1 -*- # Codice iniziale degli studenti: Corso Quilici ed Elia Romani # corso di Laboratorio per le applicazioni, matematica, universita' di Firenze # docente: Emanuele Paolini import pygame import random import sys import itertools class Vector(o...
4talesa/apiary
4talesa/apiary README.md ```# apiary tests for apiary and blueprint This is for tests ```
510421964/project
510421964/project README.md ```# project Daily coding ```
510891328/programming-univbasics-4-finding-the-maximum-value-in-an-array-lab-nyc01-seng-ft-082420
510891328/programming-univbasics-4-finding-the-maximum-value-in-an-array-lab-nyc01-seng-ft-082420 finding_the_max_value.rb ```def find_max_value(array) # Add your solution here counter = 0 max = 0 while array[counter] do if array[counter] > max max = array[counter] end counter += 1 end r...
515155968/Staff-management
515155968/Staff-management index.js ```import Vue from 'vue' import Router from 'vue-router' import homepage from '../components/HomePage'//首页 import myVenue from '../components/Venue'//场馆预约 import myReservation from '../components/Reservation/MyReservation'//预约跳转我的预约 import rule from '../components/Reservation/Rule'/...
5208171/LSTButton
5208171/LSTButton Podfile ``` platform :ios, '8.0' target 'LSTButton_Example' do pod 'LSTButton', :path => '../' pod 'Masonry' pod 'LSTCategory', :path => '/Users/losentrad/Desktop/KitNote/Modularization/LSTKit/LSTCategory/LSTCategory' target 'LSTButton_Tests' do inherit! :search_paths end en...
522263718/ice
522263718/ice README.md ```## 迁移至:[ice-lab/react-materials](https://github.com/ice-lab/react-materials)``` README.md ```## 迁移至:[ice-lab/vue-materials](https://github.com/ice-lab/vue-materials)``` README.md ```## 迁移至:[ice-lab/angular-materials](https://github.com/ice-lab/angular-materials)```
52StreetStudio/UX-by-Masis-Garabedian
52StreetStudio/UX-by-Masis-Garabedian README.md ```# UX-by-Masis-Garabedian Human Centered Design Portfolio A showcase of Masis Garabedian User Experience projects. Best, Masis ```
52fancy/Shell-Encrypt
52fancy/Shell-Encrypt Shell.sh ```#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH clear; #========================================================================== Welcome=' ========================================================================== ...
549249174/website
549249174/website README.md ```{"key":"JB_OiIFWFBcp7ctaUd9JZx7ax7C9Q1uS","v":"*","nr":["811127266"],"data":{"t":"1592205396000"}} ```
54lianxi/remote
54lianxi/remote getTodayAds.php ```<?php date_default_timezone_set('PRC'); require_once('init.php'); $sqllink = init(); $dateTime = date('Y-m-d H:i:s'); $sql = "select * from plan where endTime>='".$dateTime."' and beginTime<='".$dateTime."' order by planID desc limit 1"; $result = mysqli_query($sqllink, $sql); $num...
5606595/gongrong
5606595/gongrong index.js ```/** * Created by jorten on 16/4/27. */ (function() { var img = document.querySelectorAll("#lunbo img"); var that = 0; var timer = setInterval(function() { var now = that === 3 ? 0 : that + 1; img[that].style.opacity = 0; img[now].style.opacity = 1; ...
5800LDW/MyApplication
5800LDW/MyApplication TimeUtil.java ```package com.ldw.xyz.util.time; import com.ldw.xyz.util.ExceptionUtil; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.text.SimpleDateFormat; import java.util.Date; /** * Created by LDW10000000 ...
586083/java-streams
586083/java-streams README.md ```# java-streams Demo project for Stream API in java 8 ```
59161146/pokemon-api-router
59161146/pokemon-api-router pokemon.test.js ```import test from "ava"; const MongoDBServer = require("mongomem").MongoDBServer; require("chai").should(); const pokemon = require("../pokemons/pokemon"); test.before("start MongoDBServer", async t => { await MongoDBServer.start(); const dburi = await MongoDBServer....
5h3rr1ll/ratelyy
5h3rr1ll/ratelyy ratelyy.py ```#!/usr/bin/python # -*- coding: UTF-8 -*- #Begrüßung def Welcome(): print("Hallo, ich bin ratelyy, dein Persönlicher Einkaufsassistent.") print("Ich helfe Dir dabei schnell zu erknenn, ob ein Produkt zu Dir passt") print("oder nicht!") print("Um dir zukünftig schnell sa...
5igm4/3140Group1BackBone
5igm4/3140Group1BackBone PlayerGameObject.java ```import java.awt.Point; public class PlayerGameObject extends GameObject{ public PlayerGameObject(Point topLeft, Point bottomRight, int xSpeed, int ySpeed) { super(topLeft,bottomRight,xSpeed,ySpeed); } /** * Initialize object with top corner, height,...
5kg/gentoo-overlay
5kg/gentoo-overlay nolock.c ```#define _GNU_SOURCE #include <fcntl.h> #include <stdarg.h> #include <dlfcn.h> int (*__fcntl__)(int fd, int cmd, ...); __attribute__((constructor)) void nolock_init() { __fcntl__ = dlsym(RTLD_NEXT, "fcntl"); } int fcntl(int fd, int cmd, ...) { va_list ap; long arg; va_s...
5l1v3r1/CMS-FAST-CHECKR
5l1v3r1/CMS-FAST-CHECKR README.md ``` # CMS-FAST-CHECKR (perl) FAST SIMPLE SMOOTH CMS CHECKER Multi thread~ you need to install Parallel::ForkManager<br /> how to install it : <br /> 1- cpan Parallel::ForkManager <br /> 2- move to Parallel-ForkManager directory<br /> 3- perl Makefile.PL && make test && make install or...
5l1v3r1/CyMod
5l1v3r1/CyMod mod.py ```import codecs,base64 htr = [97, 87, 49, 119, 98, 51, 74, 48, 73, 71, 112, 122, 98, 50, 52, 75, 90, 110, 74, 118, 98, 83, 66, 121, 90, 88, 70, 49, 90, 88, 78, 48, 99, 121, 66, 112, 98, 88, 66, 118, 99, 110, 81, 103, 85, 50, 86, 122, 99, 50, 108, 118, 98, 103, 112, 109, 99, 109, 57, 116, 73, 71, ...
5l1v3r1/Malware-Analysis-3
5l1v3r1/Malware-Analysis-3 rc4_decrypter.py ```# This script can be used for malware samples that used Base64+RC4. # python3 rc4_decrypt.py -m 0 -k wfgnzwaunvvy -c 46f9b0b2a143b11129cb93cec218278220771c663a222112 # python3 rc4_decrypt.py -m 1 -c wfgnzwaunvvyNDZmOWIwYjJhMTQzYjExMTI5Y2I5M2NlYzIxODI3ODIyMDc3MWM2NjNhMjIyM...
5l1v3r1/Persistent-Swift
5l1v3r1/Persistent-Swift LinuxMain.swift ```import XCTest import SublimeTextAppScriptPersistenceTests var tests = [XCTestCaseEntry]() tests += SublimeTextAppScriptPersistenceTests.allTests() XCTMain(tests) ``` README.md ```# VimPluginPersistence A description of this package. ``` main.swift ```import Foundation //...
5l1v3r1/Write-Ups-1
5l1v3r1/Write-Ups-1 script.sh ```#!/usr/bin/env bash FLAG=$(file flag.txt) XZ='XZ' EMPTY='empty' BZIP2='bzip2' GZIP='gzip' ZIP='Zip' TEXT='text' while [[ $FLAG != "flag.txt: ASCII text" ]]; do FLAG=$(file flag.txt) if grep -q "$XZ" <<< "$FLAG";then mv flag.txt flag.txt.xz; xz -d flag.txt.xz; eli...
5l1v3r1/Zoom_username_enumeration
5l1v3r1/Zoom_username_enumeration zoom.py ```# Required modules import argparse import requests import json # Just some colors and shit bro white = '\033[97m' green = '\033[1;32m' red = '\033[1;31m' yellow = '\033[1;33m' end = '\033[1;m' info = '\033[1;33m[!]\033[1;m' que = '\033[1;34m[?]\033[1;m' bad = '\033[1;31m[-...
5l1v3r1/centvm-pxeui-php
5l1v3r1/centvm-pxeui-php conn.php ```<?php session_start(); header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); try { $ip = "localhost"; //host $user = "root"; // host id $password = "19742008"; // password...
5l1v3r1/eBay-Kleinanzeigen-Wohnungssuche-Bot
5l1v3r1/eBay-Kleinanzeigen-Wohnungssuche-Bot README.md ```# eBay-Kleinanzeigen Wohnungssuche-Bot (mit SMS Benachrichtigung, Google Sheets, Node.js) Scraped eBay-Kleinanzeigen alle 10 Minuten nach Wohnungen, die deinen Kriterien entsprechen und sendet dir eine SMS um schnell agieren zu können. ## Beschreibung Wohnun...
5l1v3r1/hash-3
5l1v3r1/hash-3 SeatOperations.h ```#ifndef CMPE250_ASSIGNMENT3_SEATOPERATIONS_H #define CMPE250_ASSIGNMENT3_SEATOPERATIONS_H #include <iostream> #include <vector> #include <fstream> using namespace std; class Person{ public: int type=0; int line=0; int seatNumber= -1; int type3LastOperation=0; in...
5l1v3r1/hostbase
5l1v3r1/hostbase README.md ``` ~~~~~~~~~~~~~~~~~~ Hostbase project By Koala @ sécurité-wifi.com @ wifi-libre.com @ kali-linux.fr ~~~~~~~~~~~~~~~~~~ Welcome to the hostbase project// Bienvenido en hostbase// Bienvenu sur le projet hostbase. Official page on: https://www.facebook.com/Rogue-ap-hostbase-785509138309015/...
5l1v3r1/proxy-GR
5l1v3r1/proxy-GR README.md ```# proxy-GR + Massive Proxy Grabber Written by python + This bot grab proxies from everywhere so you can use them. + this bot can grab more than 300K fresh proxies only in 2 min. # INSTALLATION + git clone https://github.com/beneameenth/proxy-GR + cd proxy-GR # INSTALL REQUIREMENTS ...
5nilha/NYCSchools
5nilha/NYCSchools WebServices.swift ```// // WebServices.swift // NYCSchoolsApp // // Created by Fabio Quintanilha on 1/6/20. // Copyright © 2020 FabioQuintanilha. All rights reserved. // import Foundation import Alamofire class Webservices { static func fecthSchools(completion: @escaping ([[String : An...
5o7/rarelustchecker
5o7/rarelustchecker README.md ```# rarelustchecker There is a website called rarelust.com with one url listing over 30,000 obscure movie titles. This program gets rarelust's current index and puts it into a list. Then it checks the movie's imdb duration and adds a 5 minute range. Then search youtube for the movie. Che...
5outh/json
5outh/json README.md ```# json Experiment in JSON exporting and parsing in Haskell ```
5ran6/NOTMidnightRuns-App
5ran6/NOTMidnightRuns-App MainActivity.java ```package app.saasmonsk.mealup; import io.flutter.embedding.android.FlutterActivity; public class MainActivity extends FlutterActivity { } ```
5thWall/LoveShip
5thWall/LoveShip README.md ```# LoveShip This is a simple game written for the [Love2D framework][love] and the [Dream.In.Code][dic] _52 Weeks of Code_ challenges. ## How to use * Download / Install [Love2D][love] * Download source * From command line `love <dir of src>` ## Progress ### What there is so far: *...
5trang3/d3_bar_chart
5trang3/d3_bar_chart index.js ```// API call to retrieve data: d3.json('https://raw.githubusercontent.com/FreeCodeCamp/ProjectReferenceData/master/GDP-data.json').then(json => { // Grab the necessary data: const gdpData = json.data; // Dates are provided as strings formatted as 'year-month-day' and are quarter...
5zurcaledgj/graphql-lesson
5zurcaledgj/graphql-lesson resolver.js ```import { gql } from "apollo-boost"; import { addItemToCart, getItemCount, getTotalPrice, clearItemFromCart, removeItemFromCart } from "./cart.utils.js"; export const typeDef = gql` extend type Item { quantity: Int } extend type User { id: ID! dis...
64kramsystem/nand2tetris-completed
64kramsystem/nand2tetris-completed assembler.rb ```#!/usr/bin/env ruby require 'byebug' require 'English' require 'pp' PREDEFINED_SYMBOLS = { 'R0' => 0, 'R1' => 1, 'R2' => 2, 'R3' => 3, 'R4' => 4, 'R5' => 5, 'R6' => 6, 'R7' => 7, 'R8' => 8, 'R9' => 9, 'R10' => 10, 'R11' => 11, 'R12' => 12, ...
666doge/blog
666doge/blog main.go ```package main import ( "github.com/gin-gonic/gin" "blog/controller" "blog/db" ) func main() { initDb() startService() } func initDb() { dns := "root:xsN231564@tcp(localhost:3306)/blogger?parseTime=true&loc=Local" err := db.Init(dns) if err != nil { panic(err) } } func startService...
672018253/TR_GRAFKOM_B_672018253
672018253/TR_GRAFKOM_B_672018253 README.md ```# TR_GRAFKOM_B_672018253 # Oleh: 672018205-672018253-672018189 # File "main.cpp" merupakan file utama # File "rizz.h" merupakan bagian dari file "main.cpp" yang merupakan satukesatuan ``` rizz.h ```#include <stdio.h> #include <stdlib.h> #include<Windows.h> #include<GL\...
6Mario6/Numero-romanos
6Mario6/Numero-romanos RomanoTest.java ```package test; import static org.junit.Assert.*; import main.Romano; import org.junit.Test; public class RomanoTest { private Romano romano; private String ans; @Test public void getOne() { romano = new Romano(); int i=1; ans= romano.convertIntegerToRoman(i); asser...
6VV/FishController
6VV/FishController ContextUtil.java ```package com.lyyjy.yfyb.fishcontroller; import android.app.Application; /** * Created by Administrator on 2016/9/17. */ public class ContextUtil extends Application{ private static ContextUtil instance; public static ContextUtil getInstance(){ return instance;...
6a16ec/JavaCourseWork
6a16ec/JavaCourseWork TestComplexToString.java ```package tk.semaev.complex; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; public class TestComplexToString { private Complex complex; @Test @DisplayName("Zero") ...
6ertq/Week5
6ertq/Week5 Program.cs ```using System; namespace LoginValidation { class Program { static void Main(string[] args) { string rightUsername = "admin"; string rightPassword = "admin1234"; for (int i = 3; i > 0; i--) { ...
6krecik/autocomplete
6krecik/autocomplete AutocompleteAjaxHelper.php ```<?php class AutocompleteAjaxHelper extends AutocompleteAjaxHelperDb { public function getAjax($object, $function, $fieldName , $fieldId) { if (!defined('_PS_ADMIN_DIR_')) { define('_PS_ADMIN_DIR_', getcwd()); } $query = Too...
6peiweb/okex-v3-client
6peiweb/okex-v3-client app.js ```const { getTicker } = require('./src/okex-v3-api') const { sendMail } = require('./src/mail-smtp') const { app } = require('./src/rest') const PORT = 1113 const WebSocketServer = require('ws').Server const ws = new WebSocketServer({port: 8080}) ws.on('connection', (socket) => { c...