User Ry - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T12:31:59Z http://stackoverflow.com/feeds/user/5453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1337109/how-do-i-drive-pagination-for-an-infragistics-grid-in-a-webpage-via-watin 0 How do I drive pagination for an infragistics grid in a webpage via watin? Ry http://stackoverflow.com/users/5453 2009-08-26T20:00:22Z 2009-08-26T23:04:59Z <p>Using IE8's developer mode, I see that select lists are implemented using partial postbacks. Unfortunately, the select list itself doesn't appear addressable. It has no ID. Here is how it looks in IE8:</p> <pre><code>&lt;TD id=ctl00$mainContentPlaceHolder$DashboardTabContainer$Documents$DocumentsGrid_pager class="ig_8862b396_r0 DataGrid ig_8862b396_r16 DataGridPager" onclick="igtbl_onPagerClick('ctl00xmainContentPlaceHolderxDashboardTabContainerxDocumentsxDocumentsGrid',event)" align=right&gt; &lt;SELECT onchange="javascript:igtbl_pageGrid(event,'ctl00xmainContentPlaceHolderxDashboardTabContainerxDocumentsxDocumentsGrid',(this.selectedIndex+1).toString())"&gt; &lt;OPTION selected&gt;1 &lt;OPTION&gt;2 &lt;OPTION&gt;3 &lt;OPTION&gt;4 &lt;OPTION&gt;5 &lt;OPTION&gt;6 &lt;OPTION&gt;7&lt;/OPTION&gt; &lt;/SELECT&gt; &lt;/TD&gt; </code></pre> <p>How do I address the select list here? Alternatively, using WatiN from C# and nunit, how do I send pagination events to the grid?</p> http://stackoverflow.com/questions/1337109/how-do-i-drive-pagination-for-an-infragistics-grid-in-a-webpage-via-watin/1338058#1338058 0 Answer by Ry for How do I drive pagination for an infragistics grid in a webpage via watin? Ry http://stackoverflow.com/users/5453 2009-08-26T23:04:59Z 2009-08-26T23:04:59Z <p>One answer (by far the least favored) was to address them by position. That is to say:</p> <pre><code>if (Browser.SelectLists.Count &gt; 0) { Browser.SelectLists[0].Select(_rand.Next(1, Browser.SelectLists[0].Options.Count).ToString()); } </code></pre> <p>if anyone finds a way to do this by ID instead of position, let me know.</p> http://stackoverflow.com/questions/1335617/is-it-possible-to-sandbox-ie-in-a-windows-form/1337170#1337170 1 Answer by Ry for Is it possible to 'sandbox' IE in a windows form? Ry http://stackoverflow.com/users/5453 2009-08-26T20:10:27Z 2009-08-26T20:10:27Z <p>you don't mention your version; the behavior changed from IE7 to IE8.</p> <p>In IE7 and IE6, you can open multiple windows and authenticate with different userids on one site.</p> <p>In IE8, your session state is shared across browser sessions.</p> <p>You can open IE with privacy mode on; this should allow the session to be sandboxed.</p> http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job/1258196#1258196 0 Answer by Ry for How did you get your first programming job? Ry http://stackoverflow.com/users/5453 2009-08-11T02:22:13Z 2009-08-11T02:22:13Z <p>A political payoff to my dad. Me: 16 year old BASIC hacker. Job requirements: C, Unix, SQL experience. Alternatively, know someone that wants to score some points with your father. Learned a lot.</p> http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/736986#736986 2 Answer by Ry for What Easter Eggs have you placed in code? Ry http://stackoverflow.com/users/5453 2009-04-10T07:42:48Z 2009-04-10T07:42:48Z <p>When I worked on MapPoint, everyone on the team got to put in a POI (point of interest). It had to be not obvious and not navigable. I, of course, put one in.</p> http://stackoverflow.com/questions/712117/have-you-found-it-harder-to-hire-in-a-down-market/712121#712121 4 Answer by Ry for Have you found it harder to hire in a down market? Ry http://stackoverflow.com/users/5453 2009-04-03T00:17:06Z 2009-04-03T00:17:06Z <p>I'm looking, and it's hard to get interviews.</p> http://stackoverflow.com/questions/501043/unobtrusive-realtime-notifications-of-new-rss-entries/563292#563292 1 Answer by Ry for Unobtrusive, realtime notifications of new RSS entries. Ry http://stackoverflow.com/users/5453 2009-02-18T23:12:09Z 2009-02-18T23:12:09Z <p>you could use a tcp-style backoff to handle feed polling. The more often someone posts, the more often you poll.</p> <p>Google reader does this; the more I post on my blog, the faster each post shows up.</p> http://stackoverflow.com/questions/552301/program-terminates-on-file-move/555577#555577 0 Answer by Ry for Program Terminates On File Move Ry http://stackoverflow.com/users/5453 2009-02-17T05:06:29Z 2009-02-17T05:06:29Z <p>have you checked the event logs? Is there an anti-virus program messing with it? is it getting DAP'd?</p> http://stackoverflow.com/questions/551841/quick-creation-of-fresh-os-install-for-software-testing/551867#551867 1 Answer by Ry for Quick creation of fresh OS install for software testing Ry http://stackoverflow.com/users/5453 2009-02-15T23:51:15Z 2009-02-15T23:51:15Z <p><a href="http://clonezilla.org/" rel="nofollow">CloneZilla</a> is a great, free way to reimage machines.</p> http://stackoverflow.com/questions/509778/powershell-script-exits-in-if-clause-if-run-from-command-prompt 0 powershell script exits in "if" clause if run from command prompt Ry http://stackoverflow.com/users/5453 2009-02-04T01:43:53Z 2009-02-10T06:43:10Z <p>I am feeling surprised by the difference between two seemingly identical scripts. </p> <p>first.ps1:</p> <pre><code>"A" if ($true) { "B" } "C" </code></pre> <p>second.ps1:</p> <pre><code>"A" if ($true) { "B" } "C" </code></pre> <p>Now open a CMD window, and run these scripts like this:</p> <p><PRE> powershell - &lt; first.ps1 powershell - &lt; second.ps1 </PRE></p> <p>first produces: <PRE> A B C </PRE></p> <p>while second produces just <PRE> A </PRE></p> http://stackoverflow.com/questions/523572/how-do-you-transfer-a-directory-with-multiple-sub-directories-over-ftp/523580#523580 0 Answer by Ry for How do you transfer a directory with multiple sub-directories over ftp? Ry http://stackoverflow.com/users/5453 2009-02-07T10:27:57Z 2009-02-07T10:33:47Z <p>ftp -i turns off prompts. mget * gets all the files.</p> <pre> Microsoft Windows [Version 6.1.7000] Copyright (c) 2006 Microsoft Corporation. All rights reserved. C:\so>ftp -i **hostname** Connected to hostname. 220 Microsoft FTP Service User (hostname:(none)): **username** 331 Password required for username. Password: 230 User username logged in. ftp> **cd logs** 250 CWD command successful. ftp> **ls** 200 PORT command successful. 150 Opening ASCII mode data connection for file list. meetmap.com 226 Transfer complete. ftp: 115 bytes received in 0.01Seconds 11.50Kbytes/sec. ftp> mget * 200 Type set to A. 200 PORT command successful. 150 Opening ASCII mode data connection for meetmap.com/ex090131.log (5490 bytes). 226 Transfer complete. ... (bunch more files) ftp> **quit** 221 C:\so> </pre> http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this 2 Powershell causes a: to seek when it starts; how do I stop this? Ry http://stackoverflow.com/users/5453 2009-02-02T18:58:57Z 2009-02-05T04:29:12Z <p>I've written a powershell script that I've turned into a scheduled task. So far, so good. The issue I have is that every time Powershell is started, it causes my floppy drive to seek; this means every five minutes (on the task schedule), I get a little "grind" from the floppy drive.</p> <p>How do I disable this behavior?</p> <pre> C:\fa>powershell -noprofile Windows PowerShell Copyright (C) 2006 Microsoft Corporation. All rights reserved. PS C:\fa> exit C:\fa></pre> <p>When I do this test, I get a seek when I start <i>and</i> when I exit. I assume the error would go away if I had a floppy disk to put in the drive.</p> <p>As a poor work-around, I disabled the floppy drive in BIOS. I've removed the red herring about the drive not being available; this was because of another issue.</p> <p>The suggested way to find what, in my profile, points to A:, turned up nothing.</p> <pre><code>PS C:\fa2&gt; dir Env:\ | ?{$_.Value -like "A:\*"} PS C:\fa2&gt; </code></pre> <p>this was, of course, after I re-enabled the floppy drive in BIOS.</p> http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/513002#513002 9 Answer by Ry for How do rsa key fobs work? Ry http://stackoverflow.com/users/5453 2009-02-04T19:56:14Z 2009-02-04T19:56:14Z <p>The fob has a clock and a serial number that is used as a seed for a <a href="http://en.wikipedia.org/wiki/PRNG" rel="nofollow">PRNG</a>. When you hit the "show me a code" button, the fob displays a number that is the product of that timestamp and the serial number run through the PRNG. The server knows your fob's serial number and time, and does the same operation. If your codes match, you're authenticated.</p> <p>You can calculate the previous/next N values on the server end to account for clock skew.</p> http://stackoverflow.com/questions/508608/credential-storage-best-practices 3 Credential storage best practices Ry http://stackoverflow.com/users/5453 2009-02-03T19:45:21Z 2009-02-04T00:18:26Z <p>I'm writing a Windows service and need to make authenticated web requests. The service will not be running under the ownership of the credentials used to make the request; this implies that I need to store the credentials for the request in some way.</p> <p>What are the best practices here? The credentials will need to be stored in App.config (or an analog); I'd rather not have the password hanging out in plain text. As passwords change frequently, building or otherwise baking in the password to the binary is not an option.</p> <p>The same question applies for Powershell. I need to make authenticated requests, but I don't want the script to contain in a plain-text form the credentials used for the requests.</p> http://stackoverflow.com/questions/508565/how-to-make-an-authenticated-web-request-in-powershell 2 How to make an authenticated web request in Powershell? Ry http://stackoverflow.com/users/5453 2009-02-03T19:36:17Z 2009-02-03T23:10:40Z <p>In C#, I might do something like this:</p> <pre><code>System.Net.WebClient w = new System.Net.WebClient(); w.Credentials = new System.Net.NetworkCredential(username, auth, domain); string webpage = w.DownloadString(url); </code></pre> <p>Is there a Powershell version of this, or should I just call through to the <a href="http://stackoverflow.com/questions/340553/what-is-the-best-way-to-send-http-requests-from-windows-powershell">CLR</a>?</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/509095#509095 1 Answer by Ry for CPU utilization by database? Ry http://stackoverflow.com/users/5453 2009-02-03T22:01:55Z 2009-02-03T22:01:55Z <p>I think the answer to your question is no.</p> <p>The issue is that one activity on a machine can cause load on multiple databases. If I have a process that is reading from a config DB, logging to a logging DB, and moving transactions in and out of various DBs based on type, how do I partition the CPU usage?</p> <p>You could divide CPU utilization by the transaction load, but that is again a rough metric that may mislead you. How would you divide transaction log shipping from one DB to another, for instance? Is the CPU load in the reading or the writing?</p> <p>You're better off looking at the transaction rate for a machine and the CPU load it causes. You could also profile stored procedures and see if any of them are taking an inordinate amount of time; however, this won't get you the answer you want.</p> http://stackoverflow.com/questions/51925/continuous-integration/52489#52489 1 Answer by Ry for Continuous Integration Ry http://stackoverflow.com/users/5453 2008-09-09T18:07:49Z 2008-09-09T18:07:49Z <p>I'm yet unable to vote, so consider this another vote for cc.net.</p> http://stackoverflow.com/questions/52140/what-are-the-technical-pros-and-cons-of-flash-vs-ajax-js/52486#52486 1 Answer by Ry for What are the (technical) pros and cons of Flash vs AJAX/JS? Ry http://stackoverflow.com/users/5453 2008-09-09T18:04:52Z 2008-09-09T18:04:52Z <p>Flash, used well, allows easy localization and internationalization.</p> <p>Furthermore, it is much easier to use Flash in an accessible manner; you can feed screen readers the right text, instead of having them iterate over all of the possible form elements.</p> http://stackoverflow.com/questions/1272702/ie-7-bug-prompt-save-open-when-downloading-file-c-asp-net-3-5 Comment by Ry on IE 7 bug? - prompt save / open when downloading file - c# asp.net 3.5 Ry http://stackoverflow.com/users/5453 2009-08-26T20:13:23Z 2009-08-26T20:13:23Z Microsoft provides IE7, IE6, and IE8 VMs; you could see where the change happened. http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this Comment by Ry on Powershell causes a: to seek when it starts; how do I stop this? Ry http://stackoverflow.com/users/5453 2009-08-06T21:33:22Z 2009-08-06T21:33:22Z that machine did, yes. I've moved on, though, so I have no idea if this is still happening. http://stackoverflow.com/questions/796189/mips-question Comment by Ry on MIPS QUESTION Ry http://stackoverflow.com/users/5453 2009-04-28T04:17:04Z 2009-04-28T04:17:04Z what is the question here? These are statements. http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/600178#600178 Comment by Ry on How do rsa key fobs work? Ry http://stackoverflow.com/users/5453 2009-04-10T22:55:48Z 2009-04-10T22:55:48Z you should ask this in a stand-alone question. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184670#184670 Comment by Ry on What is the best comment in source code you have ever encountered? Ry http://stackoverflow.com/users/5453 2009-04-04T18:09:52Z 2009-04-04T18:09:52Z I read it as &quot;there is a right way to do this, a wrong way to do this, and...&quot; http://stackoverflow.com/questions/680298/what-is-the-best-dot-net-unit-test-framework-with-visual-studio-integration Comment by Ry on What is the best dot net unit test framework with visual studio integration? Ry http://stackoverflow.com/users/5453 2009-03-25T05:18:45Z 2009-03-25T05:18:45Z please define best. Cheapest? easiest to code in? fewest lines of code per test? http://stackoverflow.com/questions/657591/delete-dynamically-generated-pdf-file-immediately-after-it-has-been-displayed-to Comment by Ry on Delete dynamically generated PDF file immediately after it has been displayed to user Ry http://stackoverflow.com/users/5453 2009-03-18T09:59:58Z 2009-03-18T09:59:58Z You could check that a request for this uniquely named PDF file was served with a 200 code and reap it at that time; however, your initial solution sounds &quot;good enough&quot;. Could you advise why your current solution isn't working, so we can propose better solutions? http://stackoverflow.com/questions/523572/how-do-you-transfer-a-directory-with-multiple-sub-directories-over-ftp/523580#523580 Comment by Ry on How do you transfer a directory with multiple sub-directories over ftp? Ry http://stackoverflow.com/users/5453 2009-02-07T16:32:21Z 2009-02-07T16:32:21Z feel free to vote mark this as an accepted answer. http://stackoverflow.com/questions/509778/powershell-script-exits-in-if-clause-if-run-from-command-prompt/509901#509901 Comment by Ry on powershell script exits in "if" clause if run from command prompt Ry http://stackoverflow.com/users/5453 2009-02-05T22:59:21Z 2009-02-05T22:59:21Z I don't have that connection available. I emailed one of the powershell guys directly and he said he didn't think powershell supports input redirection in this way. http://stackoverflow.com/questions/509778/powershell-script-exits-in-if-clause-if-run-from-command-prompt Comment by Ry on powershell script exits in "if" clause if run from command prompt Ry http://stackoverflow.com/users/5453 2009-02-05T20:01:47Z 2009-02-05T20:01:47Z your edits are correct. http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/513002#513002 Comment by Ry on How do rsa key fobs work? Ry http://stackoverflow.com/users/5453 2009-02-05T06:01:14Z 2009-02-05T06:01:14Z strange. I checked the &quot;community wiki&quot; option. http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this/507700#507700 Comment by Ry on Powershell causes a: to seek when it starts; how do I stop this? Ry http://stackoverflow.com/users/5453 2009-02-05T05:58:23Z 2009-02-05T05:58:23Z This was a different issue; I've edited the OP to reflect that issue being a red herring. http://stackoverflow.com/questions/509778/powershell-script-exits-in-if-clause-if-run-from-command-prompt/514591#514591 Comment by Ry on powershell script exits in "if" clause if run from command prompt Ry http://stackoverflow.com/users/5453 2009-02-05T05:55:59Z 2009-02-05T05:55:59Z I'm not redirecting the output of the script. The script is being used as input to powershell. http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/513002#513002 Comment by Ry on How do rsa key fobs work? Ry http://stackoverflow.com/users/5453 2009-02-04T19:59:02Z 2009-02-04T19:59:02Z I turned it into a wiki - feel free to edit the answer directly to include your comments. http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/513002#513002 Comment by Ry on How do rsa key fobs work? Ry http://stackoverflow.com/users/5453 2009-02-04T19:58:09Z 2009-02-04T19:58:09Z thanks. I thought of that, then added a link; your comment beat me to the punch, though. :)