10 2013 档案

摘要:下面是一些迄今为止最好的关于编程的名言名句。阅读它们时相信你会有几分愉悦,你可以在一些会谈场合引用它们,一定能为你的团队吸引到不少的好程序员。UNIX很简单。但需要有一定天赋的人才能理解这种简单。–Dennis Ritchie软件在能够复用前必须先能用。–Ralph Johnson优秀的判断力来自经验,但经验来自于错误的判断。–Fred Brooks‘理论’是你知道是这样,但它却不好用。‘实践’是... 阅读全文
posted @ 2013-10-31 10:37 test.cfs 阅读(118) 评论(0) 推荐(0)
摘要:不管你是一个新手还是精通Ubuntu和Windows的大牛,让Windows访问Ubuntu文件的最好的方式都是使用Samba。通过许多第三方工具可以很轻松的安装和管理。对于想要了解怎么从Windows快速访问Ubuntu文件的新用户或者新手来说,这篇短文将会告诉你该怎么做。我们的目标是要帮助新用户。我们尽量将这篇教程写得通俗易懂,以便让新手看懂而不会遇到太大的困难。在这里我们不会太注重了解Sam... 阅读全文
posted @ 2013-10-23 22:03 test.cfs 阅读(283) 评论(0) 推荐(0)
摘要:树莓派(Raspbeery Pi) 是一款只有一张信用卡大小的单一主板计算机。它由英国的树莓派基金会所开发,目的是以低廉的硬件及自由软件推进学校的基础计算机教育。 树莓派是由有生产许可的Newark element14 (Premier Farnell)、 RS Components 和 Egoman公司所生产的,这些公司都在网上出售树莓派。Egoman生产的版本主要销售到中国大陆和台湾地区,可以... 阅读全文
posted @ 2013-10-23 21:58 test.cfs 阅读(705) 评论(0) 推荐(0)
摘要:编辑 httpd.conf 搜索“LoadModule rewrite_module modules/mod_rewrite.so”,去掉前面的“#”;到“AllowOverride None”改为“AllowOverride All”如配置了多站点,在httpd-vhosts.conf文件里也要把“AllowOverride None”改为“AllowOverride All” 重启后可通过.... 阅读全文
posted @ 2013-10-16 11:58 test.cfs 阅读(100) 评论(0) 推荐(0)
摘要:方法很多,不一一叙述。1.打开httpd.conf 去掉“#Includeconf/extra/httpd-vhosts.conf” 前的注释2.确认配置:AllowOverride allRequire all granted3.注释掉一些语句#ServerAdmin admin@localhost#ServerName localhost:80#DocumentRoot "c:/wamp... 阅读全文
posted @ 2013-10-14 11:38 test.cfs 阅读(113) 评论(0) 推荐(0)
摘要:环境:wamp架设多网站在httpd-vhosts.conf 文件后加入ServerName 6856.ccRedirectMatch Permanent ^/(.*) http://www.6856.cc/$1 阅读全文
posted @ 2013-10-14 09:55 test.cfs 阅读(187) 评论(0) 推荐(0)
摘要:一:更改树莓派前面那个FAT32分区里的config.txt,修改或加入以下项目:hdmi_group=****hdmi_mode=****hdmi_ignore_edid=0xa5000080CEA分辨率以下是CEA规定的电视规格分辨率。这些分辨率的hdmi_group=1。hdmi_mode=1 VGAhdmi_mode=2 480p60Hzhdmi_mode=3 480... 阅读全文
posted @ 2013-10-13 02:45 test.cfs 阅读(1188) 评论(0) 推荐(0)
摘要:insert into mysql.user(Host,User,Password) values('localhost','用户名',password('密码')); 阅读全文
posted @ 2013-10-12 15:11 test.cfs 阅读(115) 评论(0) 推荐(0)
摘要:使用root登录,执行sql语句。insert into mysql.user(Host,User,Password) values('localhost','用户名',password('密码')); //添加用户flush privileges; //刷新数据库create database 数据库名; //新建数据库grant all privileges on 数据库名.* to 用... 阅读全文
posted @ 2013-10-12 15:08 test.cfs 阅读(160) 评论(0) 推荐(0)
摘要:1.本地登录phpmyadmin执行:update user set password=password('123456') where user='root'; //更改密码FLUSH PRIVILEGES; //刷新数据库 2.修改文件:wamp\apps\phpmyadmin3.1.1\config.inc.php 将passwd值改为上步设置密码$cfg['Servers'][$i][... 阅读全文
posted @ 2013-10-12 14:51 test.cfs 阅读(200) 评论(0) 推荐(0)
摘要:修改httpd.confAllow from 127.0.0.1改为Allow from allphpmyadmin同理配置文件:\wamp\alias\phpmyadmin.conf 阅读全文
posted @ 2013-10-12 14:39 test.cfs 阅读(133) 评论(0) 推荐(0)
摘要:wordpress搬家后,文章图片调用网站绝对路径,因更换了域名,故图片全挂。进mysql,执行:UPDATE 数据表名 SET 字段名 = replace(字段名, '要替换的字符串', '替换为') ;例:UPDATE wp_posts SET post_content = REPLACE( post_content, '原内容', ' 新内容' ) ; 阅读全文
posted @ 2013-10-12 14:33 test.cfs 阅读(140) 评论(0) 推荐(0)
摘要:this is fuck test .please wu shi 阅读全文
posted @ 2013-10-12 14:06 test.cfs 阅读(136) 评论(0) 推荐(0)
摘要:原文:http://www.backtrack-linux.org/wiki/index.php/RFID_Cooking_with_Mifare_Classicroot@bt:~# nfc-mfclassic --help Usage: nfc-mfclassic r|w a|b []r|w - Perform read from (r) or write to (w) card a|b - ... 阅读全文
posted @ 2013-10-07 10:41 test.cfs 阅读(718) 评论(0) 推荐(0)