torsten's .NET blog In the end, everything is a gag [Ch. Chaplin]
# Tuesday, May 13, 2003
And the story goes on
As I have written below, the story goes on...
Technorati tags:  | 
Tuesday, May 13, 2003 7:16:07 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
again and again
It should be business as usual that aggregators support date/time informations on RSS feed items. But on RSS 0.91 it is completely missed, newer versions (should) have at least the pubDate element. Some also support the dublin core element date formatted as xsd:dateTime. Some use the US-centric (day-of-week, DD month-name CCYY hh:mm:ss zone, aka RFC822 or RFC2822) other the ISO format (CCYY-MM-DDThh:mm:ssTZD). As the whole format is XML one may expect to get dates in the XMLSchema format (ISO). Who knows? We are on the WWW, why not use the HTTP date (day-of-week, DD month-name CCYY hh:mm:ss GMT) defined in RFC2616 as a RFC1123-date? Or some of the specific database datetime formats?
Enough confusing...
So I am lucky with Don's RSS 2.0 Profile in general, but not in the special case of date format: why the date SHOULD use TZ of post, MAY use GMT and not HAVE to use TZ of post? The other side of the medal: how we get the date(s) into a native .NET DateTime format? Simply use DateTime.Parse(). Well, works 75 percent. No RFC2822 support. Use XmlConvert.ToDateTime() for the ISO dates, nice again 20 percent. May be there is somewhere a (internal) function to parse HTTP dates. OK, lets start implementing the missing 5 percent. Write a class RFC822DateTime: DateTime { ... Ups! It's a structure, no inheritance, sorry. How about to extend it?
Reading over the docs about IFormatProvider (more related to convert a DateTime to a string), DateTimeFormatInfo, Calendars, CultureInfo, etc.: my head explodes! OK, try the other way and check whether it is at all possible: no RFC(2)822 support. Now it was time to write the x'th date time parser. Deterred from the quantity of code found here, thus I decided to transfer the main load of datetime parse to the RegEx class. The Ruby class Time used as a blueprint now it works well.
BTW: feel free to download/test the official RSS Bandit 1.1 Beta 5.
Technorati tags:  | 
Tuesday, May 13, 2003 7:03:35 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Saturday, May 10, 2003
Blog early, blog often
I think if Luke would read my entry made on March 23, 2003 he would't write stolen. Dare Obasanjo impl. the backend support on RssComponents, my part was the GUI. As I can remember SharpReader comes out first April 6, 2003. If Luke did read my entry, I could ask him the same question. As a old newsgroup reader I would say this "threaded view feature" is a natural requirement to visualize the blog's interconnections. As it is common to answer/reply another blog's entry on the own blog (as I do here), a normal aggregator cannot provide the interconnection feeling. However, as long as 25hoursaday.com is down, you may get a screenshot here.
Technorati tags:  |  | 
Saturday, May 10, 2003 9:28:02 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Friday, May 09, 2003
blogging universe
Would be nice BlogWorks will be aware of spam on comments. Sam Ruby points to an interesting paper (and project) about semantic blogging: blogtalk.pdf Will Feedster be rolled over by commercial competition?
Technorati tags:  | 
Friday, May 09, 2003 2:45:22 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [2]  | 
# Wednesday, May 07, 2003
Teaser
You will find a teaser on RSS Bandit 1.1 (Dare Obasanjo). If it goes final, I will post some thoughts on the current GUI implementation.
Technorati tags:
Wednesday, May 07, 2003 10:58:10 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Tuesday, May 06, 2003
Do you speak "deutschisch"?
Rarely so laughed: found on Carnage4Life this Matrix Reloaded Review (taken from here). Meant not the post, but the translation provided by Altavista Babel Fish. Here is the original:
"This movie is a pillowcase with soda cans inside that beats the living mule-fuck out of you but you're all like, 'Bring it on honky tonk' because the beating feels like summer and Halloween and Cheetos at the same time. This movie is Mad Max's shotgun-gun from ROAD WARRIOR, only it shoots ass-kicking only at jocks. This movie is tits!"
and here is the funny german translation:
"Dieser Film ist ein Kissenbezug mit Sodadosen Innere, das das lebende Maultier-bumsen aus Ihnen heraus schlägt, aber alle Sie wie sind, ' holen Sie es auf honky tonk ', weil das Schlagen wie Sommer und Halloween und Cheetos gleichzeitig glaubt. Dieser Film ist Schrotflinte-Gewehr wütenden Maximums VOM STRASSE WARRIOR, nur er das Esel-Treten nur auf jocks schießt. Dieser Film ist Tits!"
Technorati tags:  | 
Tuesday, May 06, 2003 9:53:15 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Wednesday, April 30, 2003
Opening files into a running instance of VS.NET
From Don Box's Spoutlet: tweak VS.NET shell integration. BTW: such magic should be found within the documentation. So it just provide another story for books named "The 1001 secrets of VS.NET".
Technorati tags:
Wednesday, April 30, 2003 11:13:35 AM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Tuesday, April 29, 2003
Rumors: last Beta of RSS Bandit
Dare Obasanjo seems to be very busy, so I have decided to provide (may be last beta) bits of RSS Bandit 1.1 Beta 4. As usual: the old links are still valid but contain beta 4 bits. There are only few bug fixes and better support for own extended stylesheet authoring (aka RSS Item formatting). Have a look to the templates readme file. The RC will then contain support for AutoUpdate and be available as soon Dare Obasanjo has finished testing the bits with the GotDotNet team (thanks folks!) providing the backend service.
Technorati tags:
Tuesday, April 29, 2003 6:32:48 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [20]  | 
Newspaper GUI
Don Park ideas about a newspaper GUI found here and here are point two on my TODO list for RSS Bandit. I would be pleased to be allowed to welcome Don as a member of the team! It seems he has already done the first steps implementing it.
Technorati tags:  | 
Tuesday, April 29, 2003 11:48:06 AM (W. Europe Standard Time, UTC+01:00)    #  Comments [3]  | 
Opinionated linking

