A BlockChain Based solution for storing the medical records

đź“„Abstract Blockchain has the ability to keep an incorruptible, decentralized, and transparent log of all patient data makes it a technology rife for security applications. Additionally, while blockchain is transparent it is also private, concealing the identity of any individual with complex and secure codes that can protect the sensitivity of medical data. The decentralized nature of the technology also allows patients, doctors, and healthcare providers to share the same information quickly and safely. 🗒️Introduction This project effectively stores the […]

Read more

Course Materials for Math 340

This repository aims to be the one repository for which you can find everything you about Math 340. Lecture Notes Lecture Notes are contained in notes.md. To view it, Visual Studio Code or alternative markdown editors that support math equation can be used. It is currently incomplete and PR is welcomed to add details to the lecture note. Practice Questions This repository aims to contain practice questions & solutions by course topic. Each different topic would have its own folder, […]

Read more

A converter for the .BMR / .RLE bitmap files used in some Neversoft PS1 games

python3 pyqt5 – can be installed with pip install PyQt5 pypng – Included This program can be running py main.py in the directory it is extracted to. Then, simply select the folder containing the RLE / BMR files you wish to extract the textures from, and the folder to output the images to. Images will be output as PNGs. The program is single threaded and will freeze while extraction is ongoing. The Dreamcast version of Spider-Man uses a different format […]

Read more

Cave Generation using metaballs in Blender

Cave Generation using metaballs in Blender. Originally created by sdfgeoff, Edited by Myself (Archie Jaskowicz). Installation To install this plugin, download the python script and open blender. Then go to “Edit -> Preferences -> Add-ons -> Install”. Then navigate to the python script and click “install Add-on”. Once that’s added, search for CaveGen in the search bar (located under “Install” at the top right of Preferences), make sure the “Community” box is on (shift-click it) and the enable “CaveGen” by […]

Read more

Collections of pydantic models

The pydantic-collections package provides BaseCollectionModel class that allows youto manipulate collections of pydantic models(and any other types supported by pydantic). Requirements Python >= 3.7 pydantic >= 1.8.2 Installation pip install pydantic-collections Usage Basic usage

Read more

A python library for anti-captcha.com

A python library for anti-captcha.com Documentation for the API Requirements Install git clone https://github.com/ShayBox/AntiCaptcha.git cd AntiCaptcha $ poetry build $ pip install dist/AntiCaptcha-0.1.0.tar.gz –user Usage from anticaptcha import AntiCaptcha captcha = AntiCaptcha(“API KEY”) captcha.solve({“TASK”: “OBJECT”}) GitHub View Github    

Read more

A telegram bot to monitor the latest NFT price on BSC

This is a telegram bot for monitoring price and ranking of NFT on Binance Smart Chain. Can fetch latest ranking and price in real time. .Pancake_NFT/nft-web3.py: Main file to fetch transaction and log through web3. .Pancake_NFT/pancake_nft.py: Original version to fetch log from bscscan. Now aborted. 0x00 Requirement Available for Python3.8+, recommend to use virtualenv to run this project. python-telegram-bot==13.7 web3==5.24.0 0x01 Usage Modify configuration in config.py TEST_BOT_TOKEN : tgbot token of test environment PROD_BOT_TOKEN: tgbot token of produce environment COLLECTION_CONTRACT_ADDRESS: […]

Read more
1 11 12 13 14 15 50