Python论坛  - 讨论区

标题:[python-chinese] 感谢Zoom Quiet免费给C3CRM提供trac/svn服务

2005年09月27日 星期二 23:36

ding jianting dfar2008 at gmail.com
Tue Sep 27 23:36:24 HKT 2005

Hi,python兄弟们
大家好。
这几天我一直在为C3CRM项目组寻找免费的trac/svn
hosting(绝对是好软件),发email给国外一个站点,他竟然让我每个月出$15,C3CRM是开源的,哪里有钱啊,今天无望之中我就随便问了一
下我google talk上好友--搞python的Zoom
Quiet,看他能否提供trac/svn服务,谁知他竟然满口答应了,我头疼的事终于解决了,真是太好了,所以为了感谢Zoom,我也想给啄木鸟社区做
点事情,如果哪位python兄弟需要python虚拟主机和域名,可以找我(国际域名40元/年,代理价41元),好像在做广告,希望兄弟们不要介意!

--
________________________________________
C3CRM项目组
不要做没有把握的事情!(Java , PHP)
SugarCRM中文版-vTigerCRM中文版:http://www.c3crm.com
blog:http://blog.c3crm.com
bbs:http://forum.c3crm.com
group:http://group.c3crm.com
-----------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050927/8475dd9f/attachment.html

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

2005年09月27日 星期二 23:48

Kai kai0001 at 163.com
Tue Sep 27 23:48:17 HKT 2005

为了避免连续长时间看电脑,能让可怜的眼睛休息一下,我凑合出这个python程序(完全新手啊,汗,大伙给改改。而且还缺少unix上的播放命令)。

每次一开机,我就让它一直运行,每过60分钟,它就随机选一首曲子播放,提醒歇会,看个三级写真照片什么的。

#!/usr/bin/python
# -*- coding: gb2312 -*-

import sys
import time
import random
import os

directory = 'c:\\downloads\\music'  # 歌曲文件夹

def play_soundfile(filename):  # 启动播放器
    if sys.platform == 'win32':
        import win32api
        win32api.ShellExecute(0, "open", filename, None, "", 0)
    else:
        print "some *nix commands here to play a sound file" # 需要加上在unix 上播放的命令

fileList =  [os.path.join(directory, os.path.normcase(f)) for f in os.listdir(directory)]  # get a list of all music files

while 1:
    print "--------------------------------------"
    
    fileName = random.choice(fileList)
    print fileName

    play_soundfile(fileName)

    time.sleep(1800)
    print '30 minutes have passed. ', time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.localtime())
    time.sleep(1800)







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

2005年09月28日 星期三 08:46

limodou limodou at gmail.com
Wed Sep 28 08:46:03 HKT 2005

在 05-9-27,ding jianting<dfar2008 at gmail.com> 写道:
> Hi,python兄弟们
>  大家好。
>  这几天我一直在为C3CRM项目组寻找免费的trac/svn
> hosting(绝对是好软件),发email给国外一个站点,他竟然让我每个月出$15,C3CRM是开源的,哪里有钱啊,今天无望之中我就随便问了一
> 下我google talk上好友--搞python的Zoom
> Quiet,看他能否提供trac/svn服务,谁知他竟然满口答应了,我头疼的事终于解决了,真是太好了,所以为了感谢Zoom,我也想给啄木鸟社区做
> 点事情,如果哪位python兄弟需要python虚拟主机和域名,可以找我(国际域名40元/年,代理价41元),好像在做广告,希望兄弟们不要介意!
>

好事。


--
I like python!
My Donews Blog: http://www.donews.net/limodou

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

2005年09月28日 星期三 09:45

nicran nicran at gmail.com
Wed Sep 28 09:45:30 HKT 2005

看到你的广告了,能给我一些详细的信息么?同时能够给我看一个例子么?

多谢了

