User David Sykes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:58:45Z http://stackoverflow.com/feeds/user/259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865664/mercurial-get-non-versioned-copy-of-an-earlier-version-of-a-file/1866152#1866152 4 Answer by David Sykes for Mercurial: Get non-versioned copy of an earlier version of a file David Sykes 2009-12-08T10:42:26Z 2009-12-08T10:42:26Z <p>The command you are looking for could be cat</p> <p>hg cat [OPTION]... FILE...</p> <p>output the current or given revision of files</p> <pre><code>hg cat -o outputfile.png -r revision somefile.png </code></pre> <p>You can then compare somefile.png with outputfile.png</p> http://stackoverflow.com/questions/1847478/protecting-class-from-getting-instantiated-before-main/1847530#1847530 2 Answer by David Sykes for Protecting class from getting instantiated before main() David Sykes 2009-12-04T15:06:00Z 2009-12-04T15:06:00Z <p>Give your class a static bool that is set on the first instantiation, and check it at the beginning of main()</p> <p>Using a factory or making the constructor private will not stop it being instantiated in the constructor of a class that is instantiated before main()</p> http://stackoverflow.com/questions/1825692/can-python-send-text-to-the-mac-clipboard 1 Can python send text to the Mac clipboard David Sykes 2009-12-01T11:51:49Z 2009-12-01T12:20:39Z <p>I'd like my python program to place some text in the Mac clipboard.</p> <p>Is this possible?</p> http://stackoverflow.com/questions/818458/how-can-i-begin-with-tkinter/1819245#1819245 0 Answer by David Sykes for How can I begin with Tkinter? David Sykes 2009-11-30T11:22:07Z 2009-11-30T11:22:07Z <p>I just came across <a href="http://www.shido.info/py/python6%5Fe.html" rel="nofollow">http://www.shido.info/py/python6_e.html</a> which looks very handy</p> http://stackoverflow.com/questions/1769622/whats-your-preferred-method-of-learning-a-new-language/1769711#1769711 0 Answer by David Sykes for What’s your preferred method of learning a new language? David Sykes 2009-11-20T10:51:43Z 2009-11-20T10:51:43Z <p>These days I try and write a fun or educational game for my grandkids. Sometimes they never see the result, but it gives me the motivation to keep going, and provides a good cross section of functionality to cover.</p> http://stackoverflow.com/questions/1170338/mercurial-for-beginners-the-definitive-practical-guide/1688455#1688455 0 Answer by David Sykes for Mercurial for Beginners: The Definitive Practical Guide David Sykes 2009-11-06T15:51:06Z 2009-11-06T15:51:06Z <h2>How do you see the history of revisions to a file?</h2> <p>To show the revision history of entire repository or files</p> <pre><code>$ hg log {file(s)} </code></pre> http://stackoverflow.com/questions/1673874/how-can-i-get-the-full-list-of-running-processes-on-a-mac-from-a-python-app 1 How can I get the full list of running processes on a Mac from a python app. David Sykes 2009-11-04T13:52:51Z 2009-11-04T14:51:47Z <p>I want to get the list of running processes on the Mac, similar to what you get from 'ps -ea'</p> <p>I have tried <strong>os.popen('ps -ea')</strong> but this only lists a small subset of the processes, presumably those owned by the owning shell.</p> <p>Other options I have tried are</p> <pre><code>'sh -c /bin/ps -ea' 'bash -c /bin/ps -ea' 'csh -c /bin/ps -ea' Running as root via sudo data = subprocess.Popen(['ps','ea'], stdout=subprocess.PIPE).stdout.readlines() </code></pre> <p>What other methods are there that might give me the full process information listing?</p> <p>This is for a wx python app to monitor specific processes and spot when they die.</p> http://stackoverflow.com/questions/1667042/how-to-convert-a-string-to-an-integer-in-asp-net 0 How to convert a string to an integer in asp.net David Sykes 2009-11-03T12:30:03Z 2009-11-03T12:43:13Z <p>None of the search results for this are from stackoverflow, and many mention Cint() which 'does not exist in the current context'</p> <p>Is int.Parse(String) the preferred method?</p> http://stackoverflow.com/questions/1643623/asp-net-how-to-get-a-button-to-affect-the-page-contents 1 asp.net: How to get a button to affect the page contents. David Sykes 2009-10-29T13:12:20Z 2009-10-30T16:07:18Z <p>In Page_Load I populate an asp:Table with a grid of images. I have a button that when pressed I would like it to repopulate the page with different images.</p> <p>However it appears that when the button is pressed Page_Load is called again, followed by the script specified by the button. I thought that I could simply set a variable in the button script which is checked during Page_Load, but this will not work.</p> <p>What is the most asp.netish way to approach this? Should I be populating my table somewhere other than in Page_Load, or should my button be doing something different?</p> http://stackoverflow.com/questions/1642703/how-to-get-boost-wdirectoryiterator-to-return-utf32-on-the-mac 0 How to get boost wdirectory_iterator to return UTF32 on the Mac David Sykes 2009-10-29T10:16:16Z 2009-10-29T13:37:40Z <p><strong>directory_iterator</strong> returns UTF8 using both Visual Studio and Xcode as expected.</p> <p><strong>wdirectory_iterator</strong>, however, returns UTF16 using Visual Studio, and UTF8 using Xcode, despite returning a wchar_t string.</p> <p>What can I change to get wdirectory_iterator to return UTF32?</p> <p>An answer to a <a href="http://stackoverflow.com/questions/810677/what-utf-format-should-boost-wdirectoryiterator-return">question I asked previously</a> suggests that changing the locale might be required, however according to 'locale -a' the only locales available are </p> <p>en_GB, en_GB.ISO8859-1, en_GB.ISO8859-15, en_GB.US-ASCII, en_GB.UTF-8 All are 8 bit, with the possible exception of en_GB</p> <p>I tried en_GB in case it might not be 8 bit, but this causes boost::filesystem::exists to throw a boost::filesystem::wpath::to_external conversion exception.</p> http://stackoverflow.com/questions/1640126/should-i-use-comments-in-code-liberally/1642617#1642617 2 Answer by David Sykes for Should I use comments in code, liberally? David Sykes 2009-10-29T09:54:44Z 2009-10-29T09:54:44Z <p>In my experience the people who think their code is self commenting are invariably wrong. Maybe you will remember why you did something a certain way when you revisit the code, but somebody else who has to maintain it will not.</p> <p>If you have to do some research to write a piece of code then include a reference, or a note. </p> <p>If you have to change a routine because of something you learned after the first draft then add information about your experience so somebody doesn't later change it back</p> <p>Code reviews would be of immense help here, if your code is not self explanatory you would find out at the time, and save a maintenance programmer some lost hair</p> http://stackoverflow.com/questions/1636760/dynamic-memory-reallocation-using-realloc/1636781#1636781 3 Answer by David Sykes for Dynamic Memory Reallocation using realloc David Sykes 2009-10-28T11:50:58Z 2009-10-28T11:50:58Z <p>You need to increase the original malloc to 3 to include the null terminator, and use strcpy to set the contents to "ab"</p> <pre><code>char *g = (char*) malloc (sizeof(char) * 3); strcpy(g , "ab"); </code></pre> http://stackoverflow.com/questions/626796/how-do-i-find-the-windows-common-application-data-folder-using-python 5 How do I find the Windows common application data folder using Python? David Sykes 2009-03-09T15:48:55Z 2009-10-28T04:50:45Z <p>I would like my application to store some data for access by all users. Using Python, how can I find where the data should go?</p> http://stackoverflow.com/questions/1552200/writing-an-os-for-motorola-68k-processor-can-i-emulate-it-and-can-i-test-drive/1553115#1553115 1 Answer by David Sykes for Writing an OS for Motorola 68K processor. Can I emulate it? And can I test-drive OS development? David Sykes 2009-10-12T07:06:58Z 2009-10-21T06:59:12Z <p>You certainly can tdd this project. First off decouple all accesses to the hardware with simple routine calls, e.g. getch() and printf, then you can provide simple mocks that provide test input and check output. You can then write well over 90% of the project on a PC using gcc, msdev or xcode. Once you have got some confidence in the decoupling routines you will need very little access to the hardware, and only then to occasionally check that your mocks are acting as you expect.</p> <p>Keep to C until you find a particular bottle neck, and only then resort to assembler.</p> http://stackoverflow.com/questions/1543157/how-can-i-find-out-how-much-memory-my-c-app-is-using-on-the-mac 0 How can I find out how much memory my c++ app is using on the Mac David Sykes 2009-10-09T11:05:57Z 2009-10-09T20:49:45Z <p>Certain operations in my app are using more memory than I think they should, and I would like to log the current memory usage to help identify which they are.</p> <p>Is there a system call that will return the amount of memory currently in use?</p> http://stackoverflow.com/questions/1543306/how-do-you-test-dependent-classes-that-cannot-be-unit-tested-together/1543627#1543627 0 Answer by David Sykes for How do you test dependent classes that cannot be unit tested together? David Sykes 2009-10-09T13:05:44Z 2009-10-09T13:05:44Z <p>It sounds to me like your objects are too tightly coupled, and could do with being separated. Could you be reusing Object in a way that makes things difficult to decouple, and perhaps need two separate objects?</p> http://stackoverflow.com/questions/1541876/java5-on-snow-leopard/1542190#1542190 3 Answer by David Sykes for Java5 on Snow Leopard David Sykes 2009-10-09T06:52:47Z 2009-10-09T06:52:47Z <p>Here is a link to <a href="http://wiki.oneswarm.org/index.php/OS%5FX%5F10.6%5FSnow%5FLeopard" rel="nofollow">downgrading Snow Leopard to Java 1.5</a></p> http://stackoverflow.com/questions/1491796/get-the-exit-code-for-python-program/1491864#1491864 1 Answer by David Sykes for get the exit code for python program David Sykes 2009-09-29T10:57:22Z 2009-09-29T10:57:22Z <p>If you want to use ERRORLEVEL (as opposed to %ERRORLEVEL%) to <a href="http://support.microsoft.com/kb/69576" rel="nofollow">check for a specific exit value</a> use</p> <pre><code>IF ERRORLEVEL &lt;N&gt; IF NOT ERRORLEVEL &lt;N+1&gt; &lt;COMMAND&gt; </code></pre> <p>For example </p> <pre><code>IF ERRORLEVEL 3 IF NOT ERRORLEVEL 4 GOTO LABEL </code></pre> http://stackoverflow.com/questions/17524/what-is-so-great-about-subversion/19588#19588 2 Answer by David Sykes for What is so great about subversion? David Sykes 2008-08-21T10:24:45Z 2009-09-23T06:51:55Z <p>"Many people can all edit the same file with lock/unlock on VSS so long as its not binary so I dont think this is a valid complaint with VSS."</p> <p>This confusion over whether two users can edit the same file <em>simultaneously</em> seems quite fundamental to me. When I used vss if one person checked out a file then nobody else could edit it until that person checks it back in again. This was a cause of endless frustration.</p> <p>Thankfully I no longer use vss, and the entire team can happily change anything they like whenever they like. The last merge conflict we had was some months ago. We use CVS, but we are evaluating Mercurial as the system we may move to</p> http://stackoverflow.com/questions/1438282/how-do-i-fork-a-new-process-and-get-back-its-pid-in-perl/1438859#1438859 1 Answer by David Sykes for How do I fork a new process and get back its PID in Perl? David Sykes 2009-09-17T13:22:22Z 2009-09-18T07:16:00Z <pre><code>my $pid = fork(); if ($pid == 0) { # We are the child. } elsif defined($pid) { # We are the parent of child with PID=pid } else { # The fork failed } </code></pre> http://stackoverflow.com/questions/1345425/how-to-access-digital-i-o-using-usb/1346810#1346810 0 Answer by David Sykes for How to access Digital I/O using USB David Sykes 2009-08-28T12:53:00Z 2009-08-28T12:53:00Z <p>I use the <a href="http://www.vellemanusa.com/us/enu/product/view/?id=500349" rel="nofollow">Velleman K8055 USB EXPERIMENT INTERFACE BOARD</a></p> <p>It is simple to program for, and has several inputs and outputs</p> <p>I got one from <a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=42857" rel="nofollow">Maplin</a> for less than £30</p> http://stackoverflow.com/questions/986006/python-how-do-i-pass-a-variable-by-reference 9 Python: How do I pass a variable by reference? David Sykes 2009-06-12T10:23:51Z 2009-08-28T05:23:49Z <p>The Python documentation seems unclear about whether parameters are passed by reference or value, and the following code produces the unchanged value 'Original'</p> <pre><code>class PassByReference: def __init__(self): self.variable = 'Original' self.Change(self.variable) print self.variable def Change(self, var): var = 'Changed' </code></pre> <p>Is there something I can do to pass the variable by actual reference?</p> <p><strong>Update:</strong></p> <p>I am coming to the conclusion that while Andrea answered my actual question (Can you... No but you can...), on the subject of pass by reference Blair Conrad is more technically correct.</p> <p>As I understand it the crux is that a copy of a reference is being passed. If you assign that copy, as in my example, then you lose the reference to the original and it remains unchanged. If, however, you 'use' that reference, for example append on a passed list, then the original is changed.</p> <p>I will see how the comments and votes go before choosing the answer people think is the best</p> http://stackoverflow.com/questions/1233128/using-awk-to-remove-unwanted-text-from-csv-file/1233200#1233200 2 Answer by David Sykes for Using awk to "remove" unwanted text from CSV file David Sykes 2009-08-05T13:16:18Z 2009-08-05T13:16:18Z <p>I don't know awk, but a sed version would be</p> <pre><code>sed "s/ Eastern Daylight Time//" file.csv </code></pre> http://stackoverflow.com/questions/1123083/what-to-program-when-you-have-a-day-without-your-normal-environment/1123815#1123815 0 Answer by David Sykes for What to program when you have a day without your normal environment? David Sykes 2009-07-14T06:45:18Z 2009-07-14T06:45:18Z <p>While I am programming I keep a list of the things I wish I could do when I am not programming. This list now requires its own book. This way when I have time when I am not programming it is not spent thinking of what I could do, rather trying to decide which of the million items on my list might be most productive</p> http://stackoverflow.com/questions/1090838/vss-alternatives-for-non-coders-to-share-excel-files-etc/1090887#1090887 2 Answer by David Sykes for VSS alternatives for non coders to share excel files etc? David Sykes 2009-07-07T07:45:27Z 2009-07-07T08:30:54Z <p>Do you need the vss locking facility where if one person has a file checked out then other people are prevented from editing the file?</p> <p>If you do then be aware that nearly all source control systems like cvs, svn, git etc. allow multiple users to edit the files, and merge the changes later, which will be a problem for Excel sheets</p> <p>If you don't then simple file sharing systems like <a href="http://docs.google.com" rel="nofollow">google docs</a> or <a href="http://www.getdropbox.com/" rel="nofollow">dropbox</a> might suit.</p> <p><strong>Update</strong></p> <p>The <a href="http://excel.tips.net/Pages/T002916%5FSharing%5FYour%5FWorkbook.html" rel="nofollow">Share Workbook option in the Tools menu</a> suggests a way of multiple users editing the same document</p> http://stackoverflow.com/questions/1067236/c-c-testing-framework-like-junit-for-java/1067691#1067691 0 Answer by David Sykes for C/C++ testing framework (like JUnit for java) David Sykes 2009-07-01T07:13:03Z 2009-07-01T07:13:03Z <p>Some people like <a href="http://aeryn.tigris.org/" rel="nofollow">Aeryn</a></p> http://stackoverflow.com/questions/1006602/rename-files-in-python/1006779#1006779 1 Answer by David Sykes for Rename files in Python. David Sykes 2009-06-17T12:44:12Z 2009-06-23T23:51:23Z <p>To get the XX if it's numbers is</p> <pre><code>re.search(r'\d+', ofname).group(0) </code></pre> http://stackoverflow.com/questions/1031705/python-service-restart-when-compiled-to-exe/1031756#1031756 0 Answer by David Sykes for python service restart (when compiled to exe) David Sykes 2009-06-23T10:30:10Z 2009-06-23T10:30:10Z <p>Try the answer to this question:</p> <p><a href="http://stackoverflow.com/questions/220382/how-can-a-windows-service-programmatically-restart-itself">http://stackoverflow.com/questions/220382/how-can-a-windows-service-programmatically-restart-itself</a></p> http://stackoverflow.com/questions/1011790/why-does-stdstring-findtext-stdstringnpos-not-return-npos 1 Why does std::string.find(text,std::string:npos) not return npos? David Sykes 2009-06-18T09:43:03Z 2009-06-18T14:12:11Z <p>I am doing a series of searches in a string, and somewhere along the line one of the strings will be missed, and my set of searches should fail.</p> <p>I had expected that once the position reached std::string::npos it would stay there, but it does not. Passing std::string::npos to std::string.find seems to start the search at the beginning again</p> <pre><code>std::string str("frederick"); std::string::size_type pos = str.find("der",std::string::npos); TS_ASSERT_EQUALS(pos, std::string::npos); // FAIL, 3 is returned </code></pre> <p>Why is it not being taken to indicate the end of the string?</p> <p>Update: The intention is search for a series of strings in order, and check the result at the end</p> <pre><code>pos = str.find(string1, pos) pos = str.find(string2, pos) pos = str.find(string3, pos) if (pos != std:string::npos) { // All strings found </code></pre> http://stackoverflow.com/questions/995424/xcode-test-automation-for-iphone/1000695#1000695 0 Answer by David Sykes for XCode Test Automation For IPhone David Sykes 2009-06-16T10:31:38Z 2009-06-16T10:31:38Z <p>Could you add a build phase to the target that runs a script to upload the binary to the iphone?</p> <p>Right click the target, Add->New Build Phase->New Run Script Build Phase</p> http://stackoverflow.com/questions/1872575/how-to-write-a-binary-algorithm-for-c-c/1872674#1872674 Comment by David Sykes on How to write a binary algorithm for C/C++ David Sykes 2009-12-09T13:42:47Z 2009-12-09T13:42:47Z This is not really a 'binary' search, though it will get there in the end http://stackoverflow.com/questions/1866073/applications-in-c-language Comment by David Sykes on Applications in C language! David Sykes 2009-12-08T10:36:39Z 2009-12-08T10:36:39Z One possible answer could be: Source Control - Subversion, Mercurial or Git http://stackoverflow.com/questions/1825692/can-python-send-text-to-the-mac-clipboard/1825723#1825723 Comment by David Sykes on Can python send text to the Mac clipboard David Sykes 2009-12-01T14:20:50Z 2009-12-01T14:20:50Z I never thought of using a command line tool. Perfect, thanks http://stackoverflow.com/questions/1673874/how-can-i-get-the-full-list-of-running-processes-on-a-mac-from-a-python-app/1673985#1673985 Comment by David Sykes on How can I get the full list of running processes on a Mac from a python app. David Sykes 2009-11-04T14:50:30Z 2009-11-04T14:50:30Z data = subprocess.Popen(['ps','aux'], stdout=subprocess.PIPE).stdout.readlines() works just as well http://stackoverflow.com/questions/1673874/how-can-i-get-the-full-list-of-running-processes-on-a-mac-from-a-python-app Comment by David Sykes on How can I get the full list of running processes on a Mac from a python app. David Sykes 2009-11-04T14:22:32Z 2009-11-04T14:22:32Z os.popen('ps aux') gives me the full list, os.popen('ps ea') gives me a minimal list, so I'm pretty sure I am http://stackoverflow.com/questions/1673874/how-can-i-get-the-full-list-of-running-processes-on-a-mac-from-a-python-app/1673985#1673985 Comment by David Sykes on How can I get the full list of running processes on a Mac from a python app. David Sykes 2009-11-04T14:18:57Z 2009-11-04T14:18:57Z and it does for me too! Thanks. http://stackoverflow.com/questions/1667042/how-to-convert-a-string-to-an-integer-in-asp-net Comment by David Sykes on How to convert a string to an integer in asp.net David Sykes 2009-11-03T15:34:17Z 2009-11-03T15:34:17Z Good question. I assumed c#, but for future searchers other languages might be helpful http://stackoverflow.com/questions/1643623/asp-net-how-to-get-a-button-to-affect-the-page-contents/1643645#1643645 Comment by David Sykes on asp.net: How to get a button to affect the page contents. David Sykes 2009-10-30T13:02:13Z 2009-10-30T13:02:13Z According to <a href="http://forums.asp.net/t/1129248.aspx" rel="nofollow">forums.asp.net/t/1129248.aspx</a> OnClick events dynamically added to ImageButtons will only fire if they are added during Page_Load http://stackoverflow.com/questions/1642703/how-to-get-boost-wdirectoryiterator-to-return-utf32-on-the-mac Comment by David Sykes on How to get boost wdirectory_iterator to return UTF32 on the Mac David Sykes 2009-10-30T09:52:45Z 2009-10-30T09:52:45Z Thanks for that Dirk http://stackoverflow.com/questions/1643623/asp-net-how-to-get-a-button-to-affect-the-page-contents/1643677#1643677 Comment by David Sykes on asp.net: How to get a button to affect the page contents. David Sykes 2009-10-30T07:45:56Z 2009-10-30T07:45:56Z All the values I set in Page_Load seem to be cleared on each page refresh, so it looks like I have to set them each and every time. http://stackoverflow.com/questions/1643623/asp-net-how-to-get-a-button-to-affect-the-page-contents/1643645#1643645 Comment by David Sykes on asp.net: How to get a button to affect the page contents. David Sykes 2009-10-30T07:39:49Z 2009-10-30T07:39:49Z I don't want to put everything into Page_Load, but I did want Page_Load to either react to the button press (which it can't if it is called first), or to leave the populating to the button routine, which IsPostBack allows me to do. Thanks http://stackoverflow.com/questions/1642703/how-to-get-boost-wdirectoryiterator-to-return-utf32-on-the-mac Comment by David Sykes on How to get boost wdirectory_iterator to return UTF32 on the Mac David Sykes 2009-10-29T10:39:02Z 2009-10-29T10:39:02Z But I am getting UTF-8 back, not 16 or 32, and all references I have found indicate the Mac wchar_t is UTF-32. Perhaps I will have to convert from UTF-8, but I'd like to be sure I'm not missing something more standard first. http://stackoverflow.com/questions/1543157/how-can-i-find-out-how-much-memory-my-c-app-is-using-on-the-mac/1545961#1545961 Comment by David Sykes on How can I find out how much memory my c++ app is using on the Mac David Sykes 2009-10-12T09:43:42Z 2009-10-12T09:43:42Z This looks very handy, thanks http://stackoverflow.com/questions/1543157/how-can-i-find-out-how-much-memory-my-c-app-is-using-on-the-mac/1543597#1543597 Comment by David Sykes on How can I find out how much memory my c++ app is using on the Mac David Sykes 2009-10-12T09:43:09Z 2009-10-12T09:43:09Z Instruments is certainly a remarkably useful program, thanks, but I don't always have access to the application http://stackoverflow.com/questions/1541876/java5-on-snow-leopard/1542190#1542190 Comment by David Sykes on Java5 on Snow Leopard David Sykes 2009-10-09T09:33:16Z 2009-10-09T09:33:16Z @Thilo Yes, we have done that successfully here.