Convert any given animated gif file into an animation in GIFT CSV format

This repo is made to participate in Matt Parker’s XmasTree 2021 event. Convert any given animated gif file into an animation in GIFT CSV format. Convert a Gif: First, run pip3 install -r requirements.txt to install the necessary packages. To convert a gif you will need a CSV file with coordinates of the Xmas tree’s LED lights; Matt Parker’s 2021 coordinates are given in examples/coords_2021.csv. Run this command: python3 convert.py The output will be a CSV file in GIFT format […]

Read more

A WIP Code Generator tool. This is the way

Django Fett is an incomplete code generator used on several projects.This is an attempt to clean it up and make it public for consumption. Django Fett is different because it leverages Frontmatter Metadata and exposes the extra metadata into the template context.Frontmatter Metadata may also contain variables that make setting an output filename cleaner than trying to save file or folder names with Jinja syntax. TODO: Quick start Templates A Fett template is a header of a markdown-like frontmatter and […]

Read more

0xFalcon Tool For Python

Installation Install 0xFalcone Tool: apt install git git clone https://github.com/hassanalharbi123/0xFalcon cd 0xFlacon python3 install.py Usage python3 exploit.py -h Example XSS Tool: python3 exploit.py -u xss -T http://example.com -L list.txt -m GET -n username Windows Reverse Shell: python3 exploit.py -u shell -y exe -I 127.0.0.1 -P 1111 -F payloadexe Subdomains Brute Force: python3 exploit.py -u subdomain -T http://example.com -L list.txtand you can also Brute Force Attack (Files and Folders), Extract Picture metadata. GitHub View Github    

Read more

Putting a Machine Learning Model into Production with Flask and Heroku

La creación de un proyecto de aprendizaje automático en un jupyter notebook ejecutaándose en local para unos datos de entrada controlados es una cosa, pero implementar el modelo como una aplicación web y su posterior puesta en producción como servicio para usuarios en la red es otra cosa muy distinta. Para que un producto basado en el aprendizaje automático tenga éxito, es necesario crear servicios que otros equipos puedan usar o un producto donde los usuarios puedan interactuar. Para ello, […]

Read more

A project that me and my friends created as the CSC110 Final Project at UofT

Introduction The COVID-19 pandemic has caused severe financial stress for many Canadians. A national poll from October of 2020 reported that nearly 1 in 3 Canadians areworried they may never financially recover from the pandemic. Roughlyhalf of Canadians under the age of 35 have borrowed money from institutions tomake ends meet, while roughly the same amount have taken advantage of the Government’s emergency assistance. This is largely due to two major reasons. First, the pandemic drove the unemployment rate as […]

Read more

Run CodeServer on Google Colab using Inlets in less than 60 secs using your own domain

Run CodeServer on Colab using Inlets in less than 60 secs using your own domain. Features Optimized for Inlets/InletsPro Use your own Custom Domain i.e. https://colab.yourdomain.com Quick Deployment Password Protection (Optional) Notebook/CLI Support GDrive Integration Cloud Storage Integration (gcs, s3, minio, etc.) Currently Tested Storage Backends GCP Cloud Storage AWS S3 Minio Installation # From pypi pip install –upgrade inlets-colab # From source pip install –upgrade git+https://github.com/trisongz/inlets-colab Requirements Usage in Colab Notebook    

Read more

A cli based snake game written in Python

Things that I learned in this project: OOP in Python. Clean code. The curses library. How to run the game You need to clone this project and run the run.py file, in src/ folder, with the python interpreter. git clone https://github.com/kevinmarquesp/snake_game cd snake_game/src ./run.py # OR: python3 run.py About the game You can move the snake with arrow keys, vim keys (H, J, K, L) and WASD. Space, Return and O keys do the same thing, they are the confirm […]

Read more

Python Wrapper for interacting with the Flutterwave API

from python_flutterwave import payment payment.token = ‘YOUR_SECRET_KEY’ uri = payment.initiate_payment(tx_ref=”qwerty”, amount=100, redirect_url=’your_callback_url’, payment_options=’mpesa’, customer_email='[email protected]’, customer_phone_number=’0123456789′, currency=’KES’, customer_name=’John Doe’, title=’Demo Payment’, description=’Just pay me…’) print(uri) details = payment.get_payment_details(transaction_id)    

Read more
1 331 332 333 334 335 977