EricSchaefer

3,030
Reputation
529 views

Registered User

Name EricSchaefer
Member for 1 year
Seen 3 mins ago
Website
Location Dresden/Germany
Age 35
10h
answered Having line breaks between <li>s
2d
accepted Community site framework suggestions
2d
comment Community site framework suggestions
5148 modules to be precise... ;-)
2d
comment Community site framework suggestions
There are in fact so many modules, it is sometimes not so easy to find the right one ;-)
2d
comment Community site framework suggestions
There are currently more than 5000 modules for drupal. If there should really not be a module for a feature you need, you can easily build your own if you know php. There is plenty of documentation for that. There is also a very busy forum where you can ask for help.
2d
answered Community site framework suggestions
Nov
28
revised Control the position of the vertical scrollbars
edited title; edited title
Nov
28
answered Display the number of the characters in a string
Nov
28
comment Branching to labels
Please post some more info. What do you have, what do you need. Do you already have some code you can show us?
Nov
28
revised Branching to labels
edited tags
Nov
28
answered help with c# pattern.
Nov
28
answered What “already invented” algorithm did you invent?
Nov
27
comment How to get the first n elements of a std::map
I am aware of that. But the OP wants a map "with at most n elements". Chopping of all elements larger than n is not like unlinking a list or shortening an array. Since std::map is organized like a tree, chopping is probably rather expensive...
Nov
27
comment Is there a javadoc-like program for C/C++?
Thanks for fixing the typo.
Nov
27
answered C# “internal” access modifier when doing unit testing
Nov
27
answered Is there a javadoc-like program for C/C++?
Nov
27
comment How to get the first n elements of a std::map
Yes, they are. But a map is "most likely implemented as a (balanced) tree of nodes" (quote "The C++ programming language", Bjarne Stroustrup), not a list. So mymap[n] doesn't make any sense.
Nov
27
answered How to get the first n elements of a std::map
Nov
27
revised How to find if a value is in an array in Visual C#
added 21 characters in body; added 1 characters in body
Nov
27
comment How to find if a value is in an array in Visual C#
@RichardOD: You are right. Editing the answer...
Nov
27
answered How to find if a value is in an array in Visual C#
Nov
27
revised Winform and Tab?
deleted 25 characters in body
Nov
27
revised Winform and Tab?
added 5 characters in body
Nov
27
answered Winform and Tab?
Nov
26
answered What development book made the most impact on you as a developer?
Nov
26
answered What development book made the most impact on you as a developer?
Nov
26
comment Can a certain overloaded constructor, show certain overloaded methods?
What do you mean "not to show the method"?
Nov
24
comment Can I use throws in constructor?
Good luck isolating such a class in a test harness...
Nov
24
comment Can I use throws in constructor?
^TestableJava.pdf
Nov
24
comment Can I use throws in constructor?
objectmentor.com/resources/articles/…
Nov
24
comment Can I use throws in constructor?
So what? You need to call open() on a socket class, before you call send(). Thats called a protocol. Throw an exception if the object was not initialized as send() would do.
Nov
24
comment Can I use throws in constructor?
Well, how about not opening a file in a ctor? When will people learn...
Nov
24
comment Can I use throws in constructor?
No, it is not. Don't open files in a ctor. A ctor is for basic initializing of internal state. If you need to do file/network/database stuff, do it in an additional open()/init()/whatever() method.
Nov
24
answered C# Auto Property - Is this ‘pattern’ best practice?
Nov
24
comment Why constructor not returns value
@sbi Since you do not call the ctro directly, it can not return anything. The reference/pointer to the new instance is returned by new, not the ctor.
Nov
24
revised Why constructor not returns value
added 189 characters in body
Nov
24
answered Why constructor not returns value
Nov
24
comment How do I ignore a test based on another test in NUnit?
How about good ol' INSERT?
Nov
23
comment When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?
How do you refactor a 500 kLOC C++ project so it compiles in under 5 minutes?
Nov
23
comment When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?
It depends on your work. See it that way: You are not only selling your time but also your computers time.
Nov
23
answered When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?
Nov
23
comment How do I ignore a test based on another test in NUnit?
@Daniel T. You are missing the point. Tests should always be independent of each other. That means using Add() in a test for Get() is not a good idea. If Add()breaks, the tests for Get() will break too. Your test is not isolated. Who says you need to use Add() to prepare your DB for Get()...
Nov
23
comment .NET code refactoring when overloads differ on data type
So it is only "somewhat common"?
Nov
23
answered How do I ignore a test based on another test in NUnit?
Nov
23
answered How to convert string “brakemeup” in to char[stringlength] array?
Nov
23
answered .NET code refactoring when overloads differ on data type
Nov
23
revised Query regarding making the textbox readable?
edited title
Nov
22
comment How to get MAC address of your machine using a C program?
It is very portable. It runs on Ubuntu and Kubuntu... ;-)
Nov
19
comment What is the preferred unit testing tool for C development in Visual Studio?
Can cou write pure C (not C++) tests with Google Test?
Nov
19
answered What is the preferred unit testing tool for C development in Visual Studio?