Stories recently tagged with 'Compression'

REALLY small unzip utility for Silverlight(sharpgis.net)

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 9 months ago

There are quite a few libraries out there that adds zip decompression/compression to Silverlight. However, common to them all is that they add significantly to the size of the resulting .xap. It turns out that Silverlight 2.0 already has zip decompression built-in. It uses this to uncompress the .xap files which really just are zip files with a different file extension. There are several blog posts out there that will tell you how to dynamically load a XAP file and load it. It turns out that if you use the same approach with almost any other zip file, you can actually do the same thing, even though this is not a Silverlight XAP. I don’t think this was the original intent. but its still really neat! Here’s how to accomplish that, based on a zip file stream: read more...

add a comment |category: |Views: 155

tags: another

Compress / Gzip files in .Net 2.0 using C# (System.IO.Compression)(webtips.co.in)

submitted by webtipswebtips(265) 3 years, 4 months ago

Zip multiples files in folder using Asp.net 2.0 C# System.IO.Compression class progammatically read more...

add a comment |category: |Views: 329

tags: another

Frictionless data persistence in Silverlight 2(dimebrain.com)

submitted by dcrennadcrenna(1355) 3 years, 7 months ago

This article will show you how to work with plain objects in Silverlight code, and use attributes to have those values automatically persisted in IsolatedStorage, or a compressed version of IsolatedStorage. You can also use this approach to define your own targets, all without writing any plumbing code around your state objects. read more...

add a comment |category: |Views: 38

tags: another

Compression in Silverlight 2 : porting SharpZipLib(dimebrain.com)

submitted by dcrennadcrenna(1355) 3 years, 7 months ago

Maximize the user's IsolatedStorage capacity in Silverlight applications. This article provides a way to use stream compression in Silverlight to shrink your storage payload, by porting ICSharpCode's SharpZipLib project into Silverlight 2 Beta 2. read more...

add a comment |category: |Views: 373

tags: another

More on GZip compression with ASP.NET Content(west-wind.com)

submitted by samdnpsamdnp(975) 3 years, 10 months ago

If you have a hosted site, sometimes you cannot change settings on the IIS server. This article shows you how to enable GZip compression directly within ASP, bypassing the server settings. I used this code on my site and it works great. read more...

1 comment |category: |Views: 163

tags: another

Compress your pages, css, js and WebResources.axd files for better per(mironabramson.com)

submitted by MironMiron(495) 4 years, 4 months ago

Compress your pages, css, js and WebResources.axd files for better performance in ASP.NET read more...

add a comment |category: |Views: 7

tags: another

System.IO.Compression.DeflateStream - Gotcha(chiramattel.com)

submitted by georgeckgeorgeck(355) 4 years, 4 months ago

This article explains a common pitfall in DeflateStream and hos this can be solved - a must read for anyone who is using this class. read more...

1 comment |category: |Views: 1326

tags: another

Compress strings in C#(madskristensen.dk)

submitted by dalzieldalziel(6230) 4 years, 11 months ago

Compress the strings using a GZipStream and then decompress them later when needed. read more...

1 comment |category: |Views: 21

tags: another

I'm all Zipped Up(stevenharman.net)

submitted by usshermussherm(5285) 4 years, 11 months ago

Decrease your website's bandwidth requirements by turning on HTTP Compression on your IIS 6.0 web server. read more...

add a comment |category: |Views: 1

tags: another

Compressed HTML makes your pages zippy(hunlock.com)

submitted by pcx99pcx99(165) 5 years, 1 month ago

For a just a few lines of code in your .htaccess file file you can shave off at least 50% of your non-binary bandwidth usage and make your pages load substantially and noticeably faster, all without changing a single line in any of your pages. It's crazy, but it's true! read more...

4 comments |category: |Views: 5

tags: another

Compression and performance - GZip vs. Deflate(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 2 months ago

First I tested the GZipStream and then the DeflateStream. I expected a minor difference because the two compression methods are different, but the result astonished me. I measured the DeflateStream to 41% faster than GZip. read more...

1 comment |category: |Views: 430

tags: another

HTTP compression in ASP.NET 2.0(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 5 months ago

The new System.IO.Compression namespace in .NET 2.0 makes it easy to implement HTTP compression without having to touch IIS. The best thing about it is that you no longer need any third party compression components, it’s all build directly into .NET Framework. read more...

add a comment |category: |Views: 62

tags: another