Others
文章平均质量分 80
wengocn
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
软件开发流程安排(以Python语言为例说明)
下面以Python语言为例来说明软件开发流程的安排 对于软件开发,编写实现功能的代码只是软件开发的很小的一部分,其前前后后还要包括很多的内容,下面具体来列出了设计,编码,静态代码分析,测试,调优这四步来说 1)设计 这涉及到系统设计,实现设计,当然这里面涉及到架构,涉及到模式等 2)编码 就是使用编辑器来编写代码,具体不同的语言有着不同的编译器,像python就有pydev+eclipse...2009-04-02 22:39:37 · 769 阅读 · 0 评论 -
在FreeBSD 7.1上安装MySQL 6.0.10
1. su - root切换到root的环境下,便于使用ports 2. cd /usr/ports/databases/mysql60-server,然后make install clean,即安装完了mysql 6.0.10的服务器端和客户端的应用程序 3. rehash一下,这样可以访问mysql_install_db等命令 4. mysql_install_db --user=my...2009-04-19 20:23:16 · 115 阅读 · 0 评论 -
semaphore (freebsd)系统调用与例子
第一部分:创建semaphore,设置semaphore,最后进行v操作 #include <stdio.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/sem.h> #include <string.h> #include <stdlib....2009-04-23 23:31:53 · 205 阅读 · 0 评论 -
UNIX IPC之共享内存(shared memory)实例
服务器端: #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/ipc.h> #include <sys/shm.h> #define SHM_SIZE 26 ...2009-04-25 22:21:56 · 186 阅读 · 0 评论 -
c语言格式化时间
#include <time.h> #include <sys/time.h> #include <stdio.h> #include <stdlib.h> #include <string.h> const char* current_time() { struct timeval now; static ...2009-05-19 22:03:58 · 582 阅读 · 0 评论 -
简单介绍个性化推荐系统
版权信息:可以任意转载, 转载时请务必以超链接形式标明文章原文出处 ,谢谢 原文出处: http://brianlicn.appspot.com/2010/07/9/introduction_to_recommender_system.html 个性化推荐系统是一门由数据挖掘(Data Mining)和机器学习(Machine Learning)综合的学科。毕竟现...2010-07-09 12:14:16 · 437 阅读 · 0 评论
分享