1,186,247 questions
Tooling
1
vote
1
replies
31
views
New web trends for a dental system
I'm currently developing a website for a dental clinic where users can schedule and track their appointments, and the doctor will maintain all records online. The entire project is being built using ...
0
votes
0
answers
34
views
Outlook changes the background of generated HTML body in an email depending on the user's theme
I am using a HTML template (shared below) with placeholders to generate the body of an email, which is sent to users using a logic app workflow. Despite attempting to define the [data-ogsc] attribute, ...
-3
votes
0
answers
44
views
CODE-39 Not showing full barcode needs to be Code-39 Full ASCII [closed]
I'm stuck with Code 39 not generating the correct barcode. It's too short. I need it to generate the full length version. I've attached my JavaScript for you to look at.
For reference see here https://...
Tooling
0
votes
3
replies
141
views
Vibe Coding Is Also Right Way?
I am a full stack developer maked many projects through AI agents they are perfectly working and deployed but i want to ask that i dont learned node js perfectly i cant understand many things but i ...
-2
votes
2
answers
134
views
Why does this work on windows but not mac? [closed]
I'm using flask to run a website, working across my personal imac (running macos 26) at home, and a windows PC (running win11) at college to code, storing all the code in github. I run app.py from the ...
0
votes
0
answers
30
views
How do I match the start of a class name with CSS? [duplicate]
I am trying to make a CSS selector to match elements with a class that starts with ai-. So for example, I would want to match items with ai-images or ai-videos, but not kizuna-ai-images or samurai-...
-4
votes
0
answers
72
views
How to send rendered HTML page using Gmail? [closed]
I have an HTML file which has some style. If loaded in browser, e.g. Edge, it looks OK.
Now I want to send the rendered HTML as an email using Gmail. What I will do is:
Copy the rendered page from ...
Advice
1
vote
9
replies
111
views
Learning coding from scratch
I wanted to start learn how to code from scratch without using the help from AI. What should I know about coding, like which programming language I should start with, how to test the code if it works ...
Advice
0
votes
1
replies
43
views
What is the HTML to create a Soundcloud Song searcher?
SoundCloud offers an Iframe player for individual songs, but I'm looking for a way to embed a search feature to play any song. What HTML code will allow users to search and play songs on SoundCloud?
-1
votes
0
answers
36
views
Changing the shape of the backdrop-filter in css to match an element that's been distorted by an SVG filter [closed]
I have a button in my code that I applied an SVG displacement filter to. I want the backdrop of this button to also distort stuff behind it, as it's meant to look like water. The issue with this is ...
1
vote
1
answer
50
views
Map not rendering with Leaflet.js
I'm returning to leaflet.js and I am unable to render the map with the tutorial from "Leaflet Essentials"
When I save the file as an .html and open it, there is a blank webpage. I assumed it ...
Advice
1
vote
2
replies
87
views
How can I consume a REST API from pure JavaScript without using fetch()?
I want to develop a web app that works in older browsers. I know XMLHttpRequest exists, but I don't know if it's the best option or if there's another alternative. If anyone knows, I would really ...
-2
votes
0
answers
93
views
Created elements in my game are sometimes doing their needed function, sometimes not [closed]
I'm making a game where "Blorbs" roam around and drink water when thirsty, eat when hungry, and have kids if they have enough food and water.
My whole problem is that the Blorb clones I make ...
0
votes
0
answers
72
views
Related Posts are not showing thumbnail on blogger
Some time ago, I installed in my site (using Blogger) the Related Posts gadget. The results are good, and really show related posts, not just prioritizing newer posts like other gadgets that I tried ...
0
votes
2
answers
53
views
How to best create a fake HTMLElement for mocking in unit tests and why does not DOMParser/Document.parseHTMLUnsafe work and only return HTMLDocument?
Background
I have code that:
wants to check whether an element is a HTML Element with (if) thing instanceof HTMLElement and then act accordingly. According to Stackoverflow this is the modern, ...