1
2
3
4
xml = REXML::Document.new(data)

artists = []
...

Ruby cleaner way to limit result...

by timmyvontrimble.myopenid.com, July 14, 2008 19:12, 9 refactorings, tagged with rails, xml, array, iteration, ruby

Wow! All of these refactori...

16462f49b44507dc6522eb9bea0fce51 Talk
1
2
3
4
class XML_QNC
 {
  private $reader   = "";
...

PHP XMLReader to Array Class

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

XMLReader is fast and uses ...

8bba46dba9043c254e6eef1aa664e6f0 Talk
1
2
3
<?php

...

PHP Moving my xml parsing into ...

by Jason, June 01, 2008 20:18, 3 refactorings, tagged with php, function, xml, parse

I have a list of pages, wit...

A4e2fea57f511d697f1de55198996f23 Talk
1
2
3
<!-- THE XML IM TRYING TO PARSE -->
...

Ruby Trying to parse XML and pas...

by Jason, May 30, 2008 20:09, 4 refactorings, tagged with ruby, rails, parse, xml, hpricot

I am completely new to ruby...

A4e2fea57f511d697f1de55198996f23 Talk
1
2
3
4
require 'net/http'
require 'rubygems'
require 'xmlsimple'
...

Ruby Parsing XML from a Web Service

by mwilliams, May 17, 2008 21:10, 3 refactorings, tagged with ruby, hash, xml, web, service

I'm working with a web serv...

4236ea6b84f4899b469e8edff4bf6d22 Talk
1
2
3
4
<?php

function fetch($url,$start,$end){
...

PHP Wikipedia API and text form...

by z3ro, January 09, 2008 18:37, No refactoring, tagged with wikipedia, api, wikimedia, php, xml, regex, parser, formatting, plain html, html, convert

I need to add Wikipedia's i...

E90ba01aea329491b312280d1eea606b Talk
1
curl http://www.cnn.com | perl -ne 'm/>([^<].*?[^>])<\// && print$1."\n"'

Perl Perl one-liner to extract x...

by griflet, November 13, 2007 17:19, 3 refactorings, tagged with perl, oneliner, one-liner, xml, tags, html, xhtml

Hello,
I'm a web-scrapping...

Aae34a7973a8d98e53764a1c89090c55 Talk
1
2
3
4
require 'rubygems'
require 'uri'
require 'net/http'
...

Ruby Technorati Ping

by Brianthecoder, November 04, 2007 08:47, 2 refactorings, tagged with xml, technorati

This code is made to be in ...

3f91cf60c92b20940674ebdeb46f6582 Talk
1
2
3
  Private Function GetPreviousMonthsXml(ByVal months As Integer, ByVal startDate As Date, ByVal xDoc As XmlDocument, ByVal path As String, ByVal nodeName As String) As XmlDocument
...

VB.NET Load XmlNodeList into an Xm...

by travis, October 01, 2007 08:16, No refactoring, tagged with xml, node, xmldocument, vb, .net, nodelist, asp.net

Basically I'm just try to l...

918aabb05e77cfa8e40d2a76a5168326 Talk