03 2017 档案
摘要:先来看看样子。 html源码: css代码:
阅读全文
摘要:ll 命令列出的信息更加详细,有时间,是否可读写等信息 ll命令和ls -l命令结果区别: 上面结果说明: 各个字段的含义: 文件属性 文件数 拥有者 所属的group 文件大小 建档日期 文件名 drwx 2 Guest users 1024 Nov 21 21:05 Mail -rwx--x--
阅读全文
摘要:解决步骤: 在master上, 1、git add . 2、git commit 3、新建分支,并且checkout到此分支,重新提交
阅读全文
摘要:\ svn 删除所有的 .svn文件 find . -name .svn -type d -exec rm -fr {} \; linux之cp/scp命令+scp命令详解 名称:cp 使用权限:所有使用者 使用方式: cp [options] source dest cp [options] so
阅读全文
摘要:https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-8-on-ubuntu-16-04 Introduction Apache Tomcat is a web server and servlet
阅读全文
摘要:http://xlsxwriter.readthedocs.io/example_hello_world.html The simplest possible spreadsheet. This is a good place to start to see if the XlsxWriter mo
阅读全文
摘要:map()函数接收两个参数,一个是函数,一个是序列,map将传入的函数依次作用到序列的每个元素,并把结果作为新的list返回。 举例说明,比如我们有一个函数f(x)=x%2,要把这个函数作用在一个list [1, 2, 3, 4, 5, 6, 7, 8, 9]上,就可以用map()实现 #使用lam
阅读全文
摘要:原文地址:http://www.cnblogs.com/wbJson/p/5655537.html 下载地址:http://download2.navicat.com/download/navicat100_mysql_en.tar.gz ,这个是老版本,新版本莫名原因安装无反应 1. 下载 nav
阅读全文
摘要:Introduction MySQL is an open-source database management system, commonly installed as part of the popular LAMP(Linux, Apache, MySQL, PHP/Python/Perl)
阅读全文
摘要:tar -c: 建立压缩档案 -x:解压 -t:查看内容 -r:向压缩归档文件末尾追加文件 -u:更新原压缩包中的文件 这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。-z:有gzip属性的 -j:有bz2属性的 -Z:
阅读全文