IanTwenty

joined 2 years ago
[–] [email protected] 15 points 2 days ago

'Last year, we asked the public for their views on smart products in a series of workshops. People shared concerns that products collect too much personal information, and said that they feel powerless to control how their data is used and shared'

Thank you to these people!

[–] [email protected] 1 points 1 week ago

I'm checking this out!

[–] [email protected] 2 points 2 weeks ago

I like 'Removable Drive Menu': a status menu for accessing and unmounting removable devices.

https://extensions.gnome.org/extension/7/removable-drive-menu/

[–] [email protected] 2 points 2 weeks ago (1 children)

Thanks, did you move your worlds/settings etc by hand then?

[–] [email protected] 2 points 2 weeks ago* (last edited 6 days ago) (3 children)

UPDATE: migrating the flatpak by simply updating now works for me. End up with the minetest dir symlinked to the new luanti dir. No idea what fixed it.

Looks like 5.12.0 is only available as a flatpak under a new ID: org.luanti.luanti. The old net.minetest.Minetest has stopped at 5.11.0

https://github.com/flathub/net.minetest.Minetest/issues/103

Flatpak should prompt you to migrate to the new ID when you update, however this didn't happen for me.

https://docs.flathub.org/docs/for-app-authors/maintenance#end-of-life-rebase

Could be some version of this bug:

https://github.com/flatpak/flatpak/issues/5819

Has anyone else managed to migrate to org.luanti.luanti ok?

[–] [email protected] 12 points 3 weeks ago (6 children)

..could it be your phone's storage is failing then?

[–] [email protected] 3 points 3 weeks ago

Your IRQ 'permission denied' log lines could be caused by this: https://github.com/Irqbalance/irqbalance/issues/336

..to which the answer is currently to wait for kernel fix. Whether this is the cause of the suspend issue as well I couldn't say.

Is this all the logs, from very start of you hitting suspend to when the machine comes back? I ask because I expected to see more things stopping and then restarting...

[–] [email protected] 5 points 3 weeks ago (2 children)

The logs should indicate the device/app that prevents suspend, run 'journalctl -r' after it happens.There are ways to disable devices from preventing suspend but we need to know what's causing it first.

[–] [email protected] 2 points 3 weeks ago

https://codeberg.org/mineclonia/mineclonia/issues/2456

Marked as outdated however still useful I think

[–] [email protected] 1 points 3 weeks ago

100% use shellcheck! Saves so much time. Even better: https://github.com/bash-lsp/bash-language-server

 

I saw the smoke yesterday about 5pm. The 'We the Curious' fire of 3 years ago was also solar panels: https://www.bristolpost.co.uk/news/bristol-news/curious-fire-everything-know-major-6931554

[–] [email protected] 4 points 1 month ago

I have not yet had a chance to try it but there's this:

https://domainaware.github.io/parsedmarc/

Currently I use my own Python script to do some basic reporting but would rather pool effort.

 

I killed them all once and even dunked lava on the top yet still they spawn. Do you have to remove the entire structure to 'beat' them? Thx

 

In the code below we wait for a background process three times. In the first paragraph we get the expected 0 return code from the wait. In the second paragraph the only change is wrapping the wait in a command substitution which instead gives a 255 return code. In the third paragraph the only change is wrapping the wait in a subshell which gives a 127 return code. Why is this?

sleep 1 &
wait $!
echo $?                     # prints "0"

sleep 1 &
a=$(wait $!)                # <---- only difference is cmd substitution
echo $?                      # prints "255"

sleep 1 &
(wait $! &>/dev/null)       # <---- only difference is subshell
echo $?                     # prints "127"

Thanks in advance for your thoughts!

EDIT: updated to include the subshell final example also, which gives a clue

 

Some gusts of 45mph in Horfield and Fulton according to https://martynhicks.uk/weather/data.php so I think we escaped the worst in the city. A few things blew around but no damage near us.

 

Can anyone recommend a tool to manage photos at the cmdline? I just want to move photos into dirs based on their metadata (YYYY/DD), occasionally fix up metadata (adjust dates), rename photo filenames to match a template and/or query my photos for certain things. It doesn't need to be a gallery or image touch-up tool, I have other things for that.

I'm aware of exiftool and ImageMagick, perhaps they can do the job but they seem quite low level, really need to build scripts around them - I'd like something that operates at a slightly higher level so I don't have to do too much scripting.

A quick search turned up chee (GPLv3) which can:

  • search photos using a simple query language
  • manage named queries (called collections)
  • copy/symlink images into a custom folder structure

...but it's not had an update in a few years (maybe it's feature complete tho!) Any other suggestions? Thanks.

 

Any child-friendly recommendations? I think most matches will be around midday hopefully.

(the image is an older shot from https://www.flickr.com/photos/37972999@N07/47986391577)

view more: next ›