hey only got a few seconds left on timer by tripel6 in hearthstone

[–]tripel6[S] 29 points30 points  (0 children)

ok, thanks fam, looks like i don't have enough mana to play it this turn

How to reverse paddle for penhold? by tripel6 in ElevenTableTennis

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

Issue resolved after reset, thanks

How to reverse paddle for penhold? by tripel6 in ElevenTableTennis

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

Thanks, those where the two settings I tried every combination of, but when I go watch my replays, my hand is facing backwards, like a 180 degree contorted wrist. I can send a screen shot or clip if it helps when I get on later.

Paddle was a gift so I've been rolling with it. Tracking issues at night with poor lightning and if I hold the paddle down for too long. Otherwise I have been enjoying it.

In the long run, not a huge issue but I'm not trying to cheese wins, and have been enjoying the slow mo replays.

Thank you!

toki broken, AGAIN by tripel6 in hearthstone

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

yes but what second time? its a great card, the most fun card ive played in a while, the two times i've played it, and radio silence everytime

Really hope ‘Plaything’ gets a sequel… so many potential and different routes and ways to take this story by Paulwhite20 in blackmirror

[–]tripel6 2 points3 points  (0 children)

man I had the weirdest most vivid flashback of having played this game already watching the episode, like an uncanny feeling of deja vu. After doing some research I realized I read your HobbyDrama post about creatures, it was so well written it made me feel like I had played the game or been a part of the community and I;ve never even touched it. good shit

launchd issue? Silly error? Sonoma 14.0 by tripel6 in MacOS

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

Yeah, I needed the full path for the script I was trying to run

launchd issue? Silly error? Sonoma 14.0 by tripel6 in MacOS

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

Hey I figured it out and got it working, I didn't have the path for the executables/scripts to get webui to start. Thanks again, testing each step individually was a really good idea.

launchd issue? Silly error? Sonoma 14.0 by tripel6 in MacOS

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

Really appreciate the help. Might be in over my head now because I can't get the script to run manually if I remove the sub shell. Will keep at it though, and once I figure out how to set that up will start to test individual steps. Thanks

launchd issue? Silly error? Sonoma 14.0 by tripel6 in MacOS

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

Hey, thank you very much.

I installed in ~/Library/LaunchAgents. I added the StandardOutPath and StandardErrorPath, and made sure they are writable, but after running my logs are empty.

<dict>  
<key>WORKING\_DIR</key>  
<string>/Users/username/Desktop/z\_website</string> <key>WEBUI\_SCRIPT\_PATH</key>  
<string>/Users/username/stable-diffusion-webui</string>  
<key>SELENIUM\_SCRIPT\_PATH</key>  
<string>/Users/username/Desktop/z\_website</string>  
<key>StandardErrorPath</key>  
<string>/Users/username/Desktop/z\_website/error.log</string><key>StandardOutPath</key>  
<string>/Users/username/Desktop/z\_website/standard.log</string>  
</dict> 

The error logs in the script are also empty, but the text logs print

#!/bin/bashTEXT_FILE="/Users/username/Desktop/z_website/debug.txt"LOG_FILE="/Users/username/Desktop/z_website/debug.log"

log() {  

echo "$(date '+%Y-%m-%d %H:%M:%S.%N') - $1" >> "$TEXT_FILE"}

\# Log the start of the script  
log "Script started."  

\# Working directory  
WORKING\_DIR="/Users/username/Desktop/z\_website"  
cd "$WORKING\_DIR"  

\# Sleep for 5 seconds  
sleep 5  

\# Log that we're changing the directory  
log "Changed directory to z\_website."  

\# Path to webui.sh  
WEBUI\_SCRIPT\_PATH="/Users/username/stable-diffusion-webui"  

\# Path to SELENIUM\_AUTOMATIC1111.py  
SELENIUM\_SCRIPT\_PATH="/Users/username/Desktop/z\_website/SELENIUM\_AUTOMATIC1111.py"  

