摘要:
pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /nor 阅读全文
2023年5月4日
2022年11月6日
摘要:
字母大小写转换规则,例如 char c : 互相转(大转小,小转大), 异或32, c ^ 32 大转小,小不变,或 32, c | 32 小转大,大不变,与非32, c & ~32 阅读全文
2021年8月31日
摘要:
webstorm 问题:打开前台项目,index时间过长, 解决:在node_modules 文件夹上点击右键,make directory as —>excluded IntelliJ IDEA: 问题:Unregistered VCS root detected. The directory…i 阅读全文
2021年1月23日
摘要:
删除了Ubuntu系统所有分区后,Windows的EFI分区里仍然会有Ubuntu系统的引导,重新开机会出现黑屏grub。 字样显示:GRUB Minimal BASH-like line editing is supported.For the first word.TAB lists possi 阅读全文
摘要:
当代计算机1s计算达百万次 复杂度 数量级 最大规模 O(logN) >>10^20 很大 O(N^1/2) 10^12 10^14 O(N) 10^6 10^7 O(NlogN) 10^5 10^6 O(N^2) 1000 2500 O(N^3) 100 500 O(N^4) 50 50 O(2^ 阅读全文
2019年9月4日
摘要:
1 import java.util.Arrays; 2 3 /** 4 * Created by asus on 2019/9/4. 5 */ 6 public class MyArraySort { 7 public static void main(String[] args) { 8 int[] data = {2,1,3,4,-1, 9 , 8}; 9 MyArraySort m = n 阅读全文
2019年7月10日
摘要:
An identifying relationship means that the child table cannot be uniquely identified without the parent. For example, you have this situation in the i 阅读全文
2019年6月18日
2019年6月3日
摘要:
dd删除当前行 ndd 从光标当前位置向下删除n行 dgg 从当前光标位置删到第一行 dG 从当前位置删到最后一行 d$ 从当前位置删至行末 d^或者d0 从当前位置删至行首 dw 删除一个单词 x删除当前字符,X删除前一个字符 nx 向后连续删n个字符 yy复制当前行 nyy 从当前位置向下复制n 阅读全文
2019年5月17日
摘要:
红灯蓝灯闪,初始化中,请稍等 黄灯双闪,错误,系统拒绝解锁 黄灯闪,遥控器关闭 黄灯快速闪且滴滴响,电池保护激活 蓝灯。。。 未见过。。。。 绿灯闪: 已加锁,GPS锁定已获得。 准备解锁。 从加锁状态解锁时,会有快速的两次响声提示。 绿灯长亮加单次长响:GPS锁定并且解锁。 准备起飞 黄灯蓝灯闪加 阅读全文