首页 > 2016年01月13日 > 全部分享
绩效/加薪/年终奖,虐你如初恋
年底了,绩效评估、调薪、年终奖,有多少不得不说的事儿?有多少欲说还休的事儿?有多少欲盖弥彰的问题?看看这18个问题,你遇上了几个。...
分类:其他   时间:2016-01-13 08:10:11    收藏:0  评论:0  赞:0  阅读:147
linux 加载raid驱动
Driver Disk Installation Guide for ARC-11XX/ARC12XX/ARC16XX/18XX RAID Controller on RHEL 5.11 or CentOS 5.11(kernel 2.6.18-398.el5) x86_64 and i386 ==...
分类:系统服务   时间:2016-01-13 08:09:40    收藏:0  评论:0  赞:0  阅读:304
CLR via C#深解笔记五 - 事件
事件处理实际上是一种具有特殊签名的delegate, 像这个样子:public delegate void EventHandler(object sender, EventArgs e);类型定义事件成员,就可以通知其他对象发生了特定的事情。如果定义一个事件成员,意味着类型要提供一下能力:#1,方...
分类:Windows开发   时间:2016-01-13 08:09:30    收藏:0  评论:0  赞:0  阅读:240
一种简单的版本控制设计
简单版本控制的数据库ER图设计,支持新增、修改、删除操作,可实现简单的提交和回滚。
分类:其他   时间:2016-01-13 08:09:20    收藏:0  评论:0  赞:0  阅读:137
cocos2d-x中使用JNI的调用JAVA方法
用cocos2d-x公布Android项目时。都应该知道要用JAVA与C/C++进行交互时会涉及到JNI的操作(Java Native Interface)。JNI是JAVA的一个通用接口。旨在本地化语言(如C\C++)与JAVA语言进行交互。在交互过程成中,JAVA调用的是已编译好的本地化语言的二...
分类:编程语言   时间:2016-01-13 08:08:30    收藏:0  评论:0  赞:0  阅读:106
Shell脚本文件中常用的操作语句
1. 清空文件中的内容 cat /dev/null >> /var/log/messages2. 脚本中判断用户是不是root用户 ROOT_UID = 0 # $UID 为0时,用户才具有root用户权限 if [ "$UID" -ne "$ROOT_UID"] ...
分类:系统服务   时间:2016-01-13 08:08:20    收藏:0  评论:0  赞:0  阅读:165
Jan 12 - Delete Node in a Linked List; Data Structure; Linked List; Pointer;
代码:/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */pub...
分类:其他   时间:2016-01-13 08:08:10    收藏:0  评论:0  赞:0  阅读:137
JavaScript DoublyLinkedList
function DoublyLinkedList() { var Node = function(element) { this.element = element; this.next = null; this.prev = null } var length = 0; var head ...
分类:编程语言   时间:2016-01-13 08:07:40    收藏:0  评论:0  赞:0  阅读:218
<LeetCode OJ> 141. Linked List Cycle
141. Linked List Cycle My Submissions Question Total Accepted: 88665 Total Submissions: 241622 Difficulty: Medium Given a linked list, determine if it has a cycle in it. Follow up...
分类:其他   时间:2016-01-13 07:05:40    收藏:0  评论:0  赞:0  阅读:266
[读书笔记]Mindset
开始读 Mindset。准备开始记录读书笔记。
分类:其他   时间:2016-01-13 07:05:00    收藏:0  评论:0  赞:0  阅读:213
MongoDB使用小结:一些不常见的经验分享
最近一年忙碌于数据处理相关的工作,跟MongoDB打交道极多,以下为实践过程中的Q&A,后续会不定期更新补充。1、count统计结果错误这是由于分布式集群正在迁移数据,它导致count结果值错误,需要使用aggregate pipeline来得到正确统计结果,例如:db.collection.agg...
分类:数据库技术   时间:2016-01-13 07:04:50    收藏:0  评论:0  赞:2  阅读:449
JavaScript LinkedList
function LinkedList() { var Node = function(element) { this.element = element; this.next = null } var length = 0; var head = null; this.append = fun.....
分类:编程语言   时间:2016-01-13 07:04:40    收藏:0  评论:0  赞:0  阅读:200
Jan 12 - Power of Two; Integer; Bit Manipulation;
Two's complement of integer:https://zh.wikipedia.org/wiki/%E4%BA%8C%E8%A3%9C%E6%95%B8Bit Manipulation:https://docs.oracle.com/javase/tutorial/java/nut...
分类:其他   时间:2016-01-13 07:04:30    收藏:0  评论:0  赞:0  阅读:132
Jan 12 - Lowest Common Ancestor of a Binary Search Tree; Tree; BST; Recursion;
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { v...
分类:其他   时间:2016-01-13 07:04:20    收藏:0  评论:0  赞:0  阅读:201
*Implement Stack using Queues
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:其他   时间:2016-01-13 07:04:10    收藏:0  评论:0  赞:0  阅读:202
华为oj 之 蜂窝小区最短距离
/* 学习了一种新的解题方法,很巧妙,利用坐标系来解题。 参考:http://blog.csdn.net/nys001/article/details/12637201*/ 1 #include 2 #include 3 #include 4 #include 5 #inclu...
分类:其他   时间:2016-01-13 07:04:00    收藏:0  评论:0  赞:0  阅读:267
Jan 12 - Implement Queue using Stacks; Stack; Queue Implementation;
代码:class MyQueue { // Push element x to the back of queue. Stack stack = new Stack(); Stack aux = new Stack(); public void push(int x) { ...
分类:其他   时间:2016-01-13 07:03:50    收藏:0  评论:0  赞:0  阅读:208
FLTK 1.1.10 VS2010 Configuration 配置
Download FLTK 1.1.10 at here.Extract fltk-1.1.10, open folder "vs2005", and then click "fltk.sln", build solution (F7).When it is done, go to folder "...
分类:其他   时间:2016-01-13 07:03:43    收藏:0  评论:0  赞:0  阅读:200
谷歌CEO 宣布Google I/O 2016大会将于2016年5月18日Mountain View举办
谷歌CEO Sundar Pichai今日在他的官方Twitter上宣布,Google I/O 2016大会将于2016年5月18日在加州Mountain View拉开帷幕。这是谷歌一年一度最大的开发者大会。在刚刚过去的2015年,Google I/O大会被评为2015年最受欢迎的开发者大会,位列苹...
分类:其他   时间:2016-01-13 07:03:30    收藏:0  评论:0  赞:0  阅读:196
2016/01/13开始学习git:远程仓库
要关联一个远程库,使用命令git remote add origin git@server-name:path/repo-name.git; 关联后,使用命令git push -u origin master第一次推送master分支的所有内容; 此后,每次本地提交后,可以使用命令git push ...
分类:其他   时间:2016-01-13 07:03:10    收藏:0  评论:0  赞:0  阅读:171
1686条   上一页 1 ... 72 73 74 75 76 ... 85 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!