本文尽量详述目前来说的更新bash的进展,包括下面几个部分:
最全最新的更新安装包
测试已知的bash漏洞
脚本编译更新版本
手动更新...
分类:
其他好文 时间:
2014-10-06 01:41:09
阅读次数:
245
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum ...
分类:
其他好文 时间:
2014-10-06 01:23:59
阅读次数:
228
最近因为公司项目的需要,研究了一项对我来说算是新的技术—条形码的生成和打印。因为之前没有接触过这方面的知识,所以刚开始还有点小迷茫,不过一步一步来,问题总会解决的。现在来总结一下做条形码这块的收获。...
分类:
其他好文 时间:
2014-10-06 03:03:29
阅读次数:
157
划分树+二分
Super Mario
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2625 Accepted Submission(s): 1274
Problem Description
Ma...
分类:
其他好文 时间:
2014-10-06 03:03:09
阅读次数:
280
ubuntu source insight 注释 乱码...
分类:
其他好文 时间:
2014-10-06 02:25:09
阅读次数:
281
Description
Liyuan lives in a old apartment. One day, he suddenly found that there was a wireless network in the building. Liyuan did not know the password of the network, but he got some important...
分类:
其他好文 时间:
2014-10-06 01:17:09
阅读次数:
405
与原先的开发环境不同VS2013自带了报表控件...
分类:
其他好文 时间:
2014-10-06 00:59:19
阅读次数:
286
树链剖分基础题
#include
#include
#include
using namespace std;
const int maxn = 10010;
struct edge
{
int v, next;
}e[maxn*2];
int first[maxn], cnt;
int top[maxn], dep[maxn], sz[maxn], f[maxn], son[maxn...
分类:
其他好文 时间:
2014-10-06 02:55:39
阅读次数:
179
本文记录一个最简单的基于FFmpeg的推流器(simplest ffmpeg streamer)。推流器的作用就是将本地的视频数据推送至流媒体服务器。本文记录的推流器,可以将本地的 MOV / AVI / MKV / MP4 / FLV 等格式的媒体文件,通过流媒体协议(例如RTMP,HTTP,UDP,TCP,RTP等等)以直播流的形式推送出去。由于流媒体协议种类繁多,不一一记录。在这里记录将本地...
分类:
其他好文 时间:
2014-10-06 01:48:49
阅读次数:
292
Inside res/style.xmlInside anim/fadein.xmlInside anim/fadeut.xmlMainActivityDialog imageDiaglog= new Dialog(MainActivity.this,R.style.PauseDialog);htt...
分类:
其他好文 时间:
2014-10-06 02:54:39
阅读次数:
164
K -Pocket CubeTime Limit:10000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 4801DescriptionPocket Cube is a 3-D combinati...
分类:
其他好文 时间:
2014-10-06 02:03:49
阅读次数:
376
J -Josephina and RPGTime Limit:2000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 4800DescriptionA role-playing game (RPG ...
分类:
其他好文 时间:
2014-10-06 01:46:59
阅读次数:
278
在一个2^k * 2^k个方格组成的棋盘中,有一个方格与其它的不同,若使用以下四种L型骨牌覆盖除这个特殊方格的其它方格,如何覆盖。四各L型骨牌如下图1 图1棋盘中的特殊方格如图2图2实现的基本原理是将2^k * 2^k的棋盘分成四块2^(k - 1) * 2^(k - 1)的子棋盘,特殊方格一定在其...
分类:
其他好文 时间:
2014-10-06 02:20:09
阅读次数:
293