Import the attachment in the language option dialog of Source in sight. Passed for Source in Sight 3.50.
php-script.zip
2007-12-20
Make Source In Sight Supports PHP language
2007-07-31
2007-07-13
猎头
一个猎头机会,我觉得还是不错的,有意的朋友可以联系一下。
Title: Software Development Engineer Lead
We’re looking for the next generation of leaders to help define and lead the next era of innovation. It’s an exciting time to be at Center – especially if you’re an innovator leading the way. At Center of the company China R&D in Beijing, you get to experience the energy of a start-up company and the resources of the most successful software company in the world. Your potential is limitless. Come to enjoy the thrill of designing a great product and the rush of developing it with people as passionate as you.
Center ICE (Innovation, Consumer, and Emerging) team is working on several projects and products that will define a new category of applications, next generations of services, and innovative solutions in Consumer space (Education, HealthCare and New application and experience). We are looking for talented Development Leads with great leadership skills and a passion for agility, quality, efficiency, and the desire and ability to learn new techniques and drive innovation. We invite you to lead and/or build dedicated team of high-caliber individuals who greatly enjoy working together as we deliver on our technology across both Developed and Emerging markets.
The primary responsibilities include: recruiting, building, mentoring and maintaining a high performance team; working closely with other teams in Program Management and Test as well as with Product Design; driving sound architecture, design, and implementations; ensuring designs and implementations meet quality, performance, scale, and manageability requirements as well as cross team dependencies; initiating, promoting and implementing engineering best practices; project planning and tracking for your team.
As a successful candidate,
- You should demonstrated success in building a strong development team, mentoring, delivering excellence in code quality and engineering process.
- You must be a respected development leader with a proven track record of shipping products through multiple product cycles while dealing with challenges such as cross-team dependencies, rapid shipping schedules, being able to analyze diverse requirements and make recommendations as to implementation strategies and estimate development costs.
- You must have strong communication skills (verbal and written).
- You should also have solid fundamental computer science skills and have a passion for cutting-edge technologies.
- You need to be proficient in at least two of the following: C#, ASP.net, JScript/Javascript, AJAX, Web Service/SOAP, WPF, Server application and Web protocols.
- Experience with C++/Win32, SQL, SharePoint technology, and a solid background in Computer Science are all big pluses.
- BS/MS in Computer Science or Engineering, or equivalent are required. Travel to Redmond may be required.
2007-04-17
真实手机上的JAVA系统的BUG
按照J2ME规范写了J2ME程序,可是部署到真实手机上,稀奇古怪的问题就会出来,别大惊小怪,写JAVA虚拟机的也是普通人,照样会犯错。在此列举一些,以供后来者踩着先驱者死掉的无数脑细胞前仆后继。
1、中文问题:Nokia 6681上在Alert的内容中的中文都显示为“口”,而标题则正常。其余的控件也有类似的问题,即title可中的中文正常,string或者text中的中文显示为“口”。在Nokia 6600上,JAD中不能使用中文,否则直接告诉安装失败。
2、Alert显示问题:Nokia 6600上,Display.setCurrent(Alert alert, Displayable nextDisplayable)工作不正常,可直接使用Display.setCurrent(Alert alert),然后在程序中响应alert的dismiss消息,显示下一个Displayable。6600上还有好多古怪的问题的,可以到nokia网站上去搜一下Known Issues In the Nokia 6600的这篇文档看看。
3、WMA发送短信问题:忘了在哪个手机上用一个正数端口发送不了短信了,什么反应都没有,也没有Exception。而在MOTO E680i上,不能用端口0发送短信,没有任何Exception,把send调用注释掉之后终于看到Exception了:端口只能是1到65535之间。
4、Nokia 8800上打包引起的问题参见:jar打包引起J2ME程序安装失败
2007-04-14
jar打包引起J2ME程序安装失败
使用这种方式进行J2ME程序打包:
jar cvmf classes.jar mymanifest -C foo/ .
仍可以生成貌似很正常的jar文件,并且在大多数的手机上可以正常安装运行,然而在Nokia 8800手机上会报告“应用程序无效”。正确的打包方法应该是:
jar cvfm classes.jar mymanifest -C foo/ .
关于-f和-m参数顺序说明在jar的帮助信息中是这样说明的:
用法:jar {ctxu}[vfm0Mi] [jar-文件] [manifest-文件] [-C 目录] 文件名 …
清单(manifest〕文件名和存档文件名都需要被指定,按’m’ 和 ‘f’标志指定的相同顺序。
2007-04-13
faad2 2.5 decodec error message in ffmpeg
If you got error message like this:
[aac @ 0x53cde8]FAAD library: cannot resolve faacDecGetErrorMessage in libfaad.so.0!
That means ffmpeg could not load faacDecGetErrorMessage symbol from libfaad.so.0 library. First you should comfirm that libfaad.so.0 library is located in the path which are defined by the LD_LIBRARY_PATH environment variable. Second, this problem may caused by the changes of faad2 upgrading. You can edit this file libavcodec/faad.c:
line 222:
do { static const char* n = “faacDec” #a; \
Modify it as below:
do { static const char* n = “NeAACDec” #a; \
2007-03-26
配置自动登录的OpenSSH
在不使用SecureCRT或者PuTTY的时候,用ssh登录远程服务器总是要输入密码,挺麻烦的。而且做系统管理,总是需要与自动化的命令行打交道,把密码明码写在脚本里实在不是一个合格的系统管理员做的事情。这儿有个解决办法:
1、在本机上创建密钥对:
$ cd ~/.ssh
$ ssh-keygen -t dsa
根据提示输入密码,此密码与远程ssh密码无关。
2、将公钥文件复制到远程服务器上:
$ scp ~/.ssh/id_dsa.pub user@remote.host:pubkey.txt
$ ssh user@remote.host
$ mkdir ~/.ssh
$ chmod 700 .ssh
$ cat pubkey.txt >> ~/.ssh/authorized_keys
$ rm ~/pubkey.txt
$ chmod 600 ~/.ssh/*
$ exit
3、测试远程服务器上的公钥:
$ ssh user@remote.host
系统应该在这里提示要输入私钥密码,就是在ssh-keygen时创建的。
$ exit
4、启动ssh-agent代理:
$ eval `ssh-agent`
5、将私钥加到ssh-agent代理的缓存中去:
$ ssh-add
又要输一遍私钥密码。
6、测试一下:
$ ssh user@remote.host
$ exit
7、因为自动登录的实现是由ssh-agent保存了登录信息实现的,因而在使用之前需要启动ssh-agent。自动启动ssh-agent代理:下载sssha脚本,并放到~/.ssh/目录下,并在~/.bashrc文件中加入:
# setup ssh-agent, if appropriate
if [ -f "$HOME/.ssh/sssha" ]; then
source $HOME/.ssh/sssha
fi
2007-03-14
使用蓝牙向MOTO L6手机传输Java程序
一句话:MOTO的手机挺难用的。像这种弱智的功能都成为问题了,真是没办法。使用蓝牙适配器软件,用蓝牙对象交换服务进行发送对象,选择JAR文件发送,然后在手机上就能看到消息了,安装就行。
2007-02-27
.NET Framework doesn’t work
My Windows XP SP2 got update notification of Visual Studio 2005 SP1, but it failed to install. And after that, my .NET applications don’t work any more. I uninstalled all my .NET frameworks and visual studio 2005, but I cannot install .NET framework 2.0 anymore. The setup program complains that “Error occurred while initializing fusion. Fusion could not load fusion with LoadLibraryShim()”. This occurs when installing Microsoft.VisualBasic.Vsa.dll. After struggling for several hours, finally I found a cleanup tool to resolve this problem: http://astebner.sts.winisp.net/Tools/dotnetfx_cleanup_tool.zip. Thanks to astebner.
2007-02-15
在网上买到票了
垂直搜索网站的确给了用户很大的方便。推荐一下:http://piao.qikoo.com/。
列一下网上转让信息的统计信息,不难看出车票最紧张的时候同时也是转让最多的时候。n多人手上拿了两张甚至三、四张票,人为造成车票紧张的现象。黄牛党害死人啊。