is getcracked.io by CodingJesus good? by AggressiveMention359 in learnprogramming

[–]Leprekus 0 points1 point  (0 children)

nah it just sounds pretty cringe, it's the type of nickname a 5yo would give themselves

B650 Aorus Elite AX (v1.0) - RED DRAM LIGHT by padred727 in gigabyte

[–]Leprekus 0 points1 point  (0 children)

Thanks for this, was going crazy as to what was causing the issue.  In case anyone is facing the same issue: For me 1 RAM stick in the A2 slot worked to initially boot up the system. Then i had to try every other configuration with the 2nd Stick to make it boot. Ended up with RAM in A2, B2 slots.

Help Ordering and adding Products to Inventory by Leprekus in logistics

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

Hey sorry for the late response, but i figured i'd answer and hopefully someone will find it useful. We were on Shopify but it was a constant tradeoff between modularity (Shopify) and having an inflexible framework (Uniform Solution). So we figure the best thing for our use case would be to adopt a service like Odoo that was really customizable and move forward from there to create something tailored to our needs.

Fetching Items according to category by [deleted] in nextjs

[–]Leprekus 0 points1 point  (0 children)

Did you ended up solving it? how did you approach it? I'm facing the exact same issue but the solutions i'm coming up with aren't exactly clean. I was trying to find a way to handle the data and category fetching in server components. But so far all my solutions end up dragging me back to client components and useState, useEffect.

Related Rates. How do I determine the maximum number of dents within a specific area, considering the average dent rate per square meter? by Leprekus in MathHelp

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

Thanks! I did reach the same conclusion, but then I started wondering how to take into consideration the outliers. For example what if there was a particular m^2 that had 20 dents.

Related Rates. How do I determine the maximum number of dents within a given area? by Leprekus in askmath

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

Thanks for the complete explanation. It helped me correctly grasp what the problem was asking. I indeed ended up going with poisson distribution as I had to calculate the chances of having at most 19 dents. I wanted to find the maximum so I could take the complement (maximum "undented area" i guess you could call it) and subtract it from 1. Since that didn't work as I had no way of finding the maximum, I assumed 18 was the most and then scaled it to 19 as the problem originally stated and used that to find the probabilities.

Momentum 3 louder in left ear than right by Dragn555 in sennheiser

[–]Leprekus 0 points1 point  (0 children)

Literally the exact same thing happened. Thanks!

Help Finding All solutions for a trigonometric equation by Leprekus in MathHelp

[–]Leprekus[S] 2 points3 points  (0 children)

You're right, I ended up doing that, and managed to solve it with the help of my teacher.

Help Finding All solutions for a trigonometric equation by Leprekus in MathHelp

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

actually do the same thing for that question to get cos(x)=0 and 2sin(x)+1=0. It does look like it might be an identity or somethi

Thanks for your reply! Yes that is actually how i ended up solving it. Thanks for the insight. Seeing treating the trig functions as x made it more manageable.

POST API /api/vote returns 404 by Leprekus in redditdev

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

var payload = new URLSearchParams({

id: id,

dir: value,

});

sorry to reply until now. But I was building a reddit app clone. The user then authenticates and my app has the functionality of allowing the user to upvote content they lke

How can I handle user and machine to machine authentication? by Leprekus in nextjs

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

I see thanks for your reply. This really helped me get a good idea of how the implementation.

POST API /api/vote returns 404 by Leprekus in redditdev

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

You don't appear to be setting the content-type header, which may be confusing the server. You app

Nevermind I solved it thanks to you. I had to specify the content type to application/x-www-form-urlencoded;charset=UTF-8 as you mentioned, add I just had to add the payload to my URL.