排序
Bootstrap4显示和隐藏元素
Update for Bootstrap 4 (2018) The hidden-* and visible-* classes no longer exist in Bootstrap 4. If you want to hide an element on specific tiers or breakpoints in Bootstrap 4, use...
loadjs – javascript动态载入css和js文件
javascript动态载入css和js文件,简单方便,适合模块化设计。 源代码 /** * load.js 动态引入css或js文件 * * @author xenice <xenice@qq.com> * @date 2017.12.02 * @example * load('fi...
怎么将cos对象存储挂载至本地磁盘
COSFS 工具是一款将腾讯云 COS 挂载到本地的工具,能像使用本地文件系统一样直接操作对象存储中的文件.本文将简单介绍在 Linux 系统中的安装,配置和常规挂载命令,更详细的用法请参考下文中的相关...
清华大学《DeepSeek从入门到精通》的范式突围
《破壁者宣言:DeepSeek技术体系与认知边疆的重新勘定——再读清华大学《DeepSeek从入门到精通》的范式突围》 当算法文明遭遇认知穹顶,当算力狂飙撞上思维边界,清华大学《DeepSeek从入门到精...
使用curl测试API速度
// get请求,无输出 curl -o /dev/null -s -w time_namelookup:'\t'%{time_namelookup}'\n'time_connect:'\t\t'%{time_connect}'\n'time_appconnect:'\t'%{time_appconnect}'\n'time_pretransfe...
限制wordpress前端访问,后台和手机均可访问
只要在将以下代码加入functions.php文件开头最前面即可。 add_filter('template_include', function($template){ if(!minisi_is_mobile()){ if(is_home() || is_single() || is_page() || is_ca...