首页 > 2016年02月13日 > 全部分享
php fread buffer问题
Hereisasmallcodeonhowtoreadthefolderanddownloadallitsfiles:<?php $host=‘localhost‘;$port=22;$username=‘username‘;$password=‘password‘;$remoteDir=‘/must/be/the/complete/folder/path‘;$localDir=‘/can/be/the/relative/or/absolute/local/path‘;if(!function_exis..
分类:Web开发   时间:2016-02-13 23:16:02    收藏:0  评论:0  赞:0  阅读:469
bash脚本之二(语法+测试)
脚本文件格式:第一行,顶格:#!/bin/bash#!/bin/bash前面不能有任何字符或空白字符,空白行更是不行。称之为shebang标记为以bash来执行。让内核调用解释器来运行,而不是当作二进制来执行。目录:一、顺序执行二、条件测试三、算术运算四、选择执行五、循环执行六、数组使用七..
分类:其他   时间:2016-02-13 23:15:22    收藏:0  评论:0  赞:0  阅读:839
定时任务Runnable
说明:最近做cms想本地修改模板,然后把最新的模板内容存到数据中,所以想到Runnable写个定时任务;思路:每隔一分钟查看模板是否有改动,如果有改变执行保存到数据库中;定时任务核心代码:packagecom.aih.common.utils;importjava.util.concurrent.Executors;importjava.util..
分类:其他   时间:2016-02-13 23:15:11    收藏:0  评论:0  赞:0  阅读:319
move语义笔记
classA { public: A(A&&a):m_a(a.m_a) { std::cout<<"movecontruct:"<<m_a<<endl; } A(constA&a):m_a(a.m_a) { std::cout<<"copycontruct:"<<m_a<<endl; } A() { std::cout<<"contruct:"<<m_a<<endl; } A(i..
分类:其他   时间:2016-02-13 23:15:01    收藏:0  评论:0  赞:0  阅读:452
第21讲: 偏函数(Partially applied function)实战详解
偏函数,也叫部分应用函数,就是调用的时候,只传入函数的部分参数。先举个例子就很容易明白了。objectPartialAppliedFunction{ defmain(args:Array[String]):Unit={ valpart_sum=sum(1,_:Int,3) println(part_sum(2)) } defsum(a:Int,b:Int,c:Int)=a+b+c }我们定义了一个函数..
分类:移动平台   时间:2016-02-13 23:14:51    收藏:0  评论:0  赞:0  阅读:507
【C语言】break,continue的区别
break:(1)永久结束循环,下一条执行的是正常结束循环时的下一条语句。(2)对于while语句,使用break,循环就会永久结束。(3)对于for语句,使用break,便终止不再执行for语句,开始执行for语句之后的语句。continue:(1)结束当前循环,结束后开始再判断是否满足循环条件。(2)对于..
分类:编程语言   时间:2016-02-13 23:14:41    收藏:0  评论:0  赞:0  阅读:443
ANDROID 6.0大舞台(1):从交互设计到UI代码开发
ANDROID6.0大舞台(1):从交互设计到UI代码开发by高煥堂2016/2/13一、交互的视觉设计与模型图面对复杂的交互情境一个交互设计师如何有效思考用户与(电脑)系统之间的交互呢?通常大家会最关注于:用户的操作流程,也就是用户与系统的对话(Dialog)流程。然而,在这个对会流程常常很..
分类:移动平台   时间:2016-02-13 23:14:21    收藏:0  评论:0  赞:0  阅读:448
lnmp一键编译安装的脚本
echo"Itwillinstalllnmp." sleep1 ##checklastcommandisOKornot. check_ok(){ if[$?!=0] then echo"Error,Checktheerrorlog." exit1 fi } ##getthearchiveofthesystem,i686orx86_64. ar=`arch` ##closeseliux sed-i‘s/SELINUX=enforcing/SELINUX=disabled/‘/etc/selinux/confi..
分类:其他   时间:2016-02-13 23:14:11    收藏:0  评论:0  赞:0  阅读:651
第22讲: Scala中的闭包实战详解
闭包是函数,它的返回值取决于此函数之外声明一个或多个变量的值。假设,我们想写一个函数f(x),该函数的返回值取决于变量i。伪代码为f(x)=x+i我们尝试着写写这个函数scala>deff(x:Int)=x+i <console>:10:error:notfound:valuei deff(x:Int)=x+i很明显,i没有声明,那..
分类:其他   时间:2016-02-13 23:14:00    收藏:0  评论:0  赞:0  阅读:422
Eclipse中装tomcat插件
首先你要有eclipse1、下载tomcat对eclipse插件,下载地址:http://www.eclipsetotale.com/tomcatPlugin.html。2、解压,得到如图复制到eclipse目录下的plugs目录下。3、重启eclipse,看到!不过还没完。4、选择eclipse--》Windows--》preferences--》tomcat配置:5、配置完成后..
分类:系统服务   时间:2016-02-13 23:13:50    收藏:0  评论:0  赞:0  阅读:433
android自动弹出软键盘(输入键盘)
searchEditView.setFocusable(true); searchEditView.setFocusableInTouchMode(true); searchEditView.requestFocus(); Timer timer = new Timer(); timer.sched
分类:移动平台   时间:2016-02-13 23:12:49    收藏:0  评论:0  赞:0  阅读:449
LeetCode 303. Range Sum Query - Immutable
求数组nums[i,j]的和 思路:另开一sum数组,sum[i]为nums[0,i]的和,所以nums[i,j] = sum[j] - sum[i-1] 1 class NumArray { 2 public: 3 vector<int> sum; 4 NumArray(vector<int> &
分类:其他   时间:2016-02-13 23:12:19    收藏:0  评论:0  赞:0  阅读:335
【HDOJ】4355 Party All the Time
好久没做过三分的题目了。 1 /* 4355 */ 2 #include <iostream> 3 #include <sstream> 4 #include <string> 5 #include <map> 6 #include <queue> 7 #include <set> 8 #inclu
分类:其他   时间:2016-02-13 23:12:08    收藏:0  评论:0  赞:0  阅读:431
点分治练习: boatherds
【题面】 求一颗树上距离为K的点对是否存在 输入数据 n,m 接下来n-1条边a,b,c描述a到b有一条长度为c的路径 接下来m行每行询问一个K 输出数据 对于每个K每行输出一个答案,存在输出“AYE”,否则输出”NAY”(不包含引号) 数据范围 对于30%的数据n<=100 对于60%的数据n<=
分类:其他   时间:2016-02-13 23:11:58    收藏:0  评论:0  赞:0  阅读:450
leetcode22. Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "
分类:其他   时间:2016-02-13 23:11:48    收藏:0  评论:0  赞:0  阅读:395
eclipse主题设置
1.在这个网站下载主题:eclipsecolorthemes.org 2.选择一个自己喜欢的主题的EPF文件下载。 3.然后在File—>import中找到General—>Preferences,选择之前下载的epf文件—>Finish
分类:系统服务   时间:2016-02-13 23:11:38    收藏:0  评论:0  赞:0  阅读:330
Atitit.业务系统的新特性 开发平台 新特性的来源总结
Atitit.业务系统的新特性 开发平台 新特性的来源总结 1.1. 语言新特性(java c# php js python lisp c++ oc swift ruby go dart1 1.2. 流行lib、frmawork 新特性 jdk clr framework 新特性 (jq Servl
分类:其他   时间:2016-02-13 23:11:28    收藏:0  评论:0  赞:0  阅读:388
Atitit.mysql 5.0 5.5  5.6 5.7  新特性 新功能
Atitit.mysql 5.0 5.5 5.6 5.7 新特性 新功能 1. MySQL 5.6 5 大新特性1 1.1. 优化器的改进1 1.2. InnoDB 改进1 1.3. 使用 memcached API 直接访问 NoSQL2 1.4. 更好的复制2 1.5. Performance 
分类:数据库技术   时间:2016-02-13 23:11:18    收藏:0  评论:0  赞:0  阅读:291
yii2 学习中
属性: public function __get($name) // 这里$name是属性名 { $getter = 'get' . $name; // getter函数的函数名 if (method_exists($this, $getter)) { return $this->$getter(
分类:其他   时间:2016-02-13 23:11:08    收藏:0  评论:0  赞:0  阅读:216
freeswitch编译
debian的包太老了,添加新源 echo "deb http://files.freeswitch.org/repo/deb/debian/ jessie main" > /etc/apt/sources.list.d/freeswitch.list wget -O - http://files.
分类:其他   时间:2016-02-13 23:10:47    收藏:0  评论:0  赞:0  阅读:570
444条   1 2 3 4 ... 23 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!