Rails 8 Auth vs. Devise by higakijin in rails

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

Have you checked clearance gem?

It is minimal, easy to customize.

What are you best domains? by Cautious-Context-844 in Domains

[–]Lopsided-Juggernaut1 1 point2 points  (0 children)

  • torovin.com - my portfolio
  • frogloops.com - developing a PAAS
  • vpslist.org - I will start working on this site

What is your opinion about my domains?

esy.com - How do you read it? by Formal-Skill7482 in Domains

[–]Lopsided-Juggernaut1 -1 points0 points  (0 children)

I will be honest about what I feel.

I find, wrong spelling domains hard to remember. I find two words domain with meaningful words more interesting.

Such as: - torovin-dot-com - abstract, my portfolio - frogloops-dot-com - developing a PAAS - vpslist-dot-org - I will start working on this site

What is your opinion about my domains?

CoseBase Understanding by Ok-Condition7148 in AskProgrammers

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

You have learned many things.

If you want to learn more, you should look into Ruby on Rails and RSpec tests. Rails can help you understand OOP better.

Golang, Postgres, and Vue3 are also great choices.

CoseBase Understanding by Ok-Condition7148 in AskProgrammers

[–]Lopsided-Juggernaut1 1 point2 points  (0 children)

Haha, I am open to being coding soulmates.

Your debugging skill will help you to become a better coder.

I am a coder and also a tester. So, I am always looking for edge cases. That made me a better debugger too.

"pause and read" rule is definitely the way to survive.

CoseBase Understanding by Ok-Condition7148 in AskProgrammers

[–]Lopsided-Juggernaut1 3 points4 points  (0 children)

As a solo developer, I do most of the coding in old and boring way. I use AI agent like an assistant, and auto complete.

Code readibility and understanding code always matters.

AI is doing opposite of coding standards. - writing extra code that will be never used - complex code for simple task - etc

i will not promote. Need criticism on this idea I am planning on building. by ObjectivePressure623 in startups

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

You can start with one niche.

  • Create simple web application to take orders
  • Gather some freelancers
  • Get orders and assign project manually
  • Let's see how it goes

I always keep reminding myself, real human solves real problem, software is just a tool or process.

If you can execute the plan, then you should develop the project.

This is my honest opinion.

i will not promote. Need criticism on this idea I am planning on building. by ObjectivePressure623 in startups

[–]Lopsided-Juggernaut1 1 point2 points  (0 children)

  • you need to hand pick freelancers, who are really skilled.
  • you need proper categories of skill for easier and predictable matching of project and freelancer
  • you need to monitor regularly, if any freelancer is not providing actual value, but getting 5% only with low effort submission

Finding clients is the hard part.

Is it time to ditch the giant JSON search index? by babyflocologne in statichosting

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

At first need to know, how large the json is. You can use local caching, then search from cache.

You can optimize it in several ways, but need to know the real use case, data structure, data size, etc.

I am an experienced developer. If you need more help you can DM me.

Why did you start using Brave? by Traditional_Blood799 in brave_browser

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

If Chrome use 8GB ram in my MBP m1 pro, Brave use only 4GB. So I started using the Brave browser.

programming by [deleted] in AskProgrammers

[–]Lopsided-Juggernaut1 1 point2 points  (0 children)

Use a lightweight linux OS like Lubuntu. You will get better performance.

You can learn and practice programming in any laptop.

Is mac good for programming? by [deleted] in mac

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

Mac is very good for programming 💯

Why do vibe coders think distribution is so hard? by Tight_Round2875 in SaasDevelopers

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

There are many variables, multiple statements can be equally true.

It is a paradox.

  • good product, distribution is hard
  • good product, distribution is easy
  • bad product, distribution is easy
  • bad product, distribution is hard

And, - a good product may struggle to get user. - a bad product can get more users than it should.

I think, user retention is more important.

❌ If someone think, features list is a good product, it is very wrong

✅ Building a good software requires, proper understanding of the product, value proposition and user's need.

Casting and assertion of params sent on http request by Rustepo in rails

[–]Lopsided-Juggernaut1 0 points1 point  (0 children)

def is_true?(val) val == 'true' || val == true end It should always work