▲ 7 r/ForWindowsHelp+1 crossposts

Can't access api.nuget.org on Windows, ERR_SSL_VERSION_OR_CIPHER_MISMATCH error

I am writing code on Windows, and I can't access the public endpoint for NUGET (a .NET package repository).

When I go to the API URL in the browser, I get "ERR_SSL_VERSION_OR_CIPHER_MISMATCH", when I expect a json file, or some HTTP error.

I used SSLlabs test to see what is supported, and Get-TlsCipherSuite in powershell to see what my machine supports. Both sides support TLS_AES_256_GCM_SHA384 and TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384

Windows registry `HKLM SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols` has no subfolders, Windows 11 supports TLS 1.2 and 1.3 by default, idk if the keys are needed.

EventViewer shows multiple errors with "Schannel" source, for many different client processes:
```
A fatal error occurred while creating a TLS client credential. The internal error state is 10013.
The SSPI client process is OneDrive (PID: 33100).
```

My app is published on Azure Marketplace, and *somehow* that account keeps getting added automatically to "Accounts > Access Work or School" in Windows, idk if that can have an effect.

What else can I check or disable on my machine to restore nuget access?

reddit.com
u/Ordinary_Squirrel291 — 6 days ago

Get Serilog-like logs with OTTL to reduce size without losing data

I wrote a blog post to illustrate how OTTL or Clarivize can help reduce logs data volume by
making your logs Serilog-like.

Go from expanded logs like this (382 bytes):

\[2026-05-26T21:17:44.971Z\] "GET /images/products/TheCometBook.jpg HTTP/1.1" 200 - via\_upstream - "-" 0 251621 0 0 "-" "Mozilla/5.0 (X11; Linux x86\_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/147.0.0.0 Safari/537.36" "2179c69b-427f-9476-8e99-2d334a5e0400" "frontend-proxy:8080" "172.19.0.16:8081" image-provider 172.19.0.20:57934 172.19.0.20:8080 172.19.0.30:42588 - -

To a shrunk version like this (260b bytes):

\[T\] "GET /images{url\_path} HTTP/1.1" 200 - via\_upstream - "-" 0 251621 0 0 "-" {user\_agent\_original} "2179c69b-427f-9476-8e99-2d334a5e0400" "frontend-proxy:8080" {upstream\_host} {upstream\_cluster} [172.19.0.20:57934](http://172.19.0.20:57934) {server\_address} {source\_address}:42588 - -

It may look like a small change, but you're probably recoding - and paying for - millions of these per day

Optimize Log Volume with OpenTelemetry Transform Rules

reddit.com
u/Ordinary_Squirrel291 — 3 months ago

Cleanup SQL query

I have a GO app that queries a database and it is instrumented with OTel.
I want to clean up the query as recorded in telemetry (not changing the code).

The GO code (screenshot below) produces this value:
"\n\t\tSELECT p.id, p.name, p.description, p.picture, \n\t\t p.price_currency_code, p.price_units, p.price_nanos, p.categories\n\t\tFROM catalog.products p\n\t\tWHERE p.id = $1\n\t"

This SQL query is recorded as a span attribute "db.query.text".

Q: How can I remove the escaped whitespace in the collector (or elsewhere?) so that there is a single space where there are sequences of escaped whitespaces?

GO code

reddit.com
u/Ordinary_Squirrel291 — 3 months ago
▲ 2 r/Multicopter+1 crossposts

I am designing a large drone frame that I'm planning on using with a BetaFlight FC.

To simplify component placement, I want to put the FC about 2" forward from the geometric center of the motors. The distance between adjacent motors' centers is 18".

BetaFlight has rotational offsets for FC orientation (roll, pitch, yaw), but I don't see translation offsets. ArduPilot has translation, so it probably matters.

Do you think 2" off-center placement on 18" frame would matter?

If it matters, is there a way to compensate in BetaFlight config?

reddit.com
u/Ordinary_Squirrel291 — 4 months ago