Questions tagged [websites]
Questions about software development for a web site.
184 questions
1 vote
1 answer
243 views
Can I get Open Graph Protocol data without behaving as a web scraper?
In general, to get Open Graph protocol (OGP) data for a given web page, one would need to retrieve the actual HTML, and then extract the meta tags from it. However, this has two problems: Instead of ...
-1 votes
2 answers
148 views
Is there a model or some implementation logic for web layouts?
I am making an application in which the user types BDD scenarios of using a webpage. From this retrieve the widgets and their functionalities and make a "webpage prototype" in Figma. I am ...
0 votes
2 answers
181 views
Prevent download of static files referenced only from pages a user is not authorized to access
Let's say a user is authenticated to a website and can access a given page only if authorized to access it specifically, e.g. if the website has only these 2 pages https://my-classified-docs.com/page=...
4 votes
2 answers
220 views
How to check a solution method submitted by a user?
I am developing a website somewhat like leetcode, however, it will be for website testing using Selenium WebDriver.My service will provide different websites, along with various tasks that describe ...
1 vote
2 answers
3k views
Preventing parent component re-rendering of a big React component when you "Lift State Up"
I have a very big form - let's call it <MyForm> - consisting of the following: text fields and dropdowns custom selector made of selectable cards table input (for this example 50 rows with each ...
0 votes
0 answers
47 views
Web rendering - Trying to figure out the different kinds of rendering
I have a background as a full stack web developer, but didn't code professionally speaking for about 8 years, now focusing on technical and/or functional analysis. In the meanwhile, many things ...
1 vote
1 answer
342 views
Is it hard to "add" semantic web to your website?
I am learning about the semantic web. So far what I know is that the whole idea of the semantic web is to add metadata to the data in your website in order to make the data in your website easier to ...
-1 votes
1 answer
322 views
Where to store unregistered user data?
Where should I store data of user that is not yet registered? Data that I want to store: Search history (to show appropriate products on a store page) Theme preference (dark / light theme) Cookies? ...