User kamens - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T15:45:07Zhttp://stackoverflow.com/feeds/user/1335http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97522/what-are-all-the-valid-self-closing-tags-in-xhtml-as-implemented-by-the-major-br6What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?kamens2008-09-18T22:10:44Z2009-11-14T22:01:24Z
<p>What are all the valid self-closing tags (e.g. <br/>) in XHTML (as implemented by the major browsers)?</p>
<p>I know that XHTML technically allows any tag to be self-closed, but I'm looking for a list of those tags supported by all major browsers. See <a href="http://dusan.fora.si/blog/self-closing-tags" rel="nofollow">http://dusan.fora.si/blog/self-closing-tags</a> for examples of some problems caused by self-closing tags such as <div />.</p>
http://stackoverflow.com/questions/1546046/sqlbulkcopy-into-table-with-composite-primary-key2SqlBulkCopy into table with composite primary keykamens2009-10-09T21:06:52Z2009-10-09T21:57:12Z
<p>I'm trying to use SqlBulkCopy to insert new rows into my DB table by manually populating a DataTable w/in my application.</p>
<p>This works fine for all tables <strong>except the table that has a composite primary key made up of 3 columns</strong>. Whenever I try to SqlBulkCopy anything into this table, I get the following error:</p>
<pre><code>Violation of PRIMARY KEY constraint 'PK_MYCOMPOSITEKEY'. Cannot insert duplicate key in object 'dbo.MyTable'.
The statement has been terminated.
</code></pre>
<p>Is this even possible?</p>
<p>I have tried setting up my DataTable's primary keys with the following:</p>
<pre><code>dt.PrimaryKey = new[] {dt.Columns["PKcolumn1"], dt.Columns["PKcolumn2"], dt.Columns["PKcolumn3"]};
</code></pre>
<p>but again, no luck.</p>
http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida5<machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-09T22:08:39Z2009-08-18T09:50:32Z
<p><strong>(See question below for more context):</strong></p>
<p>Are there any situations in which </p>
<pre><code><machineKey
validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps"/>
</code></pre>
<p>in web.config would fail to AutoGenerate a new machineKey on App Pool recycle? This is the behavior I'm seeing...</p>
<p><hr /></p>
<p>I'm using standard ASP.NET FormsAuthentication in an MVC app. If I log a user in using <code>FormsAuthentication.GetAuthCookie</code> and don't use a persistent cookie (relying on the browser's session to remember my authorized state), I would expect recycling the IIS App Pool to invalidate the session's knowledge of this cookie...and thus logout all users who don't have persistent cookies.</p>
<p>This DOES happen on one of my IIS installs (XP), but on a different IIS configuration (Server 2K3) the FormsAuthentication cookie (under the standard name ".ASPXAUTH") remains valid and continues to authorize the user.</p>
<p>Does anyone know why this is happening or what configuration controls this behavior?</p>
<p>Obviously recycling the app pool has no control over whether or not the browser still sends the .ASPXAUTH cookie (as long as I haven't closed my browser and the cookie hasn't expired). </p>
<p><strong>In the case of the IIS install that properly denies authentication after a recycle, I can see the incoming cookie in <code>Request.Cookies</code> during the <code>Application_BeginRequest</code> event...but once control moves to the next event available in Global.asax.cs <code>(Application_AuthenticateRequest</code>), the cookie has been removed from the <code>Request.Cookies</code> collection</strong>.</p>
<p>Why does this not happen for both IIS/ASP.NET configurations?</p>
<p><hr /></p>
<p>In case this isn't clear, a simpler way of forming the question is:</p>
<p>Why does <code>HttpContext.Current.Request.Cookies[".ASPXAUTH"]</code> change from <code>{System.Web.HttpCookie}</code> to null when I step, in a single request, from <code>Application_BeginRequest</code> to <code>Application_AuthenticateRequest</code>?</p>
<p><hr /></p>
<p>More debugging information:</p>
<p>If I attach the following code to Global.asax.cs's FormsAuthentication_OnAuthenticate event...</p>
<pre><code>var cookie = Request.Cookies[FormsAuthentication.FormsCookieName];
if (cookie != null)
{
var val = cookie.Value;
try
{
FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(val);
}
catch (Exception)
{
}
}
</code></pre>
<p>...then during a request <strong>before</strong> I recycle the IIS App Pool, no exception will be caught. After recycling the IIS App Pool, when the exact same .ASPXAUTH cookie is sent from the browser, a Cryptographic exception is caught ("Padding is invalid and cannot be removed.")</p>
<p>Why is this?</p>
http://stackoverflow.com/questions/1039279/not-tracking-c-designer-generated-code-refuses-to-generate-with-clean-checkout/1049816#10498161Answer by kamens for Not tracking C# designer-generated code: refuses to generate with clean checkoutkamens2009-06-26T15:38:01Z2009-06-26T15:38:01Z<p>You can use <strong>ResGen.exe</strong> to explicitly regenerate the .resources and .Designer.cs files from your .resx. Just throw a command that looks something like the following into your prebuild events:</p>
<pre><code>ResGen.exe Strings.resx NameSpace.Strings.resources /publicClass /str:cs,"Your.Namespace",Strings,Strings.Designer.cs
</code></pre>
<p>...which will generate a Your.Namespace.Strings.resources file and a Strings.Designer.cs file w/ a "Strings" class in the "Your.Namespace" namespace.</p>
<p>(The /publicClass switch tells ResGen to generate public members, and "cs" is the C# language choice.)</p>
<p>Read more here: <a href="http://msdn.microsoft.com/en-us/library/ccec7sz1%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ccec7sz1(VS.80).aspx</a></p>
http://stackoverflow.com/questions/20063/whats-the-best-way-to-grab-parse-command-line-arguments-passed-to-a-python-scrip14What's the best way to grab/parse command line arguments passed to a Python script?kamens2008-08-21T14:24:41Z2009-06-11T07:54:53Z
<p>The title says it all...what's the <strong>easiest, tersest, and most flexible</strong> method or library for parsing Python command line arguments?</p>
http://stackoverflow.com/questions/544658/is-webkit-among-those-browsers-implementing-the-upcoming-x-domain-xmlhttprequest3Is WebKit among those browsers implementing the upcoming x-domain XMLHttpRequest features?kamens2009-02-13T04:01:15Z2009-02-20T20:06:45Z
<p>Many of the upcoming generation of browsers (FF 3.1, IE8) are going to support cross-domain XMLHttpRequests in one fashion or other (with security concerns, as long as the server opts in, etc). </p>
<p>Is the same bit of functionality going to be in WebKit?</p>
<p>FF: <a href="https://developer.mozilla.org/en/Cross-Site_XMLHttpRequest" rel="nofollow">https://developer.mozilla.org/en/Cross-Site_XMLHttpRequest</a></p>
<p>IE: <a href="http://blogs.msdn.com/ie/archive/2008/06/23/securing-cross-site-xmlhttprequest.aspx" rel="nofollow">http://blogs.msdn.com/ie/archive/2008/06/23/securing-cross-site-xmlhttprequest.aspx</a></p>
http://stackoverflow.com/questions/470866/how-to-sort-data-table-like-fogbugz-cases-table/543227#5432277Answer by kamens for How to Sort Data Table like FogBugz Cases Tablekamens2009-02-12T21:00:10Z2009-02-14T20:33:11Z<p>Yup, Rich got it (I coded this feature into FogBugz a long while back).</p>
<p>If you have to do this on the client you have no choice but to sort the data, iterate through it generating table row after table row, and every time you hit a new sort value you create a new thead w/ the appropriate information.</p>
<p>To be honest it would be a pretty cool modification to this jQuery plugin: <a href="http://tablesorter.com/docs/" rel="nofollow">http://tablesorter.com/docs/</a> and you'd be able to leverage a <em>lot</em> of their work. If you're going to put in the time and create a general solution, might as well make it accessible to the community.</p>
http://stackoverflow.com/questions/461645/is-it-possible-to-select-multiple-constants-into-multiple-resultset-rows-in-sql0Is it possible to SELECT multiple constants into multiple resultset rows in SQL?kamens2009-01-20T15:00:25Z2009-02-12T22:48:23Z
<p>I know I can "SELECT 5 AS foo" and get the resultset:</p>
<blockquote>
<p><strong>foo</strong></p>
<p>5</p>
<p>(1 row)</p>
</blockquote>
<p>...is there any way to "SELECT 5,6,7 AS foo" and get the resultset:</p>
<blockquote>
<p><strong>foo</strong></p>
<p>5</p>
<p>6</p>
<p>7</p>
<p>(3 rows)</p>
</blockquote>
<p>...I'm well aware that this is not typical DB usage, and any conceivable usage of this is probably better off going w/ a more ordinary technique. More of a technical question.</p>
<p><em>Note: I know I could use a big gross list of UNIONs -- I'm trying to find something else.</em></p>
http://stackoverflow.com/questions/307334/dom-issue-in-safari-with-buttons/435447#4354471Answer by kamens for DOM issue in Safari with buttonskamens2009-01-12T13:49:55Z2009-01-12T13:49:55Z<p>Try giving each input element a name="some_unique_name" attribute -- see if that helps Safari differentiate.</p>
http://stackoverflow.com/questions/425274/prevent-line-paragraph-breaks-in-contenteditable/428139#4281392Answer by kamens for Prevent line/paragraph breaks in contentEditablekamens2009-01-09T14:03:48Z2009-01-09T14:03:48Z<p>You can attach an event handler to the keydown or keypress event for the contentEditable field and cancel the event if the keycode identifies itself as enter (or shift+enter).</p>
<p>This will disable enter/shift+enter completely when focus is in the contentEditable field.</p>
<p>If using jQuery, something like:</p>
<pre><code>$("#idContentEditable").keypress(function(e){ return e.which != 13; });
</code></pre>
<p>...which will return false and cancel the keypress event on enter.</p>
http://stackoverflow.com/questions/257085/javascript-not-running-on-ie/257279#2572791Answer by kamens for Javascript not running on IEkamens2008-11-02T20:00:38Z2008-11-02T20:00:38Z<p>It's not that IE "doesn't have .value" of a <select> element, it's that you <strong>haven't specified any values for your <option> elements</strong>. Firefox, Safari, and co. are likely protecting you from this mistake. Nevertheless, your element should be constructed as:</p>
<pre><code><select ...>
<option value="Imprimir">Imprimir:</option>
<option value="Ficha de pediatria">Ficha de pediatria</option>
<option value="Ficha normal">Ficha normal</option>
</select>
</code></pre>
<p>...and you'll see more standard x-browser behavior for the <select>'s .value property.</p>
http://stackoverflow.com/questions/242813/when-to-use-double-or-single-quotes-in-javascript/243645#24364516Answer by kamens for When to Use Double or Single Quotes in JavaScriptkamens2008-10-28T15:03:37Z2008-10-28T15:03:37Z<p>You want to use single quotes since you'll save bandwidth by not sending the extra pixels ;).</p>
http://stackoverflow.com/questions/145053/javascript-as-a-functional-language/147293#1472932Answer by kamens for Javascript as a functional languagekamens2008-09-29T02:11:27Z2008-09-29T02:11:27Z<p><a href="http://interglacial.com/hoj/hoj.html" rel="nofollow">Higher Order Javascript</a> is a <em>great</em> way to get familiar with the functional aspects of javascript. It's also a relatively short read in case you want to get your feet wet without diving into a larger book.</p>
http://stackoverflow.com/questions/138669/how-can-i-determine-if-a-javascript-variable-is-defined-in-a-page/139631#1396310Answer by kamens for How can I determine if a JavaScript variable is defined in a page?kamens2008-09-26T13:53:35Z2008-09-26T13:53:35Z<p>Assuming your function or variable is defined in the typical "global" (<em>see: <strong>window</strong>'s)</em> scope, I much prefer:</p>
<pre><code>if (window.a != null) {
a();
}
</code></pre>
<p>or even the following, if you're checking for a function's existence:</p>
<pre><code>if (window.a) a();
</code></pre>
http://stackoverflow.com/questions/122546/what-to-do-when-ies-movetoelementtext-spits-out-an-invalid-argument-exception/125172#1251720Answer by kamens for What to do when IE's moveToElementText spits out an Invalid Argument exceptionkamens2008-09-24T03:01:04Z2008-09-24T03:01:04Z<p>I've had the unfortunate experience of debugging this IE exception many different times while implementing a WYSIWYG editor, and it always arises from accessing a property on a DOM node (such as .parentNode) or passing a DOM node to a function (such as moveToElementText) while the DOM node is not currently in the document being rendered.</p>
<p>As you said, sometimes the DOM node is a piece of a document fragment that has been removed from the "actual" DOM being rendered by the browser, and sometimes the node has simply not been inserted yet. <strong>Either way, there are a number of properties and methods on DOM nodes that cannot be safely accessed in IE6 until the node has been properly inserted and rendered in the "actual" DOM.</strong></p>
<p>The real kicker is that often this manifestation of IE6's "Invalid Argument" exception cannot be protected by try/catch.</p>
http://stackoverflow.com/questions/120804/difference-between-array-slice-and-array-slice/121302#1213026Answer by kamens for Difference between Array.slice and Array().slicekamens2008-09-23T14:22:51Z2008-09-23T14:22:51Z<p>Not quite.</p>
<p>Watch what happens when you call String.substring.call("foo", 1) and String().substring.call("foo", 2):</p>
<pre><code>>>> String.substring.call("foo", 1)
"1"
>>> String().substring.call("foo", 1)
"oo"
</code></pre>
<p>Array.slice is <em>neither</em> properly referencing the slice function attached to the Array prototype nor the slice function attached to any instantiated Array instance (such as Array() or []).</p>
<p>The fact that Array.slice is even non-null at all is an incorrect implementation of the object (/function/constructor) itself. <strong>Try running the equivalent code in IE and you'll get an error that Array.slice is null</strong>.</p>
<p>This is why Array.slice does not behave correctly (nor does String.substring).</p>
<p>Proof (the following is something one should never expect based on the definition of slice()...just like substring() above):</p>
<pre><code>>>> Array.slice.call([1,2], [3,4])
3,4
</code></pre>
<p>Now, if you properly call slice() on either an instantiated object <em>or</em> the Array prototype, you'll get what you expect:</p>
<pre><code>>>> Array.prototype.slice.call([4,5], 1)
[5]
>>> Array().slice.call([4,5], 1)
[5]
</code></pre>
<p>More proof...</p>
<pre><code>>>> Array.prototype.slice == Array().slice
true
>>> Array.slice == Array().slice
false
</code></pre>
http://stackoverflow.com/questions/109429/what-is-the-easiest-way-for-a-non-programmer-to-learn-the-basics-of-iphone-app-cr/109456#1094561Answer by kamens for What is the easiest way for a non-programmer to learn the basics of iPhone App creation?kamens2008-09-20T21:20:42Z2008-09-20T21:20:42Z<p>Join the <a href="http://developer.apple.com/iphone/" rel="nofollow">iPhone Dev program</a> and read through their code samples (they are simple) as well as their guides (very helpful). I know of no other way.</p>
http://stackoverflow.com/questions/86905/suggestions-on-how-build-an-html-diff-tool/86975#86975-1Answer by kamens for Suggestions on how build an HTML Diff tool?kamens2008-09-17T19:56:26Z2008-09-17T19:56:26Z<p>See this <a href="http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-html#33500">previous post and accompanying answers</a>.</p>
http://stackoverflow.com/questions/59791/free-online-private-svn-repositories/59808#5980825Answer by kamens for Free Online Private SVN repositorieskamens2008-09-12T19:35:35Z2008-09-12T19:35:35Z<p>I personally have no complaints with <a href="http://beanstalkapp.com/" rel="nofollow">Beanstalk</a>. Simple and free.</p>
http://stackoverflow.com/questions/53802/what-is-the-best-tool-to-benchmark-my-javascript/54121#541215Answer by kamens for What is the best tool to benchmark my JavaScript?kamens2008-09-10T14:07:08Z2008-09-12T16:24:02Z<p><strong><a href="http://getfirebug.com" rel="nofollow">Firebug</a></strong> does include JS profiling, and it is probably the best out there. While I've had problems with Firebug's debugger, its profiler is currently top-of-the-line. <strong><a href="http://www.mozilla.org/projects/venkman/" rel="nofollow">Venkman</a></strong> is also an older JS debugger/profiler for Firefox, just in case you run into Firebug issues.</p>
<p>Using these tools should get you just about all the profiling you need across all browsers even though you'll only be monitoring Firefox. If you truly need to get down to dirty details of IE profiling and the like, there are a number of tools online that inject profiling calls into your javascript to help monitor all profiler-lacking browsers....but even to a JS performance nazi like me, this seems unnecessary.</p>
<p><strong><em>Note:</em></strong> A new, very promising IE8 JS profiler has recently been announced: <a href="http://blogs.msdn.com/ie/archive/2008/09/11/introducing-the-ie8-developer-tools-jscript-profiler.aspx" rel="nofollow">http://blogs.msdn.com/ie/archive/2008/09/11/introducing-the-ie8-developer-tools-jscript-profiler.aspx</a>.</p>
http://stackoverflow.com/questions/46982/javascript-and-css-parsing-performance/47168#471686Answer by kamens for Javascript and CSS parsing performancekamens2008-09-06T01:37:14Z2008-09-06T01:37:14Z<p><strong>Context:</strong> While it's true that HTTP overhead is more significant than parsing JS and CSS, ignoring the impact of parsing on browser performance (even if you have less than a meg of JS) is a good way to get yourself in trouble.</p>
<p>YSlow, Fiddler, and Firebug are not the best tools to monitor parsing speed. Unless they've been updated very recently, they don't separate the amount of time required to fetch JS over HTTP or load from cache versus the amount of time spent parsing the actual JS payload.</p>
<p>Parse speed is slightly difficult to measure, but we've chased this metric a number of times on projects I've worked on and the impact on pageloads were significant even with ~500k of JS. Obviously the older browsers suffer the most...hopefully Chrome, TraceMonkey and the like help resolve this situation.</p>
<p><strong>Suggestion:</strong> Depending on the type of traffic you have at your site, it may be well worth your while to split up your JS payload so some large chunks of JS that will never be used on a the most popular pages are never sent down to the client. Of course, this means that when a new client hits a page where this JS is needed, you'll have to send it over the wire.</p>
<p>However, it may well be the case that, say, 50% of your JS is never needed by 80% of your users due to your traffic patterns. If this is so, you should definitely user smaller, packaged JS payloads only on pages where the JS is necessary. Otherwise 80% of your users will suffer unnecessary JS parsing penalties on <em>every single pageload</em>.</p>
<p><strong>Bottom Line:</strong> It's difficult to find the proper balance of JS caching and smaller, packaged payloads, but depending on your traffic pattern it's definitely well worth considering a technique other than smashing all of your JS into every single pageload.</p>
http://stackoverflow.com/questions/46214/good-ways-to-improve-jquery-selector-performance/46253#4625312Answer by kamens for Good ways to improve jQuery selector performance?kamens2008-09-05T16:39:39Z2008-09-05T16:39:39Z<p>There is no doubt that <strong>filtering by tag name first is much faster</strong> than filtering by classname.</p>
<p>This will be the case until all browsers implement getElementsByClassName natively, as is the case with getElementsByTagName.</p>
http://stackoverflow.com/questions/45374/dealing-with-coders-block-or-blank-form-syndrome/45376#453767Answer by kamens for Dealing with "Coder's Block" (or blank form syndrome)kamens2008-09-05T07:23:39Z2008-09-05T07:23:39Z<p>Write a brief bit of imaginary code that calls or interacts with the block of code you're about to write.</p>
<p>Doesn't even have to be a unit test -- I find that seeing "client code" before writing the actual implementation helps focus my mind.</p>
http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there/34608#3460831Answer by kamens for What is the best quick-read Python book out there?kamens2008-08-29T16:20:20Z2008-08-29T16:20:20Z<p>I loved <a href="http://diveintopython.org" rel="nofollow">Dive Into Python</a>, especially if you're a quick study. The beginning basics are all covered (and may move slowly for you), but the latter few chapters are great learning tools.</p>
<p>Plus, Pilgrim is a pretty good writer.</p>
http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-html/33500#335006Answer by kamens for Anyone have a diff algorithm for rendered HTML?kamens2008-08-28T22:00:34Z2008-08-28T22:00:34Z<p>There's another nice trick you can use to significantly improve the look of a rendered HTML diff. Although this doesn't fully solve the initial problem, it will make a significant difference in the appearance of your rendered HTML diffs.</p>
<p>Side-by-side rendered HTML will make it very difficult for your diff to line up vertically. Vertical alignment is crucial for comparing side-by-side diffs. In order to improve the vertical alignment of a side-by-side diff, you can insert invisible HTML elements in each version of the diff at "checkpoints" where the diff should be vertically aligned. Then you can use a bit of client-side javascript to add vertical spacing around checkpoint until the sides line up vertically.</p>
<p>Explained in a little more detail:</p>
<p>If you want to use this technique, run your diff algorithm and insert a bunch of visibility:hidden s or tiny s wherever your side-by-side versions should match up, according to the diff. Then run javascript that finds each checkpoint (and its side-by-side neighbor) and adds vertical spacing to the checkpoint that is higher-up (shallower) on the page. Now your rendered HTML diff will be vertically aligned up to that checkpoint, and you can continue repairing vertical alignment down the rest of your side-by-side page.</p>
http://stackoverflow.com/questions/28932/best-javascript-compressor/28938#2893819Answer by kamens for Best javascript compressorkamens2008-08-26T19:39:44Z2008-08-26T19:39:44Z<p><a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUICompressor</a> is the way to go...great compression rate, well tested and in use among many top sites, and, well, personally recommended by me.</p>
<p>I've used it for my projects without a single JS error or hiccup. And it has nice documentation.</p>
<p>I've never used its CSS compression capabilities, but they exist as well.</p>
<p>*Note: Although Dean Edwards's /<a href="http://dean.edwards.name/packer/" rel="nofollow">packer</a>/ achieves a better compression rate than YUICompressor, I ran into a few JS errors when using it. *</p>
http://stackoverflow.com/questions/27030/comparing-arrays-of-objects-in-javascript/27932#279322Answer by kamens for Comparing Arrays of Objects in JavaScriptkamens2008-08-26T12:52:12Z2008-08-26T12:52:12Z<p>Honestly, with 8 objects max and 8 properties max per object, your best bet is to just traverse each object and make the comparisons directly. It'll be fast and it'll be easy.</p>
<p>If you're going to be using these types of comparisons often, then I agree with Jason about JSON serialization...but otherwise there's no need to slow down your app with a new library or JSON serialization code.</p>
http://stackoverflow.com/questions/24821/buffer-output/26475#264751Answer by kamens for Buffer Outputkamens2008-08-25T17:37:00Z2008-08-25T17:37:00Z<p>You should make sure that neither IIS nor any other filter is trying to compress your response. It is very possible that your production server has IIS compression enabled for dynamic pages such as those with the .aspx suffix, and your development server does not.</p>
<p>If this is the case, IIS may be waiting for the entire response (or a sizeable chunk) before it attempts to compress and send any result back to the client.</p>
<p>I suggest using <a href="http://www.fiddlertool.com" rel="nofollow">Fiddler</a> to monitor the response from your production server and figure out if responses are being gzip'd.</p>
<p>If response compression does turn out to be the problem, you can instruct IIS to ignore compression for specific responses via the Content-Encoding:Identity header.</p>
http://stackoverflow.com/questions/23620/what-javascript-rich-text-editor-will-not-break-the-browsers-spellcheck/24638#246381Answer by kamens for What Javascript rich text editor will not break the browser's spellcheck?kamens2008-08-23T21:50:09Z2008-08-23T21:50:09Z<p>Most rich text editors let you specify whether or not to disable the browser's spellchecker (as answered by others), with the exception of those running in Safari.</p>
<p>There is currently no way to programmatically disable the Safari spellchecker (as there is in FF and IE7+), so most rich text editors choose to let Safari do its own thing by leaving the browser in control of the context menu.</p>
http://stackoverflow.com/questions/24579/wysiwyg-editor-gem-for-rails/24619#246193Answer by kamens for WYSIWYG editor gem for Rails?kamens2008-08-23T21:33:41Z2008-08-23T21:33:41Z<p>I'm not sure about a Ruby Gem, but <a href="http://tinymce.moxiecode.com" rel="nofollow">TinyMCE</a> is a customizable, generally stable WYSIWYG editor that is fairly simple to integrate w/ any project. I've used it a number of times.</p>
http://stackoverflow.com/questions/1546046/sqlbulkcopy-into-table-with-composite-primary-key/1546112#1546112Comment by kamens on SqlBulkCopy into table with composite primary keykamens2009-10-09T22:02:00Z2009-10-09T22:02:00ZYou and Majkara are correct. I am using Linq-to-SQL, and a foreign key dependency was being walked during DB.SubmitChanges() that inserted these foreign rows ahead of the SqlBulkCopy in my path of execution...even though I hadn't explicitly added the rows themselves.http://stackoverflow.com/questions/1546046/sqlbulkcopy-into-table-with-composite-primary-key/1546112#1546112Comment by kamens on SqlBulkCopy into table with composite primary keykamens2009-10-09T21:26:23Z2009-10-09T21:26:23ZThat's what I thought too. However, I have limited the insertion to a single row of values that I <b>know</b> are not yet in the database table.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T16:08:59Z2009-07-10T16:08:59ZAs far as I can tell, yes. Identical web.configs. Is there any way to tell what machineKey value is <i>actually</i> being used, in case it's being overridden somewhere that I don't know about? It sure is behaving like AutoGenerate isn't on or isn't working.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T15:49:59Z2009-07-10T15:49:59ZUnfortunately, even w/ a setting of machineKey.validationKey="AutoGenerate,IsolateApps" and machineKey.decryptionKey="AutoGenerate,IsolateApps", this behavior continues.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T15:09:25Z2009-07-10T15:09:25ZYeah, exactly! I agree. So my only question is: why doesn't this happen for one of my IIS configurations? I want it to happen everywhere, because it makes total sense to me. It seems as though in the 2K3 IIS, it's either not using a per-AppDomain value when signing, or is somehow restoring it after App Pool recycle...not sure.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:56:18Z2009-07-10T14:56:18ZI just added the "More debugging information" to the question above which somewhat answers this question. The cookie is still visible in Request.Cookies during FormsAuthenticate_OnAuthenticate...but if the App Pool has been recycled since the cookie was handed out, it is removed from .Cookies after this event is finished.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:38:08Z2009-07-10T14:38:08ZNo, I'm really not. The question is simply this: why does HttpContext.Current.Request.Cookies[".ASPXAUTH"] changes from {System.Web.HttpCookie} to null when I step, in a single request, from Application_BeginRequest to Application_AuthenticateRequest?http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:36:49Z2009-07-10T14:36:49Z...the client obviously still sends the cookie. It's always in the browser and in the request. But it's hidden from the majority of the server-side processing of the request due to this removal.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:35:47Z2009-07-10T14:35:47ZYou'd think so, right? The cookie is not being removed from the server until Application_BeginRequest is finished. I know how ridiculous this sounds, which is why I'm posting this question. I have a debugger up, and when I step from Application_BeginRequest to Application_AuthenticateRequest, the value of HttpContext.Current.Request.Cookies[".ASPXAUTH"] changes from {System.Web.HttpCookie} to null.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalidaComment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:34:23Z2009-07-10T14:34:23ZGood thought -- no, they're both using InProc, unfortunately.http://stackoverflow.com/questions/1106693/machinekey-decryptionkeyautogenerate-being-ignored-by-iis-wont-invalida/1109795#1109795Comment by kamens on <machineKey decryptionKey="AutoGenerate"... being ignored by IIS. Won't invalidate previous session's cookies.kamens2009-07-10T14:21:36Z2009-07-10T14:21:36Z1) Recycling your app pool does recycle your session (if you're using InProc session management), and this apparently <i>does</i> sometimes manipulate the ASPXAUTH cookie (as seen when it is removed after the BeginRequest event).
2) I'll make my question more clear by indicating "browser session."
From MS documentation:
createPersistentCookie
Type: System.Boolean
true to create a durable cookie (one that is saved across browser sessions); otherwise, false.http://stackoverflow.com/questions/449607/point-to-localhost-sqlexpress-using-only-localhost/449656#449656Comment by kamens on Point to localhost\sqlexpress using only localhostkamens2009-06-24T21:19:28Z2009-06-24T21:19:28ZI love StackOverflow. Thank you!http://stackoverflow.com/questions/987105/asp-net-mvc-routing-vs-reserved-filenames-in-windowsComment by kamens on ASP.NET MVC Routing vs. Reserved Filenames in Windowskamens2009-06-12T15:09:30Z2009-06-12T15:09:30ZFor fun, hit <a href="http://stackoverflow.com/com1" rel="nofollow">stackoverflow.com/com1</a> and compare to <a href="http://stackoverflow.com/ThisDoesNotExist" rel="nofollow">stackoverflow.com/ThisDoesNotExist</a>http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows/309783#309783Comment by kamens on How to setup setuptools for python 2.6 on Windows?kamens2009-05-07T18:23:42Z2009-05-07T18:23:42ZOption #2 worked great for me. Maybe remove option #1 since it doesn't seem to have worked for any commenter?http://stackoverflow.com/questions/544658/is-webkit-among-those-browsers-implementing-the-upcoming-x-domain-xmlhttprequest/544668#544668Comment by kamens on Is WebKit among those browsers implementing the upcoming x-domain XMLHttpRequest features?kamens2009-02-13T13:30:00Z2009-02-13T13:30:00ZAgreed that the standards are important, but it's certainly up to the browsers to decide which pieces they'll be implementing (or how closely they'll be sticking to standards)...
JSONP: Unfortunately, this is far more brittle than I'm hoping, and it lacks Access Control security. <a href="http://is.gd/jpOR" rel="nofollow">is.gd/jpOR</a>