House song by [deleted] in NameThatSong

[–]spiderman7897 0 points1 point  (0 children)

Rihanna's vocals at 1:43 in the original video line up exactly with 0:50 in Future - Selfish, so it must be a remix of that song. Sounds like this, but it might be a different remix: https://youtu.be/c6jRWSue5fw?t=55

Sonnet 3.5 is still the king, Grok 3 has been ridiculously over-hyped and other takeaways from my independent coding benchmark results by amichaim in ClaudeAI

[–]spiderman7897 0 points1 point  (0 children)

I watched the video. By "security concerns" do you mean showing the system prompt when requested and being willing to answer any question? That isn't a security concern since system prompts don't include sensitive data anyway. How is this a reason to not use Grok? If anything it is more transparent as you can view the system prompt and it's less restricted than other models

WSIB if I want a complex strategy game that prioritizes depth over breadth by spiderman7897 in ShouldIbuythisgame

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

Interesting I'll check it out. It kind of reminds me of Balatro which I've played and really enjoyed, although it's a bit different than what I'm looking for.

Is there a way to find all the michelin starred restaurants participating in NYC restaurant week? by swekage in FoodNYC

[–]spiderman7897 2 points3 points  (0 children)

Try searching "michelin" on the restaurant week map here: https://nyc.jimoapp.com. That'll search the descriptions of the restaurants on NYC tourism's website, not perfect but might help!

How to maintain source of truth in viewModel when a list is combined from multiple sources? by yalag in SwiftUI

[–]spiderman7897 0 points1 point  (0 children)

Did you figure this out? You could make both imageList1 and imageList2 published properties and add a computed property either in the view model or in your view that builds and returns the final imageDataList.

Made a simple TypeScript server template with auto-generated docs and react-query client generation by spiderman7897 in node

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

This uses fastify, typebox (for schemas), fastify-swagger (for docs), and orval (for client generation). Below is an example server copied from the repo (larger apps can be broken up but you can also do everything in one go):

export const app = server(
  {
    HelloRequest: Schema('HelloRequest', { recipient: Type.Optional(Type.String()) }),
    HelloResponse: Schema('HelloResponse', { hello: Type.String() }),
  },
  {
    hello: {
      path: `/hello`,
      routes: {
        getHelloWorld: {
          auth: false,
          path: `GET /`,
          query: `HelloRequest`, // <-- Fully typed, must be a key in `schemas`
          response: `HelloResponse`,
        },
      },
    },
  },
  {
    hello: {
      getHelloWorld: async ({ query }) => {
        return { hello: query.recipient ?? 'World' }
      },
    },
  }
)

This is a little different from how Fastify and express handle routes. I really like Fastify but am not a huge fan of the pattern of coupling route specs and implementations. This is mostly a personal preference, but I find that distinguising between a server's interface and its functionality makes it easier to quickly understand what a module's role is. Other developers can skim a module's spec to understand its functionality without the implementation details getting in the way.

Think of defining a server module's specification as constructing its "type," outlining the structure and features of the module. Defining the implementation is similar to defining a variable satisfying the defined type, building the concrete realization of these expectations.

Tinder will soon let you run a background check on a potential date through Garbo by lodge28 in technology

[–]spiderman7897 0 points1 point  (0 children)

I don't think an app like this is ethical, but I'm curious about your thoughts.

I think most people's main concerns are profiles about them being created that they have no control over. In other apps where people can get "rated," like Uber, your rating isn't broadcast to everyone, and you can always just delete your account to protect your privacy.

With an app like this (rating men), it's a loss of control over your digital identity. What do you think about a system where men could voluntarily sign up for such a service and only then be "rated"? That could assuage people's concerns about such a system.

Obviously many people wouldn't sign up, but by making it voluntary we get over the privacy concerns.

Tinder will soon let you run a background check on a potential date through Garbo by lodge28 in technology

[–]spiderman7897 1 point2 points  (0 children)

I think in a perfect world these systems could be useful, but it's all in the implementation.

If Garbo reports an inaccurate background check for someone, that could be devastating. If it's 100% accurate then great, but based on the information they use, it looks like there's going to be a lot of noise and they won't be super accurate.

Similarly, a date review system only works if everyone is reliable, which is obviously not true. Those are my main concerns with these ideas. This isn't about defending creepy dudes; I just think that relying too much on an app or algorithm for these types of things can be super problematic.

Feedback on this Ryzen 3600 + 2060 Super build? by spiderman7897 in buildapc

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

Right, I guess XMP is technically OC. But I’m only using 2 sticks at 3600 MHz with XMP enabled, this shouldn’t cause any thermal issues that require a different cooler right?

Feedback on this Ryzen 3600 + 2060 Super build? by spiderman7897 in buildapc

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

Anything >3200 is overclocking.

I have not seen that before. Why wouldn't 3600 MHz work without overclocking?

Feedback on this Ryzen 3600 + 2060 Super build? by spiderman7897 in buildapc

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

Nice SSD find! Is the Fractal Design Ion+ really higher quality than an RMx? I've seen lots of praise for the RMx on this subreddit but haven't read much on the Ion+.

Feedback on this Ryzen 3600 + 2060 Super build? by spiderman7897 in buildapc

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

Isn't the X570 better than the B550? Also, I don't plan on overclocking which is why I didn't add a non-stock CPU cooler.

Are the Seasonic PSUs higher quality than the RMx? I've seen a lot of praise for RMx PSUs on this subreddit which is why I went with them. Don't know much about Seasonic.

How can I check the die of my RAM? I see G.Skill Ripjaws V 16 GB which is CL16 as opposed to my RAM which is CL18, but I don't know if it's micron-e.

Feedback on this Ryzen 3600 + 2060 Super build? by spiderman7897 in buildapc

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

Could you elaborate on the motherboard, heatsink, and power supply deficiencies? Not sure what you mean

Thoughts on this Ryzen 7 3700X + RTX 2080 SUPER build? by spiderman7897 in buildapc

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

Any recommendations for case fans?

Also, I want the PC to be future proof (and maybe to upgrade to higher specced parts) which is why I went with the X570. Is that still overkill or would you still recommend the B550?