Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
web2py
- Page 1
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
6 Days Ago
by JackRyan248
> Hi Everyone, > > Web development can be both exciting and challenging, but having the right tools makes all the difference. If you're starting out or looking to improve your workflow, consider using popular frameworks like React or Vue for streamlined front-end development. > > On the back end, Node.js and Django are solid…
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
3 Days Ago
by usmanmalik57
Large language models are trained on a fixed corpus, and their knowledge is often limited by the documents they are trained on. Techniques like retrieval augmented generation, continuous pre-training, and fine-tuning enhance an LLM's default knowledge. However, these techniques can still not enable an LLM to answer queries that require web …
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
2 Days 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: Hi everyone, I'm David with SayItOnTheWeb
Community Center
Say Hello!
4 Days Ago
by Dani
I checked out your website and notice you're using the particles javascript at the bottom of the page. Many, many years ago, we used to use that as well, until we discovered it was causing some people's web browsers to crash, and for others, made the webpage unresponsive for users with slower computers. I would highly suggest that, instead, you …
Re: how to build a software without a website
Programming
Web Development
5 Days Ago
by jonathannweyer
Yes, you can build and launch software without a website. If it’s a desktop or mobile app, you can distribute it through app stores, direct downloads, or even platforms like GitHub. A website helps with visibility, updates, and support, but it’s not strictly necessary, especially if you're sharing it directly with users or within a specific …
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
2 Days Ago
by dnBunnie
the app "Everything" after Comodo Internet security
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
2 Days Ago
by Reverend Jim
I agree. [Everything](https://www.voidtools.com/) is always a definite install after imaging. It's something that should have been built into Windows. I've never found the need for any security software other than what comes with Windows.
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
2 Days Ago
by Dani
As a macOS user these days, does Windows not have a find tool? /confuzzled
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
2 Days Ago
by Reverend Jim
As is typical with Microsoft, their search/find tools work poorly, can hog resources, and are difficult to use. "Everything Indexer" is easy to use, has a small footprint, and has almost no effect on my resources. Search queries show you results as you type, and you can create complex search terms with logical operators, as opposed to the…
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Day Ago
by Dani
> BTW I've spoken with a former Microsoft Engineer. He also agrees OneDrive is an abomination. I’ve spoken to several current and former Apple engineers who agree that Siri is an abomination.
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Day Ago
by Reverend Jim
>Siri is an abomination Is it? I've never so much as touched an Apple computer so I have no opinion on that whatsoever.
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Weeks Ago
by scope_2
Lazy loading enhances web portal speed by loading images, videos, or components only when needed. Add loading="lazy" to <img> and <iframe> tags for simple use. For advanced control, use libraries like Lozad.js or lazysizes. In frameworks like React, use React.lazy() and <Suspense>. Avoid lazy loading above-the-fold …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Weeks Ago
by gediminas.bukauskas.7
Here is a problem: Blazor WEB application working in SSR mode performs partial update of the page after posting. JS initialization does not work in this case. It is difficult to find correct event for performing JS operations.
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
1 Week Ago
by Himanshu011
Frontend development: * React * Vue.js Backend development: * Node.js * Django
Re: What should I look for in a reliable web design and development agency?
Digital Media
Digital Marketing
2 Weeks Ago
by sasha_Digitable
What you should look for is: 1. Proven track record with a up to date portfolio 2. Expertise in the specific areas of web design you are wanting to use 3. The ability of the company that can work with your needs Above all, consistent and clear communication are vital for any possibility of success. There needs to be trust and communication to …
Hello Everyone - Newbie Here
Community Center
Say Hello!
2 Weeks Ago
by Ramesh sharama
Hi everyone, I'm Ramesh Sharma, the owner of Web Media Infotech. I’m excited to be part of this community! I work in the areas of web development, website design, and digital marketing, and I’m always keen to learn, share knowledge, and connect with like-minded professionals from around the world. Looking forward to great discussions and …
Re: Cannot run exe from asp.net
Programming
Web Development
2 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: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Salem
> When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by john_111
Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can …
Re: Cannot run exe from asp.net
Programming
Web Development
2 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 …
Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
I have tried to read https://www.daniweb.com/programming/web-development/threads/386380/cannot-run-exe-files-in-asp-net-application but still lost in trying to achieve something. I installed the latest .net framework, and IIS on the latest updated windows 11. I wish to achieve the following: Have a webpage with a button, when pressed, it will …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks 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 …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by gediminas.bukauskas.7
Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets.
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by rproffitt
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 get there.
Hi everyone, I'm Hichem_MG
Community Center
Say Hello!
2 Weeks Ago
by Hichem_MG
Hi everyone, I'm Hichem. A web developer, Python enthusiast and problem solver. I'm happy to be a member of the DaniWeb community.
How Are You Approaching SEO in 2024? Strategies That Actually Work?
Digital Media
Digital Marketing
1 Week Ago
by Ramesh sharama
I’ve been working in web design and development for a while now, and over time I’ve realized just how big of a role SEO plays in not only driving traffic—but also in improving user experience and long-term growth. There’s a lot of talk about quick wins and algorithm hacks, but I’m more interested in sustainable strategies that make a difference—…
What should I look for in a reliable web design and development agency?
Digital Media
Digital Marketing
3 Weeks Ago
by Viacon_
1. Strategic Thinking 2. Full Service Capabilities 3. Strong Portfolio & Case Studies 4. Custom Solution 5. Transparent Communication & Timelines 6. Future Readiness
Re: What should I look for in a reliable web design and development agency?
Digital Media
Digital Marketing
3 Weeks Ago
by Manyhatsnc
The best agency will have a strong portfolio, clear communication, SEO expertise, responsive design expertise, client reviews and post-launch support to ensure success and quality over the long-term.
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