Docker builds in CircleCI: go faster, and support newer Linux versions

If you’re using CircleCI to build your Docker images, you might find yourself using an old version of Docker without realizing it. That means: Slower builds. Lack of support for newer Linux distributions. Let’s see why, and how to fix it. BuildKit makes Docker builds faster Newer versions of Docker add support for BuildKit, a new build backend that among other features (build secrets, and local caching which can speed up builds during development) also can make your production builds […]

Read more

Simple Python script to download images and videos from public subreddits without using Reddit’s API

Download images and videos from any public subreddit without using Reddit’s API Made with ❤ by Nico This script allows you to download directly linked images, videos and gifs from any public subreddit WITHOUT USING REDDIT’S API. How is this achieved? By using the very powerful PushShift API. This is important for a number of reasons: With Reddit’s api, you have a limit of 1000 posts, pushshift is unlimited. In my experience, pushshift is just faster. You don’t need a […]

Read more

A LostArk Queue status overlay that displays information about your queue while tabbed out of the game

A simple overlay for LostArk that shows information about your queue status and time left while tabbed out of the game. Since we currently do not have any APIs from the game itself, the pipeline implemented is pretty much this: Extracting and processing a frame through win32 libraries, then manipulating the output with opencv to feed the resulting image into Tesseract (OCR) that will perform an Image-To-Text conversion and return our actual queue time. All of that is implemented into […]

Read more

Quickstart site to build out a lambda function

Create a mini Spring initializer for AWS Lambda functions. Backend service Builds a layer for the different cookiecutter templates. (NOTE: This will be limited for what we can bundle) Webservice includes a number of parameters for the aws lambda powertools templates: name: defaults to hello-world, is the name of the project runtime: defaults to python3.9, is the language runtime version (could also support typescript via nodejs) architecture: defaults to x86_64, is the CPU architecture (can also be arm64) memory: defaults […]

Read more

A Scalable Quantum Benchmark Suite

SupermarQ is a suite of application-oriented benchmarks used to measure the performance of quantum computing systems. Installation The SupermarQ package is available via pip and can be installed in your current Python environment with the command: Using SupermarQ The benchmarks are defined as classes within supermarq/benchmarks/. Each applicationdefines two methods; circuit and score. These methods are used to generate the benchmarking circuit and evaluate its performanceafter execution on hardware. The quantum benchmarks within SupermarQ are designed to be scalable, meaning […]

Read more

Reproducible experiments with 3D printers

Make it better, with data. And confidence. This repo is a collection of scripts and notes for running reproducible experiments with printers. You can run a single gcode action a whole bunch of times, conveniently, and record console outputs of interest from it. You can run one of multiple pre-defined tests, or add your own in Python. You can compare the before-and-after results from a test, with statistical confidence, to see if what you did… did anything at all. Conveniently, […]

Read more

An optimal, byte-aligned, LZ+RLE hybrid encoder, designed to maximize decoding speed on NMOS 6502 and derived CPUs

An optimal, byte-aligned, LZ+RLE hybrid encoder, designed to maximize decoding speed on NMOS 6502 and derived CPUs TSCrunch is an optimal, byte-aligned, LZ+RLE hybrid encoder, designed to maximize decoding speed on NMOS 6502 and derived CPUs, while achieving decent compression ratio (for a bytecruncher, that is).TSCrunch was designed as the default asset cruncher for the upcoming game A Pig Quest, and, as such, it’s optimized for in-memory level compression, but as of version 1.0 it can also create Commodore 64 […]

Read more

Easily report multiple telegram channels

Easily report multiple telegram channelsЛегко оскаржуйте декілька телеграм каналів одночасно ENG Attention: use on your own risk – While the script will sleep 10 to 20 seconds between requests and 50 to 60 seconds between each 10 requests, telegram might ban your account if you will use this app to report huge amount of accounts in short time.It’s better to use separate telegram account to use this app. Follow instructions hereto obtain your api_id and api_hash for telegram client Command […]

Read more

Add-on to plotly which show molecule images on mouseover

molplotly is an add-on to plotly built on RDKit which allows 2D images of molecules to be shown in plotly figures when hovering over the data points. A readable walkthrough of how to use the package together with some useful examples can be found in this blog post while a runnable notebook can be found in examples/simple_usage_and_formatting.ipynb 🙂 Installation pip install molplotly conda install rdkit Usage

Read more

Tracking People by Predicting 3D Appearance, Location & Pose

Code repository for the paper “Tracking People by Predicting 3D Appearance, Location & Pose”. Jathushan Rajasegaran, Georgios Pavlakos, Angjoo Kanazawa, Jitendra Malik. This code repository provides a code implementation for our paper PHALP, with installation, preparing datasets, and evaluating on datasets, and a demo code to run on any youtube videos. Abstract : In this paper, we present an approach for tracking people in monocular videos, by predicting their future 3D representations. To achieve this, we first lift people to […]

Read more
1 214 215 216 217 218 927