33
votes
16answers
1k views
What are good resources for CSS templates or templated layout sites?
Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.
16
votes
9answers
570 views
Does functional programming mandate new naming conventions?
I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell.
The article claims that short variab …
16
votes
7answers
1k views
Font size in CSS - % or em?
When setting the size of fonts in CSS, should I be using a percent value or em? Can you explain the advantage?
15
votes
20answers
1k views
Style question: Writing “this.” before instance variable and methods: good or bad idea?
One of my nasty(?) programming habits in C++ and Java is to always precede calls or accesses to members with a "this". For example: this.process(this.event)...
A few of my students …
13
votes
7answers
612 views
Internal typedefs in C++ - good style or bad style?
Something I have found myself doing often lately is declaring typedefs relevant to a particular class inside that class, i.e.
class Lorem
{
typedef boost::shared_ptr<Lorem& …
12
votes
7answers
616 views
.toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()]) ?
Assuming I have an ArrayList
ArrayList<MyClass> myList;
And I want to call toArray, is there a performance reason to use
MyClass[] arr = myList.toArray(new MyClass[myList …
11
votes
21answers
788 views
Is a variable named i unacceptable?
As far as variable naming conventions go, should iterators be named i or something more semantic like count? If you don't use i, why not? If you feel that i is acceptable, are ther …
9
votes
11answers
413 views
Declaring a looooong single line string in C#
Is there a decent way to declare a long single line string in C#, such that it isn't impossible to declare and/or view the string in an editor?
The options I'm aware of are:
1: L …
9
votes
20answers
732 views
int i = 2; // what do you use as a throwaway line when you just need something to breakpoint on?
Whenever I want a breakpoint someplace where there isnt anything to break on just (inside a loop, &c), I tend to automatically drop down a:
int i = 2;
I'm curious what other …
9
votes
14answers
4k views
Default parameters with C++ constructors
Is it good practice to have a class constructor that uses default parameters, or should I use separate overloaded constructors? For example:
// Use this...
class foo
{
private: …
8
votes
14answers
487 views
Which is better coding style?
During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I thi …
8
votes
7answers
199 views
Good book on c# style?
what book would you recommend to improve one's c# style of writing? I know Code Complete has a few tips on style and organizing code but it's not specific to c#.
8
votes
4answers
224 views
How have your ideas about C programming practices changed in the last ten years?
Object-Oriented programmers seem to have all the fun. Not only are they treated to major framework revisions every two years, and new and Improved languages every five, they also …
7
votes
6answers
148 views
2nd or 3rd Person Comments
Do you write comments in 2nd or 3rd person?
What would you prefer?
// go somewhere and do something (2nd person comment)
or
// goes somewhere and does something (3rd person co …
7
votes
7answers
315 views
Should I use $hash{”string”} or $hash{string} in Perl?
In Perl, which of these is the "better" style?
$hash{"string"} or $hash{string}?
In any case, are they functionality identical?
