码迷,mamicode.com
首页 > 2016年12月13日 > 全部分享
《利用python进行数据分析》读书笔记--第四章 numpy基础:数组和矢量计算
http://www.cnblogs.com/batteryhp/p/5000104.html 第四章 Numpy基础:数组和矢量计算 第一部分:numpy的ndarray:一种多维数组对象 实话说,用numpy的主要目的在于应用矢量化运算。Numpy并没有多么高级的数据分析功能,理解Numpy和面 ...
分类:编程语言   时间:2016-12-13 09:57:35    阅读次数:380
怎么在Beyond Compare中删除表格中的列表数据
Beyond Compare是一款用于文件及文件夹比较的软件,不仅可以快速比较出两个文件夹之间的不同之处,还可以详细比较文件之间的内容差异。 ...
分类:其他好文   时间:2016-12-13 09:57:03    阅读次数:171
Centos开机自动执行shell脚本启动tomcat服务器
有时候需要在Centos系统启动之后自动完成项目的启动,项目部署在tomcat中时,如果Centos关机后开机,各个项目也就已经被停掉了,然后需要自己一个一个的手动去开启各个项目对应的tomcat服务器,想想都比较麻烦,那么如何才能实现,当Centos启动之后,项目就自动也跟着启动了呢..
分类:系统相关   时间:2016-12-13 08:20:27    阅读次数:202
shell脚本练习(12.12)
写一个脚本,先创建文件夹,进入文件夹,然后利用循环在文件夹里创建连续的文件思路:1.创建指定文件夹,并进入该文件夹下2.指定一个变量值为0,让此变量做循环处理3.每循环一次创建一个文档一直到循环结束vimcreate.sh#!/bin/bash#writtenbylizheng#aboutcreatefilecd~mkdirte..
分类:系统相关   时间:2016-12-13 08:20:44    阅读次数:195
【Qt学习笔记】11.自定义控件 Customize the Widget
一、窗口绘制——基本方法自定义窗口:Qt里允许自定义窗口控件,使之满足特殊的要求:1、可以修改其显示,自行绘制2、可以呈现动态效果3、可以添加事件,支持鼠标和键盘操作自定义的控件可以直接在QtDesigner中使用,可以直接加到父窗口里。步骤:1、新建一个类,继承于QWidget..
分类:其他好文   时间:2016-12-13 08:19:36    阅读次数:372
AsyncTask机制详解
AsyncTask是Android提供的一个轻量级异步任务机制,使用AsyncTask可以方便的执行异步任务,并将结果更新到main thread。AsyncTask中是通过Handler机制来让wo...
分类:其他好文   时间:2016-12-13 08:16:56    阅读次数:339
五种常见表达句子间关系的词汇
托福口语句子之间的关系多种多样,常见的有:并列关系、因果关系、递进关系、转折关系和相互解释关系。 Women could and did play a part in this process of settlement. Iceland, for instance, was uninhabited ...
分类:其他好文   时间:2016-12-13 08:17:38    阅读次数:254
Leetcode: Repeated Substring Pattern
这道题应该没法用DP等解,只能brute force 或者 KMP(为深究) KMP解法未研究,https://discuss.leetcode.com/topic/67590/java-o-n ...
分类:其他好文   时间:2016-12-13 08:15:42    阅读次数:187
[CSS] Conditionally Apply Styles Using Feature Queries @supports
While browsers do a great job of ignoring styles they don’t understand, it can be useful to provide different sets of styles depending on a browser’s ...
分类:移动开发   时间:2016-12-13 08:15:21    阅读次数:243
SourceTree 跳过初始设置
SourceTree 安装之后需要使用账号登陆以授权,以前是可以不登陆的,但是现在是强制登陆。 虽然是免费授权,但是碰上不可抗力因素,登陆不是很方便,这里记录一下跳过这个初始化的步骤。 安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建 新建 accounts.json 文件 ...
分类:其他好文   时间:2016-12-13 08:14:12    阅读次数:765
如何用命令将本地项目上传到git
1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件 3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明 4 ...
分类:Web程序   时间:2016-12-13 08:14:24    阅读次数:204
Leetcode 160. Intersection of two linked lists
Write a program to find the node at which the intersection of two singly linked lists begins. For example, the following two linked lists: begin to in ...
分类:其他好文   时间:2016-12-13 08:14:10    阅读次数:235
Leetcode #1. Two Sum
key: build and search Hash table. following up questions: Overflow value for target? 用Hash table记录之间的状态,思想类似DP def twoSum(nums, target): d = {} n = le... ...
分类:其他好文   时间:2016-12-13 08:15:53    阅读次数:203
Leetcode #167. Two Sum II - Input array is sorted
Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function ...
分类:其他好文   时间:2016-12-13 08:15:19    阅读次数:236
瞎搞ng-bind-html和ng-bind实现
声明:这里纯属学习,瞎搞,真正的实现原理并非如此 demo.html html/tpl01.html html/tpl02.html 下期预告:瞎搞react:ReactDom.render() ...
分类:Web程序   时间:2016-12-13 08:14:36    阅读次数:497
[JS Compose] Enforce a null check with composable code branching using Either
We define the Either type and see how it works. Then try it out to enforce a null check and branch our code. Now, we try to make Box more useful. We w ...
分类:Web程序   时间:2016-12-13 08:13:38    阅读次数:263
python3--内置函数
# Auther: Aaron Fanprint(abs(-10)) #取绝对值print(all([0,'a',3])) #如果参数中有一个不为真,就返回False。(非0即真)print(any([0,'a',3])) #如果参数中有一个为真,就返回True#返回一个可打印的对象字符串方式表示, ...
分类:编程语言   时间:2016-12-13 08:12:50    阅读次数:233
1029条   上一页 1 ... 35 36 37 38 39 40 41 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!