降低0.117v sudo wrmsr 0x150 0x80000211f1000000 sudo wrmsr 0x150 0x80000011f1000000 ...
分类:
系统相关 时间:
2021-02-06 11:47:16
阅读次数:
0
目前是:common / css 里面所有的内容 公共样式,目前都写在:custom.css里面 iconfont.css :图标库 colorUI :??没看懂。。 public.scss : 可以编译的css ,写了很多公共的类,例如:间距,字体大小,边框,高度,宽度等。 color.scss ...
分类:
其他好文 时间:
2021-02-06 11:46:20
阅读次数:
0
参考:http://www.voidcn.com/article/p-mckvczfj-ov.html 解决 Oracle 数据库文件自动扩展到 32G 后报错 ORA-01563 的问题 create or replace procedure auto_add_datafile is ALL_fi ...
分类:
数据库 时间:
2021-02-05 10:42:34
阅读次数:
0
分享一些我常用的代码优化技巧,希望对你有帮助。 1. 多表达式多 if 判断 我们可以在数组中存储多个值,并且可以使用数组include方法。 1 // 长 2 if (x 'abc' || x 'def' || x 'ghi' || x 'jkl') { //logic} 3 // 短 4 if ...
分类:
编程语言 时间:
2021-02-05 10:39:53
阅读次数:
0
结构分析 码上行动 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>页面结构分析</title> </head> <body> <header> <h2>网页头部</h2> </header> <secion ...
分类:
Web程序 时间:
2021-02-05 10:35:58
阅读次数:
0
let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 ...
分类:
其他好文 时间:
2021-02-04 11:52:57
阅读次数:
0
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:
移动开发 时间:
2021-02-04 11:48:59
阅读次数:
0
createWebHistory路由模式路径不带#号(生产环境下不能直接访问项目,需要nginx转发) http://localhost:8080/#/ const router = createRouter({ history: createWebHistory(), routes }); cre ...
分类:
其他好文 时间:
2021-02-02 11:14:24
阅读次数:
0
在以往keil-STM32调试代码时没有遇见过这个问题 代码书写不规范导致的 unsighned char value=100; value = (unsighned int)value*99/100; 在调试过程中 没有对value进行强制类型转换 所以导致输出的目标值不对 还有一个问题 在ICC ...
分类:
其他好文 时间:
2021-02-02 11:07:41
阅读次数:
0
语法:https://www.runoob.com/css/css-syntax.html <!DOctype html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> body{bockground-color:#d ...
分类:
Web程序 时间:
2021-02-02 10:52:40
阅读次数:
0