coral aka Crystal Flame writes about opinionated linking. That sounds very interesting and perhaps get supported by feedster.
But how about a special opinion namespace on xhtml:

<a xmlns:my="http://semantic.web/link/opinions" class="positive" my:opinion="positive">positive link target</a>

...and the spider/aggregators life will be much easier.

Technorati tags:  |  | 
Tuesday, April 29, 2003 11:38:13 AM (W. Europe Standard Time, UTC+01:00)    #  Comments [3]  | 
# Saturday, April 26, 2003
It's a hack?
Everything familar with MSXML3 and transformations know about a "feature" of the : it cannot output something without escaping. And the story goes on for .NET. If you have to produce html with xml transform you have a big problem: you get a correcly url formatted link within the xml source that you have to write to an <A>element as the href attribute. How about "&" signs in the url? They are escaped with "&" which result in wrong formatted url's. The normal way you can use to write element content to html output without escaping:

<xsl:value-of select="urlElement" disable-output-escaping="yes"></xsl:value-of>

Now the non-working version to write a valid <A> element:

<A><xsl:attribute name="href"><xsl:value-of select="urlElement" disable-output-escaping="yes"/></xsl:attribute>Link</A>

And here is the code to work around (name it a hack):

<xsl:text disable-output-escaping="yes">&lt;a href='</xsl:text><xsl:value-of disable-output-escaping='yes' select=url'/><xsl:text>'></xsl:text>Link Text<xsl:text disable-output-escaping='yes'>&lt;/a></xsl:text>

Technorati tags:  | 
Saturday, April 26, 2003 10:34:14 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
GetLastError and managed code
Adam Nathan clarifies the interop related GetLastError handling within managed code. It should be a part of my .NET documentation.
Technorati tags:
Saturday, April 26, 2003 7:57:57 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Friday, April 25, 2003
where on earth
Sean McGrath:
This is so cool. Sit back and watch the world blog its way around the clock. Now you know you simply must get those geotags and that RSS autodiscovery machinery into your blog.
Adopted now.
Sam Gentile:
Rico is one of the smartest guys on the CLR team and he is super, super passionate about performance.  He is looking at everyway possible to make managed code run faster...   He just posted a great whitepaper on how the GC works and how to get the best perf possible out of your managed code... worth a read!
Where is the blog of this smart guy named Rico?
Sellsbrothers:
NAnt 0.8.2 was recently released. Note that this release has support for both the Microsoft.NET framework v1.1 and Mono.

Now it's time to dive in and setup our company build server. The NAnt user mailing list I'm subscribed to serves around ten mails a day, so all probems should be known by the dev team and probably fixed ;-) RSS on each sourceforge project rocks!

Adrian: had a problem to post this with w.bloggar 3.1: got error 1072896760 - "error parsing the xml passed to the server: rpcserver(1)". Don't know if it is related to Blogworks XML or the new w.bloggar release installed today.

Technorati tags:  |  | 
Friday, April 25, 2003 7:58:36 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [1]  | 
# Thursday, April 24, 2003
Arny will be back in 2003
Have a look to [Terminator 3] QT trailer, nice, pure action. Found at slashdot.
Technorati tags:
Thursday, April 24, 2003 2:40:20 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
# Monday, April 21, 2003
Did you know Microsoft?
Which is the question, you would answer. But I do not mean: who produces Windows, but which humans puts behind. Who is interested in should read here.
Technorati tags:  | 
Monday, April 21, 2003 12:58:00 PM (W. Europe Standard Time, UTC+01:00)    #  Comments [0]  | 
Navigation

Like RSS Bandit? Make a donation to help support its development and maintenance. As little as 1€ will help.

Make payments with PayPal - it's fast, free and secure!
On this page....
<May 2003>
SunMonTueWedThuFriSat
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

SUBSCRIBE RSS GeoURL e-mail

Search
Categories
Blogroll
[Feed] Dare Obasanjo
Dare Obasanjo aka Carnage4Life
[Feed] Clemens Vasters
[Feed] Omar Shahine
[Feed] Tom Mertens

newtelligence dasBlog 2.1.8102.813

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

WOT Notar

Join WebHost4Life.com