OpenAI o3 vs Anthropic Claude 4 for Text Classification & Summarization Programming Computer Science by usmanmalik57 [OpenAI](https://openai.com/) and [Anthropic](https://www.anthropic.com/) are two AI giants delivering state-of-the-art large language models for various tasks. In a [previous article](https://www.daniweb.com/programming/computer-science/tutorials/542132/comparing-gpt-4o-vs-claude-3-5-sonnet-for-zero-shot-text-classification), I compared OpenAI GPT… How to show visa info based on country selection in a travel form? Programming Web Development by eservices I’m working on a travel planning form that adjusts based on the selected nationality. For example, if someone picks a country like India, the form should display whether they need an electronic visa for places like Sri Lanka, and maybe show a short message or guide link. I’m using JavaScript to detect changes in a <select> dropdown and … Re: How to show visa info based on country selection in a travel form? Programming Web Development by Dani I have moved your post into the web development forum instead of the advertising/marketing forum where it was and tagged it appropriately. Can you please provide the Javascript code as well as PHP code that is buggy so that we can help diagnose this for you. For example, if the JSON response is empty, it is most likely because of a bug in the … Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim I felt like some fun, so I just put together an example for you using CDN's and bootstrap 5. From what you are talking about you probably want to put some of that logic into the Javascript and not need to send a server request for each one, I usually do this kind of thing with javascript objects/arrays (eg `settings['GB']['visa_req'] = false;… How to display chart with long X axis values without congestion Programming Software Development by PM312 I have a candlestick chart with long list (data point) on X-Axis which becomes congested when loaded. How to show datapoint with sufficient space . Is there any container with horizontal scroll bar to display chart just like data is displayed in DataGrid view without reducing column width. ![Chartcandlestick.png](https://static.daniweb.com… Re: Do you fear that Google "AI Mode" will be the default option in Google ? Digital Media Digital Marketing by jkon Great Reverend Jim , but I am not talking about "AI Overviews" that is an issue but small compared to "AI Mode" which is a new option rolled in US for now that lets AI search for you and reference a few (usually three) or none real links . Lets have Google Gemini summarize what "AI mode" is '''Google "AI Mode&… Re: How to Find Best Keywords to increase the Website traffic? Digital Media Digital Marketing Search Engine Strategies by mundirtest123 If you want to increase traffic to your website, start by thinking about what your visitors are actually searching for. Make a list of topics related to your business and then explore what phrases people use to find those topics online. You can use tools like Google Keyword Planner or Ubersuggest to find keywords that people search often but don… Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Yrth > Jim, I have not used Windows in a very, very long time, but can you not configure Windows to store My Documents on D? I'm quite sure that you can, if I remember correctly? > > https://superuser.com/questions/1725456/wha-cant-i-move-my-documents-folder You can't, directly, but you can cheat, of course. Put your documents directory … Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim That's exactly what I did except I used sysinternals junction.exe. This still leaves things screwed up in that the address bar may still show you in OneDrive even though you are saving to the junction point. Re: How to show visa info based on country selection in a travel form? Programming Web Development by groverharleen Hello, please use developer tool while working on HTML/PHP with AJAX. in the console you can easily track what was the POST/GET request made to PHP file and what is the responses shared by PHP file. try debugging response accordingly or if still you face any trouble, please do share screen shot of Header / Request / Response Tabs. i'll … Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by donnamitch Hello Re: How to display chart with long X axis values without congestion Programming Software Development by kinvieb Hi, My first and quick point of view is that if you have a chart with such a big amount of data points, there might not be a need to show all individual data points. For the axis values, you may just choose to show points at a given interval, to avoid the congestion. For the data labels, you can choose to show labels at particular points (like … Say hello to all Community Center Say Hello! by Vivasmm I'm glad to have joined you! Re: Say hello to all Community Center Say Hello! by pritaeas Welcome. Re: Say hello to all Community Center Say Hello! by Dani Hello and welcome to DaniWeb! Differential Directory, indexing method Programming Software Development by xrjf **Features:** * Retrieves the differentiating bit of a key with respect to the previous one and stores only this position in the index. * With at most one single disk read, assuming the index is in memory, it determines whether the key exists or not. * The index is always sorted and therefore requires no reorganization. * Performance is … Re: Differential Directory, indexing method Programming Software Development by xrjf As an illustration, consider the theoretical lower bound for comparison-based sorting, as stated by Donald Knuth in The Art of Computer Programming: K × log₂(N). I developed a simple method that matches this limit. For example, to sort the list {2, 5, 7, 1, 4, 3, 8, 6}: Sort pairs: (2, 5) → [1] (1, 7) → [2] (3, 4) → [3] (6, 8) → [4] Merge… 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… 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by asadalikhan Hey everyone, You just set up a brand new Windows PC or did a clean install… now comes the fun part: installing your go-to apps! 👉 What’s the very first app you install — and why? It could be: Your favorite browser (Chrome, Firefox, Brave?) A trusted antivirus or security tool An essential productivity app Something for … Integrating OpenAI Web Search API in LangGraph Programming Computer Science 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 … Remove Qemu/kvm snashots Hardware and Software Linux and Unix by Gabriel9999 How can i list snashot information and delete snapshot from command line or bash in elegant way? Thanks. Re: Delete unused MySQL indexes Programming Databases by Reverend Jim >Is that list incomplete or straight-up wrong? I have no way of knowing. If I add a bunch of numbers and get an answer, is it right or wrong? Again, as a guess, if you have enabled the correct flags and let the system run through typical processing, the returned list should be, according to the docs, a list of unused indexes. Worst case … Re: Delete unused MySQL indexes Programming Databases 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: How Can I Increase More Traffic of My Website? Digital Media Digital Marketing by jonathannweyer Even with solid SEO and good content, traffic can still be slow to build, especially if the niche is competitive. One thing you might look into is diversifying your traffic sources beyond just search. Try sharing your posts in relevant online communities (like Reddit, Quora, or niche forums), building an email list, or even testing out some low-… Re: Delete unused MySQL indexes Programming Databases by Dani OK, so I found [this blog post](https://www.percona.com/blog/basic-housekeeping-for-mysql-indexes/) by the one and only Percona, that says that I can simply do `select * from sys.schema_unused_indexes;` which does give me a list of indexes. However, it says it's based on having: update performance_schema.setup_consumers set enabled = 'yes' … Re: How Can Small Businesses Effectively Compete in Digital Marketing? Digital Media Digital Marketing by christianjhon2 Hi there, You've raised a very important point—and one that many small businesses can relate to. Competing with big-budget brands in the digital space can feel overwhelming, but the good news is that *effective marketing doesn’t always require deep pockets*. Here are a few **economical yet impactful strategies** that have worked well for many… Re: How do you do keyword research for SEO? Digital Media Digital Marketing Search Engine Strategies by bijutoha I’m using **Ahrefs**, **SEMrush**, though these are premium tools. On the free side, I rely on **Google SERP** to research topics and find keywords. There are several valuable methods for keyword research using Google, such as: * Exploring auto-suggestions to uncover **LSI** (Latent Semantic Indexing) and **long-tail** keywords * Checking … Re: How do you do keyword research for SEO? Digital Media Digital Marketing Search Engine Strategies by sophiabrooks Step 1. Use Google Keyword Planner to cut down your keyword list. In Google's Keyword Planner, you can get search volume and traffic estimates for keywords you' ... Re: Need Coding Help With A Project Programming Software Development by Enzo_3 I was working on a similar assignment where I had to compute the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how to incorporate them meaningfully, but I finally figured it out. Here's how I approached it using Python: from functools import reduce with open('… Re: How to enable gpedit on Windows 10 & 11 Hardware and Software Microsoft Windows by AIO_803 Enabling **gpedit.msc** on Windows 10 or 11 (especially Home editions) is useful for gaining more control over system settings. While it’s not officially included in Home versions, there are workarounds—though users should proceed carefully to avoid system issues.