Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
structure
- Page 1
How to show visa info based on country selection in a travel form?
Programming
Web Development
3 Weeks Ago
by eservices
… doesn’t reflect the new message. What’s the best
structure
to manage these types of dynamic, country-specific conditions without…
Re: How to show visa info based on country selection in a travel form?
Programming
Web Development
3 Weeks Ago
by Dani
… that's a javascript issue. > What’s the best
structure
to manage these types of dynamic, country-specific conditions without…
Re: SEO vs AEO – Which is more important for the future of search?
Digital Media
Digital Marketing
Search Engine Strategies
2 Weeks Ago
by pearly_2
… AEO strategies into our content planning. Here’s how: We
structure
our content around specific questions that homeowners, contractors, and building… newer content goes straight to the point — the kind of
structure
answer engines prefer. We’re optimizing for local and voice…
Re: SEO vs AEO – Which is more important for the future of search?
Digital Media
Digital Marketing
Search Engine Strategies
2 Weeks Ago
by Umair_20
… voice search visibility. While SEO fundamentals like backlinks and keyword
structure
still matter, AEO helps align content with user intent more…
Re: How to show visa info based on country selection in a travel form?
Programming
Web Development
2 Weeks Ago
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: How to show visa info based on country selection in a travel form?
Programming
Web Development
2 Weeks Ago
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;…
Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
… new node 6e between records 1 and 2, updating the
structure
to: 1J → record 1, right → record 3, 6S → record 3…, and finally 7m → record 2 (with no children). With this
structure
—which is a bit more elaborate— the index remains sorted…
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
… and significantly improved the code, aiming for a more professional
structure
and better performance. The updated version avoids freezing the UI…
How can on-page SEO services improve your search engine rankings?
Digital Media
Digital Marketing
2 Months Ago
by Viacon_
1. Optimize Title and Meta Tags 2. Improve keyword usage 3. Enhance content quality 4. Boost Internal linking 5. Speed up page load time 6. Ensure mobile responsivness 7. Adds schema Markup 8. Improve the URL
structure
9. Reduces Bounce Rate 10. Increase crawlibility
How Are You Approaching SEO in 2024? Strategies That Actually Work?
Digital Media
Digital Marketing
1 Month Ago
by Ramesh sharama
… than just keyword volume Keeping technical SEO solid (site speed,
structure
, crawlability) Writing content that’s actually helpful—not just “optimized…
Re: How can on-page SEO services improve your search engine rankings?
Digital Media
Digital Marketing
1 Month Ago
by asadalig
> 1. Optimize Title and Meta Tags > 2. Improve keyword usage > 3. Enhance content quality > 4. Boost Internal linking > 5. Speed up page load time > 6. Ensure mobile responsivness > 7. Adds schema Markup > 8. Improve the URL
structure
> 9. Reduces Bounce Rate > 10. Increase crawlibility yes
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months 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: Differential Directory, indexing method
Programming
Software Development
2 Months 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
2 Months 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
2 Months 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
2 Months 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
2 Months 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 Months 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: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by kearawill
… tree affected by the change, thanks to its immutable widget
structure
. While setState() works well for managing local state in smaller… Riverpod usually suffices. For large, collaborative projects, Bloc provides better
structure
and scalability. For quick prototypes or internal tools, GetX is…
Re: Page Speed Issue
Digital Media
Digital Marketing
2 Months Ago
by ashleydent4u
… optimization since they’re often custom-built and heavier in
structure
. Things like lazy loading, efficient server-side rendering, and minimizing…
Re: Is there anything special I should pay attention to when doing SEO?
Digital Media
Digital Marketing
Search Engine Strategies
2 Months Ago
by scope_2
…, such as fixing broken links and optimizing the site's
structure
. The building of quality backlinks from trusted websites will also…
Re: How Can Small Businesses Effectively Compete in Digital Marketing?
Digital Media
Digital Marketing
1 Month Ago
by Dani
… that you can do (optimize your Javascript, site navigation and
structure
, etc.) to help rank in Google, which is of course…
Re: Data storage and retrieval - cache or database
Programming
Mobile Development
2 Months Ago
by jonathannweyer
If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then store it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads.
Structure help
Programming
Software Development
16 Years Ago
by Foe89
…the bottom. Write a program that uses a
structure
named MovieData to store the following information about … // This program stores movie information in a
structure
. // The
structure
is passed to a function to display the data… being parenthesis. How does it work? what my
structure
looks like right now [code] struct MovieData { string…
structure
Programming
Software Development
14 Years Ago
by shbk
inpstr label byte maxlen db 100 actlen db ? string db '$' dda db 10 if I place data after
structure
(dda), it will be overlapped by this
structure
i don't know why it happens. Does anyone have ideas?
Re: Structure Help Please
Programming
Software Development
20 Years Ago
by Stack Overflow
…under a single name for convenient handling. [b][u]
Structure
Basics[/u][/b] The keyword [color=blue]struct[/color]…As continuing from above, you may see that your
structure
contains a few syntactial errors:[code][color=blue]struct…allow all of your functions to see and recognize your
structure
:[code][color=blue]struct[/color] Hope { [color=blue…
structure
Programming
Software Development
18 Years Ago
by aasi007onfire
consider the
structure
[code]struct gun { char name[50]; int magazinesize; float calibre; };[/…#SECTION00900000000000000000[/url] that the tag (i.e gun) of the
structure
is optional.... in that case wouldn't there be a… of type struct or if we have more than one
structure
without tag.....
Structure
Programming
Software Development
13 Years Ago
by Dactech
… login and various functions. I want to use a flexible
structure
to load the current Users privileges into. eg the Functions…like to iterate each row and load them in a
structure
that can be used while navigating the application. Does anyone…find the row with the name of the function. A
structure
would be better but I would need to declare each…
Structure Help Please
Programming
Software Development
20 Years Ago
by hopeolicious
… my program but that I have to put it into
structure
form but without using member functions but i dont see…
structure
Programming
Software Development
18 Years Ago
by pointers
… in the memory. Each element in the array is a
structure
representing the 'Date' information and its type defination is shown…
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC