stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


Gold Parser .NET







Gold Parser .NET

Gold Parser .NET 01/03/2004 05:46 PM

GoldDot b2




This is a GrokNews Entry: (what is grok?)





Similar Items

Gold Parser .NET

Grok Headline matches for Gold Parser .NET

C++ Gold Parser Engine


C++ Gold Parser Engine 11/11/2003 06:54 PM
Version 1.0.4 released

Java Parser/Parser Generator 3.01


Java Parser/Parser Generator 3.01 04/22/2004 02:21 AM
A Java-based parser and parser generator package/utility.

MP3-M3U-Parser-2.0


MP3-M3U-Parser-2.0 07/23/2004 06:06 PM

CQL-Parser-0.8


CQL-Parser-0.8 04/07/2005 12:31 PM

CQL-Parser-0.2


CQL-Parser-0.2 09/15/2004 12:14 AM

XML-RSS-Parser-2.15


XML-RSS-Parser-2.15 05/03/2004 05:26 AM

D Parser 1.7


D Parser 1.7 11/04/2003 05:20 AM
A scannerless GLR parser.

XML-RSS-Parser-1.02


XML-RSS-Parser-1.02 01/03/2004 07:27 PM

D Parser 1.10


D Parser 1.10 06/10/2004 02:54 PM
A scannerless GLR parser.

MP3-M3U-Parser-2.01


MP3-M3U-Parser-2.01 07/26/2004 05:47 PM

MP3-M3U-Parser-2.1


MP3-M3U-Parser-2.1 09/14/2004 06:39 PM

SML-Parser-0.11


SML-Parser-0.11 05/28/2004 11:14 AM

D Parser 1.12


D Parser 1.12 09/03/2004 06:23 PM
A scannerless GLR parser.

D Parser 1.8


D Parser 1.8 01/03/2004 03:19 PM
A scannerless GLR parser.

Best RSS Parser Yet


Best RSS Parser Yet 01/06/2003 12:21 AM
The newest version of my RSS Parser is now available for download. I am really happy about this release. It fixed a lot of things previous versions were lacking. It now has clean error handling, optional caching, and more efficient code. Also, the function can now be called as many times as necessary on the same page. Previously, the function would break when called more than once on the same page. You can download this new version here. I will update my RSS Parser article tomorrow to reflect this update. As usual, please e-mail me any questions, comments, or suggestions you may have.

XML-RSS-Parser-1


XML-RSS-Parser-1 12/30/2003 11:19 PM

XML-RSS-Parser-1.01


XML-RSS-Parser-1.01 01/02/2004 04:43 AM

Tree-Parser-0.04


Tree-Parser-0.04 05/17/2004 06:04 PM

Log Parser Tool 2.2


Log Parser Tool 2.2 04/26/2004 09:02 AM
"We I would like to take a moment to inform you of a "Tools and Documentation" series, exclusively available to Microsoft TechNet subscribers. Starting with the April 2004 edition of your TechNet CD subscription, we're providing the first set of this series: The Log Parser Tool - Version 2.2. Included with this beta version of the Log Parser tool is a white paper describing the new features and functionalities, as well as a brief technical case study of its usage by the Microsoft.com Operations team. We ask that you use the tool and provide feedback so that additional improvements can be made, if any. Just think, you and other TechNet subscribers are the first ones to use this version of the tool! No release date has been identified for everyone else to consume the tool. The latest released version of the Log Parser is version 2.1 (available on the Microsoft Download Center). "

Nmap-Parser-0.77


Nmap-Parser-0.77 05/19/2004 11:55 PM

Tree-Parser-0.01


Tree-Parser-0.01 05/04/2004 04:43 PM

iCal-Parser-1.10


iCal-Parser-1.10 03/29/2005 05:28 PM

Tree-Parser-0.02


Tree-Parser-0.02 05/05/2004 05:05 PM

Parser benchmarks


Parser benchmarks 05/14/2004 03:25 PM

And finally I end this marathon blogging session with another one of our PeepAgg team members - Chris Schmidt.

Chris did the FOAF module for LiveJournal and is now working on getting PeepAgg into Drupal.

:-)

Here's his post....

ApacheBe nch testing of XML Parsing. So, I've been working on a project called PeopleAggregator, and we've been talking about integrating with a lot of different platforms, among them Drupal. (For the record, this is completely unrelated to the MT stuff that went on today. I may write on that later, but really, everyone else has said what I would in a million different ways.) Anyway, we were talking about RAP and how it's too bulky and slow to work for what we need.

So, we got a guy on the team - Joel De Gan, who's working on the PeoplesDNS project for us, and he offered to write us a parser. This is going to be a replacement for RAP, for those of us who can't deal with the slowness of RAP.

Now, I don't know much about RAP. And I don't know much about PHP, or parsing XML, or really anything - I pick up the bits I need to know as I go along. So I'm just kind of standing on the sidelines, but today, I got a demo of what Joel's parser can do.

LiveJournal FOAF files are typically big. Mine is no exception - over 100 friends, random contact data, etc. All in all, a 40KB document about me. I want to parse this data. So I attempt to using both RAP and Joel's parser.

To alleviate network traffic conditions, I copy the file I want locally. To simulate the action of opening a file and reading it, I did keep it on the webserver, so I will admit there may be some kind of bias in that, but I used the exact same method to open the file in both cases (fopen) so I don't think that's an issue that would cause any major difference. I also disabled all printed output.

