this post was submitted on 20 Jan 2026
13 points (93.3% liked)

Show & Tell

155 readers
2 users here now

Show & Tell

A community for developers to share personal projects of any size or polish. Anything software/firmware/hardware.. ALL THE WARES!! Side projects, experiments, learning builds, half-finished ideas — all welcome.

Explain what you built, why you built it, and what you learned. Give feedback if you can. Ask for feedback if you want.

Rules

  1. Personal projects only (no company or paid product marketing)
  2. Include context: what it is, what tech you used, what you learned
  3. Be constructive and respectful
  4. No spam or referral farming
  5. Feedback is encouraged, not mandatory
  6. Mark NSFW content clearly
  7. If you see a project you like and you think is cool consider giving it a star!
AI Rules

Guys it's 2026, if you're not using AI at this point you're falling behind. That being said this community is not for showing off AI prompts that you put into gh Copilot or Claude or whatever, all that's showing the world is "hey I know how to make something up and explain it in 20 words while having the expectations of a team who gives a shit! Woow look at me!!".

So do your best to disclose where/how/why you used AI in your code, and if you suspect a project is entirely AI generated slop,, don't engage, don't bully, just let them eat their foot ¯\_(ツ)_/¯.

Icon and Banner were generated using ChatGPT, they're placeholders as of 1/20/26, will replace them with real art soon! https://chatgpt.com/share/696fa8bc-f3e0-8012-b6d7-350a8b53a0e1

founded 3 days ago
MODERATORS
 

Hey! I am building a brand new CI based on top of forgejo/gitea - the thing is to use general purpose programming languages instead of YAML for pipelines. So I have launched a forgejo instance with DSCI runner integrated, where you can find some example pipelines for demo projects - http://forgejo.sparrowhub.io/root

So I am looking for beta testers, anyone who wants to try out the dsci - please let me know - so I will create an account for you ( you may find the link to the discord channel at the web site ) and you will start to create and run pipelines for projects you like

you are viewing a single comment's thread
view the rest of the comments
[–] verstra@programming.dev 1 points 1 day ago (2 children)

This is dead simple, but it still feels like magic.

What is this python function run_task? Where is it imported from? In what environment is the CI executed? How do I install my build-time dependencies?

[–] melezhik@programming.dev 1 points 1 day ago* (last edited 1 day ago)

In what environment is the CI

By default this is alline:latest docker container , however one can use custom docker images ( to be documented, but let me know if you are interested ), on the demo server , Ubuntu image is used

[–] melezhik@programming.dev 1 points 1 day ago* (last edited 1 day ago) (1 children)

run_task comes as a part of dsci SDK for Python . What do you mean by build time dependencies? You are free put anything into Python / Bash tasks that are called by run_task function in job file … if you point your repo on demo server I can help you with that …

[–] verstra@programming.dev 1 points 16 hours ago (1 children)

If i wanted to run 'cargo build' for example, cargo & rustc are build-time dependencies. If the task does not specify which env it is using, I cannot assume I'm able to use apt or dnf or pacman or nix.

Let's say, i'd want to run just test in this repo: https://codeberg.org/lutra/lutra/ How do I install just, cargo-insta & python version 3.14?

[–] melezhik@programming.dev 1 points 14 minutes ago

just test

just use dedicated alpine image, pretty easy:

https://deadsimpleci.sparrowhub.io/doc/cookbook