1 2 3 4
require 'net/http' require 'rexml/document' require 'download.rb' ...
Ruby help with processing nzb/xm...
by bain19.myopenid.com,
January 09, 2010 23:51,
4 refactorings, tagged with nzb, usenet, download, parse, slow, ruby, xml
I was bored during ruby cla...
1 2 3 4
#!/usr/bin/env ruby -w require 'rexml/document' ...
Ruby Let me merge my Tomboy notes!
Learning Ruby, and learning...
1 2 3 4
private void schematronTransformation() throws TransformerException { TransformerFactory tf = TransformerFactory.newInstance(); ...
Java Multiple XSLT for Schematro...
by DaJunkie,
October 09, 2009 10:39,
1 refactoring, tagged with schematron, xslt, transform, pipe, jaxp, dom, sax, java, xml, validate
I want to validate some XML...
1 2 3 4
public static class ObjectToXmlConverter { #region Class Methods ...
C# XML Object Serializer to XS...
by dotnetchris,
September 25, 2009 19:20,
2 refactorings, tagged with C#, xml, serialization, xslt, transform
I'm using XSLT for document...
1 2 3 4
require 'hpricot' class Parser ...
Ruby Create a Hash from XML usin...
With ruby you could use REX...
1 2 3 4
URL url = new URL("https://dev.psigate.com:7989/Messenger/XMLMessenger"); HttpURLConnection connection = (HttpURLConnection)url.openConnection(); connection.setDoInput(true); ...
Java PSiGate
This seems particularly egr...
1 2 3 4
public class XmlStringSerializer { static Dictionary<string, Type> types = new Dictionary<string, Type>(); ...
C# Polymorphic XML serializer
The default XML serializer ...
1 2 3 4
get '/:id' do @vent = Vent.get(params[:id]) erb :show ...
Ruby Trying to condence 2 method...
by Jason Calleiro,
December 10, 2008 21:53,
7 refactorings, tagged with ruby, sinatra, rails, rest, xml
Currently using sinatra fra...
1 2 3 4
for directory in @directories xml.item do xml.title "#{directory.name} (PR #{directory.pagerank})" ...
Ruby xml rss feed
by chovy.myopenid.com,
November 05, 2008 07:13,
2 refactorings, tagged with Ruby on Rails, proc, xml, ruby
Looking for a better way to...
1 2 3 4
require 'rubygems' require 'activesupport' require 'hpricot' ...
Ruby Simplest way to find the na...
Is there a simpler way of g...
1 2 3 4
#!/usr/bin/python # -*- coding: utf-8 -*- ...
Python Parse XML from Yahoo weathe...
Is there a more efficient w...
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...
1 2 3 4
class XML_QNC
{
private $reader = "";
...
PHP XMLReader to Array Class
XMLReader is fast and uses ...
1 2 3
<!-- THE XML IM TRYING TO PARSE --> ...
Ruby Trying to parse XML and pas...
I am completely new to ruby...
1 2 3 4
require 'net/http' require 'rubygems' require 'xmlsimple' ...
Ruby Parsing XML from a Web Service
I'm working with a web serv...
1 2 3 4
<?php function fetch($url,$start,$end){ ...
PHP Wikipedia API and text form...
by z3ro,
January 09, 2008 18:37,
1 refactoring, tagged with wikipedia, api, wikimedia, php, xml, regex, parser, formatting, plain html, html, convert
I need to add Wikipedia's i...
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,
4 refactorings, tagged with perl, oneliner, one-liner, xml, tags, html, xhtml
Hello,
I'm a web-scrapping...
1 2 3 4
require 'rubygems' require 'uri' require 'net/http' ...
Ruby Technorati Ping
This code is made to be in ...
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...
It's a simple command-line ...