Pomodoro timer that acknowledges the inexorable, infinite passage of time

Pomodouroboros Most pomodoro trackers assume you’re going to start them. But time and tide wait for no one – the great pomodoro of the cosmos is cold and dark, and it goes on forever. For people with ADHD or other executive function disorders, time blindness is common; the inability to notice that time is passing or initiate tasks at an appropriate time. It’s easy to let half the day slip by before starting your first pomodoro. Pomodouroboros’s goal is to: […]

Read more

An exploration of a fantasy world, to autobattle your way to ruling the demesne

Not Quite Paradise 2 (no relation to NQP, I just like the name enough to want to keep it.) Badges! Current position: Quality of last commit: Who dunnit? Design, writing and code by Snayff. Design and writing by PuddingChef. Additional code by DaFluffyPotato. Art by Aleksander Makarov. What is it? A world exploring, army recruiting, auto-battling adventure to take over the kingdom. What’re the terms? (license) In short, code is free to reuse for non-commercial purposes but images are off […]

Read more

Creates Spotify playlists from Spinitron playlists

Creates Spotify playlists from Spinitron playlists. Quick Start You can use spin2spot as a command-line tool: [email protected]:~$ python -m spin2spot https://spinitron.com/WZBC/pl/50067/7DayWknd https://wkdu.org/playlist/32880 Created 2 playlists for user erikcdidriksen. You can also use spin2spot in Python directly: from spin2spot import build_client, create_playlist client = build_client(‘username’) create_playlist(client, ‘http://spinitron.com/radio/playlist.php?station=kwva&playlist=20955’) Prerequsities In order to use spin2spot, you must have the environment variables set up for spotipy as described in their documentation. Command-line flags spin2spot accepts URLs as positional arguments. It also takes two optional […]

Read more

A python tool that periodically collects a list of resources in cloud accounts

Cloudkeeper Cloudkeeper is a standalone CLI tool that periodically collects a list of resources in cloud accounts, provides metrics about them, and can clean them up. If you ever had a standstill in your CI pipeline because a broken job leaked cloud resources which triggered a quota limit wanted to find all the places an expired certificate is used in had to change the tags of thousands of EC2 instances at once needed to delete all unused EBS volumes that […]

Read more

Twitter feed of newly published articles in Limnology

limnopapers Code to monitor limnology RSS feeds and tweet new articles. Scope The keywords and journal choices herein aim to focus on limnology (the study of inland waters). They are also meant to exclude related topics such as fisheries ecology, water resources engineering, estuarine/marine ecology, ecological genetics, and the study of specific “inland seas” like the North American Great Lakes. Feel free to weigh-in in the repository issues on scope recommendations! Usage Query papers that came out prior to today […]

Read more

A powerful, fast and simple Telegram userbot written in Python 3

Telecharm userbot A powerful, fast and simple Telegram userbot written in Python 3 and based on Pyrogram 1.X. Currently in active WIP state, so feel free to contribute. Starting up Ensure you have installed the Python 3.8 or above before proceeding. Preparations Git clone this repo. git clone https://github.com/WhiteMemory99/telecharm-userbot.git Visit https://my.telegram.org/apps to get your own api_id and api_hash. Rename .env.dist to .env and open it. Edit .env file: fill in your api_id, api_hash. Docker deployment Make sure you have docker. […]

Read more

Additional tools for particle accelerator data analysis and machine information

This package is a collection of useful scripts and tools for the Optics Measurements and Corrections group (OMC) at CERN. Documentation Getting Started This package is Python 3.7+ compatible, and can be installed through pip: pip install pylhc One can also install from VCS: git clone https://github.com/pylhc/PyLHC pip install /path/to/PyLHC Or simply from the online master branch, which is stable: pip install git+https://github.com/pylhc/PyLHC.git#egg=pylhc After installing, scripts can be run with either python -m pylhc.SCRIPT –FLAG ARGUMENT or by calling the […]

Read more

An autoregressive model that relies solely on shifting along the sequence dimension

Token Shift GPT Implementation of Token Shift GPT – An autoregressive model that relies solely on shifting along the sequence dimension and feedforwards. Update: Inexplicably, it actually works quite well. The feedforward module follows the same design as gMLP, except the feature dimension of the gate tensor is divided up into log2(seq_len) chunks, and the mean pool of the past consecutive segments (length 1, 2, 4, 8, etc. into the past) are shifted into each chunk before a projection along […]

Read more

Open-sourced speech technology by Huawei Noah’s Ark Lab

Speech-Backbones This is the main repository of open-sourced speech technology by Huawei Noah’s Ark Lab. Grad-TTS Official implementation of the Grad-TTS model based on Diffusion Probabilistic Modelling. For all details check out our paper accepted to ICML 2021 via this link. Authors: Vadim Popov*, Ivan Vovk*, Vladimir Gogoryan, Tasnima Sadekova, Mikhail Kudinov. *Equal contribution. GitHub https://github.com/huawei-noah/Speech-Backbones    

Read more

Analog clock that shows the weather instead of the actual numerical hour it points to

Eli’s weatherClock An digital analog clock but instead of showing the hours, the clock shows the weather at that hour of the day. So instead of showing 1, it will show the weather forecast for 1AM/PM. Click on the hour for more detailed information such as wind, precipitation and more. Once in the detailed view, simply click the center again to return to the analog clock face. You will need to: Acquire Pi Zero W and a Pimoroni 4″ touchscreen […]

Read more
1 506 507 508 509 510 939