User tim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:09:42Z http://stackoverflow.com/feeds/user/26177 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820815/how-to-help-to-an-underperforming-newbie-do-a-better-job/1820900#1820900 1 Answer by tim for How to help to an underperforming newbie do a better job? tim 2009-11-30T16:36:25Z 2009-11-30T16:36:25Z <ul> <li>Don't put pressure on him with time. </li> <li>Break up tasks as much as possible - in fact break down things into the smallest steps you can think of</li> <li>Don't expect him to give useful time estimates</li> <li>Be SURE TO HAVE CODE REVIEWS. Review the code and give good feedback. </li> </ul> <p>Encourage him when you can.</p> <p>Kudos to you for wanting to mentor.</p> <p>Kids coming out of school have no useful group development skills and have never had to work on code that needed to be maintained. This is a big step, but one that should and can be overcome within a month or less. </p> <p>The main issue is setting expectations for the work that he is to produce. If he knows he will be checked on everything and you are consistent with the quality then he should eventually fall in line.</p> <p>If he doesn't then there are other problems you have to address.</p> <p>Good luck</p> http://stackoverflow.com/questions/1723572/what-is-the-best-solution-for-suppressing-warning-from-a-ms-include-c4201-in-mms 0 What is the best solution for suppressing warning from a MS include (C4201 in mmsystem.h) tim 2009-11-12T16:36:04Z 2009-11-12T17:05:55Z <p>I am tired of having to look at warnings during our compilations - warnings that come from MS include files.</p> <p>"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\mmsystem.h(1840): warning C4201: nonstandard extension used : nameless struct/union"</p> <p>I have seen <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=368375" rel="nofollow">this thread</a> that suggests changing the header itself (but then each of my team mates has to do it and we have to do it on the build server - not to mention it is a glorious HACK)</p> <p>Is there a better way? I don't want to turn it off globally - just to suppress it for certain files or directories.</p> <p>Any suggestions? </p> <p>EDIT For some stupid reason I didn't think I could set warning levels across include files. Thanks - that does the trick.</p> http://stackoverflow.com/questions/1568726/can-i-get-debug-symbols-for-flash-player-or-any-other-way-to-get-support-for-fl 1 Can I get debug symbols for flash player? Or any other way to get support for flash? tim 2009-10-14T20:18:09Z 2009-11-11T20:13:24Z <p>The company I am working for has a flash component (using flex and cs4) that crashes intermittently in chrome, FF and IE. (so far only win32 platforms)</p> <p>I submitted a bug report to Adobe but have not heard anything back from them. Their support process seems like a black hole. WE can get a dump from Flash using <a href="http://kb2.adobe.com/cps/408/kb408620.html#makecase" rel="nofollow">these steps</a> but after submitting the bug we got no help at all.</p> <p>We loaded this into MS visual studio but can;t get decent stack information because there are no symbols for the flash stuff.</p> <p>Microsoft and other companies provide symbols to help with debugging and we would like to get that from adobe. Is there any way to make progress on this?</p> <p>Does anyone know where to get flash symbols or how else we can make progress?</p> <p>It is hard to debug the process if the container just dies. </p> <p>the binary is flash10c.ocx</p> <p>I just spent a painful hour on the phone with adobe folks - and the final answer from one of them (I spoke to about 8 people) was that they do not have a per incident purchase plan for developer support for flash.</p> <p>I find that hard to believe.</p> <p>Does anyone know how to get support for Flash?</p> http://stackoverflow.com/questions/1715626/is-it-possible-to-set-an-applications-windows-compatibility-mode-at-run-time 0 Is it possible to set an application's windows compatibility mode at run-time? tim 2009-11-11T14:45:01Z 2009-11-11T19:49:09Z <p>We are using a 3rd party library that sometimes does not work correctly on Win7. WE know how to configure this at installation time, but we'd also like to consider setting it at run time. Is this possible, or does that context have to be set prior to launch? (I think there is a slim to none chance, but figured I would ask anyway)</p> <p>(C++ application - not that it really matters)</p> http://stackoverflow.com/questions/1689019/c-watch-a-memory-location-install-data-breakpoint-from-code/1689103#1689103 1 Answer by tim for C++: watch a memory location/install 'data breakpoint' from code? tim 2009-11-06T17:31:48Z 2009-11-06T17:31:48Z <p>There are tools for this - like heap agent and boundschecker and many others that will discover overwrites. Basically you need some sentinels at the end of your memory allocations and they need to be checked.</p> http://stackoverflow.com/questions/1688757/c-windows-application-developer-3rd-party-tools/1688971#1688971 0 Answer by tim for C# Windows Application Developer - 3rd Party Tools tim 2009-11-06T17:09:17Z 2009-11-06T17:09:17Z <p>I'd throw <a href="http://www.mono-project.com/Main%5FPage" rel="nofollow">mono</a> in there as well. Since you're looking to give yourself an advantage over other developers and improve your value to companies - having cross platform experience is advantageous as well.</p> http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system/1663122#1663122 1 Answer by tim for Is there an open-source, web-based, self-hosted, revision control system? tim 2009-11-02T19:19:11Z 2009-11-02T19:19:11Z <p>Why would anyone want to use a browser for this? I spent a VERY painful year at a company that required us to use PVCS with a browser interface. It was horrible. I would have preferred just using backed up directories for version control. What a nightmare.</p> <p>If you were evaluating Trac as a version control system I encourage you to do a bit more research than just posting a question on SO - especially if you are going to be hosting your own. That, to me, is a definite beginner mistake. Do you really want to manage backups of the repository and manage a public-facing server or a VPN?</p> <p>You can get pretty cheap hosting - from free to a few dollars per month for svn or git or mercurial hosting. </p> <p>Source/Version control is a great example of something that should NOT be a browser based app.</p> http://stackoverflow.com/questions/1662389/can-every-recursive-function-be-converted-to-a-non-recursive-form/1662394#1662394 24 Answer by tim for Can every recursive function be converted to a non-recursive form? tim 2009-11-02T16:49:49Z 2009-11-02T16:49:49Z <p>That's already been answered: <a href="http://stackoverflow.com/questions/1662389/can-every-recursive-function-be-converted-to-a-non-recursive-form">please see this question</a></p> http://stackoverflow.com/questions/411019/how-do-you-get-yourself-back-out-of-the-zone-when-the-work-day-is-over/1662388#1662388 1 Answer by tim for How do you get yourself back "out of the zone" when the work day is over? tim 2009-11-02T16:48:31Z 2009-11-02T16:48:31Z <p>Riding a bike to and from work is perfect for this. Having to fight for your life in traffic trumps any lingering programming problems that remain in the brain.</p> http://stackoverflow.com/questions/1661503/how-are-ms-visual-c-environments-generally-setup/1662374#1662374 1 Answer by tim for How are MS Visual C++ environments generally setup? tim 2009-11-02T16:44:45Z 2009-11-02T16:44:45Z <p>It sounds like you have good intentions - coming form a non MSVC world I can see your points.</p> <p>If I were in y our shoes I would definitely make a command line/automated build/build server.</p> <p>You can use MSBuild for this - and hudson has a plugin for this. I usually have a "Build" directory near the root of the projects that contains scripts/etc that will call the appropriate MSBuild/.sln files.</p> <p>The "makefiles" for Visual Studio are .sln and .vcproj files. You can call those with msbuild from the command line. You can also export a makefile (I think that is still an option) from within the IDE that you can run. I don;t recommend going that route though other than trying it out and seeing what is output - since that is what you are familiar with.</p> <p>Both the vcproj and sln files are human readable - go through them - it will give you some useful information.</p> <p>I would also agree that having a distributon directory is good - for building an installer/etc after the build. Copy all the needed binaries there - either in postbuild steps or in another script/etc.</p> <p>Let us know what you end up doing.</p> <p>I have one other piece of advice: UPGRADE to VC/Dev studio 2008 or 2010. ASAP</p> http://stackoverflow.com/questions/1659257/how-do-i-bring-back-hudson-after-a-windows7-install-over-vista 0 How do I bring back hudson after a Windows7 install (over vista)? [closed] tim 2009-11-02T03:04:45Z 2009-11-02T03:23:30Z <p>What a disappointment - I upgraded the build server to Windows 7 (on top of vista) and I see all my old directories, but apparently MS decided not to carry over hudson as a service from the previous OS. What a hassle.</p> <p>Has anyone else experienced this? I think it should a simple fix to get it all runninig again, but this is a huge let-down. I thought that Win7 was a minor upgrade from Vista. </p> <p>What a shoddy piece of work that was. (the win7 installer)</p> <p>It looks like the env vars were not carried forward nor was Java configuration or the hudson environment. </p> <p>If anyone has a suggestion about what to do from here (other that reinstalling everything) I am all ears.</p> <p>Java is not on the machine and neither is anything else - all my browser bookmarks are gone. </p> http://stackoverflow.com/questions/1609380/example-of-a-histogram-using-wxwidgets 2 Example of a histogram using wxWidgets tim 2009-10-22T19:15:17Z 2009-10-30T08:21:47Z <p>Does anyone have sample wxWidgets code to display a histogram? wxMathPlot seems to be working great for my other plotting needs, but now I have a requirement for a histogram. </p> <p>Not being a UI developer I am a little bit like a fish out of water.</p> <p>Any suggestions or references are greatly appreciated.</p> <p>(I'd like it to be a dynamic histogram layer on a frame - meaning I will be adding values over time and I want the plot to update.</p> <p><a href="http://www.guyrutenberg.com/2009/08/13/simple-histogram-widget-for-wxwidgets/" rel="nofollow">I did find this</a>, but I'd rather just make/use a histogram class than do the low level drawing.</p> http://stackoverflow.com/questions/1639003/class-vs-pure-array-representation/1639027#1639027 3 Answer by tim for Class Vs Pure Array Representation tim 2009-10-28T18:05:53Z 2009-10-28T18:11:40Z <p>You should profile the code when you run it and see where the time is being spent.</p> <p>Also consider another language that makes it easy to use big ints. </p> http://stackoverflow.com/questions/1633505/team-foundation-server-visual-studio-2008-pro-a-worthwhile-combination/1633586#1633586 0 Answer by tim for Team Foundation Server + Visual Studio 2008 Pro. A worthwhile combination? tim 2009-10-27T20:51:24Z 2009-10-27T20:51:24Z <p>I can't imagine spending that kind of money to then learn how to use TFS.</p> <p>Why not use svn or some other version control system?</p> http://stackoverflow.com/questions/1631618/advantages-of-c/1631668#1631668 0 Answer by tim for Advantages of C# tim 2009-10-27T15:36:05Z 2009-10-27T15:36:05Z <p>I would suggest that the platform for coding is so much better in Visual Studio than on Eclipse (or any other IDE).</p> <p>This is not meant to start a holy war or debate, but I find I am WAAY more productive with a visual studio environment than any other IDE.</p> http://stackoverflow.com/questions/1625362/will-intellitracetm-historical-debugging-be-available-for-unmanaged-c-in-fu 0 Will IntelliTrace(tm) (historical debugging) be available for unmanaged c++ in future versions of Visual Studio? tim 2009-10-26T15:04:04Z 2009-10-27T09:52:12Z <p>I love the idea of <a href="http://msdn.microsoft.com/en-us/library/dd264915%28VS.100%29.aspx" rel="nofollow">historical debugging in VS 2010</a>. </p> <p>However, I am really disappointed that unmanaged C++ is left out. </p> <blockquote> <p>IntelliTrace supports debugging Visual Basic and C# applications that use .NET version 2.0, 3.0, 3.5, or 4. You can debug most applications, including applications that were created by using ASP.NET, Windows Forms, WPF, Windows Workflow, and WCF. IntelliTrace does not support debugging C++, script, or other languages. Debugging of F# applications is supported on an experimental basis.</p> </blockquote> <p>(editorial) [This is really poor support in my opinion. .NET is less in need of this assistance than unmanaged c++. I an getting a little tired of the status of plain old C++ and its second-class status in the MS tools world. Yes, I realize it is probably WAAY easier to implement this with .NET and MS are pushing .NET as the future, and yes, I know that C++ is an "old" language, but that does not diminish the fact that there are lots of C++ apps out there and there will continue to be more apps built with C++. I sincerely hope MS has not dropped C++ as a supported developer tool/language- that would be a shame.]</p> <p>Does anyone know if there are plans for it to support C++?</p> http://stackoverflow.com/questions/1620485/which-metaphor-would-you-use-to-describe-programming/1626672#1626672 0 Answer by tim for Which metaphor would you use to describe programming? tim 2009-10-26T18:55:04Z 2009-10-26T18:55:04Z <p>I usually draw analogies to building structures/houses/buildings/cities, etc.</p> <p>the levels of complexity scale nicely with the analogy.</p> http://stackoverflow.com/questions/1625406/using-tortoisesvn-via-command-line/1625475#1625475 0 Answer by tim for Using TortoiseSVN via command line tim 2009-10-26T15:27:08Z 2009-10-26T15:27:08Z <p>I usually have the standard SVN installed as well as TSvn - just add the binary location of SVN to your PATH environment variable. </p> <p>Using the standard SVN command line tool will be better for getting help and documentation than using any other svn pseudo client.</p> http://stackoverflow.com/questions/1614970/c-linker-question-dynamic-and-static-library-dependency/1615077#1615077 0 Answer by tim for C++ Linker Question -- Dynamic and Static library dependency. tim 2009-10-23T18:12:05Z 2009-10-23T18:12:05Z <p>As you point out - If you wrapped Y or had a dynamic Y your problems would be solved.</p> <p>Why can't you wrap Y to make it dynamic?</p> <p>Why can't you get a dynamic Y?</p> <p>Given your intransigent constraints you might have to link Y for Z and X. You are basically removing all your options...</p> http://stackoverflow.com/questions/1609189/examples-of-developer-guidelines-to-bring-a-new-developer-up-to-speed/1609318#1609318 1 Answer by tim for Examples of developer guidelines to bring a new developer up to speed tim 2009-10-22T19:02:06Z 2009-10-22T19:02:06Z <p>I find it more effective to have a few code reviews - especially for newcomers. If they need guidelines there are good ones (and bad ones) all over the internets. </p> <p>As for the other parts of the process, I have written a few in the past.</p> <p>I create a document explaining what tools are used, where to get them, how to get accounts, what the URLs are for svn repos, bug tracking, build server, etc.</p> <p>Basically document all the things you do to write code, check in code, do builds, report fix bugs, ship the product, etc.</p> http://stackoverflow.com/questions/1599725/which-mobile-programming-environment-do-you-recommend-for-a-startup-to-target/1602496#1602496 2 Answer by tim for Which mobile programming environment do you recommend for a startup to target? tim 2009-10-21T18:00:21Z 2009-10-21T18:00:21Z <p>Based on my limited experience with seeing what devices are used on subways, trains, in airports, etc - I'd suggest either Blackberry or iPhone. </p> <p>But more importantly, pick a platform you like and are excited about.</p> <p>If you are not enthusiastic about the platform and you are doing it solely for the money then it will show. you might as well just make hamburgers or sell lotto and cigarettes.</p> http://stackoverflow.com/questions/1591217/what-is-the-meaning-of-leading-underscores-in-a-c-constructor/1591224#1591224 1 Answer by tim for What is the meaning of leading underscores in a C++ constructor? tim 2009-10-19T21:20:54Z 2009-10-19T21:20:54Z <p>They are just names for parameters passed in. They happen to match member variables and are used for initializers.</p> <p>There is no special meaning - it is just a convention some people may use.</p> http://stackoverflow.com/questions/989817/how-can-i-make-real-time-plots-with-wxmathplot 0 How can I make "real-time" plots with wxMathPlot? tim 2009-06-13T02:54:39Z 2009-10-19T18:01:37Z <p>I am thinking of using <a href="http://wxmathplot.sourceforge.net/index.shtml" rel="nofollow">wxMathPlot</a> for plotting/graphing some data that arrives continuously. I want to draw "Real-time" plot/graph using it. Is that possible?</p> <p>I.E. I don't want just a static graph of a one-time read of a file - I want the streaming data plotted and continued out to the right of the graph - (and let the left side fall off/scroll out of view)</p> <p>EDIT</p> <p>I still have not gotten an answer for this. There is an interesting class in the wxmathPlot library called mpFXYVector but that appears just to draw one plot from a vector of data. What I want is something that can be fed a stream and scroll the graph horizontally (and also resize the scale if needed)</p> http://stackoverflow.com/questions/1588922/how-to-detect-and-estimate-heap-fragmentation-in-my-c-program/1589042#1589042 0 Answer by tim for How to detect and estimate heap fragmentation in my C++ program? tim 2009-10-19T14:38:09Z 2009-10-19T14:38:09Z <p>I agree with Tobias - making your own memory manager is an excellent way to do this. I know only a few developers I would trust to write this kind of code though...</p> <p>Another possibility is to do your own sort of garbage collection/consolidation on your objects every now and then - at low loads... i.e. your service can be inactive for a while while it "defragments" the memory it uses but I am not sure you can guarantee the behavior you want without your own memory management. </p> http://stackoverflow.com/questions/1500495/how-to-build-wxmathplot-for-win32 0 How to build wxmathPlot for win32? tim 2009-09-30T20:33:05Z 2009-10-19T03:36:48Z <p>I downloaded the latest <a href="http://wxmathplot.sourceforge.net/" rel="nofollow">wxmathplot</a> but the readme is a bit sparse with instructions on how to build on win32 platform.</p> <p>Has anyone used this library for win32? Can someone point me to the docs or give some hints/advice on how to build for win32 targets.</p> <p>We'll eventually use this for cross platform stuff, for now it is just win32 until we port our other code.</p> <p>I presume I have to use CMake, but have not used it before and it is not obvious to me how to build this all - I have already installed CMake, but I am apparently too stupid to figure out how to build this library/samples.</p> <p>Well, I managed to make an SLN file, but it was not obvious.</p> http://stackoverflow.com/questions/1500495/how-to-build-wxmathplot-for-win32/1500655#1500655 1 Answer by tim for How to build wxmathPlot for win32? tim 2009-09-30T21:03:37Z 2009-10-19T03:36:48Z <blockquote> <p>Here is a partial answer - to get CMake to build an sln file:</p> <p>Well, unfortunately there is no good documentation on how to build wxMathPlot on Windows, but it is very simple. Just use CMake:</p> <p><a href="http://www.cmake.org/" rel="nofollow">http://www.cmake.org/</a></p> <p>Download and install it, then open CMake gui, selecting the directory where you uncompressed wxMathPlot and a target build directory. click Configure twice and then click Generate. CMake does all its magic and you'll get project files to build wxMathPlot depending on your compiler. For example, if you use Visual Studio, a solution sln file is generated: open it and build.</p> </blockquote> <p>That works for building an sln file</p> http://stackoverflow.com/questions/460813/how-do-you-get-up-and-running-with-a-build-server/1586334#1586334 1 Answer by tim for How do you get up and running with a build server? tim 2009-10-18T23:36:20Z 2009-10-18T23:36:20Z <p>Roughly in order - minimal/least sophisticated through more sophisticated </p> <ul> <li>able to get a specific set of source onto any machine </li> <li>able to build that source (with no problems)</li> <li>able to (schedule) build each night/or some other defined period with no user intervention</li> <li>One (or more) dedicated build server (not shared as qa or dev machine)</li> <li>able to do a build after each check-in/commit</li> <li>Notify interested parties of the build status after a build</li> <li>Provide build status at any time </li> <li>Create installers as part of the build</li> <li>ability to deploy/live if build is good</li> <li>Run unit tests </li> <li>Run tests on the product</li> <li>Report the results of those tests</li> <li>Static code analysis and reporting ... And the list goes on and on</li> </ul> <p>Don't be afraid to just start with batch files or shell scripts or other ad-hoc means. People made perfectly good software before the CI craze. there were plenty of good processes before Hudson and Cruise Control - ( I am not knocking those or others - I use Hudson among others) - but don't miss the point - these things are here to help you - not become overbearing process)</p> http://stackoverflow.com/questions/1438390/comparison-of-ci-servers/1457111#1457111 0 Answer by tim for Comparison of CI Servers? tim 2009-09-21T21:57:44Z 2009-10-17T20:48:50Z <p>We're happy with <a href="http://en.wikipedia.org/wiki/Hudson%5F%28software%29" rel="nofollow">Hudson</a>. I don't have anything to compare it to, but it was simple to configure and get running. Right now it only builds Win32 C++ projects and an installer, but we're porting to Linux and it should work with that as well. </p> <p>Gets <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> repositories without any problems and mails out alerts, etc. We like it so far. Again, we have limited experience with comparisons. </p> http://stackoverflow.com/questions/474840/boost-vs-ace-c-cross-platform-performance-comparison 4 boost vs ACE C++ cross platform performance comparison? tim 2009-01-23T22:18:18Z 2009-10-16T09:34:16Z <p>I am involved in a venture that will port some communications, parsing, data handling functionality from Win32 to Linux and both will be supported. The problem domain is very sensitive to throughput and performance. </p> <p>I have very little experience with performance characteristics of boost and ACE. Specifically we want to understand which library provides the best performance for threading. </p> <p>Can anyone provide some data -- documented or word-of-mouth or perhaps some links -- about the relative performance between the two?</p> <p>EDIT</p> <p>Thanks all. Confirmed our initial thoughts - we'll most likely choose boost for system level cross-platform stuff.</p> http://stackoverflow.com/questions/1572684/how-do-i-get-symbols-for-flash10c-ocx-need-the-pdb-from-adobe 0 How do I get symbols for Flash10c.ocx? (need the pdb from adobe) tim 2009-10-15T14:22:43Z 2009-10-15T14:22:43Z <p><a href="http://stackoverflow.com/questions/1568726/can-i-get-debug-symbols-for-flash-player-or-any-other-way-to-get-support-for-fl">This is related to this question</a></p> <p>I need the pdb file from adobe but it is a nightmare trying to get support or any reasonable response form the company. I spent 2 hours yesterday on the phone with various people begging them to let me pay for a support incident.</p> <p>Flash is crashing in browsers and I can't debug it in visual studio without the pdb. Microsoft provided symbols. Without the symbols the rest of the stack is useless and not available.</p> http://stackoverflow.com/questions/1826538/test-pointer-before-delete/1826553#1826553 Comment by tim on test pointer before delete tim 2009-12-01T14:38:35Z 2009-12-01T14:38:35Z Actually, it is best to find the bug, rather than rely on some potentially overly complex constructs. If people can't figure out lifetimes of objects, my experience is that they also end up mangling the shared pointers as well. (Ever try to track down a memory leak related to boost shared pointers? It is no fun) http://stackoverflow.com/questions/1820815/how-to-help-to-an-underperforming-newbie-do-a-better-job Comment by tim on How to help to an underperforming newbie do a better job? tim 2009-11-30T16:37:00Z 2009-11-30T16:37:00Z Why did someone vote to close? That is silly. http://stackoverflow.com/questions/1817313/are-there-any-good-api-for-vc-6-0-rs232-communication/1817367#1817367 Comment by tim on Are there any *GOOD* API for VC++ 6.0 rs232 communication? tim 2009-11-30T14:43:45Z 2009-11-30T14:43:45Z Serial communications is pretty straightforward - not really a difficult thing to implement in my opinion. http://stackoverflow.com/questions/1723572/what-is-the-best-solution-for-suppressing-warning-from-a-ms-include-c4201-in-mms/1723612#1723612 Comment by tim on What is the best solution for suppressing warning from a MS include (C4201 in mmsystem.h) tim 2009-11-12T17:04:59Z 2009-11-12T17:04:59Z I don't want to reduce the warning level - I just want to suppress a particular one, but I managed to figure it out. http://stackoverflow.com/questions/1568726/can-i-get-debug-symbols-for-flash-player-or-any-other-way-to-get-support-for-fl/1717760#1717760 Comment by tim on Can I get debug symbols for flash player? Or any other way to get support for flash? tim 2009-11-11T22:12:17Z 2009-11-11T22:12:17Z it is audio related. We thought initially it was from memory issues - but now we think it is some odd packets and some library inability to handle them. Adobe won't provide the debug symbols. http://stackoverflow.com/questions/1715626/is-it-possible-to-set-an-applications-windows-compatibility-mode-at-run-time/1717605#1717605 Comment by tim on Is it possible to set an application's windows compatibility mode at run-time? tim 2009-11-11T22:11:16Z 2009-11-11T22:11:16Z That is interesting - but that is not what I am asking about http://stackoverflow.com/questions/1077324/iphone-temperature-sensor Comment by tim on iPhone Temperature Sensor tim 2009-11-11T18:55:48Z 2009-11-11T18:55:48Z Have you made any progress with this? I'd buy it. http://stackoverflow.com/questions/1715626/is-it-possible-to-set-an-applications-windows-compatibility-mode-at-run-time/1715652#1715652 Comment by tim on Is it possible to set an application's windows compatibility mode at run-time? tim 2009-11-11T14:58:06Z 2009-11-11T14:58:06Z That's what we figured - just making sure we weren't missing a trick. http://stackoverflow.com/questions/609486/iphone-development-provisioning-assistant-step-3-public-private-key-problem/609545#609545 Comment by tim on iPhone Development Provisioning Assistant Step 3 public/private Key problem tim 2009-11-10T18:43:37Z 2009-11-10T18:43:37Z I still haven't gotten it to work. http://stackoverflow.com/questions/454525/iphone-provisioning-profile-problem/454657#454657 Comment by tim on iphone provisioning profile problem tim 2009-11-10T18:41:49Z 2009-11-10T18:41:49Z I also followed all the steps. But this is a mystery to me as well. http://stackoverflow.com/questions/368062/create-provisioning-profile-in-iphone-application/370233#370233 Comment by tim on Create provisioning profile in iphone application tim 2009-11-10T18:39:27Z 2009-11-10T18:39:27Z Unfortunately I followed Apple's docs and still can't get this process to work. Here I am months later (granted, I have other projects I am working on) and I still can't test on my iPhone. http://stackoverflow.com/questions/368062/create-provisioning-profile-in-iphone-application/368102#368102 Comment by tim on Create provisioning profile in iphone application tim 2009-11-10T18:38:25Z 2009-11-10T18:38:25Z For those who know how to do it, a step-by-step simple set of instructions would help. I have been to all the Apple documentation pages, and even run their worthless wizard. After exhausting those options, it is no wonder to me that people can't even elaborate on what has been tried. For me, getting the environment set up ranks as one of the all-time worst development experiences I have ever had. http://stackoverflow.com/questions/1683091/how-to-find-recursion-in-your-app/1683118#1683118 Comment by tim on How to find recursion in your app? tim 2009-11-05T21:25:03Z 2009-11-05T21:25:03Z I think you are overstating it a bit. In most cases I think some static analysis an find some cycles - this would not be that hard. Would it be exhaustive? No, but I think to make a practical check for this would not be so hard. Using a regex is not going to happen though. http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system/1663122#1663122 Comment by tim on Is there an open-source, web-based, self-hosted, revision control system? tim 2009-11-02T22:07:46Z 2009-11-02T22:07:46Z There are SO many better clients out there. Command line, shell extensions, IDE plug-ins. All of them are FAR superior to any browser client I have EVER seen. Good luck forcing that issue. I suggest you drop that &quot;requirement&quot;. If you insist - then good luck http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system/1663122#1663122 Comment by tim on Is there an open-source, web-based, self-hosted, revision control system? tim 2009-11-02T22:03:34Z 2009-11-02T22:03:34Z Ugh. Go ahead - use a browser. I could not stand it. Browsers and states, multiple selection, connectivity issues, etc. You can keep your flippin' browser - give me a desktop app any day.