白菜粉条汤
make life remembered
  • 首页
  • 分类
    • 随语
    • 杂志
    • 外贸
    • 技术
    • 图片
    • 电影
    • 音乐
    • 饮食
    • 大学
  • 关于
类别:

技术

技术

vbs批量重命名脚本

by 曾经沧海 2009年12月3日

功能::假设有个文件夹的所有文件名称前面有个AA_开头,这个小脚本的作用就是删除这个AA_。只是简单的小脚本,如果还有多个”_”字符的时候,重复使用有可能会全部都删除了。

使用:dir填写实际文件所在目录;target填写要分割的字符,保存为.VBS文件,双击运行。做好备份,因为是直接修改原始文件!

dir=("C:\Users\海军\Desktop\104CANON")
target=("_")

Set fso = CreateObject("Scripting.FileSystemObject")
set rfd=fso.getfolder(dir)
set fs=rfd.files
for each f in fs

        If InStr(f.name,target) Then
            length=Len(f.name)
            star=InStr(f.name,target)
            newname=Right(f.name,length-star)
            f.name=newname
        End If

Next

2009年12月3日 0 评论 1.3K 阅读
技术

Virtuemart Menu

by 曾经沧海 2009年11月26日

The vmart module just outputs links instead of an unordered list like they should.
You’ll need to edit /templates/jp_techpraise_1.5/css/theme1.css (or the theme you’re using)
and add this

/*
* Virtuemart Menu
*/
.moduletable_content a{
display:block;
padding:2px 2px;
border-bottom:1px dotted #C8CACA;
//border-top:1px dotted #FDFDFD;
//color:#666;
text-decoration:none;
}

.moduletable_content a:hover {
background-color:#F0F0F0;
}

a#active_menu  {
color:#cc0000;
background-color:#b02500;
}

2009年11月26日 0 评论 1K 阅读
技术

一位高人的QTP学习笔记

by 曾经沧海 2009年9月22日

转贴一个高人的QTP笔记供大家学习。
文章比较长,一共三部分:
1、连接数据库查询例子,无参数化
//查询收文操作,通过数据库查询记录数是否正确
//1、输出记录数值,例如78条 2、获取输出的记录数值 3、连接数据库,查询记录数
4、输出记录数值和从数据库中查询记录数值,相比较,相等则成功,不等则失败
Browser(“湛江信息化测试登录”).Page(“湛江东兴石油企业有限公司办公自动化系统”).Frame(“mainFrame”).Output CheckPoint(“78”)
Dim mm
‘mm=DataTable.GlobalSheet.GetParameter(“mainFrameOutput_Text_out”).Value
//注释,获取datatable值与DataTable(“mainFrameOutput_Text_out”, dtGlobalSheet)一致
mm=DataTable(“mainFrameOutput_Text_out”, dtGlobalSheet)
MsgBox mm
Dim res,cmd,sql
Set res=createobject(“adodb.recordset”)
Set cmd=createobject(“adodb.command”)
Cmd.activec
Cmd.CommandType = 1
sql=”select count(*) from oa_receivebumf  where BUMFNAME like ‘%收文测试%'”
‘sql=”select  count(*)  from oa_receivebumf  where BUMFNAME='”&nn&”‘”
//注释,sql语句,等于时sql语句
// sql=”select  count(*)  from oa_receivebumf  where BUMFNAME like ‘%nn%'” //like时sql语句
Cmd.CommandText = sql
Set res = Cmd.Execute()
//msgbox res(“name”)
MsgBox res(0)
If   Cstr(res(0)) = Cstr(mm)Then
Reporter.ReportEvent micPass, “test”,   “查询成功”
else
Reporter.ReportEvent micfail, “test”,   “查询失败”
End If
Set res = nothing
Set cmd.ActiveConnection = nothing
Set Cmd= nothing

继续阅读
2009年9月22日 0 评论 1.1K 阅读
技术

How to change the Magento Email Templates

by 曾经沧海 2009年9月2日

You’ll probably know by now that the transactional email templates in Magento are a bit, with respect, “naff”. To edit through the admin will take forever and a day so here’s a couple of useful solutions to help make things easier.

1. Locate the email templates

The Magento email templates are located in (note: “en_US” may change depending on language).