在 05-9-28,limodou<limodou at gmail.com> 写道:
> 在 05-9-27,ding jianting<dfar2008 at gmail.com> 写道:
> > Hi,python兄弟们
> >  大家好。
> >  这几天我一直在为C3CRM项目组寻找免费的trac/svn
> > hosting(绝对是好软件),发email给国外一个站点,他竟然让我每个月出$15,C3CRM是开源的,哪里有钱啊,今天无望之中我就随便问了一
> > 下我google talk上好友--搞python的Zoom
> > Quiet,看他能否提供trac/svn服务,谁知他竟然满口答应了,我头疼的事终于解决了,真是太好了,所以为了感谢Zoom,我也想给啄木鸟社区做
> > 点事情,如果哪位python兄弟需要python虚拟主机和域名,可以找我(国际域名40元/年,代理价41元),好像在做广告,希望兄弟们不要介意!
> >
>
> 好事。
>
>
> --
> I like python!
> My Donews Blog: http://www.donews.net/limodou
>
> _______________________________________________
> 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年09月28日 星期三 09:46

Zoom Quiet zoom.quiet at gmail.com
Wed Sep 28 09:46:28 HKT 2005

在 05-9-28,limodou<limodou at gmail.com> 写道:
> 在 05-9-27,ding jianting<dfar2008 at gmail.com> 写道:
> > Hi,python兄弟们
> >  大家好。
> >  这几天我一直在为C3CRM项目组寻找免费的trac/svn
> > hosting(绝对是好软件),发email给国外一个站点,他竟然让我每个月出$15,C3CRM是开源的,哪里有钱啊,今天无望之中我就随便问了一
> > 下我google talk上好友--搞python的Zoom
> > Quiet,看他能否提供trac/svn服务,谁知他竟然满口答应了,我头疼的事终于解决了,真是太好了,所以为了感谢Zoom,我也想给啄木鸟社区做
> > 点事情,如果哪位python兄弟需要python虚拟主机和域名,可以找我(国际域名40元/年,代理价41元),好像在做广告,希望兄弟们不要介意!
> >
>
> 好事。
>
咳咳咳!!投之以桃李,报之以琼瑶哪!!
兄弟客气了!不过是慷他人之慨――啄木鸟的主机资源是新浪HD提供的,
未来会更加规模性的支持中国自由软件项目的开发的……!
trac 很早就安装了,但是因为有MoinMoin 组织项目,而且很多人对 SVN 不太信任,一直没有使用起来,
有 C3CRM 这样活跃项目加入也有利于啄木鸟社区提高trac 管理水平是也乎!!

trac 内置了很多项目管理功能!
大家提出需要我才能设定使用哪!!
现在先将wiki 内容翻译,组织一下子吧!
把bugtrack 的ticker 功能先使用起来,这是与版本管理一样不能缺少的管理行为哪!


以上!
ps.
不过C3CRM 是PHP 项目,建议另开Group 讨论,
pps.
Py 主机,域名?!唉呀呀?!有多大空间的?
大家都申请一个哪!作自个儿的Python Blog,不依赖于各种各样令人失望的BSP
是也乎是也乎!!

我先申请一个 zoomquiet.org

> _______________________________________________
> 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年09月28日 星期三 16:02

ding jianting dfar2008 at gmail.com
Wed Sep 28 16:02:55 HKT 2005

大家好,Zoom Quiet,nicran

Zoom和nican问我详细的虚拟主机信息,看来兄弟们对python虚拟主机还蛮感兴趣的,那我就再群发一次,不需要Python虚拟主机的请原谅!
虚拟主机信息如下:
虚拟主机可放在香港和美国,40元/500MB/月
80元/1500MB/月,500MB和1500MB包括网站空间、数据库空间、邮箱空间,40元/国际顶级域名/年。虚拟主机可放在香港和美国,30天
内无条件退款(域名不设退款),并提供365*7*24全球服务(英文),保证1 小时内回复。服务器均使用 HP
ProLiant系列,并全都是摆放在世界级的互联网数据中心
(i-Advantage)。服务器支持PHP4,Perl,TCL,Ruby,Python以及MySQL数据库,同时免费支持SSL。网通和电信用户访问都很快,没有互通问题!以上价格只针对python兄弟!

网站还没做好,详细信息如下:
 Basic Features 基本服务详情 500. 一般方案 <http://localhost/host/order.php?per=1> 1500.
