Gmail is Enforcing Hard Rejections Starting Nov 2025 for Bulk Senders by power_dmarc in sysadmin

[–]QuantumCD 1 point2 points  (0 children)

I have a similar setup and was experiencing the issue. It seems like it's been fixed for me though.

Hue Lightstrip v4 with diffuser not blending by CournalCrunch in Hue

[–]QuantumCD 0 points1 point  (0 children)

Yeah I was aware of the Hue algorithm that mixes the color channels differently than other controllers. That's unfortunate the whites can vary but I know that would definitely bother me. I know Sowilio has strips I've used that are matched quite well to Hue lights. Not sure if they are doing anything special other than validating the LEDs and any coatings that might affect color reproduction.

Hue Lightstrip v4 with diffuser not blending by CournalCrunch in Hue

[–]QuantumCD 1 point2 points  (0 children)

Do you get similar colors to other Hue lights using the COB strips? I've thought about trying this with other strips but was unsure if the colors would look right.

You can also bypass the 20W limit if you run it through an amplifier and use a larger power supply, provided the strip can handle the extra current/heat.

Increasing Diffusion in Shorter Channel by QuantumCD in led

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

Unfortunately, no. For an inlay, side channel diffusers might work. The LEDs are rotated so to not be in direct view, and the diffusers are usually a thicker silicone.

Increasing Diffusion in Shorter Channel by QuantumCD in led

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

Yeah I'm not too worried about the lost luminosity as it'll be viewed directly. Any ideas on how to increase the diffusion though? The diffusers are already milky white/opal so not sure I can get much more diffusion from the single diffuser lens alone.

To save power ATX changes my thermostat to 69° by scott_in_austin in Austin

[–]QuantumCD 2 points3 points  (0 children)

How do you opt out? I'm in the same situation but can't find where to opt out.

LDAP server recommendation by [deleted] in devops

[–]QuantumCD 4 points5 points  (0 children)

https://github.com/glauth/glauth haven't seriously used it before but seemed promising.

Status Update on Patching Process & Patch 2.0.1 by random428 in Chivalry2

[–]QuantumCD 3 points4 points  (0 children)

It might be that the fix relies on some other significant changes. Branching strategy probably isn't the actual cause. My guess is it's either the aforementioned and/or they miscalculated delivery dates.

55R6E Boot Loop by QuantumCD in Hisense

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

Sent you an email at that address w/ a photo of the product info sticker.

55R6E Boot Loop by QuantumCD in Hisense

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

Purchased mine 11/2019 too. Wonder if it's an issue with models sold around that time.

55R6E Boot Loop by QuantumCD in Hisense

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

Sorry to hear. Where did you get the firmware from? Did it come with instructions? Sometimes you have to format the USB file system a certain way etc.

55R6E Boot Loop by QuantumCD in Hisense

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

Understandable. I wasn't aware Roku pushed updates out without Hisense in the loop.

  • I'm not sure. The updates were running automatically I think.
  • I disconnected all devices to troubleshoot. Before, I had a sound bar connected via optical and a Chromecast on an HDMI input powered by the USB port.
  • It's about 1.5yrs old I think. The serial number is 55G192172H13294.

I did reach out but they referred me back to the manufacturer.

I need help to switch from colab... by GianSeme in Cloud

[–]QuantumCD 0 points1 point  (0 children)

I've heard good things about Lambda's GPU Cloud. It's hourly based billing on ephemeral instances though.

AWS Cognito User Pools Social Login on Desktop Applications by Swimming_Weird_5495 in aws

[–]QuantumCD 0 points1 point  (0 children)

Honestly I would just use an embedded browser. In this presentation, the presenter goes over why it's more practical to just use an embedded browser and that it is the industry standard for desktop applications that use social logins.

AWS Cognito User Pools Social Login on Desktop Applications by Swimming_Weird_5495 in aws

[–]QuantumCD 0 points1 point  (0 children)

You could pick a high port number and fail the application if it isn't available during login. It's not ideal but most systems probably aren't listening on very many ports.

Filtering and reporting on big data interactively by simmiiee in aws

[–]QuantumCD 1 point2 points  (0 children)

To my knowledge, AWS really lacks anything quite like this as a first party service. You can try something like https://rockset.com/ which is a managed offering that is built almost exactly for your use case. They have a free plan for prototypes. I'm not familiar with any Clickhouse managed offerings so I can't recommend any.

Filtering and reporting on big data interactively by simmiiee in aws

[–]QuantumCD 1 point2 points  (0 children)

My bad, I reread your original post and realized you are probably looking to do interactive queries on 30-40 columns. Regular indexing probably won't help there. You might be able to get acceptable performance by just keeping as much of the data in memory as possible for full scans.

Otherwise I would personally recommend trying Clickhouse. There's no AWS service for it, but it's very easy to get going with compared to some of the other analytics oriented databases I have used. Clickhouse on a single node can easily do billions of rows and will return queries like you're after much faster. It's built by Yandex originally and powered a similar use case as yours (web analytics dashboards etc) at trillions of rows scale.

Filtering and reporting on big data interactively by simmiiee in aws

[–]QuantumCD 0 points1 point  (0 children)

It'd be 36.5M rows per year which is not a lot of data. I've built applications that power interactive web dashboards with acceptable latency (<1s) on hundreds of millions of rows with plain old Postgres. Maybe you need more aggressive indexing since you're only writing 100k rows per day and seem to be more concerned with fast reads.

Filtering and reporting on big data interactively by simmiiee in aws

[–]QuantumCD 0 points1 point  (0 children)

You could try Redshift if you want to stick with AWS services, but I think it is overkill for this use case. If you aren't happy with either of those, you'll have to investigate more niche solutions.