Python论坛  - 讨论区

标题:RE: 答复: [python-chinese] [C/BPUG]正式集会倡议

2005年07月26日 星期二 09:19

limodou limodou at gmail.com
Tue Jul 26 09:19:07 HKT 2005

pyc是运行py时由python自动编译出来的字节码文件,这样python在运行时实际上装入的是pyc文件,因此它与py文件是独立的,只不过由python自动来维护这个pyc文件,比如你的py文件发生了变化,python会自动再次进行编译。而且python在导入一个模块时是有一定的顺序的,在命令行下,你可以打印
sys.path看一看。一般当前目前是最前的,而且python在导
入一个模块时是严格按照sys.path的顺序来导入的,因此先找你当前目录下是否有base64.py或base64.pyc或base64.pyo都可以,然后再到其它目录中查找。


2005/7/26, Weiming Yin <yinwm at 163.com>:
> 这里就还有一个问题了,为什么pyc没有删除就会有错误呢?
> py 和 pyc
> 可以单独存在么?
> 
> limodou wrote:
> > 原来如此。
> >
> > 2005/7/26, Weiming Yin <yinwm at 163.com>:
> >
> >> 开始叫做base64,结果有问题
> >> 我把名字改成64了
> >> 但是base64。pyc没删除
> >>
> >>
> >>
> >> limodou wrote:
> >>
> >>> 我看你写的不是64.py吗?怎么是base64.py. 晕
> >>>
> >>> 2005/7/26, Weiming Yin <yinwm at 163.com>:
> >>>
> >>>
> >>>> 果然如
> >>>>
> >>>> Bruce Wang<number5 at gmail.com>
> >>>>
> >>>> 老兄所说。
> >>>> 开始的名字叫做base64,现在把名字改了,就好了
> >>>> 多谢
> >>>>
> >>>>
> >>>> limodou wrote:
> >>>>
> >>>>
> >>>>> 它不是base64而是64.py。我在自已的器上试过了,没有问题呀。因此还是环境的问题。
> >>>>>
> >>>>> 在 05-7-25,Bruce Wang<number5 at gmail.com> 写道:
> >>>>>
> >>>>>
> >>>>>
> >>>>>> 自己import 自己?
> >>>>>> 你在base64.py文件里面 from base64 import *??
> >>>>>>
> >>>>>> 把base64.py改成其他文件名看看,注意删掉目录下所有的*.pyc文件
> >>>>>>
> >>>>>> On 7/25/05, Weiming Yin <yinwm at 163.com> wrote:
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>> 还是不行
> >>>>>>> C:\Program Files\Hansky>python c:\a\base64.py -e 1 1 1
> >>>>>>> 1  =
> >>>>>>> Traceback (most recent call last):
> >>>>>>>   File "c:\a\base64.py", line 2, in ?
> >>>>>>>     from base64 import *
> >>>>>>>   File "c:\a\base64.py", line 18, in ?
> >>>>>>>     print v, " = ", encodestring(v),
> >>>>>>> NameError: name 'encodestring' is not defined
> >>>>>>>
> >>>>>>> limodou wrote:
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>> 不过在windows下你加上:
> >>>>>>>> #!/usr/bin/env python
> >>>>>>>> 这句话是没有用的,去掉它。然后执行:
> >>>>>>>>
> >>>>>>>> python 64.py
> >>>>>>>>
> >>>>>>>> 试试。
> >>>>>>>>
> >>>>>>>> 2005/7/25, Weiming Yin <yinwm at 163.com>:
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>> 好象不是,
> >>>>>>>>> 我现在吧他放到一个单独的目录比如c:\a
> >>>>>>>>> 也不行
> >>>>>>>>> 我看了一下c:\tmp\
> >>>>>>>>> 没法现什么可运行的,或者dll之类的文件
> >>>>>>>>> 如果我进入到c:\tmp
> >>>>>>>>> c:\tmp>64.py ...
> >>>>>>>>> 可以运行
> >>>>>>>>> 如果是在其他的目录
> >>>>>>>>> 比如c:\
> >>>>>>>>> c:\>c:\tmp\64.py ...
> >>>>>>>>> 就回有错误,这是为什么呢
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>> limodou wrote:
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>>> 你的c:\bin目录下可能有一些与系统base64冲突的文件,找一找。
> >>>>>>>>>>
> >>>>>>>>>> 2005/7/25, Weiming Yin <yinwm at 163.com>:
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>> 我刚刚写了一个简单的python程序
> >>>>>>>>>>> 写的时候放在c:\tmp目录下
> >>>>>>>>>>> 程序上面写了#!/usr/bin/env python
> >>>>>>>>>>> 这个程序在c:\tmp运行的正常
> >>>>>>>>>>> 但是当我吧他放到c:\bin下的时候,运行的时候给我报错
> >>>>>>>>>>> Traceback (most recent call last):
> >>>>>>>>>>>   File "64.py", line 3, in ?
> >>>>>>>>>>>     from base64 import *
> >>>>>>>>>>>   File "c:\Python24\lib\base64.py", line 19, in ?
> >>>>>>>>>>>     # Standard Base64 encoding
> >>>>>>>>>>> NameError: name 'encodestring' is not defined
> >>>>>>>>>>>
> >>>>>>>>>>> 我引用了base64 module
> >>>>>>>>>>> 这是为什么啊
> >>>>>>>>>>>
> >>>>>>>>>>> _______________________________________________
> >>>>>>>>>>> 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
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>> ------------------------------------------------------------------------
> >>>>>>>>
> >>>>>>>> _______________________________________________
> >>>>>>>> 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
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>>>
> >>>>>> --
> >>>>>> simple is good
> >>>>>>
> >>>>>> _______________________________________________
> >>>>>> 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
> >>>>>
> >>>>>
> >>>>>
> >>>>
> >>>
> >>> ------------------------------------------------------------------------
> >>>
> >>> _______________________________________________
> >>> 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
> >
> 
> 
> 


