|
I wonder how many of you have implemented one of computer science's " classical algorithms " like Dijkstra's algorithm or data structures (e.g. binary search trees) in a real world , not academic project?
Is there a benefit to our dayjobs in knowing these...
Started by splattne on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
For classical data structures, I nearly....
I've had to implement some of the classical algorithms from numerical variations on classical algorithms because the textbook case didn't fit my application.
I consider it a thing of beauty.
|
|
Duplicate of Calling .NET methods from VB6 via COM visible DLL
Which ways exist to use/call .NET classes/functions/libraries (.net 3.x) in VB6 or classical ASP ? Has anybody experiences with that ? How much effort is necessary to wrap .NET to COM ? Are...
Started by Michael on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You essentially.
And I have created .NET components called from both VB6 COM dlls and Classic ASP.
|
|
For example in PHP
class foo{ function foo($name){ //constructor $this->name=$name; } function sayMyName(){ return $this->name; } } class bar extends foo{ function sayMyName(){ return "subclassed ".$this->name; } }
And in JS
function foo(name...
Started by pǝlɐɥʞ on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Classical OOP.
It's all about being able to change what a class can do by modifying it at run-time .
For example:
function foo(name){ this.name=name.
In classical programming.
|
Ask your Facebook Friends
|
I am developing an application in classical ASP that now requires sef urls. I do not have any asp.net experience but I've heard that ASP.NET+IIS6 provide built-in url rewriting functionality. So before i have someone purchase a url rewriting component...
Started by Salman A on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Url-rewriting-in-classic-asp
Hope you can find your answer there :)
Yes it is possible.
|
|
The IIS 6.0 is serving my Classical ASP pages in a serial fashion (one at a time)
The #2 request will be handled by the web server only when the #1 request ends.
If the #1 request takes a little longer, the #2 request will have to wait for the #1 ends...
Started by Daniel Silveira on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To check if this is the case/turn it off:
In the Properties pages for any Web site or Web virtual directory,... .
Yes, IIS or the site is most likely configured for server-side debugging, which causes all requests to the site to go through a single thread .
|
|
I've read (and re-read) Martin Fowler's Mocks Aren't Stubs . In it, he defines two different approaches to TDD: "Classical" and "Mockist" . He attempts to answer the question " So should I be a classicist or a mockist? ", but he admits that he has never...
Started by Daryl Spitzer on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I try to use classical tdd whenever a DB or an API to a system) then I would ....
While classical TDD makes your tests a bit less brittle because they tend to look more at the input to have more tests break when changing the implementation.
|
|
PHP provides associative arrays but there is no such thing in classical asp. I am looking for a class or function that allows me to create and traverse a hierarchy similar to this:
United States Washington Electric City Banks Lake Lake Chelan Wapato Point...
Started by Salman A on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This really simplefies working with relative 'static' trees....
Use Server.CreateObject("Scripting.Dictionary")
http://msdn.microsoft.com/en-us/library/x4k5wbx4%28VS.85%29.aspx
You might want to take a look at the the materialized path model on the sql side .
|
|
Hi guys,
I have a couple of queries for a web site that take a long time to run due to the data model and the amount of data held in the tables. So far I've been running them manually against the database to avoid any timeout issues etc.. however the ...
Started by Phil on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't speak ASP well enough to know what's wring with your attempt, but is that really an asnch call you have there? Would the seb service... .
The idea of asynchronously requesting the work and arranging for its later delivery seems very reasonable to me .
|
|
Is there any built-in functionality for classical set operations on the java.util.Collection class? My specific implementation would be for ArrayList, but this sounds like something that should apply for all subclasses of Collection. I'm looking for something...
Started by Ross on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I would recommend....
Are you looking for java.util.Set interface (and its implementations HashSet and TreeSet (sorted))?
The interface defines removeAll(Collection c) which looks like substract(), and retainAll(Collection c) which looks like intersection .
|
|
Best music site for classical music? Which of the two main sites (iTunes or Napster) has a better selection of classical music?
Thanks!
Started by JohnT on
, 28 posts
by 10 people.
Answer Snippets (Read the full thread at apolyton):
Only feebs vote would you give someone naive in the ways of Classical music? I know composers someone naive in the ways of Classical music? I ....
Downloads are OK, but not worth paying for in the case of Classical music.
The CD man.
|