jaybone

joined 1 year ago
[–] jaybone@lemmy.world 1 points 9 hours ago

Could add “is this where they come from?”

[–] jaybone@lemmy.world 4 points 10 hours ago (2 children)

If you were bitten against your will, you can’t become a vampire unless you want to.

[–] jaybone@lemmy.world 7 points 10 hours ago

Stuff it up in there like you’re making a roast.

[–] jaybone@lemmy.world 5 points 11 hours ago (1 children)

Can’t you just take the money and then vote for whoever you want?

[–] jaybone@lemmy.world 24 points 11 hours ago (3 children)

Next he’ll be eating dogs… right?

[–] jaybone@lemmy.world 1 points 11 hours ago

Yeah, they might actually treat us better.

[–] jaybone@lemmy.world 2 points 12 hours ago* (last edited 12 hours ago)

I hate it when people do shit like that.

I lived in an apartment complex once where someone got a new (used) car with one of those old style car alarms that doesn’t turn off. They parked it in the parking garage and then left for the day. That shit was going off for like 6 hours. The cops were called and wouldn’t do shit. Cops looked at the car and were like “Doesn’t appear anyone tried to break in.” I’m like no shit dickhead, that’s not why we’re calling. Can you tow it out of here? But they wouldn’t tow it because it was on private property. I thought about breaking their windows but didn’t do it. I should have done something somewhat less destructive and egged it or something. Assholes.

[–] jaybone@lemmy.world 2 points 13 hours ago

You could win the Contractor’s Clearinghouse Sweepstakes! A lifetime supply of smoke detectors!

[–] jaybone@lemmy.world 3 points 14 hours ago

He just keeps knocking your drink off the bar.

[–] jaybone@lemmy.world 2 points 15 hours ago (2 children)

He did eventually admit he lost the 2020 election.

[–] jaybone@lemmy.world 5 points 15 hours ago

The inside of a hot pocket.

[–] jaybone@lemmy.world 24 points 15 hours ago

This is more interesting than the meme.

 

When in Large Text Mode, information is truncated with ellipses "..." Here's a proposal for a better solution, which might help in regular text mode also.

Using Large Text Mode

In the feed we see posts appear like this:

The community appears as "green..."

This could show the full community name and post username, allowing line wrap, followed by a newline and the counts on the next line.

So instead of

O green...
^ 433 v 1 O 100% O 8h

This could instead show

O greentext@sh.itjust.works 
by user@instance 
^ 433 v 1 O 100% O 8h

Yes allowing line wrap might break the text at non-whitespace characters, but I think that would still be ok. E.g.

O greentext@sh.itju
st.works by user@instance 
^ 433 v 1 O 100% O 8h

Similarly when entering post and comment view

This could instead show

O greentext@sh.itjust.works 
by user@instance 
^ 433 v 1 O 100% O 8h

Then when viewing the comments

Rather than:

psycho_... ^ 14 v 0 ... 5h

You could again allow line wrap and add a newline between the user name and the vote counts.

This could instead read:

psycho_whatever@instance 
                       ^ 14 v 0 ... 5h

This should still be okay for wrapping long user names that don't wrap on whitespace characters. E.g.

some_long_user_name@so
me_long_instance_name 
                       ^ 14 v 0 ... 5h

Also user profiles do not render well in Large Text mode.

 
 
 
 
 
 
 

I don't give a shit about reddit's DP program.

The first two or three emails I was willing to ignore. But they keep sending these.

How desperate do you have to be?

 
 

This sloppy bash script generates the above html players table from this site:

https://ew.com/survivor-46-cast-contestants-revealed-8557071

Maybe this can be expanded to track player eliminations.

Hopefully this code posts correctly...

#!/bin/bash
#
# List Survivor Season 46 Players
#
#

URL=https://ew.com/survivor-46-cast-contestants-revealed-8557071

cat <
DONE


wget $URL -O - \
    | grep -A 5 "mntl-sc-block-heading__text" \
    | sed 's/.*__text"> /<div><div>/g' \
    | sed 's/&lt;\/span.*/<br>/g' \
    | sed 's/&lt;\/img>&lt;\/div>/g' \
    | sed '/^\-\-$/d' \
    | sed '/^$/d' 


echo "</div>"



 

Server: Ubuntu.
Client: Roku.

When I play an episode of a TV show, if I pause I see the name of the episode, but it doesn't show which season or episode number.

E.g. I might see:
Lisa Simpson, This Isn't Your Life

But I would like to see something like:
s22e05 - Lisa Simpson, This Isn't Your Life

Or maybe even better, something like:
The Simpsons - s22e05 - Lisa Simpson, This Isn't Your Life

Is there some way to enable this?

Additional question...

This is even more annoying because sometimes when I pause, or fall asleep, or shut off my tv/roku, the "Continue Watching" list on the home screen doesn't even have where I left off. (Sometimes it does. That seems like a bug to me.) So then I have to go track down the season and episode number where I left off.

 

Some questions and comments on my experience.

My main motivation to switch was that emby seemed to be buggy on the client side, keeping track of what episode of what tv show and season I was on. I'm hoping jellyfin helps with that.

On the server side, I wanted to keep both servers running. But there were port conflicts. It was difficult for me to find in the Jellyfin docs the right config file to set the ports. So I ended up changing the emby ports. (Since I could find the emby config files.)

diff /var/lib/emby/config/system.xml.orig /var/lib/emby/config/system.xml 
9,12c9,12
&lt;   8096
&lt;   8920
&lt;   8096
&lt;   8920
***
>   18096
>   18920
>   18096
>   18920
view more: next ›