gabrielgio.me @ 886980c4813651c1f60d16ff517e059e4ad5545d

 1+++
 2title = "Projects"
 3author = ["gabrielgio"]
 4layout = "single"
 5draft = false
 6+++
 7
 8
 9Just a list of some projects I have done and find useful on my day-to-day life.
10
11-   [Hub Watcher](https://hub-watcher.gabrielgio.me/)
12    [[gitlab](https://gitlab.com/gabrielgio/hub-watcher)]
13
14    A small project to monitor changes in a docker image from [docker
15    hub](https://hub.docker.com/). By default every 5 minutes it will fetch the
16    digest of image and compare with the previous returned digest, if they are
17    different it will make a post request to a given url.
18
19    I created it so I can automatically trigger my gitlab pipeline to build my
20    custom nextcloud image everytime Nextcloud GmbH updates their image.
21
22-   [Reddit to Nextcloud
23    importer](https://gabrielgio.gitlab.io/reddit-nextcloud-importer/)
24    [[sr.ht](https://git.sr.ht/~gabrielgio/reddit-nextcloud-importer)]
25    [[apk](https://git.sr.ht/~gabrielgio/apkbuilds)]
26
27    A small project that monitors user\'s saved posts on reddit, downloads its
28    media and uploads to a nextcloud instance.
29
30    It combines 3 projects: [praw](https://github.com/praw-dev/praw) to read and
31    motitor user's saved feed, [gallery-dl](https://github.com/mikf/gallery-dl)
32    to download media from several sources, and
33    [nextcloud-api-wrapper](https://github.com/luffah/nextcloud-API) to manage
34    folder and upload files to nexcloud instance.
35
36-   [Filter for Nerdcast
37    (pt-BR)](https://artifacts.gabrielgio.me/jnfilter/)
38    [[sr.ht](https://git.sr.ht/~gabrielgio/jnfilter)]
39
40    Just a small podcast filter to remove and/or split a feed from
41    [Nerdcast](https://www.jovemnerd.com.br/nerdcast/) into different segments.
42    The current feed its quite clustered with many programs/segments and this
43    project just helps to clean up so only the segment you want shows up on you
44    podcast client.
45
46-   [Password generator](https://genpass.gabrielgio.me/)
47    [[sr.ht](https://git.sr.ht/~gabrielgio/genpass)]
48    [[apk](https://git.sr.ht/~gabrielgio/apkbuilds)]
49
50    It started with me having fun with clojure script ([last
51    commit](https://git.sr.ht/~gabrielgio/genpass/commit/2db3d88503fbe219e99c464c4cc8e768613e1359)).
52    Now I have been using it as a playground to play a bit with rust/wasm and it
53    is a quite interesting comparacion to make. The cljs implementation could
54    not handle more than 1k chars, while the wasm can easly handle >100k. Is it
55    useful for a password generator? Probabally not, but if it is your use case
56    now I got you covered.