32
votes
24answers
3k views
Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse
I recently read this Phil Haack post (The Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse) from last year, and thought I'd see if anyone has any additions to the list.
24
votes
6answers
6k views
What is the PastryKit Framework?
I'm trying to find any information I can on the PastryKit Javascript Framework. It appears to be in use on the iPhone User Guide that is displayed on the iPhone itself in Mobile Safari, but I cannot …
22
votes
5answers
8k views
How to detect what .NET Framework versions and service packs are installed?
A similar question was asked here, but was specific to .NET 3.5. Specifically, I'm looking for the following:
What is the correct way to determine which .NET Framework versions and service packs are …
15
votes
18answers
1k views
Anyone NOT using a Web Framework? Why?
I'm well aware of the many reasons to use a web framework. I'm just wondering whether anyone out there is using absolutely no web framework whatsoever to develop their web projects.
I would really …
15
votes
14answers
1k views
What is the difference between a framework and a library?
What is the difference between a framework and a library?
I always thought of a library as a set of objects and functions that is focussed around solving a particular problem or around a specific …
14
votes
10answers
194 views
How do I implement a test framework in a legacy project
So, I've got this big project written in PHP and Javascript. The problem is that it's become so big and unmaintainable that changing some little portion of the code will upset and probably break a …
12
votes
8answers
1k views
Why should I use an MVC framework for PHP?
There are lots and lots of opinions available about what framework is the best choice as well as resources and tutorials to help you learn to use them. What I'm having a hard time finding is a clear …
11
votes
4answers
740 views
Differences between Framework and non-Framework builds of Python on Mac OS X
Question
What are the differences between a Framework build and a non-Framework build (i.e., standard UNIX build) of Python on Mac OS X? Also, what are the advantages and disadvantages of each?
…
11
votes
8answers
603 views
GC.Collect in a loop?
I found this piece of code inside System.Web.ISAPIRuntime using Reflector
public void DoGCCollect()
{
for (int i = 10; i > 0; i--)
{
GC.Collect();
}
}
Can anyone comment on …
11
votes
12answers
2k views
Lightest possible PHP MVC
I currently use CodeIgniter for an MVC framework in PHP because it's a very bare framework, is there anything even more bare than CodeIgniter?
10
votes
9answers
1k views
Running .net based application without .net framework
Is there a way to run .net based applications without .net framework installed. Is there a way to do this. Is there a software that can achive this. Commercial software is also possible.
Added:
Has …
10
votes
3answers
844 views
Naming Conventions for Abstract Classes
I distinctly remember that, at one time, the guideline pushed by Microsoft was to add the "Base" suffix to an abstract class to obviate the fact that it was abstract. Hence, we have classes like …
9
votes
12answers
756 views
What should i choose? jquery, mootools, yui, scriptaculous or prototype?
Duplicate: Which Javascript framework (jQuery vs Dojo vs … )?
I am totally new to javascript, but i want to implement ajax features into my website. Which JS framework should i learn? Please …
9
votes
7answers
898 views
How to actually use Swing Application Framework?
Hello,
I'd like to learn how to effectively use Swing Application Framework. Most of the the examples I've found are blog entries that just explain how to great it is to extend SingleFrameApplication …
9
votes
12answers
948 views
How do you determine what technology a website is built on?
Quite often I come across a nice looking or functional website, and wonder what technology was used to create it. What techniques are available to figure out what a
particular website was built with?
…
