1
vote
7answers
120 views
What are your favourite Java features? [closed]
Why do you like Java so much? What are those features that make it practically better than C or even C++?
-4
votes
2answers
113 views
How is Java an ‘imperative’ programming language and not a ‘declarative’ one?
Specially in comparison to C/C++ (which are declarative), how is Java imperative?
0
votes
1answer
27 views
Limitations of using VS2010 Professional with TFS 2010 Basic?
I'm currently in the process of investigating TFS 2010, as it's been agreed that we'll be getting VS2010 Professional when it's released and it comes with TFS Basic (we're currentl …
1
vote
1answer
67 views
PHP - Find next available time slot
I'm looking for help in writing a script to find the next available time slot.
Ex: Person A wants an appointment and the available time slots everyday is 9am, 12pm, 4pm, 6pm, 9pm …
0
votes
6answers
86 views
PHP - Which word is properly typed?
Hey,
I'm looking for help on writing a script to check a list of phrases/words and compare them to one another and see which one is the properly typed phrase/word.
$arr1 = array( …
2
votes
24answers
1k views
Is C faster than C++?
I've heard many opinions on this subject, but never saw any good proofs that C is faster than C++. So, ...is C faster than C++?
EDIT: This is a Runtime comparison.
0
votes
4answers
44 views
Do you use online or local help in Visual Studio / Are there downsides of one over the other?
Well I am sure that most people have seen the following:
This time, I did not install the local MSDN so I do not have the option of Local help, however I usually always use the …
1
vote
3answers
144 views
Which Is The Major Differences Between Windows XP, Vista And 7 At The Development Side
Hello,
Recently I installed Windows 7 in my development machine just to test, with it I installed Visual Studio 2010, but I was thinking in what are the major differences between …
0
votes
4answers
58 views
String comparison - strA.ToLower()==strB.ToLower() or strA.Equals(strB,StringComparisonType)?
As per title, what practise for string comparisons do you use and why?
1
vote
3answers
42 views
How to perform an inexact compare in Java beans?
I have a large (more than 100K objects) collection of Java objects like below.
public class User
{
//declared as public in this example for brevity...
public String first_na …
0
votes
2answers
52 views
What’s the most challenging project you ever finished? [closed]
Please list the one you are most proud of!
1
vote
3answers
65 views
How best to handle time arithmetic for a scheduling app?
Im building a bus schedule app.
In the mysql db I have a 'time' field that is static - let's say 15:23 which is the scheduled time for the bus and never changes from one day to th …
0
votes
1answer
12 views
Is there a way to compare the appearance and/or source HTML of 2 browser tabs?
I'm working on a web based application, and in order to test my changes, I'd like to be able to compare the visual rendering (perhaps by way of overlaying) and the source HTML (dif …
3
votes
3answers
64 views
How do I compare the fields/properties between POCOs?
Let's say I have a POCO:
public class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
public IList<Person> Relatives { get; s …
4
votes
2answers
87 views
IronPython to Original Python comparison. What can I expect from the first one?
I wish to learn Python but I'm working all day in .Net as a C# developer, so I decided to download and install IronPython and integrated IronPython studio. How different or similar …
