`
nacu
  • 浏览: 16077 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
M10 终于发布了 全部功能大概在175M左右 新功能包括: New default color scheme and syntax coloring Ruby Debugger enhancements (global vars, watch view, locals view) Redesigned Find / Replace dialog Plugin Manager allows you to distribute groups of IDE components (for example Ruby, SOA) Integr ...
虽然c# Meta programing 的能力不够 不过新特性还是比较爽的 用这些写了个IoC类 挺有意思 c# 代码   using System;   using System.Collections.Generic;   using System.Linq;   using System.Text;   using NUnit.Framework;      namespace Test   {       /// <summary></summary>       /// ser ...
看了C# 3.0 的feature, 瀑布汗了一下,MS 开始抄Ruby了么 有下例为证 c# 3.0 c# 代码   10.Times((int i) =>                   {                       if (i > 5)                           Console.WriteLine(i);                       else                           Console.WriteLine("less than f ...
Ruby 的Metaclass功能确实强大, 我仿照Rail的处理的做了一个Aop 的小试验,代码如下: ruby 代码   # aop_test.rb   # 2007年6月18日   #   module AopAspects     def log_method(*args)       puts "log here"       args.each do |arg|         puts arg.to_s       end     end          def ...
原先处理Unit Of Work这样的事务,我们一般采用的是如下的方式:   c# 代码   UnitOfWork uow = Config.GetConfig().GetUnitOfWork();               uow.Reset();                  uow.RegisterDirty("Invoice",invoice);                  uow.FlushBean();   其中UnitOfWork 类是在线程静态变量 c# 代码   public  ...
WmsOnRails 将使用JRuby 开发 下面是开发环境安装和配置步骤: 1 下载Netbeans 6.0 m9,JRuby    http://www.netbeans.info/downloads/dev.php    因为该版本Netbeans 自带的JRuby为0.98版本,还需要到    http://xircles.codehaus.org/projects/jruby 下载最新的Jruby 1.0,然后解压缩到某个目录下,并且配置Netbeans的ruby解释器的路径到该安装目录下    因为使用的后台数据库是MySql ,还需要下载 mysqldriver.jar cop ...
公司原有的技术架构主要是基于.net 平台的物流系统, 包括WMS + 无线手持终端的应用,TMS (使用ILog路径优化), 当需要提供外部Internet访问时,使用基于structs的java portal 我最近一直在使用ruby 作为自己的脚本语言,ruby给了我一种完全不同的编程体验, 所以我决定开始尝试RoR来移植一个简单的WMS仓储系统,使用netbeans M9 + JRuby 我会将开发的一些体会和问题整理,陆续在这里发布,这一篇算是一个预告吧。
Global site tag (gtag.js) - Google Analytics