Wednesday, December 05, 2007
C++ library for configuration files
C++ Config File library
+ Simple: one header and one library file
+ Support multiple sections in one configuration file
- The output library under vs2003 is large (2.3M for /MDd)
Configuration File Reader for C++
+ Very simple: one header and one cpp file
+ Using template to reduce codes for different primitives
- Do NOT support multiple sections
+ Simple: one header and one library file
+ Support multiple sections in one configuration file
- The output library under vs2003 is large (2.3M for /MDd)
Configuration File Reader for C++
+ Very simple: one header and one cpp file
+ Using template to reduce codes for different primitives
- Do NOT support multiple sections
Labels: c++, programming
Monday, January 15, 2007
开发Web应用程序应注意的浏览器兼容性问题
把应用程序从 Internet Explorer 迁移到 Mozilla
本文讨论了将应用程序迁移到基于开源Mozilla浏览器上时的常见问题。首先讨论跨浏览器开发的基本技术,然后介绍克服Mozilla和Internet Explorer之间差异的策略。
使Web应用程序能够适应多种浏览器
不同Web浏览器的特性,比如语言设置和JavaScript支持,会导致Web应用程序在不同浏览器中的工作方式不一致。浏览器之间的不一致性不但会导致应用程序看起来很糟糕,而且常常使它无法工作。本文将给出一些技巧,您可以使用这些技巧解决这类问题。
本文讨论了将应用程序迁移到基于开源Mozilla浏览器上时的常见问题。首先讨论跨浏览器开发的基本技术,然后介绍克服Mozilla和Internet Explorer之间差异的策略。
使Web应用程序能够适应多种浏览器
不同Web浏览器的特性,比如语言设置和JavaScript支持,会导致Web应用程序在不同浏览器中的工作方式不一致。浏览器之间的不一致性不但会导致应用程序看起来很糟糕,而且常常使它无法工作。本文将给出一些技巧,您可以使用这些技巧解决这类问题。
Labels: browser, javascript, mozilla, programming, web
