User Ry - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T12:31:59Zhttp://stackoverflow.com/feeds/user/5453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1337109/how-do-i-drive-pagination-for-an-infragistics-grid-in-a-webpage-via-watin0How do I drive pagination for an infragistics grid in a webpage via watin?Ryhttp://stackoverflow.com/users/54532009-08-26T20:00:22Z2009-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><TD id=ctl00$mainContentPlaceHolder$DashboardTabContainer$Documents$DocumentsGrid_pager class="ig_8862b396_r0 DataGrid ig_8862b396_r16 DataGridPager" onclick="igtbl_onPagerClick('ctl00xmainContentPlaceHolderxDashboardTabContainerxDocumentsxDocumentsGrid',event)" align=right>
<SELECT onchange="javascript:igtbl_pageGrid(event,'ctl00xmainContentPlaceHolderxDashboardTabContainerxDocumentsxDocumentsGrid',(this.selectedIndex+1).toString())">
<OPTION selected>1
<OPTION>2
<OPTION>3
<OPTION>4
<OPTION>5
<OPTION>6
<OPTION>7</OPTION>
</SELECT>
</TD>
</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#13380580Answer by Ry for How do I drive pagination for an infragistics grid in a webpage via watin?Ryhttp://stackoverflow.com/users/54532009-08-26T23:04:59Z2009-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 > 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#13371701Answer by Ry for Is it possible to 'sandbox' IE in a windows form?Ryhttp://stackoverflow.com/users/54532009-08-26T20:10:27Z2009-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#12581960Answer by Ry for How did you get your first programming job?Ryhttp://stackoverflow.com/users/54532009-08-11T02:22:13Z2009-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#7369862Answer by Ry for What Easter Eggs have you placed in code?Ryhttp://stackoverflow.com/users/54532009-04-10T07:42:48Z2009-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#7121214Answer by Ry for Have you found it harder to hire in a down market?Ryhttp://stackoverflow.com/users/54532009-04-03T00:17:06Z2009-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#5632921Answer by Ry for Unobtrusive, realtime notifications of new RSS entries.Ryhttp://stackoverflow.com/users/54532009-02-18T23:12:09Z2009-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#5555770Answer by Ry for Program Terminates On File MoveRyhttp://stackoverflow.com/users/54532009-02-17T05:06:29Z2009-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#5518671Answer by Ry for Quick creation of fresh OS install for software testingRyhttp://stackoverflow.com/users/54532009-02-15T23:51:15Z2009-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-prompt0powershell script exits in "if" clause if run from command promptRyhttp://stackoverflow.com/users/54532009-02-04T01:43:53Z2009-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 - < first.ps1
powershell - < 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#5235800Answer by Ry for How do you transfer a directory with multiple sub-directories over ftp?Ryhttp://stackoverflow.com/users/54532009-02-07T10:27:57Z2009-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-this2Powershell causes a: to seek when it starts; how do I stop this?Ryhttp://stackoverflow.com/users/54532009-02-02T18:58:57Z2009-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> dir Env:\ | ?{$_.Value -like "A:\*"}
PS C:\fa2>
</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#5130029Answer by Ry for How do rsa key fobs work?Ryhttp://stackoverflow.com/users/54532009-02-04T19:56:14Z2009-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-practices3Credential storage best practicesRyhttp://stackoverflow.com/users/54532009-02-03T19:45:21Z2009-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-powershell2How to make an authenticated web request in Powershell?Ryhttp://stackoverflow.com/users/54532009-02-03T19:36:17Z2009-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#5090951Answer by Ry for CPU utilization by database?Ryhttp://stackoverflow.com/users/54532009-02-03T22:01:55Z2009-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#524891Answer by Ry for Continuous IntegrationRyhttp://stackoverflow.com/users/54532008-09-09T18:07:49Z2008-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#524861Answer by Ry for What are the (technical) pros and cons of Flash vs AJAX/JS?Ryhttp://stackoverflow.com/users/54532008-09-09T18:04:52Z2008-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-5Comment by Ry on IE 7 bug? - prompt save / open when downloading file - c# asp.net 3.5Ryhttp://stackoverflow.com/users/54532009-08-26T20:13:23Z2009-08-26T20:13:23ZMicrosoft 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-thisComment by Ry on Powershell causes a: to seek when it starts; how do I stop this?Ryhttp://stackoverflow.com/users/54532009-08-06T21:33:22Z2009-08-06T21:33:22Zthat machine did, yes. I've moved on, though, so I have no idea if this is still happening.http://stackoverflow.com/questions/796189/mips-questionComment by Ry on MIPS QUESTIONRyhttp://stackoverflow.com/users/54532009-04-28T04:17:04Z2009-04-28T04:17:04Zwhat is the question here? These are statements.http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/600178#600178Comment by Ry on How do rsa key fobs work?Ryhttp://stackoverflow.com/users/54532009-04-10T22:55:48Z2009-04-10T22:55:48Zyou 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#184670Comment by Ry on What is the best comment in source code you have ever encountered?Ryhttp://stackoverflow.com/users/54532009-04-04T18:09:52Z2009-04-04T18:09:52ZI read it as "there is a right way to do this, a wrong way to do this, and..." http://stackoverflow.com/questions/680298/what-is-the-best-dot-net-unit-test-framework-with-visual-studio-integrationComment by Ry on What is the best dot net unit test framework with visual studio integration?Ryhttp://stackoverflow.com/users/54532009-03-25T05:18:45Z2009-03-25T05:18:45Zplease 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-toComment by Ry on Delete dynamically generated PDF file immediately after it has been displayed to userRyhttp://stackoverflow.com/users/54532009-03-18T09:59:58Z2009-03-18T09:59:58ZYou 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 "good enough". 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#523580Comment by Ry on How do you transfer a directory with multiple sub-directories over ftp?Ryhttp://stackoverflow.com/users/54532009-02-07T16:32:21Z2009-02-07T16:32:21Zfeel 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#509901Comment by Ry on powershell script exits in "if" clause if run from command promptRyhttp://stackoverflow.com/users/54532009-02-05T22:59:21Z2009-02-05T22:59:21ZI 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-promptComment by Ry on powershell script exits in "if" clause if run from command promptRyhttp://stackoverflow.com/users/54532009-02-05T20:01:47Z2009-02-05T20:01:47Zyour edits are correct.http://stackoverflow.com/questions/512985/how-do-rsa-key-fobs-work/513002#513002Comment by Ry on How do rsa key fobs work?Ryhttp://stackoverflow.com/users/54532009-02-05T06:01:14Z2009-02-05T06:01:14Zstrange. I checked the "community wiki" option.http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this/507700#507700Comment by Ry on Powershell causes a: to seek when it starts; how do I stop this?Ryhttp://stackoverflow.com/users/54532009-02-05T05:58:23Z2009-02-05T05:58:23ZThis 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#514591Comment by Ry on powershell script exits in "if" clause if run from command promptRyhttp://stackoverflow.com/users/54532009-02-05T05:55:59Z2009-02-05T05:55:59ZI'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#513002Comment by Ry on How do rsa key fobs work?Ryhttp://stackoverflow.com/users/54532009-02-04T19:59:02Z2009-02-04T19:59:02ZI 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#513002Comment by Ry on How do rsa key fobs work?Ryhttp://stackoverflow.com/users/54532009-02-04T19:58:09Z2009-02-04T19:58:09Zthanks. I thought of that, then added a link; your comment beat me to the punch, though. :)