Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
html5
- Page 1
Re: Remove Qemu/kvm snashots
Hardware and Software
Linux and Unix
4 Days Ago
by Salem
https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/7/html/virtualization_deployment_and_administration_guide/sect-using_qemu_img-listing_creating_applying_and_deleting_a_snapshot#sect-Using_qemu_img-Listing_creating_applying_and_deleting_a_snapshot
Re: Anti-Hotlinking Script for WP on Apache (.htaccess) - Linkspam Prevention
Programming
Web Development
4 Days Ago
by Dani
CDNs such as Cloudflare offer hotlink protection via a toggle switch you could enable. But, yeah, the primary benefit of hotlink protection is that a website doesn't upload images to *your* site, and then include them in their own site without having to pay for the bandwidth of hosting the images. Just make sure that if you turn on hotlink …
Re: Delete unused MySQL indexes
Programming
Databases
1 Week Ago
by Dani
I already read that article, as well as related ones such as [this](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-wait-tables.html) and [this](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-event-tables.html) but it all went above my head and didn’t seem to directly answer my question. For example, when I currently run …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by Neil_brown001
Why your approach isn’t working What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: Running a .exe on the server You can technically make the server launch an .exe file like Notepad, but: It will run in the background on the server, not visibly on the desktop. It needs special …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
> Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on…
Re: Custom font on Cloudflare error page
Programming
Web Development
2 Weeks Ago
by Dani
Hello Dwight, I had already checked out that link, but from what I can gather, Cloudflare does not consider individual resources (such as fonts, images, etc.) as "assets". My understanding is than an asset is the entire HTML file used to generate the page, complete with inline, base64 encoded resources.
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
1 Week Ago
by Dani
> But programming basics are still something people need help with, and the basics have not changed appreciably over my career. They sure have changed appreciably during *my* career! But maybe that's because my career is in web development, and the web, and the technologies that power the web, have changed *a lot* over the past 25 years. Heck…
Re: Delete unused MySQL indexes
Programming
Databases
1 Week Ago
by Reverend Jim
See [performance-schema-consumer-filtering](https://dev.mysql.com/doc/refman/8.4/en/performance-schema-consumer-filtering.html)
Re: Justice Department Offers Grants Against Internet Predators
Digital Media
Digital Marketing
1 Week Ago
by JackRyan248
> Despite a study earlier this year[/URL] that the fears of Internet predation against kids were overblown, the U.S. Department of Justice is $50 million through the American Recovery and Reinvestment Act of 2009, commonly known as the stimulus program, for Internet Crimes Against Children (ICAC) program initiatives. > > The programs …
Re: The Impact of User Research on UX Design
Digital Media
UI / UX Design
4 Weeks Ago
by john_111
I once visited a website where there were 20 rows, each composed of 20 identical small white squares (about the size of this --> HH ), with a tiny arrow in the bottom quarter corner to indicate they were links. But no text anywhere. Can you imagine how hard it would be to remember which button took you to which page, several days later? This…
Re: The Impact of User Research on UX Design
Digital Media
UI / UX Design
4 Weeks Ago
by Reverend Jim
Read The Essentials of User Interface Design by Alan Cooper.
Has CSS Grid completely replaced Flexbox in your projects? Why or why not?
Programming
Web Development
3 Weeks Ago
by KamalDeepPareek
Please answer
which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by silverrr_btc
i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js (thegeekinsights) and its going fine. can you create this?
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by Dani
It depends what you’d like to build. If a simple website, you can use HTML and CSS. Want some interactivity? Add JavaScript. Want to create more complex dynamic websites? You will need a backend language such as PHP and a database such as MySQL. I see you also tagged this topic c++. C++ is a popular language used for non-web related …
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by rproffitt
Think of a toolbox. Why buy tools you aren't going to use? ## Yup, everyone needs a 10 meter wide hole saw.
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by retseaz77
Great question! In 2025, some of the most practical and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy advantage French – still very relevant in international diplomacy and culture Python (if you meant programming) – still one of the top …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
Hello, The easiest way to implement image lazy loading is by simply adding the `loading="lazy"` HTML attribute to `<img>` image tags. That will not load the image until it is about to come into view in the web browser as the user scrolls down the page. Something else that we do here at DaniWeb is to use the `async` and `defer`…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
Dani as you wrote "Speed index" is supposed to be about the visible part of a web page - ATF. But because in Lighthouse I kept getting that loading="lazy" method had worse "Speed index" I created two simplified html pages for test. I gave a lot of height of what "Above the fold" is supposed to be , 940px …
Re: How to speed up my (WordPress) website?
Digital Media
Digital Marketing
1 Month Ago
by silverrr_btc
i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js and its going fine. can you create this?
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
As I wrote in a previous post, I believe that the way loading="lazy" is being implemented in browsers makes it almost unusable. Chromium-based browsers have a really high distance from viewport threshold, loading many images simultaneously upon page entry, while Firefox has a really low threshold, which means the user experience is awful.…
Re: Escape in-app browser?
Programming
Web Development
2 Months Ago
by Dani
rproffitt, alexxx does not have the ability to edit raw HTML within his Instagram bio. Instead, the link has to point to a URL that uses deep linking to redirect the final destination URL to open in Safari. I am not familiar enough with mobile development to know how to do this, but, yes, it does involve writing code. I also want to point out …
Re: Hi everyone, I'm Jason_70
Community Center
Say Hello!
2 Months Ago
by Reverend Jim
I like movies that don't insult my intelligence. Aside from the frequent spoilers I find that the [Pitch Meeting](https://www.youtube.com/results?search_query=pitch+meeting) videos do a great job of pointing out the ways in which modern action movies prioritize action and spectacle over anything resembling good writing. [10 Ways Star Trek Just …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
The loading="lazy" HTML attribute-value pair was introduced in 2019–2020, so I would guess it will be safe to use after 2030–2035, except if you don't care about internet visitors and are targeting an intranet of a company where you control the browsers and their versions. Of course, lazy loading impacts SEO. Modern SEO has more to do …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
> The loading="lazy" HTML attribute-value pair was introduced in 2019–2020, so I would guess it will be safe to use after 2030–2035, except if you don't care about internet visitors and are targeting an intranet of a company where you control the browsers and their versions. According to [Can I Use](https://caniuse.com/?search=…
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
This just showed up for me in [Search Engine Roundtable](https://www.seroundtable.com/google-sued-ai-overviews-38958.html).
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
> Lighthouse metrics (which really affects SEO) Please correct me if I'm wrong, but I'm fairly confident that Lighthouse metrics do not affect SEO. Lighthouse is just a tool that Google offers to SEOs to be able to offer actionable page improvements. In reality, it's real world performance data from Chrome users that factors into a site's SEO…
Re: Need currency pound symbol before amount calculation
Programming
Web Development
2 Months Ago
by Biiim
Since Dani did the best standard-correct answer I will do the botch-job answer: $('table#list tfoot .grand-total').text('£'+parseFloat(grand_total).toLocaleString('en-gb', {style:'decimal',maximumFractionDigit:2})); $('[name="amount"]').val('£'+parseFloat(grand_total)); may also want to use £ to display in …
Re: What are some top-rated Bootstrap admin templates that not rely on Tailwind
Programming
Web Development
1 Month Ago
by Dani
Hello, DaniWeb actually uses Bootstrap, but I don’t use any preexisting templates. How much CSS experience do you have? Are you experienced with creating HTML code that uses css classes to piece together something unique? Bootstrap also has its own template store, if I recall correctly. Also, Tailwind is a competitor to Bootstrap, so I’m …
Re: Cannot run exe from asp.net
Programming
Web Development
1 Month Ago
by lennyli
> I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC