<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>我说你看－DarkEyes - </title><link>category/205390.aspx</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Thu, 12 Jun 2008 12:30:11 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>DarkEyes</dc:creator><title>asp.net中DateTime使用</title><link>http://blog.csdn.net/freedarkeyes/archive/2008/06/12/2539085.aspx</link><pubDate>Thu, 12 Jun 2008 12:30:00 GMT</pubDate><guid>http://blog.csdn.net/freedarkeyes/archive/2008/06/12/2539085.aspx</guid><wfw:comment>comments/2539085.aspx</wfw:comment><comments>http://blog.csdn.net/freedarkeyes/archive/2008/06/12/2539085.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2539085.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2539085</trackback:ping><description>  //C#里内置的DateTime基本上都可以实现这些功能，巧用DateTime会使你处理这些事来变轻松多了                               //今天                DateTime.Now.Date.ToShortDateString();                //昨天，就是今天的日期减一                DateTime.Now.AddDays(-1).ToShortDateString();                //明天，同理，加一                DateTime.Now.AddDays(1).ToShortDateString();                //本周(要知道本周的第一天就得先知道今天是星期几，从而得知本周的第一天就是几天前的那一天，要注意的是这里的每一周是从周日始至周六止                DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16&lt;img src ="aggbug/2539085.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>DarkEyes</dc:creator><title>linux下的c语言/网络/网络编程面试题</title><link>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341036.aspx</link><pubDate>Thu, 19 Oct 2006 14:57:00 GMT</pubDate><guid>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341036.aspx</guid><wfw:comment>comments/1341036.aspx</wfw:comment><comments>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341036.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1341036.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1341036</trackback:ping><description>基础部份:

1.下列程序在32位linux或unix中的结果是什么？ 
func(char *str)
{
    printf("%d",sizeof(str));
    printf("%d",strlen(str));
} 
main()
{

&lt;img src ="aggbug/1341036.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>DarkEyes</dc:creator><title>C++中extern “C”含义深层探索 </title><link>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341027.aspx</link><pubDate>Thu, 19 Oct 2006 14:50:00 GMT</pubDate><guid>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341027.aspx</guid><wfw:comment>comments/1341027.aspx</wfw:comment><comments>http://blog.csdn.net/freedarkeyes/archive/2006/10/19/1341027.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1341027.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1341027</trackback:ping><description>　C++语言的创建初衷是“a better C”，但是这并不意味着C++中类似C语言的全局变量和函数所采用的编译和连接方式与C语言完全相同。作为一种欲与C兼容的语言，C++保留了一部分过程式语言的特点（被世人称为“不彻底地面向对象”），因而它可以定义不属于任何类的全局变量和函数。但是，C++毕竟是一种面向对象的程序设计语言，为了支持函数的重载，C++对全局函数的处理方式与C有明显的不同。
&lt;img src ="aggbug/1341027.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>DarkEyes</dc:creator><title>搞BOA 写CGI遇到的一个问题</title><link>http://blog.csdn.net/freedarkeyes/archive/2006/09/27/1296817.aspx</link><pubDate>Wed, 27 Sep 2006 20:16:00 GMT</pubDate><guid>http://blog.csdn.net/freedarkeyes/archive/2006/09/27/1296817.aspx</guid><wfw:comment>comments/1296817.aspx</wfw:comment><comments>http://blog.csdn.net/freedarkeyes/archive/2006/09/27/1296817.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1296817.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1296817</trackback:ping><description>这几天 公司要求把 原来的 嵌入式设备的 C/S管理模式改成B/S的。

   匆匆忙忙的看了下CGI的标准和写法， 装上BOA。然后配置好，写了段简单的CGI（C语言写的）程序。无意间发现在FORM表单提交属性为POST时，CGI竟然接收不到 FORM传过来的变量，后来用别的机子上访问，然后抓包，发觉值明明传过来，但CGI就是接收不到。换成GET就可以，
&lt;img src ="aggbug/1296817.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>DarkEyes</dc:creator><title>完成 监控系统的云台球机控制解析代码</title><link>http://blog.csdn.net/freedarkeyes/archive/2006/09/25/1280133.aspx</link><pubDate>Mon, 25 Sep 2006 13:21:00 GMT</pubDate><guid>http://blog.csdn.net/freedarkeyes/archive/2006/09/25/1280133.aspx</guid><wfw:comment>comments/1280133.aspx</wfw:comment><comments>http://blog.csdn.net/freedarkeyes/archive/2006/09/25/1280133.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1280133.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1280133</trackback:ping><description>当我刚接到公司的这个任务安排时，真的是感觉自己若能按时完成，绝对是不可思议。不过，最后总算完成了。
当我看到，那个球机（银行内的监视摄像头 之类的玩意）在我的控制下四处转动时，那心情真是无以为言表。。

代码语言：C语言，平台LINUX

近日开始公司的另一个项目任务。
LINUX下，BOA WEB服务器下，用CGI（C语言写）完成公司设备的B／S网络配置管理模块的功能。
  一个新的征途开始了。&lt;img src ="aggbug/1280133.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>