-- 
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年07月26日 星期二 09:32

Weiming Yin yinwm at 163.com
Tue Jul 26 09:32:23 HKT 2005

明白了,多谢

limodou wrote:
> pyc是运行py时由python自动编译出来的字节码文件,这样python在运行时实际上装入的是pyc文件,因此它与py文件是独立的,只不过由python自动来维护这个pyc文件,比如你的py文件发生了变化,python会自动再次进行编译。而且python在导入一个模块时是有一定的顺序的,在命令行下,你可以打印
> sys.path看一看。一般当前目前是最前的,而且python在导
> 入一个模块时是严格按照sys.path的顺序来导入的,因此先找你当前目录下是否有base64.py或base64.pyc或base64.pyo都可以,然后再到其它目录中查找。
>
>
> 2005/7/26, Weiming Yin <yinwm at 163.com>:
>   
>> 这里就还有一个问题了,为什么pyc没有删除就会有错误呢?
>> py 和 pyc
>> 可以单独存在么?
>>
>> limodou wrote:
>>     
>>> 原来如此。
>>>
>>> 2005/7/26, Weiming Yin <yinwm at 163.com>:
>>>
>>>       
>>>> 开始叫做base64,结果有问题
>>>> 我把名字改成64了
>>>> 但是base64。pyc没删除
>>>>
>>>>
>>>>
>>>> limodou wrote:
>>>>
>>>>         
>>>>> 我看你写的不是64.py吗?怎么是base64.py. 晕
>>>>>
>>>>> 2005/7/26, Weiming Yin <yinwm at 163.com>:
>>>>>
>>>>>
>>>>>           
>>>>>> 果然如
>>>>>>
>>>>>> Bruce Wang<number5 at gmail.com>
>>>>>>
>>>>>> 老兄所说。
>>>>>> 开始的名字叫做base64,现在把名字改了,就好了
>>>>>> 多谢
>>>>>>
>>>>>>
>>>>>> limodou wrote:
>>>>>>
>>>>>>
>>>>>>             
>>>>>>> 它不是base64而是64.py。我在自已的器上试过了,没有问题呀。因此还是环境的问题。
>>>>>>>
>>>>>>> 在 05-7-25,Bruce Wang<number5 at gmail.com> 写道:
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>>>>> 自己import 自己?
>>>>>>>> 你在base64.py文件里面 from base64 import *??
>>>>>>>>
>>>>>>>> 把base64.py改成其他文件名看看,注意删掉目录下所有的*.pyc文件
>>>>>>>>
>>>>>>>> On 7/25/05, Weiming Yin <yinwm at 163.com> wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>                 
>>>>>>>>> 还是不行
>>>>>>>>> C:\Program Files\Hansky>python c:\a\base64.py -e 1 1 1
>>>>>>>>> 1  =
>>>>>>>>> Traceback (most recent call last):
>>>>>>>>>   File "c:\a\base64.py", line 2, in ?
>>>>>>>>>     from base64 import *
>>>>>>>>>   File "c:\a\base64.py", line 18, in ?
>>>>>>>>>     print v, " = ", encodestring(v),
>>>>>>>>> NameError: name 'encodestring' is not defined
>>>>>>>>>
>>>>>>>>> limodou wrote:
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>                   
>>>>>>>>>> 不过在windows下你加上:
>>>>>>>>>> #!/usr/bin/env python
>>>>>>>>>> 这句话是没有用的,去掉它。然后执行:
>>>>>>>>>>
>>>>>>>>>> python 64.py
>>>>>>>>>>
>>>>>>>>>> 试试。
>>>>>>>>>>
>>>>>>>>>> 2005/7/25, Weiming Yin <yinwm at 163.com>:
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>                     
>>>>>>>>>>> 好象不是,
>>>>>>>>>>> 我现在吧他放到一个单独的目录比如c:\a
>>>>>>>>>>> 也不行
>>>>>>>>>>> 我看了一下c:\tmp\
>>>>>>>>>>> 没法现什么可运行的,或者dll之类的文件
>>>>>>>>>>> 如果我进入到c:\tmp
>>>>>>>>>>> c:\tmp>64.py ...
>>>>>>>>>>> 可以运行
>>>>>>>>>>> 如果是在其他的目录
>>>>>>>>>>> 比如c:\
>>>>>>>>>>> c:\>c:\tmp\64.py ...
>>>>>>>>>>> 就回有错误,这是为什么呢
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> limodou wrote:
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>                       
>>>>>>>>>>>> 你的c:\bin目录下可能有一些与系统base64冲突的文件,找一找。
>>>>>>>>>>>>
>>>>>>>>>>>> 2005/7/25, Weiming Yin <yinwm at 163.com>:
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>                         
>>>>>>>>>>>>> 我刚刚写了一个简单的python程序
>>>>>>>>>>>>> 写的时候放在c:\tmp目录下
>>>>>>>>>>>>> 程序上面写了#!/usr/bin/env python
>>>>>>>>>>>>> 这个程序在c:\tmp运行的正常
>>>>>>>>>>>>> 但是当我吧他放到c:\bin下的时候,运行的时候给我报错
>>>>>>>>>>>>> Traceback (most recent call last):
>>>>>>>>>>>>>   File "64.py", line 3, in ?
>>>>>>>>>>>>>     from base64 import *
>>>>>>>>>>>>>   File "c:\Python24\lib\base64.py", line 19, in ?
>>>>>>>>>>>>>     # Standard Base64 encoding
>>>>>>>>>>>>> NameError: name 'encodestring' is not defined
>>>>>>>>>>>>>
>>>>>>>>>>>>> 我引用了base64 module
>>>>>>>>>>>>> 这是为什么啊
>>>>>>>>>>>>>
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> 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
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>                         
>>>>>>>>>> ------------------------------------------------------------------------
>>>>>>>>>>
>>>>>>>>>> _______________________________________________
>>>>>>>>>> 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
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>                   
>>>>>>>> --
>>>>>>>> simple is good
>>>>>>>>
>>>>>>>> _______________________________________________
>>>>>>>> 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
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>               
>>>>> ------------------------------------------------------------------------
>>>>>
>>>>> _______________________________________________
>>>>> 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
>>>
>>>       
>>
>>     
>
>
>   
> ------------------------------------------------------------------------
>
> _______________________________________________
> 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年07月26日 星期二 14:02