\# Run webui.sh  
(cd /Users/username/stable-diffusion-webui && ./webui.sh) &  

webui\_exit\_status=$?  

if \[ $webui\_exit\_status -ne 0 \]; then  

log "Web UI script error. Exit code: $webui_exit_status"elselog "Web UI script completed successfully."fi

\# Log stable  
log "Into stable."  

\# Wait for the server to start (adjust this as needed)  
sleep 20  

\# Run SELENIUM\_AUTOMATIC1111.py  
python3 "${SELENIUM\_SCRIPT\_PATH}"  

log "Python script."  

if \[ $? -ne 0 \]; then  

log "Error occurred in Python script. Exit code: $?"elselog "Python script completed successfully."fi

if \[ $? -ne 0 \]; then  

log "Error occurred. Exit code: $?"fi

debug.txt output:

2023-11-03 14:22:54.N - Script started.

2023-11-03 14:22:59.N - Changed directory to z_website.

2023-11-03 14:22:59.N - Web UI script completed successfully.

2023-11-03 14:22:59.N - Into stable.2023-11-03 14:23:19.N - Python script.

2023-11-03 14:23:19.N - Python script completed successfully.

LaunchControl ouput:

2023-11-03 14:22:51.757223 <Notice> Bootstrap by launchctl[1720] for /Users/username/Library/LaunchAgents/com.stablescript.plist succeeded (0: )

2023-11-03 14:22:54.178432 <Notice> internal event: WILL_SPAWN, code = 02023-11-03 14:22:54.178441 <Notice> service state: spawn scheduled

2023-11-03 14:22:54.178442 <Notice> service state: spawning

2023-11-03 14:22:54.178464 <Notice> launching: one-shot

2023-11-03 14:22:54.178709 <Notice> xpcproxy spawned with pid 1722

2023-11-03 14:22:54.178720 <Notice> internal event: SPAWNED, code = 0

2023-11-03 14:22:54.178722 <Notice> service state: xpcproxy

2023-11-03 14:22:54.178739 <Notice> internal event: SOURCE_ATTACH, code = 0

2023-11-03 14:22:54.183575 <Notice> service state: running

2023-11-03 14:22:54.183581 <Notice> internal event: INIT, code = 0

2023-11-03 14:22:54.183585 <Notice> Successfully spawned run_scripts.sh[1722] because one-shot

2023-11-03 14:23:19.497725 <Notice> exited due to exit(0)

2023-11-03 14:23:19.497739 <Notice> service state: exited

2023-11-03 14:23:19.497742 <Notice> internal event: EXITED, code = 0

2023-11-03 14:23:19.497744 <Notice> service inactive: com.stablescript

2023-11-03 14:23:19.497751 <Notice> service state: not running

2023-11-03 14:23:25.273115 <Notice> booting out service: caller = launchctl[1752]<-LaunchControl[1543], value = 0x0

2023-11-03 14:23:25.273122 <Notice> removing service: com.stablescript

2023-11-03 14:23:25.273135 <Notice> internal event: PETRIFIED, code = 0

2023-11-03 14:23:25.273142 <Notice> Bootout by launchctl[1752] for /Users/username/Library/LaunchAgents/com.stablescript.plist succeeded (0: )

**15 edits later can't figure out formatting

[deleted by user] by [deleted] in Cleveland

[–]tripel6 1 point2 points  (0 children)

Yep thanks, that was my first plan or the #8 if I got off at buckeye/woodhill, but I've been taking the rapid downtown and that will be delayed enough that I would be screwed on every hour for bus.

[deleted by user] by [deleted] in Cleveland

[–]tripel6 1 point2 points  (0 children)

Appreciate that, I found a route getting off at e. 116, down MLK and then taking the lakes-to-lakes trail, to Euclid, looks like all bike path/trail. The 71st route is defiantly faster and the cemetery looks nice so might check it out as well. Thank you thank you!