SystemSix: An e-Ink desk accessory running on a Raspberry Pi

SystemSix is an e-Ink “desk accessory” running on a Raspberry Pi. It is a bit of nostalgia that can function as a calendar, display the weather, the current phase of the moon or just be generally fun to look at. To be clear, despite how it looks, it is not interactive. It changes every day to display a new “desktop”, will update to show local weather, your calendar events, phase of the moon. But you cannot click on it. It […]

Read more

Python Timer Functions: Three Ways to Monitor Your Code

Look back at how you added the Python timer to the example above. Note that you need at least one variable (tic) to store the state of the Python timer before you download the tutorial. After studying the code a little, you might also note that the three highlighted lines are added only for timing purposes! Now, you’ll create a class that does the same as your manual calls to perf_counter(), but in a more readable and consistent manner. Throughout […]

Read more

Custom 2d Game Engine developed for Machine Learning Testing

This package provides a light weight and fast game engine developed specifically for rapid game design and protyping. This project was created by ColinTF and it is currently in the developement phase and now released have been made. Requirments PyOpenGl The opengl package we use pip install PyOpenGL PyOpenGL_accelerate or download it here and install with pip install [the name .whl file] Grab the python 3.10 version of the non accelerate version for your correct system pyGLFW The package we […]

Read more

A torch implementation of a recursion which turns out to be useful for RNN-T

This project implements a method for faster and more memory-efficient RNN-T loss computation, called pruned rnnt. Note: There is also a fast RNN-T loss implementation in k2 project, which shares the same code here. We make fast_rnnt a stand-alone project in case someone wants only this rnnt loss. How does the pruned-rnnt work ? We first obtain pruning bounds for the RNN-T recursion using a simple joiner network that is just an addition of the encoder and decoder, then we […]

Read more

An auto discord account and token generator. Automatically verifies the phone number

JOIN OUR DISCORD SERVER: https://discord.gg/79auywusZf An auto discord token generator. Auto verifies phone number but not email. Still working on it. put your capmonster key in main.py and your onlinesim.ru key in main.py. capmonster is for hcaptcha solve and onlinesim.ru is for phone verfication. class Settings: capmonster = “capmonster-key” onlinesimru = “” if didn’t install the package, do pip3 install package Each token costs around 0.15$, you can sell it for 0.3$. idc or you can make a botter that […]

Read more

List of all dependencies affected by node-ipc malicious commit

List of all dependencies affected by node-ipc malicious commit Please improve upon this, it’s a one time thing i’ve done on a whim Use ctrl+F to search ripped from: https://www.npmjs.com/package/node-ipc note: this is not a list of all software affected by node-ipc, that list might be exponentially larger, someoner smarter and more skilled than me should go find out how exactly to map this all out feel free to suggest any more links I’m currently a year 1 semester 2 […]

Read more

Gives the card names in the image of the screenshotted deck

Simplified steps of how the script works: Feed it image of a deck Reads it with OpenCV Takes all cards in all_cards, resizes them appropriately (must be manually set) to match the size of a card on the image (i.e. 1920×1080 deck image for Master Duel ~= 63×94) Takes each card and passes it over the deck image, line by line Anytime a card passes the match threshold (ex: 0.75 minimum acceptable to be counted as a match), the card’s […]

Read more
1 179 180 181 182 183 914