- 浏览: 306546 次
最新评论
-
shoru:
最新的netbeans scala插件无法安装到6.9中呀,求 ...
Scala-对Java的修正和超越-Presentation -
alanwu:
night_stalker 写道讲一次多少钱啊,能透露下么…… ...
Scala-对Java的修正和超越-Presentation -
wzjin:
暂时没有考虑学习,等有一定市场再看!
Scala-对Java的修正和超越-Presentation -
dcaoyuan:
jasspier 写道对scala有点兴趣,有没有入门的推荐教 ...
Scala-对Java的修正和超越-Presentation -
jasspier:
草原兄,听了你的课,对scala有点兴趣,有没有入门的推荐教程 ...
Scala-对Java的修正和超越-Presentation
文章列表
I'm pleased to announce ErlyBird 0.12.0, an Erlang IDE based on NetBeans.
This is a bug-fix, performance improvement release. This release will only provide all-in-one IDE package,
which is in size of 15.9M.
Java JRE 5.0+ is requested.
To download, please go to:
http://sourceforge.net/project/ ...
- 2007-08-08 18:40
- 浏览 918
- 评论(0)
I'm pleased to announce ErlyBird 0.12.0, an Erlang IDE based on NetBeans.
This is a bug-fix, performance improvement release. This release will only provide all-in-one IDE package,
which is in size of 15.9M.
Java JRE 5.0+ is requested.
To download, please go to:
http://sourceforge.net/project/ ...
- 2007-08-08 18:34
- 浏览 1118
- 评论(0)
I'm pleased to announce ErlyBird 0.12.0, an Erlang IDE based on NetBeans.
This is a bug-fix, performance improvement release. This release will only provide all-in-one IDE package,
which is in size of 15.9M.
Java JRE 5.0+ is requested.
To download, please go to:
http://sourceforge.net/project/ ...
- 2007-08-08 18:34
- 浏览 886
- 评论(0)
I'm pleased to announce ErlyBird 0.12.0, an Erlang IDE based on NetBeans.
This is a bug-fix, performance improvement release. This release will only provide all-in-one IDE package,
which is in size of 15.9M.
Java JRE 5.0+ is requested.
To download, please go to:
http://sourceforge.net/project/ ...
- 2007-08-08 18:34
- 浏览 821
- 评论(0)
I'm pleased to announce ErlyBird 0.11.2, an Erlang IDE based on NetBeans.
This is a bug-fix, stabilization release. Since I tightly modified GSF/GLF
modules of NetBeans, this release will only provide all-in-one IDE package,
which is in size of 14.8M.
To download, please go to:
http://sourcefor ...
- 2007-08-08 18:05
- 浏览 1072
- 评论(0)
Updated July 20 2007: new params.erl which uses dict to store params and converts to proper type(integer/float/string)
It's time to migrate our project from Rails to Erlyweb (It cost me one month to write an Erlang IDE before this happens :-)). I'll blog some tips of the procedure, focus on the diff ...
- 2007-08-05 06:34
- 浏览 1233
- 评论(0)
Updated Aug 5: rewrote json_parser.erl base on tonyg's RFC4627 implementation, fixed some bugs.
In my previous blog: A Simple XML State Machine Accepting SAX Events to Build xmerl Compitable XML Tree: icalendar demo, I wrote a simple state machine to parse icalendar to xmerl compitable XML tree. Thi ...
- 2007-08-04 09:55
- 浏览 1176
- 评论(0)
In my previous blog: A Simple XML State Machine Accepting SAX Events to Build xmerl Compitable XML Tree: icalendar demo, I wrote a simple state machine to parse icalendar to xmerl compitable XML tree. This time, I'll use this state machine to parse a JSON expression to xmerl compitable XML tree, the ...
- 2007-08-04 09:55
- 浏览 1481
- 评论(0)
Updated Aug 5: rewrote json_parser.erl base on tonyg's RFC4627 implementation, fixed some bugs.
In my previous blog: A Simple XML State Machine Accepting SAX Events to Build xmerl Compitable XML Tree: icalendar demo, I wrote a simple state machine to parse icalendar to xmerl compitable XML tree. Thi ...
- 2007-08-04 09:55
- 浏览 951
- 评论(0)
3. The Magic Behind Erlyweb
With dynamic typing, hot code swapping, built-in parsing and compilation tools, Erlang is also suitable for dynamic meta-programming. Erlyweb uses a small convenient tool smerl
to generate db record CRUD code automatically.
The music example on erlyweb.org shows the magi ...
- 2007-07-30 00:14
- 浏览 879
- 评论(0)
According to [erlang-bugs] xmerl and standard HTML entity refs, currently xmerl_scan only recognizes the very limited set of entity references. In brief, if you try to xmerl:scan xml text that includes standard HTML entity refs, such as nbsp, iexcl, pound, frac14, etc. you'll encounter something lik ...
- 2007-07-30 00:14
- 浏览 967
- 评论(0)
IV. Support Mysql Spatial Extensions via erlydb_mysql
ErlyDB supports most database operations, and it can also be extended to support more complex operations. Here is an example, where I need to support Mysql spatial extensions.
Assume we have a table: places, which has a mysql point field: location ...
- 2007-07-30 00:14
- 浏览 914
- 评论(0)
I've updated "From Rails to Erlyweb" Part I and Part II. What's new?
The database configuration is now stroed in opaque part of yaws.conf
A new params.erl which uses dict to store params and converts to proper type(integer/float/string)
- 2007-07-30 00:13
- 浏览 865
- 评论(0)
A Simple XML State Machine Accepting SAX Events to Build xmerl Compitable XML Tree: icalendar demo
- 博客分类:
- Erlang
xmerl is a full XML functionality in Erlang, with a lot of features like XPATH, XSLT, event_function, acc_function etc. Well, now I just want to get icalendar to be parsed to form of xmerl tree, which will contain #xmlElement, #xmlAttribute, #xmlText etc, and easily to apply XPATH on it.
How about an ...
- 2007-07-30 00:06
- 浏览 1369
- 评论(0)
A Simple XML State Machine Accepting SAX Events to Build xmerl Compitable XML Tree: icalendar demo
- 博客分类:
- Erlang
xmerl is a full XML functionality in Erlang, with a lot of features like XPATH, XSLT, event_function, acc_function etc. Well, now I just want to get icalendar to be parsed to form of xmerl tree, which will contain #xmlElement, #xmlAttribute, #xmlText etc, and easily to apply XPATH on it.
How about an ...
- 2007-07-30 00:06
- 浏览 1437
- 评论(0)