卧浪居士
码龄9年
  • 219,713
    被访问
  • 173
    原创
  • 910,506
    排名
  • 53
    粉丝
关注
提问 私信

个人简介:尘世如潮人如水,只叹江湖几人回.

  • 加入CSDN时间: 2013-01-13
博客简介:

wolangjushi的专栏

查看详细资料
个人成就
  • 获得22次点赞
  • 内容获得8次评论
  • 获得56次收藏
创作历程
  • 3篇
    2016年
  • 4篇
    2015年
  • 140篇
    2014年
  • 44篇
    2013年
成就勋章
TA的专栏
  • Dreaming in C++
    59篇
  • Dreaming in Python
    5篇
  • Dreaming in Shell
    3篇
  • Dreaming in Programming
    33篇
  • SoftwareTesting
    21篇
  • DataStructure
    16篇
  • OperatingSystem
    18篇
  • InternetEngineering
    5篇
  • DataBase
    19篇
  • Project_3DFDTD
    11篇
  • Company
兴趣领域 设置
  • iOS
    objective-cxcode
  • 测试
    单元测试集成测试可用性测试功能测试
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

OpenGLes

发布动态 2022.05.24

【Linux】U盘启动盘安装问题解决gfxboot.c32: not a com32r image

1.下载老毛桃;2.下载对应机器的linux安装包,一般为iso格式;3.制作启动盘;4.模拟启动后,若出现如上报错,则可输入install试试
原创
发布博客 2016.09.17 ·
8036 阅读 ·
1 点赞 ·
0 评论

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 ·
1264 阅读 ·
0 点赞 ·
0 评论

2016几点工作思考

1.半载有余,常想现时之工作,简单的事情,是否可以完全自动化?2.还需要关注js的知识,今年争取完成;3.如何提升工作本身的意义,是该挑战一些东西的时候了;4.技术的变化并没有想象的那么大,需要什么就去解决什么;5.安心工作,提升技术能力的同时,多关注家庭,做好为人父的本分。
原创
发布博客 2016.02.16 ·
454 阅读 ·
0 点赞 ·
0 评论

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 ·
759 阅读 ·
0 点赞 ·
0 评论

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 ·
779 阅读 ·
0 点赞 ·
0 评论

图片轮播代码

.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 ·
524 阅读 ·
0 点赞 ·
0 评论

继续学python

前段时间在忙着老师的事情,接下来,重新学下python,搞搞毕业论文!
原创
发布博客 2015.01.25 ·
408 阅读 ·
0 点赞 ·
0 评论

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 ·
520 阅读 ·
0 点赞 ·
0 评论

python+ing

搞了很久的CPP,可以说d
原创
发布博客 2014.10.08 ·
519 阅读 ·
0 点赞 ·
0 评论

tencent实习----阶段总结报告

阶段总结报告     时间很快,在腾讯实习已有一个月了。在导师及同事们的照顾下,我不仅完成导师分配的各种任务,熟悉工作的基本流程,也喜欢上这里的工作氛围。现总结如下:Ø 打磨产品的同时雕刻自己:1.XX体验报告;XX体验;2.撰写XX测试用例;3.XX产品的持续跟进(82bug/10高/10严重),迭代回归测试5次,1次全测试;4.MojiMe Portal(PC/Mobi
原创
发布博客 2014.08.26 ·
1107 阅读 ·
0 点赞 ·
0 评论

学习SPSS资料整理

发布资源 2014.08.17 ·
pdf

华为(·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 ·
1217 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
555 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
559 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
875 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
599 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
507 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
629 阅读 ·
0 点赞 ·
0 评论

华为(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 ·
696 阅读 ·
0 点赞 ·
0 评论
加载更多