码迷,mamicode.com
首页 >  
搜索关键字:tftp ssh python    ( 151994个结果
Python IDE: Eclipse + PyDev
依次下载 Python、Django(并安装好)、JAVA、Eclipse、Eclipse 中文语言包(http://www.eclipse.org/babel/downloads.php)、PyDev(http://sourceforge.net/projects/pydev/)。 Ecli...
分类:编程语言   时间:2014-05-26 15:49:16    阅读次数:283
这两天学习perl,总结的一些东西!
我们老大给了我三本书,让我学习下perl,昨天看了一天,今天给整理了下,两天的成果展现,没有什么脚本的基础,之前也就是看过python一点点,没用过!还有一些没有测试过,没什么时间了,还得再看看最重要的模式匹配----先上一部分。想想perl毕竟是一门语言,没有实战,还是不行!所以继续努力哦。。。。...
分类:其他好文   时间:2014-05-26 15:39:02    阅读次数:896
python模块与包加载机制
模块的搜索路径:When a module namedspamis imported, the interpreter searches for a file namedspam.pyin the current directory, and then in the list of director...
分类:编程语言   时间:2014-05-26 15:09:11    阅读次数:367
[leetcode]Recover Binary Search Tree @ Python
原题地址:https://oj.leetcode.com/problems/recover-binary-search-tree/题意:Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree...
分类:编程语言   时间:2014-05-26 13:25:43    阅读次数:261
python安装zlib一直无效
一直按网上的方法:1.先安装apt-get install zlib1g-dev2.重新安装python(3.3):即是./configure 再make再make install始终没有解决掉问题!最后发现,还需要再链接一次:#ln -s /usr/local/python3.3/bin/pyth...
分类:编程语言   时间:2014-05-26 12:35:01    阅读次数:298
rsync 配合 ssh 传输文件,避免防火墙阻挡
在防火墙阻挡rsync端口的情况下使用,而且绕开了rsync的认证机制,直接使用ssh的认证:rsync -avz --delete -e ssh remoteuser@remotehost:/remote/dir /this/dir/
分类:其他好文   时间:2014-05-26 12:06:23    阅读次数:194
ssh登陆ubuntu开始较慢
Justaddtheparameter"UseDNSno"on/etc/ssh/sshd_configsudo service ssh restart来自为知笔记(Wiz)
分类:其他好文   时间:2014-05-26 11:27:50    阅读次数:220
高可用,高性能,高扩展性 web服务
存储:文件存储: FastDFS数据库: MySQL(集群, mster, Slave读写分离),缓存: Redis, Memcache前端:Jquery, Angular框架:python django
分类:Web程序   时间:2014-05-26 11:16:56    阅读次数:240
[leetcode]Validate Binary Search Tree @ Python
原题地址:https://oj.leetcode.com/problems/validate-binary-search-tree/题意:检测一颗二叉树是否是二叉查找树。解题思路:看到二叉树我们首先想到需要进行递归来解决问题。这道题递归的比较巧妙。让我们来看下面一棵树: ...
分类:编程语言   时间:2014-05-26 10:48:19    阅读次数:291
[leetcode]Same Tree @ Python
原题地址:https://oj.leetcode.com/problems/same-tree/题意:判断两棵树是否是同一棵树。解题思路:这题比较简单。用递归来做。首先判断两个根节点的值是否相同,如果相同,递归判断根的左右子树。代码:# Definition for a binary tree n....
分类:编程语言   时间:2014-05-26 10:30:17    阅读次数:289
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!