Tagged Questions
The vague tag has no wiki summary.
32
votes
12answers
3k views
Internationalization in your projects
How have you implement Internationalization (18n) in actual projects you've worked on? I took an interest in making software cross-cultural after I read the famous post by Joel, The Absolute Minimum ...
28
votes
29answers
2k views
What constitutes beautiful code?
For anyone that is passionate about software development, I'm of the opinion that you should always strive to write beautiful code; however, is there a clear definition of what beautiful code really ...
26
votes
24answers
2k views
What's your favorite “abandoned rule”? [closed]
Like children, programmers are often given the information that they need for their profession in the form of inviolable "rules". Like children, we often follow these rules unflinchingly until one ...
15
votes
22answers
4k views
Which is better: Ad hoc queries, or stored procedures? [closed]
Assuming you can't use Linq for whatever reason, is it a better practice to place your queries in stored procedures, or is it just as good a practice to execute ad hoc queries against the database ...
6
votes
14answers
577 views
Are bugs easier to produce in one language than in another?
Are some programming languages, by their nature, easier to write programs with less bugs in than others? For a fair comparison, assume that the programmer is considered "skilled" in that particular ...
3
votes
2answers
102 views
Stats: Popularity of CSS [closed]
Is there anything on this matter on the web?
Because I can't seem to find anything.
Edit: Sorry about being unspecific. Normally I hate these guys, too.
I'm looking for stats on how CSS became ...
3
votes
4answers
2k views
How to receive http request in Delphi 7?
Which component is best to use for receiving HTTP requests in Delphi application?
3
votes
5answers
206 views
Flexibility in the project scope?
How flexible should a programmer be if a client requests requirements that is not in the project scope?
3
votes
6answers
649 views
2
votes
3answers
190 views
find all non-repeating paths through a set of connected nodes/process diagram
I am trying to understand if its possible in any reasonable way to establish a set of non-repeating paths through a given process diagram.
here are some basic facts about the process diagrams i have:
...
2
votes
5answers
684 views
C++ Arrays: conversion of contained type
What is the best way to convert a fixed length string array to a fixed lengh integer array in C++ ?
1
vote
5answers
3k views
to use a library dll with LoadLibrary() method on C++
Can I use LoadLibrary method for to import a data of type struct??
excuse me for my English.
thanks.
1
vote
9answers
662 views
Control.Enter event doesn't fire when switching tasks. Is there an alternative that does?
Rep steps:
create example .NET form application
put a TextBox on the form
wire a function up to the TextBox's Enter event
When you run this application, the Control.Enter event fires when focus ...
0
votes
3answers
71 views
Multiline pattern matching
Problem:
In a large file (plain text), there are some "interesting" lines which contain some specific words. The aim is to extract all those lines that contain such words. However, in some cases, ...
0
votes
3answers
125 views
NLP with greatly contrained input and abilities
Hat in hand here. I'm a seasoned developer and I would be grateful for a bit of help. I don't have time to read or digest long intricate discussions on theoretical concepts around NLP (or go get my ...
0
votes
8answers
274 views
Change string value. C#
How do i change a string value of
http://host/index.php?p=page
to
http://host/index.php?p=
0
votes
5answers
207 views
How to manage and deal with a group of developers with different knowledge levels?
We are a group of students doing our Master degree in field of computer science.
This semester we should do a Software engineering project according to the following bottom explanation.
we should ...
0
votes
13answers
584 views
What is the most common type of code written? [closed]
Most of the programming that grabs headlines (the glamor programming) is either Web or game development. I'm thinking that these are not what most programmers work on for a living.
Since I am ...
0
votes
7answers
1k views
Why is Peer-to-Peer programming a hard topic to obtain good research for?
After reading a bit more about how Gnutella and other P2P networks function, I wanted to start my own peer-to-peer system. I went in thinking that I would find plenty of tutorials and ...
-1
votes
1answer
2k views
ASP.NET 3.5 Gridview control
If you click on the 'search' button in the following link
link text
A gridview shows up. I am trying to do something similar within a table whose width is set to auto. My current way is to create ...
-1
votes
3answers
737 views
control robot via internet
i have robot and want to control it via internet using radio wave .. but still i dont know the best language to do that . with the need to build scure site to insure not any body can use it . i expect ...
-1
votes
17answers
798 views
How many of you prefer full screen? [closed]
How many of you prefer full screen for your applications?
What are the advantages and disadvantages of doing this?
Edit:
I run all my applications full screen, that includes shell, browser, app etc. ...
-6
votes
4answers
912 views
Scoping issue in Python [closed]
Can anyone help me to get info about the Scoping issue( Static and dynamic scoping) in Python ?
Thanks