magento\app\locale\en_US\template\email\account_new.html”(24,48):
magento\app\locale\en_US\template\email\admin_password_new.html”(27,73):
magento\app\locale\en_US\template\email\newsletter_subscr_confirm.html”(28,69):
magento\app\locale\en_US\template\email\order_creditmemo.html”(23,63):
magento\app\locale\en_US\template\email\order_creditmemo.html”(75,62):
magento\app\locale\en_US\template\email\order_invoice.html”(23,63):
magento\app\locale\en_US\template\email\order_invoice.html”(75,62):
magento\app\locale\en_US\template\email\order_new.html”(23,63):
magento\app\locale\en_US\template\email\order_new.html”(79,62):
magento\app\locale\en_US\template\email\order_shipment.html”(23,63):
magento\app\locale\en_US\template\email\order_shipment.html”(81,62):
magento\app\locale\en_US\template\email\order_update.html”(26,52):
magento\app\locale\en_US\template\email\password_new.html”(24,41):
magento\app\locale\en_US\template\email\wishlist_share.html”(23,65):

2. Edit your information in

replace alt=”Magento” with alt=”your store name”

replace Magento Demo Store with your store name

replace mailto:magento@varien.com with mailto:email@yourstore.com

replace dummyemail@magentocommerce.com with email@yourstore.com

replace (800) DEMO-STORE with (0800) YOUR STORE NUMBER

replace Monday – Friday, 8am – 5pm PST with your own store opening times and timezone

3. Advanced – Automated Shell Script

Another option would be to create a shell script with all you’re information in which goes through the directories in question and replaces text as we need. Note: You will need your Store View Name and Store Name to match your domain name.

#!/bin/sh
phone=(123)456-7890

find app/locale/en_US/template/email/sales -type f -exec sed -i ’s/alt=”Magento”/alt=”{{var order.getStoreGroupName()}}”/g’ {} \;
find app/locale/en_US/template/email/sales -type f -exec sed -i ’s/Magento Demo Store/{{var order.getStoreGroupName()}} /g’ {} \;
find app/locale/en_US/template/email/sales -type f -exec sed -i ’s/mailto:magento@varien.com/sales@{{var order.getStoreGroupName()}}/g’ {} \;
find app/locale/en_US/template/email/sales -type f -exec sed -i ’s/dummyemail@magentocommerce.com/sales@{{var order.getStoreGroupName()}}/g’ {} \;

find app/locale/en_US/template/email -type f -exec sed -i ’s/alt=”Magento”/alt=”{{var customer.store.name}}”/g’ {} \;
find app/locale/en_US/template/email -type f -exec sed -i ’s/Magento Demo Store/{{var customer.store.name}} /g’ {} \;
find app/locale/en_US/template/email -type f -exec sed -i ’s/mailto:magento@varien.com/sales@{{var customer.store.name}}/g’ {} \;
find app/locale/en_US/template/email -type f -exec sed -i ’s/dummyemail@magentocommerce.com/sales@{{var customer.store.name}}/g’ {} \;

find app/locale/en_US/template/email -type f -exec sed -i “s/(800)DEMO-STORE/$phone/g” {} \;
find app/locale/en_US/template/email -type f -exec sed -i “s/(800)DEMO-NUMBER/$phone/g” {} \;
find app/locale/en_US/template/email -type f -exec sed -i “s/(800) DEMO-NUMBER/$phone/g” {} \;
find app/locale/en_US/template/email -type f -exec sed -i “s/(800) DEMO-STORE/$phone/g” {} \;
find app/locale/en_US/template/email -type f -exec sed -i ’s/Monday – Friday, 8am – 5pm PST/24×7/g’ {} \;
find app/locale/en_US/template/email -type f -exec sed -i ’s/logo_email.gif/logo.gif/g’ {} \;

2009年9月2日 0 评论 999 阅读
技术

MAGENTO Error:: cannot access the connect manager

by 曾经沧海 2009年9月2日

