packer

VBScript Compressor / Packer

I'm looking for a VbScript compressor / packer. Basically I want to shorten the VBScript code. Could you recommend a tool for this? ...

Is it bad to Base62 encode a javascript file?

I just found Dean Edwards javascript packer here: http://dean.edwards.name/packer/ It has a couple of options, Base62 encode Shrink variables To test it I took the latest version of jquery that is already minified to 56kb and ran it on that page above with shrink variables, the result is the same size file, 56kb. I then ran ...

Use Packer AND YUI Compressor?

I've been looking for a way to easily compress my .js locally before deployment. I finally found a command line batch script that works with YUICompressor and Packer. The problem I was having was that Packer was corrupting my files. Figuring it was an older version, I just manually took my YUIcompressed .js and ran it through the online...

Minifiable version of Prototype

Is there a version of the Prototype framework that is either packable or already packed at the highest compression level with Dean Edward's packer and is tested to work? Packer: http://dean.edwards.name/packer/ This is a Google-able question but I don't trust Google over mission-critical stuff. I want the information from the pros. ...

YSlow says my JavaScript file is no longer cached after combining 5 files and packing them

I started with 5 normal human-readable JavaScript files - they were around 10 KB in total. After using YSlow, I decided to merge the 5 files and pack them using Dean Edwards' packer. Now I have 1 file that is 4.5 KB. When I re-run YSlow, it is now showing the JavaScript file in the primed cache under 'statistics', where previously (whe...

javascript packer versus minifier

I was wondering what the differences/benefits of the packer vs the minifier were, i.e. Should you deploy a packed or minified version in your web app? Example code: var layout = { NAVVISIBLE : 1, Init : function() { this.Resize(); }, Dimensions : function() { var d = document, s = self, w, h;...

javascript/jquery: code packer/obfuscator

Possible Duplicates: How can I obfuscate JavaScript? What do you use to minimize and compress JavaScript libraries? hi all, 2 questions: i'd like to compress my code, anyone knows which compressor the guys from jquery are using? or is there any free script? (i'd like to use the compressor using an automated asp-script, so...

Behaviour of Packer, YUI compressor etc.

I'm trying to understand how all these tools work since, as far as I know, they change the name of variables to achieve a better compression. Do they also change the name of properties of objects? I guess they would not, since otherwise anything using the object[property] notation, where property is computed dynamically, could fail. Is ...

How to find some code to detect code packer?

I wanna check lots of execution files (*.exe) that made by packer or compilers. So I need a library or anything like that which could tell me witch compiler or packer has made the *.exe files. I have tried the exeinfo but it makes me lots of minute to wait becouse it works one by one. Is there any program or library to handle that all...