User Yann Semet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:27:12Z http://stackoverflow.com/feeds/user/5788 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1915868/hello-can-anybody-suggest-me-any-game-in-c-or-c-for-my-second-semester-project/1916043#1916043 1 Answer by Yann Semet for Hello, Can anybody suggest me any game in C or C++ for my second semester project in post graduation? Yann Semet 2009-12-16T16:54:31Z 2009-12-16T16:54:31Z <p>I'd say it depends on what skill you want to show/work on :</p> <ul> <li><p>A <strong>tetris clone</strong> can be good choice if you want to throw in some graphics and animation.</p></li> <li><p>A <strong>board game</strong> such as reversi or checkers if you want a go at Artificial Intelligence or Machine Learning</p></li> <li><p>A simple <strong>wargame or trade simulation</strong> could make a good data structures/random numbers exercise</p></li> </ul> http://stackoverflow.com/questions/642192/simple-tool-for-shipping-dates-estimates-without-uncertainty 0 Simple tool for shipping dates estimates without uncertainty Yann Semet 2009-03-13T11:07:15Z 2009-09-27T07:13:41Z <p>What I'm looking for is very simple: I want a tool that computes the calculated, as opposed to estimated based on confidence intervals, shipping date given a list of tasks with total estimates and current progress each without introducing further uncertainty as I want to handle that externally.</p> <p>I want it to take workdays duration and user input holidays into account, etc.</p> <p>I know Fogbugz's Evidence Base Scheduling does something very close to that but I would like it without the statistical aspect and associated confidence intervals. I'm aware it's a drastic simplification and that statistical estimation is the essence of EBS but I'm not looking for a subjective discussion here, I just want to be able to access this simple information (the supposedly exact shipping date) at any given time during the project without having to calculate it myself. </p> <p>So I'm looking for one of three things : 1) a way to customize Fogbugz (6.0) to show me the information I want besides confidence intervals 2) a way to customize Fogbugz to set estimates uncertainty to 0 3) another tool (free) that does what I want exactly.</p> <p><strong>EDIT:</strong> By "supposedly exact" or "calculated", I don't mean with respect to what is actually going to happen, that would indeed be trying to predict the future. I mean with respect to the information that was input, together with its obvious uncertainty. In that case, I guess estimates for individual tasks should be more seen as spending limits or upper bounds. The information I would like to be able to compute is really very simple : if everything goes exactly as specified, where does it take us ? Then, with information about how the estimates were made, such as the ability of each individual developper to make good estimates, I can derive the confidence interval. EBS does this automatically and, undoubtebly, very well which is why I use it. What I would like is to obtain is one more little piece of information, ie the same starting point EBS uses and try to play with my own asumptions as to how the statistical estimation should be made.</p> http://stackoverflow.com/questions/1379195/c-executing-a-sql-script-stored-as-a-resource 0 C#: Executing a SQL script stored as a resource Yann Semet 2009-09-04T13:17:41Z 2009-09-04T13:34:35Z <p>Newbie question : I would like to store lengthy .sql scripts in my solution and execute them programmatically. I've already figured out how to execute a string containing my sql script but I haven't figured out how to read the string from a file that would be stored in the solution (under a /Scripts subfolder for example).</p> <p>Many thanks,</p> http://stackoverflow.com/questions/590871/effect-of-casting-to-int-in-c 0 Effect of casting to int in C# Yann Semet 2009-02-26T14:56:24Z 2009-02-26T15:54:44Z <p>Could someone take the time to explain me the language underpinnings here :</p> <pre><code>int foo = myObject.SomeList.Count; for (int i = 0 ; i &lt; foo ; i++) { myObject.SomeList.Add(bar); } </code></pre> <p>goes into an infinite loop because <code>foo</code> references a value that keeps being incremented. Modifying the first line to:</p> <pre><code>int foo = (int)myObject.SomeList.Count; </code></pre> <p>makes it go away, somehow changing <code>foo</code> from reference to value once and for all. This is probably textbook but, why is this happening ?</p> <p>Many thanks</p> <p><strong>EDIT :</strong> Ok, as Patrick mentions, the infinite loop only happens when there is no prior storage to foo, the cast being pointless, which makes sense. That's indeed what I thought initially while debugging this. Hence my surprise when the cast fixed it. What actually happened is that I was misled by Visual Studio into thinking I had fixed it when there was actually a problem of synchronization between edited code and executed code, which led to wrong conclusions.</p> http://stackoverflow.com/questions/520210/where-is-python-used-i-read-about-it-a-lot-on-reddit/520369#520369 1 Answer by Yann Semet for Where is Python used? I read about it a lot on Reddit. Yann Semet 2009-02-06T13:58:54Z 2009-02-06T13:58:54Z <p>It's juste one example but I know it is widely used in large scientific institutions with high tech machinery where non-programmers (typically physicists) need quick prototypes or tools to cover their data collection/processing needs. The easy-to access scripting language aspect clearly plays its role here. So I don't know about building a career out of that only but I'd definitely say that knowing Python is a very valuable asset on your resume, it'll strengthen your "smell of usefulness".</p> http://stackoverflow.com/questions/450864/lightweight-java-persistence 3 Lightweight Java persistence Yann Semet 2009-01-16T15:54:14Z 2009-01-16T22:33:43Z <p>What are the lightweight options one has to persist Java objects ?</p> <p>I'm looking for the easiest possible solution. I don't want anything fancy featurewise just something simple that works with reasonnably simple objects (some collections, relationships and simple inheritance) and doesn't bring too much apparent complexity (if any) to the existing codebase.</p> <p>The options I'm aware of include Hibernate and frameworks such as EMF but they sound (and have been experienced to be) too complex and time-consuming. I'd like something out of the box, preferably file oriented than dababase oriented, that I can just put on top of my plain old java objects.</p> <p>This is a newbie question, thanks in advance for any tutorial-like, context clarifying guidance.</p> http://stackoverflow.com/questions/450866/naming-convention-for-params-of-ctors-and-setters/450877#450877 0 Answer by Yann Semet for Naming convention for params of ctors and setters Yann Semet 2009-01-16T15:58:34Z 2009-01-16T15:58:34Z <p>I always go for a Param or Arg suffix but only when disambiguation is necessary.</p> <pre><code>Obj(int fooArg) : foo(fooArg) </code></pre> http://stackoverflow.com/questions/334345/how-to-use-a-view-name-stored-in-a-field-for-an-sql-query 1 How to use a view name stored in a field for an sql query ? Yann Semet 2008-12-02T15:35:29Z 2008-12-02T17:43:37Z <p>I have a table with a view_name field (varchar(256)) and I would like to use that field in an sql query.</p> <p>Example :</p> <p>TABLE university_members</p> <p><strong>id | type | view_name | count</strong></p> <p>1 | professors | view_professors | 0</p> <p>2 | students | view_students2 | 0</p> <p>3 | staff | view_staff4 | 0</p> <p>And I would like to update all rows with some aggregate calculated on the corresponding view (for instance <code>..SET count = SELECT count(*) FROM view_professors</code>).</p> <p>This is probably a newbie question, I'm guessing it's either obviously impossible or trivial. Comments on the design, i.e. the way one handle meta-data here (explicity storing DB object names as strings) would be appreciated. Although I have no control over that design (so I'll have to find out the answer anyway), I'm guessing it's not so clean although some external constraints dictated it so I would really appreciate the community's view on this for my personal benefit.</p> <p>I use SQL Server 2005 but cross-platform answers are welcome.</p> http://stackoverflow.com/questions/333701/which-are-the-must-visit-daily-websites-for-programmers/334402#334402 2 Answer by Yann Semet for which are the must-visit-daily websites for programmers? Yann Semet 2008-12-02T15:48:51Z 2008-12-02T15:48:51Z <p><a href="http://www.dilbert.com" rel="nofollow">www.dilbert.com</a></p> <p>:)</p> http://stackoverflow.com/questions/315097/as-a-programmer-how-do-you-react-when-you-successfully-deliver-to-your-client-and/315129#315129 1 Answer by Yann Semet for As a programmer how do you react when you successfully deliver to your client and their response is negative? Yann Semet 2008-11-24T19:15:54Z 2008-11-24T19:15:54Z <p>Use SCRUM like approaches to avoid this deathtrap: involve the client in the dev process early, frequently and in informal, restricted commitees -> risk reduction and improved agility.</p> http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-recor/314905#314905 1 Answer by Yann Semet for T-SQL: Opposite to string concatenation - how to split string into multiple records Yann Semet 2008-11-24T17:53:15Z 2008-11-24T17:53:15Z <pre><code>SELECT substring(commaSeparatedTags,0,charindex(',',commaSeparatedTags)) </code></pre> <p>will give you the first tag. You can proceed similarly to get the second one and so on by combining substring and charindex one layer deeper each time. That's an immediate solution but it works only with very few tags as the query grows very quickly in size and becomes unreadable. Move on to functions then, as outlined in other, more sophisticated answers to this post.</p> http://stackoverflow.com/questions/314241/what-oop-coding-practices-should-you-always-make-time-for/314485#314485 7 Answer by Yann Semet for What OOP coding practices should you always make time for? Yann Semet 2008-11-24T15:31:41Z 2008-11-24T16:54:38Z <p>Naming. Under pressure you'll write horrible code that you won't have time to document or even comment. Naming variables, methods and classes as explicitly as possible takes almost no additional time and will make the mess readable when you must fix it. From an OOP point of view, using nouns for classes and verbs for methods naturally helps encapsulation and modularity. </p> http://stackoverflow.com/questions/308572/what-has-been-your-successful-pitch-to-management-for-using-scrum/308728#308728 1 Answer by Yann Semet for What has been your successful pitch to Management for using SCRUM? Yann Semet 2008-11-21T13:20:13Z 2008-11-21T13:20:13Z <p>I would mention the benefits of focus. Because the guiding principle of sprints is functional focus and shipability, all details (e.g. ergonomics) need to be taken care of, whose fixing would otherwise be postponed under pressure in more global approaches. You don't have it all but what you have is solid. Non technical people appreciate that because it reduces risk from their point of view: it injects honesty and trust, together with interactivity, in the dialog with clients.</p> http://stackoverflow.com/questions/298319/how-do-i-relate-one-table-to-many-different-tables/298348#298348 2 Answer by Yann Semet for How do I relate one table to many different tables? Yann Semet 2008-11-18T10:15:11Z 2008-11-18T10:15:11Z <p>You could use intermediate "many-to-many" tables. Each base table (student, professor, etc.) would have an alter ego storing one foreign key to the base table (e.g. student_id) and one foreign key to the commments table. You practically double your number of tables but you don't need to modify existing tables and you get full flexibility.</p> http://stackoverflow.com/questions/268079/search-multiple-list-for-missing-entries/268183#268183 0 Answer by Yann Semet for Search multiple list for missing entries Yann Semet 2008-11-06T10:10:35Z 2008-11-06T11:08:37Z <pre><code>SELECT letter,number FROM lettersTable l , numbersTable n WHERE ( SELECT count(*) FROM ( SELECT * FROM combinationsTable WHERE l.letter=combinationsTable.letter AND n.number = combinationsTable .number ) AS temp ) = 0; </code></pre> <p>This relies on SELECT * FROM A,B testing all combinations (implicit cross-join).</p> http://stackoverflow.com/questions/268045/multi-line-search-and-replace-tool/268075#268075 0 Answer by Yann Semet for Multi line search and replace tool Yann Semet 2008-11-06T09:35:40Z 2008-11-06T09:35:40Z <p>I'm pretty sure a combination of sed, awk and/or grep would do the job. They're free and come with any Linux distribution but Windows versions exist as well.</p> http://stackoverflow.com/questions/268048/can-i-find-out-the-return-value-before-returning-while-debugging-in-visual-studio/268059#268059 0 Answer by Yann Semet for Can I find out the return value before returning while debugging in Visual Studio Yann Semet 2008-11-06T09:27:47Z 2008-11-06T09:27:47Z <p>You could try selecting "someTableAdapter.getSomeData();", right clicking on it and go for Quick Watch.</p> http://stackoverflow.com/questions/259957/what-does-unit-testing-mean-to-you/260115#260115 2 Answer by Yann Semet for What does unit testing mean to you? Yann Semet 2008-11-03T21:53:12Z 2008-11-03T21:53:12Z <p>A unit test is the smallest and only piece of confidence you can get yourself on your way to being done. That is what matters, iteratively building a shield against regression and spec deviation, not how you actually integrate it to your Object-Oriented architecture.</p> http://stackoverflow.com/questions/1379195/c-executing-a-sql-script-stored-as-a-resource/1379300#1379300 Comment by Yann Semet on C#: Executing a SQL script stored as a resource Yann Semet 2009-09-04T13:47:08Z 2009-09-04T13:47:08Z Thank you sir !! http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522 Comment by Yann Semet on Good excuses NOT to use version control Yann Semet 2009-06-17T08:38:21Z 2009-06-17T08:38:21Z @Galwegian : I'm sorry, I don't mean this to be ad hominem. I agree with you from a technical standpoint as we pretty much all do I think. From a human resources standpoint however, I just hate it when we developpers, as group, tend to forget that programmers are people and therefore, as such, only boundedly rational. There are also other criteria for decision making than purely technical ones. Forgetting that in general, I believe, has huge consequences in terms of productivity and results in bad management. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522 Comment by Yann Semet on Good excuses NOT to use version control Yann Semet 2009-06-17T08:30:51Z 2009-06-17T08:30:51Z I don't understand, haven't you read the question !? &quot;Default answer: no excuse! -&gt; not what I want to hear&quot;. Sounds clear to me. This is a perfectly valid question for she who seeks to understand her fellow developpers even if they are unexperienced, immature or simply suck. I'll give you that the benefits of source control are blatantly obvious even for 1 and that the decision to use it should be a no brainer. But if you can't think of a single reason why people would be reluctant, even though mistakenly, then perhaps you should move some energy from dogmatism to empathy/listening skills. http://stackoverflow.com/questions/642192/simple-tool-for-shipping-dates-estimates-without-uncertainty/642287#642287 Comment by Yann Semet on Simple tool for shipping dates estimates without uncertainty Yann Semet 2009-03-13T12:12:04Z 2009-03-13T12:12:04Z You haven't understood my question. Your answer is, besides, discourteous. http://stackoverflow.com/questions/642192/simple-tool-for-shipping-dates-estimates-without-uncertainty/642217#642217 Comment by Yann Semet on Simple tool for shipping dates estimates without uncertainty Yann Semet 2009-03-13T12:09:23Z 2009-03-13T12:09:23Z By all means, I'm not questionning the intrinsic uncertainty of estimates. I want to handle the uncertainty myself separately. All I want is a simple utility program (i might as well write it myself) that tells me if I take x days for this and y days for that then it brings me to April 22nd.. http://stackoverflow.com/questions/625656/favourite-command-line-trick/625667#625667 Comment by Yann Semet on Favourite command line trick Yann Semet 2009-03-09T12:53:30Z 2009-03-09T12:53:30Z Cool. Do you know how to do the opposite (opening a command prompt in a directory you're looking at from Windows Explorer) ? http://stackoverflow.com/questions/528335/best-practice-for-storing-lookup-table-of-calculation-factors Comment by Yann Semet on Best practice for storing lookup table of calculation factors Yann Semet 2009-02-09T15:15:10Z 2009-02-09T15:15:10Z Best practice from what standpoint ? Memory, speed, clarity ? There really isn't much of a question here unless you really get more specific! http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479120#479120 Comment by Yann Semet on Questions to indicate competency in Java Yann Semet 2009-01-26T10:04:53Z 2009-01-26T10:04:53Z The finally part of the try/catch block is indeed a very important construct and well worth an interview question, in that I totally agree. I just think that the &quot;puzzle&quot; aspect induced by the use of return in that example drives the question away from its purpose. http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479120#479120 Comment by Yann Semet on Questions to indicate competency in Java Yann Semet 2009-01-26T09:00:16Z 2009-01-26T09:00:16Z It's interesting trivia but what specific does it tell us about Java ? And about the developper being tested and her practical knowledge of the language ? Can you elaborate on what you get out of this question ?