Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
58answers
6k views

What development tools do you carry on your USB drive?

I've just bought a new 4GB USB thumb drive and I'm trying to decide what to put on it. I'm thinking about one of the webserver on a stick packages, a C/C++ IDE (leaning toward Code::Blocks; had ...
30
votes
21answers
2k views

Most useful jQuery plugins

Which are the most useful jQuery plugins you have used. List out one per answer(to rank the best plugins individually), and describe what it does as well. BlockUI - Can block certain elements (or ...
30
votes
47answers
3k views

Survey of GIS Programming

How many programmers on this site work with GIS? What middleware do you work with? ESRI? Mapguide? Google? What kind of projects do you work on? Are you focused on web work, making desktop ...
26
votes
16answers
2k views

How important are Design Patterns really? [closed]

How important are Design Patterns really? I think the earlier generation of programmers didn't use Design Patterns that much (people who graduated in the 80s and before mid 90s). Do the recent ...
22
votes
23answers
2k views

What is software development at your company really like (methodologies, tools, …)? [closed]

Since I've started my first job as a professional software developer about two years ago, I've read many articles about commonly accepted methodologies (e.g. Scrum, XP), technologies (e.g. EJB, ...
19
votes
15answers
6k views

Full Time Employee versus Contract Work? [closed]

What types of programmers tend to be attracted to full-time positions and what types are drawn to contract positions? Which type are you, and have you swapped between one to another? Does there come ...
18
votes
3answers
935 views

Narrowing conversions in C++0x. Is it just me, or does this sound like a breaking change?

C++0x is going to make the following code and similar code ill-formed, because it requires a so-called narrowing conversion of a double to a int. int a[] = { 1.0 }; I'm wondering whether this kind ...
17
votes
2answers
3k views

Are there any popularity / usage statistics available for the Free RCS/SCM/VCS systems?

Are there any surveys anywhere which report on number of projects and/or people using the assorted Free version control systems? Also interesting is if a similar survey was one over time, to see how ...
14
votes
7answers
11k views

asp.net survey questionnaire engine

I am looking to implement (or build as a last resort) a type of survey engine that allows for extensibility and integration into an existing workflow engine. The survey/questionnaire engine should ...
13
votes
19answers
1k views

Eclipse as an IDE - What do you find missing as a beginner in Java?

I am working on a solution that aims at solving problems that newbie programmers experience when they are "modifying code" while bug fixing / doing change requests, on code in production. Eclipse, as ...
11
votes
6answers
289 views

How do I handle multiple kinds of missingness in R?

Many surveys have codes for different kinds of missingness. For instance, a codebook might indicate: 0-99 Data -1 Question not asked -5 Do not know -7 Refused to respond -9 ...
11
votes
17answers
1k views

What programming languages and language features are under 10?

It seems there are many 'new' languages around but in reality it seems like most of the popular, non experimental, ones are already in their teens and the truely mainstream are older than most junior ...
10
votes
12answers
617 views

how to develop a program to minimize errors in human transcription of hand written surveys

I need to develop custom software to do surveys. Questions may be of multiple choice, or free text in a very few cases. I was asked to design a subsystem to check if there is any error in the manual ...
8
votes
6answers
573 views

.NET/Mono Install Base

Me and some friends are considering writing a new FOSS project, and the debate is divided between using .NET or something else. So I am wondering if there is an advertised install base for Mono on ...
8
votes
14answers
1k views

List of large projects built using Perl

Can you please name some large (maintained, with active communities) projects written using Perl? I'd like to be able to provide a list of mature, production-ready projects so that Perl can be seen as ...
8
votes
45answers
2k views

How Many Hours per Week on Average do you put in for your Workplace? [closed]

I'd love to see a wide sampling of StackOverflow users as I feel that you all tend to represent developers with higher than average passion for your craft. Thanks!
6
votes
3answers
1k views

Create unique Poll/vote/survey in php

The unique poll/vote/survey i mean here is, user can only vote once. How do i do that? Track their ip? Login? Beside login, what else? (login is my last option, thus beside login, is there anything ...
6
votes
18answers
2k views

What operating systems available for an 8-bit microprocessor?

It does not need to be a full fledged OS, but at least have multitasking capabilities (i.e. a scheduler). Please mention what processor architecture it works on. This is a survey, so exact ...
5
votes
6answers
302 views

What's the most efficient way for a developer to switch between tasks?

I'm looking for a workflow-type description of the series of steps you perform to switch from one software development task to another. If a step involves a tool, please specify which tool and how ...
5
votes
2answers
173 views

In SQL, how can I count the number of values in a column and then pivot it so the column becomes the row?

I have a survey database with one column for each question and one row for each person who responds. Each question is answered with a value from 1 to 3. Id Quality? Speed? -- ------- ----- 1 ...
5
votes
11answers
609 views

What is a good game involving coding?

I remember the days of Shadowrun that got me excited about hacking. There is CodeWar and LightBot which are both fun (though CoreWar is a little dated). What other games are there involving coding ...
4
votes
2answers
106 views

drawing a stratified sample in R

Designing my stratified sample library(survey) design <- svydesign(id=~1,strata=~Category, data=billa, fpc=~fpc) So far so good, but how can I draw now a sample in the same way I was able for ...
4
votes
4answers
833 views

Survey Data Model - How to avoid EAV and excessive denormalization?

My database skills are mediocre at best and I have to design a data model for survey data. I have spent some thoughts on this and right now I feel that I am stuck between some kind of EAV model and a ...
4
votes
4answers
2k views

Ruby on Rails questionnaire tutorial?

Can't find any tutorial for creating a simple questionnaire system on RoR (without using Finite State Machines). I think the Model is simple: Quizzes (have many Questions) Questions (belong to ...
4
votes
6answers
694 views

Which C++ logical operators do you use: and, or, not and the ilk or C style operators? why?

leisure/curiosity question as implied in the title. I personally prefer the new operators as to make code more readable in my opinion. Which ones do use yourself? What is your reason for choosing ...
4
votes
12answers
447 views

How does the above-average programmer learn today?

Most of us know the quote "The average software developer reads less than one professional book per year..." from Peopleware I am curious to know how (or if) it has changed since then - it's nice to ...
4
votes
3answers
1k views

How to make a customizable user survey in Django

I am making a system for a company which among other things must hold information about the satisfactory level about various things, I have made it work fine using a fixed model with fixed questions ...
3
votes
2answers
794 views

Good C# XMPP Library supporting Group Chat and TLS or SSL Encryption

So I have been struggling with finding a decent C# library to use with XMPP that supports either SSL or TSL encryption between the clients and the server. I am hoping that someone can recommend I ...
3
votes
1answer
84 views

How to persist branching logic into database?

We are building a survey engine for our internal use. I would like to know how to persist the question branching logic into the database? Any body done this before or any ideas on the schema for the ...
3
votes
4answers
129 views

Combining Survey Items in R/ Recoding NAs

I have two lists (from a multi-wave survey) that look like this: X1 X2 1 NA NA 2 NA NA How can I easily combine this into a third item, where the third column always takes the non-NA value of ...
3
votes
2answers
690 views

Looking for the best Asp.net survey application

Please give suggestions for best Asp.Net survey application with source code - commercial is fine..
3
votes
2answers
1k views

Reading first row as header is easy, what gives with two rows being the header

I have been using surveygizmo which is an amazingly powerful online questionnaire presenter. The data can be exported as a csv file but alas it has two [not one] header rows. The first row specifies ...
3
votes
1answer
915 views

Questionnaire/survey app like Google Form - (python+javascript)

Django-survey or django-questionnaire is too admin-centric for me (beside tied to django). I want my user to create their own survey. Something like Google Form survey (view example), where form ...
3
votes
1answer
2k views

Survey Data Model

I'm developing a simple survey module for an ASP application I'm working on and I'd like to get some suggestions on the data model. Questions can be one of three types - multiple choice, multiple ...
3
votes
25answers
1k views

Three Things I Learned About Software WHILE NOT in University

Well this question is asked by Scott at Scott Hanselman's blog, but I want to introduce over here. What were the Three Things You Learned About Software WHILE NOT in University?
3
votes
7answers
1k views

best way to store survey data?

I am developing a very small survey application, likely 3-4 pages web application. so my question is what is the best way to save survey data? by the way so far I have come up with the following ...
3
votes
6answers
1k views

Is it impractical to put an HTML form into an email?

I've had several clients ask this, and I've never been able to get or give a satisfactory answer. Can you (practically) put a working form into an HTML email? My understanding is that you can, but ...
3
votes
5answers
700 views

What is source code control for?

There was a recent question about, effectively, replacing a local source code control system with a "keep all versions" file system or tool. Many of the answers said in essence that source code ...
3
votes
7answers
1k views

Tools/Components for building a Survey Application

We are designing a survey application with the following features The users will be able to select questions from a set of predefined questions. Each question has a question type defined which ...
2
votes
3answers
119 views

Compensating for “variance” in a survey

The title for this one was quite tricky. I'm trying to solve a scenario, Imagine a survey was sent out to XXXXX amount of people, asking them what their favourite football club was. From the ...
2
votes
1answer
575 views

Sharepoint survey - Condition to multiple responses

I have a sharepoint survey in which the first question is of type choice, where you have to chose a person. The survey allows multiple responses, and I was wondering if I could put a condition or ...
2
votes
1answer
137 views

validating a poll for user to vote once

How creating a public poll.how do you validate that the user only vote once.I tried using an Ip address but some organizations use 1 Ip address.
2
votes
1answer
440 views

Will HTML5 replace silverlight? [closed]

A while ago I read a news here, that Microsoft changed its strategy for silverlight and will replace it with HTML5. As it is a controversial discussion, some guys from Microsoft and other corporation ...
2
votes
2answers
206 views

Ruby on Rails 2 - Complex forms for Lesson, Questions & Answers

I have 4 models - Users, Lessons, Questions & Answers. Each user can create a lesson with some questions and then ask other users to answer those questions and submit the form. I ran into a ...
2
votes
2answers
828 views

Sharepoint survey: How to identify the question fields when fetching survey information from the Lists web service?

I am wanting to access survey information via the Lists web service and display the questions contained in the survey. The result contains a large number of Field nodes some of which are the ...
2
votes
14answers
257 views

How would you interpret these dates?

I need to interpret relative date string like: last Friday this Tuesday next Wednesday The "Last Friday" form is easy (take the most recent Friday that is not today) but what about "this" vs. ...
2
votes
4answers
434 views

How to categorize and tabularize free-form answers to a question in a survey?

I want to analyze answers to a web survey (Git User's Survey 2008 if one is interested). Some of the questions were free-form questions, like "How did you hear about Git?". With more than 3,000 ...
2
votes
5answers
118 views

How much of your code is still in production and how old is the oldest code that you still have in production?

This is definitely subjective, and answers will necessarily involve guess work but thought some answers might be interesting. So: What percentage of your code is still in production? (how do you ...
2
votes
2answers
704 views

How to structure survey data?

Note: this is NOT like this question I've been tasked to construct a survey that our customer service people can use to get info from our customers about our service etc. My question is how to ...
2
votes
1answer
4k views

Open source survey/questionnaire engine for Java

Is there an open source survey engine for java that will allow branching of questions? i.e. Question 1 has the options of A, B, or C and they each take you to a different set of follow-up questions. ...

1 2 3 4