Python论坛  - 讨论区

标题:[python-chinese] 哪里有ssh方面的资料?

2005年06月23日 星期四 11:47

lifr lifr_sh at yeah.net
Thu Jun 23 11:47:51 HKT 2005



我需要做一个ssh自动登陆的程序。
但ssh命令好像不能在程序环境中运行(也许我不知道)

请问谁有这方面的资料?谢谢。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 12:12

hutuworm hutuworm at gmail.com
Thu Jun 23 12:12:58 HKT 2005

http://sourceforge.net/projects/pyssh

On 6/23/05, lifr <lifr_sh at yeah.net> wrote:
> 
> 
> 
> 我需要做一个ssh自动登陆的程序。
> 但ssh命令好像不能在程序环境中运行(也许我不知道)
> 
> 请问谁有这方面的资料?谢谢。
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
In doG We Trust

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 15:28

清风 paradise.qingfeng at gmail.com
Thu Jun 23 15:28:02 HKT 2005

可以尝试一下Twisted。是否要实现scp操作?

2005/6/23, lifr <lifr_sh at yeah.net>:
> 
> 
> 我需要做一个ssh自动登陆的程序。
> 但ssh命令好像不能在程序环境中运行(也许我不知道)
> 
> 请问谁有这方面的资料?谢谢。
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Blog:http://www.donews.net/changzheng

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 16:11

=?gb2312?B?hKLA2g==?= liul at dhc.com.cn
Thu Jun 23 16:11:21 HKT 2005

以下程序运行结果不正,不得要领,请指教,不胜感激(文件编码为MS932,日文系
统,eclipse+pydev0.9)!
#!/usr/bin/python
# -*- coding: MS932 -*-
# Filename:Test.py

def isFullJpHiragana(inputStr):
        '''Check the input string is full japanese hiragana or not.'''

        if (None == inputStr or "" == inputStr):
            return False

        strTuple = tuple(inputStr)
        for c in strTuple:
            if (c < 0x3040 or c > 0x309F):
                return False

        return True

if "__main__" == __name__:
    print isFullJpHiragana(u"たなかさんはわたしのともだちです")



运行结果如下:
False

