web Questions
10
Solved
As its name suggests devtools should be visible or accessible only during development and not in production. I don't want my end users playing with the state and dispatcher or seeing what's going o...
Smut asked 29/3, 2020 at 2:15
7
Solved
After I installed Apache on my web server there was created a folder called www. Whatever files like HTML and PHP files I put there it will be on my website.
However, I followed one of the tutorial...
15
ES6 modules allows us to create a single point of entry like so:
// main.js
import foo from 'foo';
foo()
<script src="scripts/main.js" type="module"></script>
foo.js ...
Biodegradable asked 6/12, 2017 at 13:30
7
I'm trying to develop a simple app to browse my website. However, my website contains some javascript and it doesn't successfully show my website.
In the past development with Android, the same app...
5
const connect = auth.createUserWithEmailAndPassword(email,pass).catch(function(error){
if(error.code === 'auth/weak-password'){
errmsg.style.display = 'block';
errmsg.style.opacity = '1';
err...
Morris asked 8/3, 2018 at 22:54
4
Solved
I have a text area that contains text that I want to output to a text file for users to download.
I'm using this function to grab it when users click the save button
function saveTextAsFile()
{
...
Tannen asked 4/10, 2013 at 20:36
4
Solved
I'm trying to program a simple web-crawler using the Requests module, and I would like to know how to disable its -default- keep-alive feauture.
I tried using:
s = requests.session()
s.config['ke...
Karl asked 8/1, 2014 at 23:42
6
Solved
For some reason, Chrome is displaying the SVG without the images in its Image tags.
Here is a sample from my SVG:
<image xlink:href="blocker.png" height="312.666661" width="85.693825" y="16.4...
11
Solved
I am new at web-services. I am trying to generate the stubs using this command:
wsimport -d ./build -s ./src -p com.ECS.client.jax http://webservices.amazon.com/AWSECommerceService/AWSECommerceSe...
Popish asked 4/1, 2014 at 11:59
2
Solved
I'm trying to implement a simple web page view, with an appbar, a content and a footer.
I'm struggling with the position of the footer.
What I want:
if the content does not fill the whole screen, ...
6
Solved
I have a hero with multiple images, I want to display images according to screen sizes, for example, if the user is using a big screen, the hero will load the large/wide images, and if he uses a ph...
Mailand asked 19/11, 2022 at 1:13
3
Solved
I'm trying to completely remove the vibration that occurs on a long press of an element in a mobile browser.
Specifically, I have an image that I'm adding my own long-press functionality to, but t...
Ryter asked 7/9, 2017 at 4:22
6
Solved
C# has:
System.Reflection.MethodBase.GetCurrentMethod().Name
Does Dart have something similar but returns results for both the function that is currently being run as well as the name of the ...
Jylland asked 22/4, 2018 at 14:4
4
Solved
We have an official company website. When we check the page speed, the site is ranking low and showing Google Tag Manager script in "Reduce unused javascript". As google tag manager is im...
Crore asked 15/7, 2021 at 9:26
16
Solved
I'm writing a short web form application using spring boot and thymeleaf on IntelliJ, but it seems that in the html file, all fields in the model cannot be resolved. Here is my code:
Controller cl...
Aceves asked 2/8, 2016 at 1:44
8
I'm kind of new to HTML. I'm trying to display an image on my website but for some reason, it just shows a blue box with a question mark in it. I've looked everywhere on the internet, but none of t...
3
Solved
After flutter 2.5 update listview is scrolling only on mobile platforms. It doesn't scroll when I open it on the web. It was working fine in the previous version. I tried the scroll physics but it ...
12
I am doing speed optimization for my website application. And I found some practises to do that.
For example Best Practices for Speeding Up Your Web Site from Yahoo.
Among them are:
Minify JavaSc...
Awe asked 3/2, 2009 at 16:24
7
Solved
I've been following Sentdex' Flask tutorial. He's using a Venv to set up his Flask, but didn't set his Python up to work with a Venv. I've tried installing Flask globally - yet it still doesn't wor...
13
Solved
My site is http://example.com/en/
I made a favicon for it.
In the head I have:
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
I can see the...
0
Is there any way to prevent scroll-chaining, i.e. prevent the body from scrolling, by using a <div /> with overflow: scroll and overscroll-behavior: contain, without having contents that over...
Falito asked 6/9, 2023 at 16:25
4
I want to start a Web Development project with GWT in Eclipse. For that I am following the tutorial on http://www.gwtproject.org/doc/latest/tutorial/create.html
The form to create the Project does...
1
Solved
I have a .NET 6 web API that attempts to validate a JWT Bearer token with the following code:
objReturn = new JwtSecurityTokenHandler().ValidateToken(strJwtToken,
new TokenValidationParameters
{
...
Poulin asked 23/7, 2023 at 23:32
3
I installed "react-speech" package for my application to build text to speech functionality. But while importing the package I'm getting the following error. I did enough googling to reso...
Gilmour asked 19/10, 2020 at 18:10
8
I have an issue when running docker-compose up. It hangs on attaching to and I cannot access my web app on localhost:4200.
docker-compose.yml:
version: '2' # specify docker-compose version
# Def...
Davis asked 1/5, 2018 at 18:36
1 Next >
© 2022 - 2024 — McMap. All rights reserved.