Language References
-
ASP .NET Code Contracts Examples
Reference http://visualstudiomagazine.com/articles/2010/06/23/code-contracts.aspx http://msdn.microsoft.com/en-us/library/dd264808(v=vs.110).aspx Continue reading
-
TPL Task Parrallel Library .net 4.0 parallel programming multi thread threading task queue user work item
References http://msdn.microsoft.com/en-us/library/dd460705.aspx (added 20121023 good comprehensive resource with illustrative examples) http://www.codeproject.com/Articles/362996/Multi-core-programming-using-Task-Parallel-Library http://www.codeproject.com/KB/threads/ParallelTasks.aspx Optimize Managed Code For Multi-Core Machines http://msdn.microsoft.com/en-us/magazine/cc163340.aspx good blog http://www.codethinked.com/net-40-and-systemthreadingtasks queueuserworkitem http://msdn.microsoft.com/en-us/library/4yd16hza.aspx threadpool class http://msdn.microsoft.com/en-us/library/y5htx827.aspx task class http://msdn.microsoft.com/en-us/library/system.threading.tasks.task.aspx task parrallelism http://msdn.microsoft.com/en-us/library/dd537609.aspx How to: Use Parallel.Invoke to Execute Parallel… Continue reading
-
Custom DAL Class SQL ORM ASP .NET
(common.DataObject may be of your choosing or may simply replace with dynamic) Continue reading
-
Custom AWS S3 Helper Class AWSSDK Wrapper
Implements some very commonly used AWS S3 functionality. (need to merge with my other AWS wrapper classes, Route53, EC2, etc) Continue reading
-
Custom URLRewriting with XML and Global.asax
utilizes my custom DocParser class here https://ronniediaz.com/2013/08/23/parse-xml-to-dynamic-expandoobject-c-net-4-0/ rewrite.xml examples Continue reading
-
Common functions asp .net static shared library
references custom encryption class here https://ronniediaz.com/2011/01/13/quick-net-encryption-reference/ Continue reading
-
MSSQL User Defined Functions vs Stored Procedures
I received this question earlier today, and thought it was a valid question often misunderstood, and deserving of a small write-up: “Should a User Defined Function be your first choice instead of a Stored Procedure?” While there are many pros… Continue reading
-
Intro to git
git is essentially decentralized, which seems to be the direction everything is going, so I decided to take a shot at it. I’ve used cvs, VSS, TFS, SVN and now git and I’ve got to say it is definitely pretty… Continue reading
-
How to Create secure relational databases in SQL
The first step to a secure DB, is a well structured DB and the application layers that access it. Take the following example of a table containing factories and the robots they produce. FACTORYNAME ROBOTNAME FACTORY1 Ron FACTORY1 John FACTORY2… Continue reading