Ted Leung on the air
Ted Leung on the air: Open Source, Java, Python, and ...
Sat, 03 Jul 2004
Monad
Tonight I took some time to to look at the monad video that Jon Udell posted. It's interesting to see how the Monad team has extended the notion of a shell to work in an object environment. While this isn't that new conceptually (you could do similar stuff in Python or Lisp), there are some very nice features, some of which fall out of the scale at which things are being implemented. The ability to have a shell pipeline terminate at Excel or some other GUI app could be really useful. This is the shell that you wish you had on the Mac that could talk to all scriptable applications. Writing pipelines that don't have to do all the text parsing that UNIX pipelines do is very attractive. It would be great to have something like this for Mono (I'm guessing that msh won't actually run on Mono).

This is the second video I watched today (I watched the Intentional Programming video earlier in the day), and I also watched the WWDC keynote earlier in the week. This is probably no big deal for most people, but I watch television (or see a movie) so infrequently, that I really don't think of video streams as a way to get information. In this case, it was compounded by the fact that I had to get off the Mac because the Mac version of Windows Media player couldn't play the IP stream, so I just stayed on to watch the Monad video. One other cool thing about the Monad video was that they had the transcript right next to it, so I could read the transcript where things were going slow, and rely on the "sync transcript" feature to keep scrolling the transcript to the right place to help me keep oriented.

[23:44] | [computers/programming/dotnet] | # | TB | F | G | 1 Comments | Other blogs commenting on this post
Wed, 30 Jul 2003
X# is real....
Werner Vogels is out at Microsoft for the Microsoft Faculty Summit. One of the things that he discovered is that X# is based on Meijer and Schulte's paper Unifying Tables, Objects, and Documents.
[01:51] | [computers/programming/dotnet] | # | TB | F | G | 1 Comments | Other blogs commenting on this post
Tue, 22 Jul 2003
Jorgen goes to Redmond
Jorgen Thelin is leaving Cape Clear to join Microsoft. Here's an early welcome to the Pacific Northwest!
[02:03] | [computers/programming/dotnet] | # | TB | F | G | 1 Comments | Other blogs commenting on this post
Sat, 12 Jul 2003
"We have no appetite for it"
Via eWeek:
However, GM's Scott issued a strong warning to Microsoft, Sun and the other players in the Web services industry, that enterprises will not tolerate the standards wars of the past. "We have no appetite for it," he said.
[11:26] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Tue, 24 Jun 2003
.Net quickies
Yasser Shohoud has an interesting article on the relationship of .NET and the WSE:
WSE is logically a part of the .NET Framework. Keeping it physically outside the .NET Framework allows us to ship new versions at a much higher rate than the framework.
This is the kind of modular delivery that I was saying Microsoft wasn't doing, but at least in this particular case, I appear to be wrong. I wonder how many other pieces there are like this one.

Hats off to Chris Brumme for his detailed and informative post on CLR reliability. A double hats off because he knew he would get beat up about it. I don't see the Sun VM people blogging about this kind of thing on java.net.

[00:46] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Tue, 17 Jun 2003
Languages vs protocols
Ben Hyde's delightful article about scripting languages captures the essence of my recent ponderings about an open source CLR:
People tend to get all fixated on the role of protocols (XML et. al.) as the tool for creating openness and interoperability across the Internet. That maybe a mistake. It maybe we should be a lot more conscience about the role of a diverse population of languages in this game. That a world of one language is, in time, a monotheistic world. That world, while possibly somewhat more efficient, encourages a monopoly.
[00:57] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Thu, 12 Jun 2003
Mono and Vault
Miguel has announced that Ximian and Sourcegear are working together to bring up Vault on top of Mono. This will give Sourcegear a way to run Vault clients on non-Windows systems. Ximian is doing a bunch of work to bring Mono's web services functionality up to snuff, as well as doing a bunch of work to make Mono more stable and reliable.

This is an interesting development because it involves a commercial software company taking an interest and investing some money in Mono. It's also interesting because it increases the amount of the .NET framework that Mono implements. I wonder when we'll start hearing rumors of legal action against Mono.

[00:57] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Wed, 23 Apr 2003
#Smalltalk
Some of Ralph Johnson's former students have written #Smalltalk, which runs on .NET (but not Mono due to a bug)
[15:12] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Tue, 22 Apr 2003
.NET Yummies
I've posted a review of Heng Ngee Mok's From Java to C#: A Developer's Guide on the SeaJUG Wiki. My conclusion after finishing this is that as languages C# and Java are basically the same, and that the differences are enough to be annoying, but not overwhelming on either side. The tooling and class library stories are a different matter entirely.

On the tooling side, I've only played with Visual Studio a little bit (I'll be doing more) but right now it seems to me that Eclipse is a more powerful environment for people doing straight coding. I haven't gotten to the ASP.NET tools or the database tools in VS.NET yet, so I'll have to report back on that later. And since the IntelliJ people are always crowing about how IntelliJ's UI is far beyond Eclipse, that makes 2 IDE's for Java that are a parity or beyond VS.NET. As far as command line tools go, all I can say about that is that Ant was on Java before NAnt came along. As I read the .NET weblogs, I see references to some other interesting sounding stuff -- XSD Inference, etc. There must be some place that someone like me can go to learn about all this stuff. Maybe some of those folks that have recently swallowed the Red Pill will be able to do something to help out. I'm really interested in the whole Mono situation, and it appears that the tools story there is pretty much Emacs/vi, etc. Tools like SharpDevelop only seem to run on Windows. Maybe that will change once Gtk# or SWT# mature, or when someone decided to do a C# version of JDT in Eclipse.

