1
vote
2answers
164 views

Class of problems solvable by sed or stream editors

I've came across a question transform this text with sed [sed only] and it got me wondering what class of problems is solvable by stream editors or programs/computational models with similar ...
2
votes
1answer
60 views

Are there any tools that integrate wireframes and designs with component and bugs lists?

I’ve used a couple of tools that integrate source control and bug tracking (specifically Unfuddle and Bitbucket). Both these tools let you set up simple lists of components, to help organise bugs. I ...
8
votes
5answers
1k views

Are There Any Programming Focused Notebooks?

I know that engineering paper exists, but are there any companies that make programmer-specific notebooks for notes/pseudo-code/designs? Paper is my preferred way of outlining things, so the addition ...
3
votes
2answers
510 views

Designing tool for C#

I have seen few developers use a tool for designing their application where they simply dragged needed elements (classes, variables, objects) and just did magic work. Then there was a button to ...
8
votes
5answers
316 views

Is there a better strategy than relying on the compiler to catch errors?

I've been programming in C and C++ for some time, although I would say I'm far from being an expert. For some time, I've been using various strategies to develop my code such as unit tests, test ...