码迷,mamicode.com
首页 > 2015年12月02日 > 全部分享
ELK 集中日志分析 windows部署实战
一步步来1.下载软件Elasticsearch:https://download.elasticsearch.org/...p/elasticsearch/2.0.0/elasticsearch-2.0.0.zipLogstash:https://download.elastic.co/logsta...
分类:Windows程序   时间:2015-12-02 18:21:44    阅读次数:754
ViewPager与android.support.design.widget.TabLayout双向交互联动切换
通常,android.support.design.widget.TabLayout与Android的ViewPager联合使用,实现与ViewPager的切换与联动。(1)比如,当用户手指触摸选择TabLayout中的某一项时候,ViewPager应当自动切换跳转到相应的Page页面;(2)同样,...
分类:移动开发   时间:2015-12-02 18:18:54    阅读次数:245
C++实现离散余弦变换
C++实现离散余弦变换写在前面到目前为止已经阅读了相当一部分的网格水印等方面的论文了,但是论文的实现进度还没有更上,这个月准备挑选一些较为经典的论文,将其中的算法实现。在实现论文的过程中,发现论文中有用到一些空域转频率域的算法。因此也就想到了实现一下离散余弦变换。虽然本文的代码和网上很多已有的代码很...
分类:编程语言   时间:2015-12-02 18:18:22    阅读次数:218
Kendo UI
Kendo UI is an HTML5, jQuery-based framework for building modern web apps.The framework features lots of UI widgets, a rich data visualization framewo...
分类:其他好文   时间:2015-12-02 18:20:40    阅读次数:107
ceph优秀博文
rgw根据rgw用户来分pool存放数据http://cephnotes.ksperis.com/blog/2014/11/28/placement-pools-on-rados-gw源码相关http://my.oschina.net/u/2271251/blog?disp=2&p=1&catalo...
分类:其他好文   时间:2015-12-02 18:19:01    阅读次数:121
Cheatsheet: 2015 11.01 ~ 11.30
Golang Roadomatic: Node vs. Go Quick Guide to Golang for Java Developers 3 Go Gotchas Web Choosing a Front End Framework: Angular vs. Ember vs. React ...
分类:其他好文   时间:2015-12-02 18:20:47    阅读次数:188
springMVC中@RequestParam注解的用法
springMVC中@RequestParam注解用在Controller层获解析、提取参数,当然你也可以用request.getParameter("name")来获取参数,而@RequestParam注解接收参数有几种不同的写法。1、test(String name)像正常的方法接收参数,不.....
分类:编程语言   时间:2015-12-02 18:18:18    阅读次数:185
dispatch_release & dispatch_retain
sdk6.0以前不管arc或者none-arc都需要手动retain和release GCD 对象。sdk6.0以后GCD对象可以有arc处理。不需要手动retain和release。#if !OS_OBJECT_USE_OBJC //这个宏是在sdk6.0之后才有的,如果是之前的,则OS_OBJE...
分类:其他好文   时间:2015-12-02 18:18:52    阅读次数:114
sql server不同排序规则的数据库间字段的比较
sql server 排序规则
分类:数据库   时间:2015-12-02 18:16:53    阅读次数:166
一个友元函数的例子
//friend function example source code//role of friend function.#include using namespace std;class x{ protected: int x1; public: x(int a1):x1(a1){}...
分类:其他好文   时间:2015-12-02 18:17:57    阅读次数:119
nodejs操作excel并配合edatagrid使用
nodejs读取文件夹下子文件(夹)名称:/** * 查询tmp文件夹下子文件夹名称 */router.post("/tmpList", function (req, res) { fs.readdir("./public/tmp", function (err, files) { ...
分类:Web程序   时间:2015-12-02 18:16:29    阅读次数:255
使用wget -i下载多个文件
使用wget-i下载多个文件命令:wget-ifilelist.txt说明:首先,保存一份下载链接文件cat>filelist.txturl1url2url3url4
分类:其他好文   时间:2015-12-02 18:14:14    阅读次数:217
iOS错误:AFNetworking Error Domain=NSURLErrorDomain Code=-999
iOS错误:AFNetworking Error Domain=NSURLErrorDomain Code=-999
分类:移动开发   时间:2015-12-02 18:16:32    阅读次数:6167
JS入门学习,编写一个简易月历
//今天最头疼的地方在于 getElementsByClassName()的 [] ~~//错了N遍后只能说有点点头绪,如果不加[] 查找的就是全部吧 加上[]能精确控制的标签或者class简易年历 1JAN 2FEB 3MAR 4APP ...
分类:Web程序   时间:2015-12-02 18:16:21    阅读次数:241
移动端居中的办法
.container { background-color: #eee; height: 200px;}.img { display: inline-block; width: 64px; height: 64px; background-color: g...
分类:移动开发   时间:2015-12-02 18:15:49    阅读次数:163
PyCharm光标变粗
不知大家有没有遇到这种情况,在PyCharm写代码时,光标变粗了,并且按退格键会删除编写的内容。(如图)原因:光标进入了改写状态。解决方法:按一下鼠标Insert键就好了。是不是很简单
分类:其他好文   时间:2015-12-02 18:13:49    阅读次数:199
希尔排序
#include#includevoid shellSort(int r[],int len);int main(void){ int r[] = {45,20,80,40,26,58,66,70}; shellSort(r,8); system("PAUSE");}void shellSor...
分类:编程语言   时间:2015-12-02 18:12:07    阅读次数:136
1192条   上一页 1 ... 21 22 23 24 25 26 27 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!