run_mei run_mei at 163.com
Tue Jul 26 14:02:34 HKT 2005

好啊,我支持一下,一定去!
Spirit Auding 写道:

> 我赞同上海的Pythonors组织一次聚会,技术交流会,不过不知道上海的同仁有
> 多少,而且最近比较热(呵呵,东北人,怕热),不宜聚会……10月份后最好,还
> 能参考以下北京开会的情况,组织上也可以更周全些。
>
> On 7/25/05, *nicran* < nicran at gmail.com nicran at gmail.com>> wrote:
>
>     上海也来组织一次大会吧!
>
>     在 05-7-25,Neo Chan (netkiller)< neo.chen at achievo.com
>     neo.chen at achievo.com>> 写道:
>     > 我也在深圳,地王工作:)
>     >
>     > 珠三角这边工作环境,越来越不如长三角了..很多人流向长三角地区..
>     >
>     > 表现在:
>     > 1,深圳待遇越来越低..销费是上涨的..收入是下降的..
>     > 典型:民工荒.一到五一,十一,过年后就招不到民工了..
>     > 2,深圳劳动纠纷案站全国的5%(很可怕) 我的上家公司至令欠我8000$
>     后来拿公司数码相机低了4000$..哎.哎.哎.
>     > 你要告他可以..没有律师帮你.自己瞎搞能搞死你..请律师最低得
>     4000-5000人家才给办..
>     > 我第一次去法院,没请律师跑了三次..请了三天假600大元没了.打印
>     工商登记表70元. 后去取传票请一天,又没了200元.再开庭1天.一套下
>     来得 1070$..
>     > 注:周五下午法院是不立案的..他们开会.
>     > 你想.我打关司都烦死了..如果换成农民呢??;)
>     > 3,企业管理没人性化..各种方式克扣你的薪水.
>     >
>     >
>     >
>     > Neo Chan (netkiller)
>     > Best Regards, 73! de BG7NYT
>     >
>     > Personal Amateur Radiostations of P.R.China
>     > CQ24 ITU44
>     > ShenZhen,China
>     > Amateur Radio Callsign: BG7NYT
>     > TRX: YAEUS FT-60R Dual Band(144-430)
>     > WATTS: 0.5W, 2.0W, 5.0W
>     > MODE: AM, FM
>     >
>     >
>     >
>     > 我在惠州这边,刚刚搞PYTHON不久,也想和大家见见面!!不过不知道深
>     圳、东莞、惠州这边有没有志同道和的人士?
>     >
>     >
>     > ________________________________
>     >
>     >
>     > 发件人: python-chinese-bounces at lists.python.cn
>     python-chinese-bounces at lists.python.cn>
>     > [mailto: python-chinese-bounces at lists.python.cn
>     python-chinese-bounces at lists.python.cn>] 代表 Gerald
>     > Lee
>     > 发送时间: 2005年7月21日 21:16
>     > 收件人: nEO; python-chinese at lists.python.cn
>     python-chinese at lists.python.cn>
>     > 主题: Re: [python-chinese] [C/BPUG]正式集会倡议
>     >
>     >
>     >
>     > 一定要顶一下!
>     >
>     > 其实这个聚会,记得前年年底还是去年年初的时候,我就提出过,不过那
>     时候准备搞的是珠三角地区的,不过由于响应者很少,最后没有组织成功。
>     这一年来,我的工作非常的忙(不过再过几天,我就走人了),一直是看大
>     家在发言,组织各种活动,很是羡慕。目前Python在深圳的也是有几个了,
>     珠海也有一些,不过好像平时都没有走动,可能和这边的工作压力大一些有
>     关系。看到了北京的兄弟们这么活跃,我也很希望我们珠三角的兄弟也走动
>     走动,见个面,混个脸熟吧。不知道
>     > 我们这边的兄弟们怎么样?
>     >
>     >
>     >
>     > --
>     > My Blog >> http://leejd.cndev.org
>     > My QQ >> 9847243
>     >
>     >
>     > = = = = = = = = = = = = = = = = = = = = = =
>     > _______________________________________________
>     > python-chinese list
>     > python-chinese at lists.python.cn
>     python-chinese at lists.python.cn>
>     > http://python.cn/mailman/listinfo/python-chinese
>     >
>     >
>     >
>     >
>
>     _______________________________________________
>     python-chinese list
>     python-chinese at lists.python.cn python-chinese at lists.python.cn>
>     http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
>
> -- 
> #############################################
> # "your future depends on your dreams." so go to sleep.
> # save water. shower with your girlfriend.
> #
> # Welcom2 : http//blog.csdn.net/auding1900/
> #############################################
>
>------------------------------------------------------------------------
>
>_______________________________________________
>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年07月26日 星期二 14:07

