页面

0
Posted on 星期四, 五月 21, 2009 by 随想~ and filed under ,
大约五月十几号,伟大而优秀的blogger被无情的GFWed了,可怜我的数据都没备份过呢!我草泥马。
后来在yo2建了个blog,将数据导入到yo2博客了。过程我不多说,绝对的让人抓狂,整整浪费了一个下午。但是不得不说虽然yo2网上说得听火,但是给我的感觉是yo2除了wordpress这一强大的基础加上国内的速度,其他的服务还是是没得blogger的服务好!不说访问很慢,更要命的是经常性的无法访问!不知道这是不是个别问题!怀念blogger呀!你快回来!blogger!
我是个嫌麻烦的人,不想去寻找某些繁琐的翻墙方法了。不能通过浏览器来更新我的博客就不通过这种方式更新呗,因为blogger提供的更新方式还有很多,可以通过邮件更新,google
doc更新等等。反正在线发布工具也不是很强大,所以通过邮件照常更新。去泥马的GFW!

国内用户可以访问http://longe.yo2.cn来获取以前的内容

期待google提供blogger的安全连接中…

--
从我的移动设备发送

发送自本龙

0
Posted on 星期一, 五月 11, 2009 by 随想~ and filed under ,
突然心血来潮,想使用手机的modem功能通过GPRS来上网。于是下载了 最新的NOKIA PC套件下来(我下载的是Nokia PCsuite7.1.18.0版本),一路下来真是感慨校园网的蜗牛般的速度呀!也许真的还没通过手机上网的速度快!严重的BS校园网络。
一路next正确安装好了nokia pcsuite 后与手机连接好了,系统提示找到新硬件并安装驱动的。但是遇到一个问题,系统提示你找到新硬件CDC Comms Interface 并让你安装驱动,我们一般都选择了第一个选项:查找并安装驱动程序(推荐),毕竟有推荐俩字嘛!然后会遇到一个错误提示,例如
 Windows 已找到设备的驱动程序软件,但在试图安装它时遇到错误。
Nokia E51 USB 
系统找不到指定文件。
当然还有另外一个错误提示:
 Windows 已找到设备的驱动程序软件,但在试图安装它时遇到错误。
Nokia E51 USB  Modem
系统找不到指定文件。
你会发现有两个驱动安装失败了


然后就是pc套件提示通过USB数据线连接好了E51,以为没什么问题了,欣喜的使用pc套件的接入Internet功能,却提示没有找到调制解调器。当场崩溃!经过我多次的安装与卸载,确定这仅仅影响你使用手机的modem功能,其他功能正常。但是我就是要用modem功能啊!上面的场景应该许多人都遇到过吧?
还是发挥网络无穷的力量吧,不断的google后,知道了问题在于最新版本的PC套件数据线驱动。所以我们只需要将数据线驱动卸载了,然后安装个低版本的驱动,就OK了!
  1. 先卸载你的PC套件,如果不知道要卸载哪些东西的话,为避免出问题,我们用Nokia_PC_Suite_Cleaner_7_1_1 将我们的pc套件彻底卸载了。
  2. 提示重启,重启后再重新安装最新的PC套件,先不要连接手机。
  3. 安装好后,打 控制面板\程序和功能 找到Nokia Connectivity Cable Driver 将其卸载,还有三个驱动包(如果有的话,我不记得是什么名称了,反正是发行者为Nokia的驱动包),也将其卸载。
  4. 下载6.85.10.0版本的KDE2数据线驱动程序(下载地址),安装OK
  5. 打开套件,连接手机,驱动就会自动安装成功,打开设备管理器,你会发现驱动安装好了
  6. 连接手机OK,测试接入Internet功能,一切正常。

搞定!以上方法只适用kde-2数据线(就是mini USB接口)连接电脑的nokia手机,nokia E51测试通过。
目前最新的PC套件是7.1.26.0,经过测试还是没解决这个问题。哎!
0
Posted on 星期一, 五月 04, 2009 by 随想~ and filed under , ,
今天在GR上看到某人分享了一篇文章,是关于GFW的。

GFW的工作原理及突破技术

丁 旋

(清华大学计算机科学与技术系,北京,100084)

摘 要:GFW备受争议,几家欢喜几家愁。本文从实例出发,探讨了GFW的工作原理,总结了当前针对GFW的突破技术,并对这些突破技术进行了比较和分析。

关键词:Great Firewall,GFW,Censorship,Anti-Censorship,翻墙

原文链接这里传送
个人对于GFW充满了好奇就下载下来了,看了一下,分析的还不错。作者自称  來自有種的(?)北京清大學生 确实很有种!

