码迷,mamicode.com
首页 > 其他好文
yo angualr-fullstatck 项目打包部署
yoeman使用grunt进行打包部署,直接运行grunt命令即可,期间会对代码进行检查,如果存在不规范的地方jshint会指定出来.grunt会对静态资源进行打包而且对资源文件名进行了MD5作为版本戳.1:修改server/app.js配置文件//process.env.NODE_ENV = pr...
分类:其他好文   时间:2015-08-16 15:09:33    阅读次数:152
vector 的用法
在c++中,vector是一个十分有用的容器,下面对这个容器做一下总结。1 基本操作(1)头文件#include.(2)创建vector对象,vector vec;(3)尾部插入数字:vec.push_back(a);(4)使用下标访问元素,cout::iterator it;for(it=vec....
分类:其他好文   时间:2015-08-16 15:09:28    阅读次数:114
基于MATLAB的IIR滤波器设计与实现
基于MATLAB的IIR滤波器设计与实现 IIR滤波器的设计主要有经典设计法、直接设计法和最大平滑滤波器设计法三种方法。 1、经典设计法是基于模拟滤波器的变换原理,首先根据滤波器的技术指标设计出相应的模拟滤波器,然后再离散化为满足给定技术指标的数字滤波器。对应的工具函数由完全设计函数——butt.....
分类:其他好文   时间:2015-08-16 15:11:18    阅读次数:116
警告:Activity not started, its current task has been brought to the front
Android开发中,控制台(Console)输出警告信息:ActivityManager: Warning: Activity not started, its current task has been brought to the front愿意可能是你的模拟器中还有东西在运行,也就是你要运行...
分类:其他好文   时间:2015-08-16 15:09:47    阅读次数:97
[转]打造自己的LINQ Provider(上):Expression Tree揭秘
概述在.NET Framework 3.5中提供了LINQ 支持后,LINQ就以其强大而优雅的编程方式赢得了开发人员的喜爱,而各种LINQ Provider更是满天飞,如LINQ to NHibernate、LINQ to Google等,大有“一切皆LINQ”的趋势。LINQ本身也提供了很好的扩展...
分类:其他好文   时间:2015-08-16 15:09:25    阅读次数:179
Jenkins搭建
1.添加仓库:sudo wget -O /etc/yum.repos.d/jenkins.repo \ http://jenkins-ci.org/redhat/jenkins.reposudo rpm --import http://pkg.jenkins-ci.org/redhat/jenki....
分类:其他好文   时间:2015-08-16 15:10:11    阅读次数:105
UVa 714 - Copying Books 二分答案
题目链接:714 - Copying Books解题思路具体处理方法见代码/************************************************************** Problem: User: youmi Language: C++ Re...
分类:其他好文   时间:2015-08-16 15:09:04    阅读次数:102
使用Block传值
使用Block的地方很多,其中传值只是其中的一小部分,下面介绍Block在两个界面之间的传值:先说一下思想:首先,创建两个视图控制器,在第一个视图控制器中创建一个UILabel和一个UIButton,其中UILabel是为了显示第二个视图控制器传过来的字符串,UIButton是为了push到第二个界...
分类:其他好文   时间:2015-08-16 15:07:32    阅读次数:115
关于servlet filter
创建一个过滤器实现javax.servlet.Filter接口。package com.lyq;import java.io.IOException;import javax.servlet.Filter;import javax.servlet.FilterChain;import javax.s...
分类:其他好文   时间:2015-08-16 15:08:49    阅读次数:87
notify vs nofifyall
http://stackoverflow.com/questions/37026/java-notify-vs-notifyall-all-over-againDo you want to tell one of the waiting threads that something happened...
分类:其他好文   时间:2015-08-16 15:09:07    阅读次数:132
最常用的设计模式
http://www.cnblogs.com/fora/archive/2011/04/29/2032829.html最常用的设计模式最常用的设计模式设计模式通常是对于某一类的软件设计问题的可重用的解决方案,将设计模式引入软件设计和开发过程,其目的就在于要充分利用已有的软件开发经验。最常用的设计模式...
分类:其他好文   时间:2015-08-16 15:08:56    阅读次数:111
石头剪子布游戏
import randomops = {'s' : 2, 'j' : 1, 'b' : 0}while True: x = raw_input('you>') ss = random.randint(0, 2) for t in ops.iteritems(...
分类:其他好文   时间:2015-08-16 15:08:24    阅读次数:108
UVA10487(二分)
Given is a set of integers and then a sequence of queries. A query gives you a number and asks to ?nd a sum of two distinct numbers from the set, whic...
分类:其他好文   时间:2015-08-16 15:06:46    阅读次数:94
poj2488 A Knight's Journey裸dfs
A Knight's JourneyTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 35868Accepted: 12227DescriptionBackground The knight is getting bored of se...
分类:其他好文   时间:2015-08-16 15:08:14    阅读次数:116
Nth node from the end of a Linked List
Method 1: 先遍历一次获得中长度, 在遍历len-n+1次获得所求nodeMethod 2: 运用双指针, 开始两个指针都指向head, 然后先移动第一个指针, 使其指向第n个node, 然后两个指针一个移动, 当第一个指针移动到尾部时, 第二个node就指向所求nodecode2015-0...
分类:其他好文   时间:2015-08-16 15:06:14    阅读次数:125
CF417D--- Cunning Gena(序列+像缩进dp)
A boy named Gena really wants to get to the “Russian Code Cup” finals, or at least get a t-shirt. But the offered problems are too complex, so...
分类:其他好文   时间:2015-08-16 15:07:04    阅读次数:162
poj 2570 floyd+二进制
二进制真的是个神奇的东西!类似floyd求传递闭包,这里g[i][j]表示i点到j点的状态(即符合条件的公司的集合)。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int N = 201; 7 const...
分类:其他好文   时间:2015-08-16 15:06:04    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!