User annakata - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:40:30Zhttp://stackoverflow.com/feeds/user/13018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1926780/about-events-to-textbox-and-div/1926812#19268120Answer by annakata for About Events to Textbox and Divannakata2009-12-18T07:18:28Z2009-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><div onclick="foo()">
<input type="text" onclick="bar()" />
</div>
</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#18616440Answer by annakata for Reset style properties of an HTML element to stylesheet-defined defaults?annakata2009-12-07T17:44:24Z2009-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#53766710Answer by annakata for Should I use semi-colons in javascript?annakata2009-02-11T16:36:57Z2009-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#3207780Answer by annakata for Language features you should never use?annakata2008-11-26T14:02:20Z2009-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#17951731Answer by annakata for Regex: How to retrieve all lines containing strA, but not strBannakata2009-11-25T07:12:32Z2009-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#17470590Answer by annakata for Jquery Animate on Hoverannakata2009-11-17T06:57:19Z2009-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-httpmodule1Dependency Injecting an HTTPModuleannakata2009-01-14T13:25:34Z2009-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#16656742Answer by annakata for Ideal class name for static class for misc functionalitiesannakata2009-11-03T06:59:19Z2009-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#16053172Answer by annakata for A beginner's question on web technologies.annakata2009-10-22T06:16:52Z2009-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#15965773Answer by annakata for How do you work on Strategic Development initiatives when Tactical work takes priority?annakata2009-10-20T18:44:55Z2009-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-uml2How to represent a C# property in UML?annakata2009-01-22T17:33:28Z2009-10-19T14:21:46Z
<p>Not quite an Attribute, not quite a Method. Stereotypes? <code><<get>></code> <code><<set>></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-code2How do you structure your source code?annakata2008-12-01T10:14:06Z2009-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#15802202Answer by annakata for Challenges when Designing Large Websites?annakata2009-10-16T20:27:09Z2009-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#15623530Answer by annakata for XSLT node Traversal annakata2009-10-13T19:18:21Z2009-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#15621981Answer by annakata for How can I get a JSON object from a MSSQL table?annakata2009-10-13T18:46:43Z2009-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#15364880Answer by annakata for How can i remove item from querystring in asp.net using c# ?annakata2009-10-08T08:45:16Z2009-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#15159100Answer by annakata for Using JavaScript to truncate text to a certain size (8 KB)annakata2009-10-04T08:23:52Z2009-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#15158821Answer by annakata for shifting a piece of text down using CSSannakata2009-10-04T08:06:22Z2009-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#15147310Answer by annakata for What are the must know algorithm for CS Graduate/Software Engineer ?annakata2009-10-03T20:16:04Z2009-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#15134012Answer by annakata for What are the advantages of using Prolog over other languages?annakata2009-10-03T10:12:52Z2009-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#15065352Answer by annakata for What is the coolest/most fun area to learn as a c# programmer?annakata2009-10-01T21:14:24Z2009-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#15061672Answer by annakata for Extending javascript with keywordsannakata2009-10-01T20:08:47Z2009-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#15021562Answer by annakata for Why, when compared to growth of hardware industry, growth in software industry looks very stagnant ?annakata2009-10-01T06:10:28Z2009-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#14892640Answer by annakata for Why won't my classic ASP page run in the root of my ASP.NET app?annakata2009-09-28T20:45:08Z2009-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#14832980Answer by annakata for Alternative to Dreamweaver?annakata2009-09-27T10:34:04Z2009-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#14685744Answer by annakata for xslt to operate on element value before displaying?annakata2009-09-23T21:21:42Z2009-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><xsl:value-of select="upper-case(title)"/>
</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#14622601Answer by annakata for XSD use="optional"annakata2009-09-22T19:58:41Z2009-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#14559743Answer by annakata for Xml attributes vs Xml inside properties?annakata2009-09-21T18:14:07Z2009-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&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#14530694Answer by annakata for Zero-based month numberingannakata2009-09-21T06:13:22Z2009-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#14466302Answer by annakata for CSS: Two-element "table" aligned nicelyannakata2009-09-18T20:18:51Z2009-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><ul></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#1926803Comment by annakata on About Events to Textbox and Divannakata2009-12-18T07:18:57Z2009-12-18T07:18:57Z-1 failure to exploit bubbling as appropriatehttp://stackoverflow.com/questions/1926750/scope-issues-on-callbacks-in-jquery/1926763#1926763Comment by annakata on scope issues on callbacks in jqueryannakata2009-12-18T07:09:58Z2009-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#1926763Comment by annakata on scope issues on callbacks in jqueryannakata2009-12-18T07:07:48Z2009-12-18T07:07:48Zyou 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#1903953Comment by annakata on XSLT 1.0 Group Byannakata2009-12-14T22:28:46Z2009-12-14T22:28:46Zmuench is the magic word :)http://stackoverflow.com/questions/453880/how-many-developers-are-there-in-the-world/454146#454146Comment by annakata on How many developers are there in the world?annakata2009-12-11T11:33:27Z2009-12-11T11:33:27ZApropos of nothing I tell you. NOTHING!http://stackoverflow.com/questions/1876333/how-long-does-it-take-to-get-an-iphone-app-into-the-app-storeComment by annakata on How long does it take to get an iPhone app into the App Store?annakata2009-12-09T19:46:28Z2009-12-09T19:46:28Z6-8 weeks //....http://stackoverflow.com/questions/1861616/reset-style-properties-of-an-html-element-to-stylesheet-defined-defaults/1861646#1861646Comment by annakata on Reset style properties of an HTML element to stylesheet-defined defaults?annakata2009-12-07T18:10:09Z2009-12-07T18:10:09ZEven 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#496084Comment by annakata on How does one "get experience" in a technology that they have no opportunity to use at work?annakata2009-12-04T21:01:47Z2009-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#537667Comment by annakata on Should I use semi-colons in javascript?annakata2009-12-04T20:59:06Z2009-12-04T20:59:06ZFrankly I'm baffled at the attention (to a closed year old question) and the hostility. The answer is strictly not "just flat out wrong" 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 ("The offending token is }.") 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#537667Comment by annakata on Should I use semi-colons in javascript?annakata2009-12-02T19:52:33Z2009-12-02T19:52:33ZYou 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 <br>?http://stackoverflow.com/questions/1828417/set-styles-per-div/1828443#1828443Comment by annakata on Set styles per divannakata2009-12-01T19:52:48Z2009-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#1795173Comment by annakata on Regex: How to retrieve all lines containing strA, but not strBannakata2009-11-25T20:10:56Z2009-11-25T20:10:56Zthe problem is expressing logichttp://stackoverflow.com/questions/1795123/regex-how-to-retrieve-all-lines-containing-stra-but-not-strb/1795152#1795152Comment by annakata on Regex: How to retrieve all lines containing strA, but not strBannakata2009-11-25T07:09:39Z2009-11-25T07:09:39Za). 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 statementhttp://stackoverflow.com/questions/1781421/how-to-style-form-elements-unobtrusively-with-javascript-and-css/1781476#1781476Comment by annakata on How to style form elements unobtrusively with JavaScript and CSS?annakata2009-11-23T07:06:32Z2009-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-inComment by annakata on how to set time in ajax slider control's maximam or minimum value properties? in asp.netannakata2009-11-18T22:57:19Z2009-11-18T22:57:19Zthose are sentences?