14,470 questions
Score of -2
0 answers
29 views
How do you query select elements by multiple classes, to avoid O(n)
How do you query-select elements by multiple classes, to avoid O(n)?
Let's say I have a grid of x*y elements. How do I search for a block with specific coordinates, circumnavigating O(n) search
Advice
0
votes
2
replies
93
views
What is the best advice you can give me in frontend field to become superior?
Actually I have just finished my first year in computer science and I did a lot through this year. first I learnt the basics of programming through Cs50x and yeah it was tough a little bit but I didn'...
Best practices
0
votes
0
replies
50
views
Scaling a large Next.js SaaS frontend: architecture before introducing tests?
I'm working on a fairly large SaaS product built with Static Next.js. The application supports multiple business configurations/tenants and consumes GraphQL APIs.
As the product has grown, the ...
Best practices
1
vote
2
replies
112
views
If You Were Starting Today, What Would You Learn?
I'm a fresher preparing for software development and technology-related roles in 2026, and I'm trying to identify which programming languages, frameworks, and technologies are currently the most ...
Best practices
2
votes
0
replies
73
views
How can I measure whether React dynamic imports are actually improving application performance?
I am working on a large React application and have started using dynamic imports with React.lazy() to reduce the initial bundle size.
Example:
const Dashboard = React.lazy(() => import('./Dashboard'...
Advice
0
votes
0
replies
44
views
How can I prevent Algolia Autocomplete requests below a character limit without clearing the existing results?
We are using Algolia Autocomplete for site search and want to reduce the number of search requests sent while users are typing.
The desired behavior is to prevent search requests until the query ...
Advice
0
votes
3
replies
89
views
Frontend vs. Backend for simple unit conversion logic (UX & Security best practices)?
I'm implementing an area unit conversion tool on a website. Users will input a value in "Ping" (a local area unit, 1 ping ≈ 3.3058 m²), and the page will convert it to square meters and ...
Advice
2
votes
6
replies
185
views
Frontend Looks Fine with AI, But Should I Still Learn the Basics Properly?
So far, I was involved in frontend development, and now I started to use some AI tools to create UI components, layouts, animations, and also make my work more productive. Frontend side is fine and I ...
Score of 0
2 answers
98 views
How can I make a Hero section fill the remaining viewport height below a header in Nuxt 4 without breaking when the page grows?
I am currently building a website using Nuxt 4 + Tailwind CSS and I am having a problem with viewport units (dvh, vh) and percentage heights (h-full) inside a Nuxt layout.
My layout structure is ...
Best practices
0
votes
7
replies
186
views
Recommend powerful front end tools for a Laravel backend
I'm looking to build a website. I already know Laravel and ReactJS with Tailwind for CSS. I was wondering if ReactJS will be good enough for everything or if there will be a better option.
I'm open to ...
Tooling
0
votes
3
replies
91
views
Front end framework for desktop applications
I am currently working on a back-end in Java for an application. I wanted to create my front-end with JavaFX but after I gave it a shot I didn't like it very much, and plus I thought that it was much ...
Best practices
0
votes
6
replies
145
views
How should CSS be organized in a Laravel project when using layouts, views, and partials?
I’m working on a Laravel project where I use Blade layouts, partials, and views for my frontend structure. I understand how these Blade features work for reusing HTML, but I’m confused about how CSS ...
Tooling
0
votes
2
replies
100
views
Powerpoint template
I am working an web app that needs to create a fully populated PowerPoint presentation from a custom PPT template, I have a report builder that allows the user to select data that needs to be ...
Score of 0
0 answers
80 views
Emergency Weather App Failure - Receiving emergency evacuation alert but not showing it [duplicate]
We're making an advanced weather app that displays emergency alerts. It uses the weather.com API and Supabase Realtime to receive emergency notifications. After finishing part of the frontend, we ...
Score of 3
1 answer
119 views
How to sync UI state between a page and a fetched sidebar component in Vanilla JS?
I am building a multi-page application using Vanilla JavaScript (no frameworks). To avoid code duplication, I fetch a shared sidebar (sidebar.html) and inject it into a placeholder on every page (e.g.,...