User Jason - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T05:56:26Zhttp://stackoverflow.com/feeds/user/7173http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843281/what-is-the-blue-double-arrow-that-appears-over-links/1843299#18432993Answer by Jason for What is the blue double arrow that appears over links?Jason2009-12-03T22:07:46Z2009-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-workaround2ASP.NET: httpwebrequest date header workaroundJason2009-07-16T21:55:15Z2009-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#18276753Answer by Jason for Get a Div Value in JQueryJason2009-12-01T17:25:57Z2009-12-01T18:02:13Z<pre><code>$('#myDiv').text()
</code></pre>
<p>Although you'd be better off doing something like:</p>
<pre><code><div id="myDiv"><p>Some Text</p></div>
<script type="text/javascript">
$(function(){
var txt = $('#myDiv p').text();
alert(txt);
};
</script>
</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#18138852Answer by Jason for Jquery AJAX not working on IE 7/8Jason2009-11-28T21:56:44Z2009-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>&rand=[some randomly generated something]</code> and try it again.</p>
http://stackoverflow.com/questions/947633/asp-net-using-twitterizer-in-medium-trust1ASP.NET Using Twitterizer in Medium TrustJason2009-06-03T22:36:35Z2009-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#18063801Answer by Jason for HTML >> Very simple questionJason2009-11-27T01:23:22Z2009-11-27T01:23:22Z<p><code>&laquo;</code> and <code>&raquo;</code></p>
http://stackoverflow.com/questions/1793596/is-my-html-leaking-because-it-is-showing-abnormal-behavior/1793685#17936850Answer by Jason for Is my HTML "leaking", because it is showing abnormal behavior.Jason2009-11-24T23:28:05Z2009-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#17924055Answer by Jason for How can I make fonts on my website bigger and easier to read for some users?Jason2009-11-24T19:33:34Z2009-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><span>Font Size: </span>
<a href="#" onclick="decreaseFontSize();">
<img src="/images/minus.png" alt="Decrease Font Size" />
</a>
<a href="#" onclick="increaseFontSize();">
<img src="/images/plus.png" alt="Increase Font Size" />
</a>
</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#17872111Answer by Jason for If I search for my companies domain on google, it returns a different domain. It might be our fault. helpJason2009-11-24T01:17:45Z2009-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-accordingly0Error handling using events, checking if an error happened and react accordinglyJason2009-09-08T23:34:57Z2009-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#17867080Answer by Jason for Parsing web pagesJason2009-11-23T23:09:08Z2009-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#17724194Answer by Jason for What are the worst working conditions you have written code in?Jason2009-11-20T18:32:54Z2009-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#17661400Answer by Jason for How do I change the "href" of <a> through Javascript Jquery?Jason2009-11-19T20:01:47Z2009-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#17660770Answer by Jason for How to add enum properties to a WebControlJason2009-11-19T19:53:36Z2009-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; // <-- '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#17506431Answer by Jason for checkbox / div toggleJason2009-11-17T17:55:40Z2009-11-17T17:55:40Z<p>maybe put <code><div style="display:none" class="toggle"></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#17505762Answer by Jason for which url format is better for seo?Jason2009-11-17T17:47:39Z2009-11-17T17:47:39Z<p>they are tantamount.</p>
http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods/1750541#17505411Answer by Jason for Prefix "Is" in Method Name for Verification MethodsJason2009-11-17T17:42:57Z2009-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#17459542Answer by Jason for Paypal not picking up shipping?Jason2009-11-17T00:58:58Z2009-11-17T00:58:58Z<p>Try using</p>
<pre><code><input type="hidden" name="handling_cart" value="[your shipping cost]" />
</code></pre>
http://stackoverflow.com/questions/1745907/what-more-do-you-want-to-see-in-your-favourite-programming-language/1745924#17459240Answer by Jason for What more do you want to see in your favourite programming language?Jason2009-11-17T00:50:16Z2009-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#17264830Answer by Jason for when programming, should you focus on one thing at a time, even if you get stuck on one step ?Jason2009-11-13T01:01:34Z2009-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#17264221Answer by Jason for Create an image of a div?Jason2009-11-13T00:42:11Z2009-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#17190420Answer by Jason for Facebook Connect Email HashesJason2009-11-12T00:27:40Z2009-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-3Answer by Jason for jQuery pitfalls to avoidJason2009-08-04T18:57:43Z2009-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><a id="someLink" href="page.html" onClick="SomeClickFunction(this)">Link</a>
<script type="text/javascript">
SomeClickFunction(item){
//do something
}
</script>
</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-question4XML to LINQ in VB, noob questionJason2009-06-30T21:37:33Z2009-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-splitrows1iTextSharp: SplitLate/SplitRows?Jason2009-09-01T20:20:04Z2009-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 <> 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#16773970Answer by Jason for How do i do an SELECT in an INSERT?Jason2009-11-04T23:29:10Z2009-11-04T23:29:10Z<p>have you tried maybe:</p>
<pre><code>...
VALUES(last_insert_rowid(), (SELECT COUNT(*) FROM active_dl)); <--- 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#16755600Answer by Jason for CSS 'fragmenter' or unconsolidator?Jason2009-11-04T17:54:21Z2009-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#16691821Answer by Jason for Response.Redirect to same page without Page RefreshJason2009-11-03T18:17:26Z2009-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#16472751Answer by Jason for Need a program to reverse the words in a stringJason2009-10-30T00:04:40Z2009-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#16400000Answer by Jason for Does the public get confused or "put off" by the OpenID user experience?Jason2009-10-28T20:46:13Z2009-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-htmlComment by Jason on Can Excel interpret a cell as HTML?Jason2009-12-04T00:37:51Z2009-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#476445Comment by Jason on null coalescing operator for javascript?Jason2009-12-03T22:20:01Z2009-12-03T22:20:01Zexactly what i was looking for. looks like i'm about a year behind :)http://stackoverflow.com/questions/1167199/background-images-disappearing-in-ie6Comment by Jason on Background images disappearing in IE6Jason2009-12-03T09:14:20Z2009-12-03T09:14:20ZSTOP SUPPORTING IE6http://stackoverflow.com/questions/1837053/js-passing-whole-object-into-onclick-method-rather-than-a-string/1837104#1837104Comment by Jason on (js) passing whole object into onclick method rather than a stringJason2009-12-03T01:32:54Z2009-12-03T01:32:54Zyeah i can't get this to not work either.http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/432193#432193Comment by Jason on Common "Truisms" that need correcting the most.Jason2009-12-03T01:32:05Z2009-12-03T01:32:05ZKnock knock. Who's there? ......... ........... ........... .......... .......... ........... ............ ........... ........... ........... .......... .......... .......... ............ .......... ............ ............ Javahttp://stackoverflow.com/questions/1830142/what-is-cloud-computing/1830159#1830159Comment by Jason on What is cloud computing?Jason2009-12-02T02:00:29Z2009-12-02T02:00:29Za cloud is a collection of precipitation hovering above the ground usually in the shape of bunnies or sheephttp://stackoverflow.com/questions/1821435/how-to-pass-content-of-image-file-from-fileupload-control-to-web-method-via-javasComment by Jason on How to pass content of image file from fileupload control to web method via javascript?Jason2009-11-30T18:18:05Z2009-11-30T18:18:05Zi 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-javascriptComment by Jason on Find an achor in a Div with javascriptJason2009-11-26T23:55:36Z2009-11-26T23:55:36Zi almost helped w/this question until i saw the url...http://stackoverflow.com/questions/1805420/how-can-i-determine-is-digit-even-numberComment by Jason on How Can I determine is digit Even number?Jason2009-11-26T19:57:08Z2009-11-26T19:57:08Zis 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#1792405Comment by Jason on How can I make fonts on my website bigger and easier to read for some users?Jason2009-11-24T20:02:02Z2009-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#1792405Comment by Jason on How can I make fonts on my website bigger and easier to read for some users?Jason2009-11-24T19:41:48Z2009-11-24T19:41:48Zit'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-lasersComment by Jason on Code Golf: LasersJason2009-11-24T01:29:59Z2009-11-24T01:29:59Zi am FLABBERGASTED by the lack of PEWPEWPEW commentshttp://stackoverflow.com/questions/1787134/if-i-search-for-my-companies-domain-on-google-it-returns-a-different-domain-itComment by Jason on If I search for my companies domain on google, it returns a different domain. It might be our fault. helpJason2009-11-24T01:18:13Z2009-11-24T01:18:13Zthis is absolutely programming related and has nothing to do w/serverfault.http://stackoverflow.com/questions/1786689/parsing-web-pages/1786708#1786708Comment by Jason on Parsing web pagesJason2009-11-23T23:18:43Z2009-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#1772419Comment by Jason on What are the worst working conditions you have written code in?Jason2009-11-23T07:47:23Z2009-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 "soul destroying".