Posts with Tag: actions

Github Actions Runner Docker Container with Android SDK

A couple weeks ago, I was setting up a CI system with instrumented tests to run on Android devices. ...

Android Emulator with Github Actions on Linux

Occasionally, I work on some Android apps and in order to test them, I have a computer connected to ...

Most Recent Post

IPFS in-memory indexing in rust

Over the last six months or so, a couple friends and I have been working on and off on a hobby project to do indexing of IPFS content: [https://github.com/compscidr/ipfs_indexer](https://github.com/compscidr/ipfs_indexer). ![file](/uploads/image-1690429677682.png) We wanted to use rust in order to learn a bit about it. Currently the way this thing works, is it starts with a seed CID (the hash / address that IPFS content are given. From there, we add the CID to a queue. We then have some number of worker threads depending on how many processors / threads are available on the machine to start ...