Convenient script to parse .bib files with the ACM Digital Library like metadata

Convenient script to parse .bib files with the ACM Digital Library like metadata. I had a few very large .bib files from a literature survey and I wanted to explore the tags and abstracts within those literature. The script does not do much else other than parse the bib items and represents them as Python dictionaries with some convenient query methods. Disclaimer: Use at your own risk. The author of this code does not take any liabilities for data loss […]

Read more

Calibre recipe to convert latest issue of “Analyse & Kritik” into an ebook

Dies ist ein “Recipe” für die Konvertierung der aktuellen Ausgabe der Zeitung Analyse & Kritik in ein Ebook. Es muss zusammen mit der “Nachrichten abrufen”-Funktion von Calibre verwendet werden. Du benötigst ein Online-Abo der ak um dieses Skript verwenden zu können. Installation Lade das Recipe herunter (Rechtsklick auf den Link und “Speichern als”-Funktion verwenden, mit Endung “.recipe” speichern). Öffne Calibre Öffne “Benuterdefinierte Nachrichtenquellen hinzufügen oder bearbeiten” (Pfeil neben dem “Nachrichten abrufen”-Icon in der Toolbar) Klicke unten auf “Schema aus Datei […]

Read more

Convert any given animated gif file into an animation in GIFT CSV format

This repo is made to participate in Matt Parker’s XmasTree 2021 event. Convert any given animated gif file into an animation in GIFT CSV format. Convert a Gif: First, run pip3 install -r requirements.txt to install the necessary packages. To convert a gif you will need a CSV file with coordinates of the Xmas tree’s LED lights; Matt Parker’s 2021 coordinates are given in examples/coords_2021.csv. Run this command: python3 convert.py The output will be a CSV file in GIFT format […]

Read more

.bvh to .mcfunction file converter

.bvh file to .mcfunction converter Example video of it in action: https://www.youtube.com/watch?v=L2yVFUgoeBY This program lets you import armature animations into Minecraft by converting .bvh files into .mcfunction. Using programs like blender, you can export animations to .bvh which can be converted by this program into .mcfunction. See example.py for an example. There is a lot to write so it is recommended that you make a separate file to run the program. Python: Create a folder named ‘data’ in the same […]

Read more

Simple converter for deploying Stable-Baselines3 model to TFLite and/or Coral

Introduction I’ve been using Stable-Baselines3to train agents against some custom Gyms, some of which require fairlylarge NNs in order to be effective. I want those agents to eventually be run on a pi or similar, so I needto export all the way to TFLiteand ideally a Coral. How to use Setup You will need to have configured the Coral system-wide stuff. Build a venv: python3 -m venv venv source venv/bin/activate python3 -m pip install -r requirements.txt Running This comes with […]

Read more

Convert tweets to Instagram-friendly images

Convert tweets to Instagram-friendly images. How to use If you want to use this repository as a submodule, don’t forget to put the fonts directory, the resources directory and credentials.py in your working directory. There are two main functions in tweet_image.py: def tweets_to_images(file, handle, name, showFavsRt, show_date) def tweet_to_image(name, username, showFavsRt, show_date, tweet, tweet_timestamp, favs, retweets, profile_image, tweet_id, media_url, r, g, b) tweets_to_images file: File with the tweets. You can generate such a file with this module which I have […]

Read more

Interactive convnet features visualization for Keras

Interactive convnet features visualization for Keras The quiver workflow Video Demo Build your model in keras Launch the visualization dashboard with 1 line of code quiver_engine.server.launch(model, classes=[‘cat’,’dog’], input_folder=’./imgs’) Explore layer activations on all the different images in your input folder. Quickstart Installation pip install quiver_engine If you want the latest version from the    

Read more

Convert bitmap images to seeds for Tiny-83 NFT project

What is this? This tool allows you to convert any 14p high and 22p wide Bitmap (.bmp) to the seed needed for the Tiny-83 NFT project. Project Twitter: https://twitter.com/TINY83_nft Project Open Sea: https://opensea.io/collection/tiny-83 Minting Page: https://tiny-83.github.io/tiny-83/ My Twitter: https://twitter.com/shib_maximalist My Open Sea: https://opensea.io/shib_maximalist Usage Create an image with 22×14 pixels and save it as bitmap (.bmp). When you save it, set the coloer depth to 1-Bit. This way pixels will eithe rbe switched on or off (0|1). I used paint.net […]

Read more

A converter for the .BMR / .RLE bitmap files used in some Neversoft PS1 games

python3 pyqt5 – can be installed with pip install PyQt5 pypng – Included This program can be running py main.py in the directory it is extracted to. Then, simply select the folder containing the RLE / BMR files you wish to extract the textures from, and the folder to output the images to. Images will be output as PNGs. The program is single threaded and will freeze while extraction is ongoing. The Dreamcast version of Spider-Man uses a different format […]

Read more
1 2 3