浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 281 282 283 284 285 286 287 288 289 ··· 630 下一页

2012年11月25日

摘要: MetaWeblog API in Java at indiWiz.comMetaWeblog API in Javawith one commentRecently we were assigned with the task of writing code to remotely insert an entry to a blog. And we had to select the Blogg... 阅读全文
posted @ 2012-11-25 09:21 lexus 阅读(621) 评论(0) 推荐(0)

摘要: ws-xmlrpc - Apache XML-RPCApache XML-RPC is a Java implementation of XML-RPC, a popular protocol that uses XML over HTTP to implement remote procedure calls.Version 3 of Apache XML-RPC is still compli... 阅读全文
posted @ 2012-11-25 09:21 lexus 阅读(195) 评论(0) 推荐(0)

摘要: Pebble - OverviewWhat is Pebble?Pebble is a lightweight, open source, Java EE blogging tool. It's small, fast and feature-rich with unrivalled ease of installation and use. Blog content is stored as X... 阅读全文
posted @ 2012-11-25 09:17 lexus 阅读(176) 评论(0) 推荐(0)

2012年11月24日

摘要: mlzboy/nlpserverCreate a new repository on the command linetouch README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/mlzboy/nlpserver.git git pus... 阅读全文
posted @ 2012-11-24 03:40 lexus 阅读(238) 评论(0) 推荐(0)

2012年11月23日

摘要: ZINTERSTORE — Redis 命令参考ZINTERSTORE destination numkeys key [key ...] [WEIGHTS weight [weight ...]] [AGGREGATE SUM|MIN|MAX]计算给定的一个或多个有序集的交集,其中给定 key 的数量必须以 numkeys 参数指定,并将该交集(结果集)储存到 destination 。默认情况... 阅读全文
posted @ 2012-11-23 15:01 lexus 阅读(548) 评论(0) 推荐(0)

2012年11月22日

摘要: 这个代码测试可行 Python发送带附件的Email | 代码回音 Python发送带附件的Email 2010-10-07 前面介绍了使用Python发送Email,不过发送的只是文本,那如何发送附件呢,比如文本、视频等。这里我们需要python提供的email模块。 emial模块用来处理邮件消息,包括MIME和其他基于RFC 2822 的消息文档。使用这些模块来定义邮件的内容,是非常简单的。... 阅读全文
posted @ 2012-11-22 13:31 lexus 阅读(323) 评论(0) 推荐(0)

摘要: Sendmail with Attachment script - 徐明的博客Sendmail with Attachment script四月 24th, 2008This is the python script for linux sendmail programe or with smtp server.You can use it free.It's simple ,but suppor... 阅读全文
posted @ 2012-11-22 11:05 lexus 阅读(406) 评论(0) 推荐(0)

摘要: 18.1.11. email: Examples — Python v2.7.3 documentationemail: Examples¶Here are a few examples of how to use the email package to read, write, and send simple email messages, as well as more complex MI... 阅读全文
posted @ 2012-11-22 11:02 lexus 阅读(207) 评论(0) 推荐(0)

摘要: 用python 发送邮件 - xiaofeng1982的日志 - 网易博客用python 发送邮件 2010-10-31 12:17:38|分类: python |标签: |字号大中小订阅一直再找linux下 用shell 发送邮件的方法。找了好长时间也没有找到,最终决点用python 的email模块发送邮件,在网上找了一下代码。转自:李卫公的长安城http://blog.donews.com... 阅读全文
posted @ 2012-11-22 10:58 lexus 阅读(294) 评论(0) 推荐(0)

摘要: 11,14s/mail_/self.mail_/g 阅读全文
posted @ 2012-11-22 10:37 lexus 阅读(147) 评论(0) 推荐(0)