nicran nicran at gmail.com
Tue Jul 26 14:07:18 HKT 2005

哪位老大在上海有条件给大家提供一个会议室,站出来吧!

在 05-7-26,run_mei<run_mei at 163.com> 写道:
> 好啊,我支持一下,一定去!
> Spirit Auding 写道:
> 
> > 我赞同上海的Pythonors组织一次聚会,技术交流会,不过不知道上海的同仁有
> > 多少,而且最近比较热(呵呵,东北人,怕热),不宜聚会……10月份后最好,还
> > 能参考以下北京开会的情况,组织上也可以更周全些。
> >
> > On 7/25/05, *nicran* < nicran at gmail.com nicran at gmail.com>> wrote:
> >
> >     上海也来组织一次大会吧!
> >
> >     在 05-7-25,Neo Chan (netkiller)< neo.chen at achievo.com
> >     neo.chen at achievo.com>> 写道:
> >     > 我也在深圳,地王工作:)
> >     >
> >     > 珠三角这边工作环境,越来越不如长三角了..很多人流向长三角地区..
> >     >
> >     > 表现在:
> >     > 1,深圳待遇越来越低..销费是上涨的..收入是下降的..
> >     > 典型:民工荒.一到五一,十一,过年后就招不到民工了..
> >     > 2,深圳劳动纠纷案站全国的5%(很可怕) 我的上家公司至令欠我8000$
> >     后来拿公司数码相机低了4000$..哎.哎.哎.
> >     > 你要告他可以..没有律师帮你.自己瞎搞能搞死你..请律师最低得
> >     4000-5000人家才给办..
> >     > 我第一次去法院,没请律师跑了三次..请了三天假600大元没了.打印
> >     工商登记表70元. 后去取传票请一天,又没了200元.再开庭1天.一套下
> >     来得 1070$..
> >     > 注:周五下午法院是不立案的..他们开会.
> >     > 你想.我打关司都烦死了..如果换成农民呢??;)
> >     > 3,企业管理没人性化..各种方式克扣你的薪水.
> >     >
> >     >
> >     >
> >     > Neo Chan (netkiller)
> >     > Best Regards, 73! de BG7NYT
> >     >
> >     > Personal Amateur Radiostations of P.R.China
> >     > CQ24 ITU44
> >     > ShenZhen,China
> >     > Amateur Radio Callsign: BG7NYT
> >     > TRX: YAEUS FT-60R Dual Band(144-430)
> >     > WATTS: 0.5W, 2.0W, 5.0W
> >     > MODE: AM, FM
> >     >
> >     >
> >     >
> >     > 我在惠州这边,刚刚搞PYTHON不久,也想和大家见见面!!不过不知道深
> >     圳、东莞、惠州这边有没有志同道和的人士?
> >     >
> >     >
> >     > ________________________________
> >     >
> >     >
> >     > 发件人: python-chinese-bounces at lists.python.cn
> >     python-chinese-bounces at lists.python.cn>
> >     > [mailto: python-chinese-bounces at lists.python.cn
> >     python-chinese-bounces at lists.python.cn>] 代表 Gerald
> >     > Lee
> >     > 发送时间: 2005年7月21日 21:16
> >     > 收件人: nEO; python-chinese at lists.python.cn
> >     python-chinese at lists.python.cn>
> >     > 主题: Re: [python-chinese] [C/BPUG]正式集会倡议
> >     >
> >     >
> >     >
> >     > 一定要顶一下!
> >     >
> >     > 其实这个聚会,记得前年年底还是去年年初的时候,我就提出过,不过那
> >     时候准备搞的是珠三角地区的,不过由于响应者很少,最后没有组织成功。
> >     这一年来,我的工作非常的忙(不过再过几天,我就走人了),一直是看大
> >     家在发言,组织各种活动,很是羡慕。目前Python在深圳的也是有几个了,
> >     珠海也有一些,不过好像平时都没有走动,可能和这边的工作压力大一些有
> >     关系。看到了北京的兄弟们这么活跃,我也很希望我们珠三角的兄弟也走动
> >     走动,见个面,混个脸熟吧。不知道
> >     > 我们这边的兄弟们怎么样?
> >     >
> >     >
> >     >
> >     > --
> >     > My Blog >> http://leejd.cndev.org
> >     > My QQ >> 9847243
> >     >
> >     >
> >     > = = = = = = = = = = = = = = = = = = = = = =
> >     > _______________________________________________
> >     > python-chinese list
> >     > python-chinese at lists.python.cn
> >     python-chinese at lists.python.cn>
> >     > http://python.cn/mailman/listinfo/python-chinese
> >     >
> >     >
> >     >
> >     >
> >
> >     _______________________________________________
> >     python-chinese list
> >     python-chinese at lists.python.cn python-chinese at lists.python.cn>
> >     http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> >
> > --
> > #############################################
> > # "your future depends on your dreams." so go to sleep.
> > # save water. shower with your girlfriend.
> > #
> > # Welcom2 : http//blog.csdn.net/auding1900/
> > #############################################
> >
> >------------------------------------------------------------------------
> >
> >_______________________________________________
> >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
>

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

