User Doldrim - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T16:49:50Z http://stackoverflow.com/feeds/user/141597 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1640911/role-of-testers-in-agile 17 Role of Testers in Agile? Doldrim http://stackoverflow.com/users/141597 2009-10-29T00:03:00Z 2009-12-12T23:12:36Z <p>I work in a team which has been doing the traditional waterfall method of development for many years. Recently, we've been told that future projects are going to be moving towards an agile (particularly Scrum) methodology. It so happens that my project will be one of the first, so we will essentially be guinea pigs for the next few months to iron out what it takes to make the transition.</p> <p>The project itself is in a very early stage and we would usually be many months away from releasing anything to the testing team, but now we are going to be working directly with them up front. As a result, I'm concerned as to the role of the testers in such a project at this stage. I have several questions/concerns which hopefully some experienced agile developers could answer:</p> <ol> <li>While a developer is coding a task, it is impossible for a tester to test it (it doesn't exist yet). What then is the role of a tester at this point</li> <li>Is the tester now involved in unit testing? Is this done parallel to black box testing?</li> <li>What does the tester do during a sprint where primarily infrastructural changes have been made, that may only be testable in unit testing?</li> </ol> <p>How do the traditional test team members function in your agile project?</p> http://stackoverflow.com/questions/1329453/how-do-i-wake-select-on-a-socket-close 0 How do I wake select() on a socket close? Doldrim http://stackoverflow.com/users/141597 2009-08-25T16:37:11Z 2009-08-26T09:12:36Z <p>I am currently using select loop to manage sockets in a proxy. One of the requirements of this proxy is that if the proxy sends a message to the outside server and does not get a response in a certain time, the proxy should close that socket and try to connect to a secondary server. The closing happens in a separate thread, while the select thread blocks waiting for activity.</p> <p>I am having trouble figuring out how to detect that this socket closed specifically, so that I can handle the failure. If I call close() in the other thread, I get an EBADF, but I can't tell which socket closed. I tried to detect the socket through the exception fdset, thinking it would contain the closed socket, but I'm not getting anything returned there. I have also heard calling shutdown() will send a FIN to the server and receive a FIN back, so that I can close it; but the whole point is me trying to close this as a result of not getting a response within the timeout period, so I cant do that, either.</p> <p>If my assumptions here are wrong, let me know. Any ideas would be appreciated.</p> <p>EDIT: In response to the suggestions about using select time out: I need to do the closing asynchronously, because the client connecting to the proxy will time out and I can't wait around for the select to be polled. This would only work if I made the select time out very small, which would then constantly be polling and wasting resources which I don't want.</p> http://stackoverflow.com/questions/1155346/bug-trying-to-add-two-strings-with-snprintf 2 Bug trying to add two strings with snprintf Doldrim http://stackoverflow.com/users/141597 2009-07-20T19:11:47Z 2009-08-15T19:40:47Z <p>I'm trying to add two strings with snprintf but apparently i dont know what i'm doing.</p> <p>Here is the code block:</p> <pre><code>char * filename = NULL; (void)snprintf (filename, sizeof(filename), "%s/%s", PATH, FILE); </code></pre> <p>I also tried:</p> <pre><code>char * filename = NULL; (void)snprintf (filename, sizeof(PATH)+sizeof(FILE)+1, "%s/%s", PATH, FILE); </code></pre> <p>PATH and FILE are header defined strings. Occassionally, this code works, occassionally it does not. I'm sure it's some kind of memory issue, what have I done wrong?</p> <p>EDIT: My issue was for some reason thinking that snprintf allocated memory for you. I'm accepting the answer that cleared that up, since it was my real issue, but I've decided to go with the compile time string concatenation since that is a really nice trick.</p> http://stackoverflow.com/questions/1282502/is-javascript-an-application-language/1282559#1282559 0 Answer by Doldrim for Is JavaScript an application language? Doldrim http://stackoverflow.com/users/141597 2009-08-15T18:57:24Z 2009-08-15T18:57:24Z <p>You may want to do some research on widgets. Web Widgets are small programs that are created using web languages (HTML, CSS, Javascript) and have some specific small function.</p> <p>Opera is currently using them, you see them on Palm's WebOS, and there is a W3C specification coming out soon for them.</p> <p><a href="http://www.w3.org/TR/widgets/" rel="nofollow">W3C Widget 1.0</a></p> <p><a href="http://widgets.opera.com/" rel="nofollow">Opera Widgets</a></p> http://stackoverflow.com/questions/1282321/network-programmer-blogs-especially-for-games/1282350#1282350 1 Answer by Doldrim for Network Programmer Blogs (especially for games) Doldrim http://stackoverflow.com/users/141597 2009-08-15T17:10:15Z 2009-08-15T17:10:15Z <p>For a "bloggish" page, here GameDev.net has lots of articles to read: <a href="http://www.gamedev.net/reference/list.asp?categoryid=30" rel="nofollow">GameDev.net - Multiplayer and Networking</a></p> <p>And here is a game network engine you could look at: <a href="http://www.gillius.org/gne/" rel="nofollow">GNE -- Game Networking Engine</a></p> http://stackoverflow.com/questions/1269819/implementing-skip-list-in-c/1269867#1269867 1 Answer by Doldrim for Implementing Skip List in C++ Doldrim http://stackoverflow.com/users/141597 2009-08-13T03:25:17Z 2009-08-13T03:25:17Z <p>You're making "vertical" and "horizontal" too complicated. They are all just pointers. The little boxes you draw on paper with lines on them are just to help visualize something when thinking about them. You could call a pointer "elephant" and it would go to the next node if you wanted it to.</p> <p>eg. a "next" and "prev" pointer are the exact same as a "above"/"below" pointer.</p> <p>Anyway, good luck with your homework. I got the same homework once in my data structures class.</p> http://stackoverflow.com/questions/1208566/typically-what-does-it-mean-when-java-returns-a-the-parameter-is-incorrect/1208653#1208653 1 Answer by Doldrim for Typically, what does it mean when java returns a "The parameter is incorrect" Doldrim http://stackoverflow.com/users/141597 2009-07-30T19:03:23Z 2009-07-30T19:03:23Z <p>It appears to be an issue with the path you're using. Try using file.getPath() before you open it to debug what is going on with your path.</p> <pre><code>File file = new File(workingDir, obj.getName() + ".xls"); System.out.println("Path="+file.getPath()); outputStream = new FileOutputStream(file); </code></pre> http://stackoverflow.com/questions/1207687/should-pdf-files-generated-from-latex-source-files-be-under-version-control/1207712#1207712 2 Answer by Doldrim for Should PDF files generated from LaTeX source files be under version control? Doldrim http://stackoverflow.com/users/141597 2009-07-30T16:23:59Z 2009-07-30T16:23:59Z <p>Version control for documents is also important. We have them in separate repositories, however, which makes this a non-issue.</p> http://stackoverflow.com/questions/1207609/c-compiler-from-where/1207692#1207692 1 Answer by Doldrim for C compiler from where ? Doldrim http://stackoverflow.com/users/141597 2009-07-30T16:20:26Z 2009-07-30T16:20:26Z <p>It is definitely free to learn and program C, but the answer to your first question "is this something good ?" depends on what your goals are. C is a very good language for some things, but not everything. </p> <p>System programming is almost always done in C, along with network programs and some applications. C is also the basis for most modern programming languages you will work with, so learning the C syntax can be applied as you go about learning other things. However, if you are looking to make a interactive webpage, you might want to learn PHP. If you are looking to make a desktop application with a GUI, you might want to learn Java.</p> <p>If you want to just get a start learning about programming, C can help you with that. If that's what you want to do, and dont care much about application right now, I suggest you go to the bookstore and just find a book on learning C for beginners. It should have a CD in the back with a compiler (probably visual studio), and should get you on your way.</p> http://stackoverflow.com/questions/1640911/role-of-testers-in-agile Comment by Doldrim on Role of Testers in Agile? Doldrim http://stackoverflow.com/users/141597 2009-11-18T20:58:06Z 2009-11-18T20:58:06Z Management decided to choose another project to kick off Agile work, but I learned a lot from these answers and will definitely put it to practice when it's my team's turn to move over. Thanks. http://stackoverflow.com/questions/1329453/how-do-i-wake-select-on-a-socket-close/1329716#1329716 Comment by Doldrim on How do I wake select() on a socket close? Doldrim http://stackoverflow.com/users/141597 2009-08-25T20:13:35Z 2009-08-25T20:13:35Z I didn't downvote you, but the question did not change at all. I just added an update under &quot;edit&quot;. http://stackoverflow.com/questions/1282475/where-can-i-learn-more-about-datastructure-tricky-questions/1282533#1282533 Comment by Doldrim on Where can I learn more about datastructure tricky questions? Doldrim http://stackoverflow.com/users/141597 2009-08-15T18:54:46Z 2009-08-15T18:54:46Z Datastructures and algorithms go hand in hand. That's like saying &quot;this question was about statistics, not algebra&quot; http://stackoverflow.com/questions/1282102/what-is-the-use-of-in-grep-command-and-practical-use/1282113#1282113 Comment by Doldrim on What is the use of ? in grep command.. And practical use.. Doldrim http://stackoverflow.com/users/141597 2009-08-15T16:05:06Z 2009-08-15T16:05:06Z Thanks for this clarification. http://stackoverflow.com/questions/1282102/what-is-the-use-of-in-grep-command-and-practical-use/1282131#1282131 Comment by Doldrim on What is the use of ? in grep command.. And practical use.. Doldrim http://stackoverflow.com/users/141597 2009-08-15T16:00:11Z 2009-08-15T16:00:11Z Did you read my comment? I gave you one http://stackoverflow.com/questions/1282102/what-is-the-use-of-in-grep-command-and-practical-use/1282131#1282131 Comment by Doldrim on What is the use of ? in grep command.. And practical use.. Doldrim http://stackoverflow.com/users/141597 2009-08-15T15:50:30Z 2009-08-15T15:50:30Z He meant a? = &quot;&quot; or &quot;a&quot;. In this case everything matches &quot;&quot;. You are searching for one or zero characters of one character which would also match anything. http://stackoverflow.com/questions/1282102/what-is-the-use-of-in-grep-command-and-practical-use/1282113#1282113 Comment by Doldrim on What is the use of ? in grep command.. And practical use.. Doldrim http://stackoverflow.com/users/141597 2009-08-15T15:39:24Z 2009-08-15T15:39:24Z Why the downvote? :/ http://stackoverflow.com/questions/1282102/what-is-the-use-of-in-grep-command-and-practical-use Comment by Doldrim on What is the use of ? in grep command.. And practical use.. Doldrim http://stackoverflow.com/users/141597 2009-08-15T15:29:18Z 2009-08-15T15:29:18Z grep is a pretty heavily used programmer tool. I think there is some grey area on whether or not that's allowed, am i right? http://stackoverflow.com/questions/1155346/bug-trying-to-add-two-strings-with-snprintf/1155413#1155413 Comment by Doldrim on Bug trying to add two strings with snprintf Doldrim http://stackoverflow.com/users/141597 2009-07-20T19:32:41Z 2009-07-20T19:32:41Z I decided to go with this solution, but I appreciate everyone's input on my original issue, I was under the impression that snprintf allocated memory.