tofubl
@tofubl@discuss.tchncs.de
- Comment on [Unsolved] Looking for assistance figuring out how to fix this connector. 1 hour ago:
Good job
- Comment on [Unsolved] Looking for assistance figuring out how to fix this connector. 4 hours ago:
The second connector pin from the bottom is connected to what’s almost certainly a ground pour, and this is in line with the through hole labels together with your diagram. This is your black wire. I would bet money on the rest of the labels (and your diagram) being correct too, so red wire goes to middle connector pin. If you’re fairly certain that blue is in its correct location then we’re done: green goes to bottom pin. If you are not, we can take a closer look.
- Comment on Car sun visor with built-in navigation 2 days ago:
I’m a big fan of Radiohole, especially their song Grape (“I’m a grape, I’m a raisin.”)
- Comment on The Weight of the Internet Will Shock You 2 weeks ago:
…of DNA
- Comment on Any nice playbook or tutorial to host a static website from home? 5 weeks ago:
You can set up your project in a private repo and in your deploy action push it to the main branch of your public Pages repo. I agree it’s not a huge deal to show the source, but I prefer it like that.
name: Deploy Hugo site to Github Pages on: push: branches: - main workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Hugo uses: peaceiris/actions-hugo@v3 with: hugo-version: "0.119.0" extended: true - name: Build run: hugo --minify - name: Configure Git run: | git config --global user.email "you@example.com" git config --global user.name "Your Name" - name: Deploy to GitHub Pages env: GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} run: | cd public git init git remote add origin https://user/:${{ secrets.DEPLOY_TOKEN }}@github.com/USER/USER.github.io.git git checkout -b main git add . git commit -m "Deploy site" git push -f origin main
- Comment on Can you Dehydrate Food in a Filament Dryer? 1 month ago:
Is it? 😂
- Comment on A minimalist bedside lamp I've design to print in vase-mode 1 month ago:
Short blogs with few but high quality articles are actually the salt of the earth.
I encourage you to do it, there are many options like Hugo, and your intellectual property will never be locked in a company’s app store (Prusa seems trustworthy for now, but as we’ve seen, lockout is always just a TOS change away.)
You already have the writeup and hosting a static site on github pages or similar doesn’t incur costs, so the only thing you need is some time and a domain. 🙂
- Comment on Can you Dehydrate Food in a Filament Dryer? 1 month ago:
Anyone remember that video of a guy proving he can cook chicken by slapping it many times?
- Comment on Need some help setting up gethomepage in my server 1 month ago:
I need to use the IP for specific reasons concerning my setup; and I don’t want the two containers to share a Docker network.
This used to work exactly as is when I set it up, but doesn’t anymore.
I tinkered with it some more now and I found that while I can ping the docker host, I can’t actually wget anything from any docker services from within the Homepage container. Currently at a loss why that might be.
- Comment on Need some help setting up gethomepage in my server 1 month ago:
Would love to see it.
Here’s mine from the Paperless compose.yml (non functional):
webserver: image: ghcr.io/paperless-ngx/paperless-ngx [...] labels: - homepage.group=Productivity - homepage.name=Paperless - homepage.icon=paperless.png - homepage.href=https://[LOCAL URL] - homepage.description=Document Management - homepage.widget.type=paperlessngx - homepage.widget.url=http://[PAPERLESS IP:PORT] - homepage.widget.key=[PAPERLESS API TOKEN]
And here’s the error from Homepage frontend:
API Error: Unknown error URL: http://[PAPERLESS IP:PORT]/api/statistics/?format=json Raw Error: { "errno": -110, "code": "ETIMEDOUT", "syscall": "connect", "address": "[PAPERLESS IP]", "port": [PAPERLESS PORT] }
- Comment on Need some help setting up gethomepage in my server 1 month ago:
I don’t think it’s you. The paperless widget stopped working for me recently after it had been fine before. Similar setup to yours.
It bothered me a little but since the widget isn’t actually very useful to me I didn’t care to invest more time to get to the bottom of it.
- Comment on Setting Up a Self-Hosted GitHub runner for CI/CD 1 month ago:
I have a docker forgejo runner for CI with Codeberg. Where did you get stuck?
- Comment on Any phone alternatives for the Bambu Handy app? 2 months ago:
Bambu-Farm self-hosted server application works well for me together with a VPN into my home network. Made to control print farms, but single printers work all the same.
- Comment on self actuating toggle switch? 2 months ago:
Neat idea with the key switches. Could be multiplexed like a keyboard matrix. With smart LEDs and some way to multiplex the output stage as well (or some shift registers), this could be nicely implemented one an esp32 or something.
- Comment on On todo lists 2 months ago:
There’s an ongoing feature request about recurrence on the Nextcloud github. There was mention that using a client that supports it is no problem, but to be careful not to mark a task as complete on the web UI, as that would remove the entire task instead of marking one repetition as complete.
- Comment on Windows Recall is secretly installed on non-Copilot+PCs (Privacy Nightmare) 5 months ago:
Love the out of the box thinking though. Really inspirational!
- Comment on Windows Recall is secretly installed on non-Copilot+PCs (Privacy Nightmare) 5 months ago:
I would totally do that. Only problem is that the third yacht really is my favourite, so I’m gonna pass if that’s okay. Thanks!
- Comment on GitHub - sv1sjp/lemmy-rss-pybot: Lemmy RSS PyBot is a powerful Python bot that reads RSS feeds and posts new articles to your favorite Lemmy communities. 5 months ago:
… and enhanced by a sentence or two why it is worthwhile. Getting really tired of the no-effort link drops around here. Better yet, the same no-effort link drop to multiple similar communities on various instances.
Is there a block function for link-only posts?
Are there filters to prevent seeing duplicate content?
- Comment on Authentication for external sevices 5 months ago:
Right, thanks.
- Comment on Authentication for external sevices 5 months ago:
“authentication is not security,” can you elaborate on that?
Your statement doesn’t really overlap with my understanding of security, as “just access” seems critically relevant to how secure user data is, for example. Am I missing something?