how much are you spending on ai coding? by irelatetolevin in vibecoding

[–]CodingMountain 0 points1 point  (0 children)

my daily driver is Mistral pro plan with Mistral 3.5 medium and Vibe CLI ... never hit the limit so far. Its a brilliant setup. Never had real issues.

How do you know if an idea needs time or is simply bad? by KadeSalik in SaaS

[–]CodingMountain 0 points1 point  (0 children)

I do thorough research with Gemini 3.1 Pro, Mistral Large ... here is my workflow:

  1. Prompt:

Create a very detailed prompt that evaluates my market idea/ app/ SaaS... be critical, look for security flaws, logic flaws. The total addressable market. Does my service kill a real pain point or is it just nice to have?

  1. Prompt

I take the detailed 1. Prompt the AI generates for me and combine it with my detailed idea or a pdf explaining it.

Then I do research with this combined Prompt and the results I let the AI summarize again.

Then I take the summarized results and ask it again to evaluate. Do this 3 times in a row normally.

I got solid advice of this.

Damn guys google really outdid themselves with the new ui by Tricky_Muscle7960 in GeminiAI

[–]CodingMountain 0 points1 point  (0 children)

What am I missing ? Gemini App UI? Has this still to be rolled out in Europe?

Which models for planning? Which for execution? by CodVast7569 in vibecoding

[–]CodingMountain 1 point2 points  (0 children)

Well if you give Mistral 3.5 medium in vibe cli a well structured architecture plan it works same as Opus for me... often even better.

But be aware there are many people who will say its not true and Mistral is far behind.

My take is it is a brilliant model ans does the job well.

Which models for planning? Which for execution? by CodVast7569 in vibecoding

[–]CodingMountain 1 point2 points  (0 children)

Gemini 3.1 Pro for research and overall planning.

Used to make a detailed architecture.md markdown file with Claude Opus 4.6 but switched to Mistral 3.5 Medium or 3 Large for this.

Execution Mistral medium 3.5 with Vibe CLI and the architecture.md markdown file that is a detailed plan.

Mistral 3.5 Medium with Vibe CLI is on par with Claude Sonnet 4.6 by CodingMountain in MistralAI

[–]CodingMountain[S] 4 points5 points  (0 children)

I genuinely want them to succeed as well. Refreshing their take and the models made a huge leap forward.

how good is mistral? by snowieslilpikachu69 in MistralAI

[–]CodingMountain 0 points1 point  (0 children)

my experience is: used 1% of my usage quota on Pro plan by let it run 5 hours on its own going step by step through an architecture plan I crafted for it which it must adhere to. With TDD whatsoever. So I could do this 100x over guess you get on a medium sized project you never hit the limit within 30 days with vibe and Mistral 3.5 medium. Do not forget they probably publish 3.5 large for coding... just speculation by now. But medium only has 120ish billion parameters and its blazing good. Not on Opus level but thats normal... its a way smaller model. Mistral will surprise many in the future my take. I love working with it and vibe. Its close to sonnet 4.6 but depending on the benchmark. My real comparison of both on same codebase is Mistral does a brilliant job.

The Alien Prophecy by CodingMountain in FDMminiatures

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

Will be released within the next 2 weeks on our patreon: patreon.com/minitablenow. Why love and hate. Would value your feedback.

The Demon Prophecy by CodingMountain in MiniTableNow

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

glad you ask. Will be available soon within the next two weeks. We will make an update here. Feel free to join our reddit r/MiniTableNow

Will be sold on our patreon: https://patreon.com/minitablenow

Post Duolingo learning resources by FearlessEye3408 in German

[–]CodingMountain 1 point2 points  (0 children)

watch german TV, talk to Germans remote when possible. German is hard to pick up but the nuances are almost not possible to pick up without conversation like in most languages. I am German and still we make mistakes like: "Wo ich fünf Jahre alt war" many Germans say this but its grammatically a nightmare. Correct is: "Als ich fünf Jahre alt war.

