简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
参考文章: https://blog.51cto.com/13059784/2054378xfs文件修复参考1: https://codeday.me/bug/20181112/367781.htmlxfs文件修复参考2:https://blog.51cto.com/dangzhiqiang/1657511xfs文件修复参考3 :https://blog.csdn.net/runmi...
前言:我之前安装好docker了,但是关机重启后,发现docker就没了报错:Failed to restart docker.service: Unit not found.解决方法:1.重装大法,法力无边a.先卸载上个版本的相关软件yum -y remove docker docker-common docker-selinux do...
linux输入yum后提示: -bash: /usr/bin/yum: No such file or directory的解决方案今天在安装程序时,发现有一个插件未安装,我就随手敲了一个命令,看都没看yum remove yum然后就杯具了...1[root@localhost ~]# yum2...
转载于:https://www.cnblogs.com/yytlmm/p/11434691.html
GCC与Dev-Cpp都是支持C99的,但其默认值不是C99标准,为了使用C99语法可以进行如下操作:(1) GCC编译时加入编译选项 -std=C99 (注意C为大写)(2) Dev-Cppstep1 工具->编译选项->编译器选项卡中,在"编译时加入以下命令"复选框前打钩,里面输入命令 -std=c99 (与GCC不同,这里c99中的字母c是...
https://github.com/alyssaq/face_morpher转载于:https://www.cnblogs.com/guochen/p/6893593.html
一. 文档清晰 tencent同事.推荐https://www.chenyudong.com/archives/use-git-or-github-in-company-local-net.html转载于:https://www.cnblogs.com/jhj117/p/6340370.html
springmvc只是spring其中的一部分。spring 可以 支持 hibernate ,ibatis ,JMS,JDBC支持事务管理, 注解功能,表达式语言,测试springmvc 就是一个简单的web 框架,上手很快,可以代替SSH框架。springmvc 比 struts2 性能优一些spring 是是一个开源框架,是为了解决企业应用程序开发,功能如下◆...
# 写一个判断是小数的函数def is_float(s):s = str(s)if s.count('.') == 1:s_left = s.split('.')[0]s_right = s.split('.')[1]if s_left.isdigit() and s_right.isdigit():retur...
typedef CStringElementTraits<CString> StringTraits;typedef CAtlMap<CString, SettingItem, StringTraits> SettingItemMap;转载于:https://www.cnblogs.com/Mingxx/archive/2012/10/18/2729039.h...