User Larry Watanabe - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:44:29Zhttp://stackoverflow.com/feeds/user/118860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1656568/how-can-i-synchronized-two-process-accessing-on-the-same-resources/1656579#16565790Answer by Larry Watanabe for How can I synchronized two process accessing on the same resources?Larry Watanabe2009-11-01T07:07:11Z2009-11-01T07:07:11Z<p>mutex means mutual exclusion -- a semaphore is just a variable used to determine if the resource is in use. In windows, there is a Mutex object that can be created to protect a shared resource.</p>
<p>The issue is what language are you using? What OS (I am assuming linux). Most languages provide support for multi-threading and mutual exclusion, and you should use the built-in constructs.</p>
<p>For example, using C on Linux, you might want to </p>
<p>include semaphore.h</p>
<p>and look up the calls for sem_init, sem_wait etc.</p>
http://stackoverflow.com/questions/1655971/what-happens-if-i-try-to-access-memory-beyond-a-mallocd-region/1656045#16560450Answer by Larry Watanabe for What happens if I try to access memory beyond a malloc()'d region?Larry Watanabe2009-11-01T00:48:48Z2009-11-01T00:48:48Z<p>Nothing keeps you from writing beyond that bound, and what happens depends on what is beyond that bound. Standard hacker trick (buffer overflow) for hacking programs that don't check and ensure that they do not overwrite buffer limits.</p>
<p>As mentioned by other posters, you just have to program carefully. Don't use calls like strlen, strcpy - use the length-limited versoins like strncpy etc.</p>
http://stackoverflow.com/questions/1647801/algorithm-question-on-finding-all-valid-words-in-dictionary/1647864#16478640Answer by Larry Watanabe for Algorithm Question On Finding All Valid Words In DictionaryLarry Watanabe2009-10-30T03:26:42Z2009-10-30T03:26:42Z<p>1.Create a tree structure for each word in the dictionary. The tree branches on each letter, e.g. first level of the tree are the letters a-z, next level is again a-z IF there are any words using that combination, etc. The leaves of the tree are the words.</p>
<p>Then, when you get the letter combination, just start with all choices for the first letter, travel the tree down that branch, and then make a search for all choices for the second letter, etc.</p>
<p>Although this may seem expoential, because not all combinatoins are possible, you will find that invalid branches are quickly pruned.</p>
http://stackoverflow.com/questions/1638394/when-should-functions-be-member-functions/1638520#16385200Answer by Larry Watanabe for When should functions be member functions?Larry Watanabe2009-10-28T16:46:23Z2009-10-28T16:46:23Z<p>Part of the decision to make something a member or non-member also has to do with complexity and managing complexity.</p>
<p>For example, if there are 20 or fewer functions that need to be associated with a class, then why not make them all member functions.</p>
<p>However, when the number runs to 100 or several hundred, it often helps to organize those functions into groups and create a pseudo-class that either stores an instance variable of the other class, or serves as a holder for class/static functions that operate on the other class.</p>
<p>For example, one might have a document object, but an editor class that operates on it and contains the editing functions, rather than having all the editing functions on the document. </p>
<p>There are no hard or fast rules - just principles, such as encapsulate, manage complexity, reduce dependencies. Some of these involve tradeoffs, and have to be analyzed in the context of the problem to which they are being applied.</p>
http://stackoverflow.com/questions/1469100/linq-to-mysql-what-is-the-best-option3LINQ to MySQL - what is the best option?Larry Watanabe2009-09-23T23:48:45Z2009-10-20T11:24:24Z
<p>Has anyone used any of the utilities out there for LINQ to MySQL? Do you know which one is best?</p>
<p>So far I know of LINQ for NHibernate, and DBLinq</p>
http://stackoverflow.com/questions/1201977/beginner-with-a-good-idea-can-i-develop-it-on-my-own/1202028#12020281Answer by Larry Watanabe for Beginner with a good idea - can I develop it on my own?Larry Watanabe2009-07-29T18:06:27Z2009-10-05T02:30:27Z<p>Some of the most successful applications started out not very well polished. The first HTTP server was not well written. Yahoo started out as an index by a couple of graduate students. eBay and <a href="http://en.wikipedia.org/wiki/Craigslist" rel="nofollow">Craigslist</a> do not have very polished interfaces.</p>
<p>What is important is that the applications fulfilled a need by users - the quality of their implementation was secondary. As they got more venture capital, the quality of their applications improved.</p>
<p>There are also a lot of very polished sites that did not fulfill a real need and have fallen by the wayside.</p>
http://stackoverflow.com/questions/976841/handling-simultaneous-uploads-on-the-database/1483046#14830460Answer by Larry Watanabe for Handling simultaneous uploads on the databaseLarry Watanabe2009-09-27T07:44:52Z2009-09-27T07:44:52Z<p>This is what transaction handling and synchronization is all about. If your language (PHP) doesn't provide transaction handling and synchronization, then you can use the database itself to take care of this for you.</p>
<p>I think you got this already - each request should check to make sure that it's attempt to create the album succeeds. If it fails, it can then look to see if some other process/request created it already, and then use that.</p>
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/1483041#14830410Answer by Larry Watanabe for What programming language should be taught in Computer Science 101?Larry Watanabe2009-09-27T07:41:57Z2009-09-27T07:41:57Z<p>Functional languages are inherently different from procedural languages, and I think both should be taught at an early phase. However, most computer languages in use currently are procedural rather than functional, so I don't know if teaching a functional language as a first language is really a service or not. It probably doesn't matter as long as the person gets exposed to both at an early phase.</p>
<p>Because of the rarity of functional languages, perhaps the advocates of this approach feel that this way everyone will get at least some exposure to a functional language.</p>
http://stackoverflow.com/questions/290518/can-you-estimate-an-applications-performance-before-testing/1483037#14830371Answer by Larry Watanabe for Can you estimate an application's performance before testing?Larry Watanabe2009-09-27T07:39:24Z2009-09-27T07:39:24Z<p>You can definitely do capacity planning in advvance, but the quality of the estimate will depend on the quality of the data available. </p>
<p>The best estimate is to build the system in test, run simulated workloads, then predict capacity as a function of performance requirements and workload. These 3 form a prediction space - given 2 of the 3, you can predict the third:</p>
<p>1) given performance requirements and capacity (i.e. hardware) you can calculate the workload you can handle.</p>
<p>2) Given performance requirements and workload, you can calculate the capacity (i.e. hardware) that you need.</p>
<p>3) Given Workload and capacity, you can predict your expected performance</p>
http://stackoverflow.com/questions/532274/algorithm-speed-order-of/1483034#14830341Answer by Larry Watanabe for Algorithm Speed Order ofLarry Watanabe2009-09-27T07:37:00Z2009-09-27T07:37:00Z<p>Usually something like O(logN) comes about because the data is size N, but it is organized e.g. in a tree where the depth of the tree is logN. If the typical search involves going from the root to the leaf (in worse case) then it is easy to see that the algorithm will be O(logN). </p>
<p>There are no hard and fast rules - you just have to look at each case, figure out the worse case scenario, and calculate what the cost of that would be.</p>
http://stackoverflow.com/questions/695118/how-should-i-estimate-hardware-requirements-for-sql-server-2005-database/1483032#14830320Answer by Larry Watanabe for How should I estimate hardware requirements for SQL Server 2005 database?Larry Watanabe2009-09-27T07:34:49Z2009-09-27T07:34:49Z<p>If you can characterize your current workload in terms of hits to pages, then you can then:
1) calculate the typical type of query that will be done for each page
2) using the above 2 pieces of information, estimate the workload on the database server</p>
<p>You also need to determine your performance requirements - what is the max and average response time you want for your website?</p>
<p>Given the workload, and performance requirements, you can then calculate capacity. The best way to make this estimate is to use some existing hardware, run a simulated database workload on a database on that hardware, and then extrapolate your hardware requirements based on your data from the first steps.</p>
http://stackoverflow.com/questions/1483009/c-net-windows-forms-what-net-functionality-supports-uploading-and-downloadin/1483021#14830211Answer by Larry Watanabe for C#/.NET Windows.Forms - what .NET functionality supports uploading and downloading multiple files at once?Larry Watanabe2009-09-27T07:30:04Z2009-09-27T07:30:04Z<p>This is not clear - do you mean you want to both upload files from client to server, and also to download from server to client?</p>
<p>If the files are on the server, then solution 1) is simplest - send a request to the server to download the files, and have the server send them to the client. I don't see why this would take any time at all if the files are already on the server.</p>
http://stackoverflow.com/questions/1469085/complexity-of-exceptions/1469112#14691120Answer by Larry Watanabe for Complexity of ExceptionsLarry Watanabe2009-09-23T23:52:05Z2009-09-24T00:08:23Z<p>You can also create class methods (static methods) on the exception.</p>
<p>e.g.</p>
<p><code>MyException::throw("my message")</code></p>
<p>I often create a static method when I want to check for a certain error condition, and if it is true, throw an exception.</p>
<p>e.g. <code>BadArgument::Check("mymethod", "paramName", paramvalue)</code></p>
http://stackoverflow.com/questions/1469068/is-it-possible-to-create-a-graphical-designer-for-a-specific-domain/1469129#14691290Answer by Larry Watanabe for Is it possible to create a graphical designer for a specific domain?Larry Watanabe2009-09-23T23:55:31Z2009-09-23T23:55:31Z<p>Yes - it is possible. Microsoft has done this for windows forms :)</p>
<p>I believe your question is really is it cost-effective to do so. The answer is probably dependent on the level of user-friendliness, integration, etc. To do something like the designers for Microsoft forms probably costs millions. But, for a less-integrated but probably useful tool, a solution such as suggested by silky would probably be possible and cost-effective.</p>
http://stackoverflow.com/questions/1451860/preferable-technology-that-i-should-use-to-create-an-efficient-and-user-friendly/1451879#14518790Answer by Larry Watanabe for Preferable technology that I should use to create an efficient and user friendly GUI?Larry Watanabe2009-09-20T20:03:31Z2009-09-20T20:03:31Z<p>"Best" depends on what your evaluation function is. </p>
<p>For ease of development, and high quality UI, in a non-web based app it's hard to beat C#/VB or any other .NET language and environment for a windows-based app. Depending on the quality of the UI, MPF will give you greater flexibility and control, whereas windows form will make it easier to develop.</p>
http://stackoverflow.com/questions/1445836/positive-or-negative-boolean-field-names/1445887#14458870Answer by Larry Watanabe for Positive or negative boolean field namesLarry Watanabe2009-09-18T17:33:21Z2009-09-18T17:33:21Z<p>Always use positive. </p>
<p>It's simpler.</p>
<p>Take using the negation to the logical extreme: if InActive is better than Active, then why not InInActive, or InInInActive?</p>
<p>Because it would be less simple.</p>
http://stackoverflow.com/questions/1445816/how-would-you-allow-a-user-to-interact-with-graphical-objects-via-the-mouse/1445874#14458740Answer by Larry Watanabe for How would you allow a user to interact with graphical objects via the mouse?Larry Watanabe2009-09-18T17:29:57Z2009-09-18T17:29:57Z<p>The former - if you have it overlaid on a form, then all the hit testing will be done for you by the forms framework. You simply need to create some controls, and then implement event handlers for them.</p>
<p>The above also describes any windows forms (or probably MPF for that matter) program :)</p>
<p>Creating your own list of objects etc. is tantamount to re-implementing the windows form framework, or at least a substantial part of it. You don't want to reinvent the wheel, especially since you have wheels already in your application.</p>
http://stackoverflow.com/questions/1445715/what-schools-offer-master-and-phd-programs-in-cs/1445780#14457801Answer by Larry Watanabe for What schools offer Master and PhD programs in CS? Larry Watanabe2009-09-18T17:09:50Z2009-09-18T17:09:50Z<p>A good way to find those universities is to get a conference proceedings or journal, scan the author index and note what universities are common. The better universities will have better publication rates. You want to go to a university where you will have some choice of advisors in your area, as sometimes some professors may be full up with grad students, or not interested in working with you, or away on sabbatical. In addition, the more grad students there are working in an area at your university, the more chance there are of larger number of grad courses being offered related to your interests, and it's always good to have someone to discuss your ideas with.</p>
http://stackoverflow.com/questions/1445738/why-is-it-a-best-practice-to-always-unit-test-the-smallest-possible-unit-of-code/1445756#14457562Answer by Larry Watanabe for Why is it a best practice to always unit test the smallest possible unit of code? I find those tests will never survive a refactoring.Larry Watanabe2009-09-18T17:05:50Z2009-09-18T17:05:50Z<p>It's a granularity issue, like Goldilocks and the three bears. You want something that is not too small, not too large, but just right.</p>
<p>If the granularity is too small, then you may have found it is a waste of time. If it is too large, then it may miss important constraints that should remain constant over a refactoring/reconfiguration etc.</p>
<p>Like any "best practice" these ideas are often developed in theory but requires some common sense and tailoring to your particular situation to be useful for you. </p>
http://stackoverflow.com/questions/1445435/what-are-practical-applications-of-the-ao-algorithm/1445742#14457421Answer by Larry Watanabe for What are practical applications of the AO* algorithm?Larry Watanabe2009-09-18T17:02:24Z2009-09-18T17:02:24Z<p>AO* has rarely been used in practical applications, to my knowledge. It is useful for searching game trees, problem solving etc. but in most cases more domain specific search algorithms (e.g. alpha-beta pruning for game trees, general or domain specific planning algorithms) are used instead.</p>
<p>In particular, AI uses knowledge-intensive approaches and in practical applications heavy use is made of domain specific knowledge or problem conditions to produce better (faster or more optimal solutions).</p>
<p>Game search is an example where full-breadth search is standard, but this may because of the small (relative to other domains) size of the search space. Even in game tree search, extensive use is made of problem specific features, i.e. often search is terminated only in quiescent states (i.e. not during a forced exchange or when there is a check).</p>
<p>In planning, often knowledge is used to guide a search of a generated solution space rather than doing a state space search. This gives non-optimal solutions but for many domains it yields reasonable solutions at much less cost. </p>
http://stackoverflow.com/questions/1445093/help-me-prepare-for-reverse-mentoring-discussion-with-management/1445196#14451960Answer by Larry Watanabe for help me prepare for reverse-mentoring discussion with managementLarry Watanabe2009-09-18T15:16:13Z2009-09-18T15:16:13Z<p>One caveat: when providing feedback on your own manager, provide the same courtesy, open-mindedness, and positive feedback that you would like to receive from him when he is reporting on you to management.</p>
<p>We always provided each other with stellar reviews for management purposes, and diplomatic feedback on things we would like to see improved in more private discussions.</p>
http://stackoverflow.com/questions/1445122/what-do-you-do-to-test-methods-that-produce-complicated-object-graphs/1445175#14451750Answer by Larry Watanabe for What do you do to test methods that produce complicated object graphs?Larry Watanabe2009-09-18T15:13:07Z2009-09-18T15:13:07Z<p>You might try writing a control generation tool that generates random control graphs, and test those. This might yield some data points that you might not have thought of.</p>
http://stackoverflow.com/questions/1445003/what-scala-blogs-do-you-regularly-follow/1445164#14451640Answer by Larry Watanabe for What Scala blogs do you regularly follow?Larry Watanabe2009-09-18T15:11:01Z2009-09-18T15:11:01Z<p>artima.com isn't a pure Scala blog, but it has some nice articles. Here's one about Scala on Twitter:</p>
<p><a href="http://www.artima.com/scalazine/articles/twitter%5Fon%5Fscala.html" rel="nofollow">http://www.artima.com/scalazine/articles/twitter%5Fon%5Fscala.html</a></p>
http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1444910#14449100Answer by Larry Watanabe for More efficient: large array or many scalarsLarry Watanabe2009-09-18T14:26:57Z2009-09-18T14:26:57Z<p>If the array is dynamically allocated, then using the static variables will be faster. If the array is statically allocated, then the compiler should be able to optimize it to be equivalently fast as static variables. Try both on some trivial code and profile it.</p>
http://stackoverflow.com/questions/1444528/why-is-this-code-so-slow/1444612#14446121Answer by Larry Watanabe for Why is this code so slow?Larry Watanabe2009-09-18T13:39:32Z2009-09-18T13:39:32Z<p>If your matrix is stored as a vector of vectors, then in the outer for loop you should directly retrieve the i-th vector, and then operate on that in the inner loop. Try that and see if it improves performance.</p>
http://stackoverflow.com/questions/182818/what-should-developers-look-for-in-a-manager/1442041#14420410Answer by Larry Watanabe for What should developers look for in a manager?Larry Watanabe2009-09-18T00:28:46Z2009-09-18T01:12:40Z<p>Qualities of a good manager:</p>
<ol>
<li><p>Knows how to get the best out of each individual ... based on that individual's skills and weaknesses. </p></li>
<li><p>Takes time to understand what each individual is trying to accomplish, and facilitating that by providing information or knowledge about others who can help, and uses his or her connections/influence to help accomplish those goals.</p></li>
<li><p>Provides clear guidance about his or her goals, long and short-term, for the group and guidance on how to accomplish them.</p></li>
<li><p>Provides constructive and helpful feedback on your performance and useful suggestions on how to improve them.</p></li>
<li><p>Knows how to motivate people working with him/her by recognizing achievement and accomplishments.</p></li>
<li><p>Helps you to accomplish your own career goals by supporting learning, providing appropriate performance reviews (appropriate is highly context dependent - in some organizations it can mean highly favorably biased reviews, just to keep you on par with others within the same organization - US military is one example of this).</p></li>
<li><p>Protects the team as well as possible from the vagaries of the company culture.</p></li>
</ol>
<p>I had a manager like this - without him, working at my company would have been intolerable.</p>
http://stackoverflow.com/questions/1439669/linq-to-sql-read-error-how-to-determine-which-column-failed0LINQ to SQL read error - how to determine which column failed?Larry Watanabe2009-09-17T15:42:49Z2009-09-18T00:02:28Z
<p>I have a LINQ to SQL class that I am reading into a List.</p>
<p>When reading in from the table, I get an error "String must be exactly 1 character long".</p>
<p>I have looked over the Table definition for this file, and the .dbml file for this table, and there is no field that is exactly 1 char long.</p>
<p>The table (a legacy table) has a lot of fields. How can I easily determine which field that is causing the problem?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1439669/linq-to-sql-read-error-how-to-determine-which-column-failed/1439922#14399221Answer by Larry Watanabe for LINQ to SQL read error - how to determine which column failed?Larry Watanabe2009-09-17T16:31:56Z2009-09-18T00:02:28Z<p>I figured out a reasonable (though not automated) approach - do a binary search on the columns by deleting half the columns from the LINQ .dbml file (can be done with mouseclicks and shift for multiple selection) and then running program.</p>
<p>Once down to about 5 entries, do linear search (because of overhead of click-copy paste for a new table, overhead of binary search means linear search is better for size N. The actual number depends on your application).</p>
<p>This narrowed it down to the problematic column in about 10 minutes. </p>
http://stackoverflow.com/questions/1441077/finite-state-machine-and-inter-fsm-signaling/1441091#14410910Answer by Larry Watanabe for Finite State Machine and inter-FSM signalingLarry Watanabe2009-09-17T20:15:14Z2009-09-17T20:15:14Z<p>FSM should be trivial to implement in any language that has a case statement.Your choice of language should be based on what that finite state machine needs to do. </p>
<p>For example, you state that you need to do this for telecom development and mention messages. I would look at systems/languages that support distributed message passing. Erlang does this, and I"m sure just about every other common language supports this through an API/library for the language.</p>
http://stackoverflow.com/questions/1082751/what-are-the-available-interactive-languages-that-run-in-tiny-memory/1440626#14406260Answer by Larry Watanabe for What are the available interactive languages that run in tiny memory?Larry Watanabe2009-09-17T18:42:16Z2009-09-17T18:42:16Z<p>Erlang - <a href="http://erlang.org/" rel="nofollow">http://erlang.org/</a></p>
<p>it can fit in 2MB</p>
<p><a href="http://www.experts123.com/q/is-erlang-small-enough-for-embedded-systems.html" rel="nofollow">http://www.experts123.com/q/is-erlang-small-enough-for-embedded-systems.html</a></p>
http://stackoverflow.com/questions/1647801/algorithm-question-on-finding-all-valid-words-in-dictionary/1647891#1647891Comment by Larry Watanabe on Algorithm Question On Finding All Valid Words In DictionaryLarry Watanabe2009-10-31T00:31:46Z2009-10-31T00:31:46ZAs someone who has implemented the Rete algorithm for a rule-based system, I can definitely say that this is not an appropriate algorithm for this problem. Rete works well when there is a large working memory and only small incremental changes to it, and a lot of patterns to be matched. In this problem working memory is very small (basically 1 word) and changes completely with each match iteration.http://stackoverflow.com/questions/1647801/algorithm-question-on-finding-all-valid-words-in-dictionary/1647864#1647864Comment by Larry Watanabe on Algorithm Question On Finding All Valid Words In DictionaryLarry Watanabe2009-10-31T00:30:39Z2009-10-31T00:30:39ZAs someone who has implemented the Rete algorithm for a rule-based system, I can definitely say that this is not an appropriate algorithm for this problem. Rete works well when there is a large working memory and only small incremental changes to it, and a lot of patterns to be matched. In this problem working memory is very small (basically 1 word) and changes completely with each match iteration.http://stackoverflow.com/questions/1469100/linq-to-mysql-what-is-the-best-option/1469120#1469120Comment by Larry Watanabe on LINQ to MySQL - what is the best option?Larry Watanabe2009-09-24T01:16:23Z2009-09-24T01:16:23ZMicrosoft has the most wonderful technologies ... if only they were only multi-latform and open source then it would be perfect :)http://stackoverflow.com/questions/1469068/is-it-possible-to-create-a-graphical-designer-for-a-specific-domain/1469129#1469129Comment by Larry Watanabe on Is it possible to create a graphical designer for a specific domain?Larry Watanabe2009-09-24T01:14:53Z2009-09-24T01:14:53ZFrom what I understand, there is going to be code-behind for your application as well - but you are only going to expose editing of the user interface elements via the designer.
Producing a code-less GUI tool would undoubtedly end up creating a TURING-complete set of visual objects so that programming is done via visual objects. Windows Biztalk server is an example of this - they have flowcharted workflows that include control constructs equivalent in power to loops and if-then-else, so combined with the IO from the workflow it is turing complete.http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439572#1439572Comment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-18T13:06:49Z2009-09-18T13:06:49Z@Avid, I have no quarrel against filtering a candidate based on their interview. But the individual here is talking about slanting the interview to reject the candidate, which I think is not fair. If someone is accepted for an interview, they should get the same chance as anyone else getting an interview - the final decision can be based on the interview + resume + gut instinct, but it is wrong not to even give the candidate a fair chance.http://stackoverflow.com/questions/102167/do-you-have-unit-testing-in-your-projects/102351#102351Comment by Larry Watanabe on Do you have unit testing in your projects?Larry Watanabe2009-09-18T02:24:20Z2009-09-18T02:24:20ZI agree unit tests are no replacement for integration testing, but they have their place. Whatever can be unit tested, should be. This doesn't mean that whatever can't be unit tested need not be.http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hireComment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-17T18:47:27Z2009-09-17T18:47:27ZA local high school in the Midwest has produced 4 Nobel prize winners. Then again, maybe winning a Nobel prize doesn't require intense working pressures, and that high school has also produced a math grad student famous for killing his Stanford Ph.d. advisor with a hammer, so maybe midwest hicks can't stand high pressure :)http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hireComment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-17T17:14:58Z2009-09-17T17:14:58Z@New i town. Well, nothing worthwhile has come out of the Midwest ... except maybe NCSA telnet and other stuff, Mosaic (first http server), Mathematica, supercomputers, and a few other knick-nacks.http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hireComment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-17T17:11:03Z2009-09-17T17:11:03ZI once had someone on my programming team where, in essence, there was a personality conflict. A situation arose where I felt I could no longer function with this individual, but I couldn't quit and have the project function so I brought the situation to my boss and the other person was let go. I then brought on board some people t replace (as I wanted to focus on my thesis at that point) and left after my replacements were trained.
The individual we had let go eventually joined an investment firm, met a guy name Jeff Bezos, and left to start Amazon. Luckily I never wanted to work there :)http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439560#1439560Comment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-17T16:37:52Z2009-09-17T16:37:52Z@Jay - nice comment - about the developer at the mall, it goes to show you shouldn't have preconceptions - regarding 10 minutes into the conversation - in that case I would just give them 1 chance to recover, if you're asking them all the questions and giving them a chance to respond the ball's in their court now.http://stackoverflow.com/questions/1439669/linq-to-sql-read-error-how-to-determine-which-column-failed/1439729#1439729Comment by Larry Watanabe on LINQ to SQL read error - how to determine which column failed?Larry Watanabe2009-09-17T15:58:42Z2009-09-17T15:58:42ZThanks for the usggestions - but I have the feeling that the problem is not with the SQL query but with the conversion from the data returned to the LINQ class. I think I might implement your suggestion anyways, because as you have noted (and I strongly agree) usable error codes are very very valuable :)http://stackoverflow.com/questions/1437909/what-are-the-top-three-most-important-skills-new-software-development-graduates-t/1437978#1437978Comment by Larry Watanabe on What are the top three most important skills new software development graduates tend to be missing?Larry Watanabe2009-09-17T15:45:48Z2009-09-17T15:45:48ZSadly, that is a skill not needed in most IT jobs.http://stackoverflow.com/questions/1439544/how-should-i-interview-a-candidate-who-is-probably-a-no-hire/1439560#1439560Comment by Larry Watanabe on How should I interview a candidate who is probably a "no hire"?Larry Watanabe2009-09-17T15:27:55Z2009-09-17T15:27:55ZI would ask him the following questions, for his benefit as well as yours:
1. Where would you intend to relocate to if you got this job? Are you familiar with the cost of living in this area and would you be comfortable with that?
2. That location would require a commute of x hours - would you be comfortable with that?
3. Our firm generally expects that full-time employees work from x to y. We also require unpaid overtime in evenings and weekends in these z situations. Would you be comfortable with that?http://stackoverflow.com/questions/1438787/what-is-the-best-length-of-a-coding-session-before-taking-a-breakComment by Larry Watanabe on What is the best length of a coding session before taking a break?Larry Watanabe2009-09-17T14:13:31Z2009-09-17T14:13:31ZAgree - why not make title "What is the best length of a coding sessoin before taking a break?"http://stackoverflow.com/questions/1423109/convincing-coworkers-to-use-mvc/1423238#1423238Comment by Larry Watanabe on Convincing Coworkers To Use MVCLarry Watanabe2009-09-17T13:53:43Z2009-09-17T13:53:43ZGood approach! This helps the overall goal of "help make this project succeed and contribute".