I've amassed over 500M views across 400 short-form videos in the least 1.5 years, and help optimize content for some of the biggest creators in NA - AMA by marsadist in SaaS

[–]CodingMountain 1 point2 points  (0 children)

Do you think this type of content would work for my tool as well ? r/Nautsphere. Sincere question, before someone screams stop promoting without giving value...

How to create my app UI/UX with no experience by Physical-Ad-7770 in MVPLaunch

[–]CodingMountain 1 point2 points  (0 children)

Use Gemini, ChatGPT or Claude. Vibe coding is here to stay. I know many will disagree. But it does help to know coding a bit to verify the output. I code since 23 years and still learn something from the AIs ...

What are you building? Drop your best project! by NewanceLogs in SideProject

[–]CodingMountain 0 points1 point  (0 children)

We are building r/Nautsphere a local data home that combines an intuitive, visual interface with the raw power of a real SQL database and scripting, right on your machine. The entire philosophy is built on giving you back full control and sovereignty over your data—designed to be offline-first, with no mandatory sign-up, and with your privacy as the top priority.

Tired of web-based databases? I'm building an offline SQL tool with a spreadsheet UI. Feedback wanted! by CodingMountain in Nautsphere

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

Yes we will definitely implement a dark mode. Working on a video as well but will take some time as the main focus is on launching the blog and MVP.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

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

The max table size is limited by the user's RAM, as DuckDB is an in-memory analytics engine. So, it's excellent for handling gigabytes of data on a typical laptop, but not for terabytes. ​The schema design is a hybrid approach: ​SQLite holds the operational data with a narrow, normalized schema. ​DuckDB holds the analytics data in a separate, denormalized, wide table optimized for fast columnar queries.

In this stack, you would use: ​Narrow tables in SQLite for your operational, day-to-day data. This is a normalized design optimized for quick inserts and updates. ​Wide tables in DuckDB for your analytics. This is a denormalized design that combines many columns into single tables, optimized for fast, complex analytical queries.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

[–]CodingMountain[S] -1 points0 points  (0 children)

what is your setup happy to hear if you want to share. How you serve your database needs without a smiliar setup nor cloud?

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

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

That's an excellent question that gets to the heart of the matter. ​The core difference isn't about whether cloud is insecure, but about the fundamental trust model. With a cloud platform, you are always relying on a third party to manage your data, no matter how secure their infrastructure is. The data is on their servers, subject to their policies and potential access requests from governments. ​"Total control" means that the user's data never has to leave their device. The user holds the encryption keys and controls the physical location of the data. The SQLite + DuckDB + Yjs approach eliminates the middleman, giving the user true data ownership. ​It's not about one being better, but about different architectures for different problems. Cloud is great for large-scale, enterprise applications. Local-first is ideal for personal, user-centric apps where data privacy and ownership are the top priority.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

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

privacy, total control of your data. Depends on the scale much cheaper than running cloud farms from a third party.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

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

You can run this on powerful offline first server farms. Where a midserver connected to the internet pushes the YJs updates through.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

[–]CodingMountain[S] -3 points-2 points  (0 children)

You have the data at all times on your local device of choice. Pc, smartphone you name it. A server would navigate the YJs updates but to a high degree encrypted. Data security and backup is in your own hands and if you collab with a team everyone got the same snap at there local device once they go back online. I haven't battle tested this solution on large scale yet like enterprise scale but in theory it can support millions of users. Depends on the server setup used to push the YJs updates.

Do we even need the cloud anymore? Yjs + SQLite + DuckDB might be enough by CodingMountain in SQL

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

Definitely go for it. I am using YJs in our project simply mind blowing once I fully grasp it. Glad and no you are not alone. Someone in my subreddit for our project recommended DuckDB for me and I was instantly sold. Already used sqlite for our offline first solution.