码迷,mamicode.com
首页 > 2017年09月23日 > 全部分享
MUI底部导航栏切换效果
首先是html代码: js引用别忘了,引用MUI的js文件 下面是js代码: ...
分类:其他好文   时间:2017-09-23 10:33:27    阅读次数:137
python3.4自带的pip怎样修改默认源
看官方文档https://pip.pypa.io/en/latest/user_guide.html#configurationwindows下是%HOME%\pip\pip.ini,没有就自己创建一个。我的配置[global] respect-virtualenv=true download-cache=f:/Python/pip/cachelog-file=f:/Python/pip/pip.log [install]timeout=30find-links=..
分类:编程语言   时间:2017-09-23 10:33:20    阅读次数:451
从混乱无序到标准统一,可信区块链如何扭转乾坤?
9月4日,ICO被监管叫停,并被定义为非法公开融资行为。一时风光无限的首次货币发行被打入牢底,永世不得见天日。 ...
分类:其他好文   时间:2017-09-23 10:33:14    阅读次数:184
29. Divide Two Integers
public class Solution { public int divide(int dividend, int divisor) { boolean isNegtive=dividend0||dividend>0&&divisor=ldivisor) { if(ldividend>=l) {... ...
分类:其他好文   时间:2017-09-23 10:33:05    阅读次数:158
WebApp的自动测试工具: protractor和selenium
Protractor是Selenium的扩充,支持Angularjs element(by.css('my-css')).click(); 一、用by的各种Locator定位元素 选中1个元素: element(by.id('myid'));element(by.css('.myclass')); ...
分类:移动开发   时间:2017-09-23 10:32:55    阅读次数:146
lintcode159- Find Minimum in Rotated Sorted Array- medium
Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum element. ...
分类:其他好文   时间:2017-09-23 10:32:33    阅读次数:147
mySQL表格内容用代码添加
通过代码对表格内容操作: 1、添加数据insert into Info values('p009','张三',1,'n001','2016-8-30 12:9:8') ; 给特定的列添加数据insert into Info (code,name) values('p010','李四');自增长列的处 ...
分类:数据库   时间:2017-09-23 10:32:04    阅读次数:210
lintcode447- Search in a Big Sorted Array- medium
Given a big sorted array with positive integers sorted by ascending order. The array is so big so that you can not get the length of the whole array d ...
分类:其他好文   时间:2017-09-23 10:31:39    阅读次数:135
搭建一个DNS服务器群
本节索引DNS简介DNS解析过程DNS资源记录DNS主从原理搭建完整的DNS架构调试结果错误分析本篇小结DNS简介DNS(DomainNameSystem,域名系统),是Internet上作为域名和IP地址相互映射的一个分布式数据库,在这个解析库中定义了某个域名和IP的对应关系。通过DNS的解析,我们不用去..
分类:其他好文   时间:2017-09-23 10:31:33    阅读次数:183
web自动化8-selenium简单操作方法
1. 控制窗口大小 form selenium import webdriver driver = webdriver.Chrome() driver.get("http://www.baidu.com") print("设置浏览器宽480,高800显示") driver.set_window_si ...
分类:Web程序   时间:2017-09-23 10:30:49    阅读次数:210
lintcode585- Maximum Number in Mountain Sequence- medium
Given a mountain sequence of n integers which increase firstly and then decrease, find the mountain top. Example Given nums = [1, 2, 4, 8, 6, 3] retur ...
分类:其他好文   时间:2017-09-23 10:30:03    阅读次数:115
P3183 [HAOI2016]食物链
题目描述 如图所示为某生态系统的食物网示意图,据图回答第1小题现在给你n个物种和m条能量流动关系,求其中的食物链条数。物种的名称为从1到n编号M条能量流动关系形如a1 b1a2 b2a3 b3......am-1 bm-1am bm其中ai bi表示能量从物种ai流向物种bi,注意单独的一种孤立生物 ...
分类:其他好文   时间:2017-09-23 10:29:52    阅读次数:96
session与cookie
session 在【服务器】端保存数据, cookie在【客户端】保存数据 session 存储的数据类型是【任意类型】 cookies只存放【String】 在使用服务器端的回话管理时,通过 【sessionId】 方法表示会话 在jsp中,cookie的生命周期是【累计】的,session的生命 ...
分类:其他好文   时间:2017-09-23 10:29:46    阅读次数:136
nginx的安装
详见查看nginx.org 一、nginx安装 nginx安装方法有两种: yum安装 测试安装系统 centos6.5 yum源: 安装版本为最新版 源码安装 二、nginx相关配置 可以查看nginx模板的默认配置: main配置段: 配置指令的类别: 正常运行必备的配置: 优化性能的配置: 用 ...
分类:其他好文   时间:2017-09-23 10:28:55    阅读次数:135
傻瓜函数式编程
傻瓜函数式编程FP 说明转载,github.com/justinyhuang2006年6月19日,星期一 开篇我们这些码农做事都是很拖拉的。每天例行报到后,先来点咖啡,看看邮件还有RSS订阅的文章。然后翻翻新闻还有那些技术网站上的更新,再过一遍编程论坛口水区里那些无聊的论战。最后从头把这些再看一次以... ...
分类:其他好文   时间:2017-09-23 10:28:45    阅读次数:175
28. Implement strStr()
public class Solution { public int strStr(String haystack, String needle) { int[] next=new int[needle.length()]; generateNextArray(next,needle); int i... ...
分类:其他好文   时间:2017-09-23 10:28:36    阅读次数:118
Mybatis框架
对数据库的增删改查: 映射文件...Mapper.xml: java文件...Test.java: 一对一,一对多的查询: 一对一查询:(映射文件) 一对多:(映射文件) 动态SQL语句: 映射文件...Mapper.xml: 接口...Mapper.xml: 测试类: ...
分类:其他好文   时间:2017-09-23 10:28:22    阅读次数:186
1396条   上一页 1 ... 72 73 74 75 76 77 78 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!