专业方案 <http://localhost/host/order.php> 
总空间(包括网站空间、数据库空间、Email空间)<http://localhost/host/hosting.php#> 500
MB 1500 MB  网站流量 <http://localhost/host/hosting.php#> 7 GB / 月 21 GB / 月
免费子域名 <http://localhost/host/hosting.php#> 7 个 21 个 
MySQL数据库<http://localhost/host/hosting.php#> 2
个 6 个  免费停泊域名 <http://localhost/host/hosting.php#> 3 个 9 个 
Sub-FTP帐户<http://localhost/host/hosting.php#>
9 个 27 个  Unix平台 <http://localhost/host/hosting.php#>  
控制面板(英文版)<http://localhost/host/hosting.php#>
24/7/365全球在线技术支持(英语) <http://localhost/host/hosting.php#>  
支持Frontpage2002<http://localhost/host/hosting.php#>
私人CGI-BIN <http://localhost/host/hosting.php#>   安全加密通讯协议
(SSL)<http://localhost/host/hosting.php#>   支持Perl,
TCL, Ruby, Python 及PHP4语言 <http://localhost/host/hosting.php#>   自定义错误页面(404
Page) <http://localhost/host/hosting.php#>  
密码保护网页管理<http://localhost/host/hosting.php#>
网站流量分析报告 <http://localhost/host/hosting.php#>   支持Server Side Includes 技术
(SSI) <http://localhost/host/hosting.php#>   Email Capabilities Email功能
Email帐号 <http://localhost/host/hosting.php#> 无限 无限  病毒邮件过滤保证 (Anti-virus
protection) <http://localhost/host/hosting.php#>   垃圾邮件过滤保证 (Anti-spam
protection) <http://localhost/host/hosting.php#>  
在线邮件Webmail服务<http://localhost/host/hosting.php#>  
接收邮件服务器(POP3);发送邮件伺服务器(SMTP);
IMAP功能 <http://localhost/host/hosting.php#>  
邮件转发和自动回复<http://localhost/host/hosting.php#>
无限 无限  设定Email地址来接收所有寄往您的域名但不存在的邮件地址的邮件(Catch all
emails)<http://localhost/host/hosting.php#>   邮件列表(mailing
lists) <http://localhost/host/hosting.php#> 20 个 60 个 
自行管理Email设定和分配邮箱空间<http://localhost/host/hosting.php#>   Pre-installed
Scripts 已安装的网站应用程序   Hit Counter 计数器
<http://localhost/host/hosting.php#>   FormMail
应用程序 <http://localhost/host/hosting.php#>   Guestbook 访客留言簿
<http://localhost/host/hosting.php#>  
网站内搜索引擎程序<http://localhost/host/hosting.php#>
C3CRM网站、论坛、blog是用的1500M方案,如果你需要测试python和测试速度,请用一下ftp和地址测试:
访问地址http://python.c3crm.com,
ftp:www.c3crm.com <http://www.c3crm.com>
username/password:python/c3crm123
贝宝帐号:dfar2008 at gmail.com(推荐使用)
招商银行帐号:0021 18397258
汇款后,发email给我,告诉我你要申请的域名和方案,我帮你开通,也可以使用已有域名,但要更改你的DNS,如果申请新的域名,请自己先检查是否被注册,谢谢。

--
________________________________________
C3CRM项目组
不要做没有把握的事情!(Java , PHP)
SugarCRM中文版-vTigerCRM中文版:http://www.c3crm.com
blog:http://blog.c3crm.com
bbs:http://forum.c3crm.com
group:http://group.c3crm.com
-----------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050928/19e56708/attachment.htm

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

2005年09月28日 星期三 17:45

Crest alang.yl at gmail.com
Wed Sep 28 17:45:07 HKT 2005

好。好。真是好。
我一直找的python主机终于找到地儿生根了。
 建议大家来个团购,一起学习python网站的开发、配置、维护。
 如何?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050928/a778033e/attachment.html

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

2005年09月29日 星期四 09:19

Qi Cheng qi.chengqi at gmail.com
Thu Sep 29 09:19:02 HKT 2005

