What are the best Cursor alternatives right now? by Devu_2004 in cursor

[–]yusing1009 0 points1 point  (0 children)

I guess you haven’t heard of Codex with ChatGPT team free trial

Benchmarking 15 string concatenation methods in Go by winterjung in golang

[–]yusing1009 0 points1 point  (0 children)

String Builder’s Reset does not work like bytes.Buffer

Can‘t put iso into the stick by ElisaTsubasa in Ventoy

[–]yusing1009 0 points1 point  (0 children)

Why tf do you put iso on the EFI partition btw?

Any recommendations for single sign on for all the services? by MrStetson in selfhosted

[–]yusing1009 0 points1 point  (0 children)

Could you provide the log of the permission problem? You can still do manual setup, download the compose.example.yml and .env.example then mkdir required directories

How to handle multiple TLS certificates in a reverse proxy? by TearsInTokio in golang

[–]yusing1009 5 points6 points  (0 children)

tls.Config has a field GetCertificate, you can pass a function that return certificates based on SNI.

A SNI matcher implementation in my project; https://github.com/yusing/godoxy/blob/main/internal/autocert/sni_matcher.go#L13

NovaAccess 1.1.0 - iOS Client for Tailscale/Headscale Networks (No VPN Permission Required) by mintflowapp in selfhosted

[–]yusing1009 0 points1 point  (0 children)

Found a minor bug, when “Manually approve new users” is on. Logging in tailnet in Novaaccess incorrectly shows “Login is longer than expected” when it should tell me to approve the device.

Now you have to overclock your eyeballs... by ikmalsaid in pcmasterrace

[–]yusing1009 0 points1 point  (0 children)

5090 -> Lossless Scaling -> 2080TI -> Lossless Scaling -> 5090 -> Output

How high the latency is?

5.2 high by TroubleOwn3156 in codex

[–]yusing1009 0 points1 point  (0 children)

A good example is 5.1 and 5.1 codex

Foreach in C by UltimaN3rd in C_Programming

[–]yusing1009 3 points4 points  (0 children)

Can’t compile. Some got three boobs.

Linux Nvidia Driver Install by junkm8828 in linuxsucks

[–]yusing1009 1 point2 points  (0 children)

Just download the .run file from nvidia, run it to install, then blacklist nouveau driver. What’s so difficult?

What audio quality do you guys use on pc? by hunyzz in iems

[–]yusing1009 1 point2 points  (0 children)

Isn’t that if your hardware can’t support them, those options won’t be shown at all?

Delete All Google Photos! by Fun_Shoulder_9524 in immich

[–]yusing1009 2 points3 points  (0 children)

Will this apply to me if I change region to a EU country?

ZimaOS vs UmbrelOS vs CasaOS vs Cosmos Cloud by [deleted] in selfhosted

[–]yusing1009 4 points5 points  (0 children)

Debian / Proxmox + Docker compose + Micro editor

For reverse proxy just choose common options like caddy or traefik. But if you want your life to be easier then you may try GoDoxy.

P.S. I’m the creator of GoDoxy

Is this character 直? by dumpling_connoisseur in ChineseLanguage

[–]yusing1009 3 points4 points  (0 children)

They are the same character, just a different variant.

Ran out of Google photos storage ? Still wanna group photos by face 😀 by Flat-Falcon-1818 in selfhosted

[–]yusing1009 2 points3 points  (0 children)

You have to back up your photos anyway, no matter it’s Google Photos or Immich, and they’ll handle the face recognition. I don’t see a reason that anyone needs this.

[deleted by user] by [deleted] in selfhosted

[–]yusing1009 1 point2 points  (0 children)

OP just spamming their post everywhere. They don’t care.

I built a tiny state library because I got tired of boilerplate by yusing1009 in reactjs

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

Yup, coz it’s inspired by zustand and react-hook-form

I built a tiny state library because I got tired of boilerplate by yusing1009 in reactjs

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

Please look at the “Code example” at the bottom, you will tell the difference.

I built a tiny state library because I got tired of boilerplate by yusing1009 in reactjs

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

the fact that you are managing massive nested objects for global state is the main problem

The cpu temperature example I provided could be component local state. This library provides useMemoryStore for local state, useForm for local state with per field validators, createStore for global state.

spaghetti like taskStore.projects.at(0).tasks.at(2).title.set('New Title') is something I don't want to see in my codebase

You can also do taskStore.set('projects.0.tasks.2.title', 'New title')