Posts

Showing posts from April, 2010

A Few New Things In .Net 4 & C# 4

Tuple http://msdn.microsoft.com/en-us/library/dd414846.aspx http://msdn.microsoft.com/en-us/library/system.tuple.aspx Basically a better option than using object[] in some scenarios (Tuple elements are typed). Useful For · Creating arbitrarily sized sets of individually typed elements (can be longer than 8, just tricky). · Creating functions with multiple return values. · Create simple structs/classes on the fly. · Pass multiple parameters in a single one (e.g. Thread.Start(Object)). MEF http://msdn.microsoft.com/en-us/library/dd235164(v=VS.100).aspx http://mef.codeplex.com/ Used to make plug-ins. (Also note the similar preexisting alternative, MAF, in the System.Addin namespace). DynamicObject http://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject(v=VS.100).aspx This is the guy responsible for all of the dynamic keyword magic. You can subclass this to create your own dynamic obj...

.net All-In-One Code Framework

Delineates the framework and skeleton of Microsoft development techniques through typical sample codes in three popular programming languages (Visual C#, VB.NET, Visual C++). Basically a collection of samples for many of the APIs within the .Net Framework. Project Home Samples Catalog

OpenRasta

OpenRasta is a resource-oriented framework for .NET enabling easy ReST-ful development of web sites and services. Provides a Resources-Handlers-Codecs model similar to Model-View-Controller for serving up resources via URIs. Project Home

cURL

" curl is a command line tool for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks " Common Uses - www screen scraping & programatic form submissions; creating high level APIs for websites without having low level access. Project Home Tutorial

Introduction

Hello! I am Troy Ingram. This is a place where I will keep a collection of 'extras'. That is, miscellaneous information that I come across on the web that I would like to log for later use. I hope that these resources will be helpful and interesting for you as well. This is a companion blog to Coding Box .