1
vote
What development book made the most impact on you as a developer?
Mine is Test Driven Development by Example
…
0
votes
How do you code the “Hello World!” program in your favourite language?
Whitespace is a language where only whitespace characters are used. Non whitespace chars are comments.
Here is Hello, World in Whitespace. …
2
votes
What’s the first thing you ‘trip up on’ when learning a new language.
Now how do I write assert (1+2*3 == 7) in this language? :)
An assert statement is the most primitive form of debugging construct that is present in every …
2
votes
7
votes
Can Regex be used for this particular string manipulation?
I converted Greg Hewgill's python code to C# and it worked!
[Test]
public void ReplaceTextInQuotes()
{
Assert.AreEqual("axbx'cPdPe'fxgh'iPj'k",
Regex.Replace("axbx'cxdxe'fxgh …
12
votes
Language agnostic skills
Focus on the paradigms and not on the languages and libraries.
procedural/imperative programming
declarative programming
object oriented programmming
class …
