User Nosredna - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T05:19:53Zhttp://stackoverflow.com/feeds/user/61027http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952431/what-do-you-do-to-your-javascript-code-before-deployment5What do you do to your JavaScript code before deployment?Nosredna2009-06-04T18:55:47Z2009-12-10T03:10:54Z
<p>Do you have a step in your deployment process that minifies JS? Do you have any sort of preprocessor for your JavaScript that allows you to leave in comments and console.logs and then have them automatically stripped out? Is your JavaScript machine generated by GWT or Script#? Do you use ANT or another tool to automate deployment?</p>
<p>I see a lot of JavaScript that looks like it comes right out of the editor, complete with lots of white space and comments. How much of that is due to not caring about the state of the deployed code, and how much is due to the spirit of the open web?</p>
http://stackoverflow.com/questions/1868300/are-there-any-proposals-to-amend-json-to-officially-allow-unquoted-property-names/1868426#18684261Answer by Nosredna for Are there any proposals to amend JSON to officially allow unquoted property names?Nosredna2009-12-08T17:11:50Z2009-12-08T17:11:50Z<p>I've had trouble with property names that collided with JavaScript reserved words. After fighting with a couple such problems, I keep my JSON heavily quoted when I have the choice. In my opinion, it's much safer.</p>
http://stackoverflow.com/questions/1860747/filtering-mobile-browsers-by-failure-to-execute-using-jquery/1860802#18608022Answer by Nosredna for Filtering mobile browsers by failure to execute using jQueryNosredna2009-12-07T15:45:39Z2009-12-07T20:56:11Z<p>First of all, mobile browsers can lie about width and scale or scroll.</p>
<p>Second, jQuery is a pretty fat library for many mobile devices. It doesn't run on all of them, and it flushes the cache of some of them. <a href="http://github.com/brianleroux/xui" rel="nofollow">xui</a> may be a better choice. The jQuery team is looking into making a more modular version of the library for mobile devices.</p>
<p>Third, you're going to need some quotes around that "#hideMeFromMobiles" specifier.</p>
<p>Fourth, some mobile browsers by default have JavaScript off (I'm looking at you Blackberry browsers). You'll need some <code><noscript></code> markup.</p>
<p><a href="http://www.quirksmode.org/" rel="nofollow">ppk</a> has been testing the pitfalls of mobile browers. You should start at his <a href="http://www.quirksmode.org/m/" rel="nofollow">mobile tests</a>.</p>
<p>Finally, some mobile browsers are great, especially the new ones on smart phones that use WebKit. I'd test the site on iPhone, Android, Storm, and Pre before forcing a mobile page onto them.</p>
http://stackoverflow.com/questions/1856074/twitter-api-get-followers-99/1856107#18561071Answer by Nosredna for Twitter API: Get Followers +99Nosredna2009-12-06T18:14:39Z2009-12-06T18:14:39Z<p>Be sure you're using the right call. <code>followers/ids</code> gives you 5000 at a time (but it's just a list of ids). This call, too, uses the cursor to let you step through pages of users. You get a zero back when you have them all.</p>
http://stackoverflow.com/questions/1853986/how-can-i-get-the-closing-price-of-a-stock-for-a-particular-date/1854016#18540162Answer by Nosredna for How can I get the closing price of a stock for a particular dateNosredna2009-12-06T00:22:13Z2009-12-06T00:49:00Z<p>The easiest way I know of is with the Yahoo Finance API. Here is a handy chart that shows all the options you can pass in (READ THE WHOLE POST, as it has been updated at the bottom):</p>
<p><a href="http://ilmusaham.wordpress.com/tag/stock-yahoo-data/" rel="nofollow">http://ilmusaham.wordpress.com/tag/stock-yahoo-data/</a></p>
<p>Be aware of a few things:</p>
<p>1) Know the difference between
unadjusted and adjusted prices. Splits will make your comparisons meaningless if you aren't careful.</p>
<p>2) Don't forget the effect of mergers
and spin-offs. Go back far enough and
you're almost sure to have nonsense.
For example, think about the case of
AT&T, which was bought, disappeared
for awhile, and then the name was
resurrected. Decades of AT&T's actual
price history is now unavailable.</p>
http://stackoverflow.com/questions/1853843/hosting-google-apps-ui-in-my-app/1853849#18538490Answer by Nosredna for Hosting Google Apps UI in my appNosredna2009-12-05T23:30:34Z2009-12-05T23:30:34Z<p>What do you mean by "hosting the UI?" These apps are HTML/CSS/JavaScript. Are you thinking about embedding them in AIR or Titanium, or in some kind of web control in another app?</p>
http://stackoverflow.com/questions/1850162/is-there-an-open-source-websockets-javascript-xmpp-library/1850751#18507511Answer by Nosredna for Is there an open source WebSockets (JavaScript) XMPP library?Nosredna2009-12-05T01:28:35Z2009-12-05T01:43:08Z<p>There's a book coming soon that covers this topic...</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0470540710" rel="nofollow">Professional XMPP with JavaScript and jQuery</a>
<img src="http://ecx.images-amazon.com/images/I/51B7VAHw8OL.%5FSL500%5FAA240%5F.jpg" alt="alt text"></p>
<p>But I'm assuming you don't want to wait for the book. So watch <a href="http://www.infoq.com/presentations/Real-Time-Web-with-XMPP" rel="nofollow">the Jack Moffitt's presentation from JSConf</a>. I watched it this morning. (Jack Moffitt is the author of the book linked to above.)</p>
<p>The library involved (JavaScript and C implementations) is <a href="http://code.stanziq.com/strophe/" rel="nofollow">Strophe</a>.</p>
<p>This is a very fruitful area of exploration, but very raw. We'll see more soon. WebSockets come with HTML5, is that right?</p>
http://stackoverflow.com/questions/1850443/what-are-the-pros-cons-of-the-various-twitter-api-libraries/1850493#18504932Answer by Nosredna for What are the pros/cons of the various Twitter API libraries?Nosredna2009-12-05T00:11:57Z2009-12-05T01:07:30Z<p>My experience with the Twitter REST APIs is that it's critical to handle errors well with retries. If you write everything as if all your results will be successful, you'll end up doing a lot of extra work going back to each REST call and dealing with errors.</p>
<p>I haven't used any of these libraries, but automatic handling of retries and a sensible way to dealing with Twitter's outages would be what I'd look for in a library, as the REST calls themselves are trivial.</p>
<p>Also, you only get 150 hits on the API per hour (unless you request IPs to be whitelisted). Retries will count against that (sometimes, maybe). Don't forget to check whether or not you have remaining hits (the call to check is free). Once I accidentally hit the API in a tight loop. Be careful--you can get blacklisted.</p>
http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript/1841960#18419602Answer by Nosredna for How to Avoid Global Variables in JavascriptNosredna2009-12-03T18:36:28Z2009-12-03T18:36:28Z<p>Sometimes it makes sense to have global variables in JavaScript. But don't leave them hanging directly off window like that.</p>
<p>Instead, create a single "namespace" object to contain your globals. For bonus points, put everything in there, including your methods.</p>
http://stackoverflow.com/questions/1841603/jquery-ui-pros-and-cons/1841861#18418611Answer by Nosredna for JQuery UI: Pros and Cons?Nosredna2009-12-03T18:22:42Z2009-12-03T18:32:04Z<p>I used it a year ago. If one of the widgets fits your needs, that's great. I like the Themeroller.</p>
<p>But, overall, I wasn't thrilled with jQueryUI and I wouldn't use it again. Several small things bugged me until the cumulative feeling was displeasure. I had to fight the model dialog. The accordion animation is jumpy in some browsers. In at least a few of the widgets, there is no difference between the UI's hover state and its depressed state.</p>
<p>Example: <a href="http://jqueryui.com/demos/accordion/" rel="nofollow">http://jqueryui.com/demos/accordion/</a> At least in the Chrome browser I'm running now, the animation problems with this demo actually cause scroll bars to appear during the animation.</p>
<p>I don't understand why there haven't been any widgets added in at least a year.</p>
<p>I think a lot of my disappoint with jQueryUI comes from how much I like jQuery and what I expect from an official widget library associated with it.</p>
http://stackoverflow.com/questions/1837739/pushing-data-into-array-with-javascript/1837746#18377462Answer by Nosredna for Pushing data into array with JavaScript.Nosredna2009-12-03T04:58:10Z2009-12-03T04:59:16Z<pre><code>array.push([var1,var2]);
</code></pre>
http://stackoverflow.com/questions/1829377/is-it-possible-to-use-the-commonjs-libraries-yet/1829390#18293901Answer by Nosredna for Is it possible to use the CommonJS libraries yet?Nosredna2009-12-01T22:29:19Z2009-12-01T22:29:19Z<p>It's gelling. You're early, unless you like living on the edge.</p>
<p>By the way, your wikipedia link has links to the projects that use CommonJS. You had the answer before you got here.</p>
http://stackoverflow.com/questions/1809619/managing-lots-of-callback-recursion-in-nodejs/1829234#18292340Answer by Nosredna for Managing lots of callback recursion in NodejsNosredna2009-12-01T22:00:36Z2009-12-01T22:00:36Z<p>As with any JavaScript, it's possible to make recursive calls with Node.js. If you do run into recursion depth problems (as NickFitz points out, you don't seem to be in danger of that), you can often rewrite your code to use an interval timer instead.</p>
http://stackoverflow.com/questions/1824418/a-clean-lightweight-alternative-to-pythons-twisted/1827538#1827538-1Answer by Nosredna for A clean, lightweight alternative to Python's twisted?Nosredna2009-12-01T17:01:12Z2009-12-01T18:27:33Z<p>Anyone thinking about high performance servers should watch the Node.js video from jsconf.eu. It has a wonderful description of the problems in current servers and how we think about the problem. Indeed, with the problem of how IO is taught.</p>
<p>The movie: Ryan Dahl at <a href="http://jsconf.eu/2009/video%5Fnodejs%5Fby%5Fryan%5Fdahl.html" rel="nofollow">jsconf.eu</a> </p>
<p>The site: <a href="http://nodejs.org/" rel="nofollow">nodejs.org</a></p>
<p>Willison's weblog about <a href="http://simonwillison.net/2009/Nov/23/node/" rel="nofollow">Node.js</a></p>
<p>This is nothing short than a <em>rethinking</em> of high performance servers. Designed for IRC, HTTP, long-polling Comet, etc. No blocking calls. None.</p>
<p>(The movie is a classic. The hand-drawn "NIKE" shirt really puts it over the top. As Tim Bray said of the video, <a href="http://twitter.com/timbray/status/6195768232" rel="nofollow">"Um, wow."</a>) Dahl is now one of my programming heroes.</p>
http://stackoverflow.com/questions/1827128/how-do-i-access-the-individual-styles-of-a-css-rule-set-using-javascript/1827156#18271560Answer by Nosredna for How do I access the individual styles of a CSS rule-set using JavaScript?Nosredna2009-12-01T16:03:40Z2009-12-01T16:03:40Z<p>I can't think of a way to do it without creating an element that uses that class. I'd create an invisible div with the class and query that div.</p>
http://stackoverflow.com/questions/1824095/variable-assignment-in-javascript/1824510#18245100Answer by Nosredna for Variable assignment in JavaScriptNosredna2009-12-01T07:16:50Z2009-12-01T07:16:50Z<p>With a global variable, you could do</p>
<pre><code>window["theurl_"+i];
</code></pre>
<p>because global variables are properties of window, and you can get at properties with either dot notation or bracket notation.</p>
<p>But don't do that. :-)</p>
<p>A good reason not to even try to do what you're doing is that JavaScript does not have block scoping, so putting vars anywhere but at the beginning of functions is likely to lead to confusion. You get into trouble sooner or later if you put variable declarations at the beginning of loops or conditional blocks.</p>
http://stackoverflow.com/questions/1820452/how-can-i-generate-this-pattern-of-numbers/1821369#18213690Answer by Nosredna for How can I generate this pattern of numbers?Nosredna2009-11-30T18:02:10Z2009-12-01T00:50:33Z<p><strong>JavaScript</strong></p>
<p>My first thought was </p>
<pre><code>output = ((input - 1 & 4) >> 2) + 1;
</code></pre>
<p>but drhirsch's code works fine in JavaScript:</p>
<pre><code>output = input - 1 & 4 ? 2 : 1;
</code></pre>
<p>and the ridiculous (related to FogleBird's answer):</p>
<pre><code>output = -~((input - 1) % 8 > 3);
</code></pre>
http://stackoverflow.com/questions/1822123/a-tidy-solution-for-using-static-json-data/1822132#18221322Answer by Nosredna for A tidy solution for using static JSON dataNosredna2009-11-30T20:14:37Z2009-11-30T20:14:37Z<p>What's wrong with having a separate js file for your object? It has to live somewhere. I agree ajax is overkill, but I'm at a loss for why you think a JavaScript object in a .js file is "messy."</p>
http://stackoverflow.com/questions/1821663/notable-apps-written-in-c/1821673#18216738Answer by Nosredna for Notable apps written in C#?Nosredna2009-11-30T18:52:34Z2009-11-30T18:52:34Z<p>StackOverflow is one.</p>
http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs/1821420#18214200Answer by Nosredna for Which Javascript framework (jQuery vs Dojo vs ... )?Nosredna2009-11-30T18:09:40Z2009-11-30T18:09:40Z<p>Since this question is a bit old, I thought I'd point out that there are new kids in town to consider:</p>
<ul>
<li><a href="http://www.bbc.co.uk/glow/" rel="nofollow">BBC Glow</a></li>
<li><a href="http://code.google.com/closure/library/" rel="nofollow">Google Closure Library</a></li>
</ul>
<p>Not as new, but previously unmentioned in this thread:</p>
<ul>
<li><a href="http://cappuccino.org/" rel="nofollow">Cappuccino</a></li>
</ul>
http://stackoverflow.com/questions/1820593/search-a-javascript-object/1820628#18206280Answer by Nosredna for Search a JavaScript objectNosredna2009-11-30T15:50:54Z2009-11-30T16:02:59Z<p>Although you could do it in straight JavaScript, <a href="http://documentcloud.github.com/underscore/" rel="nofollow">underscore.js</a> is a good library to handle this stuff. You could probably get it going with "pluck" and "each."</p>
<p>Nice thing about underscore.js is that it uses the browser's built-in calls when they exist.</p>
http://stackoverflow.com/questions/1814254/flash-actionscript-a-substitute-for-css-and-javascript/1816129#18161291Answer by Nosredna for Flash/Actionscript a substitute for css and javascript?Nosredna2009-11-29T17:30:59Z2009-11-29T17:44:34Z<p>I think this is a terrible idea.</p>
<p>When I run into a Flash website, it never feels quite "right." It looks and acts slightly different than the "normal" web. Flash is great for games and advertisements and providing media in old browsers. It is not an HTML/CSS/JS replacement.</p>
<p>What do you plan to do for visually impaired users who use screen readers?</p>
<p>I run away from Flash-based websites as quickly as I can. They often have artificial delays to show off their animations, making the page less interactive. If I sense that you are slumming amongst these tedious marketing-driven pages, I'll run away from your page, too.</p>
<p>That's not to say I dislike Flash. I like it. It's a great cross-platform gaming and audiovisual platform. I expect HTML to decrease its usage on the web, though. Eventually.</p>
http://stackoverflow.com/questions/1813320/getting-javascript-to-search-an-array-within-an-array/1813602#18136020Answer by Nosredna for Getting javascript to search an array within an arrayNosredna2009-11-28T19:55:14Z2009-11-28T19:55:14Z<p>Take a look at the library called <a href="http://documentcloud.github.com/underscore/" rel="nofollow">underscore.js</a>. It's made for this kind of stuff. These tasks often come down to a line or two of easy-to-read code.</p>
<p>It uses native methods when available, fills in the missing bits (depending on the browser) and is chainable. It even makes the built-in array methods chainable.</p>
http://stackoverflow.com/questions/1813049/how-to-retain-array-in-javascript/1813077#18130770Answer by Nosredna for How to retain array in javascript?Nosredna2009-11-28T17:06:19Z2009-11-28T17:17:45Z<p>To copy an array:</p>
<pre><code>var np=op.slice();
</code></pre>
<p>or</p>
<pre><code>var np=op.concat();
</code></pre>
<p>concat is faster, while slice takes up one less character. Some people alias "slice" or "concat" as "copy" so that it's more obvious that you're making a copy.</p>
<p>No need for parameters in either case. Parameters in the slice will just make the code larger and slower.</p>
http://stackoverflow.com/questions/1811505/with-jquery-access-json-from-cross-domain-url-where-json-may-be-poorly-formed/1811572#18115720Answer by Nosredna for with jQuery, access json from cross domain url where json may be poorly formedNosredna2009-11-28T04:34:35Z2009-11-28T05:03:12Z<p>You might consider trying the jquery-jsponp plugin, which fixes some problems with jQuery's jsonp handling.</p>
<p><a href="http://code.google.com/p/jquery-jsonp/" rel="nofollow">http://code.google.com/p/jquery-jsonp/</a></p>
<p>I use it and there are a lot of great examples.</p>
<p>You really need to get your callbacks working so you can see what's going on.</p>
<p><hr></p>
<p>Update: I took a stab with jsonp and I'm getting unexpected token errors. Not sure why--I can grab the data manually from the URL, assign it to a JavaScript variable in the console, and it's just fine.</p>
http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810935#18109351Answer by Nosredna for Memorable 32-bit value as a constantNosredna2009-11-27T23:07:20Z2009-11-27T23:07:20Z<p>0x00abacab</p>
<p>(Which happened WAY after Peter Gabriel left.)</p>
http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800402#18004022Answer by Nosredna for Is it bad practice to change state inside of an if statement?Nosredna2009-11-25T22:35:16Z2009-11-26T02:43:59Z<p>The problem is that the code would generate multiple-WTFs in a code review session. Anything that makes people go "wait, what?" has got to go.</p>
<p>It's sadly easy enough to create bugs even in easy-to-read code. No reason to make it even easier.</p>
http://stackoverflow.com/questions/1801160/can-i-use-jquery-with-node-js/1801178#18011780Answer by Nosredna for Can I use jQuery with node.js?Nosredna2009-11-26T02:02:51Z2009-11-26T02:02:51Z<p>Not that I know of. The DOM is a client side thing (jQuery doesn't parse the HTML, but the DOM).</p>
<p>Here are some current Node.js projects:</p>
<p><a href="http://wiki.github.com/ry/node" rel="nofollow">http://wiki.github.com/ry/node</a></p>
<p>And SimonW's <a href="http://github.com/simonw/djangode" rel="nofollow">djangode</a> is pretty damn cool...</p>
http://stackoverflow.com/questions/1800816/comparing-character-arrays-with-an-operator-in-c/1800856#18008560Answer by Nosredna for Comparing character arrays with an == operator in CNosredna2009-11-26T00:13:37Z2009-11-26T00:13:37Z<p>You can't compare strings, but you can compare pointers.</p>
http://stackoverflow.com/questions/1799912/when-not-to-use-ajax-in-web-application-development/1799956#17999562Answer by Nosredna for When NOT to use AJAX in web application development?Nosredna2009-11-25T21:08:09Z2009-11-25T21:08:09Z<p>I often have <em>noscript</em> block Flash and JavaScript until I make the decision that your site is worthy.</p>
<p>So be sure to tell me what I'm missing if I have JavaScript turned off.</p>
http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base/1815668#1815668Comment by Nosredna on What next generation low level language is the best bet to migrate the code base ?Nosredna2009-12-08T01:06:14Z2009-12-08T01:06:14ZMoore's law has not slowed yet. "The trend has continued for more than half a century and is not expected to stop until 2015 or later."http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base/1815668#1815668Comment by Nosredna on What next generation low level language is the best bet to migrate the code base ?Nosredna2009-12-08T01:04:15Z2009-12-08T01:04:15ZIs that why my phone is so slow?http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-t/1860508#1860508Comment by Nosredna on When do you choose to load your javascript at the bottom of the page instead of the top?Nosredna2009-12-07T20:59:58Z2009-12-07T20:59:58ZThe great majority of web pages don't have any special requirements that would indicate moving the js to the top. Therefore, the case that usually works the best (js at the bottom) should be employed unless something comes up to invalidate the use of the default. Premature optimization is spending time worrying about speed. A default of putting js at the bottom requires not extra thought or effort.http://stackoverflow.com/questions/1861177/formula-for-a-curve-algebra-in-javascriptComment by Nosredna on Formula for a curve (algebra in javascript)Nosredna2009-12-07T17:26:00Z2009-12-07T17:26:00ZWhat do you want for y when x is 10, 250, and 490? Two points gives us just about no guidance.http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-t/1860508#1860508Comment by Nosredna on When do you choose to load your javascript at the bottom of the page instead of the top?Nosredna2009-12-07T15:36:41Z2009-12-07T15:36:41ZDeciding where to put JavaScript for loading speed isn't premature optimization.http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-tComment by Nosredna on When do you choose to load your javascript at the bottom of the page instead of the top?Nosredna2009-12-07T15:35:13Z2009-12-07T15:35:13Z@Mauricio Scheffer: What do you mean?http://stackoverflow.com/questions/1856784/disallow-text-selection-in-net-webbrowser/1856865#1856865Comment by Nosredna on Disallow Text Selection in .NET WebBrowserNosredna2009-12-06T22:36:04Z2009-12-06T22:36:04ZIs that true? I know there are two or three ways to do it in Internet Explorer. Is the WebBrowser control that different from IE?http://stackoverflow.com/questions/1856784/disallow-text-selection-in-net-webbrowserComment by Nosredna on Disallow Text Selection in .NET WebBrowserNosredna2009-12-06T22:35:07Z2009-12-06T22:35:07ZWell, he may or may not hate his user. I've had to do this a few times in visualizations where the user is moving the mouse to manipulate things on the screen. Believe me, the user is not happy about highlighting in that case.http://stackoverflow.com/questions/1856373/on-demand-javascript/1856568#1856568Comment by Nosredna on On-Demand javascriptNosredna2009-12-06T20:55:44Z2009-12-06T20:55:44ZI love underscore.js, but jQuery has $.inArray() for that.http://stackoverflow.com/questions/1856074/twitter-api-get-followers-99/1856130#1856130Comment by Nosredna on Twitter API: Get Followers +99Nosredna2009-12-06T18:35:43Z2009-12-06T18:35:43ZBut you make a good point. There are many accounts with many more than 15,000 followers. You'll use up all your API hits at once with them.http://stackoverflow.com/questions/1856074/twitter-api-get-followers-99/1856130#1856130Comment by Nosredna on Twitter API: Get Followers +99Nosredna2009-12-06T18:33:39Z2009-12-06T18:33:39ZThe total is 150 per hour. So he could get 100 people 150 times (or 5000 people 150 times, depending on the call he uses). This number is for the calls that don't need authorization. Calls that require authorization are tallied separately. You can request whitelisting for your app, but even that is not enough to go banging at the API willy-nilly, so if you expect a high-volume service, you need to do some caching.http://stackoverflow.com/questions/1235116/safari-and-gzipComment by Nosredna on safari and gzipNosredna2009-12-06T06:53:47Z2009-12-06T06:53:47ZHopefully, if the stars align, the file is cached after the first time it's accessed, and not actually transmitted after that.http://stackoverflow.com/questions/906900/why-is-javascript-considered-bad-by-some/907118#907118Comment by Nosredna on Why is JavaScript considered bad by some?Nosredna2009-12-06T04:08:10Z2009-12-06T04:08:10ZI thought Flash was the #1 cause of security problems in modern browsers.http://stackoverflow.com/questions/1853986/how-can-i-get-the-closing-price-of-a-stock-for-a-particular-date/1854029#1854029Comment by Nosredna on How can I get the closing price of a stock for a particular dateNosredna2009-12-06T00:28:00Z2009-12-06T00:28:00ZIs Bloomberg as good as CRSP?http://stackoverflow.com/questions/1853986/how-can-i-get-the-closing-price-of-a-stock-for-a-particular-date/1854003#1854003Comment by Nosredna on How can I get the closing price of a stock for a particular dateNosredna2009-12-06T00:25:20Z2009-12-06T00:25:20Z@Prescott, see my answer.