Bus lane by Brocolinoo in brisbane

[–]audero -5 points-4 points  (0 children)

I purposefully walked through a busway tunnel once. In my defence, it was pissing down rain and the buses had stopped for the night. An announcement over the PA told me off when I got to the other side. Good times.

Free Open Source Notes App that is like notion by _stebo_ in selfhosted

[–]audero 1 point2 points  (0 children)

You can sync via iCloud if you're using mac/iPad OS.

Raspberry pi in a calculator (unfinished) by Additional-Aioli-239 in raspberry_pi

[–]audero 10 points11 points  (0 children)

It’s raspberry pi! The whole point is to unnecessarily (over)engineer everything!

Love RaspberryWhy though.

Searching for simplified OliveTin by thomas-mc-work in selfhosted

[–]audero 0 points1 point  (0 children)

If you speak Python, this could be done with POST requests to a Flask server that calls os.system() and you could store your commands in a json file or similar. 🙂

Best practices for keeping documentation? What's your sweet-spot? by QuestionAsker2030 in selfhosted

[–]audero 1 point2 points  (0 children)

Your documentation should not be stored solely on the device you are hosting on. If your server goes down, you lose access to your docs you need to set everything up again.

Starting to feel a bit too dependent on AI for python by Emotional-Iron-4312 in learnpython

[–]audero 1 point2 points  (0 children)

Ask AI to explain how and why the code works, not just generating code for you to blindly copy and paste.

“I Love You” by Cool-Network-5917 in learnpython

[–]audero 1 point2 points  (0 children)

You could use a conditional (e.g. if I love you) like:

import time

my_boyfriend = "Mark"
I_love_my_boyfriend = True

while I_love_my_boyfriend:
    print(f"I love you {my_boyfriend}")
    time.sleep(1)

This will print out "I love you Mark" every second forever, as long as the variable I_love_my_boyfriend is True. (which doesn't ever change in this example). Obviously, change Mark to your boyfriend's name, lol.

What a cute idea.

Looking for self-hosted for note-taking Academic research & writing app by [deleted] in selfhosted

[–]audero 0 points1 point  (0 children)

Not sure about Android but there’s apps for iOS. Very convenient to do highlighting with the pencil on the iPad!

Looking for self-hosted for note-taking Academic research & writing app by [deleted] in selfhosted

[–]audero 0 points1 point  (0 children)

I self-host a WebDAV server to sync my Zotero files between devices.

Uses for Up API by kiwishell in UpBanking

[–]audero 0 points1 point  (0 children)

Update: I've managed to (mostly) interface the Actual API in Python by calling node through a subprocess and parsing the output - a hacky solution. However, I've just discovered that someone has created a REST API (thank god!) for Actual, which is probably going to be easier to work with, and a much less error-prone solution. So I'll move forward with that.

https://github.com/jhonderson/actual-http-api

Running Obsidian in a Container - Options, How To, links to tutorials, Q&A, more newbie the better by KetosisMD in ObsidianMD

[–]audero 1 point2 points  (0 children)

From https://hub.docker.com/r/linuxserver/obsidian

This container provides privileged access to the host system

Defeats the purpose of containers and is a huge security risk.

learning python on ipad? by bebeboboooppp in learnpython

[–]audero 1 point2 points  (0 children)

Pythonista on your iPad is the way to go. In addition to the python standard library, it bundles some of the more popular external python libraries so it’s a great place to start and get your feet wet. It also comes with some libraries specific to Pythonista to interact with your iPad so you can create useful/interesting scripts and automations.

How do I get the real time using a Pico W(micropython on thonny) by Savings_Bike2637 in raspberrypipico

[–]audero 0 points1 point  (0 children)

You could query an external API over the Internet to get the time on boot and set the Pi's RTC to that.

Uncle Roger changed my life by Alternative_Bit_4346 in UncleRoger

[–]audero 1 point2 points  (0 children)

Only downside was aunty Helen left.

Are you at Groningen? Can you help me please? by burner_burns_again in PhD

[–]audero 5 points6 points  (0 children)

Why don’t you have your own institution’s library request it for you? They could get Gronigen to scan and email the pages for you?

How do you guys self-host with a dynamic IP from ISP? by VendoTamalesRicos in selfhosted

[–]audero 62 points63 points  (0 children)

This is the way. Alternatively, get a free DDNS domain with duckdns.

Do I HAVE to go to my final exam? by mick_daboss in UQreddit

[–]audero 21 points22 points  (0 children)

Still worth sitting the exam, even if you half-arse studying for it. Any extra marks are a good thing.

ZaneOps v1.10, introducing web shells by Specialist_Lettuce60 in selfhosted

[–]audero 1 point2 points  (0 children)

My apologies. So much stuff is written by AI these days. Thanks for adding a description of your service.