The problem was due to the directory permissions on /downloader (was 775, needed to be 755 and the /downloader/index.php (was 755 needed to be 644).

Also, the magento php.ini changes needed to be added to a custom php.ini in the main directory and /downloader.

2009年9月2日 0 评论 1.1K 阅读
技术

R400换XP 所有驱动程序安装一览表

by 曾经沧海 2009年8月10日

几点提醒:
1. 请您按照驱动排列的顺序依次安装;下载完的驱动程序是一个可执行文件,但是双击后仅是释放文件的过程并未安装,默认释放到C:\DRIVERS\WIN\***目录下,请到文件目录下继续安装。
2. 安装WinXP之前,需要在BIOS中将硬盘改为兼容模式,否则安装时会提示找不到硬盘或蓝屏,修改方法为:开机出现ThinkPad标志时,按F1进入 BIOS—> Config—>Serial ATA (SATA)把AHCI改为Compatibility,然后按F10,选择Y,保存退出。
3. 设备管理中常见的未知设备一般为ACPI电源管理器和TPM安全芯片,如果出现未知设备,请首先尝试安装其驱动。
4. 建议您不要使用GHOST安装系统,因为GHOST安装的系统驱动可能无法正常安装。
5. 如果用GHOST安装系统后“小红帽”不可用,请在设备管理器中删除“鼠标和其它指针设备”下面有感叹号的设备,然后重启系统,小红帽即可使用。

附:详细驱动安装ThinkPad R400驱动程序安装一览表 FOR WINXP CN
1、Intel主板驱动程序(设备管理器中显示为:SM总线控制器):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1221303651950&docTypeID=DOC_TYPE_DRIVER
oss803ww
默认解压路径:C:\DRIVERS\WIN\INTELINF\INFINST_AUTOL.EXE

2、ATI显卡驱动程序(设备管理器中显示为:视频控制器):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1221465455921&docTypeID=DOC_TYPE_DRIVER
7yd119ww
默认解压路径:C:\DRIVERS\WIN\DISPLAY\SETUP.EXE

3、以太网卡驱动程序(设备管理器中显示为:以太网控制器):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1221114426897&docTypeID=DOC_TYPE_DRIVER
7vra19ww
默认解压路径 C:\DRIVERS\WIN\ETHERNET\APPS\SETUP\SETUPBD\Win32\SetupBD.exe

4、Intel (11abgn, abg, bg)无线网卡驱动:(设备管理器中显示为:网络控制器)
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1221197254747&docTypeID=DOC_TYPE_DRIVER
7vwc23ww
默认释放路径C:\DRIVERS\WIN\WLANINT\Autorun.EXE

5、声卡KB888111补丁(设备管理器中显示为:其他设备:PCI-DEVICE)(必须先安装此补丁,否则无法安装声卡和MODEM驱动程序)
http://think.lenovo.com.cn/support/knowledge/detail.aspx?docID=26015&docTypeID=DOC_TYPE_KNOWLEDGE
默认释放路径:点击页面最下方附件文档下载,下载后是一个ZIP文件,先解压再安装即可。注意:
只有先安装KB888111补丁,才能安装声卡和调制解调器驱动。
如果提示系统已经包含该补丁,则不需要安装。

6、声卡(设备管理器中显示为:High Definition Audio总线上的音频设备):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1218539166732&docTypeID=DOC_TYPE_DRIVER
7wa107ww
默认释放路径C:\DRIVERS\WIN\AUDIO\SETUP.EXE

7、调制解调器(设备管理器中显示为:High Definition Audio总线上的调制解调器设备):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1218539706513&docTypeID=DOC_TYPE_DRIVER
7vma07ww
默认释放路径C:\DRIVERS\ModemOM\SETUP.EXE

8、ACPI电源管理器驱动(设备管理器中显示为:未知设备):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1197863947328&docTypeID=DOC_TYPE_DRIVER
7zku03ww
默认释放路径C:\DRIVERS\WIN\IBMPM\SETUP.EXE

9、TPM安全芯片(设备管理器中显示为:未知设备):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1218598176029&docTypeID=DOC_TYPE_DRIVER
7vza11ww
默认释放路径C:\Drivers\Win\TPM\Setup.exe(仅支持Windows XP SP2) ,如果出现安装提示失败,则用设备管理器手动将“未知设备”的驱动指向到C:\Drivers\Win\TPM\TPM\
10、SATA驱动(设备管理器里IDE ATA控制器下的PCI DEVICE)
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1197539101703&docTypeID=DOC_TYPE_DRIVER
7zim53ww
默认释放路径C:\DRIVERS\WIN\IMSM,先打开C:\DRIVERS\WIN\IMSM\PREPARE目录双击install.cmd,然后重启计算机并按F1进入BIOS在Config—>Select Serial ATA (SATA)中把选项改为AHCI,按F10保存退出,进入系统后在设备管理器中IDE ATA控制器下面的PCI DEVICE上点右键选择更新驱动程序,选择指定位置安装,并指定到C:\DRIVERS\WIN\IMSM目录搜索安装即可。
11、安装 THINKPAD SYSTEM UPDATE软件
http://think.lenovo.com.cn/support/tvt/detail.aspx?docID=TV1197274779375&docTypeID=DOC_TYPE_TVT
THINKPAD SYSTEM UPDATE.exe 装完不必运行
12、热键管理软件(HOTKEY):
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1216893127788&docTypeID=DOC_TYPE_DRIVER
7vvu54ww
默认释放路径C:\DRIVERS\WIN\HOTKEY\SETUP.EXE
13、蓝牙
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1216695410663&docTypeID=DOC_TYPE_DRIVER
7vbm02ww
默认释放路径C:\DRIVERS\MSBTooth,2.使用 Fn+F5 打开蓝牙设备。
4.如果提示发现新硬件,点击继续进行安装.
5.将驱动位置指向您驱动解压以后的位置. 6.点击确定.7.按照屏幕提示进行安装.
14、电源管理软件(Power Manager)
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1197863356578&docTypeID=DOC_TYPE_DRIVER
7vu724ww
默认释放路径C:\DRIVERS\W2K\PWRMGR\SETUP.EXE
15、 AMT(设备管理器中的PCI 简易通讯设备)
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1221797559707&docTypeID=DOC_TYPE_DRIVER
7vr109ww
2.双击您下载的驱动程序,驱动会解压缩到硬盘C:\DRIVERS\WIN\AMT.
3.点击开始,选择运行.
4.输入  C:\DRIVERS\WIN\AMT\MEI\SETUP.EXE  点击确定.
5.按照屏幕提示进行安装. 6.安装完成,重新启动计算机.
16、4in1 读卡器(设备管理器中的三个基本系统设备)
http://think.lenovo.com.cn/support/driver/detail.aspx?docID=DR1197358554312&docTypeID=DOC_TYPE_DRIVER
7kss55ww
运行 C:\DRIVERS\WIN\4IN1\SETUP.EXE

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/jeefchen/archive/2009/03/11/3980197.aspx

2009年8月10日 0 评论 1.3K 阅读
技术

关于T400 2765-22G BSOD "Stop 0x0000007B" when doing clean install of Windows XPSP3

by 曾经沧海 2009年8月10日

从国外网站上找的方法:

OK, I managed to install XP SP3 on the machine, but the only way to do this so far is by setting the BIOS option for the SATA to "Compatibility" mode so that it sees the controller as the traditional one, for which Windows XP SP3 has it’s default driver.

I will give below a try ( even though I have tried installing it with an external floppy drive :

http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-70477&velxr-layout=printLenovo

If you do not have a diskette drive, you can install Intel Matrix Storage Manager Driver by the following alternative procedure:

  1. Start the BIOS Setup Utility menu.
  2. Select Config.
  3. Select Serial ATA (SATA).
  4. Select Compatibility.
  5. Install Windows XP and Service Pack 2.
  6. Download Intel Matrix Storage Manager Driver from the Web site and extract the driver to C:\DRIVERS\WIN\IMSM.
  7. Run Intel Matrix Storage Manager Driver. To do this, go to C:\DRIVERS\WIN\IMSM\PREPARE, and double-click install.cmd.
  8. Turn the computer off and then on again.
  9. Start the BIOS Setup Utility menu.
  10. Select Config.
  11. Select Serial ATA (SATA).
  12. Select AHCI.
  13. Start Windows XP. The Welcome to the Found New Hardware Wizard appears.
  14. Click No, not this time and click Next.
  15. Select Install from a list or specific location(Advanced), then click Next.
  16. Select Search for the best driver in these locations. Then select Include this location in the search:, specify the path, C:\DRIVERS\WIN\IMSM, and click Next. The Completing the Found New Hardware Wizard appears.
  17. Click Finish.
  18. When the System Settings Change window appears, click Yes. The computer restarts.

I’ll keep you posted on the outcome of this.

2009年8月10日 1 评论 1.2K 阅读
技术

不用第三方SEF扩展就能实现VirtueMart静态页面

by 曾经沧海 2009年8月10日

Joomla系统实现静态页面有两种方式:
1,系统内置SEF。
2,安装第三方SEF扩展。

可惜系统内置SEF对VirtueMart无效。有人专门做了个router.php,免费的,使得系统内置SEF也支持VirtueMart。
详见:http://extensions.joomla.org/extensions/extension-specific/virtuemart-extensions/7512/details。

2009年8月10日 0 评论 1.1K 阅读
技术

为VirtueMart网店系统增加图片局部放大镜效果(magic zoom)

by 曾经沧海 2009年8月9日

图片局部放大镜效果(magic zoom)见http://www.magictoolbox.com/magiczoom/。

magic zoom非商业用户免费,有适合VirtueMart的,也有适合Zen Cart的。

下载适合VirtueMart的:mod_virtuemart15_magiczoom

2009年8月9日 1 评论 1.3K 阅读
技术

关于域名的工具

by 曾经沧海 2009年6月20日

who.is查询域名注册信息,包括注册域名

instantwordsearch.com/ 是一个提供很简单服务的网站,主要提供快速的单词查询服务。你只需要输入你想要查找单词的部分字母便可以进行查询,你可以限定搜索的字幕是在单词的最前面和最后面。

suggest.name/是一个提供Web2.0域名的在线生成工具。Suggest.name提供了Web2.0网站常用的词根,你可以利用这些Web2.0网站常用的词根进行重新组合,然后找到新的域名组合。

makewords.com/ 域名生成该网站,支持

*域名长度设置 MIN & MAX

*语言设置

*关键词搜索

*首字母及尾字母

*常见后缀及前缀的添加

*快速的注册入口

2009年6月20日 1 评论 1.4K 阅读
加载更多

热门

  • 无线餐饮点菜系统–去年的毕业设计

    2008年9月21日 36 评论 7.6K 阅读
  • Magento设置Paypal支付步骤

    2011年5月29日 1 评论 3.8K 阅读
  • 垃圾

    2017年3月12日 0 评论 2.9K 阅读
  • 记录

    2007年10月6日 0 评论 2.7K 阅读
  • 办公室的两只猫

    2017年12月19日 0 评论 2.6K 阅读

最新

  • 清明回了襄樊了

    2026年4月7日 0 评论 134 阅读
  • 十一月初七

    2025年12月26日 0 评论 286 阅读
  • 无题

    2025年11月28日 0 评论 340 阅读
  • 喝酒

    2025年9月3日 0 评论 497 阅读
  • Zammad登录CSRF token verification failed错误

    2025年6月17日 0 评论 661 阅读

分类

  • 图片 (71)
  • 外贸 (6)
  • 大学 (103)
  • 技术 (76)
  • 杂志 (290)
  • 电影 (13)
  • 资源 (1)
  • 随语 (93)
  • 音乐 (96)
  • 饮食 (3)

归档

  • 2026 年 4 月 (1)
  • 2025 年 12 月 (1)
  • 2025 年 11 月 (1)
  • 2025 年 9 月 (1)
  • 2025 年 6 月 (3)
  • 2025 年 4 月 (1)
  • 2025 年 2 月 (2)
  • 2025 年 1 月 (1)
  • 2024 年 12 月 (2)
  • 2024 年 10 月 (1)
  • 2024 年 9 月 (1)
  • 2024 年 7 月 (1)
  • 2024 年 6 月 (2)
  • 2023 年 9 月 (1)
  • 2023 年 6 月 (1)
  • 2023 年 5 月 (3)
  • 2023 年 4 月 (4)
  • 2023 年 3 月 (3)
  • 2023 年 2 月 (3)
  • 2023 年 1 月 (27)
  • 2021 年 8 月 (2)
  • 2021 年 1 月 (1)
  • 2020 年 3 月 (1)
  • 2019 年 3 月 (1)
  • 2017 年 12 月 (2)
  • 2017 年 3 月 (2)
  • 2011 年 10 月 (3)
  • 2011 年 8 月 (1)
  • 2011 年 7 月 (1)
  • 2011 年 5 月 (1)
  • 2011 年 4 月 (1)
  • 2011 年 1 月 (2)
  • 2010 年 12 月 (1)
  • 2010 年 9 月 (2)
  • 2010 年 8 月 (5)
  • 2010 年 7 月 (1)
  • 2010 年 6 月 (1)
  • 2010 年 5 月 (2)
  • 2010 年 4 月 (3)
  • 2010 年 2 月 (4)
  • 2010 年 1 月 (9)
  • 2009 年 12 月 (3)
  • 2009 年 11 月 (3)
  • 2009 年 9 月 (11)
  • 2009 年 8 月 (6)
  • 2009 年 7 月 (1)
  • 2009 年 6 月 (2)
  • 2009 年 5 月 (7)
  • 2009 年 4 月 (13)
  • 2009 年 3 月 (14)
  • 2009 年 2 月 (2)
  • 2009 年 1 月 (12)
  • 2008 年 12 月 (19)
  • 2008 年 11 月 (1)
  • 2008 年 10 月 (9)
  • 2008 年 9 月 (12)
  • 2008 年 8 月 (5)
  • 2008 年 7 月 (7)
  • 2008 年 6 月 (13)
  • 2008 年 5 月 (4)
  • 2008 年 4 月 (10)
  • 2008 年 3 月 (7)
  • 2008 年 2 月 (7)
  • 2008 年 1 月 (11)
  • 2007 年 12 月 (4)
  • 2007 年 11 月 (8)
  • 2007 年 10 月 (30)
  • 2007 年 9 月 (25)
  • 2007 年 8 月 (29)
  • 2007 年 7 月 (32)
  • 2007 年 6 月 (2)
  • 2007 年 4 月 (1)
  • 2007 年 3 月 (2)
  • 2007 年 2 月 (5)
  • 2007 年 1 月 (7)
  • 2006 年 12 月 (11)
  • 2006 年 11 月 (24)
  • 2006 年 10 月 (13)
  • 2006 年 9 月 (16)
  • 2006 年 8 月 (21)
  • 2006 年 7 月 (18)
  • 2006 年 6 月 (9)
  • 2006 年 5 月 (27)
  • 2006 年 4 月 (44)
  • 2006 年 3 月 (21)
  • 2006 年 2 月 (9)
  • 2006 年 1 月 (6)
  • 2005 年 12 月 (12)
  • 2005 年 11 月 (17)
  • 2005 年 10 月 (44)
  • 2005 年 9 月 (12)

标签

Apple (1) disaster movie (1) engine friendly url (1) extension (1) fuck song (1) ja slide show (1) joomla (8) joomla extension (3) Linkin Park (1) Macbook (1) magento (2) python (3) sef (2) slideshow (1) transformer (1) virtuemart (3) What I've Done (1) 一生何求 (1) 专升本 (4) 刀马旦 (1) 变形金刚 (1) 周慧敏 (2) 学生处 (6) 广告歌 (1) 成龙 (1) 我的大学 (6) 我的大学编年史 (6) 无尽的爱 (1) 樊海军 (6) 物理学系 (6) 物理系 (4) 电子信息工程 (4) 痴心换情深 (1) 神话 (1) 红颜知己 (1) 肇庆 (4) 肇庆学院 (6) 蝴蝶效应 (1) 视频 (1) 计算机系 (4) 谭咏麟 (3) 软件测试 (4) 金喜善 (1) 陈百强 (1) 黎明 (2)
  • 首页
  • 分类
    • 随语
    • 杂志
    • 外贸
    • 技术
    • 图片
    • 电影
    • 音乐
    • 饮食
    • 大学
  • 关于

@2005-2023 - 白菜粉条汤

白菜粉条汤
  • 随语
  • 杂志
  • 资源
  • 外贸
  • 技术
  • 图片
  • 电影
  • 音乐
  • 饮食
  • 大学
登入

保持登录状态,直到我退出

忘记密码了吗?

找回密码

新密码将通过电子邮件发送给您。

收到新密码了吗? Login here