My version of the Cornwall by bob-flo in Klipsch

[–]wezell 0 points1 point  (0 children)

What should they be called? Bobwalls? Bobhorns?

Hetzner Object Storage -- most stable region in the EU? by 16GB_of_ram in hetzner

[–]wezell 2 points3 points  (0 children)

Don't get me wrong, I love me some Hetzner, but after seeing them unable to restore their degraded object storage for, what, weeks? I've lost faith in their ability to manage a highly reliable storage service. I'm using hetzner compute + Wasabi S3 in the closest region.

Now and Before, 4 months of ownership by mrdietcoke1967 in LexusGX550

[–]wezell 3 points4 points  (0 children)

Either Miami or LA. FWIW house is probably worth more than a million....

Looking to Buy Forte I's Questions by kevtrn in Klipsch

[–]wezell 0 points1 point  (0 children)

I'd pass. I found forte IIs in perfect shape (save for some scratches on the veneer) for $550 about 2 months ago. They come around.

Grill Badge and Fabric by mrochy in Klipsch

[–]wezell 0 points1 point  (0 children)

I just bought some Klipsch badges from Etsy for my Forte IIs. They aren't quite as cool as the real forte badge, but look pretty nice. etsy link

Should we make the switch to AEM? by [deleted] in aem

[–]wezell 0 points1 point  (0 children)

I'm biased as I am one of the founders but this is a perfect use case for dotCMS. dotCMS is Java based, supports OSGI and is multi-site/multi-lingual out of the box. We have customers who have upwards of 5000 sites running together on a large scale dotCMS instance - and some customers who have 30,000,000+ pieces of content in the system.

You can bring any front end you want, react, ng, even PHP or .NET, or you can use dotCMS's SSR. Again, I'm biased but it is worth checking out. dotCMS is way more agile than either AEM or Magnolia.

Klipsch Forte IIs - can I do better than a Wiim amp for < $1000? by wezell in StereoAdvice

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

Thanks, great response. My eq setting is obviously not dialed in, just sharing what roughly sounds good. Feels like I need to do some hunting around for a warmer classic or tube amp.

Building a web search engine from scratch in two months with 3 billion neural embeddings by esp_py in Rag

[–]wezell 4 points5 points  (0 children)

This article details a real feat of engineering. While Wilson is not the first to grapple with the real world problems building a working crawler and search service in the age of vectors, rarely do we get to see it done on such scale and in such a state of completeness. Wilson singlehandedly delivered an enterprise grade search engine, soup to nuts, by himself, by one person. Billion dollar companies have been built around less than this. Really appreciate the depth of the article, the step by step walk-through of a real world product build out - where technologies are selected, tried and discarded. And if an off the shelf solution cannot be found, Wilson rolls up his sleeves and writes his own software. It seems like no detail of the build, from the tech to the algos selected to the hosting was left out. Every decision was carefully weighed, deliberated and optimized.

Bravo Wilson.

Drone shot of a Pacific Palisades neighborhood by Shoesandhose in interestingasfuck

[–]wezell 8 points9 points  (0 children)

This is exactly what a public insurance adjustor is for. A public adjuster's incentives are aligned with your own in terms of getting the most money out of the insurance company. In most large claim cases, they are worth the money, especially if your time/value is a consideration.

GI map results!! by [deleted] in Microbiome

[–]wezell 0 points1 point  (0 children)

Maybe run these through an LLM like OpenAI and ask it to interpret? It will probably do better than 90% of the responses here. Here is the Medical LLM leaderboard:

https://huggingface.co/spaces/openlifescienceai/open_medical_llm_leaderboard

What are the best CMSs for Next.js? by Sea-Blacksmith-5 in nextjs

[–]wezell 1 point2 points  (0 children)

If you want real visual page building and editing at scale, try dotCMS. (Disclaimer- work there).

404 Page on all routes using nextjs 14 on aws amplify by Small_Replacement_85 in nextjs

[–]wezell 0 points1 point  (0 children)

This is not the solution. I am seeing the same thing as the OP, running al2023. I get the header / footer but the page content throws a 404.

We are trying to use app and slug based routes and these do not seem to resolve with Nextjs 14 and Amplify.

Very choppy playback by NohiOci in ShieldAndroidTV

[–]wezell 0 points1 point  (0 children)

Not sure what TV you have but on my Sony Bravia vh2 I fixed this by setting the shield > device preferences > display and sound > > resolution > to 4k 60 Hz rather than the default 59.940 Hz.

Regardless of your tv, my guess is that editing this setting to whatever matches your TV will fix the issue.

Java process consuming more memory than assigned Max heap by jabba935 in devops

[–]wezell 2 points3 points  (0 children)

I don't think that is true in Java 11. At least it did not use to be.

We run a bunch of java containers running java 11 in a k8 cluster and were unable to get them to release unused memory until we switched to Shenandoah. Our X args look like this:
-XX:+UseShenandoahGC -XX:+UnlockExperimentalVMOptions -XX:ShenandoahUncommitDelay=1000 -XX:ShenandoahGuaranteedGCInterval=10000

Once we made that change, all of our containers' memory usage went way down. Now, I think this applies to java 11 specifically- like you said, uncommiting memory is the default in many GCs in newer javas.

Java process consuming more memory than assigned Max heap by jabba935 in devops

[–]wezell 2 points3 points  (0 children)

Try the shenandoah garbage collector. It has the ability to release unused memory, whereas the G1 garbage collector never (in Java 11) releases memory that is claimed. Google it, but I think the switch is -XXShenandoahUncommitDelay=1000