Anyway, I used this file to check the parsers. Using ab (apache benchmarking utility - fetches a page a bunch of times and tells you how long it took). Using a 50 request check, I got averages on the two parsing utilities:

Joel De Gan's XML parser, parses data into a multileveled array as displayed at http://crschmidt.net/parse/ parse.php (source available):

Requests per second: 11.25 [#/sec] (mean)
Time per request: 88.92 [ms] (mean)
Time per request: 88.92 [ms] (mean, across all concurrent requests)

(Full Stats)

RAP, parses into RDF models. (source, + RAP. The parser isn't actually here):

Requests per second: 1.35 [#/sec] (mean)
Time per request: 739.82 [ms] (mean)
Time per request: 739.82 [ms] (mean, across all concurrent requests)

(Full Stats)

So, we've got a parser that to a guy like me seems simpler to use (advanced data structures are part of the limited experience I did get from LiveJournal), is lightweight (one file, as opposed to 256 in RAP), and faster by an order of magnitude.

That, to me, sounds like a winner. Props to Joel for his great work. His next step is to implement OWL capabilities into RDF parsing, and that's going to kick even more ass. As Eric said at one point about this: "Be still my beating heart." By crschmidt@livejournal.com. [Christopher Schmidt]


Tree-Parser-0.03


Tree-Parser-0.03 05/06/2004 05:47 AM

Nmap-Parser-XML-0.75


Nmap-Parser-XML-0.75 02/16/2004 06:41 PM

Nmap-Parser-0.76


Nmap-Parser-0.76 02/15/2004 11:45 PM

ipod rss parser


ipod rss parser 01/07/2004 06:55 PM
I'm even more excited about the thought I had earlier. After downloading the zip file I loaded Christopher Lydon's interviews into my ipod. Bing. This is powerful stuff, now the dots need to be connected. I'm looking for an application (or glue for several existing apps) that will parse an rss feed for enclosures and load them into a new playlist on my [docked] ipod. Update: Shrook can export rss feeds to my ipod. No support for enclosures..yet.

HTML Parser for PHP 4


HTML Parser for PHP 4 01/11/2004 11:20 AM
HTML Parser for PHP-4 v1.1 Released

Shell-Parser-0.03


Shell-Parser-0.03 04/03/2005 10:45 AM

RTF-Parser-1.08_3


RTF-Parser-1.08_3 01/22/2004 10:18 AM

RTF-Parser-1.08_5


RTF-Parser-1.08_5 01/24/2004 10:36 PM

RTF-Parser-1.08_4


RTF-Parser-1.08_4 01/24/2004 10:36 PM

Nmap-Parser-0.75


Nmap-Parser-0.75 02/12/2004 06:07 PM

Profium RDF Parser 2.0


Profium RDF Parser 2.0 02/14/2004 03:53 AM
A parser and serializer for RDF/XML documents.

Matra - an XML DTD Parser


Matra - an XML DTD Parser 02/14/2004 10:50 AM
Matra XML DTD Parser Utility Version 0.8b (beta) released

Parsifal XML Parser 0.7.4


Parsifal XML Parser 0.7.4 02/15/2004 10:41 AM
A minimal non-validating XML parser.

Tree-Parser-0.05


Tree-Parser-0.05 05/18/2004 10:16 AM

Tree-Parser-0.06


Tree-Parser-0.06 05/18/2004 11:55 PM

Grok Description matches for Gold Parser .NET
GrokA matches for Gold Parser .NET

Gold Parser .NET

The following phrases have been identified by the grok system as matching this entry:

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Automagic
No-Fly-Zone
Enforcement

THG Debuts
Networking Guide

Today is a very good
day

Lieberman Referer
Spam

Elementary, my dear
Euclid

Broog reviews the
easily-crushed
cultural offerings
of Earth Cinema

Bomb Kills Two U.S
Soldiers in Iraq

Brockovich Firm
Again Sues Beverly
Hills

Utah Bill Would Ban
Firing Squads

Guerrilla Attacks
Kill Three U.S.
Soldiers in Iraq

Man Suspected in
Bank Robberies
Arrested

Google-fame Rajeev
Motwani on talent
hunt in India

MC to computerise
birth, death
registration

States Outlaw
Digital Taping in
Cinemas

Vivisimo Helps
Narrow Internet
Searches

RSS Bandwidth and
Gzip compression

That's how it is
SKForum 1.1
Buffalo Linux
1.1.0rc3

ski 6.2
Big Brother Lite 1.0
ViewKlass 0.7.0
Evolution 1.5.1 (GTK
2)

UML2PHP5 0.5
Traditional ex/vi
1/3/04

JEDI VCL for Delphi
deadlock the
artillery combat
game

Explore Mars with
Maestro

MacRumors WAP and
Mobile Editions

Police-Seized Loot
Is Online, and Yes,
It's a Steal

acronym vs. abbr
Note to self: Do not
build summer home in
Iran.

Tonight: Robots on
Mars, hunting for
life on Mars?

Geek history:
world's first pocket
calculator

Art: Kozyndan
Serial Mail 2.5
Dell offers free
credit on products
purchased in January

D Parser 1.8
Access Point
Utilities for Unix
1.4pre2
(Development)

mp3cleanup 0.7
Kazehakase 0.1.1
JMP3Renamer
fun fun fun in the
fluffy chair

The coming year
gnubeep 0.5
FootTrack 1.5
Released

GPGrelay
ClassicLadder
Digital Video
Recorder

Principia
Cybernetica Web

what is grok?