但是这段代码是以前的java代码移植过来的,在java下都是返回true的,为什么在
python下返回False呢?
java代码如下:
 /**
     * Check the input string is full japanese hiragana or not.
     * 

* if strInput is null or null string, return false. *

* @param strInput string data checked * @return boolean true if the inputted string is full japanese hiragana, else false */ public static boolean isFullJpHiragana(String strInput) { if(null == strInput || "".equals(strInput)) { return false; } final char[] cTempArray = strInput.toCharArray(); // Hiragana Range: 3040-309F for (int i = 0; i < cTempArray.length; i++) { final char c = cTempArray[i]; if (c < 0x3040 || c > 0x309F) { return false; } } return true; }


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 17:06

Qiangning Hong hongqn at gmail.com
Thu Jun 23 17:06:46 HKT 2005

„¢ÀÚ wrote:
> ÒÔϳÌÐòÔËÐнá¹û²»Õý£¬²»µÃÒªÁ죬ÇëÖ¸½Ì£¬²»Ê¤¸Ð¼¤£¨Îļþ±àÂëΪMS932£¬ÈÕÎÄϵ
> ͳ£¬eclipse+pydev0.9£©£¡
> #!/usr/bin/python
> # -*- coding: MS932 -*-
> # Filename:Test.py
> 
> def isFullJpHiragana(inputStr):
>         '''Check the input string is full japanese hiragana or not.'''
> 
>         if (None == inputStr or "" == inputStr):
>             return False

¸ü¼ÓpythonicµÄд·¨ÊÇ£º

    if not inputStr:
        return False

ifÊÇstatement²»ÊÇfunction£¬²»ÐèÒªÓÃÀ¨ºÅÀ¨×¡Ìõ¼þ±í´ïʽ

>         strTuple = tuple(inputStr)
>         for c in strTuple:

unicode stringÊÇiterable object£¬¿ÉÒÔÖ±½Óд

    for c in inputStr:

>             if (c < 0x3040 or c > 0x309F):

ÕâÀïcÊÇstrÀàÐÍ£¬ºÍÊý×Ö½øÐбȽÏÔËËã×ÜÊÇ·µ»ØFalseµÄ¡£
Ó¦¸Ãд³É

    if ord(c) < 0x3040 or ord(c) > 0x309F:

»òÕß

    if c < u'\u3040' or c > u'\u309F':

>                 return False
> 
>         return True
> 
> if "__main__" == __name__:
>     print isFullJpHiragana(u"¤¿¤Ê¤«¤µ¤ó¤Ï¤ï¤¿¤·¤Î¤È¤â¤À¤Á¤Ç¤¹")
> 
> 
> 
> ÔËÐнá¹ûÈçÏ£º
> False
> 
> µ«ÊÇÕâ¶Î´úÂëÊÇÒÔÇ°µÄjava´úÂëÒÆÖ²¹ýÀ´µÄ£¬ÔÚjava϶¼ÊÇ·µ»ØtrueµÄ£¬ÎªÊ²Ã´ÔÚ
> pythonÏ·µ»ØFalseÄØ£¿
> java´úÂëÈçÏ£º
[snip java code]

-- 
Qiangning Hong

 ____________________________________________________________
( No matter how cynical you get, it's impossible to keep up. )
 ------------------------------------------------------------
    o
     o
    ^__^         /
    (@@)\_______/  _________
    (__)\       )=(  ____|_ \_____
        ||----w |  \ \     \_____ |
        ||     ||   ||           ||

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 18:01

=?gb2312?B?hKLA2g==?= liul at dhc.com.cn
Thu Jun 23 18:01:46 HKT 2005

ÎÊÌâÒѽâ¾ö£¬·Ç³£¸Ðл£¡
ͬʱҲÇë½Ì¶àÒ»¸öÎÊÌ⣺
³ÌÐòÍ·²¿ÉùÃ÷µÄ±àÂëÊDz»ÊÇÒ»¶¨ÒªºÍ³ÌÐòÎļþµÄʵ¼Ê±àÂëÒ»Ö£¿Èç³ÌÐòÉùÃ÷# -*-
coding: UTF8 -*-£¬ÔòÎļþ±ØÐë´æΪUTF8¸ñʽµÄ£¿


----- Original Message -----
From: "Qiangning Hong" <hongqn at gmail.com>
To: <python-chinese at lists.python.cn>
Sent: Thursday, June 23, 2005 5:06 PM
Subject: Re: [python-chinese] ¹ØÓÚunicodeµÄÎÊÌâ


> „¢ÀÚ wrote:
> > ÒÔϳÌÐòÔËÐнá¹û²»Õý£¬²»µÃÒªÁ죬ÇëÖ¸½Ì£¬²»Ê¤¸Ð¼¤£¨Îļþ±àÂëΪMS932£¬ÈÕÎÄ
ϵ
> > ͳ£¬eclipse+pydev0.9£©£¡
> > #!/usr/bin/python
> > # -*- coding: MS932 -*-
> > # Filename:Test.py
> >
> > def isFullJpHiragana(inputStr):
> >         '''Check the input string is full japanese hiragana or not.'''
> >
> >         if (None == inputStr or "" == inputStr):
> >             return False
>
> ¸ü¼ÓpythonicµÄд·¨ÊÇ£º
>
>     if not inputStr:
>         return False
>
> ifÊÇstatement²»ÊÇfunction£¬²»ÐèÒªÓÃÀ¨ºÅÀ¨×¡Ìõ¼þ±í´ïʽ
>
> >         strTuple = tuple(inputStr)
> >         for c in strTuple:
>
> unicode stringÊÇiterable object£¬¿ÉÒÔÖ±½Óд
>
>     for c in inputStr:
>
> >             if (c < 0x3040 or c > 0x309F):
>
> ÕâÀïcÊÇstrÀàÐÍ£¬ºÍÊý×Ö½øÐбȽÏÔËËã×ÜÊÇ·µ»ØFalseµÄ¡£
> Ó¦¸Ãд³É
>
>     if ord(c) < 0x3040 or ord(c) > 0x309F:
>
> »òÕß
>
>     if c < u'\u3040' or c > u'\u309F':
>
> >                 return False
> >
> >         return True
> >
> > if "__main__" == __name__:
> >     print isFullJpHiragana(u"¤¿¤Ê¤«¤µ¤ó¤Ï¤ï¤¿¤·¤Î¤È¤â¤À¤Á¤Ç¤¹")
> >
> >
> >
> > ÔËÐнá¹ûÈçÏ£º
> > False
> >
> > µ«ÊÇÕâ¶Î´úÂëÊÇÒÔÇ°µÄjava´úÂëÒÆÖ²¹ýÀ´µÄ£¬ÔÚjava϶¼ÊÇ·µ»ØtrueµÄ£¬ÎªÊ²Ã´ÔÚ
> > pythonÏ·µ»ØFalseÄØ£¿
> > java´úÂëÈçÏ£º
> [snip java code]
>
> --
> Qiangning Hong
>
>  ____________________________________________________________
> ( No matter how cynical you get, it's impossible to keep up. )
>  ------------------------------------------------------------
>     o
>      o
>     ^__^         /
>     (@@)\_______/  _________
>     (__)\       )=(  ____|_ \_____
>         ||----w |  \ \     \_____ |
>         ||     ||   ||           ||
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 18:23

shhgs shhgs.efhilt at gmail.com
Thu Jun 23 18:23:50 HKT 2005

你的字符串是从Java里面来的。Java的字符是utf16编码的unicode字符,所以你这里必须先统一成unicode字符,再进行比较。估计你得先用utf16对inputStr进行解码再做比较。

unicode可以直接做比较,
>>> unichr(2000) > unichr(1999)
True

此外
strTuple = tuple(inputStr)
很多余,Python的String,不管是普通的还是Unicode的都可以iterate。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 18:32

shhgs shhgs.efhilt at gmail.com
Thu Jun 23 18:32:30 HKT 2005

好像叫twisted.conch

不过ssh有forward功能,一般来说用不着嵌套在程序里了。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月23日 星期四 21:58

Qiangning Hong hongqn at gmail.com
Thu Jun 23 21:58:11 HKT 2005

„¢ÀÚ wrote:
> ÎÊÌâÒѽâ¾ö£¬·Ç³£¸Ðл£¡
> ͬʱҲÇë½Ì¶àÒ»¸öÎÊÌ⣺
> ³ÌÐòÍ·²¿ÉùÃ÷µÄ±àÂëÊDz»ÊÇÒ»¶¨ÒªºÍ³ÌÐòÎļþµÄʵ¼Ê±àÂëÒ»Ö£¿Èç³ÌÐòÉùÃ÷# -*-
> coding: UTF8 -*-£¬ÔòÎļþ±ØÐë´æΪUTF8¸ñʽµÄ£¿

ÊÇ°¡¡£ÉùÃ÷µÄ¾ÍÊdzÌÐòÎļþµÄ±àÂë°¡¡£

-- 
Qiangning Hong

 ___________________________________
( printk("whoops, seeking 0\n");    )
(                                   )
( linux-2.6.6/drivers/block/swim3.c )
 -----------------------------------
        o   ^__^
         o  (**)\_______
            (__)\       )\/\
             U  ||--WWW |
                ||     ||

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 11:32

lifr lifr_sh at yeah.net
Fri Jun 24 11:32:07 HKT 2005

其实这只是一个测试程序,就像一个登陆robot。它的要求非常简单,就是
login/logout。

我开始想,最好shell+ssh命令能做这样的事情,但ssh好像必须要一个terminal,
在程序环境无法执行。
然后我才想用python(杀鸡用牛刀)。

谢谢各位。

-----Original Message-----
From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] On Behalf Of shhgs
Sent: Thursday, June 23, 2005 6:33 PM
To: 清风; python-chinese at lists.python.cn
Subject: Re: [python-chinese] 哪里有ssh方面的资料?


好像叫twisted.conch

不过ssh有forward功能,一般来说用不着嵌套在程序里了。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 11:45

Qiangning Hong hongqn at gmail.com
Fri Jun 24 11:45:46 HKT 2005

lifr wrote:
> 其实这只是一个测试程序,就像一个登陆robot。它的要求非常简单,就是
> login/logout。

登录上去总要干些事吧?总不能进去就是为了出来,像这样:

ssh username at host exit

> 我开始想,最好shell+ssh命令能做这样的事情,但ssh好像必须要一个terminal,
> 在程序环境无法执行。

什么叫“必须要一个terminal”?terminal是用来提供输入输出的,如果你要做的事
情必须要人干预,那当然需要一个终端,如果不需要干预,就不需要。
比如,去远程机器上编译一个工程:

ssh username at host "cd myproject; make"


> 然后我才想用python(杀鸡用牛刀)。

用python也行,直接使用os.system或者popen或者subprocess就挺好。

> 
> 谢谢各位。
> 



-- 
Qiangning Hong

 ____________________________________________________________
( He who is in love with himself has at least this advantage )
( -- he won't encounter many rivals.                         )
(                                                            )
( -- Georg Lichtenberg, "Aphorisms"                          )
 ------------------------------------------------------------
        o   ^__^
         o  (OO)\_______
            (__)\       )\/\
                ||--WWW |
                ||     ||

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:04

Neo Chan (netkiller) neo.chen at achievo.com
Fri Jun 24 16:04:31 HKT 2005

Skipped content of type multipart/mixed-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3066 bytes
Desc: not available
Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050624/8ac8399f/smime.bin

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:19

Qiangning Hong hongqn at gmail.com
Fri Jun 24 16:19:26 HKT 2005

Neo Chan (netkiller) wrote:
>  
> 大家有在软件外包行业做的吗??
> 谈谈你的和这个行业..
> 
> 我就干这个行业的..很不爽...
> 
> 在人家那里办公.但人家可不把你当自己人看...
> 考勤制度给我们特别制定了一套...NND
> 常常给你脸色看...哎..

这个和lifr的关于ssh的话题有关系吗?

Do not hijack other's thread. It's rude.  Start a new thread, please.

-- 
Qiangning Hong

 ___________________________________________________________
/ What kind of love is that? Not to be loved; never to have \
| shown love.                                               |
|                                                           |
| -- Commissioner Nancy Hedford, "Metamorphosis",           |
|                                                           |
\ stardate 3219.8                                           /
 -----------------------------------------------------------
   \         ,        ,
    \       /(        )`
     \      \ \___   / |
            /- _  `-/  '
           (/\/ \ \   /\
           / /   | `    \
           O O   ) /    |
           `-^--'`<     '
          (_.)  _  )   /
           `.___/`    /
             `-----' /
<----.     __ / __   \
<----|====O)))==) \) /====
<----'    `--' `.__,' \
             |        |
              \       /
        ______( (_  / \______
      ,'  ,-----'   |        \
      `--{__________)        \/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:21

jam.zheng jam.zheng at achievo.com
Fri Jun 24 16:21:57 HKT 2005

是的,居无定所,寄人篱下,属于三等公民

-----Original Message-----
From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]On Behalf Of Neo Chan
(netkiller)
Sent: Friday, June 24, 2005 4:05 PM
To: python-chinese at lists.python.cn
Subject: [python-chinese] 谈谈软件外包行业



大家有在软件外包行业做的吗??
谈谈你的和这个行业..

我就干这个行业的..很不爽...

在人家那里办公.但人家可不把你当自己人看...
考勤制度给我们特别制定了一套...NND
常常给你脸色看...哎..

Neo Chan (netkiller)
Best Regards, 73 de BG7NYT

Amateur Radio Callsign: BG7NYT
CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:34

=?GB2312?B?hKLA2g==?= liul at dhc.com.cn
Fri Jun 24 16:34:28 HKT 2005

咳,python中的unicode理解得比较晕了,那位有心得或好的资料介绍多帮帮忙,要不
帮我把以下java代码移植成python也行,不胜感激!


 /**
   * Check the input string is full Number or not.
   * 

* if strInput is null or null string, return false. *

* @param strInput string data checked * @return boolean true if the inputted string is full Number, else false */ public static boolean isFullNumber(String strInput) { if(null == strInput || "".equals(strInput)) { return false; } final char[] cTempArray = strInput.toCharArray(); // Halfwidth and Fullwidth Forms Range: FF00-FFEF for (int i = 0; i < cTempArray.length; i++) { final char c = cTempArray[i]; if (c < 0xFF10 || c > 0xFF19) { return false; } } return true; }


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:47

limodou limodou at gmail.com
Fri Jun 24 16:47:54 HKT 2005

这是没办法的。你在人家那里上班,自然要按人家的管理制度走,而且这东西他们管不了,自然对你们要求严格,自已轻松了。这就是雇主与雇工的关系。只能是讨论哪些合理哪些不合理。

在 05-6-24,Neo Chan (netkiller)<neo.chen at achievo.com> 写道:
> 
> 大家有在软件外包行业做的吗??
> 谈谈你的和这个行业..
> 
> 我就干这个行业的..很不爽...
> 
> 在人家那里办公.但人家可不把你当自己人看...
> 考勤制度给我们特别制定了一套...NND
> 常常给你脸色看...哎..
> 
> Neo Chan (netkiller)
> Best Regards, 73 de BG7NYT
> 
> Amateur Radio Callsign: BG7NYT
> CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz
> 
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 
> 


-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:52

jam.zheng jam.zheng at achievo.com
Fri Jun 24 16:52:56 HKT 2005

你没有做过外包吧?不仅仅是按人家的制度而已,就想一个是亲妈生的,一个是二奶生
的,然后把二奶生的孩子给亲妈抚养!!!

-----Original Message-----
From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]On Behalf Of limodou
Sent: Friday, June 24, 2005 4:48 PM
To: python-chinese at lists.python.cn
Subject: Re: [python-chinese] 谈谈软件外包行业


这是没办法的。你在人家那里上班,自然要按人家的管理制度走,而且这东西他们管不
了,自然对你们要求严格,自已轻松了。这就是雇主与雇工的关系。只能是讨论哪些合
理哪些不合理。

在 05-6-24,Neo Chan (netkiller)<neo.chen at achievo.com> 写道:
>
> 大家有在软件外包行业做的吗??
> 谈谈你的和这个行业..
>
> 我就干这个行业的..很不爽...
>
> 在人家那里办公.但人家可不把你当自己人看...
> 考勤制度给我们特别制定了一套...NND
> 常常给你脸色看...哎..
>
> Neo Chan (netkiller)
> Best Regards, 73 de BG7NYT
>
> Amateur Radio Callsign: BG7NYT
> CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz
>
>
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>
>
>
>


--
I like python!
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:53

limodou limodou at gmail.com
Fri Jun 24 16:53:06 HKT 2005

1NrTyrz+wdCx7dbQ09Cyu8nZudjT2nVuaWNvZGW1xMzWwtu/ydLUsunSu7Lpo6zO0rXEYmxvZ8nP
0rLT0M7S0LS1xLnY09p1bmljb2RltcTOxNXCv8nS1LLOv7zSu8/CoaPG5Mq1xOO1xM7KzOLO0srH
1eLR+cDtveK1xKO6CgrU2nB5dGhvbtbQ19a3+9Pr1fvK/crHsrvNrLXEtqvO96OssrvE3NaxvdOx
yL3PoaPI57n7z+uxyL3P0qq9q9fWt/vXqrPJyv3WtaOsu/K9q8r91rXXqrPJ19a3+6OsyLu689TZ
sci9z6Gj19a3+9eqyv3Wtcq508NvcmQoKaOsyv2+3deq19a3+8q508NjaHIoKQrI57n7ysfXqs6q
dW5pY29kZcq508N1bmljaHIoKaGj1eLSu7Xj0+tDL0MrK8rHvvi21LK7zay1xKOs1NpD1tDX1rf7
v8nWsb3T0+vK/da1z+CxyL3PoaMKCtTaIDA1LTYtMjSjrISiwNo8bGl1bEBkaGMuY29tLmNuPiDQ
tLXAo7oKPiC/yKOscHl0aG9u1tC1xHVuaWNvZGXA7b3itcOxyL3P1M7By6OsxMfOu9PQ0MS1w7vy
usO1xNfKwc+96cnctuCw77Dvw6ajrNKqsrsKPiCw787SsNHS1M/CamF2YbT6wuvSxtays8lweXRo
b27SstDQo6yyu8qkuNC8pKOhCj4gCj4gIC8qKgo+ICAgICogQ2hlY2sgdGhlIGlucHV0IHN0cmlu
ZyBpcyBmdWxsIE51bWJlciBvciBub3QuCj4gICAgKiA8cD4KPiAgICAqIGlmIHN0cklucHV0IGlz
IDxpPm51bGw8L2k+IG9yIDxpPm51bGwgc3RyaW5nPC9pPiwgcmV0dXJuIGZhbHNlLgo+ICAgICog
PHA+Cj4gICAgKiBAcGFyYW0gc3RySW5wdXQgc3RyaW5nICBkYXRhIGNoZWNrZWQKPiAgICAqIEBy
ZXR1cm4gYm9vbGVhbiB0cnVlIGlmIHRoZSBpbnB1dHRlZCBzdHJpbmcgaXMgZnVsbCBOdW1iZXIs
IGVsc2UgZmFsc2UKPiAgICAqLwo+IHB1YmxpYyBzdGF0aWMgYm9vbGVhbiBpc0Z1bGxOdW1iZXIo
U3RyaW5nIHN0cklucHV0KSB7Cj4gICBpZihudWxsID09IHN0cklucHV0IHx8ICIiLmVxdWFscyhz
dHJJbnB1dCkpIHsKPiAgICByZXR1cm4gZmFsc2U7Cj4gICB9Cj4gCj4gICBmaW5hbCBjaGFyW10g
Y1RlbXBBcnJheSA9IHN0cklucHV0LnRvQ2hhckFycmF5KCk7Cj4gCj4gICAvLyBIYWxmd2lkdGgg
YW5kIEZ1bGx3aWR0aCBGb3JtcyAgUmFuZ2U6IEZGMDAtRkZFRgo+ICAgZm9yIChpbnQgaSA9IDA7
IGkgPCBjVGVtcEFycmF5Lmxlbmd0aDsgaSsrKSB7Cj4gICAgZmluYWwgY2hhciBjID0gY1RlbXBB
cnJheVtpXTsKPiAgICAgICBpZiAoYyA8IDB4RkYxMCB8fCBjID4gMHhGRjE5KSB7Cj4gICAgICAg
ICAgIHJldHVybiBmYWxzZTsKPiAgICAgICB9Cj4gICB9Cj4gCj4gICByZXR1cm4gdHJ1ZTsKPiAg
fQo+IAo+IF9fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCj4g
cHl0aG9uLWNoaW5lc2UgbGlzdAo+IHB5dGhvbi1jaGluZXNlQGxpc3RzLnB5dGhvbi5jbgo+IGh0
dHA6Ly9weXRob24uY24vbWFpbG1hbi9saXN0aW5mby9weXRob24tY2hpbmVzZQo+IAoKCi0tIApJ
IGxpa2UgcHl0aG9uISAKTXkgRG9uZXdzIEJsb2c6IGh0dHA6Ly93d3cuZG9uZXdzLm5ldC9saW1v
ZG91Ck5ldyBHb29nbGUgTWFpbGxpc3Q6IGh0dHA6Ly9ncm91cHMtYmV0YS5nb29nbGUuY29tL2dy
b3VwL3B5dGhvbi1jbgo=

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 16:56

Neo Chan (netkiller) neo.chen at achievo.com
Fri Jun 24 16:56:29 HKT 2005

Skipped content of type multipart/mixed-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3066 bytes
Desc: not available
Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050624/e65fb252/smime.bin

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 17:01

Qiangning Hong hongqn at gmail.com
Fri Jun 24 17:01:24 HKT 2005

„¢ÀÚ wrote:
> ¿È£¬pythonÖеÄunicodeÀí½âµÃ±È½ÏÔÎÁË£¬ÄÇλÓÐÐĵûòºÃµÄ×ÊÁϽéÉܶà°ï°ï棬Ҫ²»
> °ïÎÒ°ÑÒÔÏÂjava´úÂëÒÆÖ²³ÉpythonÒ²ÐУ¬²»Ê¤¸Ð¼¤£¡
> 
> 
>  /**
>    * Check the input string is full Number or not.
>    * 

> * if strInput is null or null string, return false. > *

> * @param strInput string data checked > * @return boolean true if the inputted string is full Number, else false > */ > public static boolean isFullNumber(String strInput) { > if(null == strInput || "".equals(strInput)) { > return false; > } > > final char[] cTempArray = strInput.toCharArray(); > > // Halfwidth and Fullwidth Forms Range: FF00-FFEF > for (int i = 0; i < cTempArray.length; i++) { > final char c = cTempArray[i]; > if (c < 0xFF10 || c > 0xFF19) { > return false; > } > } > > return true; > } ÄãÕâ¸öÎÊÌâ²»ÊǸúÄãÉÏ´ÎÎʵÄÅжÏƽ¼ÙÃûƬ¼ÙÃûһģһÑùÂ𣿠def is_full_number(input): if not input: return False for c in input: if not u'\uff10' <= c <= u'\uff19': return False return True Ò²ÐíÏÂÃæÕâ¸öЧÂʸü¸ßһЩ£º def is_full_number(input): return input and \ u'\uff10' <= min(input) and \ u'\uff19' >= max(input) or False -- Qiangning Hong _________________________________________________________ / "We cannot start Mitchell, the Mitchell Plan, until the \ | cycle of violence has been crushed and broken." | | | \ George W. Bush June 20, 2001 Washington, D.C. / --------------------------------------------------------- \ . _ . \ |\_|/__/| / / \/ \ \ /__|O||O|__ \ |/_ \_/\_/ _\ | | | (____) | || \/\___/\__/ // (_/ || | || | ||\ \ //_/ \______// __ || __|| (____(____)


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年06月24日 星期五 17:23

March Liu march.liu at gmail.com
Fri Jun 24 17:23:32 HKT 2005

我们部也在搞外包,不同的是我们是甲方。除了为来外包现场(对方老总要求封闭开发)的兄弟姐妹们提供办公条件(应各岗位的不同要求,我们更换过几批硬件 
了,包括好几台显示器)、生活设施,我们还买了一大堆常备药,每天早上来不及吃早点的,可以起床后来办公室吃打包上来的,晚上不定期(视人数)有宵夜,对 
了,我们最近不是很忙,所以大家下班后经常一起打WOW……
我想,同样是外包,待遇不同,一方面是有没有一个组织为开发者争取权益(比如我们这个项目里乙方的公司),一个是甲方公司的有没有一个宽松包容的文化,当然合作双方的体验非常重要,至少到现在,我们双方对对方的工作还是认可的。
尽管公司的领导更喜欢大公司的高价货,但我还是在项目组内部架设了一个Plone站点,尝试使用Plone来管理我们的信息,反正我们是封闭开发,直接领导点头了就OK:)。

在05-6-24,Neo Chan (netkiller) <neo.chen at achievo.com> 写道:
> 
> 
> 我们在家人那上班..用复印机都得要密码,
> 不允许上网.. 去WC还要钥匙
> 
> Neo Chan (netkiller)
> Best Regards, 73 de BG7NYT
> 
> Amateur Radio Callsign: BG7NYT
> CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz
> 
> -----Original Message-----
> From: python-chinese-bounces at lists.python.cn
> [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of jam.zheng
> Sent: Friday, June 24, 2005 4:53 PM
> To: limodou; python-chinese at lists.python.cn
> Subject: RE: [python-chinese] 谈谈软件外包行业
> 
> 你没有做过外包吧?不仅仅是按人家的制度而已,就想一个是亲妈生的,一个是二奶生
> 的,然后把二奶生的孩子给亲妈抚养!!!
> 
> -----Original Message-----
> From: python-chinese-bounces at lists.python.cn
> [mailto:python-chinese-bounces at lists.python.cn]On Behalf Of limodou
> Sent: Friday, June 24, 2005 4:48 PM
> To: python-chinese at lists.python.cn
> Subject: Re: [python-chinese] 谈谈软件外包行业
> 
> 这是没办法的。你在人家那里上班,自然要按人家的管理制度走,而且这东西他们管不
> 了,自然对你们要求严格,自已轻松了。这就是雇主与雇工的关系。只能是讨论哪些合
> 理哪些不合理。
> 
> 在 05-6-24,Neo Chan (netkiller)<neo.chen at achievo.com> 写道:
> >
> > 大家有在软件外包行业做的吗??
> > 谈谈你的和这个行业..
> >
> > 我就干这个行业的..很不爽...
> >
> > 在人家那里办公.但人家可不把你当自己人看...
> > 考勤制度给我们特别制定了一套...NND
> > 常常给你脸色看...哎..
> >
> > Neo Chan (netkiller)
> > Best Regards, 73 de BG7NYT
> >
> > Amateur Radio Callsign: BG7NYT
> > CQCQCQ This is BG7NYT Calling CQ and Stand By. 439.460MHz
> >
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> 
> --
> I like python!
> My Donews Blog: http://www.donews.net/limodou New Google Maillist:
> http://groups-beta.google.com/group/python-cn
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 
> 


-- 
欢迎访问:
http://blog.csdn.net/ccat

刘鑫
March.Liu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050624/c182da1d/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号