在05-9-28,Crest <alang.yl at gmail.com> 写道:
>
> 好。好。真是好。
> 我一直找的python主机终于找到地儿生根了。
>  建议大家来个团购,一起学习python网站的开发、配置、维护。
>  如何?
>

赞成赞成。团购先算我一个。

--
Best regards

Qi Cheng (程 启)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050929/267b4183/attachment.html

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

2005年09月29日 星期四 09:26

martin.xus martin.xus at gmail.com
Thu Sep 29 09:26:13 HKT 2005

俺也报个名先 o_o

On 9/29/05, Qi Cheng <qi.chengqi at gmail.com> wrote:
>
>
>
> 在05-9-28,Crest <alang.yl at gmail.com> 写道:
> >
> >  好。好。真是好。
> > 我一直找的python主机终于找到地儿生根了。
> >  建议大家来个团购,一起学习python网站的开发、配置、维护。
> >  如何?
> >
>
> 赞成赞成。团购先算我一个。
>
> --
> Best regards
>
> Qi Cheng (程启)
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050929/8a7c470a/attachment.html

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

2005年09月29日 星期四 17:51

ding jianting dfar2008 at gmail.com
Thu Sep 29 17:51:12 HKT 2005

hi,nicran
你收到我发的虚拟主机的信息了吗?
如果需要我做什么,麻烦你告诉我,呵呵!

在05-9-28,nicran <nicran at gmail.com> 写道:
>
> 看到你的广告了,能给我一些详细的信息么?同时能够给我看一个例子么?
>
> 多谢了
>
> 在 05-9-28,limodou<limodou at gmail.com> 写道:
> > 在 05-9-27,ding jianting<dfar2008 at gmail.com> 写道:
> > > Hi,python兄弟们
> > > 大家好。
> > > 这几天我一直在为C3CRM项目组寻找免费的trac/svn
> > >
> hosting(绝对是好软件),发email给国外一个站点,他竟然让我每个月出$15,C3CRM是开源的,哪里有钱啊,今天无望之中我就随便问了一
> > > 下我google talk上好友--搞python的Zoom
> > >
> Quiet,看他能否提供trac/svn服务,谁知他竟然满口答应了,我头疼的事终于解决了,真是太好了,所以为了感谢Zoom,我也想给啄木鸟社区做
> > >
> 点事情,如果哪位python兄弟需要python虚拟主机和域名,可以找我(国际域名40元/年,代理价41元),好像在做广告,希望兄弟们不要介意!
> > >
> >
> > 好事。
> >
> >
> > --
> > I like python!
> > My Donews Blog: http://www.donews.net/limodou
> >
> > _______________________________________________
> > 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
>
>
>


--
________________________________________
C3CRM项目组
不要做没有把握的事情!(Java , PHP)
SugarCRM中文版-vTigerCRM中文版:http://www.c3crm.com
blog:http://blog.c3crm.com
bbs:http://forum.c3crm.com
group:http://group.c3crm.com
-----------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050929/c023fd68/attachment.html

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

2005年09月29日 星期四 23:25

Jacob Fan jacob.fan at gmail.com
Thu Sep 29 23:25:35 HKT 2005

On 9/28/05, ding jianting <dfar2008 at gmail.com> wrote:
>  虚拟主机信息如下:
>  虚拟主机可放在香港和美国,40元/500MB/月 80元/1500MB/月,500MB和1500MB包括网站空间、数据库空间、邮箱空间,40元/国际顶级域名/年。虚拟主机可放在香港和美国,30天 内无条件退款(域名不设退款),并提供365*7*24全球服务(英文),保证1 小时内回复。服务器均使用 HP ProLiant系列,并全都是摆放在世界级的互联网数据中心 (i-Advantage)。服务器支持PHP4,Perl,TCL,Ruby,Python以及MySQL数据库,同时免费支持SSL。网通和电信用户访问都很快,没有互通问题!以上价格只针对python兄弟!
这里的支持Python,指的是支持Python写的CGI脚本?

>                   安全加密通讯协议                    (SSL)
支持https?

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号