2005年07月26日 星期二 14:30

Zoom Quiet zoom.quiet at gmail.com
Tue Jul 26 14:30:14 HKT 2005

哈哈哈!!带着投影仪,随便一个星巴克就好的!!!
上海的很好说话的…………

在 05-7-26,nicran<nicran at gmail.com> 写道:
> 哪位老大在上海有条件给大家提供一个会议室,站出来吧!
> 
> 在 05-7-26,run_mei<run_mei at 163.com> 写道:
> > 好啊,我支持一下,一定去!
> > Spirit Auding 写道:
> >
> > > 我赞同上海的Pythonors组织一次聚会,技术交流会,不过不知道上海的同仁有
> > > 多少,而且最近比较热(呵呵,东北人,怕热),不宜聚会……10月份后最好,还
> > > 能参考以下北京开会的情况,组织上也可以更周全些。
> > >
> > > On 7/25/05, *nicran* < nicran at gmail.com nicran at gmail.com>> wrote:
> > >
> > >     上海也来组织一次大会吧!
> > >
> > >     在 05-7-25,Neo Chan (netkiller)< neo.chen at achievo.com
> > >     neo.chen at achievo.com>> 写道:
> > >     > 我也在深圳,地王工作:)
> > >     >
> > >     > 珠三角这边工作环境,越来越不如长三角了..很多人流向长三角地区..
> > >     >
> > >     > 表现在:
> > >     > 1,深圳待遇越来越低..销费是上涨的..收入是下降的..
> > >     > 典型:民工荒.一到五一,十一,过年后就招不到民工了..
> > >     > 2,深圳劳动纠纷案站全国的5%(很可怕) 我的上家公司至令欠我8000$
> > >     后来拿公司数码相机低了4000$..哎.哎.哎.
> > >     > 你要告他可以..没有律师帮你.自己瞎搞能搞死你..请律师最低得
> > >     4000-5000人家才给办..
> > >     > 我第一次去法院,没请律师跑了三次..请了三天假600大元没了.打印
> > >     工商登记表70元. 后去取传票请一天,又没了200元.再开庭1天.一套下
> > >     来得 1070$..
> > >     > 注:周五下午法院是不立案的..他们开会.
> > >     > 你想.我打关司都烦死了..如果换成农民呢??;)
> > >     > 3,企业管理没人性化..各种方式克扣你的薪水.
> > >     >
> > >     >
> > >     >
> > >     > Neo Chan (netkiller)
> > >     > Best Regards, 73! de BG7NYT
> > >     >
> > >     > Personal Amateur Radiostations of P.R.China
> > >     > CQ24 ITU44
> > >     > ShenZhen,China
> > >     > Amateur Radio Callsign: BG7NYT
> > >     > TRX: YAEUS FT-60R Dual Band(144-430)
> > >     > WATTS: 0.5W, 2.0W, 5.0W
> > >     > MODE: AM, FM
> > >     >
> > >     >
> > >     >
> > >     > 我在惠州这边,刚刚搞PYTHON不久,也想和大家见见面!!不过不知道深
> > >     圳、东莞、惠州这边有没有志同道和的人士?
> > >     >
> > >     >
> > >     > ________________________________
> > >     >
> > >     >
> > >     > 发件人: python-chinese-bounces at lists.python.cn
> > >     python-chinese-bounces at lists.python.cn>
> > >     > [mailto: python-chinese-bounces at lists.python.cn
> > >     python-chinese-bounces at lists.python.cn>] 代表 Gerald
> > >     > Lee
> > >     > 发送时间: 2005年7月21日 21:16
> > >     > 收件人: nEO; python-chinese at lists.python.cn
> > >     python-chinese at lists.python.cn>
> > >     > 主题: Re: [python-chinese] [C/BPUG]正式集会倡议
> > >     >
> > >     >
> > >     >
> > >     > 一定要顶一下!
> > >     >
> > >     > 其实这个聚会,记得前年年底还是去年年初的时候,我就提出过,不过那
> > >     时候准备搞的是珠三角地区的,不过由于响应者很少,最后没有组织成功。
> > >     这一年来,我的工作非常的忙(不过再过几天,我就走人了),一直是看大
> > >     家在发言,组织各种活动,很是羡慕。目前Python在深圳的也是有几个了,
> > >     珠海也有一些,不过好像平时都没有走动,可能和这边的工作压力大一些有
> > >     关系。看到了北京的兄弟们这么活跃,我也很希望我们珠三角的兄弟也走动
> > >     走动,见个面,混个脸熟吧。不知道
> > >     > 我们这边的兄弟们怎么样?
> > >     >
> > >     >
> > >     >
> > >     > --
> > >     > My Blog >> http://leejd.cndev.org
> > >     > My QQ >> 9847243
> > >     >
> > >     >
> > >     > = = = = = = = = = = = = = = = = = = = = = =
> > >     > _______________________________________________
> > >     > python-chinese list
> > >     > python-chinese at lists.python.cn
> > >     python-chinese at lists.python.cn>
> > >     > http://python.cn/mailman/listinfo/python-chinese
> > >     >
> > >     >
> > >     >
> > >     >
> > >
> > >     _______________________________________________
> > >     python-chinese list
> > >     python-chinese at lists.python.cn python-chinese at lists.python.cn>
> > >     http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > >
> > >
> > >
> > > --
> > > #############################################
> > > # "your future depends on your dreams." so go to sleep.
> > > # save water. shower with your girlfriend.
> > > #
> > > # Welcom2 : http//blog.csdn.net/auding1900/
> > > #############################################
> > >
> > >------------------------------------------------------------------------
> > >
> > >_______________________________________________
> > >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
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
[Time is unimportant, only life important!]

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

