Why yes Jenny I could easily make the dynamic skin work with Radio's news aggregator, but I won't. Why? Once bitten, twice shy.
Signed,
A zealot
I was mistaken wednesday
when I said that the lack of free functions in C# stopped me from implementing the streaming operators << and >>. I was able to get pretty close:
Note the superfluous
using System;
using System.IO;
class Wrapper {
private TextWriter stream_;
public Wrapper(TextWriter stream) {
stream_ = stream;
}
public static Wrapper operator<<(Wrapper w, Object o) {
Console.Write(o);
return w;
}
}
class _ {
public static void Main() {
Wrapper cout = new Wrapper(Console.Out);
int a = 2;
cout = cout << "The value of a = " << a << "\n";
}
}
cout = cout
at the beginning of the line. C# requires the assignment and that is the problem.
Jenny is polling if she should produce two RSS feeds, one a headline only feed and the other with full content. I solved this problem a while ago with my skin for AmphetaDesk. Here are some screenshots of how it works, specifically with her news feed.