active questions tagged vague - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:45:07Z http://stackoverflow.com/feeds/tag/vague http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20564/what-constitutes-beautiful-code 16 What constitutes beautiful code? Tom 2008-08-21T17:13:40Z 2009-11-19T18:01:28Z <p>For anyone that is passionate about software development, I'm of the opinion that you should always strive to write beautiful code; however, <strong>is there a clear definition of what beautiful code really is?</strong></p> <p>On one hand, I see elegant code being something that's easy to read while simultaneously solving the problem at hand in the most efficient way possible. It seems like readable code often comes at the expense of, for example, creating several new variables in order to represent the data with which you're working. Depending on your platform (or depending on how picky you are), creating these variables could be considered to be a performance hit. </p> <p>On the other hand, this brings up another perspective that I've often seen that defines beautiful code as code that succinctly and efficiently solves the given problem. It can be argued, though, that succinct code may come at the sake of readability and thus ultimately detracts from the attractiveness of the code.</p> <p>I personally want to be able to write expressive, effective, and elegant code, but I often find myself debating if adding a couple of more variables to improve the readability of the code three months later really does improve (or pollute) the code.</p> http://stackoverflow.com/questions/400173/draw-image-over-an-image-in-asp-net-at-specific-location 0 Draw image over an image in asp.net at specific location Khushi 2008-12-30T12:40:24Z 2009-11-17T15:00:03Z <p>Hi,</p> <p>I need to draw an image over another image at specific location to block the image postion to be used by other users, please help me provide some guidlines, urgent.</p> <p>Thanks &amp; regards, Khushi</p> http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule 8 What's your favorite "abandoned rule"? MusiGenesis 2008-09-22T02:47:14Z 2009-11-11T12:22:54Z <p>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 day, by accident more often than deliberately, we don't follow the rule, and nothing bad happens. Maybe we even see that not following the rule makes our lives easier and our code works better.</p> <p>My favorite abandoned rule is:</p> <blockquote> <p><strong>Never use SELECT * in a query</strong></p> </blockquote> <p>I absorbed this rule while learning SQL the night before my first day at my first IT job (1996) by cramming a book on Access. The book spoke with the ferocity of a televangelist about how a baby kitten is drowned whenever a programmer uses SELECT * in a query, and I believed.</p> <p>For years I never ever used SELECT *. One day, I was writing a query like</p> <blockquote> <p>SELECT COLUMN1, COLUMN2, ... COLUMN472 FROM tblWHYTHISMANYCOLUMNS</p> </blockquote> <p>when it occurred to me that since I was just asking for every column in the table, I could save some time by typing</p> <blockquote> <p>SELECT * FROM tblWHYTHISMANYCOLUMNS</p> </blockquote> <p>I tried it, and amazingly it compiled and ran perfectly. I've been an asterisk-man ever since. <em>Nothing bad has ever happened to me as a consequence</em>.</p> <p><strong>So what's your favorite abandoned rule?</strong></p> http://stackoverflow.com/questions/23738/why-is-peer-to-peer-programming-a-hard-topic-to-obtain-good-research-for 0 Why is Peer-to-Peer programming a hard topic to obtain good research for? tj9991 2008-08-22T23:28:23Z 2009-09-14T08:22:41Z <p>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 language-agnostic guidelines which could be applied, however I was met with a vague simplistic overview.</p> <p>I could only find very small, precise P2P code which didn't do much more than use client/server architecture on all users, which wasn't really what I was looking for. I wanted something like Gnutella, but there doesn't seem to be any articles out in the open for joining the network.</p> http://stackoverflow.com/questions/22907/which-is-better-ad-hoc-queries-or-stored-procedures 11 Which is better: Ad hoc queries, or stored procedures? Will 2008-08-22T17:10:30Z 2009-08-10T03:45:31Z <p>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 (say, Sql Server for argument's sake)?</p> http://stackoverflow.com/questions/1210458/how-can-i-generate-a-unique-id-in-python -2 How can I generate a unique ID in Python? Ryan 2009-07-31T02:51:44Z 2009-08-03T04:45:44Z <p>I need to generate a unique ID based on a random value.</p> http://stackoverflow.com/questions/205534/database-for-enormous-amounts-of-data 4 Database for ENORMOUS amounts of data? pabloh84 2008-10-15T16:58:51Z 2009-07-23T16:18:03Z <p>Here, my boss, is asking me and the people at the office which Database engine could be the best for a very very huge amount of data. We have been discussing a while in the office and no conclusion came... But as I think that this is a pretty interesting question for discussing</p> http://stackoverflow.com/questions/344672/what-is-the-algorithm-for-storing-the-pixels-in-a-spiral-in-js -1 What is the algorithm for storing the pixels in a spiral in JS? leeand00 2008-12-05T17:59:22Z 2009-05-06T18:10:48Z <p>What is the algorithm for storing the pixels in a spiral in JS?</p> http://stackoverflow.com/questions/819400/good-open-source-code-to-learn-web-programming 2 Good Open Source Code to learn Web Programming Prabu 2009-05-04T09:13:45Z 2009-05-05T21:55:48Z <p>Hi can someone point me to some Good Open Source Code to learn Web Programming (Language doesn't matter).</p> <p>i'm looking for source code of web-applications not frameworks</p> <p>I'm not a beginner, I can code to some extent. I want to know how stuffs are done in real world applications. </p> http://stackoverflow.com/questions/262402/how-to-receive-http-request-in-delphi-7 4 How to receive http request in Delphi 7? m_pGladiator 2008-11-04T16:37:57Z 2009-04-20T06:21:18Z <p>Hi,</p> <p>Which component is best to use for receiving HTTP requests in Delphi application?</p> http://stackoverflow.com/questions/682562/can-anybody-explain-the-structure-of-the-apache-server -4 Can anybody explain the structure of the Apache server? PROFESSOR 2009-03-25T17:15:56Z 2009-03-25T18:15:55Z <p>How does the Apache web server work? Can someone explain it in detail?</p> http://stackoverflow.com/questions/129085/what-would-you-write-if-you-wanted-to-learn-a-new-language 8 What would you write if you wanted to learn a new language? JoshReedSchramm 2008-09-24T18:52:38Z 2009-03-01T14:02:30Z <p>I have found the easiest way to learn a new language is to write something in it. Usually this works best when I find myself having to write a fairly involved application for my job, however sometimes you just want to pick up some new skills. </p> <p>So my question is what kind of "sample" applications would you write if your sole goal was to learn. </p> <p>Your answer might vary based on it being a web language or client language, if you think they are different please offer suggestions for both. </p> http://stackoverflow.com/questions/112479/are-bugs-easier-to-produce-in-one-language-than-in-another 6 Are bugs easier to produce in one language than in another? Thomas 2008-09-21T23:07:53Z 2009-02-17T12:45:26Z <p>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 language, however long that may have taken him.</p> <p>I'm mainly wondering about the influence of conceptual differences, like:</p> <ul> <li>manual memory management vs. garbage collection</li> <li>imperative vs. imperative/object-oriented vs. functional vs. declarative</li> <li>languages with side effects vs. side-effect free languages</li> <li>static typing vs. dynamic typing</li> </ul> <p>Again, I don't want to see whether one language is "easier" than another, but compare <em>once the programmer has mastered the language</em> how many bugs are produced in one language versus another, and whether the choice of language makes any difference at all.</p> <p>Edit: okay, I shouldn't have used the word "bug-free". I thought this word was the easiest way to get the point across. I know such programs do not exist.</p> http://stackoverflow.com/questions/436776/external-interface-error 0 External Interface Error unknown (yahoo) 2009-01-12T19:53:39Z 2009-01-12T21:14:45Z <pre><code>import flash.external.ExternalInterface; ExternalInterface.addCallback("asFunc", this, asFunc); function asFunc(str:String):Void { out.text = "JS &gt; Hello " + str; } send_btn.addEventListener(MouseEvent.CLICK, clickListener); function clickListener(eventObj:Object):Void { trace("click &gt; " + mean.text); ExternalInterface.call("calc", mean.text); } </code></pre> <p>This is the code i am using to call a function calc in javascript, but i get the following error. What am i doing wrong here? (I modified the example on live docs.)</p> <p>Error:</p> <pre><code>1046: Type was not found or was not a compile-time constant: Void. </code></pre> http://stackoverflow.com/questions/358539/load-testing-tool 0 Load-testing tool mahisuta 2008-12-11T06:04:59Z 2009-01-02T15:11:24Z <p>Hi! I am looking for a load-testing tool which supports more than 20 virtual users in trial version.</p> http://stackoverflow.com/questions/898/internationalization-in-your-projects 20 Internationalization in your projects John Downey 2008-08-04T00:08:51Z 2008-12-27T06:48:52Z <p>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, <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a>. However I have yet to able to take advantage of this in a real project besides making sure I used Unicode strings where possible. But making all your strings Unicode and ensuring you understand what encoding everything you work with is in is just the tip of the i18n iceberg.</p> <p>Everything I have worked on to date has been for use by a controlled set of US English speaking people or i18n just wasn't someone we had time to work on before pushing the project live. So I am looking for any tips or war stories people have about making software more localized in real world projects.</p> http://stackoverflow.com/questions/370921/objectlist-in-mobile-application 0 objectlist in mobile application Khushi 2008-12-16T10:26:40Z 2008-12-16T14:35:56Z <p>Hi All,</p> <p>How can i change the background of the selected row in the objectlist control of mobile application?Urgent.</p> <p>Thanks &amp; Regards, Khushi</p> http://stackoverflow.com/questions/368073/how-to-implement-undo-redo-of-files-mapped-in-a-treeview -3 How to implement undo/redo of files mapped in a treeview Cornel 2008-12-15T11:29:27Z 2008-12-15T12:28:00Z <p>Can anyone give an idea of how should I implement undo/redo of files (dirs, subdirs) mapped in a treeview - C#?</p> <p>Would be great some code samples</p> http://stackoverflow.com/questions/367876/can-not-open-the-design-mode-in-vss2005 0 can not open the design mode in vss2005 satyakishore 2008-12-15T09:42:26Z 2008-12-15T09:53:15Z <p>i instlalled vs2005 my operating system is microsoft windows 2000 sp4 but i cannt get the design page when i click design btn.</p> http://stackoverflow.com/questions/356526/asp-net-3-5-gridview-control 0 ASP.NET 3.5 Gridview control j d 2008-12-10T15:45:42Z 2008-12-10T16:38:23Z <p>If you click on the 'search' button in the following link</p> <p><a href="http://www.bmwusa.com/Standard/Content/CPO/ModelSearch.aspx" rel="nofollow">link text</a></p> <p>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 the gridview in design view, but however, my gridview does not resize to the table width. I understand that I posed 2 different questions in one.</p> <p>My current gridview is as such. Defined in 'source' view</p> <pre><code>&lt;asp:GridView ID="gridView" runat="server" AutoGenerateColumns="False" EnableSortingAndPagingCallbacks="True" AllowPaging="True" DataSourceID="FilesByJobObjectDataSource" PageSize="5" OnRowCommand="gridView_RowCommand" DataKeyNames="FileID" HorizontalAlign="Left" &gt; &lt;Columns&gt; &lt;asp:BoundField DataField="RID" HeaderText="RID" ReadOnly="True" ItemStyle-Width="50px" &gt; &lt;ItemStyle Width="50px" /&gt; &lt;/asp:BoundField&gt; &lt;asp:BoundField DataField="Category" HeaderText="Category" ReadOnly="True" ItemStyle-Width="100 px" &gt; &lt;ItemStyle Width="100px" /&gt; &lt;/asp:BoundField&gt; &lt;asp:BoundField DataField="FileName" HeaderText="Type" ReadOnly="True" ItemStyle-Width="575 px" &gt; &lt;ItemStyle Width="575px" /&gt; &lt;/asp:BoundField&gt; &lt;asp:BoundField DataField="FileID" Visible="false" /&gt; &lt;asp:ButtonField Text="X" ButtonType="Button" ItemStyle-Width="20px" &gt; &lt;ItemStyle Width="20px" /&gt; &lt;/asp:ButtonField&gt; &lt;/Columns&gt; &lt;RowStyle CssClass="RowStyle" /&gt; &lt;EmptyDataRowStyle CssClass="EmptyRowStyle" /&gt; &lt;PagerStyle CssClass="PagerStyle" /&gt; &lt;SelectedRowStyle CssClass="SelectedRowStyle" /&gt; &lt;HeaderStyle CssClass="HeaderStyle" /&gt; &lt;EditRowStyle CssClass="EditRowStyle" /&gt; &lt;AlternatingRowStyle CssClass="AltRowStyle" /&gt; &lt;/asp:GridView&gt; &lt;/ContentTemplate&gt; </code></pre> http://stackoverflow.com/questions/336682/to-use-a-library-dll-with-loadlibrary-method-on-c 2 to use a library dll with LoadLibrary() method on C++ Gianfranco 2008-12-03T09:54:11Z 2008-12-09T03:03:58Z <p>Can I use LoadLibrary method for to import a data of type struct?? excuse me for my English. thanks.</p> http://stackoverflow.com/questions/329076/scoping-issue-in-python -5 Scoping issue in Python Mcad 2008-11-30T17:09:37Z 2008-12-01T07:05:43Z <p>Hi All, Can anyone help me to get info about the Scoping issue( Static and dynamic scoping) in Python ? </p> <p>Thanks</p> http://stackoverflow.com/questions/314176/image-processing-smart-solution-for-converting-superixel-128x128-pixel-coordin 1 Image processing: smart solution for converting superixel (128x128 pixel) coordinates needed zhengtonic 2008-11-24T13:55:07Z 2008-11-25T10:45:02Z <p>Hi, i am searching for a smart solution for this problem:</p> <p>A cancer ct picture is stored inside a unsigned short array (1-dimensional).</p> <p>I have the location information of the cancer region inside the picture, but the coordinates (x,y) are in superpixel (128x128 unsigned short). My task is to highlight this region. </p> <p>I already solved this one by converting superpixel coordinates into a offset a can use for the unsigned short array. It works fine but i wonder if there is a smarter way to solve this problem, since my solution needs 3 nested for-loops.</p> <p>Is it possible to access the ushort array "superpixelwise", so i can navigate the ushort array in superpixels.</p> <p>...</p> <pre><code>// i know this does no work ... just to give you an idea what i was thinking of ... typedef struct { unsigned short[128x128] } spix; spix *spixptr; unsigned short * bufptr = img-&gt;getBuf(); spixptr = bufptr; </code></pre> <p>...</p> <p>best regards,</p> <p>zhengtonic</p> http://stackoverflow.com/questions/284019/c-arrays-conversion-of-contained-type 3 C++ Arrays: conversion of contained type Jel 2008-11-12T14:03:52Z 2008-11-12T15:11:38Z <p>What is the best way to convert a fixed length string array to a fixed lengh integer array in C++ ?</p> http://stackoverflow.com/questions/248719/how-to-manage-and-deal-with-a-group-of-developers-with-different-knowledge-levels 1 How to manage and deal with a group of developers with different knowledge levels? tokhi 2008-10-29T22:56:22Z 2008-10-30T17:59:49Z <p>We are a group of students doing our Master degree in field of computer science.</p> <p>This semester we should do a Software engineering project according to the following bottom explanation.</p> <p>we should exactly act and report as a real Software engineering Team.</p> <p>I have been chosen as a project manager of this group, I am good in writing java codes but I don't have the experience of doing the project manager task, any way I have to do my best to do this project with my group members as good as possible.</p> <p>The problem is this that I need to deal with different levels of knowledge but all the members should participate in implementation part.</p> <p>I will be pleased if some one guide me how to do this project and how to manage this group, and where to start? how to encourage the members, and how to do my plans in practice?</p> <p>please have a look to the explanation and help me what technology do I need to chose for this project?</p> <h2>Project Explanation</h2> <p>projects should be implemented as so called web applications. Because of the MVC requirements this is more than a server-client architecture – we call this (at least) a three-tier architecture.</p> <p>The view should be created dynamic on clients' request. Therefor the content has to be computed by the server (server side). Inside of the view there should not exist any type of source code (like “scriplets”, Java Code, etc.) besides the markup language.</p> <p>This should ensure that the view can be created by web designers where the content is in the responsibility of programmers.</p> <p>Vice versa the source code should not contain any markup languages (like HTML).</p> <p>To store information (make persistent) the system should use a database. But there should not exist database specific queries inside of the source code – because then the sources are very dependent of the usage of exactly this database. System should work with an object relational mapper to map the stored information from database on special type of objects (beans).</p> <p>All configuration like database, entities, configuration, initialization should be realized using XML files (or similar ways like e.g, annotations), so that changes don't require recompilation of the system's sources.</p> <p>Technologies available (suggestions):</p> <pre><code> J2EE: JSP, Servlets, JSP EL, JSTL, JSF, Facelets, Custom JSF Components, Custom Facelets TagLibs, JUnit (unit testing) Persistence: Hibernate, JDO IDE: Eclipse, NetBeans Servlet Container: Apache Tomcat </code></pre> http://stackoverflow.com/questions/198215/istream-operator 0 istream operator ukhti 2008-10-13T16:39:43Z 2008-10-13T21:28:28Z <pre><code>int main() { HandPhone A,B; A&gt;&gt;B;//overloading operator&gt;&gt; to simulate sending sms to another handphone(object) return 0; } </code></pre> <p>How should I declare the istream operator to simulate sending sms to another handphone(object)?</p> http://stackoverflow.com/questions/194593/control-robot-via-internet 0 control robot via internet mjd 2008-10-11T20:36:50Z 2008-10-11T21:08:55Z <p>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 for site asp with c# but what is the language i'll need it to control from sender device to the recipt robot . also need to live video transfer to the site from robot camera............ soory for bothering .....i know it may wrong but i'm beginner </p> <p>and thanx for all who read or try to help me</p> http://stackoverflow.com/questions/193940/flexibility-in-the-project-scope 4 Flexibility in the project scope? jeffreyareyes 2008-10-11T10:29:28Z 2008-10-11T15:12:03Z <p>How flexible should a programmer be if a client requests requirements that is not in the project scope?</p> http://stackoverflow.com/questions/192114/using-generics-directly-in-code 0 Using generics directly in code [closed] Flory 2008-10-10T16:20:30Z 2008-10-10T17:19:26Z <p>Should generics be used directly in code like so?</p> <pre><code>IList &lt;String&gt; someStrings; public static void BlahProcessor(IList &lt;String&gt; blahStrings) </code></pre> <p>Or should you instead inherit from the generic and use that class like this:</p> <pre><code>public class BlahCollection : List &lt;String&gt; BlahCollection someStrings; public static void BlahProcessor(BlahCollection blahStrings) </code></pre> <p><strong>DUPLICATE OF:</strong> <a href="http://stackoverflow.com/questions/21715/listbusinessobject-or-businessobjectcollection">http://stackoverflow.com/questions/21715/listbusinessobject-or-businessobjectcollection</a></p> http://stackoverflow.com/questions/155366/control-enter-event-doesnt-fire-when-switching-tasks-is-there-an-alternative-t 0 Control.Enter event doesn't fire when switching tasks. Is there an alternative that does? rice 2008-09-30T22:25:17Z 2008-10-02T20:58:57Z <p>Rep steps:</p> <ol> <li>create example .NET form application</li> <li>put a TextBox on the form</li> <li>wire a function up to the TextBox's Enter event</li> </ol> <p>When you run this application, the <strong>Control.Enter</strong> event fires when focus first goes to the TextBox. However, if you click away into another application and then click back into the test application, the event will not fire again.</p> <p>So <strong>moving between applications does not trigger Enter/Leave</strong>.</p> <p>Is there another alternative <em>Control-level</em> event that I can use, which will fire in this scenario?</p> <p>Ordinarily, I would use <strong>Form.Activated</strong>. Unfortunately, that is troublesome here because my component is hosted by a docking system that can undock my component into a new Form without notifying me.</p>