danielquinn

joined 1 year ago
[–] [email protected] 3 points 1 day ago

Looking at that list, this suggestion seems entirely appropriate.

[–] [email protected] 8 points 2 days ago (6 children)

As someone who has used and loved Docker since 2015, but never used Podman, can you explain the difference and why I might want to make the switch?

[–] [email protected] 3 points 4 days ago (1 children)

Nebula might be the answer for you. A low annual fee means every video you watch gives a portion of that fee to the artist.

[–] [email protected] 22 points 5 days ago (4 children)

These rules are convoluted and near impossible to apply. Specific braking speeds for some objects compared to others? That requires reliable computer vision, which hasn't been demonstrated anywhere yet.

And those speeds? 92mph is 148kph! Why the fuck are cars even permitted to be capable of that when no road in the country allows it? And why would you want to introduce unpredictable braking scenarios at such speeds?

What is feasible is a speed limiter based on the posted limit, but that'd be too practical.

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

Thanks for posting this! I have the same router.

[–] [email protected] 22 points 1 week ago (1 children)

I love this. I can just imagine them paying poor people to drive and protest in their place too.

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

Awesome. Perhaps now there will be some renewed focus on screen reader support?

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

Ah yeah, I remember a moment like that in DS9, where Sisko is lamenting the crew's interest in a holosuite program set in the 50s because of how "our people" were treated back then. It always felt out of place for me, though DS9 is still my favourite Star Trek.

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

Can you give some examples of this? Admittedly I didn't much care for Discovery and didn't pay a lot of attention through it as a result, but I'm not picking up what you're laying down ;-)

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

Can we really call it a "spill" if they dump it deliberately?

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

I'm not saying that she's blameless, rather that a design of straight roads and traffic lights ensured that this was going to happen. If it wasn't an old lady speeding, it would have been a dumb teen on their phone, or a middle-aged man "trying to catch the yellow". If the road allows for dangerous driving, kids are going to die on it.

 

My father is 75 and not very capable on a computer. He's got an old MacBook Air at home behind a typical ISP router for which he has no access controls (so no port forwarding).

My immediate need is actually not his machine at all, but the Raspberry Pi I installed at his house before I left the country and forgot to enable cron on so it's not doing what I need yet. However, it would be really nice if I could also do one of the following as well:

  • VNC (or something) into his computer whenever something "isn't working" rather than doing the talk-him-through-it dance over Skype.
  • Install a new OS (the Mac is no longer supported by MacOS). I don't know how plausible this is though.

My current plan is to email him a shell script that should create a reverse SSH tunnel to a server in Montréal or something and then I can shell into his Mac through there. It's not ideal though since we're still talking shell scripts and he's easily frustrated.

I know that in Windows land there are all sorts of tools scammers use to take over a machine remotely. Does Mac allow for the same thing? Note that I only have Linux machines available to me on this side of the Atlantic.

 

I'm working on a some materials for a class wherein I'll be teaching some young, wide-eyed Windows nerds about Linux and we're including a section we're calling "foot guns". Basically it's ways you might shoot yourself in the foot while meddling with your newfound Linux powers.

I've got the usual forgetting the . in lines like this:

$ rm -rf ./bin

As well as a bunch of other fun stories like that one time I mounted my Linux home folder into my Windows machine, forgot I did that, then deleted a parent folder.

You know, the war stories.

Tell me yours. I wanna share your mistakes so that they can learn from them.

Fun (?) side note: somehow, my entire ${HOME}/projects folder has been deleted like... just now, and I have no idea how it happened. I may have a terrible new story to add if I figure it out.

 

I've got a very simple Kodi setup:

  • Arch Linux on a laptop behind the TV
  • Media files on a server upstairs, shared over NFS

I've been running Kodi quite successfully on this machine for years, but with the Omega update, videos play without audio for about 10seconds, then freeze. Sometimes if I wait a while, I see subtitles for the episode while the video is frozen. Music doesn't play either. The interface freezes too, to the point where I have to kill -9 it. Switching from Wayland to Xorg hasn't had an effect.

I tried deleting ~/.kodi and restarting, but nothing changes.

Has anyone else run into this?

 

A break from the usual in this community, but I trust it'll be appreciated. I think this is very solarpunk: using technology to improve the lives of all creatures.

 

I've been playing a lot of Fallout 4 over the holidays. I started and finished the Nuka World DLC (killed all the baddies), made it to level 90, etc.

Today I was playing on my Deck as the battery got a little low (11%) so I saved my game, exited the game, and went to shut down.

As it was shutting down, the Deck displayed a message, something like "Syncing to Steam Cloud" as the logo was spinning.

A few hours later, on a full charge, I booted it back up, started Fallout 4 again and... some of my old saves are there, but only about 30% of them, and critically not the most recent ones.

Has this ever happened to anyone else? Is this a known issue? Can I fix it, or report it? I've basically lost interest in finishing the game now.

 

His original post , titled I can't sleep, is some brilliant writing. When we talk about the chilling effect that criticism of Israel creates in industries everywhere (including ours) this is what that looks like.

 

I needed something for a presentation I'm doing on advanced Linux, so I thought something like this might be appropriate.

Annoyingly, I can't seem to get Bing to generate an image that isn't square.

 

[For reference, I'm talking about Ash in Alpine Linux here, which is part of BusyBox.]

I thought I knew the big differences, but it turns out I've had false assumptions for years. Ash does support [[ double square brackets ]] and (as best I can tell) all of Bash's logical trickery inside them. It also supports ${VARIABLE_SUBSTRINGS:5:12}` which was another surprise.

At this stage, the only things I've found that Bash can do that Ash can't are:

  • Arrays, which Bash doesn't seem to do well anyway
  • Brace expansion, which is awesome but I can live without it.

What else is there? Did Ash used to be more limited? The double square bracket thing really surprised me.

 

I'm working on a little program that'll launch different browsers based on the content of the URL passed and I'd like to set it as the default Web app in this list (under Settings → Default Apps). I've written a .desktop file based on the epiphany.desktop file, but it doesn't show up when I hit [Win]+o+p+e and it doesn't show up in the default apps either, so I'm hoping that someone here can explain what I've done wrong.

Here's the contents of the opening.desktop file:

$ cat ~/.local/share/applications/opening.desktop 
[Desktop Entry]
Name=Opening
GenericName=Web Browser
Comment=Open links in the right browsers
Keywords=web;browser;internet;opening;
Exec=opening %u
StartupNotify=true
Terminal=false
Type=Application
Icon=/home/daniel/.local/share/applications/opening.png
Categories=Network;WebBrowser;
MimeType=text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;multipart/related;application/x-mimearchive;message/rfc822;application/x-xpinstall;

Any criticisms are much appreciated!

4
submitted 9 months ago* (last edited 9 months ago) by [email protected] to c/[email protected]
 

They must get turned into streaks to be eaten somewhere right? It'd be nice if every morning that I have to ride my bike through their wet piles of shit, I can think to myself: "at least I'll get to eat you at ________ in a few months".

view more: next ›