Tagged Questions
The experience tag has no wiki summary.
190
votes
78answers
9k views
Old Developers - any future? [closed]
I'm 44 now and I just love code!
And software and programming. And MSDN, and Communication of the ACM and Programmez (French magazine) and Stack Overflow and McConnell, Cwalina/Abrams, J. Skeet and ...
104
votes
52answers
5k views
Have you ever written a computer virus (or at least tried)?
The title pretty much says it all: have you ever written (or tried to write) a computer virus? I know pretty many young programmers try to do something like that in their early days. Did you? If yes, ...
95
votes
29answers
4k views
Coping with feelings of technical mediocrity [closed]
As I've progressed as a programmer, I noticed more nuance and areas I could study in depth. In part, I've come to think of myself from, at one point, a "guru" to now much less, even mediocre or ...
63
votes
182answers
7k views
What's your first program that you were proud of?
What's the first program you ever wrote that you were proud of and why?
For me it was probably a Delphi 2 program I wrote that simply monitored Windows' memory usage and displayed a bar graph in the ...
60
votes
47answers
4k views
Debugging techniques
Debugging is the most time consuming activity of programming. So using appropriate tools and techniques is paramount to efficiency and productivity.
What are your favorite debugging techniques, and ...
59
votes
28answers
3k views
Does pair programming work? [closed]
At our company, we the developers tried some methodologies to be more productive. One thing we could not try was Pair Programming. The reason is, that we are a small company and have only few ...
51
votes
54answers
3k views
What programming hack from your past are you most ashamed of? [closed]
We've all been there (usually when we are young and inexperienced).
Fixing it properly is too difficult, too risky or too time-consuming. So you go down the hack path. Which hack from your past are ...
43
votes
11answers
4k views
Beginning TDD - Challenges? Solutions? Recommendations? [closed]
OK, I know there have already been questions about getting started with TDD.. However, I guess I kind of know the general concensus is to just do it , However, I seem to have the following problems ...
38
votes
21answers
3k views
37
votes
37answers
4k views
Best program you have written in assembly language, so far? [closed]
Back to the golden days of assembly language.
As we know, assembly language is a low-level language with many hidden powers in it. If one can program well in it, many powerful and useful application ...
31
votes
27answers
2k views
How long should it take for someone to be able to type code from memory?
I understand that this question could be answered with a simple sentence and that it may be viewed as subjective, however, I am a young student who is interested in pursuing a career in programming ...
27
votes
11answers
3k views
How helpful is knowing lambda calculus?
To all the people who know lambda calculus: What benefit has it bought you, regarding programming? Would you recommend that people learn it?
25
votes
56answers
3k views
What are the important notions in C that you did not learn from your teachers
In September, I will give my first lectures on C to students in engineering school (usually I teach math and signal processing, but I have also done a lot of practical work in C, without giving the ...
25
votes
18answers
1k views
Do you ever try to explain how fun programming is? [closed]
As you all know, there is nothing more fun than writing software. I guess we all remember occasions where we had to force ourselves to get up from behind our monitor to get something to eat or to go ...
22
votes
14answers
2k views
What was your most uncomfortable programming experience
I made this a wiki because I think that some people may think it's too "thready" but I had to share and it wasn't appropriate on my blog.
I've had a few, but I think the strangest was once I was on ...
21
votes
15answers
2k views
Does C# have too many language features?
This is a discussion that pops a from time to time in our team. While a few quickly learned C# 3.0 features, other stick with classical techniques.
Some never use Linq, think that lambda expressions ...
20
votes
63answers
4k views
Are you a self taught programmer or did you take a programming course? [closed]
Lots of developers I know were self taught programmers including me.
I was wondering how much of the developer community learned programming by taking a course in school or by experimenting, asking ...
19
votes
6answers
3k views
Have you used any of the C++ interpreters (not compilers)?
I am curious if anyone have used UnderC, Cint, and Ch (or any other C++ interpreter) and could share their experience.
Thanks everyone for your valuable input.
/Allan
18
votes
11answers
4k views
3D Game Development tips (especially game architecture)
tl;dr version: What is the best advice (that you learned by experience and not from books) that you can give me, with regards to 3D game architecture? (as in, how to design and connect the components ...
17
votes
17answers
2k views
Getting out of CRUD
Definition:
CRUD - Create, Read, Update, Delete; The four basic functions of persistent storage. In the context of this question, specifically related to business applications.
I'll be honest, my ...
16
votes
28answers
2k views
What is your best programming experience? [closed]
What has been your best programming experience so far?
Was it the first time you compiled hello.c?
Was it the first time you made your name fill your fathers TV with that 80's home computer?
Was it ...
12
votes
15answers
602 views
Is reading too many management books too early for me?
I do not yet have 3 years of experience in development, and I have been reading management books by people such as Michael Lopp, Joel Spolsky, the Art of Project Management, and Rapid Development by ...
12
votes
18answers
2k views
Powershell pitfalls
What Powershell pitfalls you have fall into? :-)
Mine are:
# -----------------------------------
function foo()
{
@("text")
}
# Expected 1, actually 4.
(foo).length
# ...
12
votes
17answers
2k views
Have you had a bad experience with Scrum or Sprinting? [closed]
Has anybody had a bad or very bad experience or stories with Scrum or Sprinting, that you can share with a n00b so that he doesn't make the same mistake?
If you had a problem, what were your lessons ...
12
votes
12answers
2k views
Programming Job Applications - Years of Experience?
I'm currently applying for jobs, and they all require "X Years Experience in Y technology".
My question is, is there some standard way of measuring X?
For example, I have used C# professionally for ...
11
votes
7answers
380 views
How to learn design patterns and use them in practice [closed]
Already tried:
dofactory
Sourcemaking+their video
"GOF" book
"Head First Design Patterns" book
But still have problems with implementation scenarios on practice. Maybe i have too little ...
11
votes
1answer
518 views
Object Oriented Database experiences?
I'm doing a research project, part of which is concerend with object oriented databases. I would like to hear from anyone who has experience using such databases, or considered using them but opted to ...
10
votes
8answers
454 views
PHP devs that moved to Python, is the experience better?
I'm planning on moving to Python and I have a couple of additional questions along with the title:
did you have more fun with python?
are you as productive as when you're using PHP?
what made you ...
9
votes
18answers
2k views
What did you develop using a microcontroller?
I've always been fascinated by microcontrollers and I'm planning to do a few hobby projects just to satisfy my inner geek :)
I'm looking for ideas and motivation, so what did you develop using a ...
9
votes
10answers
473 views
Best Practices for Robustness
I just came across this question about initializing local variables. Many of the answers debated simplicity/readability vs. robustness. As a developer of (remotely deployed) embedded systems, I ...
9
votes
4answers
344 views
What are the tipping points for team size vs process overhead?
At what point in a team's growth must process change drastically? A lone coder can get away with source control and a brain. A team trying to ship large prepackaged software to local and ...
9
votes
9answers
979 views
Best way to get into an open source project
I really want to up my programming experience and I've heard that one of the best ways to do this is to get into an open source project and try and contribute. But what is the best way of doing that? ...
7
votes
1answer
874 views
Any Open Source software using Orient DB database? Have you any experiences with that database?
Do you know any open source software that uses Orient DB? Or have you used that product yourself? Any experiences to share?
I have recently looked into Orient DB, and it has nice and interesting ...
7
votes
8answers
2k views
most popular j2ee based websites
J2EE as I understand is used to build Enterprise applications.
My question is :What are the most popular public facing(internet) sites using j2ee stack.
The one's that I know of are : linkedIn.com ...
7
votes
2answers
2k views
Experiences of creating Social Network site in Django
I plan to sneak in some Python/Django to my workdays and a possible social network site project seems like a good possibility.
Django itself seems excellent, but I am skeptical about the quality of ...
7
votes
10answers
573 views
Increases Skills what should I learn?
My path to a 'fulltime'- developer stated as a analyst using VBA with Excel, Access, and then onto C#. I went to college part time once I discovered I had a passion for coding not business.
I do ...
6
votes
5answers
569 views
UI design and cultural sensitivity/awareness
When designing a user interface for an application that is going to be used internationally it is possible to accidentally design an aspect of the UI that is offensive to or inappropriate in another ...
6
votes
4answers
509 views
How do you give a junior developer a shot on a big project with tight deadlines?
I'm looking for advice on how to give a junior developer a chance to gain experience on a big project with tight deadlines without hurting the timeline. If we all know it will take a little longer ...
6
votes
5answers
680 views
Does anyone have experience with ZFS?
I am considering to adopt ZFS and I would be happy to know your experience in both production and testing environment.
6
votes
7answers
334 views
How do you stay focused and ship projects?
I find way too many projects to get involved in, way to many languages to play with (and way too many cool features within those languages), and way too many books to read...
How do you guys stay ...
5
votes
4answers
159 views
Experimental IDE concepts
I am interested in building a new style IDE for a side project. Mainly to do away with the normal notepad on steroids IDE. I am looking for some inspiration for things that have been tried or that ...
5
votes
10answers
329 views
When career conflicts with company [closed]
I'm working in a small company that runs an online product. The product works so far, but they want to add a lot of additional features to it.
They're using reasonably current technology (ASP.NET, ...
5
votes
6answers
4k views
Database choice for large data volume?
I'm about to start a new project which should have a rather large database.
The number of tables will not be large (<15), majority of data (99%) will be contained in one big table, which is ...
5
votes
10answers
409 views
What is the best approach to take when you can't figure something out, and you have no one to ask?
The second part of that question is key. If you are one of a few programmers, and after banging your head on your keyboard for endless nights you can't figure something out, with no one else in your ...
5
votes
9answers
229 views
Troubleshooting user issues - techniques?
This is a pretty general question - but what are some of your strategies / procedures for troubleshooting issues that users find?
Specifically, I'm talking about web-based programming - a combination ...
5
votes
14answers
1k views
Is there a minimum age/years of experience to be a “senior”? [closed]
I wondered if there is a common sense of a "minimum age" or at least a certain period of time before a developer is thought of as a "senior".
Do you think, you can't be a senior developer before an ...
4
votes
3answers
145 views
Where have you used Model Driven Engineering, or Agile concepts? Opinions?
At our university we have "learned" about Model Driven Engineering. They provided a few examples, however I consider it still to be a fairly theoretical introduction. I'm now wondering where and how ...
4
votes
3answers
677 views
Comparison of NoSQL Databases for Java
I want to find out more about NoSQL databases/data-stores available for use from Java, and so far I tried out Project Voldemort. Except for awfully chosen name, it seems fine so far.
I'd like to find ...
4
votes
3answers
424 views
Uses of Jython while programming
I recently started learning Python and came accross the term Jython.
From the Google search results, I thereby concluded that it is indeed a very important term.
What is the experience ...
4
votes
3answers
252 views
Migrating from Subversion to Git
I have a lot of pre-existing projects and code in a few different Subversion repositories.
I am planning on getting my toes wet with Git by migrating a few of the easier/soon to be multi-developer ...