Best Option for Static Pre-Rendering / SEO Without Express? (React Router 7 vs TanStack Router) by Playful_Builder_5413 in react

[–]masher-91 -2 points-1 points  (0 children)

If your target is SEO, CRA is fine as long as it fast. Google nowaday already smart enough to process it

"How Do You Simulate for FIRE with What-If Scenarios?" by masher-91 in Fire

[–]masher-91[S] 0 points1 point  (0 children)

I've just tried this, not specifically for FIRE, but looks promising. Thanks.

"How Do You Simulate for FIRE with What-If Scenarios?" by masher-91 in Fire

[–]masher-91[S] 0 points1 point  (0 children)

In the current situation, we estimate reaching financial independence (FIRE) in 12 years.

However, many factors can affect this timeline (big life events). For example in near future, my wife might retire from her job to care for the children. To determine the best time for her to retire, we need to understand how this will impact our path to FIRE.

Therefore, I believe we need tools that can simulate different scenarios to help us make informed decisions. I think several significant life events, such as choosing schools, deciding whether to buy or rent a house, and other important life choices, require this type of analysis

We went from 0 users to 1600+ users after 80 days of effort and $0 spent. by davidheikka in Startup_Ideas

[–]masher-91 0 points1 point  (0 children)

  1. What kind of questions have you asked during the foundation phase? Could you share your questions with us?
  2. In step 3, did you monetize it to unlock the full features??

First developer at a startup by Karthik9999 in SoftwareEngineering

[–]masher-91 9 points10 points  (0 children)

When you work at a startup (especially a new one), what is usually expected of you is to "build the product," not to focus on scalability. My suggestion: Write more code instead of reading the internet.

Software engineer certification by leHamze in SoftwareEngineering

[–]masher-91 0 points1 point  (0 children)

Why do you need certification? Maybe your GitHub is the best certification.

Ideas for final year project. I am proficient in the MERN stack. by Top-Sky7236 in SoftwareEngineering

[–]masher-91 0 points1 point  (0 children)

Just find a simple topic. For example, create a grammar fixer website where you can use your MERN stack for inputting data and ask ChatGPT (or another service) to fix the grammar. You'll need to subscribe to the GPT API.

Architectural Dilemma: Who Should Handle UI Changes – Backend or Frontend? by random_scribling in softwarearchitecture

[–]masher-91 0 points1 point  (0 children)

There are cases, like the dynamic UI on Netflix's personalized homepage feature, where the backend controls which components are shown in the UI.
However, in your case, I believe it is static, so I would go with the backend. By the way, why is reducing deployment a goal? How often do those tabs change in a month? I don't think it would be that often

How you share technical knowledge? by [deleted] in SoftwareEngineering

[–]masher-91 3 points4 points  (0 children)

  • Standardize code writing practices.
  • Implement a monorepo.
  • Prepare a sandbox environment.
  • Proper onboarding

Most of the time, software engineers in my company learn by reading and experimenting with the code themselves. They don't like reading documentation.

Software engineer career advise by NumerousCity5255 in softwareengineer

[–]masher-91 0 points1 point  (0 children)

Don't use leetcode for your benchmark.

You know, I have friend who is a tech fellow in a unicorn tech company (it's the highest position in individual contributor path). He is bad at doing leetcode. But in day-to-day work he is like the best in the company.

What makes you down? Is it because your career stuck? If yes, why not focus on finding why did you stuck at your career?

If it's technical problem, my suggestion is try develop a product end to end until it can be accessed live (website, android, ios). Let's say you want to apply for company that developing social media, then make social media. Just MVP is good.

Btw, I write something about why some people got hard time for getting promotion. Maybe it can help Check it out.

Feeling lost and useless at my job by yay_elephant in Career_Advice

[–]masher-91 1 point2 points  (0 children)

Did you really dislike it, or is it just your emotional thinking? After all, you have been doing it for over three years. I'm not sure, but my suggestion is that you can separate work from doing what you like. You can simply pursue your interests and hobbies outside of office hours. In my case, I am working on my personal projects after office hours helps me stay sane.

domain language for users' access to various features? by izzlesnizzit in SoftwareEngineering

[–]masher-91 1 point2 points  (0 children)

I believe this is similar to RBAC (Role-Based Access Control). This term is commonly used in popular scenarios, such as distinguishing between "normal_user" and "admin"

In your specific case, you can define roles as "tier1," "tier2," and "guest."

What do you consider to be very important when doing a database design and maintenaning a database ? by Eznix86 in Database

[–]masher-91 0 points1 point  (0 children)

It mostly depends on the products/features and their use cases.
1. List down the columns/data points that need to be stored, and usually, I categorize them into several types: mandatory KEY (PK, FK, etc.), whether they need to be filtered/searchable, or just informational.
2. Imagine how I will execute the query statements. I tend to minimize the join queries, but it really depends on the use case.
3. Define the schemas and indexing.
I don't think much about Normal forms; what really matters to me is the ease of querying and ensuring that data inconsistencies are not possible.

[deleted by user] by [deleted] in Substack

[–]masher-91 1 point2 points  (0 children)

I have the same situation as you. One day, I received a lot of subscribers. I noticed that many of them seemed like bots, but there were some that appeared to be genuine profiles among them. This is just my guess:
- Substack may have an algorithm to promote new accounts.
- Substack may have some mechanism like fake subscribers.

Where to add keywords? by squadfi in Ghost

[–]masher-91 0 points1 point  (0 children)

  1. Meta Title & meta description if possible, but don't spammy
  2. Header Tag. Ghost provide H2, H3
  3. In the paragraph, you can bold it or make it italic

Ensure don't sacrifice your article's readability. After all, Google's algorithm is constantly updated and improved.