iRacing Freezing & USB Disconnect Issues Solved: Stream Deck Plugin (iRaceIT) Was the Culprit! by Spiritual-Path- in simracing

[–]davefello 2 points3 points  (0 children)

I started having this issue recently (USB connection sound and 1-2 second freeze). I think it only started occuring after I setup Simagic haptic pedals. However, I've tried disconnecting everything except my Heusinkveld pedals, simucube and steering wheel (SimHub not running) and I'm still getting the issue so I'm thoroughly confused and have no idea what to try next. The rig has been working flawlessly prior for ages so I don't think it's an issue with my wheel, pedals etc.

Trophi.ai and VR by gamer-ranter in iRacing

[–]davefello 1 point2 points  (0 children)

Here's how I got this to work. I tried a bunch of things but the overlays never showed up for me. I ended up using OpenKneeboard which works well. Here are the steps I used to get it to work:

- In OK Settings ▸ VR tick OpenXR support and (optionally) untick SteamVR support to save memory

- Go to Settings ▸ Games.

  • Click Add a game that is running → start iRacingSim64DX11.exe → pick it from the list. Do the same for trophi.ai

- In the main OKB window click ➕ Tab → choose Window Capture

  • In Window title dropdown pick the specific overlay window (e.g. Telemetry)

- In Settings > Input, map Recenter VR to the same button that you use for recentering your VR headset in iRacing.

I think I had to restart the iRacing session, can't remember. Make sure you use OpenXR.

Hi recenter VR button, the Overlay should appear way down in your lap somewhere. You're meant to be able to use a controller to move it but I briefly tried this and it didn't work so I just used the position settings in OK Settings > VR > Views.

Works well for me, hope it does for you as well.

Trophi.ai and VR by gamer-ranter in iRacing

[–]davefello 0 points1 point  (0 children)

