function(p,a,c,k,e,r) de-mystify trick
Friday, 21. September 2007, 17:40:41
eval(function(p,a,c,k,e,r)
here's a small demonstration of how to turn that code into something sensible..
A word of warning: I'm experimenting with Wink for creating Flash screencast-type demonstrations. That means you agree to receive a 1.5 M .swf file of screenshots and text by clicking through to the post.
I haven't quite mastered Wink, some unintentional mouse movement might occur but anything in the spirit of experimentation.. Feel free to tell me in comments whether you like more of those Flash-based visual demonstrations or prefer the old-fashioned screenshot approach.
http://www.hallvord.com/opera/unpack.htm
By hallvors, # 21. September 2007, 17:44:03
But it's mutch better to see this demo through Opera RSS reader.
By FataL, # 21. September 2007, 18:53:01
By kyleabaker, # 21. September 2007, 19:20:25
I kind of liked those flash tutorials that explain Opera functionality... they have a "next" button in the lower right corner imho.
"Normal" screenshots will do just fine, though
edit: Oh, nearly forgotten to add: I like this trick very much
By _Grey_, # 21. September 2007, 20:17:51
I've already made some buttons to use here: http://operawiki.info/MakingFlashTutorials
By non-troppo, # 21. September 2007, 23:47:40
By larskl, # 21. September 2007, 23:53:13
As I wrote about a long time ago, Firefox has an extension like this. It formats the source, and you can see the CSS applied to any element with it. Really helpful tool. Together with the CSSViewer you save yourself a lot of time.
Except that, I really hope you will show us more tricks of the trade Hallvord. This blog gets better every day!!!
- ØØ -
By NoteMe, # 22. September 2007, 00:17:12
By scipio, # 22. September 2007, 07:36:21
I knew of CTRL+A, CTRL+C in alert boxes. It is terrible annoying that this does not work in other browsers!
By Smir, # 22. September 2007, 13:56:49
NoteMe: the "eval=alert" trick is somewhat beyond the scope of the Firefox tool (presuming it is a code beautifier only). This script is compressed in a way that means the original source code makes no sense, and you get source that makes sense to read only by actually running it. To see meaningful source here you'd need a combined JS debugger (to run the decompress routine and stop afterwards) and code beautifier (to format the generated scripts nicely).
By hallvors, # 22. September 2007, 20:07:22
Even though I can't read the code in the flash movie, I should have taken a hint if I had read the first line again and understood it was the "re-compilation"/interpretation you where on about. Neither the less, thanks for correcting me back to the stone age there.
Firefox do have an uneval function as well for some reason. Although I can't see much use for it except doubling the amount of Fuzzytest bugs++.
- ØØ -
By NoteMe, # 22. September 2007, 21:54:10
By _Grey_, # 23. September 2007, 01:28:38
By phamgiagia, # 26. October 2007, 00:18:38
var n=document.createElement('textarea');document.body.appendChild(n);eval=function(s){n.value+=s;};
instead.
http://www.arachnoid.com/arachnophilia/index.html contains a beautifier, and http://www.prettyprinter.de/ usually works just fine. What is it Hallvord is using? No public script I assume?
By Ohwzay, # 2. April 2008, 12:53:24
I mostly use ad-hoc stuff, I've written one PHP script that does a pretty good job at being a minimal JS pretty-printer - knows just enough syntax to parse it - and I'm going to make that public at some point. When I get around to it.
By hallvors, # 2. April 2008, 18:42:08