Tagged Questions
The personal-preference tag has no wiki summary.
2
votes
6answers
1k views
Using keyboard without a numpad [closed]
Do you guys think it's a good idea to get used to programming with a keyboard without a numpad?
At work I use one with a numpad, but as soon as I use a keyboard without one, like in laptops, it slows ...
1
vote
2answers
428 views
Eclipse: Use background color instead of outline for matching bracket
Does anybody know how to set the background color of matching brackets to yellow instead of using a grey outline? I want to do this to be consistent with NetBeans IDE and EditPad Pro.
1
vote
6answers
226 views
<?php vs <? …Does it matter? [closed]
Possible Duplicate:
Are PHP short tags acceptable to use?
<?php
//Some code
?>
or
<?
//Some code
?>
I know the first way is the proper way but PHP code isn't ...
1
vote
7answers
147 views
Is Separator First Formating (SFF) with SQL Code Formating easier to read/maintain?
Do you place separators (commas, and, or operators) at the front of the line?
Select Field1
, Field2
--, Field3
From [some_table] as ST
Inner Join [other_table] as OT
ON ST.PKID = OT.FKID
...
0
votes
2answers
90 views
Matrix/Vector Preference: Return copy or transform internally?
Just a quickie to get a feel for the community in general's preference: When working with objects like Vectors (mathematical, not STL) and Matrices do you prefer a library that:
A) Doesn't alter the ...