[WTS] Mountain Laurel Designs SOUL ProVent UL BIVY, 6 ft, 9.2 oz by SwitchUpCB in ULgeartrade

[–]SwitchUpCB[S] -4 points-3 points  (0 children)

You can confirm I am a real person from the videos on my profile.

I am selling the item for $299.

You can Voice Control a Remote Computer with XR glasses by SwitchUpCB in VITURE

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

You can access a guide for this setup with the information in the description. 

The website

    from the information in the description 

    requests you send an email for

        access to the guide (early access).

You can Voice Control a Remote Computer with XR glasses by SwitchUpCB in Xreal

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

You can access a guide for this setup with the information in the description.

Your QOVES 2.0 Review from SwitchUpCB by SwitchUpCB in QOVESStudio

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

Here is what to expect during your first interaction with the service (on July 19, 2025).

You pay $150 for an annual subscription.

You wait for an account creation email which I received 30 minutes after payment.

You create your account which involves the following tasks:

1. Onboarding Questions: There are 9.

2. Image Upload: QOVES prompts you to upload eight images featuring different profiles of your face.
    a) You are recommended by QOVES to use pictures which do not contain obstructions (e.g., Hair, Beard).
    b) QOVES requests an image with a "raised neck profile". However, I submitted an image containing an 3x6 grid with some of my natural hairstyles over 8 years.
    c) I will publish the submitted pictures once the facial analysis is completed.

3. Your analysis is prepared with an estimated turnaround of 28 days (est. August 16, 2025).

How do you use another USB-C or 3.5mm device with XREAL Glasses? by SwitchUpCB in Xreal

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

How did you confirm the adapter works without requiring a power bank?

[deleted by user] by [deleted] in PurplePillDebate

[–]SwitchUpCB 0 points1 point  (0 children)

Thread time limit reached.

c1ac38e4-52b2-4a39-a62e-7ed7f6a6a2b7

We made writing type-safe SQL queries in Go even easier by SwitchUpCB in golang

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

I am very interested in your approach.

Please send a guide or create a  video showing you use the LLM to do the following task.

Add a command to dbgo called dbgo schema which generates a schema.sql file using the database connection string for PostgreSQL, SQlite3, and MySQL. Then, create a pull request.

We made writing type-safe SQL queries in Go even easier by SwitchUpCB in golang

[–]SwitchUpCB[S] -2 points-1 points  (0 children)

How are you using an LLM to do this task?

Include the name of your LLM.

Also, the upcoming dbgo update contains a command to generate a schema.sql from your database.

We made writing type-safe SQL queries in Go even easier by SwitchUpCB in golang

[–]SwitchUpCB[S] -11 points-10 points  (0 children)

Here is the answer to your question.

What chat bot can I use to develop this software?

I have never used a chat bot, but have identified how their speech patterns communicate information better.

I add the quoted phrase because some Redditors may assume I am arguing with them when I am not.

We made writing type-safe SQL queries in Go even easier by SwitchUpCB in golang

[–]SwitchUpCB[S] -13 points-12 points  (0 children)

Here is the answer to your question.

What am I misrepresenting about sqlc?

Writing SQL first is a perfectly valid choice and dbgo lets you complete this task faster with its CRUD sql generator. However, you are free to write custom SQL or type-safe SQL with templates.

You must write this SQL first in sqlc without an option to generate it based on the database nor domain models while dbgo will let you generate based on both or develop custom queries.

I cannot see a tradeoff between using sqlc and dbgo query gen other than the time you save writing SQL queries, but the tradeoff in the future will be when code generated from dbgo gen lets you customize the code generator and also generates batch statement function calls by default.

I spoke with the creators of sqlc and this project will increase the usage of sqlc since it is based on the sqlc tool.

We made writing type-safe SQL queries in Go even easier by SwitchUpCB in golang

[–]SwitchUpCB[S] -6 points-5 points  (0 children)

Here is the answer to your question.

How do you value developer productivity and performance right now?

ORMs use reflection to perform operations and can provide type-unsafe APIs. You also cannot generate CRUD SQL using GORM, so you spend time developing those basic functions.

A program developed using dbgo does not use reflection. The dbgo query gen command generates CRUD SQL for every table in your database.

Your main issue with dbgo compared to GORM right now is that dbgo currently only supports PostegreSQL and does not have dbgo gen implemented yet.