templates

What sites offer free, quality web site design templates?

Let's aggregate a list of free quality web site design templates. There are a million of these sites out there, but most are repetitive and boring. I'll start with freeCSStemplates.org I also think other sites should follow some sort of standards, for example here are freeCSStemplates standards Released for FREE under the Creative C...

A Stack Overflow Podcast throwback: What is to be done about tag soup?

A few weeks ago, in episode 14, Jeff and Joel were HTML, LINQ, Rails, et al: Atwood: Even in Rails land, where they have the flexibility of essentially redefining the language at will, to solve all these problems -- at a steep performance cost, obviously, but still, the productivity is worth it -- they still, if you look at the HTML ...

GCC problem : using a member of a base class that depends on a template argument

The following code doesn't compile with gcc, but does with Visual Studio: template <typename T> class A { public: T foo; }; template <typename T> class B: public A <T> { public: void bar() { cout << foo << endl; } }; I get the error: test.cpp: In member function ‘void B<T>::bar()’: test.cpp:11: error: ‘foo’ was not declared ...

Creating Visual Studio templates under the "Windows" catagory.

I have created a template for Visual Studio 2008 and it currently shows up under File->New Project->Visual C#. However, it is only really specific to Visual C#/Windows but I can't work out how to get it to show up under the "Windows" category and not the more general "Visual C#". ...

Resources on wordpress theme-development

What are the best resources for Wordpress theme-development? I am currently in the phase of starting my own blog, and don't want to use one of the many free themes. I already have a theme for my website, so I want to read about best-practices. Any advice on how to get started would be very welcome :) I have now created my theme (woh...

Where can I find decent visio templates/diagrams for software architecture?

Anyone have any good urls for templates or diagram examples in Visio 2007 to be used in software architecture? ...

How I hide empty Velocity variable names ?

I am using Struts + Velocity in a Java application, but after I submit a form, the confirmation page (Velocity template) shows the variable names instead an empty label, like the Age in following example: Name: Fernando Age: {person.age} Sex: Male I would like to know how to hide it! ...

Template typedefs - What's your work around ?

C++ 0x has template typedefs. See here. Current spec of C++ does not. What do you like to use as work around ? Container objects or Macros ? Do you feel its worth it ? ...

Do you have any recommended File templates for resharper for VB.Net

The ones that stick out and make life usefull. ...

What are the differences between Generics in C# and Java... and Templates in C++?

I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc. So, what are the main differences between C++, C#, Java in generics? Pros/cons of each? ...

Change templates in XCode

How would I change the initial templates created by XCode when creating a new Cocoa Class. I am referring to the comments and class name created when using XCode's new class wizard. ...

Changing default file structure in a Java Struts App

Hey, I have been working with Struts for some time, but for a project I am finishing I was asked to separate Templates (velocity .vm files), configs (struts.xml, persistence.xml) from main WAR file. I have all in default structure like: application |-- META-INF -- Some configs are here |-- WEB-INF ...

Templates spread across multiple files

C++ seems to be rather grouchy when declaring templates across multiple files. More specifically, when working with templated classes, the linker expect all method definitions for the class in a single compiler object file. When you take into account headers, other declarations, inheritance, etc., things get really messy. Are there any...

What are the differences between "generic" types in C++ and Java?

Java has the generic keyword and C++ provides a very strong programming model with templates. So then, what is the difference between C++ and Java generics? ...

Is it possible to convert projects wizard created for MSVS 2005 to MSVS 2008 format automatically

I have a bunch of wizards created for MSVS 2005. Is it possible to convert them to MSVS 2008 format automatically? ...

Getting Apache to modify static webpages on the fly

I have been experimenting with woopra.com A web analytics tool. Which requires a piece of javascript code to be added to each page to function. This is easy enough with more dynamic sites with universal headers or footers but not for totally static html pages. I attempted to work round it by using a combination of Apache rewrites and S...

Insert current date in Excel template at creation

I'm building an excel template (*.xlt) for a user here, and one of the things I want to do is have it insert the current date when a new document is created (ie, when they double-click the file in windows explorer). How do I do this? Update: I should have added that I would prefer not to use any vba (macro). If that's the only option,...

How can I add reflection to a C++ application?

I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some limited information using RTTI. Which additional libraries (or other techniques) could supply this information? ...

Deciphering C++ template error messages

I'm really beginning to understand what people mean when they say that C++'s error messages are pretty terrible in regards to templates. I've seen horrendously long errors for things as simple as a function not matching its prototype. Are there any tricks to deciphering these errors? EDIT: I'm using both gcc and MSVC. They both seem...

Templates In VB

Hi all, I've got some VB code (actually VBA) which is basically the same except for the type on which it operates. Since I think the DRY principle is a good guiding principle for software development, I want to write one routine for all of the different types which need to be operated on. For example if I had two snippets of code like...