User Jason - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:56:26Z http://stackoverflow.com/feeds/user/7173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843281/what-is-the-blue-double-arrow-that-appears-over-links/1843299#1843299 3 Answer by Jason for What is the blue double arrow that appears over links? Jason 2009-12-03T22:07:46Z 2009-12-03T22:07:46Z <p>The blue arrow is an IE8 "feature" called "<a href="http://www.microsoft.com/windows/internet-explorer/features/faster.aspx" rel="nofollow">accelerators</a>". Basically it's IE's way of saying, you're looking at something, here's a bunch of other related things you can look at. You can only turn it off in your Internet Options. It's not something (I believe) you can turn off for visitors to your site.</p> http://stackoverflow.com/questions/1140553/asp-net-httpwebrequest-date-header-workaround 2 ASP.NET: httpwebrequest date header workaround Jason 2009-07-16T21:55:15Z 2009-12-02T15:33:23Z <p>I'm trying to integrate with an API that requires the "Date" header in a web request. As you may well know, .NET has removed the ability to append or even display a default Date header in your request, so I was wondering about a workaround.</p> <p>Here's the catch: you can't use TCPClients because I don't have "permissions" on my server for such a thing as sockets. Is there some way to "cheat" the system to fake a date header or to trick it into posting a Date header? Or should I just give up on this API?</p> <p>Thanks...</p> <p>(PS, language is VB.NET if you please :) )</p> http://stackoverflow.com/questions/1827659/get-a-div-value-in-jquery/1827675#1827675 3 Answer by Jason for Get a Div Value in JQuery Jason 2009-12-01T17:25:57Z 2009-12-01T18:02:13Z <pre><code>$('#myDiv').text() </code></pre> <p>Although you'd be better off doing something like:</p> <pre><code>&lt;div id="myDiv"&gt;&lt;p&gt;Some Text&lt;/p&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; $(function(){ var txt = $('#myDiv p').text(); alert(txt); }; &lt;/script&gt; </code></pre> <p>Make sure you're linking to your jQuery file too :)</p> http://stackoverflow.com/questions/1813848/jquery-ajax-not-working-on-ie-7-8/1813885#1813885 2 Answer by Jason for Jquery AJAX not working on IE 7/8 Jason 2009-11-28T21:56:44Z 2009-11-28T21:56:44Z <p>IE caches ajax calls. make sure that you include a random number or random string in your call, such as <code>&amp;rand=[some randomly generated something]</code> and try it again.</p> http://stackoverflow.com/questions/947633/asp-net-using-twitterizer-in-medium-trust 1 ASP.NET Using Twitterizer in Medium Trust Jason 2009-06-03T22:36:35Z 2009-11-27T12:00:44Z <p>Does anyone using the <a href="http://code.google.com/p/twitterizer/" rel="nofollow">Twitterizer</a> framework have any experience running it in a Medium Trust environment? I keep getting security exceptions...</p> <blockquote> <p>Security Exception<br /> Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. </p> <p>Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.</p> </blockquote> http://stackoverflow.com/questions/1806373/html-very-simple-question/1806380#1806380 1 Answer by Jason for HTML >> Very simple question Jason 2009-11-27T01:23:22Z 2009-11-27T01:23:22Z <p><code>&amp;laquo;</code> and <code>&amp;raquo;</code></p> http://stackoverflow.com/questions/1793596/is-my-html-leaking-because-it-is-showing-abnormal-behavior/1793685#1793685 0 Answer by Jason for Is my HTML "leaking", because it is showing abnormal behavior. Jason 2009-11-24T23:28:05Z 2009-11-24T23:28:05Z <p>This is most likely a CSS issue, esp if you're using star images. it probably can't find your inputs inside your table.</p> <p>Make sure that your CSS references your <code>#stars-wrapper1</code></p> http://stackoverflow.com/questions/1792371/how-can-i-make-fonts-on-my-website-bigger-and-easier-to-read-for-some-users/1792405#1792405 5 Answer by Jason for How can I make fonts on my website bigger and easier to read for some users? Jason 2009-11-24T19:33:34Z 2009-11-24T19:33:34Z <p>Here's code I use on some of my sites. Apply your HTML accordingly:</p> <p>HTML:</p> <pre><code>&lt;span&gt;Font Size: &lt;/span&gt; &lt;a href="#" onclick="decreaseFontSize();"&gt; &lt;img src="/images/minus.png" alt="Decrease Font Size" /&gt; &lt;/a&gt; &lt;a href="#" onclick="increaseFontSize();"&gt; &lt;img src="/images/plus.png" alt="Increase Font Size" /&gt; &lt;/a&gt; </code></pre> <p>Javascript: </p> <pre><code>var min=8; var max=18; function increaseFontSize() { p = document.getElementById("[the id of container w/font you want to size]"); if(p.style.fontSize) { var s = parseInt(p.style.fontSize.replace("px","")); } else { var s = 12; } if(s!=max) { s += 1; } p.style.fontSize = s+"px" } function decreaseFontSize() { p = document.getElementById("[the id of container w/font you want to size]"); if(p.style.fontSize) { var s = parseInt(p.style.fontSize.replace("px","")); } else { var s = 12; } if(s!=min) { s -= 1; } p.style.fontSize = s+"px" } </code></pre> http://stackoverflow.com/questions/1787134/if-i-search-for-my-companies-domain-on-google-it-returns-a-different-domain-it/1787211#1787211 1 Answer by Jason for If I search for my companies domain on google, it returns a different domain. It might be our fault. help Jason 2009-11-24T01:17:45Z 2009-11-24T01:17:45Z <p>It appears that whenever Gbot goes to your site it is automatically redirected to the US domain. This makes sense since the Gbot is most likely in the US. It's probably having a hard time finding the UK domain since it never visits it. Maybe check for user agent and do something different if the bot is visiting vs a non-bot?</p> http://stackoverflow.com/questions/1396893/error-handling-using-events-checking-if-an-error-happened-and-react-accordingly 0 Error handling using events, checking if an error happened and react accordingly Jason 2009-09-08T23:34:57Z 2009-11-24T01:00:01Z <p>I have an object, say <code>Order</code> where if an error occurs, it raises the <code>ErrorOccurred</code> event. If I'm running some code in say, the codebehind for a .aspx page with an public <code>Order</code> registered as <code>WithEvents</code> and I want to check to see if an error has occurred before I run more code, how do I do this? I can't simply check <code>theOrder.ErrorOccurred</code>. Do I have to create a local boolean flag that switches over in the event handler (<code>OnErrorOccurred</code>)? Or is there a better way to do this?</p> <p>Thanks!</p> <p>Example:</p> <pre><code>Public WithEvents theOrder As New Order Public Sub DoStuff() theOrder.DoSomething() If theOrder.ErrorOccurred Then do stuff End If End Sub </code></pre> http://stackoverflow.com/questions/1786689/parsing-web-pages/1786708#1786708 0 Answer by Jason for Parsing web pages Jason 2009-11-23T23:09:08Z 2009-11-23T23:09:08Z <ol> <li>yes</li> <li>regular expressions, any flavor.</li> <li>probably the ones w/regex</li> <li><a href="http://java.sun.com/products/jfc/tsc/articles/bookmarks/" rel="nofollow">there are tools out there</a> <a href="http://java-source.net/open-source/html-parsers" rel="nofollow">that will do this for you</a>.</li> </ol> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/1772419#1772419 4 Answer by Jason for What are the worst working conditions you have written code in? Jason 2009-11-20T18:32:54Z 2009-11-20T18:32:54Z <p>My worst programming job was working for an "interactive agency" that turned down smaller jobs, so we would wait for weeks at a time for the "big" jobs. during this hiatus, i literally had NOTHING to do, but was still required to fill out my time sheet. i had to quit because i was running out of ridiculous things to put on it.</p> http://stackoverflow.com/questions/1766133/how-do-i-change-the-href-of-a-through-javascript-jquery/1766140#1766140 0 Answer by Jason for How do I change the "href" of <a> through Javascript Jquery? Jason 2009-11-19T20:01:47Z 2009-11-19T20:01:47Z <pre><code>$('#main_link').attr('href','your new href'); </code></pre> http://stackoverflow.com/questions/1766068/how-to-add-enum-properties-to-a-webcontrol/1766077#1766077 0 Answer by Jason for How to add enum properties to a WebControl Jason 2009-11-19T19:53:36Z 2009-11-19T19:59:24Z <p>You're trying to set the value to 'B' which is a string. You need to set it to a numeric value, since that's what enums are....</p> <pre><code>... set { ViewState["MyMode"] = value; // &lt;-- 'value' must be an integer equivalent to B // in this example, to set as 'B', 'value' == 1 } ... </code></pre> <p><strong>EDIT</strong> see <a href="http://dotnetdiscussion.net/2009/02/05/aspnet-create-a-user-control-property-with-selectable-options/" rel="nofollow">this article</a></p> http://stackoverflow.com/questions/1750617/checkbox-div-toggle/1750643#1750643 1 Answer by Jason for checkbox / div toggle Jason 2009-11-17T17:55:40Z 2009-11-17T17:55:40Z <p>maybe put <code>&lt;div style="display:none" class="toggle"&gt;</code> to hide it first? also, <code>return false</code> is unnecessary (and is missing a semicolon)</p> <p>also, is this function within your <code>$(function() {});</code> ?</p> http://stackoverflow.com/questions/1750560/which-url-format-is-better-for-seo/1750576#1750576 2 Answer by Jason for which url format is better for seo? Jason 2009-11-17T17:47:39Z 2009-11-17T17:47:39Z <p>they are tantamount.</p> http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods/1750541#1750541 1 Answer by Jason for Prefix "Is" in Method Name for Verification Methods Jason 2009-11-17T17:42:57Z 2009-11-17T17:42:57Z <p>"Should" is a broad term. Do what makes sense to you. In a lot of cases, using "Is" clarifies, but not always.</p> <p>Again, do what makes sense.</p> http://stackoverflow.com/questions/1745931/paypal-not-picking-up-shipping/1745954#1745954 2 Answer by Jason for Paypal not picking up shipping? Jason 2009-11-17T00:58:58Z 2009-11-17T00:58:58Z <p>Try using</p> <pre><code>&lt;input type="hidden" name="handling_cart" value="[your shipping cost]" /&gt; </code></pre> http://stackoverflow.com/questions/1745907/what-more-do-you-want-to-see-in-your-favourite-programming-language/1745924#1745924 0 Answer by Jason for What more do you want to see in your favourite programming language? Jason 2009-11-17T00:50:16Z 2009-11-17T00:50:16Z <p>Better date/time handling. Right now it sucks across the board.</p> http://stackoverflow.com/questions/1726464/when-programming-should-you-focus-on-one-thing-at-a-time-even-if-you-get-stuck/1726483#1726483 0 Answer by Jason for when programming, should you focus on one thing at a time, even if you get stuck on one step ? Jason 2009-11-13T01:01:34Z 2009-11-13T01:01:34Z <p>It's best to try to break it down into smaller problems if you can. The more you can break it down, the closer you get to accomplishing your task, even if at first you don't quite understand how to do it. Maybe along the way it will click and you will have to rewrite what you've done, but you had to first see the way you initially did it to get to that mental stage.</p> http://stackoverflow.com/questions/1726414/create-an-image-of-a-div/1726422#1726422 1 Answer by Jason for Create an image of a div? Jason 2009-11-13T00:42:11Z 2009-11-13T00:42:11Z <p>Take a look at this article:</p> <p><a href="http://www.developerfusion.com/code/181/capture-screenshot/" rel="nofollow">http://www.developerfusion.com/code/181/capture-screenshot/</a></p> <p>It's not client-side code, but you mentioned PHP so maybe server-side code is an option. I don't think you can do it client-side...</p> http://stackoverflow.com/questions/1663706/facebook-connect-email-hashes/1719042#1719042 0 Answer by Jason for Facebook Connect Email Hashes Jason 2009-11-12T00:27:40Z 2009-11-12T00:27:40Z <p><a href="http://wiki.developers.facebook.com/index.php/Users.getInfo" rel="nofollow">http://wiki.developers.facebook.com/index.php/Users.getInfo</a></p> <p>scroll down to "email_hashes"</p> http://stackoverflow.com/questions/1229259/jquery-pitfalls-to-avoid/1229293#1229293 -3 Answer by Jason for jQuery pitfalls to avoid Jason 2009-08-04T18:57:43Z 2009-11-11T20:09:49Z <p>Not understanding event binding. JavaScript and jQuery work differently.</p> <p>By popular demand, an example:</p> <p>In jQuery:</p> <pre><code>$("#someLink").click(function(){//do something}); </code></pre> <p>Without jQuery:</p> <pre><code>&lt;a id="someLink" href="page.html" onClick="SomeClickFunction(this)"&gt;Link&lt;/a&gt; &lt;script type="text/javascript"&gt; SomeClickFunction(item){ //do something } &lt;/script&gt; </code></pre> <p>Basically the hooks required for JavaScript are no longer necessary. I.e. use inline markup (onClick, etc) because you can simply use the ID's and classes that a developer would normally leverage for CSS purposes.</p> http://stackoverflow.com/questions/1066213/xml-to-linq-in-vb-noob-question 4 XML to LINQ in VB, noob question Jason 2009-06-30T21:37:33Z 2009-11-09T13:18:28Z <p>I'm basically brand new to LINQ. I've looked around a lot on here and am pretty confused. I've seen some examples that allow me to strong type objects using LINQ but I don't really understand them because they're in C#, which I guess lets you do different things with LINQ(I think?).</p> <p>Anyways, this is what I'm trying to do:</p> <pre><code>Dim productXML As XDocument = XDocument.Load( _ Server.MapPath("~/App_Data/products.xml")) Dim products As List(Of Product) = 'some query to select all products ?' 'set up Product properties here' someProduct.ProductID = 'somehow get productid from XML' </code></pre> <p>Any help would be appreciated... LINQ isn't as intuitive as everyone says it is! Or maybe I'm dumb, ha...</p> <p>Thanks!</p> <p><strong>EDIT</strong> - I just want to get a list of all the products from the XML doc and put them into a Generics list.</p> http://stackoverflow.com/questions/1364435/itextsharp-splitlate-splitrows 1 iTextSharp: SplitLate/SplitRows? Jason 2009-09-01T20:20:04Z 2009-11-07T20:51:26Z <p>I have an issue where I have a table (PdfPTable) that may extend past the length of the page. I have tried looking up how to "split" a table onto more than one page but iTextSharp is pretty poorly documented in this area. Does anyone know how to do this without choosing an arbitrary Y position on the page and telling it to split if it's there?</p> <p>I looked into the <code>SplitLate</code> and <code>SplitRows</code> properties, but there's no documentation on what these do. <strong>EDIT</strong> They do nothing.</p> <p>Thanks!</p> <p><strong>EDIT</strong></p> <p>I'm looking to cut the table in half widthwise as the table will always fit the width of the page. This is to say that I want the rows that don't fit vertically to extend to the next page below it.</p> <p><strong>EDIT2</strong></p> <p>Here's some code:</p> <pre><code>Public Sub BuildPrintableDocument Dim doc As New Document(PageSize.LETTER, 0, 0, 0, BOTTOM_MARGIN) Dim writer As PdfWriter = PdfWriter.GetInstance(doc, _ New FileStream("invoice.pdf", FileMode.Create) Dim footer As New HeaderFooter(New Phrase("www.columbussupply.com", _ footerFont), False) footer.Border = Rectangle.NO_BORDER footer.Alignment = HeaderFooter.ALIGN_CENTER doc.Footer = footer doc.Open() .... Dim items As PdfPTable = NewItemTable() Dim count As Integer = 0 For Each oi As OrderItem In TheInvoice.Items If oi.Status &lt;&gt; OrderItem.OrderItemStatus.Cancelled Then Dim qty As New PdfPCell(New Phrase(oi.Quantity, mainFont)) qty.HorizontalAlignment = Element.ALIGN_CENTER qty.Padding = ITEMS_PADDING '...instantiate 3 other cells here (removed for repetitiveness)' items.AddCell(qty) items.AddCell(desc) items.AddCell(price) items.AddCell(total) End If Next items.WriteSelectedRows(0, -1, LEFT_MARGIN, GetItemsStartY, _ writer.DirectContent) End Sub Protected Function NewItemTable() As PdfPTable Dim items As PdfPTable = New PdfPTable(4) Dim headers() As String = {"QTY", "DESCRIPTION", "PRICE", "TOTAL"} For Each s As String In headers Dim cell As New PdfPCell(New Phrase(s, mainFont)) cell.HorizontalAlignment = Element.ALIGN_CENTER items.AddCell(cell) Next items.TotalWidth = ITEMS_TOTAL_WIDTH items.SetWidths(New Single() {QTY_COL_WIDTH, DESC_COL_WIDTH, _ PRICE_COL_WIDTH, TOTALS_COL_WIDTH}) Return items End Function </code></pre> http://stackoverflow.com/questions/1677380/how-do-i-do-an-select-in-an-insert/1677397#1677397 0 Answer by Jason for How do i do an SELECT in an INSERT? Jason 2009-11-04T23:29:10Z 2009-11-04T23:29:10Z <p>have you tried maybe:</p> <pre><code>... VALUES(last_insert_rowid(), (SELECT COUNT(*) FROM active_dl)); &lt;--- with parens </code></pre> <p>I don't claim to know sqlite, but maybe this could help</p> http://stackoverflow.com/questions/1675526/css-fragmenter-or-unconsolidator/1675560#1675560 0 Answer by Jason for CSS 'fragmenter' or unconsolidator? Jason 2009-11-04T17:54:21Z 2009-11-04T17:54:21Z <p>Elbow grease, unfortunately.</p> <p>More helpfully, I suppose that if your strings are always going to be in the same format (font weight first, size next, fonts 3rd, etc) it's possible that you could write a helper function to parse those strings, but it will be intense...</p> http://stackoverflow.com/questions/1669163/response-redirect-to-same-page-without-page-refresh/1669182#1669182 1 Answer by Jason for Response.Redirect to same page without Page Refresh Jason 2009-11-03T18:17:26Z 2009-11-03T18:17:26Z <p>The only way you can do this without a "flicker" or "refresh" if you will is to do an AJAX call and update all your necessary fields. Otherwise <code>Response.Redirect()</code> will flicker your page.</p> http://stackoverflow.com/questions/1647247/need-a-program-to-reverse-the-words-in-a-string/1647275#1647275 1 Answer by Jason for Need a program to reverse the words in a string Jason 2009-10-30T00:04:40Z 2009-10-30T00:04:40Z <p>if your definition of a "word" is a series of non-whitespace characters surrounded by a whitespace character, then in 5 second pseudocode you do:</p> <pre><code>var words = split(inputString, " ") var reverse = new array var count = words.count -1 var i = 0 while count != 0 reverse[i] = words[count] count-- i++ return reverse </code></pre> http://stackoverflow.com/questions/1639980/does-the-public-get-confused-or-put-off-by-the-openid-user-experience/1640000#1640000 0 Answer by Jason for Does the public get confused or "put off" by the OpenID user experience? Jason 2009-10-28T20:46:13Z 2009-10-28T20:46:13Z <p>I personally like what OpenID attempts to solve, but I dislike its implementation. It works ok for tech savvy users who can easily maneuver about and get logged in, but for those not very familiar w/the internet, it can lead to a bit of frustration</p> http://stackoverflow.com/questions/1842071/can-excel-interpret-a-cell-as-html Comment by Jason on Can Excel interpret a cell as HTML? Jason 2009-12-04T00:37:51Z 2009-12-04T00:37:51Z @phil - this is definitely programming related. now i have to upvote to cancel your downvote. http://stackoverflow.com/questions/476436/null-coalescing-operator-for-javascript/476445#476445 Comment by Jason on null coalescing operator for javascript? Jason 2009-12-03T22:20:01Z 2009-12-03T22:20:01Z exactly what i was looking for. looks like i'm about a year behind :) http://stackoverflow.com/questions/1167199/background-images-disappearing-in-ie6 Comment by Jason on Background images disappearing in IE6 Jason 2009-12-03T09:14:20Z 2009-12-03T09:14:20Z STOP SUPPORTING IE6 http://stackoverflow.com/questions/1837053/js-passing-whole-object-into-onclick-method-rather-than-a-string/1837104#1837104 Comment by Jason on (js) passing whole object into onclick method rather than a string Jason 2009-12-03T01:32:54Z 2009-12-03T01:32:54Z yeah i can't get this to not work either. http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/432193#432193 Comment by Jason on Common "Truisms" that need correcting the most. Jason 2009-12-03T01:32:05Z 2009-12-03T01:32:05Z Knock knock. Who's there? ......... ........... ........... .......... .......... ........... ............ ........... ........... ........... .......... .......... .......... ............ .......... ............ ............ Java http://stackoverflow.com/questions/1830142/what-is-cloud-computing/1830159#1830159 Comment by Jason on What is cloud computing? Jason 2009-12-02T02:00:29Z 2009-12-02T02:00:29Z a cloud is a collection of precipitation hovering above the ground usually in the shape of bunnies or sheep http://stackoverflow.com/questions/1821435/how-to-pass-content-of-image-file-from-fileupload-control-to-web-method-via-javas Comment by Jason on How to pass content of image file from fileupload control to web method via javascript? Jason 2009-11-30T18:18:05Z 2009-11-30T18:18:05Z i am pretty sure you can't upload a file via javascript for security purposes... http://stackoverflow.com/questions/1806176/find-an-achor-in-a-div-with-javascript Comment by Jason on Find an achor in a Div with javascript Jason 2009-11-26T23:55:36Z 2009-11-26T23:55:36Z i almost helped w/this question until i saw the url... http://stackoverflow.com/questions/1805420/how-can-i-determine-is-digit-even-number Comment by Jason on How Can I determine is digit Even number? Jason 2009-11-26T19:57:08Z 2009-11-26T19:57:08Z is there a <code>mod</code> function of some sort in tsql? http://stackoverflow.com/questions/1792371/how-can-i-make-fonts-on-my-website-bigger-and-easier-to-read-for-some-users/1792405#1792405 Comment by Jason on How can I make fonts on my website bigger and easier to read for some users? Jason 2009-11-24T20:02:02Z 2009-11-24T20:02:02Z <i>i didn't author this *script</i>. wow. can you tell i just finished my coffee? http://stackoverflow.com/questions/1792371/how-can-i-make-fonts-on-my-website-bigger-and-easier-to-read-for-some-users/1792405#1792405 Comment by Jason on How can I make fonts on my website bigger and easier to read for some users? Jason 2009-11-24T19:41:48Z 2009-11-24T19:41:48Z it's possible. i didn't author this font, although i modified it a bit maybe 2 years ago. looking at it now, it could be easily merged into one function that takes a bool param telling you which way to go. http://stackoverflow.com/questions/1480023/code-golf-lasers Comment by Jason on Code Golf: Lasers Jason 2009-11-24T01:29:59Z 2009-11-24T01:29:59Z i am FLABBERGASTED by the lack of PEWPEWPEW comments http://stackoverflow.com/questions/1787134/if-i-search-for-my-companies-domain-on-google-it-returns-a-different-domain-it Comment by Jason on If I search for my companies domain on google, it returns a different domain. It might be our fault. help Jason 2009-11-24T01:18:13Z 2009-11-24T01:18:13Z this is absolutely programming related and has nothing to do w/serverfault. http://stackoverflow.com/questions/1786689/parsing-web-pages/1786708#1786708 Comment by Jason on Parsing web pages Jason 2009-11-23T23:18:43Z 2009-11-23T23:18:43Z @myyn - that answer is the greatest SO answer i've ever seen. but if you can assume that all HTML you're trying to parse is legit, it's actually fairly easy to do so w/regex, as i frequently do so. of course, this is a large assumption. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/1772419#1772419 Comment by Jason on What are the worst working conditions you have written code in? Jason 2009-11-23T07:47:23Z 2009-11-23T07:47:23Z @everyone - if you have never had a job where you do LITERALLY NOTHING all day, you cannot say it is great... @juliet hit it right on the head with &quot;soul destroying&quot;.