1
2
3
using System.Collections.Generic;
using System.IO;
...

C# Gedcom Reader

by crash893.myopenid.com, May 14, 2009 19:42, 2 refactorings, tagged with gedcom, reader, C#, class

Created this reader class f...

Avatar Talk
1
2
3
4
class Item
  def raw_tag_list; "one, two, three, four, five"; end
  def public_tags; [<#Tag name=two>, <#Tag name=five>, <#Tag name=one>, <#Tag name=four>, <#Tag name=three>]; end
...

Ruby Tag ordering code

by k776, March 30, 2009 22:48, 12 refactorings, tagged with speed, ruby, class, arrays

Is there a faster way to do...

74198b06bc9e68739debfe6c23e070d3 Talk
1
2
3
4
x = 'My String'

x.kind_of? String # => true
...

Ruby x.kind_of? MyClass or x.cla...

by phylae.myopenid.com, September 10, 2008 03:58, 5 refactorings, tagged with class, kind_of?

It seems like these two are...

20bdcaa65891ace11f18e393c6e1f729 Talk
1
2
3
4
<?php

class RequestFile
...

PHP Universal File Download Class

by Chris Dean, August 16, 2008 11:21, 4 refactorings, tagged with php, 5, universal, file, download, class

After finding different hos...

151e36cc7f789a4790c8ca437e3a1f60 Talk
1
2
3
4
<?php

class DB {
...

PHP PHP5 Database Clas

by Ishkur, July 21, 2008 16:33, 3 refactorings, tagged with php5, database, class

For the most part, this cla...

6dc0e9a07bcff97ac9b111f36e12f1f6 Talk
1
2
3
4
class XML_QNC
 {
  private $reader   = "";
...

PHP XMLReader to Array Class

by ellisgl.myopenid.com, June 12, 2008 22:28, 6 refactorings, tagged with php, xml, class

XMLReader is fast and uses ...

8bba46dba9043c254e6eef1aa664e6f0 Talk
1
2
3
4
  static public function invoke($hook) {
    $packages = array();
    $results = array();  
...

PHP Dynamically invoking static...

by Tj Holowaychuk, June 09, 2008 20:52, 1 refactoring, tagged with static, class, eval

Hey guys, I should have rea...

F1e3ab214a976a39cfd713bc93deb10f Talk
1
2
3
4
class String 
  def postal?  
    self.match(/[a-zA-Z]{1}\d{1}[a-zA-Z]{1}([\x20-])*\d{1}[a-zA-Z]{1}\d{1}/) ? true : false
...

Ruby Is This String Postal?

by Gary Haran, October 30, 2007 15:29, 6 refactorings, tagged with string, class, postal

We've had the debate over w...

403e57e2be130d2218f992b86dfa8260 Talk