rx_wen
码龄15年
关注
提问 私信
  • 博客:116,217
    116,217
    总访问量
  • 99
    原创
  • 865,932
    排名
  • 6
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:美国
  • 加入CSDN时间: 2010-01-08
博客简介:

just do IT

博客描述:
http://rxwen.blogspot.com
查看详细资料
  • 原力等级
    领奖
    当前等级
    0
    当前总分
    0
    当月
    0
个人成就
  • 获得1次点赞
  • 内容获得7次评论
  • 获得5次收藏
创作历程
  • 8篇
    2011年
  • 56篇
    2010年
  • 33篇
    2009年
  • 2篇
    2008年
成就勋章
TA的专栏
  • .net
    2篇
  • algorithm
    5篇
  • android
    24篇
  • blogporter
    1篇
  • c++
    5篇
  • debugging
    14篇
  • directshow
    4篇
  • linux
    4篇
  • mac
    1篇
  • make
    1篇
  • multimedia
    10篇
  • mvc
    1篇
  • nook
    5篇
  • performance
    1篇
  • productivity
    5篇
  • python
    4篇
  • quality
    1篇
  • sip
    5篇
  • ssl goahead
    1篇
  • tools
    18篇
  • unit testing
    1篇
  • wince
    4篇
  • windbg
    5篇
  • windows
    3篇
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

addr2line for windows

While debugging os or application crash bug on windows ce (the tool winaddr2line isnt particularly used for windows CE application, it can be used for normal windows application too.) platform, dev
原创
发布博客 2011.06.27 ·
3934 阅读 ·
1 点赞 ·
1 评论 ·
2 收藏

quickswitch

One of the most used function on a pc is switching between tasks. We may write some code in vim, switch to firefox to search for the usage of an api. And then switch back to vim continue writing code.
原创
发布博客 2011.05.31 ·
1868 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

extend windows ce platform with oalioctl

Though not being a open source platform, windows ce is designed to be flexible so that device venders can extend it easily. oalioctl is a feature that makes it possible to do things in kernel space on behalf of application. Features1. ExtensibilityThe
原创
发布博客 2011.04.14 ·
579 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

resolve windows ce remote tool connection issue

remote tools for windows ce is a set of powerful tools for debugging. I have Visual Studio 2005, Windows Embedded CE 6.0 R3 installed, but the remote tools don't work. They fail to connect to device with following error message:The Microsoft ActiveSync re
原创
发布博客 2011.03.08 ·
1196 阅读 ·
0 点赞 ·
1 评论 ·
1 收藏

view call stack of crashed application on android

On android, when a process crashes in native code, the call stack of the process will be saved to a log file in /data/tombstomes/, and written to logcat as well. The information is helpful for debuggi
原创
发布博客 2011.01.25 ·
1141 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

install h.264 plugin for linphone on ubuntu

h.264 plugin isn't a standard part of linphone installation on ubuntu. We must manually compile and install it.1. Download msx264 plugin source code.2. Run sudo apt-get install libmediastreamer-dev libx264-dev libavcodec-dev libswscale-dev libtheora-dev
原创
发布博客 2011.01.19 ·
1905 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

utility for debugging android native application

agdb is a utility aims to ease the task of debugging android native application. Its working mechanism is similar to ndk-gdb. But it's intended to assist debugging native applications in android source tree, not for application created with ndk.It does f
原创
发布博客 2011.01.13 ·
740 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

view raw yuv file with mplayer

mplayer is a powerful utility that is helpful for examining the raw yuv file.We decoded this h.264 media file (test_avc_amr.mp4) coming with android opencore to yuv format, saved as a.yuv. The command below can display the yuv file frame by frame:mplayer
原创
发布博客 2011.01.10 ·
991 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

another free uml tool, bouml

Having tried metauml as my primary design utility recently, the experience isn't as good as I expected. At the beginning, I thought I would be more focused on the content/design while using a pure textual editing tool, but the result is very frustrating. B
原创
发布博客 2010.12.24 ·
532 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

common programming and debugging tools

To help me memorize commonly used programming and debugging tools on windows and linux, I created a wiki page here:http://code.google.com/p/rxwen-blog-stuff/wiki/CommonProgrammingAndDebuggingToolsOnWinAndLinux
原创
发布博客 2010.12.21 ·
570 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

port exosip to android

Port exosip to android platform isn't a difficult task because exosip doesn't rely on any special system calls that aren't available on android. It only requires osip to compile, which can also be easily ported.As an example, I created two applications to
原创
发布博客 2010.12.19 ·
2380 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

tools for working with android jni

When we make use of jni on android, it's a error-prone task to manually write the native function name for a given java native function. Though there are rules for us to follow, no one would like to memorize that. javah to the rescue.For example, for the
原创
发布博客 2010.12.14 ·
553 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

learning opencore through unit testing

Android 2.3 gingerbread was officially released. A big improvement is this version is in media framework, as stated in platform highlights:Media FrameworkNew media framework fully replaces OpenCore, maintaining all previous codec/container support for enc
原创
发布博客 2010.12.08 ·
762 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

python decorators

Decorator is a very expressive language feature in python. It helps developers to write cleaner, modular code that is easier to extend and maintain. It also helps implement AOP and decorator pattern in python.Decorator syntaxTo declare a decorator funct
原创
发布博客 2010.12.05 ·
623 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

install fcitx input method on ubuntu

The default scim input method doesn't work well with freemind on my computer, so I'd like to switch to fcitx. The fcitx package in ubuntu repository is an old version, and to install fcitx manually isn't very straightforward, so I make this post about how
原创
发布博客 2010.12.04 ·
1866 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

draw uml with latex&metauml

I've used and enjoyed the benefits of reversion control system for several years. RCS makes my life a lot easier. And it pushes me to highly prefer text format files over binary files, because text files can be managed by RCS more easily. metauml is a m
原创
发布博客 2010.11.23 ·
1104 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

html tag


<
hellohtml
原创
发布博客 2010.11.18 ·
126 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

avoid memory leak in osip

I was debugging memory leak bugs recently. The bug was caused by incorrect usage of the osip library. It's not uncommon that we meet problems when we rely on a library or framework that we don't fully understand. Symptom and debuggingThe symptom is our
原创
发布博客 2010.11.15 ·
594 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

blogporter v1.0.0 released

The first version of blogporter is released. It's a utility for synchronizing posts between different blog service provider.I wrote this tool because I need to maintain two blogs. It's annoying to have to copy and paste my posts to another blog. And the m
原创
发布博客 2010.10.20 ·
581 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

nook vs kindle 3

I finally had a chance to play with kindle 3, and compared it with my nook.Pros: The greatest advantage I felt that kindle 3 is over nook is its speed. It's extremely fast to turn pages, at least twice faster than nook.The second point that kindle
原创
发布博客 2010.10.16 ·
900 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多