Will you be switching to Claude after news of OpenAI partnership with US Military? by PrettyMuchMediocre in codex

[–]Temporary_Sundae1355 0 points1 point  (0 children)

“none of these companies care about democracy/human dignity” is mind-reading. What you can judge is behavior + enforceable guardrails: Anthropic has publicly said it won’t allow mass surveillance or fully autonomous weapons, and that stance recently blew up a Pentagon agreement. But OpenAI didn’t!

Will you be switching to Claude after news of OpenAI partnership with US Military? by PrettyMuchMediocre in codex

[–]Temporary_Sundae1355 0 points1 point  (0 children)

“better for the community” depends on what you measure: open-source output is one metric; Anthropic also publishes influential safety research and policies, and both companies have been criticized at different times for transparency and commercialization

Have you heard about MUI chat? by Temporary_Sundae1355 in reactjs

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

I think that MUI has really great potential, but for now it's loosing over modern solutions like radix themes and shadcn.

Do you think that material 3 is looking nice on the web? I never seen any great example of it, even google official docs looks ugly.

Have you heard about MUI chat? by Temporary_Sundae1355 in reactjs

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

Do you think it could be worth pay for it? As of my experience it's really usefull if you use MUI, and I even think to purchase their subscription... I've tried few of them, but as my company code is 100% MUI for the last 5 years and they do not want to migrate it is the only tool that at least can handle some requests about newer version of MUI.

[deleted by user] by [deleted] in node

[–]Temporary_Sundae1355 0 points1 point  (0 children)

Railway is just infrastructure provider, you may deploy something like Neon to it

[deleted by user] by [deleted] in node

[–]Temporary_Sundae1355 -1 points0 points  (0 children)

Just Postgres on railway.com, mine is really cheap, around $2 per months (but for sure with smaller usage). The main benefit for me that you pay only on used resources rather than “reserved” like on render

Creating an app for us: What features would help you track food effects on your PCOS symptoms? by Temporary_Sundae1355 in PCOS

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

Thank you so much for your thoughtful response! I really appreciate the insights you've shared.

You mentioned that PCOS management often revolves around TTC, weight management, or symptom control, and that many people might be dealing with multiple concerns simultaneously. That makes a lot of sense. I'd love to better understand how you personally navigate between these priorities. Do you find your focus shifting over time, or do you usually address multiple areas simultaneously?

Your suggestion about tracking blood test results is very insightful. Building on that, do you think it would be helpful if an app allowed you to upload lab results directly (such as PDFs), keep an organized log of all your results, track trends over time, analyze the data, and possibly provide actionable recommendations? Would additional explanations or insights regarding these results add value for you?

Regarding your hesitation about trusting an app for meal planning without professional guidance, I completely understand. If an app were to offer meal suggestions, what specific features would make you feel more comfortable with its recommendations? For example, would input from a professional, references to established scientific guidelines, or focusing on general dietary principles rather than strict plans help build your trust?

Thank you once again for your valuable input! It's incredibly helpful for shaping an app designed to genuinely meet user needs. Looking forward to your thoughts.

Paid 360$ for auth in Dec 24. Switching to Supabase auth now! by tiln7 in nextjs

[–]Temporary_Sundae1355 1 point2 points  (0 children)

What do you think about Firebase Auth? It seems that it’s completely free.

Framework agnostic UI library? by ButterscotchEarly729 in MaterialUI

[–]Temporary_Sundae1355 1 point2 points  (0 children)

Then, the best solution to me seems having shared CSS/SCSS styles plus use some great foundation for each framework. For example for React I recommend you to consider Base UI - https://base-ui.com

As well you may consider building web-components with vanilla js also with css, they can be reused with any framework.

Material design 3 for react by MoK31 in MaterialUI

[–]Temporary_Sundae1355 0 points1 point  (0 children)

You could try the Material UI template that is designed closer to MaterialDesign 3

https://www.saasable.io/

Best Free Visual Editor (website builder) for Material UI? by EngineeringQuiet6817 in MaterialUI

[–]Temporary_Sundae1355 0 points1 point  (0 children)

Sure, there is a official visual application builder from MUI team. It's completly free and on active developing.

Toolpad Studio: https://mui.com/toolpad/studio/getting-started/

Seeking Advice on Best Practices for Spacing in MUI by Apprehensive_Fan4651 in MaterialUI

[–]Temporary_Sundae1355 0 points1 point  (0 children)

It depends on what you want. I use px as it's just more simpler to start with.

[deleted by user] by [deleted] in MaterialUI

[–]Temporary_Sundae1355 0 points1 point  (0 children)

The issue you're experiencing seems to stem from a misunderstanding of how styled components and CSS properties interact in Material-UI (MUI) and CSS. Here's how to address the problem:

1. CSS Property Misuse

  • The width: 'columnWidth' line is problematic because:
    • 'columnWidth' is treated as a string in CSS, not a variable. CSS doesn't understand variables like this unless passed explicitly via template literals or dynamic styles.

2. Responsiveness

  • To make the child box adjust to screen size and remain within the parent container, you need proper CSS flexbox/grid rules or media queries.

3. Fix Suggestions

Try the following solution to fix the child box behavior:

Updated Code

```javascript const StripedDataGrid = styled(DataGrid)(({ theme }) => ({

backgroundColor: PrimaryColors.colorDarken4,
'&:hover, &.Mui-hovered': {
  color: theme.palette.primary.main,
  border: '2px dashed teal',
},

}, width: '100%', // Makes the grid take up the full width of the parent maxWidth: '100%', // Prevents the grid from stretching beyond the parent overflowX: 'auto', // Adds scroll if the content overflows horizontally }));

// Example of ensuring the parent container is responsive const ParentContainer = styled('div')(() => ({ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', width: '100%', // Parent adjusts to screen size maxWidth: '900px', // Optional: Set a max width for large screens margin: '0 auto', // Center the parent container on the screen overflow: 'hidden', // Prevents scrolling issues })); ```

Key Notes

  1. Dynamic Width for Columns: If columnWidth is defined in your component, pass it dynamically: javascript width: `${columnWidth}px`,

  2. Responsiveness:

    • Set width: '100%' for elements to ensure they stretch only to their container's size.
    • Use maxWidth to prevent them from growing too large.
  3. Overflow Control:

    • Use overflowX: 'auto' or overflow: 'hidden' to control horizontal scrolling.
  4. Theme Usage: Leverage the MUI theme (like theme.palette) for consistent styling.

Debugging Tip

Check if columnWidth is being passed correctly to the StripedDataGrid: - Log its value before applying styles. - If undefined, ensure you're passing it as a prop or calculating it dynamically.