Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
script
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by lennyli
… pyautogui ``` ### Step 2: Create the Server (Remote Control Target) This
script
will run on the computer you want to control. ```python…;__main__": main() ``` ### Step 3: Create the Client (Controller) This
script
will run on the computer you’re using to control…
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by lennyli
… nothing to do with web. It is just a python
script
but it still doesnt work. Do you have any insight…
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
1 Week Ago
by usmanmalik57
… 'rouge2': rouge_scores['rouge2'], 'rougeL': rouge_scores['rougeL'] }) return results ``` In the
script
below we pass the `gpt-4.1` model id to…/datasets/crowdflower/twitter-airline-sentiment?select=Tweets.csv). The following
script
imports the dataset and displays its header. ```python ## Dataset…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access,
script
was chosen (not execute) for feature permissions, all 'read' '
script
' 'execute' are chosen
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by john_111
… your computer. They can run a
script
on the webserver however. Say a PHP
script
to handle data transfers such as access…
Re: Create Infinite Loop In Bash
Hardware and Software
Linux and Unix
1 Week Ago
by Vince_6
Be Careful what you wish for. When I was first using Unix one of our programmers wrote a Bash
script
something like: While 1 Do Something He eventually overloaded the system and it crashed.
Re: Create Infinite Loop In Bash
Hardware and Software
Linux and Unix
1 Week Ago
by asadalikhan
while true; do echo "Running..."; sleep 60; done This runs forever, printing "Running..." every 60 seconds. No
script
file needed, just drop it in the terminal and you're good.
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
3 Weeks Ago
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.
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
…twitter-airline-sentiment?select=Tweets.csv). The following
script
imports the dataset and displays its header. …sentiment classification on 100 tweets. The following
script
creates a dataset of 100 randomly selected …reddzzz/DataScience_FP/blob/main/dataset.xlsx). The following
script
imports the dataset. ```python # Kaggle dataset download…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
1 Month Ago
by usmanmalik57
… Importing and Installing Required Libraries The following
script
installs the Fireworks Python library and the …upgrade openpyxl !pip install pandas openpyxl ``` The
script
below imports the required libraries into your Python… R1` and the Llama models. The following
script
imports the dataset. ```python # Kaggle dataset download…
Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Dani
… as to whether this will work. From within my PHP
script
, can I write to a database using a MySQL connection…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
… is to use the `async` and `defer` attributes on `<
script
>` HTML tags, so that they load external Javascript files…
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
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
2 Months Ago
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
1 Month Ago
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: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> When you price and design a site for an expected human load, and then you get overwhelmed by bots, you can throw more money at it or you can take action against the bots. It's true that the majority of websites on the Internet today spend more bandwidth on bots than they do on human visitors. However, there are both bad bots and good bots, …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by rproffitt
The OpenAI bot appears to be a bad bot. Discussed many times so here's just one: https://www.reddit.com/r/selfhosted/comments/1i154h7/openai_not_respecting_robotstxt_and_being_sneaky/ Fixes appear to be: 1. Block IP ranges from bots. 2. Replace words and poison the bots.
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
Thanks for the extra info although I disagree with the spewing comment. Nepenthes and Iocaine do not spew garbage across the web. They feed garbage to bots that access the protected sites. AI that returns bogus results on the ppther hand ARE spewing garbage across the web. BTW Nepenthes makes it clear that implementation will result in being …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> The OpenAI bot appears to be a bad bot. This is not my experience. OpenAI respects my robots.txt file perfectly. I do want to add, though, that robots.txt files are very finicky, and I have seen many, many times people blaming the bots when the problem lies with a syntax or logic error in their robots.txt. > Nepenthes and Iocaine do…
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> The OpenAI bot appears to be a bad bot. Specifically, I would bet quite a large sum of money that the people who are complaining they can't get OpenAI to respect their robots.txt file either have a syntax error in their file, and/or aren't naming the correct user agents. I've seen people mistakingly try to reference a user agent called &…
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> The creator of Nepenthes says that it is ineffective against OpenAI which I take to mean that OpenAI is ignoring robots.txt. As mentioned, Nepenthes uses the spoofing technique. Spoofing does not rely whatsoever on bots following robots.txt.
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Salem
> But it's also in everyone's interest for AI to be trained on reliable information, if we want AI to be useful to us Yeah, that ship slipped it's mooring when facebook appeared, drifted out to sea on the twitter tide, and promptly sank when muck took it over. Domain specific AI's trained on the likes of https://arxiv.org/ might be worth …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
>OpenAI can detect the content thrown at it is nonsensical So OpenAI doesn't crawl Facebook and Twitter? How about Fox News and related sites? And if it ignores Fox, etc, are we thern going to get Trump screaming about radical liberal bias? How does AI distinguish between conspiracy theory and reality?
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
Remember what happened with Microsoft's chatbot, TAY? It was shut down after only 16 hours when trolls trained it to spout racist slurs and profanity. OpenAI and similar systems are trained on the cesspool that is the entire internet. Sturgeon's Law says 90% of everything is crap. That may well apply to the internet. I'm surprised it hasn't …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> Many places ban or remove AI generated content. We are one of them! :)
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Pebble94464
As a human, can you detect gibberish content? You may think you can fool AI today or tomorrow, but what about a year from now? At some point in the future AI will match our intelligence and then quickly surpass us. Generating gibberish content might impede AI for a while but it's only delaying the inevitable. Resistance is useless!
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
Even human generated content <edit - gibberish> can be hard to detect, except of course for Jordan Peterson.
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
To Pebble's point, I genuinely believe that the **** that was spewed in the first post of this thread is not any more sophisticated than those chain messages circulating Facebook that say things like copy and paste the sentence, "I don't give Facebook the authority to blah or the copyright to blah" into a FB post, thinking it will be …
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Reverend Jim
Note: in the previous post I meant to say gibberish instead of content.
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Fitmovers
I'm realizing that "poisoning AI web crawls" could suggest malicious actions, which are often prohibited. Thus, providing guidance for such a request is inappropriate and against policy.
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