olliej
|
Registered User
|
I spend most of my life working on JavaScript and Canvas performance. I like to think this means I know something about JS, alas it does not mean i know anything about web design.
On the plus side, nerget.com works in Lynx.
|
|
Dec 8 |
comment |
Web Workers and Canvas The 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) |
|
Dec 8 |
answered | Web Workers and Canvas |
|
Nov 26 |
comment |
In JavaScript, why is [ ] preferred over new Array(); ? new 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. |
|
Nov 24 |
answered | Tic Tac Toe help |
|
Nov 24 |
awarded | ● Fanatic |
|
Nov 19 |
accepted | Is there a public specification of WebGL anywhere? |
|
Nov 14 |
comment |
Simple problem: Safari and CSS/Javascript Rollovers. In 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? |
|
Nov 12 |
comment |
Is the memory allocated by new operated consecutive? this is wrong -- you have no guarantee of ordering in or out of your process. |
|
Nov 6 |
awarded | ● Nice Answer |
|
Nov 6 |
answered | problem with images load on setTimeout |
|
Nov 1 |
comment |
Javascript’s equivalent to PHP’s $$varName @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. |
|
Nov 1 |
comment |
Javascript’s equivalent to PHP’s $$varName @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. |
|
Oct 31 |
answered | Javascript’s equivalent to PHP’s $$varName |
|
Oct 28 |
answered | javascript: best way to delete element from array without rearrange it |
|
Oct 23 |
answered | Strange problem with JavaScript code. |
|
Oct 20 |
comment |
Uploading ‘canvas’ image data to the server ...and safari (and every other webkit based browser) |
|
Oct 18 |
answered | How can I change the location of a page and not redirect the user? |
|
Oct 15 |
comment |
What’s the fastest way to iterate over an object’s properties in Javascript? Actually the object property order is defined -- it's order of addition. Order of properties on the prototype chain becomes more gnarly. |
|
Oct 15 |
comment |
What does ?= mean in a regular expression? That 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. |
|
Oct 12 |
accepted | how to do string conversions in objective c? |
|
Oct 10 |
accepted | Standard (32/64-bit Universal), WebKit, Flash Plugin and Leopard |
|
Oct 10 |
comment |
Standard (32/64-bit Universal), WebKit, Flash Plugin and Leopard Errr, are you sure you're on leopard? |
|
Oct 10 |
answered | Standard (32/64-bit Universal), WebKit, Flash Plugin and Leopard |
|
Oct 3 |
answered | Using a C++ library in an Objective-C app? |
|
Oct 2 |
awarded | ● Nice Answer |
|
Oct 1 |
accepted | Which javascript interpreter is the easiest to embedd in a C application? |
|
Oct 1 |
accepted | Webkit as a Win32 API control |
|
Sep 30 |
comment |
How does Javascript’s sort() work? JavaScriptCore 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. |
|
Sep 29 |
answered | JavaScript Array Iteration returning more than values |
|
Sep 29 |
answered | GMT time on iPhone |
|
Sep 29 |
answered | How to inherit from the DOM element class |
|
Sep 28 |
accepted | How do I access the properties of a JSON Serialized object. |
|
Sep 28 |
answered | How do I access the properties of a JSON Serialized object. |
|
Sep 28 |
comment |
Javascript: JSON Strigify changes time of date because of UTC! this is incorrect as it makes your code non-timezone safe -- you should be correcting the timezone when your read the date back in. |
|
Sep 28 |
answered | Javascript: JSON Strigify changes time of date because of UTC! |
|
Sep 28 |
answered | Is there a public specification of WebGL anywhere? |
|
Sep 26 |
revised |
Which javascript interpreter is the easiest to embedd in a C application? deleted 5 characters in body |
|
Sep 26 |
answered | Which javascript interpreter is the easiest to embedd in a C application? |
|
Sep 26 |
answered | Javascript not working in Safari in Mac OSX |
|
Sep 25 |
accepted | Question on Code in Mozilla’s Array.prototype.indexOf |
|
Sep 25 |
comment |
is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox? Your 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) |
|
Sep 25 |
answered | Question on Code in Mozilla’s Array.prototype.indexOf |
|
Sep 24 |
answered | Webkit as a Win32 API control |
|
Sep 24 |
answered | Can the Size of Pointers Vary Depending on what’s Pointed To? |
|
Sep 24 |
accepted | is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox? |
|
Sep 24 |
answered | is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox? |
|
Sep 24 |
answered | Firefox and Chrome give different values for offsetTop |
|
Sep 24 |
answered | JSON parsing with JsonResult and JavaScript |
|
Sep 22 |
answered | Browser Plugin Detection |
|
Sep 22 |
accepted | Preventing auto-creation of global variables in Javascript |
