Intelligence without ambition is a bird without wings.

2015-05-31
宏-函数名

| Compile | __FUNCSIG__ | __FUNCDNAME__ | __FUNCTION__ | __func__ | __PRETTY_FUNCTION__ |
|———+—————+—————–+—————-+————+———————–|
| GCC | X | X | √ | √ | √ |
| VC | √ | √ | √ | X | X |

参考

  1. https://gcc.gnu.org/onlinedocs/gcc/Function-Names.html
阅读此文

2015-05-30
centos-本地镜像源设置

  • 挂载镜像文件

    mkdir /mnt/cdrom
    mount /dev/cdrom /mnt/cdrom
    
  • 编辑repo文件

    vim /etc/yum.repos.d/centos7-local.repo
    
    [local]
    name=local
    baseurl=file:///mnt/cdrom
    enabled=1
    gpgcheck=1
    gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-CentOS-7
    
阅读此文

2015-05-30
centos-配置网络

  • 安装numtui

    yum install NetworkManager-tui
    
  • 编辑

    nmtui
    
阅读此文

2015-05-29
cgi-常见错误定位

  • 500

    cgi输出不符合规范!

阅读此文

2015-05-29

  • 没有更好的办法之前,先用笨办法解决问题

  • 区分代码版本

阅读此文

2015-05-27
APP后台设计

设计准则

API设计

  • 重要页面尽量配合app

数据返回格式

参考

  1. http://blog.csdn.net/newjueqi/article/details/44037011
阅读此文

2015-05-25
linux-同步网络时间

ntpdate time.windows.com && hwclock --systohc --localtime
阅读此文

2015-05-23
xshell字符乱码

【文件】=> 【属性】=> 【终端】=>【编码】(Unicode-UTF-8)

阅读此文

2015-05-22
sql-常用语句

  • 修改列类型

    ALTER TABLE <table-name> MODIFY COLUMN <col-name> <new-datatype>;
    
阅读此文

2015-05-22
apache-常见错误

  • 403

    SELinux没有关闭或设置权限

阅读此文