User Paul Hargreaves - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:19:28Z http://stackoverflow.com/feeds/user/5330 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/51435/windows-version-of-the-unix-touch-command 7 Windows version of the Unix touch command Paul Hargreaves 2008-09-09T09:08:54Z 2009-11-25T13:16:39Z <p>I'm looking for a Windows port of the UNIX touch command. I don't want to install an entire MKS toolkit just for the one tool. Is there a native port available somewhere or a command in Windows that does the same thing and supports features like all files in a directory by wildcard?</p> <p>Specifically I'm after changing mtime, ctime and atime for a project that reports ages of files based on... mtime, ctime and atime.</p> http://stackoverflow.com/questions/427306/block-without-spinning-in-java/427315#427315 2 Answer by Paul Hargreaves for Block without spinning in Java? Paul Hargreaves 2009-01-09T07:25:13Z 2009-01-09T07:25:13Z <p>I can answer part 1. They use the OS to handle it since each OS already has signalling and blocking built in as part of enabling multi-tasking.</p> <p>Usually, if you're having to implement your own spinning lock code then either you're using the wrong methods. Spinning also reduces any form of power management even with nice sleeps the code still has to wake up to do nothing.</p> http://stackoverflow.com/questions/56324/reset-screen-point-to-the-top-of-screen-in-windows-linux-console 2 Reset screen point to the top of screen in Windows & Linux console Paul Hargreaves 2008-09-11T11:39:15Z 2009-01-08T17:45:54Z <p>I have a little routine that's run under Linux and Windows written in C and displays output on the console. I'm not linking in any form of curses or anything like that.</p> <p>Currently I clear the screen using</p> <pre><code>#ifdef __WIN32 system( "cls" ); #else system( "clear" ); #endif </code></pre> <p>Then I have a bunch of printf statements to update the status. What I'd like just reset the screenpointer to 0,0 so I can then just overlay my printfs. I'd rather avoid compiling in any more extensions especially since I'm coding for 2 different OS'.</p> http://stackoverflow.com/questions/395189/are-mcts-certifications-worth-the-bother/395194#395194 0 Answer by Paul Hargreaves for Are MCTS certifications worth the bother? Paul Hargreaves 2008-12-27T17:36:23Z 2008-12-27T17:36:23Z <p>It's worth the bother if any of the following are true:</p> <ol> <li>You like to demonstrate that you can learn post schooling.</li> <li>Any jobs in the area you are looking for have a MCTS requirement.</li> <li>Someone else is paying... then it never hurts to have additional skills.</li> </ol> http://stackoverflow.com/questions/232168/why-does-apache-return-a-503-error-for-ants-get-task-but-not-for-my-browser/361051#361051 0 Answer by Paul Hargreaves for Why does Apache return a 503 error for ant's get task, but not for my browser? Paul Hargreaves 2008-12-11T21:34:58Z 2008-12-11T21:34:58Z <p>Looking at th</p> http://stackoverflow.com/questions/277290/is-it-worth-keeping-the-os-look-and-feel/277314#277314 1 Answer by Paul Hargreaves for is it worth keeping the OS look and feel ? Paul Hargreaves 2008-11-10T07:51:22Z 2008-11-10T07:51:22Z <p>Yes, if only because it enables the OS to use any accessability features that are built in like text-to-speech. There is nothing more annoying for someone who needs accessability features to have yet another UI that breaks all the tools they are used to.</p> http://stackoverflow.com/questions/59483/confused-by-gdb-print-ptr-vs-print-s 1 Confused by gdb print ptr vs print "%s" Paul Hargreaves 2008-09-12T16:46:41Z 2008-11-06T07:50:03Z <pre><code>1167 ptr = (void*)getcwd(cwd, MAX_PATH_LENGTH-1); (gdb) n 1168 if (!ptr) { (gdb) print ptr $1 = 0xbff2d96c "/media/MMC-SD/partition1/aaaaaaaaaaa" (gdb) print &amp;cwd $2 = (char (*)[3500]) 0xbff2d96c (gdb) print strlen(cwd) $3 = 36 (gdb) print "%s",cwd $4 = "/media/MMC-SD/partition1/aaaaaaaaaaa", '\0' &lt;repeats 912 times&gt;, "��O�001\000\000\000\000��027\000\000\000�3����EL鷠3�000��027\000\000\000\000\000\000\000\027\000\000\000\000��/�027\000\000\000�3����N����\230���鷠3�000��027\000\000\000\000\000\000\000��000\000\000\000\001\000\000\000��M鷠3����\000\000\000\000.\231�027��w\005\b\001\000"... (gdb) print "%s", ptr $5 = 0xbff2d96c "/media/MMC-SD/partition1/aaaaaaaaaaa" (gdb) Quit </code></pre> <p>Why is ptr printing the string correctly but cwd not; this also affects the program and it crashes if I try to use the cwd...</p> <p>[edit: turns out that crash was caused by a stupid buffer overflow on this var... grr...not gdb, but the print question was still valid]</p> http://stackoverflow.com/questions/225291/git-upload-pack-command-not-found-how-to-fix-this-correctly/233048#233048 2 Answer by Paul Hargreaves for git-upload-pack: command not found, how to fix this correctly Paul Hargreaves 2008-10-24T10:44:54Z 2008-10-24T10:44:54Z <p>I had the same problem with a Windows client connecting to an old FedoraCore 4 system. The solution pointed me in the right direction but changing .bash_profile etc didn't help as they aren't being ran by default by ssh.</p> <p>The solution was here: <a href="http://kerneltrap.org/mailarchive/git/2008/6/18/2159464" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/181585/rpceservercallretrylater-during-powershell-automation 1 RPC_E_SERVERCALL_RETRYLATER during powershell automation Paul Hargreaves 2008-10-08T06:48:03Z 2008-10-19T22:39:51Z <p>I'm using PowersHell to automate iTunes but find the error handling / waiting for com objects handling to be less than optimal.</p> <p>Example code</p> <pre><code>#Cause an RPC error $iTunes = New-Object -ComObject iTunes.Application $LibrarySource = $iTunes.LibrarySource # Get "playlist" objects for main sections foreach ($PList in $LibrarySource.Playlists) { if($Plist.name -eq "Library") { $Library = $Plist } } do { write-host -ForegroundColor Green "Running a loop" foreach ($Track in $Library.Tracks) { foreach ($FoundTrack in $Library.search("$Track.name", 5)) { # do nothing... we don't care... write-host "." -nonewline } } } while(1) #END </code></pre> <p>Go into itunes and do something that makes it pop up a message - in my case I go into the Party Shuffle and I get a banner "Party shuffle automatically blah blah...." with a "Do not display" message.</p> <p>At this point if running the script will do this repeatedly:</p> <pre><code>+ foreach ($FoundTrack in $Library.search( &lt;&lt;&lt;&lt; "$Track.name", 5)) { Exception calling "Search" with "2" argument(s): "The message filter indicated that the application is busy. (Exception from HRESULT: 0x8001010A (RPC_E_SERVER CALL_RETRYLATER))" At C:\Documents and Settings\Me\My Documents\example.ps1:17 char:45 + foreach ($FoundTrack in $Library.search( &lt;&lt;&lt;&lt; "$Track.name", 5)) { Exception calling "Search" with "2" argument(s): "The message filter indicated that the application is busy. (Exception from HRESULT: 0x8001010A (RPC_E_SERVER CALL_RETRYLATER))" At C:\Documents and Settings\Me\My Documents\example.ps1:17 char:45 </code></pre> <p>If you waited until you you had a dialog box before running the example then instead you'll get this repeatedly:</p> <pre><code>Running a loop You cannot call a method on a null-valued expression. At C:\Documents and Settings\Me\example.ps1:17 char:45 + foreach ($FoundTrack in $Library.search( &lt;&lt;&lt;&lt; "$Track.name", 5)) { </code></pre> <p>That'll be because the $Library handle is invalid.</p> <p>If my example was doing something important - like converting tracks and then deleting the old ones, not handling the error correctly could be fatal to tracks in itunes. I want to harden up the code so that it handles iTunes being busy and will silently retry until it has success. Any suggestions?</p> http://stackoverflow.com/questions/137219/automatically-mounting-ntfs-partition-on-freebsd-at-boot-time/138049#138049 0 Answer by Paul Hargreaves for Automatically mounting NTFS partition on FreeBSD at boot time Paul Hargreaves 2008-09-26T06:36:23Z 2008-09-26T06:36:23Z <p>What level was your script running at? Was it a S99, or lower?</p> <p>It sounds like either there is a dependency that isn't loaded at the time you mount, or that the user who is trying to mount using the script isn't able to succeed.</p> <p>In your script I suggest adding a sudo to make sure that the mount is being performed by root:</p> <pre><code>/sbin/sudo /sbin/mount ntfs-3g /dev/ad1s1 /home/admin/data -o uid=1002, etc </code></pre> <p>Swap the sbin for wherever the binaries are.</p> http://stackoverflow.com/questions/93642/how-do-download-accelerators-work/93693#93693 0 Answer by Paul Hargreaves for How do download accelerators work? Paul Hargreaves 2008-09-18T15:40:17Z 2008-09-18T15:40:17Z <p>It's all about <a href="http://en.wikipedia.org/wiki/Little%27s_law" rel="nofollow">Little's Law</a>. Specifically each stream to the web server is seeing a certain amount of TCP latency and so will only carry so much data. Tricks like increasing the TCP window size and implementing selective acks help but are poorly implemented and generally cause more problems than they solve.</p> <p>Having multiple streams means that the latency seen by each stream is less important as the global throughput increases overall.</p> <p>Another key advantage with a download accelerator even when using a single thread is that it's generally better than using the web browsers built in download tool. For example if the web browser decides to die the download tool will continue. And the download tool may support functionality like pausing/resuming that the built-in brower doesn't.</p> http://stackoverflow.com/questions/92811/reverse-engineering-for-database-diagramming-in-visio-with-sql-server-2008/93547#93547 5 Answer by Paul Hargreaves for Reverse Engineering for Database Diagramming in Visio with SQL Server 2008 Paul Hargreaves 2008-09-18T15:24:23Z 2008-09-18T15:24:23Z <p>From <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3825120&amp;SiteID=17" rel="nofollow">Microsoft support</a> via the Microsoft forums:</p> <blockquote> <p>Further investigation reveals that this is expected behavior for Visio 2007. When Visio opens a connection using the Visio SQL Server Driver it checks the server version and since SQL Server 2008 shipped after Visio 2007 it doesn't recognise SQL Server 2008 as a supported version and closes the connection. You can wait for a future version of Visio to ship which does recognise SQL Server 2008 or use the Visio Generic ODBC driver which can successfully open connections to SQL Server 2008. A third option is to use a copy of SQL Server 2005 for initial reverse engineering. The Visio team is aware of this issue.</p> </blockquote> http://stackoverflow.com/questions/56324/reset-screen-point-to-the-top-of-screen-in-windows-linux-console/56335#56335 0 Answer by Paul Hargreaves for Reset screen point to the top of screen in Windows & Linux console Paul Hargreaves 2008-09-11T11:43:21Z 2008-09-17T09:18:15Z <p>Looks like I may have found a windows specific way of doing it <a href="http://msdn.microsoft.com/en-us/library/ms686025(VS.85).aspx" rel="nofollow">SetConsoleCursorPosition</a></p> <p>Ansi escape sequence \033[0;0H for Linux - just printf that to the console.</p> http://stackoverflow.com/questions/80612/best-practises-for-holding-passwords-in-shell-perl-scripts/80647#80647 1 Answer by Paul Hargreaves for Best practises for holding passwords in shell / Perl scripts? Paul Hargreaves 2008-09-17T06:57:09Z 2008-09-17T06:57:09Z <p>Since you've tagged ksh &amp; bash I'm going to assume Linux.</p> <p>Most of the problem is that if the user can read the script and locate the method you used to hide / encrypt the file then they will also be able to do the same thing manually.</p> <p>A better way may be do the following:</p> <ol> <li>Make your script so it can only be seen/read/opened by you. chmod 700 it. Hardcode passwords away.</li> <li>Have a "launcher" script that is executable by the user and does a sudo .</li> </ol> <p>This way the user can see your launcher script, examine it to see it only has the single command line. They can run it and it works, but they don't have permissions to read the source for the script that is sudo'd.</p> http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c 6 Checking available stack size in C Paul Hargreaves 2008-09-10T11:53:16Z 2008-09-12T17:34:02Z <p>I'm using MinGW with GCC 3.4.5 (mingw-special vista r3).</p> <p>My C application uses a lot of stack so I was wondering is there any way I can tell programatically how much stack is remaining so I can cleanly handle the situation if I find that I'm about to run out.</p> <p>If not what other ways would you work around the problem of potentially running out of stack space?</p> <p>I've no idea what size of stack I'll start with so would need to identify that programatically also.</p> http://stackoverflow.com/questions/52286/itunes-warning-message-on-quit-due-to-scripting 2 iTunes warning message on quit due to scripting Paul Hargreaves 2008-09-09T16:27:56Z 2008-09-10T13:28:02Z <p>Wrote the following in PowersHell as a quick iTunes demonstration:</p> <pre><code>$iTunes = New-Object -ComObject iTunes.Application $LibrarySource = $iTunes.LibrarySource foreach ($PList in $LibrarySource.Playlists) { write-host $PList.name } </code></pre> <p>This works well and pulls back a list of playlist names. However on trying to close iTunes a warning appears</p> <blockquote> <p><strong>One or more applications are using the iTunes scripting interface. Are you sure you want to quit?</strong></p> </blockquote> <p>Obviously I can just ignore the message and press [Quit] or just wait the 20 seconds or so, but is there a clean way to tell iTunes that I've finished working with it?</p> <p>Itunes 7.7.1, Windows XP</p> http://stackoverflow.com/questions/52239/oracle-lost-sysdba-password/52244#52244 12 Answer by Paul Hargreaves for Oracle lost sysdba password Paul Hargreaves 2008-09-09T16:05:00Z 2008-09-09T16:05:00Z <p>Have you tried logging into Linux as your installed Oracle user then</p> <pre><code>sqlplus "/ as sysdba" </code></pre> <p>When you log in you'll be able to change your password.</p> <pre><code>alter user sys identified by &lt;new password&gt;; </code></pre> <p>Good luck :)</p> http://stackoverflow.com/questions/51528/saving-emails/51541#51541 2 Answer by Paul Hargreaves for Saving emails Paul Hargreaves 2008-09-09T10:28:50Z 2008-09-09T10:28:50Z <p>Lots of assumptions: 1. You're running windows / would like an archive in windows 2. The ability to search in the mails is important.</p> <p>Since you are sending mails to your customers there isn't any reason you can't bcc a mail account of your own. Assuming you have a suitable account on your own server then I'd look at using <a href="http://www.mailstore.com/en/mailstore-home.aspx" rel="nofollow">MailStore (home)</a> to pull the mails out from your account and put them into it's own compressed database.</p> http://stackoverflow.com/questions/2844/how-do-you-printf-an-unsigned-long-long-int/51366#51366 1 Answer by Paul Hargreaves for How do you printf an unsigned long long int? Paul Hargreaves 2008-09-09T07:54:37Z 2008-09-09T09:19:53Z <p>That is because %llu doesn't work properly under Windows and %d can't handle 64 bit integers. I suggest using PRIu64 instead and you'll find it's portable to Linux as well.</p> <p>Try this instead:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;inttypes.h&gt; int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %"PRIu64". A normal number is %d.\n", sizeof(num), num, normalInt); return 0; } </code></pre> <p>Output</p> <pre><code>My number is 8 bytes wide and its value is 285212672. A normal number is 5. </code></pre> http://stackoverflow.com/questions/454089/why-is-resolver-one-so-slow Comment by Paul Hargreaves on Why is Resolver One so slow? Paul Hargreaves 2009-01-17T22:18:46Z 2009-01-17T22:18:46Z The sun is hot because of a fusion process that is converting the hydrogen in the sun to helium. Why Resolver One is a sheet program is undisputed but isn't solvable by us. http://stackoverflow.com/questions/50094/age-distribution-of-stackoverflow-users/50325#50325 Comment by Paul Hargreaves on Age Distribution of StackOverflow Users Paul Hargreaves 2008-10-30T15:13:48Z 2008-10-30T15:13:48Z USA != the rest of the world. I realise the &quot;service&quot; is being supplied in America, but even so... And at 8 I was happily taking apart BASIC programs on the Dragon 32, so if there had been an interweb I'd have been on it... http://stackoverflow.com/questions/250425/should-i-edit-a-question-or-answer-with-offensive-content/250486#250486 Comment by Paul Hargreaves on Should I edit a question or answer with offensive content? Paul Hargreaves 2008-10-30T15:05:08Z 2008-10-30T15:05:08Z If only there was a &quot;view history&quot;... http://stackoverflow.com/questions/231098/loop-from-0x0000-to-0xffff/231188#231188 Comment by Paul Hargreaves on Loop from 0x0000 to 0xFFFF Paul Hargreaves 2008-10-23T20:36:29Z 2008-10-23T20:36:29Z I prefer this answer. Much more fun! http://stackoverflow.com/questions/181585/rpceservercallretrylater-during-powershell-automation/182176#182176 Comment by Paul Hargreaves on RPC_E_SERVERCALL_RETRYLATER during powershell automation Paul Hargreaves 2008-10-10T07:11:27Z 2008-10-10T07:11:27Z Unfortunately it's not going to be as simple as just sleeping since my real script performs lots of nested actions based on the object results. I suppose I could put everything into functions of their own and wrap traps around them but... urgh... was hoping for a simple way of making foreach work. http://stackoverflow.com/questions/181585/rpceservercallretrylater-during-powershell-automation/188403#188403 Comment by Paul Hargreaves on RPC_E_SERVERCALL_RETRYLATER during powershell automation Paul Hargreaves 2008-10-10T06:58:42Z 2008-10-10T06:58:42Z Unfortunately -strict didn't help and $track.name is null because $library.tracks is could have been null. Thanks. http://stackoverflow.com/questions/80612/best-practises-for-holding-passwords-in-shell-perl-scripts/80652#80652 Comment by Paul Hargreaves on Best practises for holding passwords in shell / Perl scripts? Paul Hargreaves 2008-09-17T09:04:38Z 2008-09-17T09:04:38Z Here is a great reference for why suid is generally not advised. <a href="http://www.samag.com/documents/s=1149/sam0106a/0106a.htm" rel="nofollow">samag.com/documents/s=1149/&hellip;</a> http://stackoverflow.com/questions/80612/best-practises-for-holding-passwords-in-shell-perl-scripts/80647#80647 Comment by Paul Hargreaves on Best practises for holding passwords in shell / Perl scripts? Paul Hargreaves 2008-09-17T07:17:58Z 2008-09-17T07:17:58Z Most crons won't work if you put the sudo into it directly - e.g. a crontab with &quot;0 0 0 0 0 sodo myjob.sh&quot; It would work fine in a cron job because the cron job is just calling the launcher script and the launcher script is going to run sudo. http://stackoverflow.com/questions/80601/scanf-and-cin-statements-skipped-when-using-gcc Comment by Paul Hargreaves on scanf() (and cin) statements skipped when using gcc. Paul Hargreaves 2008-09-17T06:48:38Z 2008-09-17T06:48:38Z Add a quick example with it failing? http://stackoverflow.com/questions/80550/ms-crm4-0-provisioning-issue-using-crmdeploymentservice Comment by Paul Hargreaves on MS CRM4.0 Provisioning Issue using CrmDeploymentService Paul Hargreaves 2008-09-17T06:47:57Z 2008-09-17T06:47:57Z Ask a programming question? http://stackoverflow.com/questions/65585/is-there-a-tool-for-finding-unreferenced-functions-dead-obsolete-code-in-a-c Comment by Paul Hargreaves on Is there a tool for finding unreferenced functions (dead, obsolete code) in a C# app? Paul Hargreaves 2008-09-15T18:47:03Z 2008-09-15T18:47:03Z Is there one for standard C? http://stackoverflow.com/questions/52286/itunes-warning-message-on-quit-due-to-scripting/52309#52309 Comment by Paul Hargreaves on iTunes warning message on quit due to scripting Paul Hargreaves 2008-09-10T13:28:23Z 2008-09-10T13:28:23Z Also with the powershell &lt;script&gt; method the ::releaseobject calls doesn't seem to be needed. http://stackoverflow.com/questions/52286/itunes-warning-message-on-quit-due-to-scripting/54003#54003 Comment by Paul Hargreaves on iTunes warning message on quit due to scripting Paul Hargreaves 2008-09-10T13:27:01Z 2008-09-10T13:27:01Z $itunes.quit() unfortunately would close itunes, not always something I'd want to do. The powershell &lt;script&gt; by bruceatk worked for me though so thanks for replying. http://stackoverflow.com/questions/52286/itunes-warning-message-on-quit-due-to-scripting/52309#52309 Comment by Paul Hargreaves on iTunes warning message on quit due to scripting Paul Hargreaves 2008-09-10T13:26:15Z 2008-09-10T13:26:15Z Aha! powershell &lt;script&gt; did the trick! The mind boggles... http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/53900#53900 Comment by Paul Hargreaves on Checking available stack size in C Paul Hargreaves 2008-09-10T12:57:50Z 2008-09-10T12:57:50Z A (not great) example would be: void subroutine(int i) { char foo[20000]; i++; if (i &lt; 1000) subroutine(i); }