在这个到处充满了墙的“自由”网络里能写出这样的论文我只能说他太墙了!比起某某叫兽,某某砖家到处抄袭没价值的论文墙多了,虽然网络里不乏讨论GFW的文章,但他有种敢拿GFW来写论文就说明他确实有种!
就是不知道他的论文已经发表成功了没有,貌似只是在他的博客上小小的发布了下。不过会不会招来麻烦也不知呀?毕竟……
0
Posted on 星期日, 四月 26, 2009 by 随想~ and filed under ,
今天写了几个程序想发上来下可是 include 语句尖括号出现问题 了!这是怎么回事呢??
Hello Qt!

#include
#include

int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QLabel *hello = new QLabel("Hello Qt!");
hello->show();

return app.exec();
}
就如大家看到的一样:尖括号里的东西自动清空了!!
试试引用块能不能解决问题。
#include
#include

int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QLabel *hello = new QLabel("Hello Qt!");
hello->show();

return app.exec();
}


咦,还是被隐藏了!!怎么回事哦!
以关键字 blogger,angle bracket为关键字google了一下,大概知道了原因:Blogger使用的是HTML发布帖子,而HTML的标记都是尖括号的形式,所以如果文中出现尖括号,括号中的内容就会被误识别为标记。很多blog程序包括WordPress都有这个另作者不爽的地方,但是人家是为了安全方面的考虑也没办法。解决办法就是将'<'替换成"& l t ;"(去掉空格和引号),右尖括号并不需要替换,因为已经没有和他匹配的左尖括号了。
如果你的<太多了,可以借助记事本替换功能,将所有的<替换成& l t ;(去掉空格)
替换后的代码显示 哎!!
#include<qapplication>
#include<qlabel>

int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QLabel *hello = new QLabel("Hello Qt!");
hello->show();

return app.exec();
}

写blog真麻烦呀!
0
Posted on 星期日, 四月 26, 2009 by 随想~ and filed under
个人认为只需要加个 -fast参数就ok了。其他参数视自己情况而定,比如你不需要qt3支持可以添加-no-qt3support,或者不需要webkit插件 -no-webkit


配置参数选项:

 前面是*号的表示默认参数. +号表示该功能要求被评估,评估成功后才能被接受. 

    -release ........... 调试关闭.没有调试库,自己的项目只能发布,不能调试(没有调试库的缘故),如果你硬要编译debug版本的话,会提示找不到xxxxxd.dll  
 *  -debug ............. 只有调试库,没有释放库,也就是说以后自己的项目只能调试,如果你硬要编译debug版本的话,会提示找不到xxxxx.dll 

 +  -debug-and-release . 编译后包含两种库。最好编译两种库

    -opensource ........ 编译开源版.
    -commercial ........ 编译商业版.  这两个参数一般不需指定,configure开始需要你选择版本。

    -developer-build ... 编译开发者选项。

 *  -shared ............动态编译.
    -static ............ 静态链接库.貌似有插件不能用静态编译。

 *  -no-fast ........... configure生成所有项目makefiles文件,并编译
    -fast .............. 只生成库目录及子目录下的项目的makefiles文件.  

    -no-exceptions ..... 关闭异常支持
 *  -exceptions ........ 开启异常支持.

    -no-accessibility .. 关闭对windows active控件支持.
 *  -accessibility .....对windows active控件支持.

    -no-stl ............ 无c++标准库支持
 *  -stl ............... 有标准库支持

尖括号在blogger出问题了。。。。。

    -no-sql- ... Disable SQL entirely, by default none are turned on.
    -qt-sql- ... Enable a SQL in the Qt Library.
    -plugin-sql-  Enable SQL as a plugin to be linked to at runtime.
                         Available values for :
                           mysql
                           psql
                           oci
                           odbc
                           tds
                           db2
 +                         sqlite
                           sqlite2
                           ibase
                         (drivers marked with a '+' have been detected as available on this system)

    -system-sqlite ..... Use sqlite from the operating system.

    -no-qt3support ..... 不提供对qt3函数支持

    -no-opengl ......... 不提供OpenGL函数支持

    -platform ... The operating system and compiler you are building on.
                         (default %QMAKESPEC%)

    -xplatform .. The operating system and compiler you are cross compiling to.

                         See the README file for a list of supported operating systems and compilers.

    -qtnamespace Wraps all Qt library code in 'namespace name {...}

    -D ........ Add an explicit define to the preprocessor.
    -I ... Add an explicit include path.
    -L ... Add an explicit library path.
    -l ... Add an explicit library name, residing in a librarypath.

    -graphicssystem Specify which graphicssystem should be used.
                          Available values for :
 *                         raster - Software rasterizer
                           opengl - Using OpenGL accelleration, experimental!
    -help, -h, -? ...... Display this information.

