2018年4月24日

如何从头开始安装 wordpress

摘要: https://www.tecmint.com/install-wordpress-apache-nginx-rhel-centos-fedora/ 阅读全文

posted @ 2018-04-24 17:26 齐文宣 阅读(96) 评论(0) 推荐(0) 编辑

centos 6 安装 gnu c++ 等开发工具

摘要: source site : https://support.eapps.com/index.php?/Knowledgebase/Article/View/438/55/user-guide installing-the-centos-development-tools-gcc-flex-etc 阅读全文

posted @ 2018-04-24 16:15 齐文宣 阅读(247) 评论(0) 推荐(0) 编辑

2018年4月23日

在 centos 6 安装 apache+mysql+php+

摘要: 来源网站 : https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6 About LAMP LAMP stack is a group 阅读全文

posted @ 2018-04-23 15:03 齐文宣 阅读(222) 评论(0) 推荐(0) 编辑

vmware unrecoverable error vmx 的解决办法

摘要: https://kb.vmware.com/s/article/2032746 阅读全文

posted @ 2018-04-23 13:19 齐文宣 阅读(189) 评论(0) 推荐(0) 编辑

2018年4月4日

一道算法题的解法,不知对错

摘要: 在别人的博客发现这样一道题: http://www.cnblogs.com/guoyaohua/p/8711911.html 我的思路是这样的: 如果 N < K , 方案数为0 , 因为不满足每种至少一个的要求 如果 N = K , 方案数为 k! , k的阶乘 如果 N > K , 比如 N 比 阅读全文

posted @ 2018-04-04 17:27 齐文宣 阅读(176) 评论(0) 推荐(0) 编辑

2018年3月19日

java 怎么调试到第三方库的内部,在有源码的情况下

摘要: 第一步, 把第三方库加到workspace : https://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library The most sure-fire way 阅读全文

posted @ 2018-03-19 18:07 齐文宣 阅读(263) 评论(0) 推荐(0) 编辑

c程序实现一道简单的算法题

摘要: 在别人博客看到这样一道题: 有足够的1分 ,2分,5分硬币 , 请问有多少种方法拼出1快 我的思路: 从需要多少个硬币想起 , 如果全用5分的, 需要20个 全用1分的,需要100个 就是说 , 不管有多少种方法,需要的硬币数最多100,最少20 设需要 5分硬币数量为x , 2分为y, 1分为z 阅读全文

posted @ 2018-03-19 09:47 齐文宣 阅读(482) 评论(0) 推荐(0) 编辑

2018年3月15日

帮别人做作业, 用c语言实现一个字符stack

摘要: 程序要实现的效果如下图 实现代码: 要点 : 用 realloc 函数重新分配数组大小 读取单个字符时, 注意前面加空格 scanf(" %d", &iUserChoice); 编译方法 : Linux : gcc -o Source Source.c windows : cl Source.c 阅读全文

posted @ 2018-03-15 12:35 齐文宣 阅读(423) 评论(0) 推荐(0) 编辑

c程序scanf 数字或者字符的问题

摘要: 要在前面加一个空格 , 写作 或者 原因见 : https://gsamaras.wordpress.com/code/caution-when-reading-char-with-scanf-c/ 阅读全文

posted @ 2018-03-15 09:57 齐文宣 阅读(580) 评论(0) 推荐(0) 编辑

2018年3月13日

如何在 centos 7 编译安装 freediameter

摘要: 官方文档: http://www.freediameter.net/trac/wiki/Installation 先安装所需的第三方库 : 如果没有, 下载并编译安装 cmake 下载freediameter源文件并解压到某路径 , in my case , is : /home/liuyang/f 阅读全文

posted @ 2018-03-13 12:54 齐文宣 阅读(952) 评论(0) 推荐(0) 编辑

导航