Check if you have training samples in your test set

Did you manage to spill samples from your train set to your test set? from did_it_spill import check_spill spills = check_spill(train_loader, test_loader) print(f”You have {len(spills)} spills in your test set!”) The library computes hashes of your data to determine if you have samples spilled over from your train set to test set. Currently only for PyTorch. Installation Outputs Function outputs a list of tuples. Each tuple corresponds to a leak. The first index is where in the first loader the […]

Read more

METU Auto Capacity Checker

class_code string Class code e.g. 201 (Circuit 1) department_code string Department code e.g. 567 (Electrical Electronics Engineering) driver_path string Chromedriver or Firefox Driver path refresh_rate int Refresh rate for checker in seconds e.g. 5 section_no int Section no e.g. 1 semester string Semester code e.g. 20212 (2021-2022 Spring) voice_feedback bool True if you want voice feedback. Tested only on macOS    

Read more

A Fast Proxy Checker In Python

The World’s Most Fastest Proxy Checker In Python, Maybe?! Features Based on Python 3.7+ Save Valid Porixes into the custom file Multi-Thread Fully Asynchronous Supported Proxy Types: HTTP – SOCKS4 – SOCKS5 Customize Connection Timeout Customize Process Timeout (to Avoid freezing) Test All Proxies with https://google.com Quick start

Read more

Check broken access control exists in the Java web application

Check broken access control exists in the Java web application. 检查 Java Web 应用程序中是否存在访问控制绕过问题。 python3 javaEeAccessControlCheck.py “http://127.0.0.1/admin/index?id=1” python3 javaEeAccessControlCheck.py “http://127.0.0.1/admin/index” -data id=1 python3 javaEeAccessControlCheck.py “http://127.0.0.1/admin/index” -data-json ‘{“id”:1}’ python3 javaEeAccessControlCheck.py “http://127.0.0.1/admin/index?id=1” -all python3 javaEeAccessControlCheck.py “http://127.0.0.1/admin/index” -data-json ‘{“id”:1}’ -all [GET]自动判断/Automatic judgment [GET]所有Payload长度/All Response Length [POST]自动判断/Automatic judgment [POST]所有Payload长度/All Response Length

Read more

Generates Windows 95 and 95 OEM keys using the modulus 7 check algorithm

windowskeygen.py – Generates Windows 95 and 95 OEM keys using the modulus 7 check algorithm Just download and drop in the directory you are using for the script you’re currently writing, or drop it in your python module directory to call it from anywhere.Then just import the function as one does normally. keygen95() – Generates a retail 95 key that works on all 95 era software, not just the OS. keygen95oem() – Generates an OEM 95 key. Some example uses: […]

Read more

A model checker for verifying properties in epistemic models

This is a model checker for verifying properties in epistemic models.The goal of the model checker is to check for Pluralistic Ignorace in complex scenarios and to probe its robustness.The motivation is based on the content of the paper [1]. Run the model checker by running run.py file using your favorite Python interpreter.This file takes two arguments, a model file and an epistemic logic formula: python run.py model_file.em “(~p) / p” Model file format: {states} {agents} {agent}:({state}

Read more

McCabe complexity checker for Python

Ned’s script to check McCabe complexity. This module provides a plugin for flake8, the Python code checker. Installation You can install, upgrade, or uninstall mccabe with these commands: $ pip install mccabe $ pip install –upgrade mccabe $ pip uninstall mccabe Standalone script The complexity checker can be used directly: $ python -m mccabe –min 5 mccabe.py (“185:1: ‘PathGraphingAstVisitor.visitIf'”, 5) (“71:1: ‘PathGraph.to_dot'”, 5) (“245:1: ‘McCabeChecker.run'”, 5) (“283:1: ‘main'”, 7) (“203:1: ‘PathGraphingAstVisitor.visitTryExcept'”, 5) (“257:1: ‘get_code_complexity'”, 5) Plugin for Flake8 When both […]

Read more

A (probably) working Kik name checker

!THIS ONLY CHECKS WS2.KIK.COM ENDPOINT! Will add user inputted endpoints thing A (probably) working Kik name checker Started as a supposedly simple project,ended up taking multiple hours because I may have autism. Don’t know how Kik works but it takes a name from usernames.txt and goes to ws2.kik.com/user/{username}, if it returns a 404, it is a valid user. GitHub View Github    

Read more

Bin-Checker CLI With Python

termplotlibtermplotlib is a Python library for all your terminal plotting needs. It aims to work like matplotlib. Line plotsFor line plots, termplotlib relies on gnuplot. With that installed, the code import termplotlib as 23 September 2021    

Read more
1 2