Public Gists by atifaziz

Gravatar
Sun Oct 18 14:08:41 -0700 2009
1
2
3
// http://twitter.com/raboof/statuses/4974353119
 
static partial class TryParse
Gravatar
Tue Oct 06 14:45:56 -0700 2009
1
2
3
<errorFilter>
  <test>
    <!-- http://groups.google.com/group/elmah/t/cbe82cee76cc6321 -->
gist: 148371 http://groups.google.com/gr...
Gravatar
Thu Jul 16 04:30:59 -0700 2009
1
2
3
using System;
using System.Collections.Specialized;
using System.Xml;
gist: 132122 Expando stuff
Gravatar
Thu Jun 18 11:56:28 -0700 2009
1
2
3
using System;
using System.Collections.Generic;
using System.Linq;
Gravatar
Thu Apr 30 07:20:44 -0700 2009
1
2
3
// turns a sequence of key to many values into a new sequence
// where each value of a key from the first sequence becomes
// the a key in the second sequence and where its only value
Gravatar
Mon Apr 27 11:27:40 -0700 2009
1
2
3
using System.Collections.Generic;
 
public class TransformedResult
Gravatar
Mon Apr 27 03:12:50 -0700 2009
1
2
3
// Compile using:
// csc /target:winexe /noconfig /define:DEBUG FinalizerDemo.cs /r:System.dll /r:System.Windows.Forms.dll
 
gist: 96298 Demonstrates using Connecti...
Gravatar
Thu Apr 16 00:43:25 -0700 2009
1
2
3
import clr, sys
clr.AddReference('System.Design')
from System.Web.UI.Design import ConnectionStringEditor
gist: 88180 Script to display flags of ...
Gravatar
Tue Mar 31 06:14:42 -0700 2009
1
2
3
# Prints flags of GDI+ image decoders
import clr
clr.AddReference('System.Drawing')
gist: 74301 Removes all .svn folders
Gravatar
Thu Mar 05 03:12:42 -0800 2009
1
2
3
REM DESVN
REM
REM Removes all .svn folders under the current directory
gist: 70369 http://groups.google.com/gr...
Gravatar
Wed Feb 25 11:46:56 -0800 2009
1
2
3
// Demo for:
// http://groups.google.com/group/jayrock/t/878df871a14df35b
 
gist: 67375 http://groups.google.com/gr...
Gravatar
Fri Feb 20 00:26:25 -0800 2009
1
2
3
using System;
using System.IO;
using System.Xml;
gist: 67169 LINQ query to generate tabl...
Gravatar
Thu Feb 19 14:44:29 -0800 2009
1
2
3
(
    from member
    in XDocument.Load(@"C:\MoreLINQ\MoreLinq\bin\Debug\MoreLinq.xml")
gist: 62193 IronPython script to update...
Gravatar
Wed Feb 11 11:36:01 -0800 2009
1
2
3
# Tweet - Status update tool for twitter.com
# Copyright (c) 2009 Atif Aziz. All rights reserved.
#
Gravatar
Tue Feb 03 08:49:00 -0800 2009
1
2
3
using System;
using System.Collections;
using System.Diagnostics;
gist: 57409 JsonML with Jayrock
Gravatar
Tue Feb 03 00:21:51 -0800 2009
1
2
3
using System;
using System.IO;
using System.Xml;
gist: 50169 Mono 2.0 to 2.2 LINQ diff
Gravatar
Wed Jan 21 12:28:39 -0800 2009
1
2
3
--- mono-2.0\mcs\class\System.Core\System.Linq\ChangeLog 2008-10-02 00:02:58.000000000 +0200
+++ mono-2.2\mcs\class\System.Core\System.Linq\ChangeLog 2008-11-11 06:01:12.000000000 +0100
@@ -2,11 +2,30 @@
gist: 49984 KeyedCollection implementin...
Gravatar
Wed Jan 21 06:23:37 -0800 2009
1
2
3
#region Imports
 
using System;
gist: 49432 JavaScript map, reduce, gro...
Gravatar
Tue Jan 20 03:05:28 -0800 2009
1
2
3
Object.properties = function(obj, includeFunctions)
{
    var props = [];
gist: 47888 Updated HenriFormatter from...
Gravatar
Fri Jan 16 02:02:28 -0800 2009
1
2
3
// http://haacked.com/archive/2009/01/14/named-formats-redux.aspx#70485
 
using System;