I haven't had time to dig into the class libraries yet, but I've seen some interesting articles recently...

  • Jan Tielens tells How to get a RSS feed in a DataSet in 1 line...
    With only one line of code, you can get the contents of a RSS feed into a DataSet:
    myDataSet.ReadXml(New IO.StreamReader(System.Net.WebRequest.Create("http://msdn.microsoft.com/rss.xml").GetResponse.GetResponseStream)
    I know that this is VB code, but I think that you can call all of this from C# in an ASP.NET page. I'm not aware of anything like this in Java.

  • Julie Lerman describes how the CLR handles date/time formatting, something which has bitten me in pyblosxom because the default time data type isn't ISO8601 compliant which means that it's hard for us to generate RSS 2.0 valid feeds using the builtin libraries. My own code calls out to pyXML to get the job done, but this is causing a problem for people whose ISP's havent' installed pyXML on their webservers.

    Brad Abrams follows up Julie's post with a code sample.

  • Simon Fell gets into the act by describing a pair of functions that make it easy to do ETag handling for an RSS feed.

From here, the library story looks kind of interesting...
[14:10] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Fri, 04 Apr 2003
SWT is starting to grow on me.
There's a lot of activity on UI toolkits for C# on Linux. There's GTK#, QT# and now a C# binding to the SWT. That's a lot of activity.

Everytime I hear people talk about the SWT, they say something like, "the SWT would be great if we didn't already have the AWT". I'm interested in an open-source managed environment for desktop apps on Linux. If the guys working on the SWT port also do a port/translation of JFace, then I have a UI toolkit that runs in both Java and C# on Windows and Linux. You would also have native platform widgets. I noticed that the Eclipse 2.2 draft plan includes a workbench item titled "Enable Eclipse to be used as a general purpose application framework."

[23:20] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Wed, 19 Mar 2003
I actually won something
Last night was the monthly SeaJUG meeting. It happened to be one of the nights when Jayson Raymond, the SeaJUG chair was giving away some of the books that publishers periodically send him. His method: stick his finger somewhere in the book and announce the total number of pages, followed by a flurry of guesses as to what page his finger is in. Closest guess wins. Last night I actually won a book. Not only that, I actually wanted to win the book, which was Hang Ngee Mok's From Java to C#: A Developer's Guide. I'm not sure it's the greatest book on C#, but I just need something to get me going on my .NET exploration. And it does describe the Global Assembly Cache.
[12:40] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Sat, 01 Mar 2003
The Dark Side installed
After backing up all my important data and a 2 hour install process, I've managed to get Visual Studio.NET installed on my desktop machine. Some of my friends have had their machines munched by the install, so I'm grateful that I can still get work done -- and yes, I have friends who use VS.NET. Next up is to learn my way around, install the MS Web Services Enhancements (WSE), so that I can look at an implementation of WS-Security, WS-Routing, WS-Attachments, and DIME .
[22:20] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post
Thu, 27 Feb 2003
"Strike him down, and your journey to the dark side will be complete"
My copy of VS.NET arrived today. This is an exploratory thing for me, thanks to a friend who works at Microsoft. Since I'm in meetings the rest of the day, and because I've heard horror stories about system crashing installs of VS.NET, it may be a while before I get this installed. Stay tuned for an experience report.
[12:01] | [computers/programming/dotnet] | # | TB | F | G | 0 Comments | Other blogs commenting on this post


twl JPG

About

Ted Leung FOAF Explorer

I work at the Open Source Applications Foundation (OSAF).
The opinions expressed here are entirely my own, not those of my employer.

Creative Commons License
This work is licensed under a Creative Commons License.

Now available!
Professional XML Development with Apache Tools : Xerces, Xalan, FOP, Cocoon, Axis, Xindice
Technorati Profile
PGP Key Fingerprint
My del.icio.us Bookmarks
My Flickr Photos


Syndicate
RSS 2.0 xml GIF
Comments (RSS 2.0) xml GIF
Atom 0.3 feed
Feedburner'ed RSS feed

< July 2004 >
SuMoTuWeThFrSa
     1 2 3
4 5 6 7 8 910
11121314151617
18192021222324
25262728293031

Archives
2006
2005
2004
2003

Articles
Macintosh Tips and Tricks

Search
Lucene
Blogs nearby
geourl PNG

Categories
/ (1567)
  books/ (33)
  computers/ (62)
    hardware/ (15)
    internet/ (58)
      mail/ (11)
      microcontent/ (58)
      weblogs/ (174)
        pyblosxom/ (36)
      www/ (25)
    open_source/ (145)
      asf/ (53)
      osaf/ (32)
        chandler/ (35)
        cosmo/ (1)
    operating_systems/ (16)
      linux/ (9)
        debian/ (15)
        ubuntu/ (2)
      macosx/ (101)
        tips/ (25)
      windows_xp/ (4)
    programming/ (156)
      clr/ (1)
      dotnet/ (13)
      java/ (71)
        eclipse/ (22)
      lisp/ (34)
      python/ (86)
      smalltalk/ (4)
      xml/ (18)
    research/ (1)
    security/ (4)
    wireless/ (1)
  culture/ (10)
    film/ (8)
    music/ (6)
  education/ (13)
  family/ (17)
  gadgets/ (24)
  misc/ (47)
  people/ (18)
  photography/ (25)
    pictures/ (12)
  places/ (3)
    us/ (0)
      wa/ (2)
        bainbridge_island/ (17)
        seattle/ (13)
  skating/ (6)
  society/ (20)



[Valid RSS]

del.icio.us linkblog

www.flickr.com

Blogroll

java.blogs
Listed on BlogShares

Locations of visitors to this page
Where are visitors to this page?


pyblosxom GIF