第三方库

    -qt-zlib ........... 使用zlib绑定到qt.
 +  -system-zlib ....... 使用操作系统的zlib
                         见 http://www.gzip.org/zlib

    -no-gif ............ 不编译gif文件读取支持插件
 +  -qt-gif ............ 编译gif文件读取支持插件
                         参见 src/plugins/imageformats/gif/qgifhandler.h

    -no-libpng ......... 不编译PNG支持插件.
    -qt-libpng ......... 编译PNG支持插件.
 +  -system-libpng ..... 使用系统libpng库
                         见 http://www.libpng.org/pub/png

    -no-libmng ......... 不编译MNG支持插件.
    -qt-libmng ......... 编译MNG支持插件.
 +  -system-libmng ..... 使用系统的mng库
                         参见 http://www.libmng.com

    -no-libtiff ........ 不编译tiff支持插件.
    -qt-libtiff ........ 编译tiff支持插件.
 +  -system-libtiff .... 使用系统的libtiff库
                         见 http://www.libtiff.org

    -no-libjpeg ........ 不编译jpeg支持插件库
    -qt-libjpeg ........ 编译jpeg支持插件库
 +  -system-libjpeg .... 使用系统的jpeg支持库
                        见 http://www.ijg.org

以下参数仅对qt for windows有效

    -no-dsp ............ 不生成 VC++ .dsp 文档.
 *  -dsp ...............生成 VC++ .dsp文档, 需要有平台标识符"win32-msvc".注意 qt4开始就不支持vc6.0了所以这两个参数无效。

    -no-vcproj ......... 不生成 VC++ .vcproj 文档
 *  -vcproj ............ 生成 VC++ .vcproj 文档, 需要平台标识符"win32-msvc.net".也就是vs2003以上的编译环境

    -no-incredibuild-xge Do not add IncrediBuild XGE distribution commands to custom build steps.
 +  -incredibuild-xge .. Add IncrediBuild XGE distribution commands to custom build steps. This will distribute MOC and UIC steps, and other custom buildsteps which are added to the INCREDIBUILD_XGE variable.
                         (The IncrediBuild distribution commands are only added to Visual Studio projects)

    -no-plugin-manifests  插件不嵌入manifests.
 *  -plugin-manifests .. 插件嵌入manifests.

    -no-qmake .......... 不编译qmake
 *  -qmake ............. 编译 qmake.   不建议 不编译qmake

    -dont-process ...... 不生成makefiles和project文档. 比 -no-fast 参数优先级更高

 *  -process ........... 生成makefiles和project文档.

    -no-rtti ........... 不编译运行时类型信息。
 *  -rtti .............. 编译运行时类型信息。
//下面是对指令的支持,不解释了
    -no-mmx ............ Do not compile with use of MMX instructions
 +  -mmx ............... Compile with use of MMX instructions
    -no-3dnow .......... Do not compile with use of 3DNOW instructions
 +  -3dnow ............. Compile with use of 3DNOW instructions
    -no-sse ............ Do not compile with use of SSE instructions
 +  -sse ............... Compile with use of SSE instructions
    -no-sse2 ........... Do not compile with use of SSE2 instructions
 +  -sse2 .............. Compile with use of SSE2 instructions

 +  -direct3d ..........  将Direct3D支持编译进来。检测不到direct3d sdk 就不支持
    -no-openssl ........ Do not compile in OpenSSL support
 +  -openssl ........... Compile in run-time OpenSSL support
    -openssl-linked .... Compile in linked OpenSSL support
    -no-dbus ........... Do not compile in D-Bus support
 +  -dbus .............. Compile in D-Bus support and load libdbus-1 dynamically

    -dbus-linked ....... Compile in D-Bus support and link to libdbus-1
    -no-phonon ......... 不将 Phonon 模块 编译进来
 +  -phonon ............ 将 Phonon 模块 编译进来  (若使用的规范的c++编译器则会自动编译Phonon模块)
    -no-phonon-backend . Do not compile the platform-specific Phonon backend-plu
gin
 *  -phonon-backend .... Compile in the platform-specific Phonon backend-plugin
    -no-webkit ......... 不将webkit模块编译进来,编译webkit非常耗时间。
 +  -webkit ............ 将webkit模块编译进来 (若使用的规范的c++编译器则会自动编译WebKit模块)
    -no-scripttools .... Do not build the QtScriptTools module.
 *  -scripttools ....... Build the QtScriptTools module.
    -arch ....... 外观样式.
                        有以下几种 :
 *                         windows
                           windowsce
                           boundschecker
                           generic

    -no-style-<>尖括号里包含上面的样式。
Powered By Blogger