shivashankarp

Stories submitted by shivashankarp

TagCache - A .NET cache for tagging and tag based invalidations(www.codeproject.com)

submitted by shivashankarpshivashankarp(335) 8 months, 5 days ago

TagCache is a full fledged, high performance cache which allows associating values with tags (a.k.a. labels). Individual tags or a combination of tags can be used to invalidate all cache items that match the tag specification. The highlight here is that the tag invalidation operation is ~O(1). read more...

add a comment |category: |Views: 2

tags: another

SharpTemplate - A strongly typed HTML templating solution for Script#(xtreemgeek.net)

submitted by shivashankarpshivashankarp(335) 2 years, 4 months ago

SharpTemplate is a HTML templating engine that seamlessly integrates with Script# to provide compile time, strongly typed, super efficient HTML templating capabilities for productive rich web application development. Some of its advantages are listed below… * Converts HTML into C# that gets compiled by Script# * Benefits from strong typing for all variable / API references that occur within the HTML * Generated HTML templates are super efficient due to compile time pre-processing that helps avoid regex matching in JavaScript unlike many other templating engines * Familiar templating syntax (based upon Asp.Net) read more...

1 comment |category: |Views: 12

tags: another

XML Cruncher(cognitivecoding.com)

submitted by shivashankarpshivashankarp(335) 4 years, 2 months ago

Remove the flab from XML, in order to optimize for transfer over network or storing in DB. This post covers a simple solution to achive this using the .Net XML APIs. read more...

add a comment |category: |Views: 24

tags: another

CSS Minifier : A simplified and performant version(cognitivecoding.com)

submitted by shivashankarpshivashankarp(335) 4 years, 2 months ago

A simplified and performant version of CSS minifier. read more...

add a comment |category: |Views: 22

tags: another

Hidden Gem: Singleton Factory in C#(cognitivecoding.com)

submitted by shivashankarpshivashankarp(335) 4 years, 2 months ago

Simple and generic implementation of singleton factory in C#. read more...

5 comments |category: |Views: 343

tags: another

Automate packing multiple images into one and css generation(blogs.msdn.com)

submitted by shivashankarpshivashankarp(335) 4 years, 11 months ago

This article provides a tool that helps to pack multiple images into one for the purpose of web page performance improvement. The tool also generates the corresponding CSS. read more...

add a comment |category: |Views: 20

tags: another

Combine CSS with JS and make it into a single download!(blogs.msdn.com)

submitted by shivashankarpshivashankarp(335) 5 years ago

This post discusses a technique by which the CSS can be combined with JS and can be downloaded to the client as a single resource. read more...

add a comment |category: |Views: 22

tags: another