c#
-
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
-
asp .net repeater itemcommand command name common repeater control item operations
This is only one small snippet illustrating some functionality. I will add to this blog from my previous usage with Repeater control over time or per request. In many deployments, I prefer to use Repeater or ListView rather than Grids.… Continue reading
-
directory info get files show directories C# .Net
There is sometimes a misunderstanding between a “file” and a “folder” in filesystems. In C# .Net the following is often used to list all “files” in a folder. However, even though you can specify to search containing subdirectories, the above… Continue reading
-
asp .net could not establish trust relationship for the SSL/TLS secure channel
A quick google search revealed multiple reported resolutions, however, after following the steps in the MSDN blog reference listed below, the issue was still unresolved in my situation. Additional details in the stack trace will reveal another similar message: “The… Continue reading
-
c# .net split strings with math divrem using lambda linq
Recently I came across a nice alternative to loops using linq for evenly splitting a string using Math.DivRem. The following example illustrates how this can be used to parse a sequence of numbers based on a time series which may… Continue reading