摘要:
#修改键盘布局setxkbmap -layout us#给用户添加工作组usermod -G groupname username#解压Tar包至指定目录tar -xvf example.tar -C path/ 阅读全文
摘要:
今天在公司虚拟机上装MYSQL之后需要修改root password,然而遇到这样的错误:Access denied for user 'root'@'localhost' (using password:YES)后来在网上搜了下,找到如下解决办法,测试可用。# /etc/init.d/mysql ... 阅读全文
摘要:
附上如下代码可正常工作: .directive('placeholder', function($timeout){ var i = document.createElement('input'); if ('placeholder' in i) { ... 阅读全文
摘要:
工作中需要用到,在stackoverflow中找到的,实践证明可用。function decode_base64(s) { var e = {}, i, k, v = [], r = '', w = String.fromCharCode; var n = [... 阅读全文
摘要:
在windows下使用PHP连接MYSQL数据库,确定MYSQL的服务已经启动了,而且Workbench也是可以连上去的,但是始终网页测试都提示Access Denied。最终解决办法:set password for "root"@"localhost"="";将root账号的密码置空就可以成功连... 阅读全文
摘要:
#include #include #include #include #define ARRAYSIZE 10int data[ARRAYSIZE];void initData(){ int i = 0; srand((int)time(0)); for(;i data[inde... 阅读全文
摘要:
看《C专家编程》一书,看到数组与指针并不相同一章,遂做了一段测试:代码:#include #include int main(void){ char *p = "abcdefghijklmn"; printf("%p\n%p\n%p\n",&p,&p[0],p); return 0;}输出:可以看到... 阅读全文
摘要:
看到网上更多的是推荐使用递归,但是自己对递归一向有点头疼,所有使用穷举法求解。VS2005下测试通过。 1 /******************************************** 2 使用穷举法求解24点。 3 但是仍然有一个问题:对于1*2与2*1,因为顺序的关系, 4... 阅读全文