Skip to content

Instantly share code, notes, and snippets.

<iq from="firehoser.superfeedr.com" type="result" id="items1" >
<pubsub xmlns="http://jabber.org/protocol/pubsub">
<status xmlns="http://superfeedr.com/xmpp-pubsub-ext">
<http code="200" >77199B in 4.096159s, 10/10 new entries</http>
<next_fetch>2010-11-03T21:15:21+01:00</next_fetch>
<period>43200</period>
<last_fetch>2010-11-03T09:15:20+01:00</last_fetch>
<last_parse>2010-11-03T09:15:21+01:00</last_parse>
<last_maintenance_at>2010-11-03T10:21:55+01:00</last_maintenance_at>
</status>
GET /rss/recent/san-jose HTTP/1.1
Connection: close
User-Agent: Superfeedr: Superparser bot/1.1 http://superfeedr.com - Please read this http://blog.superfeedr.com/publishers.html or get in touch if we're polling too hard
X-Superfeedr-Polling: maintenance
Host: www.examiner.com
HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Fri, 29 Oct 2010 21:57:31 GMT
Content-Type: application/rss+xml; charset=utf-8
@superfeedr
superfeedr / gist:654431
Created October 29, 2010 21:19
parser-version.xml
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.examiner.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Examiner San Jose Edition Articles</title>
<link>http://www.examiner.com/rss/san-jose</link>
<description>Latest News and Articles from Examiner.com</description>
<language>en</language>
<item>
<title>De Anza College women&#039;s soccer team defeats Cabrillo College 2-0</title>
<link>http://www.examiner.com/sports-photography-in-san-jose/de-anza-college-women-s-soccer-team-defeats-cabrillo-college-2-0</link>
@superfeedr
superfeedr / gist:654426
Created October 29, 2010 21:17
actual-content-chrome.xml
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.examiner.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Examiner San Jose Edition Articles</title>
<link>http://www.examiner.com/rss/san-jose</link>
<description>Latest News and Articles from Examiner.com</description>
<language>en</language>
<image> <url>http://www.examiner.com/sites/all/themes/base/images/logo.gif</url>
<title>examiner.com</title>
<link>http://www.examiner.com</link>
@superfeedr
superfeedr / gist:650918
Created October 28, 2010 08:35
examiner
19824B in 0.18498s, 0/12 new entries -> http://www.examiner.com/rss/recent/sherman
22371B in 0.193883s, 0/20 new entries -> http://www.examiner.com/rss/recent/watertown
24351B in 0.195955s, 0/20 new entries -> http://www.examiner.com/rss/recent/eureka
24758B in 0.181831s, 0/20 new entries -> http://www.examiner.com/rss/recent/davenport
24994B in 0.189847s, 0/20 new entries -> http://www.examiner.com/rss/recent/glendale-ca
26092B in 0.189233s, 0/20 new entries -> http://www.examiner.com/rss/recent/wausau
26171B in 0.19084s, 0/20 new entries -> http://www.examiner.com/rss/recent/monroe
26300B in 0.180871s, 0/20 new entries -> http://www.examiner.com/rss/recent/jacksonville
26432B in 0.203128s, 0/20 new entries -> http://www.examiner.com/rss/recent/ann-arbor
26597B in 0.192785s, 0/20 new entries -> http://www.examiner.com/rss/recent/bend
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US">
<id>host:superfeedr.com</id>
<title>Feed for superfeedr.com</title>
<link rel="alternate" href="http://www.blamestella.com/host/superfeedr.com/report" type="text/html"/>
<!-- PubSubHubbub Discovery -->
<link rel="self" href="http://www.blamestella.com/host/superfeedr.com/report.atom" type="application/atom+xml"/>
<link rel="hub" href="http://stella.superfeedr.com/" />
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
superparsr21 # cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU L5520 @ 2.27GHz
stepping : 5
cpu MHz : 2266.746
# strace -c -ttTp 11077
Process 11077 attached - interrupt to quit
^CProcess 11077 detached
% time seconds usecs/call calls errors syscall
------ ----------- ----------- --------- --------- ----------------
98.22 3.198378 21181 151 clone
0.97 0.031679 3 11450 epoll_wait
0.22 0.007067 30 239 wait4
0.13 0.004371 0 8897 writev
0.10 0.003387 0 17540 6361 read
# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
# Uncomment this and configure after the system has booted for the first time
auto eth0
iface eth0 inet static
var pub = __dirname + '/public';
var express = require('express'),
io = require('socket.io');
//----------------------------------------------
// HTTP server
var http = express.createServer(
express.staticProvider(pub)
);