Public Gists by khigia

gist: 211479 C# dictionary lookup with d...
Gravatar
Thu Oct 15 19:11:08 -0700 2009
1
2
3
public static V GetValueOrDefault<K, V>(this Dictionary<K, V> dic, K key, V defaultVal)
{
    V ret;
gist: 211473 C# NumericUpDown MouseWheel...
Gravatar
Thu Oct 15 18:57:36 -0700 2009
1
2
3
class MyNumericUpDown : NumericUpDown
{
    protected override void OnMouseWheel (MouseEventArgs e)
gist: 101192 timeout on command run from...
Gravatar
Fri Apr 24 09:30:18 -0700 2009
1
2
3
#!/bin/bash
 
if [ "$#" -lt 2 ]
gist: 673 Ocaml ternary search tree type
Gravatar
Mon Jul 21 23:10:45 -0700 2008
1
2
3
type 'a tst_t =
  | E
  | N of 'a tst_t * 'a tst_t * 'a tst_t * char * 'a option