- 博客(191)
- 资源 (4)
- 问答 (2)
- 收藏
- 关注
原创 【Linux】U盘启动盘安装问题解决gfxboot.c32: not a com32r image
1.下载老毛桃;2.下载对应机器的linux安装包,一般为iso格式;3.制作启动盘;4.模拟启动后,若出现如上报错,则可输入install试试
2016-09-17 10:30:23 8357
原创 Plantom JS 使用jQuery
var page = require('webpage').create();page.onConsoleMessage=function(msg) { console.log(msg);};page.open('http://www.joox.com', function() {page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery
2016-02-17 16:00:45 1541
原创 2016几点工作思考
1.半载有余,常想现时之工作,简单的事情,是否可以完全自动化?2.还需要关注js的知识,今年争取完成;3.如何提升工作本身的意义,是该挑战一些东西的时候了;4.技术的变化并没有想象的那么大,需要什么就去解决什么;5.安心工作,提升技术能力的同时,多关注家庭,做好为人父的本分。
2016-02-16 09:17:12 577
原创 UI/Application Exerciser Monkey----压力测试
UI/Application Exerciser MonkeyThe Monkey is a program that runs on your emulator or device and generates pseudo-random streams of user events such as clicks, touches, or gestures, as well as
2015-03-19 16:13:03 863
原创 ADB配置环境变量
添加环境变量,配置ADB--Android Debug Bridge1.首先,在添加一个系统变量ANDROID,而后将安装sdk的目录“D:\Program Files\Android\sdk\android-sdk\platform-tools;D:\Program Files\Android\sdk\android-sdk\tools;”包含进来,主要是为了包含这两个文件中的tools。
2015-03-19 12:23:03 951
转载 图片轮播代码
.d1{width:1064px;height:auto;overflow:hidden;border:#666666 2px solid;background-color:#000000;position:relative;}.loading{width:1064px;border:#666666 2px solid;background-color:#000
2015-01-25 20:26:18 636
原创 Django实验室建站(1):view的使用/代码展示(用于记录)
from django.shortcuts import get_object_or_404,renderfrom django.http import HttpResponseRedirect,HttpResponsefrom labsite.models import Paper,Patent,Project,News,Teacher,People,Sponsor#Crea
2014-12-03 21:09:01 630
原创 tencent实习----阶段总结报告
阶段总结报告 时间很快,在腾讯实习已有一个月了。在导师及同事们的照顾下,我不仅完成导师分配的各种任务,熟悉工作的基本流程,也喜欢上这里的工作氛围。现总结如下:Ø 打磨产品的同时雕刻自己:1.XX体验报告;XX体验;2.撰写XX测试用例;3.XX产品的持续跟进(82bug/10高/10严重),迭代回归测试5次,1次全测试;4.MojiMe Portal(PC/Mobi
2014-08-26 10:31:33 1283
原创 华为(·11)单词倒排
#include #include using namespace std;void ReverseStringWord(const string &str){ int pos1=0; int pos2=int(str.length()-1); for(int i=int(str.length()-1);i>=0;--i) { if( (str[i]
2014-07-08 16:01:52 1308
原创 华为(10)字符串排序无视大小写
#include #include using namespace std;void SortString(const string &str){ string strEnglishchar; for(unsigned int i=0;i<str.length();++i) { if('a'=str[i]) strEnglis
2014-07-08 14:31:04 628
原创 华为(9)输入n个整数,输出其中最小的k个
#include using namespace std;bool GetMinK(unsigned int uiInputNum, int * pInputArray, unsigned int uiK, int * pOutputArray){ if(NULL==pInputArray || NULL==pOutputArray) { return fal
2014-07-08 10:06:20 647
原创 华为(8)查找两个字符串a,b中的最长公共子串
#include #include using namespace std; static string iQueryMaxCommString(string &stringA, string stringB) { unsigned int lengthA=stringA.length(); unsigned int lengthB=stringB.length();
2014-07-08 09:26:44 956
原创 华为(7)小球落地高度
#include #include using namespace std;static double getJourney(int high){ return 2.875*high;}static double getTenthHigh(int high){ return 0.5*0.5*0.5*0.5*0.5*high;}int main()
2014-07-08 08:59:14 687
原创 华为(6)第一个只出现一次的字符
#include #include using namespace std;int main(){ string str; getline(cin,str); for(unsigned int i=0;i<str.length();++i) { char c=str[i]; int counts=1; for
2014-07-07 20:47:18 571
原创 华为(5)单词倒排
#include #include using namespace std;int main(){ string str; getline(cin,str); int pos1=0; int pos2=int(str.length()-1); for(int i=int(str.length()-1);i>=0;--i) {
2014-07-07 20:23:12 709
原创 华为(4)数字颠倒
#include using namespace std;int RevertNum(unsigned int inputNum, char *pOutNum){ int i=0; if(inputNum<0) return -1; while(inputNum) { pOutNum[i]=48+inputNum%10;
2014-07-07 19:26:53 776
原创 华为(3)表示数字
#include #include using namespace std;static int MarkNum(string &str){ string mark_str; for(unsigned int i=0;i<str.length();++i) { if('0'=str[i]) { if('*'=
2014-07-03 13:50:52 634
原创 华为(2)输出一个整数中二进制1的个数
#include #include #include using namespace std;static int findNumberOf1(int num){ bitset x(num); int count1=0; for(int i=0;i<32;++i) { if(true==x[i]) ++count1;
2014-07-03 13:14:45 573
原创 华为(1)给出字符串中最后一个单词的字符串数目
#include #include using namespace std;int main(){ string str; getline(cin,str); string::size_type pos=str.rfind(' '); string::size_type length=str.length(); if('a'= 'z')
2014-07-03 12:49:43 520
原创 STL(10)之advance组函数源码
1.函数说明: /** * @brief A generalization of pointer arithmetic. * @param __i An input iterator. * @param __n The @a delta by which to change @p __i. * @return Nothing. * * T
2014-06-30 14:25:44 700
原创 STL(8)之五种迭代器的类型
1. These are empty types, used to distinguish different iterators. The distinction is not made by what they contain, but simply by what they are. Different underlying algorithms can then be used b
2014-06-30 13:57:53 571
原创 腾讯的核心竞争力是什么!
《腾讯的核心竞争力是什么》我决定在国外出差的最后一晚晚点休息,在酒店静静的认真的回答这个问题。我尽量客观的负责的回答,不愤青,不炫耀,不攻击,用朴实的语言。只代表我个人的思考,不代表公司。腾讯最出名的是PC端的即时通信(IM),有一种普遍的认识是IM(用户关系链)是整个腾讯竞争力的基础,平台和核心。在PC互联网端的后续出现的很多产品,特别是一些细分市场的产品(由其他公司先发
2014-06-19 10:35:24 5417
原创 A Brief History of GCC
A Brief History of GCCThe very first (beta) release of GCC (then known as the "GNU C Compiler") was madeon 22 March 1987: Date: Sun, 22 Mar 87 10:56:56 EST From: rms (Richard M. Stallm
2014-05-30 13:02:23 1029
Adventure Works DW 2008 SE
2014-05-11
TA创建的收藏夹 TA关注的收藏夹
TA关注的人