Programming & Development
-
SVN Revision and Source Control
What is revision control, a.k.a source control? At it’s core, what this term really means is a way for you to track changes that you may make over time to a particular file. Each time you change the file and… Continue reading
-
HTTP Post in C# .Net
Why re-invent the wheel? 😉 See below for a few quick examples from the minds over at csharp-online and codeproject. Note: Any snippets may have been condensed from their original sources for brevity. See references for original articles. All examples… Continue reading
-
IIS 7 Remote Administration Manager
At the time of writing this article, in the latest version of Windows (Vista,7 and Server 2008), IIS management has changed quite a bit. IIS7 features some very cool remote management capabilities. In an environment where developers may need access… Continue reading
-
Convert SQL to Linq
Was looking to convert a complex SQL query and short on time, so came across this nifty little tool to automate the conversion! It even outputs and autobuilds necessary classes! At the time of this article supports all versions of… Continue reading
-
Strong Password Generator
Pretty good little web based site to generate strong passwords on the fly. Once I have some time to whip up a little tool to do the same I’ll be sure to post code here. (Requires javascript:) StrongPasswordGenerator References StrongPasswordGenerator,… Continue reading
-
String Formatting
Snippets below have been condensed from their original sources for brevity. See references for original articles. All examples are in C# .Net. My own little function: Format With extension method by James Newton-King: References James Newton-King, “FormatWith”,http://james.newtonking.com/archive/2008/03/27/formatwith-string-format-extension-method.aspx Continue reading
-
Winforms Databinding
Snippets below have been condensed from their original sources for brevity. See references for original articles. Dataset usage: Binding DataGridView: References: MSDN, “DataSet Class”, http://msdn.microsoft.com/en-us/library/system.data.dataset.aspx MSDN, “How to: Bind Data to the Windows Forms DataGridView Control”, http://msdn.microsoft.com/en-us/library/fbk67b6z.aspx Continue reading
-
MSSQL Quick Reference
Snippets below have been condensed from their original sources for brevity. See references for original articles. Great reference on joins: http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins Show all tables in specific database: (MSSQL equivalent of MySql “show tables”) Insert into: Insert if not exists: Trigger… Continue reading
-
Browser Safe Fonts
See below for a table of “browser safe fonts” which work well and have been tested with most browsers. This table is courtesy of Ampsoft. Windows fonts / Mac fonts / Font family Normal style Bold style Arial, Arial, Helvetica,… Continue reading
-
OAuth Specs and Protocol
The OAuth protocol defines a common data structure for communicating between websites. This relatively new format is increasing in popularity and used in many different sites including Facebook and Google. Microsoft has even added support for it in its latest… Continue reading