User Yann Semet - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T08:27:12Zhttp://stackoverflow.com/feeds/user/5788http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915868/hello-can-anybody-suggest-me-any-game-in-c-or-c-for-my-second-semester-project/1916043#19160431Answer by Yann Semet for Hello, Can anybody suggest me any game in C or C++ for my second semester project in post graduation?Yann Semet2009-12-16T16:54:31Z2009-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-uncertainty0Simple tool for shipping dates estimates without uncertaintyYann Semet2009-03-13T11:07:15Z2009-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-resource0C#: Executing a SQL script stored as a resourceYann Semet2009-09-04T13:17:41Z2009-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-c0Effect of casting to int in C#Yann Semet2009-02-26T14:56:24Z2009-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 < 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#5203691Answer by Yann Semet for Where is Python used? I read about it a lot on Reddit.Yann Semet2009-02-06T13:58:54Z2009-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-persistence3Lightweight Java persistenceYann Semet2009-01-16T15:54:14Z2009-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#4508770Answer by Yann Semet for Naming convention for params of ctors and settersYann Semet2009-01-16T15:58:34Z2009-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-query1How to use a view name stored in a field for an sql query ?Yann Semet2008-12-02T15:35:29Z2008-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#3344022Answer by Yann Semet for which are the must-visit-daily websites for programmers?Yann Semet2008-12-02T15:48:51Z2008-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#3151291Answer by Yann Semet for As a programmer how do you react when you successfully deliver to your client and their response is negative?Yann Semet2008-11-24T19:15:54Z2008-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#3149051Answer by Yann Semet for T-SQL: Opposite to string concatenation - how to split string into multiple recordsYann Semet2008-11-24T17:53:15Z2008-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#3144857Answer by Yann Semet for What OOP coding practices should you always make time for?Yann Semet2008-11-24T15:31:41Z2008-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#3087281Answer by Yann Semet for What has been your successful pitch to Management for using SCRUM?Yann Semet2008-11-21T13:20:13Z2008-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#2983482Answer by Yann Semet for How do I relate one table to many different tables?Yann Semet2008-11-18T10:15:11Z2008-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#2681830Answer by Yann Semet for Search multiple list for missing entriesYann Semet2008-11-06T10:10:35Z2008-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#2680750Answer by Yann Semet for Multi line search and replace toolYann Semet2008-11-06T09:35:40Z2008-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#2680590Answer by Yann Semet for Can I find out the return value before returning while debugging in Visual StudioYann Semet2008-11-06T09:27:47Z2008-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#2601152Answer by Yann Semet for What does unit testing mean to you?Yann Semet2008-11-03T21:53:12Z2008-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#1379300Comment by Yann Semet on C#: Executing a SQL script stored as a resourceYann Semet2009-09-04T13:47:08Z2009-09-04T13:47:08ZThank you sir !!http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522Comment by Yann Semet on Good excuses NOT to use version controlYann Semet2009-06-17T08:38:21Z2009-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#132522Comment by Yann Semet on Good excuses NOT to use version controlYann Semet2009-06-17T08:30:51Z2009-06-17T08:30:51ZI don't understand, haven't you read the question !? "Default answer: no excuse! -> not what I want to hear". 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#642287Comment by Yann Semet on Simple tool for shipping dates estimates without uncertaintyYann Semet2009-03-13T12:12:04Z2009-03-13T12:12:04ZYou haven't understood my question. Your answer is, besides, discourteous.http://stackoverflow.com/questions/642192/simple-tool-for-shipping-dates-estimates-without-uncertainty/642217#642217Comment by Yann Semet on Simple tool for shipping dates estimates without uncertaintyYann Semet2009-03-13T12:09:23Z2009-03-13T12:09:23ZBy 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#625667Comment by Yann Semet on Favourite command line trickYann Semet2009-03-09T12:53:30Z2009-03-09T12:53:30ZCool. 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-factorsComment by Yann Semet on Best practice for storing lookup table of calculation factorsYann Semet2009-02-09T15:15:10Z2009-02-09T15:15:10ZBest 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#479120Comment by Yann Semet on Questions to indicate competency in JavaYann Semet2009-01-26T10:04:53Z2009-01-26T10:04:53ZThe 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 "puzzle" 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#479120Comment by Yann Semet on Questions to indicate competency in JavaYann Semet2009-01-26T09:00:16Z2009-01-26T09:00:16ZIt'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 ?