2005年07月27日 星期三 17:58

Hoxide Ma hoxide_dirac at yahoo.com.cn
Wed Jul 27 17:58:16 HKT 2005

自做主张, 在Woodpecker上开了页面, 

SPUG筹划 ~~

http://wiki.woodpecker.org.cn/moin/SPUG




		
___________________________________________________________ 
雅虎邮箱超强增值服务-2G超大空间、pop3收信、无限量邮件提醒 
http://cn.mail.yahoo.com/mail_alert/promo1.html

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

2005年07月27日 星期三 19:47

Zoom Quiet zoom.quiet at gmail.com
Wed Jul 27 19:47:28 HKT 2005

好哪!!!
啄木鸟是开放的,每个人都有权建立自个儿的空间!
建议链接入CPUG 主页面中,

有一定内容了,就将正式文档,活动记录什么的发布到我们的CPUG 门户中哪!


在 05-7-27,Hoxide Ma<hoxide_dirac at yahoo.com.cn> 写道:
> 自做主张, 在Woodpecker上开了页面,
> 
> SPUG筹划 ~~
> 
> http://wiki.woodpecker.org.cn/moin/SPUG
> 
> 
> 
> 
> 
> ___________________________________________________________
> 雅虎邮箱超强增值服务-2G超大空间、pop3收信、无限量邮件提醒
> http://cn.mail.yahoo.com/mail_alert/promo1.html
> 


-- 
[Time is unimportant, only life important!]

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号