sunnyarora

Stories kicked by sunnyarora

Observer Design Pattern in vanilla & strawberry flavor(blog.projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 6 months ago

Source Code: ObserverPattern.zip (11.68 kb) UML VSD: Patterns.vsd (219.50 kb) These diagrams are completely handmade by me without any copy paste from any pre-existing text... read more...

add a comment |category: |Views: 7

tags: another

UML Handy Mini Pictorial Guide(blog.projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Below is a very handy pictorial guide for UML notations. Very short and sweet! Nothing great but just felt like sharing it! read more...

add a comment |category: |Views: 14

tags: another

Security Infrastructure of Dotnet – Part 1(blog.projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Little background Dotnet security infrastructure is setup above the the traditional operating system security. Managed compilers compile the source code into Microsoft Intermediate Language (MSIL), which is often described as object oriented assembly language. MSIL is machine independent. We can port the MSIL onto any hardware and execute seamlessly. read more...

add a comment |category: |Views: 6

tags: another

Security Infrastructure of Dotnet – Part 1(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Dotnet security infrastructure is setup above the the traditional operating system security. Managed compilers compile the source code into Microsoft Intermediate Language (MSIL), which is often described as object oriented assembly language. MSIL is machine independent. We can port the MSIL onto any hardware and execute seamlessly. read more...

add a comment |category: |Views: 1

tags: another

Strategy Pattern(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Strategy Pattern: Prefer composition over inheritance read more...

add a comment |category: |Views: 15

tags: another

Some quick facts 1: Order of initialization(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Some quick facts on the order of initialization of objects in the inheritance hierarchy. read more...

add a comment |category: |Views: 2

tags: another

Some quick facts 2: Garbage Collection(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

How a resource is allocated to de-allocated? using(MyClass c1 = new MyClass()) { Console.WriteLine(c1.i); } The above statements do following in the sequence: 1. Allocate memory for the type MyClass on heap. ... read more...

add a comment |category: |Views: 6

tags: another

ABC of WCF(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Addressing Schemes in WCF Format of address [transport]://[machine or domain][:optional port] Example. http://localhost:80 Address Schemes WCF follows a URI based scheme, where each... read more...

add a comment |category: |Views: 16

tags: another

Security Infrastructure of Dotnet – Part 1(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Little background Dotnet security infrastructure is setup above the the traditional operating system security. Managed compilers compile the source code into Microsoft Intermediate Language (MSIL), which is often described as object oriented assembly language. MSIL is machine independent. We can port the MSIL onto any hardware and execute seamlessly. read more...

add a comment |category: |Views: 2

tags: another

Making WCF work in partial trust(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

It is really a challenge to make WCF work under partial trust, and especially when you are stuck with a hosting provider that has locked down the allow override option at the Machine.Config level. I had a really tough time plugging my ASPX pages (if I may call this VIEW Provider as in MVC architecture) with WCF Services (called CONTROLLER in MVC terminology ;) ). I hope you find the information handy while trying to deploy a WCF service in Partial Trust. read more...

add a comment |category: |Views: 32

tags: another

Cross page posting in ASP.NET(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

Cross page posting lets us post data from one form to another. History Back in .NET 1.x days .Net 1.x did not explicitly support cross page posting. If we are/were still working with DotNet 1.0 we would have .... read more...

add a comment |category: |Views: 2

tags: another

SQL Server Performance Optimization(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

This SQL performance optimization guide is divided in three sections section I lists all entities that can be optimized and the inputs required for optimization process. section II chalks out a step by step plan cum checklist for database optimization process. section III details on the knowledge needed to translate the steps in section II into action. read more...

add a comment |category: |Views: 10

tags: another

Which SQL data type to use when(projectsilos.com)

submitted by sunnyarorasunnyarora(70) 2 years, 7 months ago

It is always a dilemma for beginners to decide on which SQL data type to choose under which condition! In this post I have tried to answer this question to some extent. read more...

add a comment |category: |Views: 9

tags: another