A python script to generate a random Euler circuit with given number of vertices and edges

An okayish python script to generate a random Euler circuit with given number of vertices and edges. Executing the Script Just download or copy the code in testcasegen.py,use your python IDE or terminal to run the script and give the number of vertices and edges as asked.The output is generated in the input format specified by the assignment along with one of the possible outputs for the assignment program. Very Very Important⭐ ⭐ ⭐ The program will run into infinite […]

Read more

A python script generates a text file with insert queries for the schema.sql file of the assignment

This is python script generates a text file with insert queries for the schema.sql file of the assignment. DISCLAIMER: I have no idea how the actual datasets should look, this is only my idea of how it could look. I take no responsibly if this dataset is not nearly similar of how the assignment will actually be graded Running this script: Install require packages with: pip install -r requirements.txt Then run: Enjoy the results on insert_queries.txt Collaborate: Hey guys please […]

Read more

An improved version of the common ˙pacman -S˙

An improved version of the common pacman -S. Installation I know that this is probably one of the worst solutions and i will be working on a better one. But for now Clone the repo Paste this into your .zshrc or .bashrc but change the path pmlook() { if [ $# -ne 1 ]; then pacman -Ss “$1” | python ~/path/of/main.py “$2” else pacman -Ss “$1” | python ~/path/of/main.py fi } Now just close and open the console Testing

Read more

Cleaner script to normalize knock’s output EPUBs

The excellent knock application by Benton Edmondson outputs EPUBs that seem to be DRM-free. However, if you run the application twice on the same ACSM file, the hashes do not match. This script normalizes EPUB files, and it is specifically written to normalize the output files of knock. It strips away all the differences between different EPUB files for the same book. Usage ./clean-epub.py -i input.epub -o output.epub Details In essence, it does this: Create a temporary directory, and unzip […]

Read more

Repo used to maintain all notes and scripts developed during my DevNet Expert studies

Exam Date: TBD (Waiting for registration to open) This repository will be used to track my progress and maintain all notes/scripts/apps developed during my Cisco DevNet Expert studies.Along with labbing, I’ll also be reading a few books to prepare for the DevNet Expert Lab exam. I am providing a list of the books I’mreading below, and will be checking them off as I knock them out. I’ll also be using plenty of online resources and will try to includelinks to […]

Read more

VHDL to Discrete Logic on PCB Flow

Highly experimental set of scripts to transform a digital circuit described in a hardware description language (VHDL or Verilog) into a discrete transistor circuit on a PCB. (Disclaimer: I don’t know what I am doing) Makes use of: GHDL Yosys ABC GTKView NGspice PCBPlace – my own P&R tool written in Python Freerouting (Optional) Eagle (Optional) EasyEDA (Optional) Should work in a Linux shell. I am currently using WSL2. For details see Project logs on HaD.io Flow Architecture GitHub View […]

Read more

Script to remap minecraft 1.12 java classes

Script to remap minecraft 1.12 java classes. Usage You must have Python installed. You must have the script, mappings, and files / folders in the same directory. Run Script.py and it will begin to remap the files. Can I use this with other minecraft versions? Absolutely! If you replace the 1.12 mappings with another version and run the script, it can also remap other minecraft versions java classes. GitHub View Github    

Read more

K-Nearest Neighbors and Random Forrest Regressors on Real World data

My project contrasts K-Nearest Neighbors and Random Forrest Regressors on Real World data In many areas, rental bikes have been launched to improve accessibility ease. It is important to have the rented bike ready and open to the public at the appropriate time, as this reduces the amount of time people have to wait. Eventually, ensuring a steady supply of rented bikes for the area becomes a big concern. The most important aspect is predicting the number of rental bikes […]

Read more

A python program to cut longer MP3 files into the individual tracks

I’m writing a python script to cut longer MP3 files (i.e. recordings of several songs) into the individual tracks called ReCut. So far there are two versions of the program: First, there is a compiled .exe program which should run on most devices.One tiny problem: The .exe is too big to upload it here. I’ll see if I can fix this, but until then, I’ve uploaded it on Google Drive: There also is a python script version (.py) which you […]

Read more
1 11 12 13 14 15 18