• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Where do you get your fantasy football information?

      It seems like Reddit and Twitter are the best for this but they've both gone down hill. Does anyone have a good RSS feed? Im currently using https://www.thescore.com/author/justin-boone...

      It seems like Reddit and Twitter are the best for this but they've both gone down hill. Does anyone have a good RSS feed?

      Im currently using

      https://www.thescore.com/author/justin-boone

      https://www.borischen.co/p/ppr-running-back-tier-rankings.html

      I wouldn't mind more tier like lists, but I want to get more breaking news stuff.

      4 votes
    2. Travel recommendations for Japan

      Hey Everyone, My partner and I are headed on a spontaneous trip to Japan in a few weeks and looking for suggestions. We've heard some great things about Piss Alley and Golden Gai in tokyo, as well...

      Hey Everyone,

      My partner and I are headed on a spontaneous trip to Japan in a few weeks and looking for suggestions. We've heard some great things about Piss Alley and Golden Gai in tokyo, as well as the fish markets, and got really excited about the southern island of Kyushu after watching a video from Huckberry. We're hoping to get out of cities for the most part and into nature/sleepier towns, are able to rent a car but would love to explore as much as we can on trains/bikes, and are really excited about the culture/food/onsens. Really excited to hear about anything you'd recommend based on that or really anything that knocked your socks off!!! Thanks!

      25 votes
    3. Looking for chill horror lets players

      I like to listen to mostly horror let’s plays throughout the day and at bedtime because they are good background noise for me. I just want to find more chill options that don’t do any over the top...

      I like to listen to mostly horror let’s plays throughout the day and at bedtime because they are good background noise for me.

      I just want to find more chill options that don’t do any over the top screaming. Preferably some that need a boost and are lesser known.

      I’ll contribute my own to get started. Her name is Hula Noob and she’s very chill, lots of dialogue and commentary which I like.

      I do know about Gab too. Though she’s a little more diversified. Which is fine.

      18 votes
    4. What have you been listening to this week?

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as...

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as well, we'd love to see your hauls :)

      Feel free to give recs or discuss anything about each others' listening habits.

      You can make a chart if you use last.fm:

      http://www.tapmusic.net/lastfm/

      Remember that linking directly to your image will update with your future listening, make sure to reupload to somewhere like imgur if you'd like it to remain what you have at the time of posting.

      5 votes
    5. Offbeat Fridays – The thread where offbeat headlines become front page news

      Tildes is a very serious site, where we discuss very serious matters like recurring, wifi and james earl jones. Tags culled from the highest voted topics from the last seven days, if anyone was...

      Tildes is a very serious site, where we discuss very serious matters like recurring, wifi and james earl jones. Tags culled from the highest voted topics from the last seven days, if anyone was conducting research.

      But one of my favourite tags happens to be offbeat! Taking its original inspiration from Sir Nils Olav III, this thread is looking for any far-fetched offbeat stories lurking in the newspapers. It may not deserve its own post, but it deserves a wider audience!

      9 votes
    6. What did you do this week (and weekend)?

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do...

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do nothing at all? Tell us about it!

      7 votes
    7. Three days in England - Overwhelmed by options - Looking for ideas

      Looking for ideas - we're two adults in our mid-30's, no kids. We'll be leaving a wedding on a Monday in Ipswich but our flight home from London isn't until Friday. We'll be spending a week in...

      Looking for ideas - we're two adults in our mid-30's, no kids. We'll be leaving a wedding on a Monday in Ipswich but our flight home from London isn't until Friday. We'll be spending a week in London beforehand so we'd like to explore the countryside.

      The only thing we've (sort of) landed on is seeing/staying in the Cotswolds, and touring some castles (holy crap there's a ton to chose from). We're not big drinkers/partiers but I'd like to be able to go hang out in a real English pub and stay at a Lord-of-the-Rings kind of inn (I already found the inn that the Prancing Pony is based on - thought not sure if we want to stay there).

      Other random thoughts. Unfortunately our schedule doesn't seem like it'll line up with any Premier League games. Not planning on renting a car but can if we absolutely must. Would kind of like to stay in one spot since it's only 3 nights.

      18 votes
    8. Reverse-Proxying services both inside and outside of Podman

      Hey all, not-a-networks-guy here. I've currently got an rpi set up running pihole natively (not in a container) for ad and website blocking reasons. (Using port 80, no TLS) I've used the pihole...

      Hey all, not-a-networks-guy here.

      I've currently got an rpi set up running pihole natively (not in a container) for ad and website blocking reasons. (Using port 80, no TLS) I've used the pihole localdns feature to set an internal hostname for that ip (me.lan).

      On the same pi, I have podman "set up" to run FreshRSS, and I'm getting more and more annoyed about using the port # to access it. (me.lan:12345) I'd like to set up a reverse proxy (probably Traefik) in a container to redirect internally, but considering that port 80 is taken (by pihole, outside of podman) I don't see a way to direct traffic from the pihole to Traefik.

      I'd really rather not reconfigure the whole setup to use containers.... I'm lazy, and also prefer my dns resolver to have the least amount of overhead possible. Is configuring the router an option here, or is the only way to achieve what I'm looking for an overhaul of the pi and containers?

      If I've missed any pertinent details, let me know and I'll update here.

      4 votes
    9. best way to go about with a script that seems to need both bash and python functionality

      Gonna try and put this into words. I am pretty familiar with bash and python. used both quite a bit and feel more or less comfortable with them. My issue is I often do a thing where if I want to...

      Gonna try and put this into words.

      I am pretty familiar with bash and python. used both quite a bit and feel more or less comfortable with them.

      My issue is I often do a thing where if I want to accomplish a task that is maybe a bit complex, I feel like I have to wind up making a script, let's call it hello_word.sh but then I also make a script called .hello_world.py

      and basically what I do is almost the first line of the bash script, I call the python script like ./hello_world.py $@ and take advtange of the argparse library in python to determine what the user wants to do amongst other tasks that are easier to do in python like for loops and etc.

      I try to do the meat of the logic in the python scripts before I write to an .env file from it and then in the bash script, I will do

      set -o allexport
      source "${DIR}"/"${ENV_FILE}"
      set +o allexport
      

      and then use the variable from that env file to do the rest of the logic in bash.

      why do I do anything in bash?

      cause I very much prefer being able to see a terminal command being executed in real-time and see what it does and be able to Ctrl+c if I see the command go awry.

      in python, you can run a command with subprocess or other similar system libraries but you can't get the output in real-time or terminate a command preemptively and I really hate that. you have to wait for the command to end to see what happened.

      But I feel like there is something obvious I am missing (like maybe bash has an argparse library I don't know about and there is some way to inject the concept of types into it) or if there is another language entirely that fits my needs?

      6 votes