Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
index
- Page 1
Re: Differential Directory, indexing method
Programming
Software Development
16 Hours Ago
by noahevans
This is a brilliant explanation of how Differential Directory (DiDi) indexing works — very efficient and elegant. The idea of storing only the first differing bit between keys reminds me of how we optimize systems for speed and memory, much like how some tech repair services streamline diagnostics. At FixnVibe, our approach to mobile phone …
Differential Directory, indexing method
Programming
Software Development
6 Days Ago
by xrjf
…it determines whether the key exists or not. * The
index
is always sorted and therefore requires no reorganization. * Performance… key inserted is "John Smith", the
index
is initially empty. The first differing character (compared to… structure —which is a bit more elaborate— the
index
remains sorted, and only a maximum of 3 nodes…
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Days Ago
by usmanmalik57
… OpenAI released [GPT-4.1](https://openai.com/
index
/gpt-4-1/) — a model touted as…dataset = pd.concat([neutral_sample, positive_sample, negative_sample]) # Reset
index
if needed dataset.reset_index(drop=True, inplace=True) #…, initializing with 0s df = pd.DataFrame(0,
index
=range(len(parsed_data)), columns=subjects) # Populate the …
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
by rproffitt
DiDi appears to be some China based UBER service but then again I can't find a question or much else to discuss here.
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
by xrjf
About DiDi DiDi (Differential Directory) was originally developed as part of my thesis project in the early 1990s. The name bears no relation to the more recent Chinese ride-sharing company. At the time, DiDi was a novel approach within its academic context, but a change in legislation unfortunately led to the closure of the school and the …
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
by xrjf
For example, as Donald Knuth points out in The Art of Computer Programming, the theoretical lower bound for comparison-based sorting algorithms is K × log₂(N). I developed a very simple method that matches this performance. However, DiDi goes far beyond: its performance is proportional to K × (maximum key length), regardless of the number of …
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
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…
Re: Differential Directory, indexing method
Programming
Software Development
6 Days Ago
by xrjf
"Just to clarify a previous mistake: the efficiency should be K × N × log₂(N), not K × log₂(N) as I initially wrote."
Re: Differential Directory, indexing method
Programming
Software Development
2 Days Ago
by xrjf
I've just made an update because some records weren't being added properly. The issue was that the form didn't take into account that the register field (in the call to DiDi) is passed by reference.
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by pritaeas
No, Javascript cannot run/start executables on the client machine.
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days 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.
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by lennyli
Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\…
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by pritaeas
Are you sure IIS is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
5 Days 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
5 Days 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
4 Days 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
4 Days Ago
by Salem
https://xyproblem.info/ * User wants to do X. Sometime later... > My boss just asked me to create a prototype as proof of concept. There is no specific language/tool I must use * User asks for help with Y. Initially asked... > Have a webpage with a button, when pressed, it will launch a webpage that runs a server side exe (eg, …
Re: Cannot run exe from asp.net
Programming
Web Development
4 Days Ago
by Reverend Jim
>No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task.
Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
3 Weeks Ago
by YashSmith
…[5]; cout << arr[10]; // Accessing out-of-bounds
index
return 0; } How can I prevent this memory access issue?
Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
…. For my attached source files, i dont know why the
index
.cshtml doesnt show a button. Also disappointingly the notepad.exe…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Week 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.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
3 Weeks Ago
by Reverend Jim
Don't try to access past the end of the array.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
3 Weeks Ago
by rproffitt
Thanks for the MVE (minimum viable example). But it's just bad code. c, c++ and a lot of language won't stop you from going out of bounds.
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
3 Weeks Ago
by Dani
You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4].
Re: Segmentation Fault in C++ Program – Need Debugging
Programming
Software Development
3 Weeks Ago
by Salem
It should be obvious by now from their posting history that the OP is a troll.
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by pritaeas
> while at the same time run the same exe on the local client pc. Not possible.
Benchmarking DeepSeek R1 for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
… Face Inference API](https://huggingface.co/docs/api-inference/en/
index
). You can use larger versions of DeepSeek models via the… into one DataFrame dataset = pd.concat([neutral_sample, positive_sample, negative_sample]) # Reset
index
if needed dataset.reset_index(drop=True, inplace=True) # print value…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
… into one DataFrame dataset = pd.concat([neutral_sample, positive_sample, negative_sample]) # Reset
index
if needed dataset.reset_index(drop=True, inplace=True) # print value…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
1 Month Ago
by usmanmalik57
… into one DataFrame dataset = pd.concat([neutral_sample, positive_sample, negative_sample]) # Reset
index
if needed dataset.reset_index(drop=True, inplace=True) # print value…
Re: Why my created link is not updating as a backlinks?
Digital Media
Digital Marketing
Search Engine Strategies
2 Months Ago
by MasoodDidThat
… like semrush and ahref. A backlink gets updated when google
index
the page where you have submitted your link. One way… to make
index
faster is when you submit the article, do the internal… help crawlers to understand your new page and get it
index
faster thus you will also get the backlink faster.
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