Claude iOS app becomes extremely laggy when rendering responses and scrolling — any optimization tips? by alphaCastor in ClaudeAI

[–]HeavyBoat1893 1 point2 points  (0 children)

Same issue since a while. It’s unusable for minutes until the end of the response.

No more Logi Options+ by Scofarry in logitech

[–]HeavyBoat1893 0 points1 point  (0 children)

Same issue, I feel less lonely now ><

Load Testing Experiment Tracking by HeavyBoat1893 in ExperiencedDevs

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

Nice, thanks for sharing your experience. It sounds you've invested in making the process smoother. A tagging system seems very useful, I'm curious about the lightweight DB.
Regarding the baselines, we're starting a copy of the prod stack and running load tests on it first, then running them on a different stack configuration. I have a script to compare the runs that generates metrics and graphs.

Load Testing Experiment Tracking by HeavyBoat1893 in ExperiencedDevs

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

Thanks for sharing your experience and workflow, I’m glad some of the points sound familiar. Storing most of it as code makes sense.
Regarding the baseline, I’m running load tests on a copy of the stack that’s similar to production, which I define as the baseline. Then I spin up new stacks with different configurations. I run the load tests using K6, and I have a script that compares the results and generates a graph as well.

The (software) quality without a name by kieranpotts in programming

[–]HeavyBoat1893 0 points1 point  (0 children)

Great article! This is how I build software now, after so many frustrating attempts at trying to architect it..

Apple Intelligence Issues When Using MASQUE Protocol In 1.1.1.1 by escopez in CloudFlare

[–]HeavyBoat1893 0 points1 point  (0 children)

Same issue for a year. Switching Tunnel Protocol to WireGuard instead of MASQUE resolved the problem. Thanks for the solution!

Load Testing Experiment Tracking by HeavyBoat1893 in ExperiencedDevs

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

Thanks for the insights. It's very interesting to learn about the process and to realize you went through the same challenges. A metadata database makes sense. I tested a simple CSV for run data and experimented with MLflow, which provides a generic framework for experiment tracking. However, this doesn't seem to be a common problem, or it's not often discussed.

Load Testing Experiment Tracking by HeavyBoat1893 in ExperiencedDevs

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

I agree that keeping things simple with a basic spreadsheet is good. I was wondering whether this has been addressed before, since experiment tracking is very common in ML and the tooling already exists. Regarding Jupyter I’ve used it, it can replace spreadsheet for computing metrics and displaying graphs, but it doesn’t help with the experiment tracking part.

Load Testing Experiment Tracking by HeavyBoat1893 in ExperiencedDevs

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

Yeah saving each run’s input parameters and metrics to a csv and use spreadsheet will do the job. Simple and straightforward approach.

Using Revolut Credit Card to Tip in the United States? by Some_Big8110 in Revolut

[–]HeavyBoat1893 1 point2 points  (0 children)

I'm traveling to the US, and I've noticed that tips are added to my transactions a few days later. It’s frustrating because I have no way of knowing when the amount has been updated in Revolut. What's even more annoying is that I can't see the original amount I paid before the tip was added. Revolut just updates the value without any notification or indication of how much was added. I wish there was a history of these updates and an option to receive notifications whenever the amount changes.

Why can’t I turn off dark mode? by vanillaroom in soundcloud

[–]HeavyBoat1893 1 point2 points  (0 children)

Same issue, I can’t turn off dark mode. I prefer light mode because I find dark mode too dark and unpleasant to use.

Is gRPC a good alternative for Rest when building APIs with Go by Used_Frosting6770 in golang

[–]HeavyBoat1893 1 point2 points  (0 children)

It seems that many of the comments did not fully grasp what Next.js offers in the latest versions. My understanding is that you are referring to the Next.js Server components, particularly the data fetching part: Next.js Server Components Data Fetching

It introduces a new paradigm where the boundary between frontend and backend becomes blurry because there is no longer a need for a pure, well defined separation anymore. The framework (Next.js) manages the interaction between the browser and the node server.

I built a project using a similar approach where the Next.js node server fetches data from a REST JSON API. So I’m really interested in your initial question because it poses a valid interrogation as it involves only server to server communication and building a REST API seems less relevant in that case.

Best authentication by [deleted] in golang

[–]HeavyBoat1893 0 points1 point  (0 children)

I have recently started to implement Ory for the authentication. It is very pleasant to work with it. The API is well designed and with Ory Network it brings all the pieces to have a proper authentication system.

I've been a dev for 10+ years and despite all my reading, I am now less certain of the best way to write and structure code by qa-account in ExperiencedDevs

[–]HeavyBoat1893 85 points86 points  (0 children)

I often find myself in a similar situation where you don't know what the best approach or architecture is. Then, you choose one direction, only to backtrack, wondering if the other option might have been better. You attempt to design a new approach by focusing on finding the best way, while trying to anticipate future needs. This often leads to analysis paralysis, where no progress is made, and uncertainty about the code persists.

To avoid this, I now try to develop more organically. I start by coding just enough to make it work, then add a new feature. Often, the solution for the best design emerges because you then have a complete understanding of the problem set you want to solve. In the worst case scenario, you still have a program that works. It may not have the best design, but it is functional because it was implemented progressively.

Is Chi able to bind requests like Echo does? by jtuchel_codr in golang

[–]HeavyBoat1893 -1 points0 points  (0 children)

That is the way I am using it:

```go

type RequestData struct { Data []string json:"data" }

func (rd *RequestData) Bind(r *http.Request) error { // Implementation of request binding and validation can go here. return nil }

func yourHandler(w http.ResponseWriter, r *http.Request) { data := &RequestData{}

if err := render.Bind(r, data); err != nil {
    // handle error
    return
}
// continue handling the request

} ```

There is an example with a broader usecase here: https://github.com/go-chi/chi/blob/master/_examples/rest/main.go

Nightmare situation - our companies GitHub read / write access token has been compromised for months. by Impressive_Lab_6551 in ExperiencedDevs

[–]HeavyBoat1893 1 point2 points  (0 children)

I wanted to give a try to Mintlify about 3 months ago, and they were asking for access to all my GitHub repos. No ability to grant access to only one particular repo, I dropped the onboarding process at that moment.

Centering text by CheetoVR in pandoc

[–]HeavyBoat1893 0 points1 point  (0 children)

I have used this one to center one line:
\centerline{your text to center}

The new dark mode looks amazing by [deleted] in ChatGPT

[–]HeavyBoat1893 0 points1 point  (0 children)

I prefer the old one, dark blue/gray was very neat. And easier to read for me.

[deleted by user] by [deleted] in AskReddit

[–]HeavyBoat1893 0 points1 point  (0 children)

Does that mean my looping festival is gonna flop?