Skip to content

Instantly share code, notes, and snippets.

View sharat's full-sized avatar

Sarath C sharat

View GitHub Profile
@sharat
sharat / SQLServerDataSources.cs
Created October 17, 2012 06:12
Function to check SQLServer Data Sources and version
private static void PrintSQLServerInfo()
{
SqlDataSourceEnumerator dataSourceEnumarator = SqlDataSourceEnumerator.Instance;
DataTable dataTable = dataSourceEnumarator.GetDataSources();
foreach (DataRow row in dataTable.Rows)
{
Console.WriteLine("----------------------------Sources----------------------------");
Console.WriteLine("Server Name:" + row["ServerName"]);
Console.WriteLine("Instance Name:" + row["InstanceName"]);
Console.WriteLine("Is Clustered:" + row["IsClustered"]);
@sharat
sharat / svnhelpers.sh
Created October 15, 2012 12:40
Useful SVN commands
## Get the modified file list
svn status | grep '^M '
@sharat
sharat / ListViewColumnHeaderSample.cs
Created October 12, 2012 12:44
Drawing CheckBox in the ListView Column Header
public partial class Form1 : Form
{
bool clicked = false;
CheckBoxState state;
public Form1()
{
InitializeComponent();
listView1.View = View.Details;
listView1.Columns.Add("Col1", 150);
listView1.Columns.Add("Col2", 150);
@sharat
sharat / gist:3239478
Created August 2, 2012 18:32
How to use Gist.io

Create a public gist on Github with one or more Markdown-syntax files. Note the gist ID number. It’s usually a longish number like 29388372. View your writing presented nicely at gist.io/gist-id-here

@sharat
sharat / LICENSE.txt
Created September 29, 2011 06:01 — forked from p01/LICENSE.txt
Sudoku Solver in 140bytes
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Mathieu 'p01' Henri <http://www.p01.org/releases/>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE