上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页
摘要: U盘量产 搞了块U盘显示128G 感觉是假的 , 看U盘主控 使用chipgenius 看不到,拆开后发现主控为 CBM2099SW flash为SDTNTCAMA-032G 确定是32G 下载aptool V7100 能识别到 设置擦除了量产信息 U盘容量恢复 但无法识别,需要量产 下载了好几个芯 阅读全文
posted @ 2020-09-10 19:21 wolbo 阅读(880) 评论(0) 推荐(0)
摘要: Use a for loop: for d in $(find /path/to/dir -maxdepth 1 -type d) do #Do something, the directory is accessible with $d: echo $d done >output_file It 阅读全文
posted @ 2020-09-01 11:22 wolbo 阅读(406) 评论(0) 推荐(0)
摘要: Username : username Password : password Database : //123.45.67.89:1521/orcl/ Connect as : Normal 阅读全文
posted @ 2020-09-01 09:25 wolbo 阅读(211) 评论(0) 推荐(0)
摘要: 1 下载 https://www.archlinux.org/download/ 2 安装 https://wiki.archlinux.org/index.php/Installation_guide_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87) 安装完grub 记 阅读全文
posted @ 2020-08-27 21:50 wolbo 阅读(442) 评论(0) 推荐(0)
摘要: 解压文件夹:unzip 压缩文件名.zip “*/目录名/*.*” -d 目标文件夹名字 解压指定的文件:unzip 压缩文件名.zip “*/文件名.后缀” -d 目标文件夹名字 以上解压会保留zip中的完整目录结构 如 unzip aaa.zip 'gscloud/gscloud/*' -d / 阅读全文
posted @ 2020-08-25 11:07 wolbo 阅读(22158) 评论(0) 推荐(1)
摘要: <farris-button id="openReport" class="d-none" (click)="farrisDialog.show()">Open Dialog</farris-button> <ng-template #buttonRef> <farris-button (click 阅读全文
posted @ 2020-08-22 14:38 wolbo 阅读(702) 评论(0) 推荐(0)
摘要: //基本版var groupBy = function(xs, key) { return xs.reduce(function(rv, x) { (rv[x[key]] = rv[x[key]] || []).push(x); return rv; }, {}); }; console.log(g 阅读全文
posted @ 2020-08-21 16:09 wolbo 阅读(360) 评论(0) 推荐(0)
摘要: demo: http://demo.nimius.net/debounce_throttle/ 目的:降低事件触发频率 消抖(debounce): 连续触发的事件,忽略掉间隔小于消抖时长的事件,间隔大于消抖时长时触发一次 如坐电梯 节流(throttle): 连续触发的事件 节流时长内 只触发一次 阅读全文
posted @ 2020-08-19 11:30 wolbo 阅读(219) 评论(0) 推荐(0)
摘要: 1 找一个目录 右键open as idea project 2 新建java模块 3 新建gui form 4 拖拽编码就ok了 主: 如果新建gui form时没有这个选项 去插件里打开这个插件 5 在代码里 按住alt + insert 选择 formmain 生成main函数 6 添加mav 阅读全文
posted @ 2020-08-05 15:32 wolbo 阅读(5337) 评论(0) 推荐(1)
摘要: --查看锁了哪些表 select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from v$locked_object lo, dba_objects ao, 阅读全文
posted @ 2020-07-31 09:33 wolbo 阅读(140) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页