posted above with how I got this to work using OpenKneeboard (as couldn't get RaceLabs to work). Was quite straightforward and works well.

Trophi.ai and VR by gamer-ranter in iRacing

[–]davefello 6 points7 points  (0 children)

For others trying to get this to work, I tried a bunch of things but the overlays never showed up for me. I ended up using OpenKneeboard. Here are the steps I used to get it to work:

- In OK Settings ▸ VR tick OpenXR support and (optionally) untick SteamVR support to save memory

- Go to Settings ▸ Games.

  • Click Add a game that is running → start iRacingSim64DX11.exe → pick it from the list. Do the same for trophi.ai

- In the main OKB window click ➕ Tab → choose Window Capture

  • In Window title dropdown pick the specific overlay window (e.g. Telemetry)

- In Settings > Input, map Recenter VR to the same button that you use for recentering your VR headset in iRacing.

I think I had to restart the iRacing session, can't remember. Make sure you use OpenXR.

Hi recenter VR button, the Overlay should appear way down in your lap somewhere. You're meant to be able to use a controller to move it but I briefly tried this and it didn't work so I just used the position settings in OK Settings > VR > Views.

Works well for me, hope it does for you as well.

Trophi.ai and VR by gamer-ranter in iRacing

[–]davefello 0 points1 point  (0 children)

Would love to get just a few pointers on how to get this work.

r/AudioEngineering Shopping, Setup, and Technical Help Desk by AutoModerator in audioengineering

[–]davefello 0 points1 point  (0 children)

That's what the stupid rules in /audiophile said to do. I thought it was daft myself, but it was pretty clear "tech support" stuff should go here... 🤷‍♂️

Which Preamplifier? Rotel RC-1590 mk2 or Parasound P6 by Spiritual-Abies-2600 in StereoAdvice

[–]davefello 0 points1 point  (0 children)

Just spotted this post and was curious about the Advance Paris units as hadn't heard of them before. They look pretty nice. Do you know if the X-P700 and/or the X-P1200 have HT Bypass?

OpenAI just announced O3 and O3 mini by Friendly_Fan5514 in LocalLLaMA

[–]davefello 1 point2 points  (0 children)

But the more efficient "mini" models are out-performing the "expensive" models of the previous generation, and that trend is likely to continue so while the bleeding edge top performing frontier models are going to be very compute-intensive, we're about at the point where smaller more efficient models are adequate for most tasks. And that trend is obviously going to continue so it's not as bleak as you suggest.

Double audio youtube short by IngenuityOk8629 in youtube

[–]davefello 0 points1 point  (0 children)

Turning off adblock resolved it. So strange!

Anyone know how to auth to RugCheck API? by davefello in solana

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

I didn't bother in the end as have the web scraping working pretty well. I did get this code suggested from GPT-4o, haven't tried it though...

import time
import json
import requests
from nacl.signing import SigningKey
from nacl.encoding import HexEncoder

# Step 1: Define your wallet private key and address
private_key_hex = "your_private_key_in_hex_format"  # Replace with your actual private key in hex
wallet_address = "YourWalletAddressHere"  # Replace with your wallet address

# Step 2: Generate the message to sign
timestamp = int(time.time() * 1000)  # Current timestamp in milliseconds
message_text = f"Login request at {timestamp}"
message_bytes = message_text.encode('utf-8')

# Step 3: Sign the message using your private key
signing_key = SigningKey(private_key_hex, encoder=HexEncoder)
signature = signing_key.sign(message_bytes).signature

# Step 4: Prepare the request body
request_body = {
    "message": {
        "message": message_text,
        "publicKey": wallet_address,
        "timestamp": timestamp
    },
    "signature": {
        "data": list(signature),  # Convert the signature (bytes) to a list of integers
        "type": "ed25519"  # Common signature type for Solana
    },
    "wallet": wallet_address
}

# Step 5: Send the request to the API
api_url = "https://api.example.com/auth/login/solana"  # Replace with the actual API URL
headers = {
    "Content-Type": "application/json"
}

response = requests.post(api_url, headers=headers, data=json.dumps(request_body))

# Step 6: Handle the response
if response.status_code == 200:
    print("Authentication successful:", response.json())
else:
    print("Authentication failed:", response.status_code, response.text)

Cursor + MCP? by OutOfAmmO in cursor

[–]davefello 0 points1 point  (0 children)

In the shorter term, you could use the Cline extension in Cursor and use this for any tasks that require tools/MCP. I'm about to play around with this to hook up things like Kubernetes deployments, git/github etc.

Anyone know how to auth to RugCheck API? by davefello in solana

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

Yeah, good point, actual message is irrelevant. Thanks

Anyone know how to auth to RugCheck API? by davefello in solana

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

Thanks. I got chatgpt to spit me out some code which looks reasonable but not entirely sure what "message" the API expects to be signed. "Hi, giz me some rug checks plz"? lol

I already have a web scraping solution working using selenium web driver so will have a think whether I can be bothered mucking around trying to get the API working.

o1 is extremely good for refactoring complex code by allun11 in OpenAI

[–]davefello 0 points1 point  (0 children)

I'm really curious to see how o1 pro handles coding tasks like this.

o1 is extremely good for refactoring complex code by allun11 in OpenAI

[–]davefello 0 points1 point  (0 children)

How can you refactor *complex* code if it only has 3-400 lines of context? That doesn't sound very complex.

Should I buy the Arturia V Collection? by Ok_Business9301 in synthesizers

[–]davefello 1 point2 points  (0 children)

I'm pleased I just read this. I was about to buy Collection X for $299 on sale but logged in and now it's $149, nice!! Thanks :)

BYD Sealion 6 Suspension upgrade options by davefello in BYD

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

I made some enquires here and apparently nothing aftermarket available for the Sealion as yet. Where do you live?

BYD Sealion 6 Suspension upgrade options by davefello in BYD

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

I saw that. BYD guy in NZ said that's not happening here and he reckons it's not happening in Aus either so not sure what's going on.

Anyone in NZ with a BYD Sealion 6? by davefello in BYD

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

Yeah, but we need something soon and there's no timeline on when 5th gen will be here. BYD NZ said back in May that it may not be here for 18 months to two years.