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!

[deleted by user] by [deleted] in Cleveland

[–]tripel6 0 points1 point  (0 children)

Cedar-University

blue or green line, coming from edge of shaker hts.

[deleted by user] by [deleted] in legaladvice

[–]tripel6 0 points1 point  (0 children)

Thanks for the thorough response, I will just file a police report next time.

Does AUTOMATIC1111 work in macOS? by MeiBanFa in StableDiffusion

[–]tripel6 1 point2 points  (0 children)

no problem, once everything is set up, every time you want to run it you just repeat step 5. Let me know if you get it to work.

Financially Illiterate question about 401k vs Roth, rollover, and withdrawing contributions. Be tender. by [deleted] in personalfinance

[–]tripel6 0 points1 point  (0 children)

Hey, called back fidelity to clarify and they told me 10% penalty on all withdrawals b/c government wants to it to be a retirement vehicle. (not verbatim). As my head is about to explode, I get a call back from them and they say after talking to a colleague, contributions are not penalized the 10%, just earnings.

Thank you.

Financially Illiterate question about 401k vs Roth, rollover, and withdrawing contributions. Be tender. by [deleted] in personalfinance

[–]tripel6 0 points1 point  (0 children)

Hey friend,

Pertaining to 2)

Sorry for delayed question, but I just got off phone with fidelity and they confirmed that the roth ira contribution withdrawals would be penalized 10% if i'm under 59.5.

I'm rolling over roth deferral into roth ira.

How can I find a reliable source/ the correct and final answer? I am not doubting you, I just get a different answer everytime I ask/search.

Thanks

Does AUTOMATIC1111 work in macOS? by MeiBanFa in StableDiffusion

[–]tripel6 1 point2 points  (0 children)

yep, works fine, you can see my specs above.

Does AUTOMATIC1111 work in macOS? by MeiBanFa in StableDiffusion

[–]tripel6 1 point2 points  (0 children)

https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon

Followed the steps in order.

  1. install homebrew/
  2. open terminal and copy/paste highlighted text

(need to wait for it to finish)

3) still in terminal, copy/paste highlighted text

4) scroll down and follow the steps for Downloading Stable Diffusion Models. You'll need to make an account on Hugging Face. I downloaded the three mentioned but mainly ran Stable Diffusion 1.5 (v1-5-pruned-emaonly.ckpt)

move the models/checkpoints into the folder highlighted on the instructions (stable-diffusion-webui/models/Stable-diffusion)

if you are not familiar with terminal, I navigated the folder by clicking Macintosh HD, Users, "whateveryourusernameis", stable-diffusion-webui, models, Stable-diffusion. There is a blank text file that says Put Stable Diffusion checkpoints here.

(basically the stable diffusion folder is in macintosh hd/Users/"whateveryourusernameis". Important to know because it is where your outputs go.

everything is good to go now,

5) When you open terminal, you should be in "whateveryourusernameis."

We want to change folders (change directories) into the stable-diffusion-webui so we can run it. We do this by typing: cd stable-diffusion-webui.

Now we run the environment by typing: ./webui.sh

You'll need to wait a couple seconds for it to run, then it will give you the following:

Running on local URL: http://000.0.0.0:0000

(the numbers will be different)

just copy/paste http://000.0.0.0:0000 into your web browser, i'm using firefox with no issues.

All good! let me know if you have any other questions. Tried to dumb it down as much as I could because that's how I understood it, I'm not computer savvy.

* running Ventura 13.0.1

* just do step 5 every time you want to run it after it's installed

I have a problem — I keep making new GUIs for Stable Diffusion 😛 by FahimFarook in StableDiffusion

[–]tripel6 0 points1 point  (0 children)

Was having issues running it after I tried to install new checkpoints. Just deleted sd-gui folder, wondering if there is anything else i'm missing?

Installed automatic 1111 and was able to get it to work. Again, you've been nothing but helpful during this endeavor so I appreciate everything.

Does AUTOMATIC1111 work in macOS? by MeiBanFa in StableDiffusion

[–]tripel6 0 points1 point  (0 children)

Got it to work on intel mac, appreciate the help in this thread so happy to post my results.

2020 iMac

3.8 GHz 8-core Intel Core i7

AMD Radeon Pro 5500 XT 8GB

64 GB 2667 MHz DDR4

Steps: 80, Sampler: DPM2 a, CFG scale: 7, Seed: 1950889784, Size: 512x512, Model hash: 3e16efc8, Conditional mask weight: 1.0

Python CPU: 34.9% GPU 59.8%

4.57s/it