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