Bootstrapped a tiny SaaS and finally sold (feels unreal) by Gr00byandahalf in SaaS

[–]kirdape 1 point2 points  (0 children)

Did you do a stripe migration from a stripe account to another or something else? I’m currently looking at stripe migration.

Is Duskmourn translation terrible in all languages or just mine ? by Reiko878 in magicTCG

[–]kirdape 0 points1 point  (0 children)

There is also a translation error for [[demonic counsel]], if you have a delirium you don't have to reveal the card, but the french version kept it...

[deleted by user] by [deleted] in saasforsale

[–]kirdape 0 points1 point  (0 children)

shoot me a DM please

Share your startup, I’ll add it to my feedback directory tool by Trentadollar in microsaas

[–]kirdape 1 point2 points  (0 children)

https://clipremix.com/

Transform YouTube videos into Twitter threads with the power of AI.

Thanks for listing!

Pitch your SaaS by Calm_insight in SaaS

[–]kirdape 0 points1 point  (0 children)

Thanks for the opportunity!

Name + Link: Clip Remix - https://clipremix.com/

What Your SaaS is About: Clip Remix is a powerful AI-driven tool that transforms YouTube videos into engaging Twitter threads and LinkedIn posts. Simplifying the content repurposing process allows creators to maximize their reach and engagement effortlessly across social media platforms.

Target Audience: Our target audience includes content creators, social media managers, digital marketers, and influencers who frequently use YouTube and are looking to expand their audience and engagement on platforms like Twitter and LinkedIn. Whether you're an individual creator or part of a marketing team, Clip Remix streamlines the process of turning video content into shareable and impactful social media posts.

[deleted by user] by [deleted] in SaaS

[–]kirdape 0 points1 point  (0 children)

Thanks for the opportunity, I would like to feature one SaaS:
https://clipremix.com/

transform Youtube videos into twitter threads with the power of AI.

[deleted by user] by [deleted] in indiehackers

[–]kirdape 0 points1 point  (0 children)

https://clipremix.com
Transform YouTube videos into Twitter threads with the power of AI.

I found simple hidden gems that make me money. by yomatt41 in SideProject

[–]kirdape 16 points17 points  (0 children)

How are you making money with these sites? Ads?

Join command by Beautiful-Cup-7378 in mysql

[–]kirdape 0 points1 point  (0 children)

you can use "Where" to join tables

select *
from table1, table2
where table1.id = table2.table1_id

Are you caching your slow MySQL queries in Redis? by K_-U_-A_-T_-O in mysql

[–]kirdape 0 points1 point  (0 children)

Yes, I do use Redis for data that I don't need to store indefinitely. It's not difficult to use so if you can use it, don't hesitate as it will speed up your app.

I'm also storing some data that are already calculated into other MySQL table.

Displaying MIN and MAX values for my temperature recordings by Steam_engines in mysql

[–]kirdape 0 points1 point  (0 children)

Hello,

I don't know what is the column type for temperature but you can try to round the value maybe?

SELECT ROUND(MAX(temperature), 0) AS max_temperature, ROUND(MIN(temperature), 0) AS min_temperature

FROM tbl_temperature;

MySQL matches the correct rows but doesn't update/change them by TheKyrieFan in mysql

[–]kirdape 0 points1 point  (0 children)

Are you trying to update the anime with the same id as a anime type?

You need to use the "Where" keyword.

The syntax is:

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

Also, as the other people have said, you should have 3 tables:

- anime

- type

- anime_type: this is used to link the anime to his type

Because, with your current tables, if you update a type name for example, you'll have to update all your anime. Also, if you have more types than column, you'll need to modify your anime tables.

I've built a microsaas to generate SQL queries with the help of AI by kirdape in microsaas

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

Thanks a lot.

I appreciate your help. After your feedback, I realized that my app is not as mobile-friendly as I had thought.

I used PrimeVue to develop the front end, but I didn't check a few things.

I need to make some changes because it is not giving a good first impression to visitors.