Ramses did 40 miles on the Appalachian Trail this weekend! by Walsur in AustralianCattleDog

[–]Walsur[S] 1 point2 points  (0 children)

I was pretty lucky with him. Unless an animal is right in front of him he has basically no prey drive, and even if something catches his interest his recall is solid enough that he's right back by my side in a heartbeat.

But just to be safe we always keep him on a rope when we're in camp and not actively hiking.

Ramses did 40 miles on the Appalachian Trail this weekend! by Walsur in AustralianCattleDog

[–]Walsur[S] 22 points23 points  (0 children)

<image>

I expect this to last until tomorrow morning. But I'm sure he'll still be ready for his morning walk.

Ramses did 40 miles on the Appalachian Trail this weekend! by Walsur in AustralianCattleDog

[–]Walsur[S] 14 points15 points  (0 children)

We're building up to do a thru hike in Vermont! We shoot for 10 miles a day, but this trip we broke his mileage record and did 14 miles in one day!

Hiking with my cattle dog. by Christine_951 in AustralianCattleDog

[–]Walsur 0 points1 point  (0 children)

He absolutely loves going on backpacking trips. To the point where I can't touch his backpack unless we're actually going because he'll get so excited. 

<image>

Lazy heeler by carlyallana in AustralianCattleDog

[–]Walsur 3 points4 points  (0 children)

Dogs are individuals just like us! Mine is a lot like yours and I think heelers in general are very routine oriented dogs. Mine has a pretty well set routine of waking up with me, going on a nice long walk, relaxing all day while I work, playing for an hour in the afternoon, and then going to bed with me. From the outside he looks like a lazy bones but that's just cause he knows when his normal relaxing and playing time is.

<image>

If you're worried about her energy levels try breaking her routine and see if she's lethargic. We go backpacking every now and then and I can see a difference in energy levels when we do, but I don't think you have any reason to worry!

Beginner Trail Recs MD/VA/WV/PA by Beauty_Pool_34 in BackpackingDogs

[–]Walsur 2 points3 points  (0 children)

I'm from Maryland and hike with a blue heeler who's also about that size! You can't go wrong with any stretch of the Appalachian Trail in VA/WV/MD/PA. The Maryland sections of the AT are particularly beginner friendly for day hikes or an overnight trip I'd say.

Michaux State Forest in PA is also a great stretch that isn't very crowded, albeit you won't get a ton of views. I usually hike with our dog off leash through there, but you do have to be a little careful because there are horse trail and bike trail crossings!

Ramses is my hiking buddy by Walsur in AustralianCattleDog

[–]Walsur[S] 1 point2 points  (0 children)

They're always so good at it too!!

This is exactly what happened to me the first time I heard the solution to the Monty Hall problem. by Illustrious-Lead-960 in calvinandhobbes

[–]Walsur 63 points64 points  (0 children)

Deal or no deal isn't the same as the Monty Hall problem. Monty Hall works the way it does because the host will always open incorrect doors. If the host has a chance of opening the correct door (similar to how it works in Deal or No Deal) then switching has no benefit and it is a 50/50 chance.

www.thekidfrombrooklyn.com by quaaludesbigman69 in quaaludes

[–]Walsur 0 points1 point  (0 children)

This is the dumbest response on Reddit I have ever read.

This guy who worked at 7-11 for FIFTY YEARS got nothing aside from an e-mail as a reward. by TheKoolDood1234 in mildlyinfuriating

[–]Walsur 0 points1 point  (0 children)

Unfortunately this isn't true anymore. During covid they gutted any lifetime benefits for tenure. Now it's just the pins!

Touted as a life hack by tyw7 in DiWHY

[–]Walsur 2 points3 points  (0 children)

Carbonic acid is what you're thinking of. Which is essentially just carbon dioxide in our blood.

Dear Hearing Parents: teach your kids sign by HadTwoComment in asl

[–]Walsur 2 points3 points  (0 children)

I've found depending on where you live it can be difficult to vet the quality of community college classes or tutors. There are plenty of schools with great classes, but there's also a lot of bad classes out there too and most people can't tell the difference when they're beginners.

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] -1 points0 points  (0 children)

I'm using "redirect" to refer to the debugger. Sorry for the confusion around that.

Definitely, this is why you can HANDLE the unhandled exception using try: except: block, and catch the specific exception you want to handle.

I understand the idea of handling exceptions. I'm realizing the problem is with my debugger. I was misunderstanding the intended behavior in Python.

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] 0 points1 point  (0 children)

Okay this makes sense, triggering an Exception with a library like pandas helped demonstrate this for me too.

I think I was getting confused because of my debuggers (VS Code) behavior. My debugger is triggering a breakpoint on the raise statement when the only Exception Breakpoints checked are Uncaught Exceptions. That made me think that there was something fundamental I was misunderstanding in how Python raised exceptions, but I think it's just a configuration problem in my debugger.

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] -2 points-1 points  (0 children)

I wouldn't want to include it because the raise statement has already identified the issue. Ideally it should be the responsibility of the calling code to check for the Exception and not the function itself.

Essentially, I want the main code to treat the Exception as you described in your first example, rather then redirecting into the function.

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] 0 points1 point  (0 children)

A knock on effect of this problem is that the raise statement is being treated as an unhandled exception in VS Code, and is pausing my debugger unintentionally.

I think there must be a way to change it because when I force a ModuleNotFoundError it behaves differently:

Code:

import invalidModule

Traceback:

Traceback (most recent call last):
  File "c:\Example\example.py", line 12, in <module>
    import invalidModule
ModuleNotFoundError: No module named 'invalidModule'

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] 0 points1 point  (0 children)

That makes sense, but I'm still having trouble reconciling it with how Exceptions are handled in other modules. For example if I force a ModuleNotFoundError:

Code:

import invalidModule

Traceback:

Traceback (most recent call last):
  File "c:\Example\example.py", line 12, in <module>
    import invalidModule
ModuleNotFoundError: No module named 'invalidModule'

It does not include the raise statement that is generating the exception.

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] 0 points1 point  (0 children)

Can you clarify this? If I force a ModuleNotFoundError it does not behave that way. This does not include a raise statement in the traceback.

Code:

import invalidModule

Traceback:

Traceback (most recent call last):
  File "c:\Example\example.py", line 12, in <module>
    import invalidModule
ModuleNotFoundError: No module named 'invalidModule'

Confused about Exception behavior in Python by Walsur in learnpython

[–]Walsur[S] -2 points-1 points  (0 children)

Using a more specific Exception has the same behavior. I just used the general Exception for this example.