The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other

The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, following is a solution for 8 Queen problem. The 8 queens problem is simple. On an 8×8 chess board, the queen can move any number of squares horizontally, vertically, and diagonally. Normally, there is one queen per side on the board but for this problem, there are 8. This can be generalized to N queens […]

Read more

A project to find out all the words in a crossword

Solves a sqare(nxn) crossword puzzle. Running Requirements Steps Download the file https://github.com/FumaxIN/Crossword-Solver.git Switch to the directory Run the command How it works Enter the order of crossword(n). Enter each character individualy Crossword table ccreated All the words are now listed Example: boyboyobattreecattontinratoxoatoptopoozyfiz As this is just a side project to practice pandas and numpy, this may not be very efficient and comes with some constraints: Diagonally it can only find one word per diagonal. Diagonal search is limited to Left […]

Read more

Simple daily reminder about upcoming Ramadhan

Simple bot for displaying daily reminder about Islamic praying, especially regarding month of Ramadhan. Technology Stack License The MIT License (MIT) Copyright © 2022 RamadhanCountdown Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom […]

Read more

A python program to implement Multiple Linear Regression using the LinearRegression class from sklearn.linear_model library

A very simple python program to implement Multiple Linear Regression using the LinearRegression class from sklearn.linear_model library. The program also does Backward Elimination to determine the best independent variables to fit into the regressor object of the LinearRegression class. The program uses the statsmodels.formula.api library to get the P values of the independent variables. The variables with P values greater than the significant value ( which was set to 0.05 ) are removed. The process is continued till variables with […]

Read more

Create artistic visualisations with your exercise data (Python version)

Create artistic visualisations with your exercise data (Python version). This is a port of the R strava package to Python. Examples Facets A plot of activities as small multiples. The concept behind this plot was originally inspired by Sisu. How to use Bulk export from Strava The process for downloading data is described on the Strava website here: [https://support.strava.com/hc/en-us/articles/216918437-Exporting-your-Data-and-Bulk-Export], but in essence, do the following: Log in to Strava Select “Settings” from the main drop-down menu at top right of […]

Read more

Lecture transcript question extraction

Setup virtualenv venv source venv/bin/activate pip install -r requirements.txt For the “Lecture Transcript Extractor” see the separate readme Formatting We use black Updateing DB rm db.sqlite3 rm -r seapanapp/migrations/ ./manage.py makemigrations seapanapp ./manage.py migrate python extract_questions.py Generating files python save_counts.py python extract_questions.py GitHub View Github    

Read more

Running performance calculator

👉 Have you ever wondered if you ran 10km at 2000m altitude, how fast would you ran the same distance at lower altitudes? How would elevation gain and temperature affect your performance? 🤔 👉 The goal of this application is to calculate how your running pace and time would change given different elevation gain, altitude and temperature. Try it out: https://share.streamlit.io/davide97l/running-performance-calculator/main Features Support for default or custom distances Compute pace and time according to elevation gain, altitude and temperature Clean […]

Read more

Continuously perform deauthentication attacks on all detectable stations

Continuously perform deauthentication attacks on all detectable stations. DISCLAIMER: I am not responsible for the misuse of this software for illicit purposes. Remember: with great power comes great responsibility. Pre-requisites Python 3 Debian-based Linux (preferably Kali Linux) Wi-fi adapter that supports monitor mode The following utilities are utilized: airodump-ng aireplay-ng airmon-ng Parameters IFACE: name of the wi-fi interface airodump_output: name of the output .csv file for monitoring num_packets: number of deauthentication packets sent to the target Usage Just run python3 […]

Read more

A Multi-Tool with 30+Options

・[Lines] = 2.8kFull Changelog: https://github.com/Mervin240/Leaker-Nuker/commits Discord ・ Leaker-Nuker was made for Educational purposes ・ This project was created only for good purposes and personal use. ・ By using Leaker-Nuker, you agree that you hold responsibility and accountability of any consequences caused by your actions. Owner    

Read more
1 235 236 237 238 239 927