User olliej - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T07:21:11Zhttp://stackoverflow.com/feeds/user/784http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1488108/is-there-a-public-specification-of-webgl-anywhere/1488391#14883911Answer by olliej for Is there a public specification of WebGL anywhere?olliej2009-09-28T17:45:54Z2009-12-13T23:54:04Z<p>[edit: There is now a public draft available: <a href="http://www.khronos.org/webgl/" rel="nofollow">http://www.khronos.org/webgl/</a> ]</p>
<p>Nope -- khronos group tends to publish specs much later in the dev process than W3C or WHATWG, i'd suggest looking at the webkit webgl tests as i believe webkit's implementation currently matches the spec more closely, but neither is perfect (yet) :-(</p>
http://stackoverflow.com/questions/1898238/does-the-callback-passed-to-jquerys-get-execute-in-a-separate-thread/1898252#18982522Answer by olliej for does the callback passed to jquery's $.get() execute in a separate thread?olliej2009-12-13T23:52:13Z2009-12-13T23:52:13Z<p>To all intents and purposes there are no threads in JS, therefore execution does not happen on a separate thread.</p>
<p>What web APIs do do is make use of asynchronous callbacks, and that's what is happening here -- get() returns immediately, your callback function will be called once the load is complete and there is no other JS code running.</p>
http://stackoverflow.com/questions/1864756/web-workers-and-canvas/1864774#18647741Answer by olliej for Web Workers and Canvasolliej2009-12-08T05:18:03Z2009-12-08T05:18:03Z<p>No.</p>
<p>The postMessage spec was updated a few months back to allow you to post ImageData objects but as yet no one has implemented that behaviour (we're all getting there). The problem with canvas itself is that it's a DOM element and so doesn't work in a worker (there's no DOM).</p>
<p>This was raised recently on either the whatwg or web-apps mailing lists so i suspect we'll start looking at whether it's possible to provide a CanvasRenderingContext2D-like api in workers.</p>
http://stackoverflow.com/questions/1787470/tic-tac-toe-help/1787685#17876850Answer by olliej for Tic Tac Toe helpolliej2009-11-24T03:59:12Z2009-11-24T03:59:12Z<p>I believe tictactoe has actually been "solved" in the sense that there's an algorithm that will guarantee a win or draw, at least form the initial state so a alpha-beta search seems excessive. (unless you're just learning to implement it on a simpler game than chess or whatever)</p>
http://stackoverflow.com/questions/170036/decent-profiler-for-windows7Decent profiler for Windows?olliej2008-10-04T09:20:16Z2009-11-23T19:28:53Z
<p>Does windows have any decent sampling (eg. non-instrumenting) profilers available? Preferably something akin to Shark on MacOS, although i am willing to accept that i am going to have to pay for such a profiler on windows.</p>
<p>I've tried the profiler in VS Team Suite and was not overly impressed, and was wondering if there were any other good ones.</p>
<p>[Edit: Erk, i forgot to say this is for C/C++, rather than .NET -- sorry for any confusion]</p>
http://stackoverflow.com/questions/10583/what-do-you-do-when-youre-learning-a-new-programming-language7What do you do when you're learning a new programming language?olliej2008-08-14T02:20:10Z2009-11-20T21:04:45Z
<p>When you decide to learn a new language what do you do?</p>
<p>I tend to do a small amount of reading about said language then write a few simple "standard" programs -- typically raytracers and parsers because they're what i'm conceptually familiar with -- so that a can get a feel for the language and learn to use it without having to think about how to do the task at hand.</p>
<p>Once I've got to that point it just degenerates into the more boring process of just using it on a regular basis for whatever I need to do.</p>
http://stackoverflow.com/questions/1686257/problem-with-images-load-on-settimeout/1686275#16862752Answer by olliej for problem with images load on setTimeoutolliej2009-11-06T08:47:10Z2009-11-06T08:47:10Z<p>I'm not sure what you're trying to do -- it looks like you expect setTimeout tyo be synchronous (eg. block the js execution).</p>
<p>Are you sure you don't want</p>
<pre><code>setTimeout(getPortfolio, ...)
</code></pre>
<p>And you really should be using image.onload if you're waiting for loads to complete...</p>
http://stackoverflow.com/questions/1655668/javascripts-equivalent-to-phps-varname/1655679#16556791Answer by olliej for Javascript's equivalent to PHP's $$varNameolliej2009-10-31T21:25:50Z2009-10-31T21:25:50Z<p>Simply</p>
<pre><code>eval("variableName")
</code></pre>
<p>Although you have to be sure you know the exact value your evaling as it can be used for script injection if you're passing it untrusted content</p>
http://stackoverflow.com/questions/1639377/javascript-best-way-to-delete-element-from-array-without-rearrange-it/1639435#16394352Answer by olliej for javascript: best way to delete element from array without rearrange itolliej2009-10-28T19:09:21Z2009-10-28T19:09:21Z<p>Entirely implementation dependent. Internally all JS representations will eventually convert to a sparse representation, but the sparese representation tends to use more memory per element and be slower to access than the non-sparse array.</p>
<p>For this reason removing onevalue from a dense array is unlikely to releas any memory, but after a sufficient set of elements are removed the implementation will likely convert to a sparse representation to save memory overall.</p>
<p>Note: the object or value at the index you delete won't be deleted immediately -- delete simply removes the property slot from the object -- the object/value will only be removed during a GC pass, and only if there are no other references.</p>
http://stackoverflow.com/questions/1611104/strange-problem-with-javascript-code/1611134#16111343Answer by olliej for Strange problem with JavaScript code.olliej2009-10-23T02:33:11Z2009-10-23T02:33:11Z<p>IE has a "feature" where an element with a name attribute is placed in the window object, eg.</p>
<pre><code><div name=foo></div>
</code></pre>
<p>Will give you a variable "foo" -- this is non-standard, you should do </p>
<pre><code>document.getElementByName("foo")
</code></pre>
<p>To get the timer output element.</p>
http://stackoverflow.com/questions/1585723/how-can-i-change-the-location-of-a-page-and-not-redirect-the-user/1585732#15857320Answer by olliej for How can I change the location of a page and not redirect the user?olliej2009-10-18T19:04:26Z2009-10-18T19:04:26Z<p>You can set location.hash without a page load, but i'm not sure if that's what you're wanting -- your question is fairly vague.</p>
http://stackoverflow.com/questions/1548890/standard-32-64-bit-universal-webkit-flash-plugin-and-leopard/1548916#15489163Answer by olliej for Standard (32/64-bit Universal), WebKit, Flash Plugin and Leopardolliej2009-10-10T19:58:10Z2009-10-10T19:58:10Z<p>Flash will not load in 64bit on Leopard as it is 32bit code. WebKit on SnowLeopard can run Flash in 64bit because it runs Flash in a completely separate (32-bit) process.</p>
http://stackoverflow.com/questions/1515100/using-a-c-library-in-an-objective-c-app/1515112#15151122Answer by olliej for Using a C++ library in an Objective-C app?olliej2009-10-03T23:20:16Z2009-10-03T23:20:16Z<p>Yes, you'll just need to switch any Obj-C files that include (directly or indirectly) C++ content into objective-c++. Basically that just means changing the extension to <code>.mm</code> -- this will give you the ability to use C++ and Obj-C together in those files.</p>
http://stackoverflow.com/questions/1495403/javascript-array-iteration-returning-more-than-values/1495452#14954522Answer by olliej for JavaScript Array Iteration returning more than valuesolliej2009-09-29T23:29:06Z2009-09-29T23:29:06Z<p>you want to do:</p>
<pre><code>for (var i in object) {
if (!object.hasOwnProperty(i))
return;
... do stuff ...
}
</code></pre>
<p>As for..in enumeration iterates over all properties (enumerable or otherwise) that exist on both the object and its prototype chain. The <code>hasOwnProperty</code> check restricts iteration to just those properties on the actual object you want to enumerate.</p>
<p>ES5 makes things a little better for library developers (and help avoid this stuff) but we won't see that ina shipping browser for quite a while :-(</p>
http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/173142#1731424Answer by olliej for Language showdown: Convert string of digits to array of integers?olliej2008-10-06T03:45:10Z2009-09-29T08:53:21Z<p>Two versions in JavaScript:</p>
<pre><code>myString.split("").map(Number)
</code></pre>
<p>A second version which is more concise when you amortise it over the entire length of your code base:</p>
<pre><code>// During initialisation of your app
String.prototype.map = Array.prototype.map
...
// Later
myString.map(Number)
</code></pre>
http://stackoverflow.com/questions/1490537/gmt-time-on-iphone/1490623#14906230Answer by olliej for GMT time on iPhoneolliej2009-09-29T04:52:26Z2009-09-29T04:52:26Z<p>NSDate stores the time zone internally -- there are a few functions you can call and pass in a target timezone if you jsut want a string representation of the date, see <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html" rel="nofollow">apple's documentation</a></p>
http://stackoverflow.com/questions/1489738/how-to-inherit-from-the-dom-element-class/1490044#14900440Answer by olliej for How to inherit from the DOM element classolliej2009-09-29T00:48:30Z2009-09-29T00:48:30Z<p>You can simply add new functions to the DOM prototypes, eg.</p>
<pre><code>Element.prototype.myNameSpaceSomeFunction = function(...){...}
</code></pre>
<p>Then <code>myNameSpaceSomeFunction</code> will exist on all elements.</p>
http://stackoverflow.com/questions/1488860/how-do-i-access-the-properties-of-a-json-serialized-object/1489003#14890033Answer by olliej for How do I access the properties of a JSON Serialized object.olliej2009-09-28T19:47:25Z2009-09-28T19:47:25Z<p>Use <code>json2.js</code> from <a href="http://json.org" rel="nofollow">http://json.org</a> -- it provides a <code>JSON</code> object on the global object that provides a <code>parse</code> function. It has the added advantage of being the basis for the ES3.1 specification of JSON, and will use a native implementation of JSON if possible. This means that you can parse a json serialised object with:</p>
<pre><code>object = JSON.parse(string)
</code></pre>
<p>Because of the way it is implemented this means if you page is viewed in a browser that supports JSON (eg. Safari 4, Firefox 3.5, even IE8) you will get a fast and <em>secure</em> parser automatically.</p>
http://stackoverflow.com/questions/1486476/javascript-json-strigify-changes-time-of-date-because-of-utc/1488415#14884151Answer by olliej for Javascript: JSON Strigify changes time of date because of UTC!olliej2009-09-28T17:50:39Z2009-09-28T17:50:39Z<p>JSON uses the Date.prototype.toISOString function which does not represent local time -- it represents time in unmodified UTC -- if you look at your date output you can see you're at UTC+2 hours, which is why the JSON string changes by two hours, but if this allows the same time to be represented correctly across multiple time zones.</p>
http://stackoverflow.com/questions/1480399/which-javascript-interpreter-is-the-easiest-to-embedd-in-a-c-application/1480477#14804772Answer by olliej for Which javascript interpreter is the easiest to embedd in a C application?olliej2009-09-26T05:17:45Z2009-09-26T19:25:12Z<p>JavaScriptCore (the WebKit JS engine) has a pure C API that has guaranteed API and ABI stability -- you can build from source available at <a href="http://webkit.org" rel="nofollow">http://webkit.org</a> but it's a system framework on macos, and is distributed at least in debian (-unstable?). It runs on all platforms as it has both an interpreter and a jit (which is stable on x86 and x86-64)</p>
http://stackoverflow.com/questions/1479651/javascript-not-working-in-safari-in-mac-osx/1480098#14800980Answer by olliej for Javascript not working in Safari in Mac OSXolliej2009-09-26T00:39:15Z2009-09-26T00:39:15Z<p>Have you opened the console in Safari? -- it should produce an error message if the code is wrong, and it has a full js debugger that might also help.</p>
http://stackoverflow.com/questions/1474815/question-on-code-in-mozillas-array-prototype-indexof/1474840#14748404Answer by olliej for Question on Code in Mozilla's Array.prototype.indexOfolliej2009-09-25T00:26:03Z2009-09-25T00:26:03Z<p>It's an unsigned right shift -- they're basically do that as a very fast way to convert to a valid array index.</p>
http://stackoverflow.com/questions/1474466/webkit-as-a-win32-api-control/1474597#14745971Answer by olliej for Webkit as a Win32 API contrololliej2009-09-24T22:55:39Z2009-09-24T22:55:39Z<p>There's a COM API maintained by Brent Fulgham that is the standard apple webkit COM api, using Curl, Cairo and CFLite for the backend. You can get details at <a href="http://whtconstruct.blogspot.com/2009/09/updated-webkit-sdk-r48212.html" rel="nofollow">http://whtconstruct.blogspot.com/2009/09/updated-webkit-sdk-r48212.html</a></p>
http://stackoverflow.com/questions/1473935/can-the-size-of-pointers-vary-depending-on-whats-pointed-to/1473963#14739630Answer by olliej for Can the Size of Pointers Vary Depending on what's Pointed To?olliej2009-09-24T20:27:31Z2009-09-24T20:27:31Z<p>It's a "depends" situation. In C++ I recall that member function pointers are actually two pointers in size, but that may be purely an implementation detail.</p>
<p>In some of the really old pre-PC systems you could also have pointer size depend on what was being referenced (but then you could also have 11bit characters :D )</p>
http://stackoverflow.com/questions/1473693/is-postmessage-json-encoded-decoded-in-google-chrome-as-it-is-in-firefox/1473722#14737221Answer by olliej for is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox?olliej2009-09-24T19:31:17Z2009-09-24T19:31:17Z<p>Alas WebKit's worker postMessage implementation doesn't currently serialise objects as it was written to an earlier version of the spec, and hasn't yet been updated to match the "final" version.</p>
<p>It's not actually JSON either -- it's the internal structured cloning algorithm in html5, which is more efficient (it doesn't need to convert to and from string) and actually somewhat richer than JSON, however no one currently implements that :-(</p>
http://stackoverflow.com/questions/1472842/firefox-and-chrome-give-different-values-for-offsettop/1473517#14735170Answer by olliej for Firefox and Chrome give different values for offsetTopolliej2009-09-24T18:53:11Z2009-09-24T18:53:11Z<p>Put you code into a <code>window.onload</code> function. I recall having issues when attempting to work with the dom directly from a <code><script></code> during page load in firefox, and webkit tends to be slightly more willing to give a sane DOM at such points.</p>
<p>This is just based on prior issues i've encountered, i'm not sure if it's applicable to your case.</p>
http://stackoverflow.com/questions/1473196/json-parsing-with-jsonresult-and-javascript/1473492#14734920Answer by olliej for JSON parsing with JsonResult and JavaScriptolliej2009-09-24T18:47:37Z2009-09-24T18:47:37Z<p>The JSON is invalid, it should be</p>
<pre><code>{
"name" " "me",
"age" : "100"
}
</code></pre>
<p>And <code>new {..}</code> doesn't do anything meaningful -- the object literal is alone sufficient.</p>
http://stackoverflow.com/questions/1462546/browser-plugin-detection/1462559#14625591Answer by olliej for Browser Plugin Detectionolliej2009-09-22T20:56:13Z2009-09-22T20:56:13Z<p>I believe <code>navigator.plugins</code> gives you access to that information, it has name, description, and supported mimetypes of each plugin.</p>
http://stackoverflow.com/questions/1456330/scope-in-javascript/1456346#14563462Answer by olliej for scope in javascriptolliej2009-09-21T19:24:06Z2009-09-21T19:24:06Z<p>You've missed out the <code>var</code> keyword so <code>works</code> is being defined on the global object.</p>
<p>You want</p>
<pre><code>var works = ...
</code></pre>
http://stackoverflow.com/questions/1455724/preventing-auto-creation-of-global-variables-in-javascript/1455740#14557404Answer by olliej for Preventing auto-creation of global variables in Javascriptolliej2009-09-21T17:29:17Z2009-09-21T17:45:31Z<p><a href="http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/" rel="nofollow">ES5 strict mode</a> prevents automatic creation of global variables, but it's probably going to be a year before there are any shipping browsers that recognise strict mode, so JSLint is probably your best bet until then :-/</p>
http://stackoverflow.com/questions/1864756/web-workers-and-canvas/1864774#1864774Comment by olliej on Web Workers and Canvasolliej2009-12-08T19:10:16Z2009-12-08T19:10:16ZThe problem is that the DOM has no concept of concurrency, so Workers don't allow any shared state. The only way of communicating with a worker is with postMessage, and that performs a clone according to the "internal structured cloning algorithm" which can basically be thought of as JSON but with additional support for a few key types (File, FileList, ImageData, Blob, Date and RegExp)http://stackoverflow.com/questions/1800594/in-javascript-why-is-preferred-over-new-array/1800768#1800768Comment by olliej on In JavaScript, why is [ ] preferred over new Array(); ?olliej2009-11-26T02:04:36Z2009-11-26T02:04:36Znew String returns a new object of class String, this is a really important difference: strict equality will fail, the empty string->false conversion won't happen, you can attach properties to the object (you can't with a string).
And i believe in all fast JS engines it will also end up being very slow to use.http://stackoverflow.com/questions/1732837/simple-problem-safari-and-css-javascript-rollovers/1732842#1732842Comment by olliej on Simple problem: Safari and CSS/Javascript Rollovers.olliej2009-11-14T02:14:10Z2009-11-14T02:14:10ZIn IE <.. id="foo" ..>.. will place a property foo on the global object, Safari and Firefox both ostensibly mimick this behaviour now, maybe Safari doesn't do it for images? http://stackoverflow.com/questions/1719607/is-the-memory-allocated-by-new-operated-consecutive/1719609#1719609Comment by olliej on Is the memory allocated by new operated consecutive?olliej2009-11-12T03:07:10Z2009-11-12T03:07:10Zthis is wrong -- you have no guarantee of ordering in or out of your process.http://stackoverflow.com/questions/1655668/javascripts-equivalent-to-phps-varname/1655681#1655681Comment by olliej on Javascript's equivalent to PHP's $$varNameolliej2009-11-01T12:19:08Z2009-11-01T12:19:08Z@Fabien: if the var is not in the global scope, then using 'this' as a prefix will not help you -- the only reason that 'this' and 'window' are often interchangable is because 'this' is always the global object when a function is called without a base and window is merely an alias to that global object.http://stackoverflow.com/questions/1655668/javascripts-equivalent-to-phps-varname/1655679#1655679Comment by olliej on Javascript's equivalent to PHP's $$varNameolliej2009-11-01T12:17:12Z2009-11-01T12:17:12Z@Fabien: I know that eval has a huge number of security risks, i even commented explicitly to that effect. That said the only way to achieve what was requested is eval, saying "you definitely shouldn't use eval" implies that my answer should have been "it's impossible" which is clearly wrong.http://stackoverflow.com/questions/1590965/uploading-canvas-image-data-to-the-server/1591006#1591006Comment by olliej on Uploading 'canvas' image data to the serverolliej2009-10-20T02:26:00Z2009-10-20T02:26:00Z...and safari (and every other webkit based browser)http://stackoverflow.com/questions/1573593/whats-the-fastest-way-to-iterate-over-an-objects-properties-in-javascript/1573610#1573610Comment by olliej on What's the fastest way to iterate over an object's properties in Javascript?olliej2009-10-15T17:43:13Z2009-10-15T17:43:13ZActually the object property order is defined -- it's order of addition. Order of properties on the prototype chain becomes more gnarly.http://stackoverflow.com/questions/1570896/what-does-mean-in-a-regular-expression/1570901#1570901Comment by olliej on What does ?= mean in a regular expression?olliej2009-10-15T07:59:07Z2009-10-15T07:59:07ZThat seemed like an unnecessarily snarky answer -- google doesn't accept ?= as something to search for, and to find out in other ways you'd probably need to know about regex assertions in the first place.http://stackoverflow.com/questions/1548890/standard-32-64-bit-universal-webkit-flash-plugin-and-leopard/1548916#1548916Comment by olliej on Standard (32/64-bit Universal), WebKit, Flash Plugin and Leopardolliej2009-10-10T20:36:21Z2009-10-10T20:36:21ZErrr, are you sure you're on leopard?http://stackoverflow.com/questions/1494713/how-does-javascripts-sort-work/1494742#1494742Comment by olliej on How does Javascript's sort() work?olliej2009-09-30T02:14:44Z2009-09-30T02:14:44ZJavaScriptCore actually uses an AVL tree for sorting as it is necessary to behave deterministically in the face of comparator functions that modify the array being sorted.http://stackoverflow.com/questions/1486476/javascript-json-strigify-changes-time-of-date-because-of-utc/1486612#1486612Comment by olliej on Javascript: JSON Strigify changes time of date because of UTC!olliej2009-09-28T17:51:45Z2009-09-28T17:51:45Zthis is incorrect as it makes your code non-timezone safe -- you should be correcting the timezone when your read the date back in.http://stackoverflow.com/questions/1473693/is-postmessage-json-encoded-decoded-in-google-chrome-as-it-is-in-firefox/1473722#1473722Comment by olliej on is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox?olliej2009-09-25T02:05:04Z2009-09-25T02:05:04ZYour best bet would be to add a small test to check to see whether postMessage serialises, and if it does not just do JSON.stringify and JSON.parse manually. It's best to do it this way so that it works on all webkit ports -- chrome is just another port of apple's webkit and you don't want to break all of the others (esp. Safari)http://stackoverflow.com/questions/1454089/adding-methods-to-native-javascript-objects/1454100#1454100Comment by olliej on Adding methods to native JavaScript objects olliej2009-09-21T19:28:42Z2009-09-21T19:28:42ZIf you use a generic name you are likely to end up with the function replacing (or being replaced by) a function from library or later version of the spec.
eg. String.prototype.trim = function () { ... }
that removes extra formatting would result in incorrect behaviour in a new ES implementation (in ES5 String.prototype.trim exists).
By doing String.prototype.myCompanyNameTrim = function....
You are much less likely to get a name collision.http://stackoverflow.com/questions/1452068/is-there-a-correct-way-to-yield-in-the-cooperative-threading-sense-in-javascrip/1452109#1452109Comment by olliej on Is there a correct way to 'yield' in the cooperative threading sense in javascript?olliej2009-09-20T23:32:34Z2009-09-20T23:32:34ZAll modern browser implementations have clamped setTimeout to ~10ms (basically 10ms on all non-windows systems, where the timer resolution required to get <16ms timers has a significant power usage impact). So you don't really need to worry about to short a timeout.