User annakata - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:40:30Z http://stackoverflow.com/feeds/user/13018 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1926780/about-events-to-textbox-and-div/1926812#1926812 0 Answer by annakata for About Events to Textbox and Div annakata 2009-12-18T07:18:28Z 2009-12-18T07:18:28Z <p>If the elements are nested the event will <a href="http://www.quirksmode.org/js/events%5Forder.html" rel="nofollow">bubble</a> up (if you aren't cancelling it) so:</p> <pre><code>&lt;div onclick="foo()"&gt; &lt;input type="text" onclick="bar()" /&gt; &lt;/div&gt; </code></pre> <p>Will result in a call to <code>bar</code> then <code>foo</code>. This is a bit of a kludge though since you don't really want to have inline event binding if you can help it. This is one of those cases where use jquery might be appropriate since <code>$('#mydiv, #myinput').click(baz)</code> is quite clean.</p> http://stackoverflow.com/questions/1861616/reset-style-properties-of-an-html-element-to-stylesheet-defined-defaults/1861644#1861644 0 Answer by annakata for Reset style properties of an HTML element to stylesheet-defined defaults? annakata 2009-12-07T17:44:24Z 2009-12-07T17:44:24Z <p>No, you would have to define all the properties individually. CSS knows to apply the rule (and in what order), but the rule is a whitelist of properties to change, not a blacklist of things to undo.</p> <p>May I ask <em>why</em> you want this?</p> http://stackoverflow.com/questions/537632/should-i-use-semi-colons-in-javascript/537667#537667 10 Answer by annakata for Should I use semi-colons in javascript? annakata 2009-02-11T16:36:57Z 2009-12-04T21:02:07Z <p><strong>Use them. Use them constantly.</strong></p> <p>It's far too easy to have something break later on because you neglected a semi-colon and it lost the whitespace which saved it before in a compression/generation/eval parse.</p> http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320778#320778 0 Answer by annakata for Language features you should never use? annakata 2008-11-26T14:02:20Z 2009-11-26T23:04:57Z <p>JavaScript one: never prototype against object.</p> http://stackoverflow.com/questions/1795123/regex-how-to-retrieve-all-lines-containing-stra-but-not-strb/1795173#1795173 1 Answer by annakata for Regex: How to retrieve all lines containing strA, but not strB annakata 2009-11-25T07:12:32Z 2009-11-25T07:12:32Z <p>You'd use <a href="http://www.regular-expressions.info/lookaround.html" rel="nofollow">Negative lookarounds</a> but the expression is very complex if you don't know the expected position (or even order) of the terms. <em>Do</em> you know the order or pattern?</p> <p>Otherwise I'd advise you to use another tool which could just as easily loop (or list comp) through a file line by line and do inStr or Contains or other simple, <em>faster</em>, logical tests...</p> http://stackoverflow.com/questions/1747039/jquery-animate-on-hover/1747059#1747059 0 Answer by annakata for Jquery Animate on Hover annakata 2009-11-17T06:57:19Z 2009-11-17T06:57:19Z <p>Sounds like you want to bind to mousemove not hover, but also create a handler for mouseout like <code>$(foo).mouseout(function(){$(this).stop();})</code> to terminate the animations.</p> http://stackoverflow.com/questions/442918/dependency-injecting-an-httpmodule 1 Dependency Injecting an HTTPModule annakata 2009-01-14T13:25:34Z 2009-11-09T08:46:22Z <p>Google/MyBrain are failing me. Without using a framework (which I'll never get past my colleagues), how do you inject a dependency into an HTTPModule given that you (the programmer) are not in control of creating the instance?</p> <p>Are we into hacking up custom web.config sections + reflection or is there something cleaner I'm not seeing?</p> <p>e.g. using Karl Seguin's <a href="http://codebetter.com/blogs/karlseguin/archive/2006/06/12/146356.aspx" rel="nofollow">example</a> module as a base, and assuming the implementation of an ILogger. .Net 2.0 fwiw </p> <pre><code>public class ErrorModule : IHttpModule { private ILogger injectedLogger; //how to set this? public void Init(HttpApplication application) { application.Error += (new EventHandler(this.application_Error)); } public void Dispose() { /* required by IHttpModule */ } private void application_Error(object sender, EventArgs e) { this.injectedLogger.doStuff(e.ExceptionObject as Exception); } } </code></pre> <p><em>It's things like this make me realise how much I despise MSDN.</em></p> http://stackoverflow.com/questions/1665660/ideal-class-name-for-static-class-for-misc-functionalities/1665674#1665674 2 Answer by annakata for Ideal class name for static class for misc functionalities annakata 2009-11-03T06:59:19Z 2009-11-03T06:59:19Z <p>My general feeling is that one should not have such a general class. Email in particular is quite likely to expand to more than just a SendEmail() method and frankly <code>new Email({to, subject, body}).Send()</code> makes a lot more OO sense.</p> http://stackoverflow.com/questions/1605295/a-beginners-question-on-web-technologies/1605317#1605317 2 Answer by annakata for A beginner's question on web technologies. annakata 2009-10-22T06:16:52Z 2009-10-22T08:48:40Z <p>1). I personally would advise you go with Ruby, Java or .NET but stick to one whilst learning, preferably the one closest to he language you know already, which for you means .NET (C#?). I wouldn't recommend PHP under any circumstances but plenty would.</p> <p>2). Yes, a blog is a good starter project.</p> <p>3). Just get yourself a good text editor for starters. IDEs make a hash of HTML/CSS/JS which is what you'll be doing a lot of too. But you can stay on the free side by getting a copy of <a href="http://www.microsoft.com/exPress/" rel="nofollow">Visual Web Developer Express Edition</a>.</p> <p>4). Get seriously aware of HTTP, HTML, CSS + JS. In fact don't even think about dynamic pages until you have static pages down solid. <em>Then</em> add dynamic functionality.</p> <p><em>Addendum:</em> </p> <p>From my experience of colleagues who have taken the path you're taking, desktop development teaches you a number of bad habits for web development that you're going to need to unlearn. Specifically: assumptions about state, client vs server, concurrency, and - both most and least serious - <strong>inline styling</strong>. Bad. Bad. Bad. </p> <p>A solid understanding of HTTP helps clear some of those, and learning CSS (as an effective way of learning the value of separation of concerns) helps with the latter. Concurrency is something most frameworks will take you 90% of the way with but it's always going to be up to you to think about when and how to apply it.</p> <p>Given further thought I would ultimately recommend you stay in .NET land (the ASP.NET pipeline model and C# as a whole are solid and mind-blowing respectively) and get yourself express and download ASP.NET MVC extensions for it - the WebForms model is pretty widely reviled by web developers for a reason, but coming from a desktop background it might be more immediate for you. At the expense of settling you into those bad habits I mentioned.</p> http://stackoverflow.com/questions/1596472/how-do-you-work-on-strategic-development-initiatives-when-tactical-work-takes-pri/1596577#1596577 3 Answer by annakata for How do you work on Strategic Development initiatives when Tactical work takes priority? annakata 2009-10-20T18:44:55Z 2009-10-20T18:44:55Z <p>This isn't what you want to hear and it isn't advice <em>per se</em>, but my experience has been that the only way strategic work gets done is if I take it upon myself to do that work in whatever gaps in the tactical load I can get. (Hopefully you're good enough to fulfil your tactical duties ahead of schedule to make such gaps for yourself).</p> <p>Recognition - <em>if</em> it comes - comes after you've done it already and can say "See what I did here? This is awesome and will save/make us money". Obviously my experience is tainted by ineffectual management, and I'm taking a risk that the powers that be won't blindly shout at me for doing this without their approval but it's worked so far. After all, the strategic is for your own benefit as much as theirs. </p> http://stackoverflow.com/questions/470097/how-to-represent-a-c-property-in-uml 2 How to represent a C# property in UML? annakata 2009-01-22T17:33:28Z 2009-10-19T14:21:46Z <p>Not quite an Attribute, not quite a Method. Stereotypes? <code>&lt;&lt;get&gt;&gt;</code> <code>&lt;&lt;set&gt;&gt;</code>?</p> <p><hr /></p> <p><em>I'm retro-modelling an existing system, so I need to clearly reflect that this is not the same as a readonly field or a methods pair (regardless of what the IL says), so I think I'll go with the stereotype, but I'll accept the language independant get</em> set_ as a general solution. Thanks all for the sanity test.*</p> http://stackoverflow.com/questions/330430/how-do-you-structure-your-source-code 2 How do you structure your source code? annakata 2008-12-01T10:14:06Z 2009-10-17T20:05:10Z <p><em>(I'm asking this with Visual Studio Web Applications in mind, but am interested in more high-concept answers)</em></p> <p>Recent topic of conversation in my life with colleagues and friends has been how best to structure source files within a project. Not a source-control question or a development-environment question <em>per se</em>, I'm more interested in how people choose to group, name or otherwise manage their projects.</p> <p>The way I'm working right now is based on a ruleset.</p> <ul> <li>web.config + global.asax at the root</li> <li>web surface pages at the root</li> <li>deeper web content in appropriately nested folders</li> <li>resource files (css, js, images, transforms, error pages, config) in a "resources" directory then nested by type</li> <li>non-codebehind classes in namespace appropriate folders prefixed with an underscore (so they are grouped at the top of VS's project explorer)</li> <li>generic utilities (config reader, xslt manager, DAL) in a "_utils" folder.</li> <li>abstract classes also prefixed with an underscore (so they are grouped at the top of a folder)</li> </ul> <p>Unfortunately this has broken a bit since I introduced unit-testing and interfaces to the company, and all too often results in a ubiquitous "businessobjects" namespace, hence the conversation/debate/sulk :)</p> <p>So how do you handle this? I've heard of teams who create "Interface" folders, who create a folder for each custom object base-class, or even who dump all the code in the root and prefix filenames ($ for structs, "C" for classes, "A" for abstracts). Obviously what works for one project type won't necessarily for another, but are there best-practices common to all?</p> http://stackoverflow.com/questions/1580190/challenges-when-designing-large-websites/1580220#1580220 2 Answer by annakata for Challenges when Designing Large Websites? annakata 2009-10-16T20:27:09Z 2009-10-16T20:27:09Z <p>In my experience - and I think Jeff has said as much - the problems with writing a large-scale, public facing, high-traffic site is not a technical one. Solid scaling architecture, maintainability, language issues - they're all fixed by getting good programmers, that's not the problem. </p> <p>What's really hard is planning for and solving the user experience issues, especially the social ones. Developer experience helps, but new products create new problems and what the developer feels is the right solution may not be the same as what the audience wants.</p> http://stackoverflow.com/questions/1562313/xslt-node-traversal/1562353#1562353 0 Answer by annakata for XSLT node Traversal annakata 2009-10-13T19:18:21Z 2009-10-13T19:18:21Z <p>XSLT is just one of the tools in the box, and nothing without <a href="http://www.w3schools.com/XPath/default.asp" rel="nofollow">XPath</a>. </p> http://stackoverflow.com/questions/1562128/how-can-i-get-a-json-object-from-a-mssql-table/1562198#1562198 1 Answer by annakata for How can I get a JSON object from a MSSQL table? annakata 2009-10-13T18:46:43Z 2009-10-13T18:46:43Z <p>I imagine this can be done, but it seems like an extremely long-winded and error-prone way of achieving the desired result. </p> <p>If I were you I'd break down the problem into look at the ORM technology of your middle tier framework (ASP.NET I assume?) and then serialise to JSON again from the framework. Failing framework support (i.e. you aren't in .NET 3+) I'd <em>still</em> favour serialising the database to XML and then XSLT transforming the XML to JSON since XML is much <em>much</em> easier to work with on the server.</p> <p>The name of the game is separation of concerns.</p> http://stackoverflow.com/questions/529551/how-can-i-remove-item-from-querystring-in-asp-net-using-c/1536488#1536488 0 Answer by annakata for How can i remove item from querystring in asp.net using c# ? annakata 2009-10-08T08:45:16Z 2009-10-08T08:45:16Z <p>My personal preference here is rewriting the query or working with a namevaluecollection at a lower point, but there are times where the business logic makes neither of those very helpful and sometimes reflection really is what you need. In those circumstances you can just turn off the readonly flag for a moment like so:</p> <pre><code>// reflect to readonly property PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic); // make collection editable isreadonly.SetValue(this.Request.QueryString, false, null); // remove this.Request.QueryString.Remove("foo"); // modify this.Request.QueryString.Set("bar", "123"); // make collection readonly again isreadonly.SetValue(this.Request.QueryString, true, null); </code></pre> http://stackoverflow.com/questions/1515884/using-javascript-to-truncate-text-to-a-certain-size-8-kb/1515910#1515910 0 Answer by annakata for Using JavaScript to truncate text to a certain size (8 KB) annakata 2009-10-04T08:23:52Z 2009-10-04T08:23:52Z <p>As Dominic says, character encoding is the problem - however if you can either <em>really</em> ensure that you'll only deal with 8-bit chars (unlikely but possible) or assume 16-bit chars and limit yourself to half the available space, i.e. 4096 chars then you could attempt this.</p> <p>It's a bad idea to rely on JS for this though because it can be trivially modified or ignored and you have complications of escape chars and encoding to deal with for example. Better to use JS as a first-chance filter and use whatever server-side language you have available (which will also open up compression).</p> http://stackoverflow.com/questions/1515873/shifting-a-piece-of-text-down-using-css/1515882#1515882 1 Answer by annakata for shifting a piece of text down using CSS annakata 2009-10-04T08:06:22Z 2009-10-04T08:06:22Z <p>Use <code>padding-top:6px;</code> instead of positioning, which can get very messy with relation to sibling elements etc.. and has other-side effects.</p> http://stackoverflow.com/questions/1514678/what-are-the-must-know-algorithm-for-cs-graduate-software-engineer/1514731#1514731 0 Answer by annakata for What are the must know algorithm for CS Graduate/Software Engineer ? annakata 2009-10-03T20:16:04Z 2009-10-03T20:16:04Z <p>In my humble opinion and experience, real world programming is ever less about writing algorithms and ever more about modelling systems and comprehending <em>exactly</em> what the question being asked actually is. Obviosly knowing your way around a bubble or a quick sort is a good thing, but it's not exactly something you're going to worry about every day.</p> <p>This is a consequence of the development of higher abstractions and solid frameworks, and this is how it should be really - after all how many times does a sorting algorithm really need to be written?</p> http://stackoverflow.com/questions/1513373/what-are-the-advantages-of-using-prolog-over-other-languages/1513401#1513401 2 Answer by annakata for What are the advantages of using Prolog over other languages? annakata 2009-10-03T10:12:52Z 2009-10-03T10:12:52Z <p>Compared to what exactly? Prolog is really just the pre-eminent implementation of logic programming so if your question is really about a comparison of programming paradigms well that's really very broad indeed and you should look <a href="http://en.wikipedia.org/wiki/Programming%5Fparadigm" rel="nofollow">here</a>.</p> <p>If your question is more specifically about prolog vs the more commonly seen OO languages I would argue that you're really comparing apples to oranges - the "advantage" (such as it is) is just a different way of thinking about the world, and sometimes changing the way you ask a question provides a better tool for solving a problem.</p> http://stackoverflow.com/questions/1506402/what-is-the-coolest-most-fun-area-to-learn-as-a-c-programmer/1506535#1506535 2 Answer by annakata for What is the coolest/most fun area to learn as a c# programmer? annakata 2009-10-01T21:14:24Z 2009-10-01T21:14:24Z <p>Cute question - I find almost everything in C# fun, sure sign of an exceptionally beautiful language. Gotta say though that the <strong>generics</strong> implementation and knowing how they work under the hood just makes me want to stand up and applaud. </p> <p>And the <strong>yield</strong> keyword? Wow.</p> http://stackoverflow.com/questions/1506143/extending-javascript-with-keywords/1506167#1506167 2 Answer by annakata for Extending javascript with keywords annakata 2009-10-01T20:08:47Z 2009-10-01T20:08:47Z <p>You can't add keywords to the language but everything is an object and everything can be extended with prototyping.</p> <p>I wouldn't normally link to crockford but he actually has <a href="http://www.crockford.com/javascript/inheritance.html#sugar" rel="nofollow">quite a decent coverage of this </a>, which will afford you syntax of the form <code>foo.inherits(bar);</code> which is about as good as one could wish for. This is quite a common pattern.</p> http://stackoverflow.com/questions/1502120/why-when-compared-to-growth-of-hardware-industry-growth-in-software-industry-lo/1502156#1502156 2 Answer by annakata for Why, when compared to growth of hardware industry, growth in software industry looks very stagnant ? annakata 2009-10-01T06:10:28Z 2009-10-01T06:10:28Z <p>The question is absurd.</p> <p>A). What possible metric are you using to make this judgement?</p> <p>B). 40 years? Are you serious? You don't think the advent of the internet has <em>completely</em> revolutionised software development? 40 years ago cutting edge meant C and Fortran and maybe not using punchcards still. It's unrecognisable compared to the OOP, AOP, patterned, highly-abstracted, agile rapid-dev, cloud inhabiting, browser-centric, rich user-experience, IDE driven development world we're all working in today. And I'm not even beginning to scratch the surface here.</p> <p>I would go so far as to say that if there have been advances in hardware it has been because of advances in software demanding it.</p> http://stackoverflow.com/questions/1489215/why-wont-my-classic-asp-page-run-in-the-root-of-my-asp-net-app/1489264#1489264 0 Answer by annakata for Why won't my classic ASP page run in the root of my ASP.NET app? annakata 2009-09-28T20:45:08Z 2009-09-28T20:45:08Z <p>There should be no problem running them side by side (though crossover is essentially impossible) so it sounds like IIS is not configured to handle classic ASP requests. Check your IIS config (iirc, web service extensions > ASP > Checkbox) is set appropriately. </p> <p>If that fails can you recreate the one part as a virtual directory with it's own config within the site?</p> http://stackoverflow.com/questions/1483253/alternative-to-dreamweaver/1483298#1483298 0 Answer by annakata for Alternative to Dreamweaver? annakata 2009-09-27T10:34:04Z 2009-09-27T10:34:04Z <p>Every web developer should be hand-writing their mark-up - all forms of automated abstraction inhibit your understanding and awareness of the code and create maintenance problems for the future. I'm quite a zealot about this, you may be able to tell.</p> <p>On that basis, I can heartily recommend <a href="http://www.editplus.com/" rel="nofollow">Editplus</a>: has code colouring, FTP and a huge amount of feature-sugar from line duplication to macros.</p> http://stackoverflow.com/questions/1468522/xslt-to-operate-on-element-value-before-displaying/1468574#1468574 4 Answer by annakata for xslt to operate on element value before displaying? annakata 2009-09-23T21:21:42Z 2009-09-23T21:21:42Z <p><code>upper-case</code> is an XSLT 2.0 function. If you happen to have a 2.0 stylesheet (which the example is not) and engine to transform it then using it is as simple as:</p> <pre><code>&lt;xsl:value-of select="upper-case(title)"/&gt; </code></pre> <p>However, in the sadly still more common 1.0 your best plan is to use one of:</p> <ul> <li>a custom extension (platform varying)</li> <li>the tedious xslt translate function as <code>translate(title,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')</code> which is crude and problematic with I18N</li> <li>CSS's simple <code>text-transform:uppercase;</code> (generally the best solution because this is usually a style issue not a data issue)</li> </ul> http://stackoverflow.com/questions/1462188/xsd-useoptional/1462260#1462260 1 Answer by annakata for XSD use="optional" annakata 2009-09-22T19:58:41Z 2009-09-22T19:58:41Z <p>IIRC this sort of thing is intended to be handled by <a href="http://www.w3.org/TR/xmlschema-0/#Nils" rel="nofollow">nillable types</a> but the implementation is not very practical ultimately.</p> http://stackoverflow.com/questions/1455926/xml-attributes-vs-xml-inside-properties/1455974#1455974 3 Answer by annakata for Xml attributes vs Xml inside properties? annakata 2009-09-21T18:14:07Z 2009-09-21T18:14:07Z <p>Ok, first of all the first form isn't XML with that comma and without quotes.</p> <p>Secondly, you're talking about <strong>attributes vs child elements</strong> and this is already covered <a href="http://stackoverflow.com/questions/33746/xml-attribute-vs-xml-element">here</a>, <a href="http://stackoverflow.com/questions/825147/xml-attributes-or-children">here</a>, <a href="http://stackoverflow.com/questions/594656/in-xml-when-should-one-use-an-attribute-versus-a-child-node">here</a> and many times over <a href="http://www.google.co.uk/search?hl=en&amp;q=+xml+attributes+vs+child+elements" rel="nofollow">elsewhere</a>.</p> <p>Finally, door #2 is not a data structure of any reasonable kind anyway. Generally: use attributes where the relationship is meta-data, use child elements where the relationship is composition.</p> http://stackoverflow.com/questions/1453043/zero-based-month-numbering/1453069#1453069 4 Answer by annakata for Zero-based month numbering annakata 2009-09-21T06:13:22Z 2009-09-21T12:02:30Z <p>Yes, the Romans had problems with zero as well.</p> <p>This is <strike>just</strike> a [non-intuitive] consequence of mathematics (being a strong component of programming, especially early programming) defining zero as the first (problematic term that one) real, <strike>positive</strike>* natural number, and since an array is indexed with real, natural numbers the "first" element is at index 0.</p> <p>Months are really named values in an array, where days and years are numbered values - it would perhaps be more useful to think of days/years as being in arrays which look like { "1", "2", "3", ... } themselves.</p> <p>As to why this is so common (apart from being mathematically correct) well all the languages you listed descend from a common origin for one thing...</p> <p>Edit:</p> <p>Looking further into it, this <a href="http://en.wikipedia.org/wiki/0%5F%28number%29#Numbering%5Ffrom%5F1%5For%5F0.3F" rel="nofollow">wikipedia</a> link details several good and interesting reasons for zero indexing (which does not directly speak to why months are zero-indexed but I think that's covered already), and this <a href="http://stackoverflow.com/questions/344380/why-is-january-month-0-in-java-calendar">SO</a> link has answered the question before.</p> <p>Looks like the prevailing opinion is either "historical accident" or "because months are not numbers so cannot be compared to day/year storage" depending on who you ask.</p> <p><em>* Sorry, sorry, physics!=maths coming back to bite me there. Off to iron my hands now.</em></p> http://stackoverflow.com/questions/1446559/css-two-element-table-aligned-nicely/1446630#1446630 2 Answer by annakata for CSS: Two-element "table" aligned nicely annakata 2009-09-18T20:18:51Z 2009-09-18T20:18:51Z <p>Pixel perfect doesn't exist - you simply don't have that kind of control over the range of browsers out there, and nor is it profitable for you to attempt to make it so. Diminishing returns, thy name is IE6.</p> <p>Fwiw, it also sounds likely that you would do better here to simply have a list (<code>&lt;ul&gt;</code>) with list-style-type set to none and using background images to display your 20x20 icons.</p> http://stackoverflow.com/questions/1926780/about-events-to-textbox-and-div/1926803#1926803 Comment by annakata on About Events to Textbox and Div annakata 2009-12-18T07:18:57Z 2009-12-18T07:18:57Z -1 failure to exploit bubbling as appropriate http://stackoverflow.com/questions/1926750/scope-issues-on-callbacks-in-jquery/1926763#1926763 Comment by annakata on scope issues on callbacks in jquery annakata 2009-12-18T07:09:58Z 2009-12-18T07:09:58Z (and please don't edit the original content of the question like that, it decontextualises the answers and means it's not very useful for future readers) http://stackoverflow.com/questions/1926750/scope-issues-on-callbacks-in-jquery/1926763#1926763 Comment by annakata on scope issues on callbacks in jquery annakata 2009-12-18T07:07:48Z 2009-12-18T07:07:48Z you haven't made the necessary corrections - the <i>function</i> is not spelled the same as the references in your search objects (which are now consistent) http://stackoverflow.com/questions/1903906/xslt-1-0-group-by/1903953#1903953 Comment by annakata on XSLT 1.0 Group By annakata 2009-12-14T22:28:46Z 2009-12-14T22:28:46Z muench is the magic word :) http://stackoverflow.com/questions/453880/how-many-developers-are-there-in-the-world/454146#454146 Comment by annakata on How many developers are there in the world? annakata 2009-12-11T11:33:27Z 2009-12-11T11:33:27Z Apropos of nothing I tell you. NOTHING! http://stackoverflow.com/questions/1876333/how-long-does-it-take-to-get-an-iphone-app-into-the-app-store Comment by annakata on How long does it take to get an iPhone app into the App Store? annakata 2009-12-09T19:46:28Z 2009-12-09T19:46:28Z 6-8 weeks //.... http://stackoverflow.com/questions/1861616/reset-style-properties-of-an-html-element-to-stylesheet-defined-defaults/1861646#1861646 Comment by annakata on Reset style properties of an HTML element to stylesheet-defined defaults? annakata 2009-12-07T18:10:09Z 2009-12-07T18:10:09Z Even jquery still needs to know the classes/styles you want to reset. http://stackoverflow.com/questions/496062/how-does-one-get-experience-in-a-technology-that-they-have-no-opportunity-to-us/496084#496084 Comment by annakata on How does one "get experience" in a technology that they have no opportunity to use at work? annakata 2009-12-04T21:01:47Z 2009-12-04T21:01:47Z <i>PLEASE</i> explain how you downvote an opinion? It says subjective right in the question dammit. http://stackoverflow.com/questions/537632/should-i-use-semi-colons-in-javascript/537667#537667 Comment by annakata on Should I use semi-colons in javascript? annakata 2009-12-04T20:59:06Z 2009-12-04T20:59:06Z Frankly I'm baffled at the attention (to a closed year old question) and the hostility. The answer is strictly not &quot;just flat out wrong&quot; because the point is that using semicolons is a good thing, and this is the majority opinion by far. As for the spec, yeah looks like I'm wrong - I lazily went by 7.9.1.1 (&quot;The offending token is }.&quot;) without checking the function grammars as well. I will say that I have run this in NN4, IE4 and IE5.0 <i>without success</i> though. Offending code removed, perhaps one or two of todays dozen downvotes can likewise be removed now? http://stackoverflow.com/questions/537632/should-i-use-semi-colons-in-javascript/537667#537667 Comment by annakata on Should I use semi-colons in javascript? annakata 2009-12-02T19:52:33Z 2009-12-02T19:52:33Z You have something of a point. The example <i>can</i> work because modern javascript engines are very <i>very</i> good and insert virtual semi-colons where they <i>should</i> exist, but the example is supposed to fail by spec and will do so in older browsers, which is admittedly an ever-decreasing problem, but you must also bear in mind that one day we may experience an XHTML-esque move towards standards and are you still writing &lt;br&gt;? http://stackoverflow.com/questions/1828417/set-styles-per-div/1828443#1828443 Comment by annakata on Set styles per div annakata 2009-12-01T19:52:48Z 2009-12-01T19:52:48Z -1 please don't do this, inline styles are toxic. You'll be killing yourself debugging and maintaining the lack of abstraction. http://stackoverflow.com/questions/1795123/regex-how-to-retrieve-all-lines-containing-stra-but-not-strb/1795173#1795173 Comment by annakata on Regex: How to retrieve all lines containing strA, but not strB annakata 2009-11-25T20:10:56Z 2009-11-25T20:10:56Z the problem is expressing logic http://stackoverflow.com/questions/1795123/regex-how-to-retrieve-all-lines-containing-stra-but-not-strb/1795152#1795152 Comment by annakata on Regex: How to retrieve all lines containing strA, but not strB annakata 2009-11-25T07:09:39Z 2009-11-25T07:09:39Z a). that doesn't really seem in the spirit of what the OP is asking, since it's not a regex in and of itself and b). you really should explain what the terms are in the statement http://stackoverflow.com/questions/1781421/how-to-style-form-elements-unobtrusively-with-javascript-and-css/1781476#1781476 Comment by annakata on How to style form elements unobtrusively with JavaScript and CSS? annakata 2009-11-23T07:06:32Z 2009-11-23T07:06:32Z @jitendra - you'll have to explain why. If you can't add class to the markup you are severely crippled and if you can't do that why on earth can you add JS or CSS? http://stackoverflow.com/questions/1759604/how-to-set-time-in-ajax-slider-controls-maximam-or-minimum-value-properties-in Comment by annakata on how to set time in ajax slider control's maximam or minimum value properties? in asp.net annakata 2009-11-18T22:57:19Z 2009-11-18T22:57:19Z those are sentences?