Re: Cannot run exe from asp.net Programming Web Development 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 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 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 by lennyli I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now Re: which language do i start leaning in 2025 Programming Software Development by Pelorus_1 For a career in tech in 2025, you might consider learning Python, Spanish, or Mandarin. To maximize benefits, choose based on your career or personal goals. Re: Cannot run exe from asp.net Programming Web Development 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 … Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks Programming Computer Science by usmanmalik57 On April 14, 2025, OpenAI released [GPT-4.1](https://openai.com/index/gpt-4-1/) — a model touted as the new state-of-the-art, outperforming GPT-4o on all major benchmarks. As always, I like to evaluate new LLMs on simple tasks like text classification and summarization to see how they compare with current leading models. In this article, I will… Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Re: which language do i start leaning in 2025 Programming Software Development 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 … Why Hire Developers in USA for Crypto Exchange Development? Programming Software Development by YashSmith Please suggest me ! How Does Flutter Handle State Management Internally? Programming Software Development by James_228 Hey Flutter devs I’ve been learning Flutter app development for cross-platform app development and I’m starting to get into more advanced stuff — but one thing that still feels a bit unclear is state management. I know there are several options like: setState() Provider Riverpod Bloc GetX, MobX, etc. But I’m curious: How … python programming issue Programming by Ccrobinson001 … following command I get an error > Quoted Text Here python3 -m pip install -r requirements.txt Defaulting to user installation… Re: python programming issue Programming by Pebble94464 … env`, activated with `.\env\scripts\activate.bat`, and then ran `python3 -m pip install -r requirements.txt`. I'm using Python… Re: python programming issue Programming by Reverend Jim Can you please post the contents of requirements.txt? I don't know if this will make a difference, but when I install python I always put it in c:\python and install for all users. I find it much easier when trying to fix problems like this to have all the files in a top level folder rather than buried multiple levels down in appdata… Re: python programming issue Programming by GodMode9 I have faced similar issues before! Sometimes the problem is related to incorrect indentation. Python is very particular about spaces, so double-checking your code can help fix the issue. Re: Which Python PDF writing library is best? Digital Media UI / UX Design by policenbicleara it depends on your needs! PDFKit is great for Node.js, but if you need more advanced features, jsPDF is solid for client-side use, and PyMuPDF (fitz) or ReportLab are great in Python. What kind of PDFs are you generating Re: Which Python project should I use? Programming Software Development by Reverend Jim Using wxPython for your GUI elements will make it more portable to other platforms. wxPython also renders the elements in the target platform's native style. Usimg wxGlade (also free) to design the layout will make things much easier than doing it all by hand. Benchmarking DeepSeek R1 for Text Classification and Summarization Programming Computer Science by usmanmalik57 DeepSeek-R1 is a groundbreaking family of reinforcement learning (RL)-driven AI models developed by the Chinese AI firm [DeepSeek](https://www.deepseek.com/). It is designed to rival industry leaders like OpenAI and Google in complex decision-making and optimization problems. In this article, we will benchmark the DeepSeek R1 model for text … DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization Programming Computer Science by usmanmalik57 In a [previous article](https://www.daniweb.com/programming/computer-science/tutorials/543028/text-classification-and-summarization-with-deepseek-r1-distill-llama-70b), I presented a comparison of [DeepSeek-R1-Distill-Llama-70b](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-70B) with the [DeepSeek-R1-Distill-Qwen-32B](https://… Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by usmanmalik57 In the [last article](https://www.daniweb.com/programming/computer-science/tutorials/542973/benchmarking-deepseek-r1-for-text-classification-and-summarization#post2300447), I explained how you can use the [DeepSeek-R1-Distill-Qwen-32B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B) model for text classification and summarization … Re: Which Python PDF writing library is best? Digital Media UI / UX Design by Anna_46 PDFKit is a solid choice for generating PDFs, but there are other great alternatives depending on your use case **ReportLab** – Highly powerful, great for generating complex PDFs with tables, charts, and images. **WeasyPrint** – Converts HTML and CSS to PDF, ideal for web-based reports. **PyMuPDF** (fitz) – Lightweight and fast for both PDF … Re: Fine-tuning OpenAI Vision Models for Visual Question-Answering Programming Computer Science by RKE2 Fine-tuning OpenAI Vision Models for visual question-answering is an exciting step forward in AI! It is amazing how these models can combine image recognition with natural language processing to provide accurate, context-aware answers. Cannot wait to see more advancements! Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by rproffitt "Wiz Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular new AI chatbot. It didn’t stop a single one." It only seems to get worse the more you look at DeepSeek. And I must note how it is known to not want to talk about … Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by policenbicleara Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate. Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by Pelorus_1 Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing! Re: Key Tools and Tips for Efficient Web Development Programming Web Development by simplixi The world of web development is vast, but with these tools and tips, you'll have a solid foundation to build on. Keep exploring and practicing, and you’ll get the hang of it in a very short time. **Front-End Development** * **React:** Think of it as a tool that helps you build the parts of a website users see and interact with. It’s like LEGO … How Much Does Blockchain MVP Development Cost? Programming Software Development by shane_18 Hii I am a developer working on a blockchain MVP development. I want to add MVP features to the app, but I am not sure where to start. Can anyone provide some guidance? Thank You Re: How Much Does Blockchain MVP Development Cost? Programming Software Development by Salem For someone claiming to be an "SEO Executive", you seem remarkably inept at doing even the most basic web search. https://duckduckgo.com/?t=ffab&q=blockchain+MVP But then again, most of your posts look like bait for spam. Re: python Programming Software Development by tomleo Python is really easy, I would defiantly start learning it. For web development I would suggest looking into the [URL="http://www.djangoproject.com/"]Django[/URL] framework. It shouldn't be to hard to transition from C++ to Python, I didn't think it was. Java is also great for the desktop and web but has a slightly higher learning … Python webpage -please help Programming Software Development by robinclarke95 Python webpage -please help Hi I am very new in python programming.I am trying make a basic webpage where I ask user to input url like "http://www.google.ca" and a description of the url like"search engine". Using python script I will add that url and description in dbm database and print that url as a link in the browser.I am…