-
Don't know if you can still see this post via your RSS reader. just started from yesterday Feedburner had my old feed http://feeds.feedburner.com/rextangtw changed to a RSS redirect tag like this. <? xml version="1.0" ?> < redirect > < newLocation > http://blog.rex.la/rss.aspx <...
Posted to
Rexiology::Past
by
rextangtw
on
2005/12/7
Filed under:
Filed under: Japan 日本文化, Microsoft/.NET, Tools 好用的工具, Life 生活, Blog Framework / Tools, I.T. Related, Movies 電影, Music 音樂, Travel 旅行, Readings 閱讀, Yahoo, Feelings 雜記, MS TechEd, O/R Mapping, Programming, Business 商業, Mobile Life
-
Just for your reference here if you didn't see the main page , this "Past" blog is the archive of my previous blog hosted at http://blog.rex.la . All the links at http://blog.rex.la will correctly links to posts here (through URL rewriting), so that all the links outside the world will still working...
Posted to
Rexiology::Past
by
rextangtw
on
2005/11/28
Filed under:
Filed under: Japan 日本文化, Microsoft/.NET, Tools 好用的工具, Life 生活, Blog Framework / Tools, I.T. Related, Movies 電影, Music 音樂, Travel 旅行, Readings 閱讀, Yahoo, Feelings 雜記, MS TechEd, O/R Mapping, Programming, Business 商業, Mobile Life
-
My situation as follows: I am developing my project with my team using SQL Server as testing database, the production environment will use Oracle to host the data. We used NHibernate 1.0.0 as the O/R Mapper to deal with database transparency and focus on the core process. As previous post stated that...
-
[via Rob Howard ] CommunityServer 2.0 beta 1 binary was released for public download . and there is a showcase website available for demo. Also via the other Rob's post , www.asp.net now running on ASP.NET 2.0. it's a places of resources for asp.net , nice place to visit. I am currently in the middle...
-
Just did a series reading started from Andrew Connell 's FeedBurner posts ( here and here and here and here ) , which followed to Scott Mitchell 's posts ( here and here ), also got Scott Hanselman's post appeared in Andrew's post comment trackback. This is all about syndication through FeedBurner ....
-
It's not news anymore, NHibernate finally got its 1.0 release , not a beta or RC anymore. Saw this announcement stated at 10/17 couple days ago that NHibernate joins Hibernate at JBoss Inc. , which stated: NHibernate is a port of Hibernate 2.1 to the .NET platform. After several years of development...
-
On my reading of Ajax.Net documents today, there is a keyword " JSON " appears sometimes. A Windows Desktop Search found my PDCBlogger.NET feed that contains Steve Maine's blog post, which had a nice article talking about JSON (JavaScript Object Notation). [via Steve Maine, Brain.Save() ] JSON (JavaScript...
-
Finally I got some time to really dig into articles talking about AJAX . I am going to do some AJAX tricks in my current project. In the search of the proper AJAX wrapper for .NET , mostly the result came out to Ajax.Net , seems it's the most popular AJAX wrapper in .NET world. Microsoft also got an...
-
When deploying an ASP.NET web project, generally lots of files are not needed to copy to the production environment. project files, solution files, compiled debugging files, .cs .vb source files, etc, for example. If the source code was checked out from CVS server, there will be CVS meta data folders...
-
ok. it's been a while not getting into some serious development projects, as I was busy preparing my Japanese Proficiency Test coming at December. now my new project is getting into building fundamental application blocks and I decided to improve my O/R Mapping framework done at previous project to implement...
-
just saw from TheServerSide.Net , NHibernate 0.9 is released , Release Note here . the changes as follows (from Release Note ): Build 0.9.0.0 ======================== - Added ISession.Clear(). - Added configurable command timeout property (hibernate.command_timeout). - Added named SQL query support....
-
Inspired from Andrew Connell's post , I put the site search box to my blog. provided 4 mainstream search engines ( Google , Technorati , Yahoo! , and MSN Search ). Utilized the power of those search services to do the site search of my blog posts. ASP.NET page only allows ONE html "form" tag per page...
-
for people interesting of writing Google Maps / GMail - like Web Applications, you'll love this! [via Andrew Connell ] Ajax.Net library & examples ...
-
if you read the whole Hibernate in Action book, you'll find that in Java world, people use "set" collection often. most of the NHibernate articles and examples followed Hibernate 's Java trend, using <set> to map one-to-many and many-to-many relationships. if you thought NHibernate is an easy-to...
-
I found something while doing my project using NHibernate as the O/R Mapper. I got a table that stores multiple category-item data inside it. used a column 'type' to distinguish groups of values. thus it's obvious to use SubClass tag with discriminator / discriminator-value tags to transform each row...