Flashback is an awesome, retro IRC based app built using Django

Flashback is an awesome, retro IRC based app built using Django (and the Django Rest Framework) for the backend as well as React for the frontend! This project was made during the Summer Code Jam 2020. How to use Once you login or sign up to Flashback, you have access to the terminal! Here you run a few commands. You can connect to group chats, which allow you to contact chat with other Flashback users. You can also create your […]

Read more

Telegram hack bot [ For Dev ]

Dev – Alison Parker :: Telegram hack bot [ For Dev ] How to Install #———- —–Enjoy #Version 1.0 ::::: sudo -H pip install –upgrade youtube-dl sudo apt-get install -y libav-tools git clone https://github.com/red-alison/Hackbot.git cd Hackbot pip install lxml pip install telepot pip install urllib2 pip install requests pip install bs4 pip install wikipedia apt-get install youtube-dl -y pip install youtube-dl -U cd Hackbot echo APIKEY > api.txt python Hackbot.py GitHub – RED-ALISON/Hackbot at pythonawesome.com Telegram hack bot [ For […]

Read more

A simple project to explore the number of GCs when doing basic ORM work

YES, OMG YES. Check this out Python Default GC Settings: SQLAlchemy – 20,000 records in one query 1,859 GCs 908ms 78.7 MB mem MongoDB – 20,000 records in one query 463 GCs 593ms 75.8 MB mem Talk Python-optimized GC Settings: SQLAlchemy – 20,000 records in one query: 29 GCs (64x improvement) 695ms (23% improvement) 76.8 MB mem (surprisingly: 2% improvement with less GC) MongoDB – 20,000 records in one query 10 GCs (46x improvement) 515ms (13%) 72.3 MB mem (surprisingly: […]

Read more

Flask app + (html+css+ajax) contain ability add employee and place where employee work – plant or salon

#Manage your employees! With all employee information stored in one place, you no longer have to sift through hoards of spreadsheets to manually search and enter data. Just enter data once, and use it across all web platform. App contain ability add employee and place where employee work – plant or salon Firstly, employee must be log in. Use email and password which contains hashing in database. Otherwise, information can not edit. If you successfully log in freely use application.

Read more

A web interface for a soft serve Git server

Soft Sevre is a very nice git server. It offers a really nice TUI to browse the repositories on the server. Unfortunately, it does not offers a web interface. Here, I want to try to make a tiny web interface to present the git server and list the repositories there. Configuration To tell the web server what files to monitor and how to login to the Soft Serve server, a JSON configuration file is needed. The JSON file needs the […]

Read more

Pass2Pwn: a simple python3 tool created to assist penetration testers generate possible passwords

Pass2Pwn is a simple python3 tool created to assist penetration testers generate possible passwords for a targeted system based solely on the organization’s name. Although Pass2Pwn does not have the capacity to generate as many passwords as other tools, I have attempted to implement a mechanism that generates passwords using the most common password pattern that we notice in general, which is correlated to the organization name. GitHub View Github    

Read more

A minimalist starknet amm adapted from StarkWare’s amm

A minimalist starknet amm adapted from StarkWare’s amm. Directory Structure contracts ├─ amm — “Single liquidity pool instance” tests ├─ test_amm – “Test amm” Installation First time? Further installation instructions provided in the cairo-lang docs Before installing Cairo on your machine, you need to install gmp: sudo apt install -y libgmp3-dev # linux brew install gmp # mac If you have any troubles installing    

Read more

Collection of useful command line utilities and snippets to help you organise your workspace and improve workflow

Utility library Scripts To install scripts into your bin folder, simply run: Note that this requires you to either add ~/.local/bin to path, or specify a custom bin path (e.g. sudo python install.py /usr/bin). This will simply copy all scripts to that directory without their .py extension. Clone If you ever needed to quickly clone 3rd party git repositories or simply structure your current repositories, you’ll definitely find this utility useful. This utility allows you to automatically organise your repositories […]

Read more

The deployment of Swin-Transformer based on TensorRT, including the test results of FP16 and INT8

This project aims to explore the deployment of SwinTransformer based on TensorRT, including the test results of FP16 and INT8. Introduction(Quoted from the Original Project ) Swin Transformer original github repo (the name Swin stands for Shifted window) is initially described in arxiv, which capably serves as a general-purpose backbone for computer vision. It is basically a hierarchical Transformer whose representation is computed with shifted windows. The shifted windowing scheme brings greater efficiency by limiting self-attention computation to non-overlapping local […]

Read more
1 297 298 299 300 301 916