User Jim C - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T20:37:06Zhttp://stackoverflow.com/feeds/user/21706http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929343/bitwise-and-on-32bit-integer/1929367#19293670Answer by Jim C for Bitwise AND on 32bit IntegerJim C2009-12-18T16:41:51Z2009-12-18T16:41:51Z<p>The <a href="http://msdn.microsoft.com/en-us/library/sbf85k1c%28VS.71%29.aspx" rel="nofollow">& operator</a></p>
http://stackoverflow.com/questions/838214/why-do-most-programming-languages-only-give-one-answer-to-square-root-of-4/1050828#10508283Answer by Jim C for Why do most programming languages only give one answer to square root of 4?Jim C2009-06-26T19:31:57Z2009-12-17T21:54:41Z<p>There are many functions which only return 1 answer from 2 or more possibilities. Arc tangent for example. The arc tangent of 1 is returned as 45 degrees, but it could also be 225 or even 405. As with many things in life and programming there is a convention we know and can rely on. Square root functions return positive values is one of them. It is up to us, the programmers, to keep in mind there are other solutions and to act on them if needed in code. </p>
<p>By the way this is a common issue in robotics when dealing with kinematics and inverse kinematics equations where there are multiple solutions of links positions corresponding to Cartesian positions. </p>
http://stackoverflow.com/questions/273299/how-do-you-pull-yourself-out-of-a-programming-slump/273312#2733124Answer by Jim C for How do you pull yourself out of a programming 'slump'?Jim C2008-11-07T19:28:17Z2009-11-27T04:21:17Z<p>Get more balance in your life. Don't take your work home with you. I am not saying to give up on programming at home; but rather program for fun. Learn a new language or just write some games.</p>
http://stackoverflow.com/questions/1422882/can-anyone-recall-my-favorite-childhood-programming-book/1422989#14229890Answer by Jim C for Can anyone recall my favorite childhood programming book?Jim C2009-09-14T17:51:33Z2009-11-26T10:54:35Z<p>My childhood was in the 1960's. Personal computing had not been invented. We did have a pong game, right next to the 8 track tape player on top of the console TV. </p>
<p>My first PC was a VIC 20 and I had several programming books for it, but I don't think I would have been considered a "child" by then, although my wife may disagree and say I am still enjoying my "childhood".</p>
http://stackoverflow.com/questions/489211/programmer-development-programmer-or-hack/489280#4892806Answer by Jim C for Programmer development: Programmer OR Hack?Jim C2009-01-28T20:48:37Z2009-11-18T13:56:18Z<p>A hack writes something that works, usually, and calls it good enough and moves on. </p>
<p>A professional, writes something that works, all the time, and it is written so that they, or someone else, can modify it latter. </p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/357261#3572611Answer by Jim C for What's your favourite character?Jim C2008-12-10T19:22:55Z2009-11-16T17:00:19Z<p>The exclamation point, !, I am a contrarian.</p>
http://stackoverflow.com/questions/1601893/why-are-c-c-and-lisp-so-prevalent-in-embedded-devices-and-robots/1602365#16023650Answer by Jim C for Why are C, C++, and LISP so prevalent in embedded devices and robots?Jim C2009-10-21T17:35:45Z2009-10-21T17:35:45Z<p>Most commercial and industrial robots are programmed in C or C++. There maybe another language that the user interacts with. For example The industrial robot company I work for uses C running in a VxWork OS, but the applications programmers like me work with a proprietary language for commanding the robot. Both C and C++ give you a great deal of access and control over the hardware. You don't find too many commercial drivers for high power servo control motors. While complex these robots just follow basic routines.</p>
<p>LISP is mainly used in research robots like those that competed in the DARPA challenge. These types of robots need more "intelligence" then industrial or commercial robots. </p>
http://stackoverflow.com/questions/1510794/whats-the-proper-technical-term-for-high-ascii-characters/1510994#15109942Answer by Jim C for What's the proper technical term for "high ascii" characters?Jim C2009-10-02T18:01:27Z2009-10-02T18:01:27Z<p>ASCII character codes above 127 are not defined. many differ equipment and software suppliers developed their own character set for the value 128-255. Some chose drawing symbols, sone choose accent characters, other choose other characters.</p>
<p>Unicode is an attempt to make a universal set of character codes which includes the characters used in most languages. This includes not only the traditional western alphabets, but Cyrillic, Arabic, Greek, and even a large set of characters from Chinese, Japanese and Korean, as well as many other language both modern and ancient. </p>
<p>There are several implementations of Unicode. One of the most popular if UTF-8. A major reason for that popularity is that it is backwards compatible with ASCII, character codes 0 to 127 are the same for both ASCII and UTF-8. </p>
<p>That means it is better to say that ASCII is a subset of UTF-8. Characters code 128 and above are not ASCII. They can be UTF-8 (or other Unicode) or they can be a custom implementation by a hardware or software supplier. </p>
http://stackoverflow.com/questions/1368842/should-i-start-with-unit-testing-when-teaching-a-new-developer/1369975#13699750Answer by Jim C for Should I start with Unit testing when teaching a new developer?Jim C2009-09-02T20:39:01Z2009-09-02T20:39:01Z<p>have someone else write the unit tests and have him write the code to make the test pass. Once he is comfortable with that, you can introduce him to creating tests.</p>
http://stackoverflow.com/questions/1355524/which-syntax-and-architecture-of-assembly-is-most-useful-to-know/1359027#13590270Answer by Jim C for Which syntax and architecture of assembly is most useful to know?Jim C2009-08-31T19:31:11Z2009-08-31T19:31:11Z<p>As has been mentioned, find an assembler you like that supports your hardware and learn it. There are many choices, not all of which are Intel or AMD. A number of embedded systems use other chips including the venerable 680x0 series.</p>
<p>As for knowing all of assembly, does any one know all of any programming language? Does anyone know all of the dot net API? You know a small core section of any programming language very well, a bit more you can use, but maybe don't fully comprehend, and much large selection you know a little bit about, but have to refer to the manual, and there is an unknown amount about which you know nothing at all. </p>
<p>Even the ancient 6502 had dozens of operands and addressing methods. You learn what you need to do the job. The more jobs you do the more you learn. </p>
http://stackoverflow.com/questions/853937/how-can-i-improve-my-technical-writing/854045#8540452Answer by Jim C for How can I improve my technical writing?Jim C2009-05-12T18:05:22Z2009-08-26T20:37:34Z<p>Put yourself in the place of your reader, their technical level, their needs. All too often we know the subject too well. We assume knowledge about things that the reader will not have. </p>
<p>Yesterday I was trying to use an application. I could not find the screen for setting a certain parameter. I went through the documentation which did a great job of explaining the various settings, what they did, and how to use them. Nowhere did it show how to bring up that screen. I spent almost an hour before I finally found out which obscure button click brought up this screen. </p>
<p>The person writing the documentation assumed I would know how to access it.</p>
http://stackoverflow.com/questions/178141/unknown-significant-moments-of-computing-history/178256#1782562Answer by Jim C for Unknown significant moments of computing historyJim C2008-10-07T12:42:53Z2009-08-26T19:32:39Z<p>SAGE, the Semi-Automatic Ground Environment. Our original air traffic control system. Designed in the 1950, operational from 1963 to 1983. Vacuum tubes, ferrite core memory, magnetic drums, and teletype machines. It was the first large scale computer control system. It tracked all domestic flights in the USA. I was stationed at Griffiss AFB which had one of the last operations SAGE systems. </p>
http://stackoverflow.com/questions/1322019/associating-s-w-programming-with-h-w-programming/1322138#13221380Answer by Jim C for Associating s/w programming with h/w programming.Jim C2009-08-24T12:39:20Z2009-08-24T12:39:20Z<p>You can also check out <a href="http://msdn.microsoft.com/en-us/robotics/default.aspx" rel="nofollow">MS Robotics Studio</a>. </p>
http://stackoverflow.com/questions/1289517/how-many-job-changes-is-too-much-for-a-given-period-of-time/1289586#12895865Answer by Jim C for How many job changes is too much for a given period of time?Jim C2009-08-17T18:26:17Z2009-08-17T18:26:17Z<p>Why did they leave? That is the key issue. As was already mentioned were these a series of short term contracts? Companies that failed? Poor working conditions? then the applicant is probably OK, but if he had "issues" with coworkers and supervisors at several different jobs in the last ten years then you maybe looking at a problem.</p>
<p>Today's job market is very fluid. Companies hire and fire with alarming regularity. Consequently employees feel little loyalty to an employer. Add to this the fact that many companies hire managers rather then promote from with in and what would have looked like "job hopping" in the past is today normal career pattern. </p>
http://stackoverflow.com/questions/1048004/start-programming-at-27/1048788#10487883Answer by Jim C for Start programming at 27?Jim C2009-06-26T12:08:59Z2009-08-10T13:02:13Z<p>I am surprised no one has recommend Java. The language is free and there are a number of good tools such as eclipse that are also free. Pick a copy of "head first java" and try the language out. If you can understand the concepts and follow the way programs work, then there is no reason why you cannot learn programming. </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425513#425513-1Answer by Jim C for What do you consider the 1st principle(s) of programming?Jim C2009-01-08T19:18:54Z2009-08-03T16:58:52Z<p>0 + 0 = 0</p>
<p>1 + 0 = 1</p>
<p>0 + 1 = 1</p>
<p>1 + 1 = 10</p>
<p>1 * 10 = 10</p>
<p>10 / 10 = 01</p>
<p>~ 0 = 1</p>
<p>~ 1 = 0</p>
<p>That is all there is to computers</p>
http://stackoverflow.com/questions/302589/refactoring-for-non-oo-languages2Refactoring for non OO languagesJim C2008-11-19T16:55:13Z2009-07-18T16:15:30Z
<p>Can anyone recommend a website, book, or simply a list of refactoring strategies for procedural languages as opposed to object oriented languages? </p>
<p>Everything I was able to find contained some strategies that could apply, most were useful only if working in an OO language. </p>
http://stackoverflow.com/questions/1099637/how-does-one-deal-with-hofstadters-law/1099699#10996991Answer by Jim C for How does one deal with Hofstadter's law?Jim C2009-07-08T18:09:30Z2009-07-08T18:09:30Z<p>Base you estimates on past performance, not on best case scenarios. This does require you keep track of time spent on your projects. I don't care if you "know" that it will only take "6 weeks" to finish, if it took you 3 months to complete a similar project last time, it will probably take you 3 months the next time.</p>
http://stackoverflow.com/questions/1059998/serial-port-cable-unplugged/1060071#10600711Answer by Jim C for Serial Port Cable UnpluggedJim C2009-06-29T19:34:46Z2009-06-29T19:34:46Z<p>Most serial devices have some type of ack response to a query. just send a simple query and wait for response. If you don't get it, the device is not there or at least not responding.</p>
http://stackoverflow.com/questions/958458/what-may-be-the-biggest-difference-between-the-contract-developer-and-the-permane/1040418#10404181Answer by Jim C for What may be the biggest difference between the contract developer and the permanent developer?Jim C2009-06-24T19:25:16Z2009-06-24T19:25:16Z<p>Contractors are paid more, but often earn less. As a contractor in the US your taxes are much higher. In addition you end up having to buy your own insurance (life, health, in many cases liability). You don't get paid vacations, holidays, sick days, overtime (depending on the terms of the contract), and cannot collect unemployment. It maybe weeks or months after one contract ends before you can find another.</p>
<p>To the average hourly employee the "big bucks" a contractor makes looks very attractive, but make sure you look at the whole picture. </p>
<p>On the flip side you do have a lot more freedom. While not exactly your own boss (you are under contract) it is close to it. Just make sure you go over the fine print and that all the I are dotted and the t crossed. Many people enjoy it and do well.</p>
http://stackoverflow.com/questions/1034918/boolean-logic/1035020#10350200Answer by Jim C for boolean logicJim C2009-06-23T20:34:38Z2009-06-23T20:34:38Z<p>At the chip level NAND gates are easier to build. they can be used to prefom all other Boolean operations including negations, or, xor, nor, and so on. </p>
http://stackoverflow.com/questions/1031197/which-language-to-choose-to-learn-the-basics-of-programming/1032184#10321840Answer by Jim C for Which language to choose to learn the basics of programming?Jim C2009-06-23T12:13:46Z2009-06-23T12:13:46Z<p>What type of programming are you interested in? Websites will require different languages then desktop and embedded systems will be yet another different set. I would look at the various "express" editions from Microsoft. They cover C++, C#, and VB very well. JAVA is also a good language to learn. It a free download as is the eclipse development environment. Once you've decided on a language and development environment there are lots of learning resources on the web. </p>
<p>I also would not rule out taking a programming course at a local community college. Sometimes having a instructor assigning homework and giving tests is still the best way to learn. Many of us including myself spend a lot of money on various books about programming. While some people don't like them, the "head first" series covers many programming topics. "Head First Java" is a good beginners introduction to JAVA. </p>
http://stackoverflow.com/questions/968522/too-careless-in-programming/969730#9697300Answer by Jim C for Too "careless" in programming?Jim C2009-06-09T12:17:04Z2009-06-09T12:17:04Z<p>First, debugging is harder then writing code. It take more practice and also takes longer. So it is how we spend most of our time.</p>
<p>Because debugging is harder then writing code, write simpler code. The simpler and clearer your code is the easier it is to debug. There is a famous programmer quote, to paraphrase, "debugging is twice has hard as programming. If I write code at the limit of my ability, then by definition I am not able to debug it".</p>
http://stackoverflow.com/questions/969665/when-to-use-multidimension-arrays/969718#9697180Answer by Jim C for When to use Multidimension arraysJim C2009-06-09T12:12:23Z2009-06-09T12:12:23Z<p>While I am sure others can provide many different examples, I work with robots and one of the many task robots perform is palletizing, placing item in a row and column formation on a pallet. Each location on the pallet is a set 2 or even 3 dimension indexes of an array. </p>
<p>locationArrayt[ row , column]</p>
<p>We also use them for multilingual applications. An array of strings represent the different error messages, the second index is the language. </p>
<p>message[errorNumber, language]</p>
http://stackoverflow.com/questions/944878/should-programmers-buy-their-hardware-if-their-company-doesnt-buy/945150#9451502Answer by Jim C for Should programmers buy their hardware if their company doesn't buy?Jim C2009-06-03T14:36:40Z2009-06-03T14:36:40Z<p>I would only provide my own equipment if I was subcontracting. If I am not a subcontractor (and being paid as one) then it is up to my employer to provide equipment. </p>
<p>Personally I wish more companies would simply offer an equipment allowance and let us buy our own.</p>
http://stackoverflow.com/questions/944977/significant-challengers-to-oop/945120#9451200Answer by Jim C for Significant Challengers to OOPJim C2009-06-03T14:33:01Z2009-06-03T14:33:01Z<p>The promise of OOP was code reuse and easier maintenance. I am not sure it delivered. I see things such as dot net as being much the same as the C libraries we used to get fro various vendors. You can call that code reuse if you want. As for maintenance bad code is bad code. OOP did not help.</p>
http://stackoverflow.com/questions/941584/byte-byte-int-why/941617#9416171Answer by Jim C for byte + byte = int... why?Jim C2009-06-02T20:06:26Z2009-06-03T12:03:46Z<p>Addition is not defined for bytes. So they are cast to int for the addition. This true for most math operations and bytes. (note this is how it used to be in older languages, I am assuming that it hold true today).</p>
http://stackoverflow.com/questions/938975/is-a-program-with-just-variable-constants-still-a-program/939122#9391220Answer by Jim C for is a program with just variable constants still a program?Jim C2009-06-02T11:57:46Z2009-06-02T11:57:46Z<p>It would be a program, maybe not a useful one, but still a program. </p>
http://stackoverflow.com/questions/936051/revenue-sharing-for-a-development-team/936528#9365280Answer by Jim C for Revenue Sharing for a development teamJim C2009-06-01T20:10:52Z2009-06-01T20:10:52Z<p>Even split is the easiest and perhaps the best. Anything else will result in competition and hard feelings. I like competition between teams, but not in a team. </p>
<p>If someone is not pulling their weight, that is a separate issue and should be address outside of the bonus. </p>
http://stackoverflow.com/questions/927675/what-qualifies-as-maintenance-vs-adding-new-features/927732#9277321Answer by Jim C for What qualifies as maintenance vs. adding new features?Jim C2009-05-29T19:31:02Z2009-05-29T19:31:02Z<p>Bug fixes are definitely maintenance. </p>
<p>Increasing performance (speed) is maintenance. </p>
<p>Adding a feature that was suppose to be included in the last release and was not or which did not work, is maintenance (in my opinion). </p>
<p>Adding a total new feature, I do NOT consider to be maintenance. </p>
http://stackoverflow.com/questions/644099/what-programming-languages-do-the-top-tier-universities-teach/791577#791577Comment by Jim C on What programming languages do the top tier Universities teach?Jim C2009-08-17T18:42:57Z2009-08-17T18:42:57ZSeeing Pascal and FORTRAN on the list makes me shudder. I had to do FORTRAN back in the stone age when I went to college. OK maybe not the stone age, but the punch card age.http://stackoverflow.com/questions/65116/whats-your-favorite-harmless-computer-practical-joke/204952#204952Comment by Jim C on What's Your Favorite Harmless Computer Practical Joke?Jim C2009-07-10T12:25:56Z2009-07-10T12:25:56ZI actually had a supervisor who set up his mouse as left handed to prevent others from using his PC.http://stackoverflow.com/questions/1059998/serial-port-cable-unplugged/1060046#1060046Comment by Jim C on Serial Port Cable UnpluggedJim C2009-06-29T19:33:23Z2009-06-29T19:33:23ZTrue if your device is using hardware handshaking. Many devices do not. In fact some serial ports don't even have those pins connected.http://stackoverflow.com/questions/1019573/save-icon-still-a-floppy-disk/1019587#1019587Comment by Jim C on Save icon: Still a floppy disk?Jim C2009-06-19T19:44:28Z2009-06-19T19:44:28ZPesto, are you sure people will recognize an envelope or a fox for that matter? How many people recognize a slide rule? or a drafting square? If you showed picture of a fox, a wolf, and wolverine to a bunch of city kids how many could pick out the fox? It is not that they are dumb, they just have not seen them.
Icons will change, become more abstract, and yes people will forget what they stand for. Now where is old rotory dial corded analog telephone.http://stackoverflow.com/questions/953908/which-would-you-choose-a-hit-in-code-maintenance-or-a-hit-in-load-speed/953924#953924Comment by Jim C on Which would you choose: a hit in code maintenance or a hit in load speed?Jim C2009-06-05T19:33:59Z2009-06-05T19:33:59ZI as sarcastic as the next a**Hole, but A post like this one is asking for a serious answer.http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888240#888240Comment by Jim C on What is your longest-held programming assumption that turned out to be incorrect?Jim C2009-05-29T20:04:06Z2009-05-29T20:04:06ZAutopilots with Autoland systems for aircraft must be capable of more then 1 million landings without an accident. Most use three computers working in parallel, 1 flying the plane, 2 checking the first for mistakes. That is about as close to bug free as you will get. For the record I worked on those systems, but I did not program them,http://stackoverflow.com/questions/271145/what-is-the-best-way-to-convert-a-utc-string-to-a-date-in-crystal-reportsComment by Jim C on What is the best way to convert a UTC string to a date in Crystal Reports?Jim C2009-05-15T16:19:31Z2009-05-15T16:19:31ZStick to your solution. A "one liner" simply makes the code less readable. In theory you might gain a couple of clock cycles, but the amount gained is too small to bother with. http://stackoverflow.com/questions/727196/boolean-true-positive-1-or-negative-1/727238#727238Comment by Jim C on boolean true -- positive 1 or negative 1?Jim C2009-04-07T19:56:50Z2009-04-07T19:56:50ZIn my experience implicit conversions almost always lead to hard to understand convoluted sections of code. Even explicit conversions can cause issue. True is TRUE, false is FALSE. These Boolean values are not numbers. http://stackoverflow.com/questions/713438/explain-generics-in-layman-style-in-cComment by Jim C on Explain Generics in layman style in C#? Jim C2009-04-03T15:54:00Z2009-04-03T15:54:00Z"The only dumb question is the one you didn't ask", +1 from me. It is a good basic question. For it to be a duplicate of "what is < >" you would already have to know the answer.http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/623082#623082Comment by Jim C on Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?Jim C2009-03-11T12:37:05Z2009-03-11T12:37:05ZPeople don't give enough weight to "popular". The more people that are familiar with a language, the more that actually use it, translates in to "able to find more people to work on it in the future". Nothing against JAVA or C#, I actually like C#. They may someday finds themselves as popular as C++http://stackoverflow.com/questions/610916/easiest-way-to-flip-a-boolean-value/610919#610919Comment by Jim C on Easiest way to flip a boolean value?Jim C2009-03-04T15:01:38Z2009-03-04T15:01:38ZI use this Boolean "toggle" all the time in code.http://stackoverflow.com/questions/553637/should-programmers-have-to-be-part-of-a-professional-body-to-practice/553662#553662Comment by Jim C on Should programmers have to be part of a professional body to practice?Jim C2009-02-16T15:43:00Z2009-02-16T15:43:00ZI am sure many will label me as a cynic. I prefer to think of it as experienced. I certainly have seen this in other areas. http://stackoverflow.com/questions/521810/theories-of-software-engineering/521834#521834Comment by Jim C on Theories of software engineeringJim C2009-02-06T20:20:53Z2009-02-06T20:20:53ZThey make a very explicit assertion, this method produces code with fewer bugs in less time. In theory this is testable in practice is seldom is. http://stackoverflow.com/questions/517543/do-you-find-non-developers-logic-hard-to-follow/517865#517865Comment by Jim C on Do you find non-developers logic hard to follow?Jim C2009-02-05T21:21:37Z2009-02-05T21:21:37ZActually my favorite version was
"Grant me the senility to forget the people I never liked anyway,
the good fortune to run into the ones I do,
and the eyesight to tell the difference."
from <a href="http://www.headrambles.com/" rel="nofollow">headrambles.com</a>http://stackoverflow.com/questions/140270/humor-in-code/272150#272150Comment by Jim C on Humor in codeJim C2009-02-05T15:22:45Z2009-02-05T15:22:45ZOne like this caused us a lot of grief. If was compiled code designed to run on a 286. We had to keep a 286 PC in working condition until the whole line was retired around 2002. Worse yet the DOS version installed on it was German. Every emulator or slow down we tried cause the program to fail.