User yar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T05:26:47Zhttp://stackoverflow.com/feeds/user/8047http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript0Calling Functions in Objects with Javascriptyar2009-12-08T13:11:26Z2009-12-08T20:38:47Z
<p>I have an object defined like this:</p>
<pre><code>Blah = {
hideTimer:null,
setTimer: function() {
this.hideTimer = window.setTimeout(Blah.killTimer, 500);
// must be done via window due to Greasemonkey
},
killTimer: function() {
log("This? " + this);
},
killTimerPublic: function() {
Blah.killTimer();
}
}
</code></pre>
<p>The problem is that the 'this' in killTimer is <strong>not</strong> set to Blah. If I change the line to say</p>
<pre><code> this.hideTimer = window.setTimeout(Blah.killTimerPublic, 500);
</code></pre>
<p>then the 'this' is pointing to Blah so the hideTimer can be utilized.</p>
<p>Making a 'public' method for each method solves the problem, but there must be an easier solution...?</p>
<p><strong>Note</strong>: This is all in Greasemonkey, but I think it's a general Javascript question.</p>
http://stackoverflow.com/questions/514216/rails-ruby-script-generate-model-where-are-the-docs1Rails: ruby script/generate model, where are the docs?yar2009-02-05T01:51:34Z2009-12-07T00:03:18Z
<p>I am running </p>
<pre><code>ruby script/generate scaffold
</code></pre>
<p>or</p>
<pre><code>ruby script/generate model
</code></pre>
<p>and I know the basic syntax, like</p>
<pre><code>ruby script/generate scaffold Dude name:string face:boolean
</code></pre>
<p>but I do not know things like:</p>
<ul>
<li>should names of variables have
underscores or be camelCased? </li>
<li>what
kind of variable types are
acceptable?</li>
</ul>
<p>Where can I find such information?</p>
<p>THANKS!</p>
<p>P.S. The answers to my two questions would help for now, too :)</p>
http://stackoverflow.com/questions/395512/alternatives-to-mysql-query-browser6Alternatives to MySql Query Browser?yar2008-12-27T22:26:57Z2009-12-05T02:30:07Z
<p>I have been using the <em>MySql Query Browser</em> and [opinion]it has to be the worst UI that I've seen for anything. Ever.[/opinion] But it's free, so it's <strong>great and I love it.</strong></p>
<p>Can anybody recommend any better, free tools for MySql DB admin? I want it to run on my local machine and not in a browser, if possible...</p>
<p><strong>Edit:</strong> I'm on Windows, but if something works on OSX, Windows and Linux, that would be great...</p>
<p><strong>Edit:</strong> I chose a best answer based on my preference after testing. Navicat (PC, Mac, Linux) was best, HeidiSQL is great too (perhaps more complete, but the UI is a bit clumsier), and the rest are relatively annoying (again, for what I need in a UI)... this is pretty subjective, but I think if you try them <strong>all</strong> as I did, you'll agree with my top two choices.</p>
<p><strong>Edit:</strong> After actually trying them out working, HeidiSQL is the best. Again, it's my opinion...</p>
http://stackoverflow.com/questions/1827883/firefox-exension-vs-greasemonkey-script3Firefox Exension vs. Greasemonkey Script?yar2009-12-01T18:13:18Z2009-12-02T04:58:00Z
<p>I've been working on a Firefox extension extension, but it's been slow going (in part because I have no time to work on it). I've got a basic skeleton, verified that I can talk to an external JSON API, modify any webpage when loaded, and show a preferences box. These are all necessary HelloWorlds for the extension I am writing (maybe I don't need the preferences box).</p>
<p>Suddenly it occurred to me that I may be ignoring a much easier way to do it. <a href="http://arantius.com/misc/greasemonkey/script-compiler" rel="nofollow">Since Greasmonkey scripts may be compiled into Firefox Extensions</a>, Greasemonkey might be a better way to go:</p>
<ol>
<li>It could be easier (not sure)?</li>
<li>It could be cross-browser (at least Safari and Firefox)?</li>
<li>Are there limits to Greasemonkey scripts vs. 'native' FF extensions? Can chrome UIs be written? Normal DIVs be popped up? Preferences be stored (I think they can be)?</li>
</ol>
<p><strong>I'm looking for a comparison of Greasemonkey vs. "native" FF extensions. Also, has anyone worked with "compiling" a Greasemonkey script into an FF extension (experiences, problems)?</strong></p>
http://stackoverflow.com/questions/1822715/am-i-reinventing-the-wheel-php-mysql-user-reigstration-and-payment-processing/1822759#18227591Answer by yar for Am I reinventing the wheel? PHP/Mysql User reigstration and payment processing.yar2009-11-30T22:11:55Z2009-11-30T22:11:55Z<p>I really recommend that you check out a CMS like Joomla (which I hated a year ago when I checked it out), Drupal or even WordPress (yes, it's a CMS and not just a blog). Any of them will have UserRegistration and will run on MySql. In addition, payment processing can be done through a plugin: there are tons available on all of these platforms, some free and some pay.</p>
<p>Coding it yourself will be expensive. On the other hand, if you do decide to code it yourself, study existing plugins thoroughly so you know what functionality to include (or not include in the first version).</p>
http://stackoverflow.com/questions/414835/avoid-race-conditions-in-php-on-submit-please-do-not-click-submit-more-than-once4Avoid Race Conditions in PHP on Submit: Please do not click submit more than once!yar2009-01-05T23:02:47Z2009-11-25T11:11:33Z
<p>A while back, online apps used to say, "do not click submit more than once." That's gone now, right? How do you guard against that in, say, PHP?</p>
<p>One solution I'm using involves putting a variable in the Session, so you cannot submit to a page more than once every 10 seconds. That way the database work will have completed so the normal checks can take place. Obviously, this feels like a hack and probably is.</p>
<p><strong>Edit:</strong> Thanks everybody for the Javascript solution. That's fine, but it is a bit of work. 1) It's an input type=image and 2) The submit has to keep firing until the <a href="http://labs.adobe.com/technologies/spry/" rel="nofollow">Spry stuff</a> says it's okay. This edit is just me complaining, basically, since I imagine that after looking at the Spry stuff I'll be able to figure it out.</p>
<p><strong>Edit:</strong> Not that anyone will be integrating with the Spry stuff, but here's my final code using Prototype for the document.getElementByid. Comments welcome!</p>
<pre><code>function onSubmitClick() {
var allValid = true;
var queue = Spry.Widget.Form.onSubmitWidgetQueue;
for (var i=0;i<queue.length; i++) {
if (!queue[i].validate()) {
allValid = false;
break;
}
}
if (allValid) {
$("theSubmitButton").disabled = true;
$("form").submit();
}
}
</code></pre>
<p>For some reason, the second form submit was necessary...</p>
http://stackoverflow.com/questions/1720225/how-to-tween-with-ease-out-a-movie-clip-using-only-action-script-2-0/1754742#17547422Answer by yar for How to tween (with ease out) a movie clip using only Action Script 2.0yar2009-11-18T09:29:49Z2009-11-18T09:29:49Z<p>Although the mx.transitions.Tween class will get you there, I recommend the <a href="http://code.google.com/p/tweener/" rel="nofollow">Tweener</a> library. As the docs say, "it is not tied to specific properties of built-in Classes such as MovieClips or TextFields." Also they have all kinds of cool easing-type curves and so forth.</p>
<p>The examples are awesome and you will able to bring your knowledge forward to AS3 and even Javascript. </p>
<p>Also, I cannot remember what other stuff it does, but I remember tossing out the Tween class on a project about a year ago due to some limits it had, or perhaps because it was cumbersome (or impossible?) to have Tweens fire other Tweens.</p>
http://stackoverflow.com/questions/1661204/how-do-you-organize-your-work/1663054#16630540Answer by yar for How do you organize your work?yar2009-11-02T19:09:14Z2009-11-02T19:09:14Z<p>I will make mine a CW and plug my own free product, <a href="http://www.thekbase.com" rel="nofollow">TheKBase</a> (.Net on Windows only, although I've got a top-secret version in Mono that I'm running since September: I'll give it to anybody who wants it, of course). Once you figure it out, it will organize your work and any other knowledge you may have. <strong>It's a multiple-hierarchical notepad, and saves to XML (and will convert to whatever you want with XSLT).</strong> Several users organize entire academic disciplines with it. I try to get away from it, myself, but I can find nothing better (I was in love with Evernote for a while, but that turned sour).</p>
<p>There's a lot of stuff it doesn't do, of course....</p>
http://stackoverflow.com/questions/1645230/rails-migrations-check-existence-and-keep-going0Rails Migrations: Check Existence and Keep Going?yar2009-10-29T17:12:12Z2009-10-29T17:49:17Z
<p>I was doing this kind of thing in my migrations:</p>
<pre><code>add_column :statuses, :hold_reason, :string rescue puts "column already added"
</code></pre>
<p>but it turns out that, <strong>while this works for SQLite, it does not work for PostgreSQL</strong>. It seems like if the add_column blows up, <strong>even if the Exception is caught,</strong> the transaction is dead and so the Migration can't do any additional work.</p>
<p>Is there any <strong>non-DB sepecific</strong> ways to check if a column or table already exist? Failing that, is there any way to get my rescue block to really work?</p>
http://stackoverflow.com/questions/1639359/netbeans-source-format-can-it-recognize-other-stuff-for-ror-views0Netbeans Source Format: Can It Recognize Other Stuff? (For RoR Views)yar2009-10-28T18:59:13Z2009-10-28T19:16:02Z
<p>I am in love with Netbeans Source->Format feature. Is there any way to get it to recognize stuff in these blocks</p>
<pre><code><% content_for :style do %>
<% end %>
</code></pre>
<p>as CSS? It would also help for autocomplete.</p>
<p>Ditto, of course, for </p>
<pre><code><% content_for :javascript do %>
<% end %>
</code></pre>
<p>blocks.</p>
http://stackoverflow.com/questions/1628229/does-static-imply-no-state/1628389#16283890Answer by yar for Does static imply no stateyar2009-10-27T02:03:14Z2009-10-27T02:03:14Z<p>Beyond rehashing all the definitions of "static" that one can run through, <strong>the answer is "yes."</strong> Static methods may happily modify the state of the Class itself (represented through static variables), and <strong>even</strong> modify the state of instances of the class (notably, when they get passed an instance or set of instances). <strong>However</strong>, most of the time, you will use static methods in cases where no state is changed. The most important example is to find or create an instance (factory methods).</p>
<p><strong>That said, the real answer is "no." In real life</strong> (Web Services over HTTP, for instance, or interaction with any kind of Orb), services never expose their service methods using actual static methods. You usually call static methods to get an instance of the service (or an instance of the service factory, from which you get an instance!), and then work with that. <strong>This is because your service proxy, internally, needs to keep track of where it's at. So while your methods seem stateless to you, they are really not.</strong></p>
<p>Hope this wasn't too confusing :)</p>
http://stackoverflow.com/questions/1625210/how-can-i-get-validation-ifs-to-use-parameters-ruby-on-rails0How can I get validation "ifs" to use parameters (Ruby on Rails)yar2009-10-26T14:39:54Z2009-10-27T01:15:36Z
<p>For conditional validation in Rails, I can do this:</p>
<pre><code>mailed_or_faxed_agenda = Proc.new { |me| me[:agenda_mailed_faxed] }
validates_presence_of :agenda, :if=>!mailed_or_faxed_agenda
</code></pre>
<p><strong>but I don't know how to parameterize the Proc. I would love to use <code>if=>blah(name)</code></strong> but I cannot figure out how to it. Any ideas?</p>
<p><strong>Note:</strong> In these ifs one can also use the name of a method, but as a symbol. I can't imagine how to pass parameters to that.</p>
http://stackoverflow.com/questions/1618688/sort-or-order-error-messags-in-errormessages-rails1Sort or Order Error Messags in error_messages (Rails)yar2009-10-24T18:27:25Z2009-10-26T23:22:34Z
<p>Is there any (simple) way to get some control of the order in which a model's errors appear in the view? Ordering the rules does not seem to help whatsoever.</p>
http://stackoverflow.com/questions/1618688/sort-or-order-error-messags-in-errormessages-rails/1627891#16278910Answer by yar for Sort or Order Error Messags in error_messages (Rails)yar2009-10-26T23:22:34Z2009-10-26T23:22:34Z<p>Here's an answer (for my own notes, basically) using Baldu's answer. This puts the attribute_names in alpha order:</p>
<pre><code><% if @model.errors.length>0 %>
<div class="errorExplanation">
<h3>There were problems with the following fields:</h3><ul>
<% @model.attribute_names.each do |attribute| %>
<% if !@model.errors[attribute].blank? %>
<li><%= f.error_message_on attribute, Model.human_attribute_name(attribute)+ "&nbsp;", :style=>"display:inline" %></li>
<% end %>
</ul>
<% end %>
</div>
<% end %>
</code></pre>
<p>Of course you can parametrize this further as a partial, for instance. I'll probably do that :)</p>
http://stackoverflow.com/questions/1612984/how-to-make-industry-standard-desktop-java-applications/1613008#16130084Answer by yar for How to make industry standard desktop Java applications?yar2009-10-23T12:05:21Z2009-10-23T12:05:21Z<p><a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">This</a> is the most-read tutorial on Swing without a doubt. Run through the tutorial from beginning to end if you have time, to learn the Swing way of doing things.</p>
<p>At the same time, try to locate a copy of JBuilder to see the template code that it creates for Swing apps. You will code by hand using Eclipse or whatever, but JBuilder can show you some standard ways of doing things. If you can't get a copy, check out some of the Swing plugins for Eclipse. In all cases, try to keep in touch with the code yourself: most UI editors are only helpful in the suggestions they give you.</p>
http://stackoverflow.com/questions/1612169/why-dont-people-simply-use-object-databases/1612214#16122141Answer by yar for Why dont people simply use "Object Database"s ?yar2009-10-23T09:00:56Z2009-10-23T09:00:56Z<p><a href="http://stackoverflow.com/questions/800/object-oriented-vs-relational-databases/978#978">The reason is clearly laid out here by Mark Harrison</a> amongst others. In short, relational DBs have historical momentum, and are technically superior for a lot of stuff. Also relational DBs just work better, at least in 2009 (check out the other answers to the question I referenced).</p>
<p>At the same time, you do need JDO, ActiveRecord, or something to avoid writing standard object-DB translations yourself.</p>
http://stackoverflow.com/questions/187594/seriously-should-i-write-bad-php-code8Seriously, should I write bad PHP code?yar2008-10-09T14:50:10Z2009-10-22T09:15:39Z
<p>I'm doing some PHP work recently, and in all the code I've seen, people tend to use few methods. (They also tend to use few variables, but that's another issue.) I was wondering why this is, and I found this note "A function call with one parameter and an empty function body takes about the same time as doing 7-8 $localvar++ operations. A similar method call is of course about 15 $localvar++ operations" <a href="http://reinholdweber.com/?p=3" rel="nofollow">here</a>. </p>
<p>Is this true, even when the PHP page has been compiled and cached? Should I avoid using methods as much as possible for efficiency? I like to write well-organized, human-readable code with methods wherever a code block would be repeated. If it is necessary to write flat code without methods, are there any programs that will "inline" method bodies? That way I could write nice code and then ugly it up before deployment.</p>
<p>By the way, the code I've been looking at is from the Joomla 1.5 core and several WordPress plugins, so I assume they are people who know what they're doing.</p>
<p><strong>Note:</strong> I'm pleased that everyone has jumped on this question to talk about optimization <strong>in general</strong>, but in fact we're talking about optimization in interpreted languages. At least some hint of the fact that we're talking about PHP would be nice.</p>
http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/1601945#16019450Answer by yar for What is the best UI you've ever used?yar2009-10-21T16:21:18Z2009-10-21T16:21:18Z<p>My own app, <a href="http://www.thekbase.com" rel="nofollow">TheKBase</a>. This is not because it has a good UI, but every time I want it to do something, I just open up the code and hack away.</p>
http://stackoverflow.com/questions/1587989/simplifying-flex-as3-code/1588056#15880562Answer by yar for Simplifying Flex/AS3 codeyar2009-10-19T11:00:04Z2009-10-19T16:36:55Z<p>Your sample code is PERFECT for being OO'ed (made object oriented). </p>
<p>You have four things (which you'll define using one class) which hold a reference to a Button, a text, an open state, etc. So you define one class as an MXML component which holds a button, a text, and any other state and you put the methods ON THAT COMPONENT (in the <code><mx:Script></code> block). Plus you initialize the component in it's <code>creationComplete</code> method so that the open variable is false when it finishes the intial drawing. Even your <code>mouseOver</code> method is perfect: you can let the objects decide if they need to do something or not (and the MXML component will automatically have the event handling). Basically, that's what we're going for: the MXML component deals with its own internal state rather than having an external object which has to manage state for a list.</p>
<p>Since the MouseOver method would be put in your MXML component, each would have to hold references to the others. There are many ways to do this, including passing a reference at some point earlier and storing it, or having a <code>static</code> var that holds a list of the other x number of objects.</p>
<p>Hope that makes some sense and helps.</p>
http://stackoverflow.com/questions/1588603/is-a-css-reset-necessary-for-cross-browser-css1Is a "CSS Reset" necessary for cross-browser CSS?yar2009-10-19T13:13:25Z2009-10-19T13:29:42Z
<p>I've been trying to come up with a decent cross-browser CSS framework for my next project, because my last one had a whole bunch of PHP/CSS hacks (horrible things like <code>class="blah<?=isIe()?>"</code>). I'd like to do it "right". I've looked at <a href="http://stackoverflow.com/questions/1455913/cross-browser-css">this question</a>, which did not get a lot of interest, so I'd like to narrow this down: is a CSS reset necessary for cross-browser formatting? What about the Doctype? Should one use</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
<p>or what? Also, does anybody have any insight into the usefulness of <a href="http://blueprintcss.org/" rel="nofollow">Blueprint</a>?</p>
http://stackoverflow.com/questions/404676/ruby-more-flexibility-than-java-c3Ruby: More flexibility than Java/C#?yar2009-01-01T07:28:38Z2009-10-16T18:43:59Z
<p>Is is that I'm a newbie learning Ruby, or does it really have more ways to write (the same) things than Java/C#? Also, if it is more flexible than Java, are there any linguistic features of Ruby that are generally <strong>not</strong> used to avoid confusion?</p>
<p>Examples might be parallel assignment and all the different ways to write Strings, perhaps?</p>
<p><strong>Note:</strong> I'm not asking for a comparison with Java/C#... just this language question, please...</p>
<p><strong>Edit:</strong> I understand that C#, Java and Ruby are strongly typed, and that only Ruby (like Python and others) is dynamically typed (while Java/C# are statically typed). Some of the answers say that dynamically-typed languages are more flexible. Is this necessarily true, and how does it affect syntax? <strong>I am only asking about syntactic flexibility.</strong> </p>
<p>(PHP is also dynamically typed and it does <strong>not</strong> seem more flexible than Java/C#, as far as I've seen. Again, I mean in terms of syntax, not in terms of deployment nor any other aspect...)</p>
http://stackoverflow.com/questions/1531729/yield-not-working-in-named-templates0<%=yield%> not working in named templatesyar2009-10-07T13:44:08Z2009-10-07T13:48:22Z
<p><%=yield%> works perfectly if my template is called layouts/application.erb. However, if I change the template to something else, then the yield doesn't work. For instance, my controller method is</p>
<pre><code>render :template=>'layouts/survey'
</code></pre>
<p>and the right template gets rendered, <strong>but its yield method doesn't show the output of the current action's view. What simple thing am I missing?</strong> I have also tried</p>
<pre><code>render :action=>"index", :template=>"layouts/survey"
</code></pre>
<p>to no avail. </p>
http://stackoverflow.com/questions/1525694/objective-c-high-level-language0Objective-C: High-level language?yar2009-10-06T13:45:28Z2009-10-07T05:24:28Z
<p>I have managed to avoid C and C++ up until now (except for a few HelloWorlds), and have instead worked in higher-level languages. I've worked and lived in VB6, then Java, then C#, then ActionScript, and now Ruby.</p>
<p>I've recently become curious about programming for the IPod Touch/IPhone. Though I've seen some possibilities for avoiding ObjectiveC (like Mono for IPhone), I'm curious about Objective C. Mostly: does it <strong>require</strong> the developer to handle garbage collection and manage pointers and that sort of thing?</p>
<p><strong>Edit:</strong> I am totally open to the possibility that my concept of higher- and lower-level languages is incorrect or misleading. </p>
http://stackoverflow.com/questions/1521070/reading-git-merge-markers1Reading GIT Merge Markersyar2009-10-05T16:29:12Z2009-10-05T16:45:38Z
<p>Sorry, this is a very simple question. What does this merge marker mean in GIT</p>
<pre><code>>>>>>>> next-release:db/schema.rb
</code></pre>
<p>when it's got no accompanying?</p>
<pre><code>=======
</code></pre>
<p>Also, is there some way to tell GIT to just choose one version over another?</p>
http://stackoverflow.com/questions/1255305/help-meta-programming-in-ruby-overwriting-activerecord-setters2Help Meta-programming in Ruby: Overwriting Activerecord Settersyar2009-08-10T14:41:10Z2009-10-04T13:33:09Z
<p>I have no idea how to "metatize" this method, but I know it should be simple. The method looks like this</p>
<pre><code> def check_sent=(value)
Date.parse(value) rescue @dates_bad = true
self.write_attribute(:check_sent, value)
end
</code></pre>
<p>This is for an ActiveRecord subclass. I would like to have these methods for all fields that I specify. Is there any way to do this in Ruby?</p>
http://stackoverflow.com/questions/264412/i-cant-see-my-other-projects-in-eclipse0I can't see my other projects in Eclipse!yar2008-11-05T05:39:57Z2009-10-03T12:14:50Z
<p>Hi all. I've been using Eclipse with each project in a separate window by right clicking on a project and selecting Open in New Window. This worked fine, but suddenly... even when I close Eclipse and reopen it, the Navigator only shows one of the projects I was working on. How can I navigate back???</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1491332/best-practices-when-an-unknown-error-occurs-on-a-dynamic-website/1491445#14914450Answer by yar for Best practices when an unknown error occurs on a dynamic website?yar2009-09-29T09:14:28Z2009-09-29T09:14:28Z<p>This is a general question and not just limited to PHP.</p>
<p>You should never show a half-baked page. If a page has an error that would make it unusable to the user (the reason does not matter), you must display an error page. If the page has an error that you've already considered -- like an RSS feed that you can't get -- then go ahead and show the working part of the page.</p>
<p>On the other hand, if there was an error in processing -- again, the reason does not matter -- you indicate that to the user and let them retry. </p>
<p>In Ruby on Rails, we are always ready to redisplay the page after a processing error (including validation problems). If there is a problem rendering, however, an error page would be shown.</p>
<p>This is all common sense, but just remember that 99% of errors are unknown in origin (made up statistic, but basically true) but good software is made to react to those gracefully (from the user perspective).</p>
http://stackoverflow.com/questions/395425/how-do-you-deal-with-time-slippage-in-your-smaller-programming-deliverables2How do you deal with time slippage in your smaller programming deliverables?yar2008-12-27T21:25:17Z2009-09-27T07:08:13Z
<p>I'm asking this about smaller jobs: I think that with larger jobs you have all kinds of contractual issues to deal with. With larger jobs, if you haven't contemplated schedule slippage, you're basically hosed.</p>
<p>With smaller deliverables (10 hours or less): If you're doing something you've done before, it's very easy to estimate the time the job will take (and it may take less, since you've already learned how to do it "best"). But with something new, how do you deal with possible time slippage in your initial estimates? Arbitrarily add 20% to the time, just in case? Give a range and then give more precision as you move ahead? Do some HelloWorlds billing a few hours and try to figure out the unknowns?</p>
<p>I'm assuming, for this question, that you work for a flexible client <strong>who needs to have the best information possible to do their job, and needs everything sooner than later.</strong></p>
http://stackoverflow.com/questions/1463434/was-there-something-in-cobol-intrinsically-making-it-susceptible-to-y2k-issues/1463559#14635591Answer by yar for Was there something in Cobol intrinsically making it susceptible to Y2K issues?yar2009-09-23T01:42:47Z2009-09-23T01:42:47Z<p>Fascinating question. What is the Y2K problem, in essence? It's the problem of <strong>not defining your universe sufficiently.</strong> There was no serious attempt to model all dates, because space was more important (and the apps would be replaced by then). So in Cobol at every level, that's important: to be efficient and not overdeclare the memory you need, both at the store and at the program level.</p>
<p>Where efficiency is important, we commit Y2Kish errors... We do this every time we store a date in the DB without a timezone. So modern storage is definitely subject to Y2Kish errors, because we try to be efficient with space used (though I bet it's over-optimizing in many cases, especially at the enterprise overdo-everything level).</p>
<p>On the other hand, we avoid Y2Kish errors on the application level because every time you work with, say, a Date (in Java, let's say) it always carries around a ton of baggage (like timezone). Why? Because Date (and many other concepts) are now part of the OS, so the OS-making smart dudes try to model a full-blown concept of date. Since we rely on their concept of date, we can't screw it up... and it's modular and replaceable!</p>
<p>Newer languages with built-in datatypes (and facilities) for many things like date, as well as huge memory to play with, help avoid a lot of potential Y2Kish problems.</p>
http://stackoverflow.com/questions/1454943/rails-basics-wheres-my-installation-sources-api-online-sources0Rails Basics: Where's My Installation, Sources, API, Online Sourcesyar2009-09-21T14:57:33Z2009-09-21T15:40:30Z
<p>I'm trying to run this method which should work <a href="http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html#M001527" rel="nofollow">according to this</a>:</p>
<pre><code>ActiveSupport::TimeZone.new("whatever",3600)
</code></pre>
<p>but this initializer doesn't exist.</p>
<p>So I would like to look at the sources for my Rails version (2.3.4) to see if it's private or if I'm missing the point completely (the one-argument constructor works). </p>
<p><strong>And suddenly I realize that I have no idea where to find the docs for my version nor the API. I use <a href="http://api.rubyonrails.org/" rel="nofollow">api.rubyonrails.org</a> constantly (linked from <a href="http://rubyonrails.org/documentation" rel="nofollow">here</a>), but I'm not even sure what version it refers to (2.3.2, the 'current' version?). How can I get the API docs for my installation? How can I view the SOURCE for my Rails version? Can I view it in my Rails installation (either OSX or Ubuntu)? Online?</strong> </p>
<p>If the version were vendored (it's not), how would that affect my question?</p>
http://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript/1869680#1869680Comment by yar on Calling Functions in Objects with Javascriptyar2009-12-09T00:24:39Z2009-12-09T00:24:39ZCan you do this.killTimer there? It seems you can, the this would be evaluated at creation.http://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript/1867451#1867451Comment by yar on Calling Functions in Objects with Javascriptyar2009-12-08T20:42:42Z2009-12-08T20:42:42ZI kind of doubted this code, but then I tried it out :) Still not sure why the ms is in there, as it doesn't change the results...http://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript/1867451#1867451Comment by yar on Calling Functions in Objects with Javascriptyar2009-12-08T16:41:57Z2009-12-08T16:41:57ZPerfect, thanks for thathttp://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript/1867643#1867643Comment by yar on Calling Functions in Objects with Javascriptyar2009-12-08T15:31:42Z2009-12-08T15:31:42Zcool, I'll check it out, or I might even package Prototype with my script. Thanks!http://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript/1867451#1867451Comment by yar on Calling Functions in Objects with Javascriptyar2009-12-08T15:24:39Z2009-12-08T15:24:39ZCould you clarify your PS? You mean in my code in the question it will do this?http://stackoverflow.com/questions/514216/rails-ruby-script-generate-model-where-are-the-docs/1857093#1857093Comment by yar on Rails: ruby script/generate model, where are the docs?yar2009-12-08T09:32:10Z2009-12-08T09:32:10ZNice, thanks for that. +1http://stackoverflow.com/questions/75626/how-do-i-pass-an-object-to-a-jsp-tag/75843#75843Comment by yar on How do i pass an object to a JSP tagyar2009-12-08T09:10:48Z2009-12-08T09:10:48ZI remember that and man is it ugly! +1http://stackoverflow.com/questions/395512/alternatives-to-mysql-query-browser/1850919#1850919Comment by yar on Alternatives to MySql Query Browser?yar2009-12-07T12:07:23Z2009-12-07T12:07:23Z+1 Great, I'll check them out.http://stackoverflow.com/questions/395512/alternatives-to-mysql-query-browser/1850909#1850909Comment by yar on Alternatives to MySql Query Browser?yar2009-12-07T11:22:32Z2009-12-07T11:22:32Z+1 Thanks. I'll have to check it out, and revisit the other answers to this question.http://stackoverflow.com/questions/1827883/firefox-exension-vs-greasemonkey-script/1830741#1830741Comment by yar on Firefox Exension vs. Greasemonkey Script?yar2009-12-02T12:59:06Z2009-12-02T12:59:06ZThanks Philfreo, that seems to be my understanding too. At the same time I want to get into the more technical aspect of this, especially compiling Greasemonkey extensions (otherwise users need Greasemonkey, right?).http://stackoverflow.com/questions/1827883/firefox-exension-vs-greasemonkey-script/1827956#1827956Comment by yar on Firefox Exension vs. Greasemonkey Script?yar2009-12-01T18:29:37Z2009-12-01T18:29:37ZThanks Priyank, I see that from your other question here <a href="http://stackoverflow.com/questions/1284187/universalxpconnect-in-greasemonkey-script" rel="nofollow" title="universalxpconnect in greasemonkey script">stackoverflow.com/questions/1284187/…</a>http://stackoverflow.com/questions/1268232/storing-data-in-greasemonkey-scripts/1268246#1268246Comment by yar on Storing data in Greasemonkey scriptsyar2009-12-01T18:25:19Z2009-12-01T18:25:19ZI don't downvote, but you might want to consider deleting this answer.http://stackoverflow.com/questions/1799984/finding-out-total-and-free-disk-space-in-netComment by yar on Finding out total and free disk space in .NETyar2009-11-25T22:10:32Z2009-11-25T22:10:32ZHow ridiculous would it be to map a drive, check space, and unmap it? I realize it's not practical, but if no other solutions arise...http://stackoverflow.com/questions/1799984/finding-out-total-and-free-disk-space-in-net/1800173#1800173Comment by yar on Finding out total and free disk space in .NETyar2009-11-25T22:09:23Z2009-11-25T22:09:23Z+1 I love contemplating how long this would take for a 5TB drive, a byte at a time. Fun.http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796509#1796509Comment by yar on Calculating difference between username and email in javascriptyar2009-11-25T12:22:10Z2009-11-25T12:22:10ZAwesome +1. If you include this in your answer -- <a href="http://phpjs.org/functions/levenshtein:463" rel="nofollow">phpjs.org/functions/levenshtein:463</a> -- it'll be more useful.