-
Replied To a Post in Improve HAVING BY performance
I'm not very familiar with HAVING but my understanding is that it is used to filter results after a GROUP operation so I can't imagine that indexes would improve performance … -
Replied To a Post in A reliable way of detecting AI content?
I realize that moderating Facebook posts is an exponentially greater task than moderating Daniweb, but if Facebook is not doing its job now, what happens once the election cycle heats … -
Replied To a Post in A reliable way of detecting AI content?
I wonder how this will apply to individuals who use AI to generate, then post content? It's even more problematic in the US. Take this scenario... If I have a … -
Replied To a Post in A reliable way of detecting AI content?
Your response to my last post. -
Gave Reputation to Dani in A reliable way of detecting AI content?
Well, I think what they mean is that the writing does not have a soul behind it. ;) -
Replied To a Post in A reliable way of detecting AI content?
I recall reading, "If the text is unusually coherent or consistent, it might raise suspicion." I'm afraid that does not speak well of our educational system. And it's not very … -
Replied To a Post in Hi everyone, I'm dennyfontaine
Hi, and welcome to Daniweb. -
Replied To a Post in Hi everyone, I'm William Entriken
Welcome to Daniweb -
Replied To a Post in Learning about AI
>SEO hasn't been about gaming the system for nearly 15 years now Then you may find [this](https://techcrunch.com/2024/03/05/google-takes-aim-at-seo-optimized-junk-pages-and-spam-with-new-search-update/) interesting. Also [this](https://arstechnica.com/gadgets/2024/03/google-wants-to-close-pandoras-box-fight-ai-powered-search-spam/). -
Replied To a Post in Learning about AI
Does that mean, "how to use AI to game the system"? -
Replied To a Post in Hi everyone - am ani here
Hello, and welcome to Daniweb. -
Replied To a Post in GCC Fails to Recognize Parameters
I can't offer any suggestions other than to just download the compiled app for your system instead of building it yourself. -
Replied To a Post in site transportation of things
Wouldn't that be a more appropriate question for google? I suppose that would depend on what kind of "things". We could send you to USPS, U-Haul, Fed-Ex, etc. -
Replied To a Post in i don“t understand this syntax error when using OpenCV
Assuming this is python you have to ensure the backslashes are not read as escape characters. Try image = cv2.imread(r'C:\Users\Audun Nilsen\Pictures\pica.webp') Using `r'` in front of a string indicates a … -
Replied To a Post in Hi everyone, I'm jessicaboland
Welcome to aniweb. Please take a few moments to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question). -
Replied To a Post in what's the correct way of learning programming?
As a first language I highly recommend Python. It is free and comes with a simple IDE (idle). For something more robust you can use Microsoft vscode (also free) as … -
Replied To a Post in Hi everyone, I'm johnson644
Welcome to Daniweb -
Replied To a Post in how convert cur images to image?
Why not just load it into paint.exe then save as whatever format you want? Or you could download [ffmpeg](https://ffmpeg.org/) (free) and do ffmpeg -i myfile.ico myfile.jpg (or whatever format you … -
Gave Reputation to pritaeas in how converte C to VB6?
This might work too: shiftedValue = py And &HFC00& -
Replied To a Post in Extracting values from a regex match
Also [autoregex](https://www.autoregex.xyz/) -
Replied To a Post in how converte C to VB6?
I always recommend ditching VB6. It is super old technology. If you were using Python 2.x I would also advise moving to Python 3.x for the same reason. If you … -
Replied To a Post in how converte C to VB6?
Glad you were able to work it out. Why are you still using VB6? -
Gave Reputation to barbarajameson in Do you think Google is doing a good job as a search engine?
<spam reference>'s "Write My Term Paper" service is a true academic lifesaver. Their team of dedicated experts with meticulous attention to detail, ensuring it met all my requirements. Thanks to … -
Replied To a Post in Do you think Google is doing a good job as a search engine?
Normally I would have just deleted this as spam but I thought it was worth leaving in to make a couple of comments. Firstly, it is not an academic lifesaver. … -
Replied To a Post in how converte C to VB6?
Remove the trailing `)` and it should work. -
Edited How to rank my blog in google?
hello, I am Jayesh and working as a SEO and I want to know how to increase the rank of my blog on Google. Because even after I have used … -
Replied To a Post in Extracting values from capturing groups in regex
Try import re pat = '<td>(.+?)</td>' for line in open('yourfile.html'): if line.startswith('<tr align="right"><td>'): print(re.findall(pat,line)) I realized that findall is cleaner than split. You might want to have a look at … -
Replied To a Post in Extracting values from capturing groups in regex
You can either read the entire file into a list, then filter that list, or you could process it line by line and process each matching line. For example (using … -
Replied To a Post in Extracting values from capturing groups in regex
Just process the file line by line and apply the regular expression to particular lines. I can't give you an expression that matches only the lines you showed me with … -
Replied To a Post in Extracting values from a regex match
The trick is to use lazy matching which matches the shortest possible string. html = '<tr align="right"><td>236</td><td>Roy</td><td>Allyson</td>' pat = '<td>(.+?)</td>' then re.split(pat,html) returns ['<tr align="right">', '236', '', 'Roy', '', 'Allyson', … -
Replied To a Post in Extracting values from capturing groups in regex
For html = '<tr align="right"><td>236</td><td>Roy</td><td>Allyson</td>' pat = '<td>(.+?)</td>' then re.split(pat,html) returns ['<tr align="right">', '236', '', 'Roy', '', 'Allyson', ''] and re.split(pat,html)[1::2] will return only ['236', 'Roy', 'Allyson'] The expression `.+?` … -
Gave Reputation to tinstaafl in Get error please help me the server threw an exception.
Have you tried looking at the answers on this page? [Click Here](https://stackoverflow.com/questions/973206/what-causes-error-hresult-0x80010105-rpc-e-serverfault) -
Edited "What are effective digital marketing strategies for small businesses?"
Answer: **SEO Optimization**:Enhance website visibility with suitable keywords. **Social Media Engagement**: Utilize platforms to connect and drive traffic. **Content Marketing**: Generate valuable content to attract and inform. **Email Campaigns**: Build … -
Replied To a Post in Design vs. Coding
I frequently had to deal with Engineers who felt they could both design software and write it. I only once met an engineer who could do both competently. She got … -
Replied To a Post in Design vs. Coding
>and find your choice of plumbing perhaps apt Before I retired, if someone asked what I did I usually replied, "digital plumber". It was not my full job but it … -
Replied To a Post in Hi everyone, I'm digitalfolks
Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question). -
Replied To a Post in Design vs. Coding
I'm saying that the design team should get input from the coders who will have to implement/maintain and software system. A designer might not put hooks into the code for … -
Replied To a Post in Design vs. Coding
I think it is a good idea for the design team to get input from the coders. Let me give you a non-programming example. My brother was a civil engineer … -
Replied To a Post in Is Coding About Authoring or Achieving a Specification?
>So back to you, how do you deal with choosing such standards? I code under the assumption that the person who will be maintaining my code is a psychopath who … -
Replied To a Post in Is Coding About Authoring or Achieving a Specification?
I loved that one when it first came out. And, yes, that is indeed FORTRAN. The system also came with a preprocessor called SFORX which added structured statements ($IF-$ELSE, $WHILE, … -
Replied To a Post in Is Coding About Authoring or Achieving a Specification?
As an example, here is some code we got from a vendor. It is rock-solid. It does what it is supposed to but it is virtually unmaintainable. I can't begin … -
Replied To a Post in Is Coding About Authoring or Achieving a Specification?
Are you differentiating between design and programming? Some professionals get stuck in their heads. For example, too many surgeons feel that surgery is the first option. My job as a … -
Replied To a Post in Hello everyone, I am Michael Brown
Welcome to Daniweb. -
Replied To a Post in Hi everyone, I'm calmenjoshua
Welcome to Daniweb. -
Replied To a Post in How to increase website traffic organically?
So with non-organic "you're pretty much on a hamster wheel constantly having to fund the beast". But with organic, "it's important to keep on top of it, and continue to … -
Replied To a Post in How to increase website traffic organically?
Can someone please explain the difference between "Increase website traffic" and "Increase website traffic organically"? What, exactly, does organically mean? -
Revoked Solved Status for Problem with the external hard drive
Hello, I have encountered an unpleasant event. My external hard drive has stopped working. The disc is no longer readable . When I connect the disc to my computer, the … -
Replied To a Post in Problem with the external hard drive
You might try [spin-rite](https://www.grc.com/sr/spinrite.htm) -
Replied To a Post in What is easier, PHP or Python?
I have found that the maintainability of an app has a lot more to do with the quality of the developer than the language choice, given that you are choosing … -
Edited App development21w3
On the iPhone X, screenshots are made by pressing the lock button and the volume up button at the same time. But these buttons are faced, one on each side. …
The End.