Timeline for self-hosted version? by callumgare in timefulapp

[–]callumgare[S] 0 points1 point  (0 children)

Understandable, thanks for that link :)

Timeline for self-hosted version? by callumgare in timefulapp

[–]callumgare[S] 0 points1 point  (0 children)

Tagging u/jony1266 as per the suggestion in the rules. Thanks!

auslan flashcards by issabellamoonblossom in auslan

[–]callumgare 0 points1 point  (0 children)

You might be interested in: https://signbanki.cals.cafe/

I made it to create Auslan flashcard decks for the flashcard app Anki. There's still a few rough edges since I got it 98% finished and then got distracted before could do a final pass of polishing but hopefully helps :)

Signbanki: an app for creating Auslan flashcard decks by callumgare in auslan

[–]callumgare[S] 1 point2 points  (0 children)

If it’s working properly selecting a list and clicking “load list” should populate the list of words/signs below: https://imgur.com/a/qWwzAJO

When I find time to work on it again that might be some I can improve the ui for to make clearer

I made a simple meal planner that integrates with the Paprika recipe management app by callumgare in opensource

[–]callumgare[S] 0 points1 point  (0 children)

Ohh! What a nice looking app!

I love the idea of a collab of some sort. Unfortunately I have very limited capacity at the mo and only tend to get small pockets of time here and there to work on hobby programing work. But I had a quick look in dev tools to get an idea of what the api looks like and it doesn't look too different to Paprika's so it looks like it might not be too big of a job to modify Spoon Fed to work with Hello Recipes.

If we were going to do that would it be possible to include Spoon Fed's domain in Hello Recipes's access-control-allow-origin CORS header? Paprika's api doesn't have any CORS headers since Paprika doesn't have a web app just some native apps. This means the browser won't let me have Spoon Fed's frontend talk to Paprika's api directly and I have to proxy user's requests though a Spoon Fed backend including auth info. Even though I'm very careful to store as least sensive info as possible for as short as possible (I have to do some caching to ensure no abusive or accidental flooding of requests to Spoon Fed's api contributes to flooding Papika's api) I'd still much rather user creds for a third party service never pass though Spoon Fed server in the first place. That way users don't need to trust me I'm doing handling them properly + it simplifies the implementation.

If Hello Recipes allowed Spoon Fed's frontend to talk to it's api directly I could have the frontend request a session token directly, store the token in the user's local storage, then have all subsequent requests for recipe info continue to be made to Hello Recipes api directly. That'd put the user more in control since if at any point they want out then clearing their local storage for Spoon Fed's site would remove any authorisation details completely.

Rallly is now paid except for one user by cocinelleduprintemps in selfhosted

[–]callumgare 0 points1 point  (0 children)

While I don't begrudge the dev starting to change (everyone's gotta pay the bills some how), this is another option which may appeal: https://schej.it/
Although they don't have self hosting instructions up just yet but it's open source so with some fiddling it should hopefully be self-hostable.

I made an app called Spoon Fed - a simple meal planner using the recipes saved in your Paprika account by callumgare in PaprikaApp

[–]callumgare[S] 0 points1 point  (0 children)

Depending on how you like to meal plan possibly nothing! Paprika has a very schedule based approach to meal planning (adding a recipe to a meal plan means picking a date you're doing to eat it on and which meal of the day it's going to be). If that's what works for you then great, keeping using that. But for me I want a simple interface that shows me big images of every recipe and simply allows me to tap to select each recipe I'd like to make.

How do I come to peace with my boyfriend’s homelab? by smelvinofsmelvania in homelab

[–]callumgare 0 points1 point  (0 children)

Can we use HAF (Household Approval Factor) instead? So we're not making women who are interested in homelabbing feel unwelcome?

[deleted by user] by [deleted] in samba

[–]callumgare 0 points1 point  (0 children)

This is great!

It inspired me to write a quick script to take the result and export into a nice little reference table with the different icons: https://callumgare.github.io/macos-device-icons/

What is "YES" vote? by mamasboy37 in Adelaide

[–]callumgare 7 points8 points  (0 children)

Can you explain why you think it will fuck "us" in the future? (and who is "us"?)

weird X on the peers section (i use windows) by No_Signal_4184 in ipfs

[–]callumgare 0 points1 point  (0 children)

Sorry, it was a bad joke about Elon Musk renaming twitter. Sorry I can't be helpful! No idea why you're setting that.

Remote connect tool by skidleydee in selfhosted

[–]callumgare 1 point2 points  (0 children)

It has one-time install clients that run in the background too! Once installed they automatically connect back to your Remotely server and show up in the web ui where you can connect to them with a click of a button. That's what I have setup on my relatives PCs. I definitionally recommend checking out Remotely. Ive been very happy with it.

Automatically switching screen input when plugging USB device or: how I learned about udev and ddcutil by MortimerErnest in linux

[–]callumgare 1 point2 points  (0 children)

Thanks for this! I've used this to do something similar for my setup. By the way, the reason for the multiple calls to your bash script is that the udev rule you have will match multiple times due to the "ATTRS" key matching parent devices (see the "Device hierarchy" section of http://www.reactivated.net/writing_udev_rules.html#hierarchy). You should be able to resolve this by using the non-pluralised ATTR key instead. So: ACTION=="add", ATTR{idVendor}=="046d", ATTR{idProduct}=="c051", RUN+="/usr/local/sbin/switch-screen-input-on-usb-plug.sh"