User yetapb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:03:36Z http://stackoverflow.com/feeds/user/9796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837582/how-to-write-to-read-from-network-card-in-x86-assembly/1837615#1837615 0 Answer by yetapb for How to write to & read from network card in x86 assembly? yetapb 2009-12-03T04:20:34Z 2009-12-03T04:20:34Z <p>You will need to write to specific port addresses. This Wiki page might get you started.<br> <a href="http://en.wikipedia.org/wiki/Memory-mapped%5FI/O" rel="nofollow">MemoryMappedIO</a></p> http://stackoverflow.com/questions/1837480/string-matching-problem-can-i-prioritize/1837569#1837569 0 Answer by yetapb for String matching problem (can I prioritize?) yetapb 2009-12-03T04:08:06Z 2009-12-03T04:08:06Z <p>You need to apply some of the grammar disambiguation techniques that you are either learning (if this is homework). Generally speaking you add an additional rule that disambiguates the grammar. <br><br>Another antlr specific thing you can do is add an action to the rule that will handle the differences.<br><br>I might be able to help more if you post the antlr code in question.</p> http://stackoverflow.com/questions/1837095/how-to-make-sure-what-i-commit-does-not-contain-whitespace-error/1837119#1837119 1 Answer by yetapb for How to make sure what I commit does not contain whitespace error yetapb 2009-12-03T01:35:09Z 2009-12-03T01:35:09Z <p>try this</p> <pre><code>git config —global apply.whitespace nowarn </code></pre> http://stackoverflow.com/questions/1837090/how-to-use-a-foreach-loop-but-do-something-different-on-the-last-iteration/1837110#1837110 6 Answer by yetapb for How to use a foreach loop, but do something different on the last iteration? yetapb 2009-12-03T01:32:38Z 2009-12-03T01:32:38Z <pre><code>$array = array('joe', 'bob', 'Foobar'); $comma_separated = join(",", $array); </code></pre> <p>output: <br><br><code>joe,bob,Foobar</code></p> http://stackoverflow.com/questions/1836467/is-there-a-performance-gain-in-using-single-quotes-vs-double-quotes-in-ruby/1837091#1837091 0 Answer by yetapb for Is there a performance gain in using single quotes vs double quotes in ruby? yetapb 2009-12-03T01:28:08Z 2009-12-03T01:28:08Z <p>It's certainly possible depending on the implementation, but the scanning portion of the interpreter should only look at each character once. It will need just an additional state (or possible set of states) and transitions to handle #{} blocks. <br><br>In a table based scanner thats going to be a single lookup to determine transition, and will be happening for each character anyways.<br><br>When the parser gets the scanner output, it's already known that it will have to eval code in the block. So the overhead is only really the memory overhead in the scanner/parser to handle the #{} block, which you pay for either way.<br><br> Unless I'm missing something (or misremembering compiler construction details), which is also certainly possible :)</p> http://stackoverflow.com/questions/1834396/proving-sql-injection/1834455#1834455 0 Answer by yetapb for Proving SQL Injection yetapb 2009-12-02T17:21:40Z 2009-12-02T17:21:40Z <p>I think your problem is that <code>Chr(8)</code> is not executed, you need to find another way to get the leading quote mark in.</p> http://stackoverflow.com/questions/1834337/c-books-that-cover-real-world-uses/1834386#1834386 1 Answer by yetapb for C# books that cover 'real world' uses yetapb 2009-12-02T17:11:15Z 2009-12-02T17:11:15Z <p>It would be hard for a book to cover real world practices because they are diverse. The best way is to learn as much as you can about the technology you work in (.net or otherwise). Then, when something comes up in the real world, you will think "Oh, that sounds like a job for [insert concept here]"<br><br>If you have a non-.net book that you would like a .net equivalent to, add it to your question and I will see if I can think of something similar.</p> http://stackoverflow.com/questions/1834194/how-to-set-up-a-load-stress-test-for-a-web-site/1834248#1834248 1 Answer by yetapb for How to set up a load/stress test for a web site? yetapb 2009-12-02T16:50:13Z 2009-12-02T16:50:13Z <p>Generally speaking load tests will run through common scenarios with various user loads. <br><br>So for example, you might set up a test wherein 50 users login every second for 10 minutes and another where the number starts at 5 users/second and scales up to 1000 / second or whatever numbers make sense for your your site.<br><br><b>edit:</b><br>The idea is to test how your actual application behaves when in use across all tiers.<br>If you are going to be load testing, definitely invest (time and or $) in a good tool.</p> http://stackoverflow.com/questions/1829835/traverse-a-binary-search-tree/1829878#1829878 0 Answer by yetapb for traverse a Binary search tree yetapb 2009-12-02T00:16:31Z 2009-12-02T00:36:40Z <p>Here is some psuedo code of a preorder that may help.</p> <pre><code>void Preorder( out, int parent ) { out &lt;&lt; items[parent]; left = parent * 2 + 1; right = parent * 2 + 2; if( left&gt; -1 ) Preorder( out, left ); if( right &gt; -1 ) Preorder( out, right ); } </code></pre> http://stackoverflow.com/questions/1827648/literal-content-is-not-allowed-within-a-usercontrol/1827731#1827731 1 Answer by yetapb for Literal content is not allowed within a UserControl yetapb 2009-12-01T17:35:06Z 2009-12-01T17:35:06Z <p>Have a property on your user control called <code>Text</code>, and set that like</p> <pre><code>&lt;uc:My id="my" Text="some text" runat="server"&gt;Text&lt;/uc:My&gt; </code></pre> <p>or server side </p> <pre><code>my.Text = "some text"; </code></pre> http://stackoverflow.com/questions/1823129/how-do-you-sum-values-inside-a-for-loop-in-matlab/1823158#1823158 -1 Answer by yetapb for How do you sum values inside a for loop in Matlab? yetapb 2009-11-30T23:36:02Z 2009-11-30T23:36:02Z <p>It has been awhile since I wrote any matlab code, but it looks like you are summing a scalar value, which will just be the scalar value itself. Try something along the lines of</p> <pre><code>pki = [7.7,3.9]; t= 2; n=55; for i = 1:t; acidic(i) = log10(1/((n-1)*(10^-pki(i)))); end sum(acidic) </code></pre> http://stackoverflow.com/questions/1822766/clicking-checkbox-to-expand-div-doesnt-work-in-ie7/1822796#1822796 2 Answer by yetapb for Clicking checkbox to expand div, doesn't work in IE7 yetapb 2009-11-30T22:18:08Z 2009-11-30T22:18:08Z <p>IIRC, IE onchange events for checkboxes behave oddly (compared to other browsers) and I solved it by using the click event insted.</p> <p>(update: I'm too slow)</p> <p>edit: you can simplify your code a bit too if you want...</p> <pre><code>for( var i = 1; i &lt; 3; ++i ){ $('.product-optional-toggle' + i).css({ display: 'none'}); // toggle divs when checkbox is checked $('.product-optional-checkbox' + i).change(function () { if($(this).attr("checked") === "true") { $('.product-optional-toggle' + i).toggle('fast'); return; } $('.product-optional-toggle' + i).toggle('fast'); }); } </code></pre> http://stackoverflow.com/questions/1820980/stop-your-code-injecting-javascript-twice/1821014#1821014 0 Answer by yetapb for Stop your code injecting javascript twice? yetapb 2009-11-30T16:55:22Z 2009-11-30T16:55:22Z <p>If your server side technology is asp.net, you can make the call in the page load event and wrap it in a <code>!Page.IsPostback</code> block. I would guess many(most) server side technologies have something similar.</p> http://stackoverflow.com/questions/1792520/slightly-weird-imo-c-code 5 slightly weird (imo) C++ code yetapb 2009-11-24T19:54:50Z 2009-11-26T11:13:29Z <p>Sorry if this is simple, my C++ is rusty.</p> <p>What is this doing? There is no assignment or function call as far as I can see. This code pattern is repeated many times in some code I inherited. If it matters it's embedded code.</p> <pre><code>*(volatile UINT16 *)&amp;someVar-&gt;something; </code></pre> <p>edit: continuing from there, does the following additional code confirm Heaths suspicions? (exactly from code, including the repetition, except the names have been changed to protect the innocent)</p> <pre><code>if (!WaitForNotBusy(50)) return ERROR_CODE_X; *(volatile UINT16 *)&amp; someVar-&gt;something; if (!WaitForNotBusy(50)) return ERROR_CODE_X; *(volatile UINT16 *)&amp; someVar-&gt;something; x = SomeData; </code></pre> http://stackoverflow.com/questions/1800554/chopping-doubles-in-c/1800682#1800682 1 Answer by yetapb for Chopping Doubles in C# yetapb 2009-11-25T23:33:18Z 2009-11-25T23:33:18Z <pre><code>double oldDouble = 5.555555; double d = (int)oldDouble; Console.Out.WriteLine(d); // prints 5 </code></pre> <p>Is that what you meant?</p> http://stackoverflow.com/questions/1798412/storing-xml-from-a-web-service-in-c/1799823#1799823 0 Answer by yetapb for Storing XML from a web service in C# yetapb 2009-11-25T20:42:09Z 2009-11-25T20:42:09Z <p>You should be able to do something along the lines of</p> <pre><code>Response response = _webService.ProcessCard( sVariable1, sVariable2 ); DoSomethingToResult( response.Result ); </code></pre> http://stackoverflow.com/questions/1797576/c-file-upload-read-to-memory-and-use-as-text-file-is-there-a-better-way/1799790#1799790 1 Answer by yetapb for C# File Upload read to memory and use as text file - is there a better way? yetapb 2009-11-25T20:38:07Z 2009-11-25T20:38:07Z <p>Other than the suggestions from MandoMando, there isn't much. I'm assuming it is prototype code (based on the name of the method) or I would say the file handling stuff should be wrapped in a class to encapsulate the format, and isolate changes to it.</p> <p>Implementing the suggestion of removing the \r is simple enough.</p> <pre><code>string[] lines = inFileString.Replace( '\r', '\n' ).Split( new[]{'\n'}, StringSplitOptions.RemoveEmptyEntries ); </code></pre> <p>For cleaning up the extra calls to the regex functions, you could do it like so. I don't have 2008/10 at work to test these, but they should work.</p> <pre><code>var records = from line in lines select line.Split( ' ', StringSplitOptions.RemoveEmptyEntries ); var readings = from record in records select new { Row = curRow++, SurveyDate = inSurveyDate, ItemNumber = record[0], Northing = record[1], Easting = record[2], Elevation = record[3], Name = record[4] }; </code></pre> http://stackoverflow.com/questions/1793425/prevent-child-tables-from-being-populated-in-a-linq-query/1793501#1793501 1 Answer by yetapb for prevent child tables from being populated in a linq query yetapb 2009-11-24T22:50:04Z 2009-11-24T22:50:04Z <p>Highlight the template member in the Linq to Sql designer surface, then change the property DelayLoaded to true. You could validate that it works correctly by watching the code execute from SQL Profiler</p> http://stackoverflow.com/questions/1650763/call-unmanged-code-from-c-returning-a-struct-with-arrays/1785375#1785375 3 Answer by yetapb for Call unmanged Code from C# - returning a struct with arrays yetapb 2009-11-23T19:22:29Z 2009-11-23T19:22:29Z <p>Since you say the c++ code seems to run fine alone, there must be something wrong on the c# side.</p> <p>Try marshalling the char arrays as char arrays instead of strings and see if that helps. Also try marking the members of the struct public (on the c# side). struct members are private by default in c#, unlike c++.</p> <pre><code>[MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] public char[] VersionStr; </code></pre> http://stackoverflow.com/questions/1760278/how-to-invoke-a-click-method-on-an-html-page-which-has-no-id-name-but-a-class-nam/1760392#1760392 0 Answer by yetapb for How to invoke a click method on an html page which has no id/name but a class name in c#?? yetapb 2009-11-19T01:43:38Z 2009-11-19T01:43:38Z <p>I am assuming that you are using IHTMLElement interface, with which you can iterate over the document and check the className member, collecting those that match.</p> <p>If you are using 3.5, this sounds like a good place for Linq + an extension method.</p> http://stackoverflow.com/questions/1759562/asp-net-mvc-join-tables-using-linq/1759716#1759716 1 Answer by yetapb for ASP.NET MVC - Join Tables using LINQ yetapb 2009-11-18T22:52:20Z 2009-11-18T23:55:03Z <p>The concept you are looking for is called SelectMany in linq, and there are a number of ways to accomplish it. </p> <p>One is:</p> <pre><code>var content = from category in _categoryRepository.CategoryItems join contCat in _contentCategoryRepository.Items on category.category_id == conCat.category_id where category.category_id == parameter select contCat.content_id; </code></pre> <p>From here you should be able to extend it into pulling out all the data you need...look into the <code>into</code> keyword and check out <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">this link</a> if you haven't already.</p> http://stackoverflow.com/questions/1759733/are-custom-winforms-control-auto-generated-designer-files-needed/1759755#1759755 0 Answer by yetapb for Are custom Winforms control auto generated designer files needed? yetapb 2009-11-18T22:59:53Z 2009-11-18T22:59:53Z <p>Strictly speaking I don't think so, but then you will lose any design time benefit you would get when creating the control, and my guess is that VS will keep trying to recreate them.</p> http://stackoverflow.com/questions/1750211/c-4-0-asparallel-unauthorizedaccessexception-when-accessing-the-file-system/1750243#1750243 0 Answer by yetapb for C# 4.0 AsParallel() UnAuthorizedAccessException when accessing the file system yetapb 2009-11-17T16:55:45Z 2009-11-17T16:55:45Z <p>You have more than one thread trying to access the file. Using code that high level (meaning File.Open ) won't do, you need to use something that sets the Share level.</p> http://stackoverflow.com/questions/1745320/c-bool-expression-evaluation-order/1745341#1745341 0 Answer by yetapb for C# bool expression evaluation order yetapb 2009-11-16T22:44:58Z 2009-11-16T22:44:58Z <p>This doesn't matter in C# like it does in c/c++ because conditions must evaluate to a boolean.</p> http://stackoverflow.com/questions/1745299/multiply-a-3d-matrix-with-a-2d-matrix/1745326#1745326 0 Answer by yetapb for Multiply a 3D matrix with a 2D matrix yetapb 2009-11-16T22:42:24Z 2009-11-16T22:42:24Z <p>You could "unroll" the loop, ie write out all the multiplications sequentially that would occur in the loop</p> http://stackoverflow.com/questions/1745056/populating-childnode-list-linq-confusion-and-separation-of-concerns/1745158#1745158 0 Answer by yetapb for Populating Childnode list: Linq confusion and separation of concerns yetapb 2009-11-16T22:06:48Z 2009-11-16T22:06:48Z <p>As for why it doesn't work, I suspect deferred execution is getting you. If you wrap the Linq query like so<code>( from ... select p).ToList()</code> it will cause the query to be evaluated.</p> <p>Regarding the approach, it is data access in the presentation tier, so generally speaking, that would be something to avoid.</p> http://stackoverflow.com/questions/1745061/getting-a-member-via-string-in-c/1745121#1745121 1 Answer by yetapb for Getting a member via string in C#? yetapb 2009-11-16T21:57:36Z 2009-11-16T21:57:36Z <p>Yes, via reflection. Take a look at the <code>Type</code> class and associated methods. A good place to start might be <a href="http://msdn.microsoft.com/en-us/library/ms173183%28VS.80%29.aspx" rel="nofollow">here</a>.<br><br> You can always look at MVC's <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">source</a> for examples too.</p> http://stackoverflow.com/questions/50762/windows-low-level-disk-question/1724560#1724560 0 Answer by yetapb for Windows Low Level Disk Question yetapb 2009-11-12T19:01:38Z 2009-11-12T19:01:38Z <p>WMI is good at this too, I've used it with great success. </p> <pre><code>using( ManagementClass driveClass = new ManagementClass( "Win32_DiskDrive" ) ) { using( ManagementObjectCollection physicalDrives = driveClass.GetInstances( ) ) { foreach( ManagementObject drive in physicalDrives ) { string cylinders = ( string )drive["TotalCylinders"]; // ... etc ... drive.Dispose( ); } } } </code></pre> <p>For a list of additional drive properties you can use, check out <a href="http://msdn.microsoft.com/en-us/library/aa394132%28VS.85%29.aspx" rel="nofollow">this page</a></p> http://stackoverflow.com/questions/1724260/calling-createfile-on-a-physical-device-path-in-a-loop 0 Calling CreateFile on a physical device path in a loop yetapb 2009-11-12T18:11:24Z 2009-11-12T18:15:56Z <p>I have some C# code that is calling CreateFile on a different physical device path each time through a loop(ie \.\PhysicalDrive1, then \.\PhysicalDrive2, ...) via pInvoke and then using the returned handle do some other low level windows stuff. At the end of the loop it calls CloseHandle on the handle.</p> <p>While debugging I noticed that the int value of the handle was the same each pass through the loop. I can see this being either expected (windows is just reusing the handle) or unexpected (the handle wasn't released last pass). </p> <p>So I just want to verify whether or not this is expected (or at least not incorrect) behaviour.</p> http://stackoverflow.com/questions/1716221/use-excel-interop-to-grab-image-of-excel-chart-without-writing-to-disk-or-using-t/1716685#1716685 0 Answer by yetapb for Use Excel Interop to grab image of Excel chart without writing to disk or using the clipboard yetapb 2009-11-11T17:14:57Z 2009-11-11T17:14:57Z <p>One option that may work would be to use a memory mapped file. Of course disk can be involved there, so you should profile the standard export to disk vs. using a memory mapped file (assuming the slowness of disk i/o is your only concern with that approach). <br><br> They don't have out of the box support in .Net yet, but there likely plenty of implementations out there.</p> http://stackoverflow.com/questions/1837626/what-is-this-string-ooand-how-do-i-avoid-it/1837640#1837640 Comment by yetapb on What is this string: Ôªø and how do I avoid it? yetapb 2009-12-03T04:30:15Z 2009-12-03T04:30:15Z +1 These can be a pain to crack. I've seen version control systems, editors, and differing OS versions all cause them. http://stackoverflow.com/questions/1837620/unit-testing-using-another-method-to-check-the-method-under-test-ran-correctly Comment by yetapb on Unit Testing: Using another method to check the method under test ran correctly yetapb 2009-12-03T04:27:19Z 2009-12-03T04:27:19Z can you post your test too? http://stackoverflow.com/questions/1837592/javascript-light-up-where-mouse-is-rest-is-dark Comment by yetapb on Javascript: Light up where mouse is; rest is dark yetapb 2009-12-03T04:25:14Z 2009-12-03T04:25:14Z That's pretty awesome :) http://stackoverflow.com/questions/1837582/how-to-write-to-read-from-network-card-in-x86-assembly/1837613#1837613 Comment by yetapb on How to write to & read from network card in x86 assembly? yetapb 2009-12-03T04:23:57Z 2009-12-03T04:23:57Z I believe direct port access is denied in user mode code under any windows after 9x. http://stackoverflow.com/questions/1837095/how-to-make-sure-what-i-commit-does-not-contain-whitespace-error/1837119#1837119 Comment by yetapb on How to make sure what I commit does not contain whitespace error yetapb 2009-12-03T03:42:45Z 2009-12-03T03:42:45Z like the others, I'm not quite sure what you mean by whitespace &lt;i&gt;errors&lt;/i&gt;. I assumed you were trying to ignore whitespace changes. version control systems usually default to &lt;i&gt;not&lt;/i&gt; ignoring whitespace. You will have to define what you mean. http://stackoverflow.com/questions/1837090/how-to-use-a-foreach-loop-but-do-something-different-on-the-last-iteration/1837110#1837110 Comment by yetapb on How to use a foreach loop, but do something different on the last iteration? yetapb 2009-12-03T01:37:15Z 2009-12-03T01:37:15Z apparently join is an alias for implode :) http://stackoverflow.com/questions/1830120/developing-in-the-cloud Comment by yetapb on Developing in the cloud yetapb 2009-12-02T01:36:37Z 2009-12-02T01:36:37Z my solution.... wife: &quot;NO LAPTOP for you!&quot; me: &quot;NO COSTA RICA for you!&quot; :) http://stackoverflow.com/questions/1829835/traverse-a-binary-search-tree/1829878#1829878 Comment by yetapb on traverse a Binary search tree yetapb 2009-12-02T00:28:36Z 2009-12-02T00:28:36Z oh, and no, you wouldn't need additional left/right functions for the other traversals. The locations of left and right children are independent of the traversal type. http://stackoverflow.com/questions/1829835/traverse-a-binary-search-tree/1829878#1829878 Comment by yetapb on traverse a Binary search tree yetapb 2009-12-02T00:26:45Z 2009-12-02T00:26:45Z Nothing wrong with many small functions. But the main reason I did that is that I forget the formulas for the left and right children when storing a bst in an array and was too lazy to find the wiki page. :D http://stackoverflow.com/questions/1823129/how-do-you-sum-values-inside-a-for-loop-in-matlab/1823158#1823158 Comment by yetapb on How do you sum values inside a for loop in Matlab? yetapb 2009-12-01T16:34:26Z 2009-12-01T16:34:26Z why the down vote? I merely pointed out the primary problem with the code that the others pointed out later? http://stackoverflow.com/questions/1822766/clicking-checkbox-to-expand-div-doesnt-work-in-ie7/1822796#1822796 Comment by yetapb on Clicking checkbox to expand div, doesn't work in IE7 yetapb 2009-11-30T22:45:34Z 2009-11-30T22:45:34Z Glad I could help :) http://stackoverflow.com/questions/1792520/slightly-weird-imo-c-code/1792766#1792766 Comment by yetapb on slightly weird (imo) C++ code yetapb 2009-11-24T21:53:18Z 2009-11-24T21:53:18Z Thanks, marked this one as answer because I think it's the clearest and most complete response. http://stackoverflow.com/questions/1650763/call-unmanged-code-from-c-returning-a-struct-with-arrays/1785375#1785375 Comment by yetapb on Call unmanged Code from C# - returning a struct with arrays yetapb 2009-11-24T17:29:44Z 2009-11-24T17:29:44Z Indeed, but I sometimes find dropping to the basics will either solve my problem or lead me to a solution. http://stackoverflow.com/questions/2481/best-self-balancing-bst-for-quick-insertion-of-a-large-number-of-nodes/500734#500734 Comment by yetapb on Best self-balancing BST for quick insertion of a large number of nodes yetapb 2009-11-20T00:55:51Z 2009-11-20T00:55:51Z a best case unbalanced search tree will be one node from balanced. Best case insertion/lookup is still log(n) http://stackoverflow.com/questions/1767287/sql-join-query-question-mysql Comment by yetapb on sql join query question (mysql) yetapb 2009-11-19T23:27:12Z 2009-11-19T23:27:12Z oops to slow :)