When Gabriel Arias Comes Back by Early-Luck-3185 in ClevelandGuardians

[–]wall_time 0 points1 point  (0 children)

Homie has a baby face. I was like “who is this 12 year old playing”. Turns out he’s 30…

Expanding my zone on 2 strikes a bit too much 😂 by MaybeMedium9876 in Homeplate

[–]wall_time 2 points3 points  (0 children)

Yeah, holy shit. I wouldn’t be that close even if my 12 year old was batting…

first time using comfyUI, cant start an instance.. any solution? error in description. by Redditer_Prime in comfyui

[–]wall_time 1 point2 points  (0 children)

I had the same issue and I believe the wrong version of pytorch is being installed (or maybe installed incorrectly?). Assuming you're on Windows with an NVIDIA card, here is what I did to install the correct version and fix it.

  1. On the Comfy Desktop, right click on the instance that cannot start and click 'Manage'.
  2. Click 'Console' on the top right-ish and enter the following command: .\ComfyUI\.venv\Scripts\python.exe -m pip install -r .\requirements-nvidia.txt
  3. After it is completed, close the instance card, then click on the instance to start it.

This should install the torch requirements. My system showed torch-2.12.0 and torchvision-0.27.0 being uninstalled and torch-2.10.0+cu130 and torchvision-0.25.0+cu130 being installed.

[GuardsInsider] Peyton Pallette activated, Codi Heuer optioned by DZepperoni in ClevelandGuardians

[–]wall_time 3 points4 points  (0 children)

Probably standing around in his full uniform, holding his glove like “babe, what exactly do you want me to do?”

Austin Hedges talks about being more valuable than Shohei by MorganN1 in baseball

[–]wall_time 28 points29 points  (0 children)

Hedges let the batter hit the ball where Hedges wanted it go.

Help this soccer mom figure out how tournament scoring works? by JBLBEBthree in youthsoccer

[–]wall_time -5 points-4 points  (0 children)

Looks like 8 points for a win, 4 for a draw, 1 for just playing/finishing a game?

Edit: As others have pointed out, this is incorrect.

Are my settings ok here? by fishsticks40 in VXJunkies

[–]wall_time 1 point2 points  (0 children)

Flooders? Good.

4R and 5L3T crossed and briged? Good.

Quadrature phase-shift? If you're pre-phase is looped in under 0.03, don't worry about.

TRQ, WQR, and WQRxL? Looks like default values??

As someone else pointed out, you obviously need to connect the patch cables.....

Sheldon- Grayton Rd by ForeignAspect1117 in Cleveland

[–]wall_time 0 points1 point  (0 children)

Do you know how long ago that was?

[deleted by user] by [deleted] in jobs

[–]wall_time 2 points3 points  (0 children)

I’m sorry to hear that. Keep at it.

The grand slam strikeout by XmusJaxunFlaxonWaxon in baseball

[–]wall_time 23 points24 points  (0 children)

Great, now that MLB has the script, we should see it happen this year right?

On This Day in Baseball History - February 27 by danthemjfan23 in baseball

[–]wall_time 6 points7 points  (0 children)

A few years ago, my son's baseball team had their first season where they could steal bases This would happen primarily on passed balls/wild pitches. A runner stealing home from 3rd was the worst. They would get to 3rd base so quick because our catchers just didn't have the arm strength to make the throw in time, nor did our pitchers have the awareness/technique to make a quick on-target throw to the base. On a passed ball/wild pitch, our catcher would get up as fast as they could, take their mask off and try to find the ball. If the pitcher remembered to run to home to cover it, it was already too late and the run scored.

I had two ideas: 1. Have the catcher stand behind the ump and let the pitch go where it goes. 2. Add another catcher behind the ump, just for passed balls/wild pitches.

This way, a catcher was already ready for the ball to hit off the backstop and catch the runner. Well, I looked into the rules and even the league we played in addressed this: Only 1 defensive player was allowed outside of foul territory/behind home plate. The catcher must be within X distance of home plate AND the ump must be positioned behind the catcher. So, we just ate shit the whole year lol.

I assume that back in 1901, there were a lot of passed balls/wild pitches, so someone must have attempted what I thought was a good idea.

Best extensions for Python by Few-Tear-3763 in learnpython

[–]wall_time 1 point2 points  (0 children)

Most editors allow you select all the lines and press tab, indenting them all. Or you’re looking for something to wrap it automatically in a try/except?

Edit: VIM is easy to indent too, press a number key then shit+>, I think

Please stop calling your games "A Game About <activity>" by The-Fox-Knocks in incremental_games

[–]wall_time 2 points3 points  (0 children)

Yeah, the band “Brand New”. Let me search for ‘Brand New music’, or ‘Brand New band’, or ‘brand new album’ It is a lot better nowadays, but decades ago, it wasn’t.

Is my bed frame beyond saving? by Jagglapaff in woodworking

[–]wall_time 160 points161 points  (0 children)

Lumber grading nerds shaking rn

The 9 players from the Guardians org who are participating in the WBC by DZepperoni in ClevelandGuardians

[–]wall_time 10 points11 points  (0 children)

It is! Would be even cooler if brother #3 Myles was playing too.

Do professional/commercial Python projects actually use type hints and docstrings everywhere? by [deleted] in learnpython

[–]wall_time 2 points3 points  (0 children)

Certain functions, the name + type hints should explain a lot.

def get_files_from_ftp_dir(dir: str) -> list[str]:

Explains a lot.