首页 > 2015年10月03日 > 全部分享
透过寒冬期的O2O,看O2O的演化
O2O,从人人追捧突然间变成了过街老鼠、人人喊打,这并非是一种正常现象。资本的过度虚高,创业者的过度神化,造成了今日大批O2O倒闭的悲剧。其实99%的O2O倒闭只是一种正常现象,他们也注定会倒下,如果创业都那么好创,岂不人人都能成企业家?不能因为大批创业者的倒下而否定了整个行业的价值,只能说...
分类:其他   时间:2015-10-03 09:25:59    收藏:0  评论:0  赞:0  阅读:318
for循环计算阶乘
1 int x = 10;2 for(int y = x - 1; y >= 1; y--)3 {4 x = x * y;5 }6 System.out.println(x);从10乘到1的阶乘写法。1 ...
分类:其他   时间:2015-10-03 09:25:39    收藏:0  评论:0  赞:0  阅读:693
OSChina 周六乱弹—— 小小编摊上大事儿啦
国庆假期进入第三天,刚好是是周六,666,平时周六上(jia)班的 OSCer 今天终于放假啦!开森不开森? 小小编就不太愉快啦,已经计划好在家发呆了,做个美腻的发呆君 @xiaochong0302 :上联:世界那么大,我想去看看...
分类:其他   时间:2015-10-03 08:24:40    收藏:0  评论:0  赞:0  阅读:284
JAVA 线程基本知识汇总--ThreadLocal 和 InheritableThreadLoc
package?org.test; public?class?ThreadLocalTest?{ public?static?void?main(String[]?args)?{ User?user?=?new?User(new?ThreadLocal<String>()); Book?book?=?new?Book(); Thread?...
分类:编程语言   时间:2015-10-03 08:24:30    收藏:0  评论:0  赞:0  阅读:339
Debian Stable (Jessie 8.1) 的normal.mod not found
**下班的时候打算重置下default-brower, 输入了dpkg-reconfigure 结果按了个g,又按了tab,最后还输了回车.就变成了 dpkg-reconfigure grub-pc 进入dpkg配置grub-pc的界面后, 按了下Esc没想到没退出反而按到了` , 就是数字1上的那个符号. 接下来就进入了下一个选项. 这个只有个OK的可以移动到. 然后敲了下回车. 就没管...
分类:其他   时间:2015-10-03 08:23:40    收藏:0  评论:0  赞:0  阅读:329
谈论 我的爱
最近小冰更火,百度还正在研究大脑,我们在软件层面,事实上,我们不知道的是,其实现在对于机器人的硬件领域已经比较成熟,所以,仅仅是一个成熟的软件,它相当于灌输机器人的想法。这将形成一个真正的人工智能机器人。但现在从数据来看的角度理解,IBM的泰森,还是小度人脑,还是微软小冰,仅仅是一时间苹果SIR.....
分类:其他   时间:2015-10-03 08:23:09    收藏:0  评论:0  赞:0  阅读:192
checkbox的attr(&quot;checked&quot;)一直以来,undefined问题解决
最近,屌丝要项目开发的需要,需要一个完整的选checkbox特征。该死的~~这不是很easy什么东西,共checkbox,N多个子的checkbox,总checkbox一旦选定,儿checkbox所有选择,一旦总未选中。儿子也没有选择。这个小需求,本屌丝一阵窃喜,多么简单的功能啊,OK,两分钟完事~...
分类:其他   时间:2015-10-03 08:22:59    收藏:0  评论:0  赞:0  阅读:133
88. Merge Sorted Array (Array)
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note:You may assume that nums1 has enough space (size tha...
分类:其他   时间:2015-10-03 08:22:39    收藏:0  评论:0  赞:0  阅读:245
Jump Game 解答
QuestionGiven an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents you...
分类:其他   时间:2015-10-03 08:22:09    收藏:0  评论:0  赞:0  阅读:354
Hibernate 5.0.2加载hibernate.cfg.xml时mapping不生效
//Group类 package?com.jingtai; public?class?Group?{ ????private?int?groupId; ????private?String?groupName; ???? ????public?void?setGroupId(int?id){ ????????group...
分类:移动平台   时间:2015-10-03 07:21:20    收藏:0  评论:0  赞:0  阅读:387
mac系统下如何隐藏和显示隐藏文件
显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false 或者 显示Mac隐藏文件的命令:...
分类:系统服务   时间:2015-10-03 07:21:10    收藏:0  评论:0  赞:0  阅读:257
在Spotlight里启动Emacs
使用Apple Script生成Application来启动Emacs Daemon 和 EmacsClient on?launch_emacs_client() tell?application?"Terminal" do?script?"/Applications/Emacs.app/Contents/MacOS/bin/emacsclient?-c?...
分类:系统服务   时间:2015-10-03 07:21:00    收藏:0  评论:0  赞:0  阅读:246
阿里云免费服务器使用笔记(安装tomcat+jdk+mysql)
jdk-8u60-linux-x64.gz(部分内容来自http://my.oschina.net/u/173975/blog/298658)1、首先要查看服务器的系统版本,是32位还是64位 #cat /etc/issue x86_64是64位,如果还不确定,可以再换个命令 #getconf LON...
分类:数据库技术   时间:2015-10-03 07:20:40    收藏:0  评论:0  赞:0  阅读:230
ocp-70
QUESTION NO: 70 ASM supports all but which of the following file types? (Choose all that apply.) A. Database files B. Spfiles C. Redo-log files D. Archived log files E. RMAN backup sets F. Pass...
分类:其他   时间:2015-10-03 07:19:49    收藏:0  评论:0  赞:0  阅读:243
ocp-69
QUESTION NO: 69? Exhibit #1: Exhibit #2: View the Exhibit exhibit1 to observe the maintenance window property. View the Exhibit exhibit2 to examine the output of the query. Which two statement...
分类:其他   时间:2015-10-03 07:19:39    收藏:0  评论:0  赞:0  阅读:337
LintCode "Word Break"
LeetCode AC code failed last case with TLE. We need further pruning - we only enumerate all possible lengths of all dict words.class Solution { vec...
分类:其他   时间:2015-10-03 07:19:09    收藏:0  评论:0  赞:0  阅读:207
menu({postion:{my:"left top"},at:"right bottom"})里的my与at会冲突吗
my(默认值:"center")类型:String描述:定义被定位元素上对准目标元素的位置:"horizontal vertical" 对齐方式。一个单一的值,比如 "right" 将规范为 "right center","top" 将规范为 "center top"(下面的 CSS 公约)。可接受...
分类:其他   时间:2015-10-03 07:18:59    收藏:0  评论:0  赞:0  阅读:857
LintCode "Max Tree"
Something new I learnt from it: what is Treap and a O(n) constructionhttps://en.wikipedia.org/wiki/Cartesian_tree#Efficient_constructionclass Solution...
分类:其他   时间:2015-10-03 07:18:49    收藏:0  评论:0  赞:0  阅读:262
图文详解 YUV420 数据格式
YUV 格式有两大类:planar 和 packed。 对于 planar 的 YUV 格式,先连续存储所有像素点的 Y,紧接着存储所有像素点的 U,随后是所有像素点的 V。 对于 packed 的 YUV 格式,每个像素点的 Y, U, V 是连续交*存储的...
分类:其他   时间:2015-10-03 06:18:00    收藏:0  评论:0  赞:0  阅读:226
JAVA 线程基本知识汇总--线程中断
1.线程中断的结果专业术语 ? isInterrupted interrupted interrupt ? ? // 测试当前线程是否已经中断,同时会将线程的中断状态取消 ? ? ?Thread.interrupted(); ? // 在当前线程加上一个打断标记 ** 并不...
分类:编程语言   时间:2015-10-03 06:17:50    收藏:0  评论:0  赞:0  阅读:278
786条   上一页 1 ... 33 34 35 36 37 ... 40 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!