Agile SVG maker for python

Need to draw hundreds of frames for a GIF? Need to change the style of all pictures in a PPT? Need to draw similar images with different parameters? Try ASVG! Under construction, not so agile yet… Basically aimed at academic illustrations. Simple Example

Read more

Itchio Downloader Tool with python

Install pip install git+https://github.com/emersont1/itchio Download All Games in library from account python -m itchio.downloader This uses the same API the itchio app uses to download the files. If you have 2FA enabled, generate an API key here and run the following instead python -m itchio.downloader –api-key=KEYHERE Add All Games in a bundle to your library python -m itchio.downloader This is a bit of a bodge, but it works. It essentially    

Read more

A multi-password‌ cracking tool that can help you hack facebook accounts very quickly

This is a multi-password‌ cracking tool that can help you hack facebook accounts very quickly. Installation On Termux $ apt update $ apt upgrade $ pkg install git $ pkg install python $ pkg install python2 $ pip2 install requests $ pip2 install mechanize $ git clone https://github.com/RedHackkErR/FbCracker.git $ cd FbCracker $ ls $ chmod +x * $ python2 RedTool.py Tool Installation successful Username –    

Read more

Powered by the Will?: Themes in online discussions of Fitness

This repo includes tools for Subreddit analysis, originally developed for our class project of PSYC 626 in USC, titled “Powered by the Will?: Themes in online discussions of Fitness”. Installation and Requirements You need to use Python 3.9, R 4.1.0 and git basically to run the scripts provided in this repo. For Ubuntu, to install essential dependencies: sudo apt update sudo apt install git python3.9 python3-pip pip3 install virtualenv Now clone this repo: git clone https://github.com/gchochla/subreddit-analysis cd subreddit-analysis Create and […]

Read more

CDTrans: Cross-domain Transformer for Unsupervised Domain Adaptation

Introduction Unsupervised domain adaptation (UDA) aims to transfer knowledge learned from a labeled source domain to a different unlabeled target domain. Most existing UDA methods focus on learning domain-invariant feature representation, either from the domain level or category level, using convolution neural networks (CNNs)-based frameworks. With the success of Transformer in various tasks, we find that the cross-attention in Transformer is robust to the noisy input pairs for better feature alignment, thus in this paper Transformer is adopted for the […]

Read more

Fills out the container extension form automatically. (Specific to IIT Ropar)

Fills out the container extension form automatically. (Specific to IIT Ropar) Download the chrome driver from the website below (make sure your google chrome browser and chrome driver version is same) Link: https://chromedriver.chromium.org/ Steps: Extract the zip file.Store the extracted directory and main.py file at same level (depth). Eg. – dir1 |-> chromedriver.zip |-> chromedriver (zip extracted directory) |-> main.py Step for setting up the conda environment: conda create –name container python=3.6 conda activate container pip install selenium conda install […]

Read more

A secure password generator written in python

The secure password generator Built with the rich python library NOTE: This is a WIP, its not finished and needs lots of work Installation With git git clone https://github.com/Mattio-cmd/spg cd spg/src chmod +x spg.py ./spg.py If you want to use this program anywhere on your system just type the following command (with root priviledges):cp spg.py /usr/bin With pip pip3 install passgpypip3 install rich For clipboard support (optional)pip3 install pyperclip Dependencies xclip (optional) It is needed for copying the password automatically. […]

Read more

A CLI Password Manager made using Python and Postgresql database

A CLI Password Manager made using Python and Postgresql database. Quick Start Guide First Clone The Project git clone https://github.com/Imira-S-R/PasswordManagerCLI Change The Direcory cd PasswordManagerCLI Run setup.py for first time users python setup.py After that run main.py python main.py About This is a simple & free password manager made using python that you can use to store    

Read more

Boilerplate template for the discord-py-interactions library

Boilerplate template for the discord-py-interactions library Currently, this boilerplate supports discord-py-interactions==3.0.2 but will be updated for future version later on. To switch to a different version, check the branches main.py: A custom, dynamic cog loader is present. Write a cog following the template.py in /cogs/, place it in the /cogs/ directory, and it will automatically be loaded when the bot boots. Utilizes the logging library and implements an easy to use custom logger and formatter. All you need to do […]

Read more

Ensembling Off-the-shelf Models for GAN Training

video (3m) | website | paper Can the collective knowledge from a large bank of pretrained vision models be leveraged to improve GAN training? If so, with so many models to choose from, which one(s) should be selected, and in what manner are they most effective? We find that pretrained computer vision models can significantly improve performance when used in an ensemble of discriminators. We propose an effective selection mechanism, by probing the linear separability between real and fake samples […]

Read more
1 323 324 325 326 327 935