摘要: 11月25日(周日)下午在奥林匹克森林公园白领协会相亲活动,这次是纯相亲专场噢!还有专业婚恋咨询师到场给大家配对哈,心动了没?那就一起行动起来吧!信息如下: 聚会时间:11月25日下午2:00-5:00 (最好早点去哦,地方稍微有些难找,1点半左右在森林公园南门集合一起走,别迟到哦)聚会地址: 奥林匹克森林公园南园洼里湖畔 皇明微排馆 电话:010-64529307 联系人:鞠双188107506... 阅读全文
posted @ 2012-11-22 10:13 lexus 阅读(303) 评论(0) 推荐(0)

2012年11月21日

摘要: Python list of class attributes - Pythonimportinspect classaClass: aMember=1 defaFunc(): pass inst=aClass() printinspect.getmembers(inst) 阅读全文
posted @ 2012-11-21 15:42 lexus 阅读(238) 评论(0) 推荐(0)

摘要: Python list of class attributes - Pythonimportinspect classaClass: aMember=1 defaFunc(): pass inst=aClass() printinspect.getmembers(inst) 阅读全文
posted @ 2012-11-21 15:41 lexus 阅读(230) 评论(0) 推荐(0)

摘要: Python类中的私有成员(私有函数,私有变量) [Python俱乐部]Python类中的私有成员(私有函数,私有变量)Python中默认的成员函数,成员变量都是公开的(public),而且python中没有类似public,private等关键词来修饰成员函数,成员变量。在python中定义私有变量只需要在变量名或函数名前加上 ”__“两个下划线,那么这个函数或变量就会为私有的了。在内部,pyt... 阅读全文
posted @ 2012-11-21 15:39 lexus 阅读(904) 评论(0) 推荐(0)

摘要: Wombat vim colorscheme – customized - ChronosboxWombat vim colorscheme – customizedby Felipe 'chronos' Prenholato on Sunday, 30 October/2011, under Colorscheme, Tips, VIM - Vi IMprovededNota: Hi my de... 阅读全文
posted @ 2012-11-21 11:01 lexus 阅读(260) 评论(0) 推荐(0)

摘要: vim配置文件收集(作为c/c++和脚本开发的环境) - StamHe的专栏 - 博客频道 - CSDN.NET vim配置文件收集(作为c/c++和脚本开发的环境) 分类: Linux系统配置 2009-03-04 23:28 3430人阅读 评论(0) 收藏 举报vim配置文件收集(作为c/c++和脚本开发的环境)http://forum.ubuntu.org.cn... 阅读全文
posted @ 2012-11-21 10:58 lexus 阅读(244) 评论(0) 推荐(0)

摘要: twilight256.vim - A color scheme that imitates the Twilight theme for TextMate : vim onlinetwilight256.vim : A color scheme that imitates the Twilight theme for TextMate script karmaRating 25/13, ... 阅读全文
posted @ 2012-11-21 10:34 lexus 阅读(340) 评论(0) 推荐(0)

摘要: vi/vim使用进阶: 乱花渐欲迷人眼 – 语法高亮 | 易水博客下载截止到2005年3月所有colorscheme的汇总,你可以在其中找到一个自己喜欢的。安装colorscheme时,只需要把它们拷贝到.vim/color目录下就行了。 阅读全文
posted @ 2012-11-21 10:24 lexus 阅读(173) 评论(0) 推荐(0)

摘要: vim配色方案colorscheme设置_Web开发_web前端_web后端_linux_ubuntu学习_百度空间vim配色方案colorscheme设置记录一下备忘:编辑当前用户目录下的.vimrc文件,在里面添加配色设置:cdsudo vi .vimrc添加:colorscheme desert查看系统当前版本vim所预装的配色文件:cd /usr/share/vim/vim72/color... 阅读全文
posted @ 2012-11-21 10:11 lexus 阅读(304) 评论(0) 推荐(0)

摘要: vimcolorschemetest - Vim Color Scheme Test - Google Project HostingSummaryVim Color Scheme Test showcases the color schemes that are available in vim.org using examples in several file types.Last Upda... 阅读全文
posted @ 2012-11-21 10:08 lexus 阅读(154) 评论(0) 推荐(0)

上一页 1 ··· 281 282 283 284 285 286 287 288 289 ··· 630 下一页