Re: [PerlChina] perlchina的注记

2014-08-26 Thread Dongxu Ma
说到商业公司的话,您漏掉了2家当初比较有名的:摩根士丹利和亚马逊。这两家公司是当初借着Perl5的流行把自己的公司IT搭建起来的。我在前者工作了7年,因为个人也爱好这门语言,对摩根士丹利里Perl5的发展情况也是蛮了解的,里面随处可见Perl的踪影。High Order Perl的序言里也阐述了Hildo代表大摩的帮助。大摩自从在上海落户开发中心以来,也在上海开辟了一部分和Perl相关的职位,间接推动了这门语言在国内的发展。最近公司还有在招聘这方面的职位。 2014-08-25 16:04 GMT+08:00 Liu Yubao yubao@gmail.com: 好怀旧。

Re: Audio-TagLib

2011-02-08 Thread Dongxu Ma
Hi Geoffrey, Great news. I am very happy to hand it over. I am really busy on my fulltime job in past 3 years. Will make you co-maintainer, please release it under your cpan id. cheers, On Mon, Feb 7, 2011 at 10:04 PM, Geoffrey Leach ge...@hughes.net wrote: Hello. I've worked on

Re: Perl 6 Microgrants. Now accepting proposals.

2007-03-23 Thread Dongxu Ma
Hi all, I am recently working on the QT4/KDE4 bindings for p5. First cpp headers are parsed by a grammar based on Parse::RecDescent, The production of latest dev release Parse-QTEDI-0.02_01 is quite stable, presenting all related interface information of cpp .h. I will continue to make it

Re: Perl 6 Microgrants. Now accepting proposals.

2007-03-22 Thread Dongxu Ma
Hi all, I am recently working on the QT4/KDE4 bindings for p5. First cpp headers are parsed by a grammar based on Parse::RecDescent, The production of latest dev release Parse-QTEDI-0.02_01 is quite stable, presenting all related interface information of cpp .h. I will continue to make it

Re: Perl 6 Microgrants. Now accepting proposals.

2007-03-22 Thread Dongxu Ma
Hi all, I am recently working on the QT4/KDE4 bindings for p5. First cpp headers are parsed by a grammar based on Parse::RecDescent, The production of latest dev release Parse-QTEDI-0.02_01 is quite stable, presenting all related interface information of cpp .h. I will continue to make it

Re: Perl 6 Microgrants. Now accepting proposals.

2007-03-22 Thread Dongxu Ma
Hi all, I am recently working on the QT4/KDE4 bindings for p5. First cpp headers are parsed by a grammar based on Parse::RecDescent, The production of latest dev release Parse-QTEDI-0.02_01 is quite stable, presenting all related interface information of cpp .h. I will continue to make it

script binding for reiserfs?

2006-04-06 Thread Dongxu Ma
Hi all,As reiserfs more and more popular, is there any binding package for use in script languages? I did a search on Google and nothing found.Curently I am thinking about writing a binding for Perl, which can offer: 1) script-level operation against reiserfs2) DBI DBD for reiserfs binding to

how to deal with static c++ object

2005-09-13 Thread Dongxu Ma
Hi all, In some case, a class will have a static object for special purpose. For instance: static foo foo::bar I want to port this object to perl by wrapping it as a sub like this: foo * foo::bar() CODE: RETVAL = (foo::bar); OUTPUT: RETVAL This will always cause a segfault while invoking the

how to specify namespace in perlxs

2005-09-07 Thread Dongxu Ma
Hi all, Does any one know why I can't add 'using namespace brabra;' in .xs file? The xsubpp can't recognize while generating the .c file. -- Bst Rgrs, Dongxu

Re: segfault while DELETE THIS

2005-08-18 Thread Dongxu Ma
at 11:55:49AM +0800, Dongxu Ma wrote: According to typemap in ExtUtils and perl.h, casting IV to pointer should be safe in this case, since on my machine(32bit, kernel 2.6.12), sizeof(int) == 4, which is the same as a pointer. Does anyone have any idea about this issue? I think

segfault while DELETE THIS

2005-08-11 Thread Dongxu Ma
Hi All, I am learning how to use XS (C). Firstly, I wrote a simple C++ class, compiled to libtest.so. A simple main proved the test lib works fine. test.h--- #ifndef _TEST_H #define _TEST_H class Test { public: Test();