A note taking app with python

A simple note-taking app. Think ‘sticky notes’ but slightly more organized. A place for all of your quick notes, reminders, or lists. All viewable in a single, unobtrusive interface and stored locally. Made using tkinter. Installation Either download the pre-packaged exe here, Or package yourself using pyinstaller main.py -w , source code on github, Or run main.py file. May also run the CLI by running the rubicon_reminders_cli file. Note that these programs do not share notes between eachother. GitHub View […]

Read more

Tic-Tac-Toe game in python

This game is very popular amongst all of us and even fun to build as a Python project. I am pretty sure most of us know how to play it but let me give a quick brush up. It is a two-player game and consists of a nine-square grid. Each player chooses their move and with O or X and marks their square one at each chance. The player who succeeds in making their marks all in one line whether […]

Read more

Generates a shortened URL link or a QR code with color and shape options

Generates a shortened URL link or a QR code with color and shape options When you execute the main file, it asks a URL and then you choose if you want to generate a shortened url or a QR Code with it. Shorter URLs are copied direct to clipboard (or to a txt file, if you uncomment the shortener_saver function in ‘urlshortener.py’ and add it into the main function) QR Code options are the colors (using tk color picker) and […]

Read more

Google Classroom Discord.py Bot

(Working in progress) Current progress: function to retrieve to-do assignments bot command to send the assignment list improvements on the speed of the assignments command bot command to get the timetable … Commands: ( Bot prefix: $ ) test The bot will reply with ‘test’.For testing purposes. assignments Get assignment listsTakes around 1 minute to run Set-up requires: Google API OAuth2 Token (stored as ./credentials.json) discord bot (token stored in ./secrets.json) // secrets.json {“token”:”yourTokenHere”} To get google api credentials: Visit […]

Read more

Tic-Tac-Toe Game in python3 Tkinter

Tic-Tac-Toe Game in python3 Tkinter About: Tic Tac Toe or Noughts and Crosses as called in British is a pencil and paper game for two player. The player who succed in placing three of their marks in a single line either horizontally, vertically or diagonally wins the game. In this Repository I make the game using Tkinter in Python. Here two human are playing against each other and the first one to go gets “X” and the second one gets […]

Read more

A minimal and open-source discord.py boilerplate for kick starting bot projects

A minimal and open-source discord.py boilerplate for kick-starting bot projects. I spend a lot of time developing bots for different communities on discord, and I find myself constantly rewriting the same basic boilerplate for each project. After searching for an existing template with no luck, I decided to write my own that’ll suit any type of application. So this repository includes an all inclusive bare-bones boilerplate for discord.py bot development that you can use as a basic skeleton for your […]

Read more

Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently

This repository is the official implementation for the following paper Analytic-LISTA networks proposed in the following paper: “Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently” by Xiaohan Chen, Jason Zhang and Zhangyang Wang from the VITA Research Group. The code implements the Peek-a-Boo (PaB) algorithm for various convolutional networks and is tested in Linux environment with Python: 3.7.2, PyTorch 1.7.0+. Getting Started Dependency Prerequisites Python 3.7+ PyTorch 1.7.0+ tqdm Data Preparation […]

Read more

Workflow and Template Toolkit for Simulation (WATTS)

WATTS (Workflow and Template Toolkit for Simulation) provides a set of Python classes that can manage simulation workflows for multiple codes where information is exchanged at a coarse level. For each code, input files rely on placeholder values that are filled in based on a set of user-defined parameters. WATTS is being developed with support from Argonne National Laboratory. For any questions, please contact [email protected]. Installation git clone cd watts pip install -U pip pip install . Documentation To build […]

Read more
1 279 280 281 282 283 946