shivashankarp

Stories kicked by shivashankarp

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

submitted by shivashankarpshivashankarp(335) 8 months, 4 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

Use .NET Built-in Methods to Save Time and Headaches(www.ironshay.com)

submitted by shayfriedmanshayfriedman(1411) 2 years, 4 months ago

During our everyday programming tasks we run into several repetitive code blocks that after the 20th time you implement them become really annoying. In this post I will take you through several of such blocks and show you how to implement them using built-in .NET methods. read more...

4 comments |category: |Views: 824

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

Delete entity or collection in Linq to SQL without getting them(msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 6 months ago

In order to delete an entity or a collection of entity in Linq to SQL, you have to first get them and then delete them. This requires additional database roundtrip. Here's a strongly typed maintenance free way to delete entities directly using their primary key. read more...

add a comment |category: |Views: 703

tags: another

Solving common problems with Compiled Queries in Linq to Sql for high (msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 6 months ago

If you are using Linq to SQL, instead of writing regular Linq Queries, you should be using Compiled Queries. if you are building an ASP.NET web application that’s going to get thousands of hits per hour, the execution overhead of Linq queries is going to consume too much CPU and make your site slow. There’s a runtime cost associated with each and every Linq Query you write. read more...

add a comment |category: |Views: 292

tags: another

Massive BlogEngine.Net Security Hole - Fix Provided(dannydouglass.com)

submitted by TroyMGTroyMG(2670) 4 years, 1 month ago

A massive security hole in BlogEngine.net was just revealed that allows anyone to see your passwords... Danny Douglass explains the issue and provides a patched BlogEngine.Core assembly to resolve the issue until the next release of BlogEngine is available. read more...

4 comments |category: |Views: 63

tags: another

.NET Developers: Recommend Your Favorite Open-Source Projects(blog.jeffreymcmanus.com)

submitted by jeffreymcmanusjeffreymcmanus(105) 4 years, 1 month ago

VSLive speaker Jeffrey McManus is asking .NET developers for help with recommendations on their favorite open source tools. read more...

add a comment |category: |Views: 4

tags: another

stylizedweb.com - Most used CSS tricks(stylizedweb.com)

submitted by wisemxwisemx(8074) 4 years, 2 months ago

Earlier before I have written an article about current best CSS hacks which you can see here And now here’s the list of today’s most used CSS tricks – tips. I have added image examples for most of them because of critics on CSS hacks article. If you think I have missed any please let me know. read more...

add a comment |category: |Views: 11

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

Tweaking your Blogger blog(davesquared.blogspot.com)

submitted by eljuanoeljuano(15) 4 years, 2 months ago

Post explains how to do customise your own Blogger blog once you get started. Very handy! read more...

2 comments |category: |Views: 2

tags: another

Software Startup Lessons (Part 1): The Basics(blog.lavablast.com)

submitted by EtienneTremblayEtienneTremblay(5008) 4 years, 2 months ago

A few simple software startup lessons. read more...

add a comment |category: |Views: 16

tags: another

if ... else if ... else if ... else ... : an alternative(blog.activa.be)

submitted by activaactiva(2340) 4 years, 2 months ago

Did you know there's an alternative way of writing "if .. else if .. else if .. etc.." in C#? You probably do, but if you don't, read on... read more...

5 comments |category: |Views: 270

tags: another

The Entire Patterns and Practices catalog in one place(blogs.msdn.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 4 years, 2 months ago

The P&P group at MS is dedicated to enabling YOU, the developer, implement the best patterns and follow practices designed to increase your chances for success. At this link is a full list of the P&P group's catalog, including application blocks, reusable code, factories, guides, patterns and tools. Sweet. read more...

add a comment |category: |Views: 18

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

Localhost HTTP debugging with Fiddler(coderjournal.com)

submitted by zigamorphzigamorph(3319) 4 years, 2 months ago

I have been a huge fan of Fiddler the HTTP Debugging Proxy for a couple years now. However one thing that always bugged me about any network debugging tool was the fact that it could debug localhost or 127.0.0.1. However I just found a solution while racking my brain for a way to debug one of my local projects. read more...

5 comments |category: |Views: 90

tags: another

A Question of Programming Ethics(codinghorror.com)

submitted by jdelatorjdelator(500) 4 years, 2 months ago

I generally try to give people the benefit of the doubt, but it's difficult to imagine any scenario where this isn't a completely malicious violation of people's trust. read more...

5 comments |category: |Views: 7

tags: another