Vim寄存器

vim十种寄存器 双引号代表的匿名寄存器,默认寄存器: "" 10个数字寄存器 “0 to 9 小删除寄存器 “-” 字母寄存器 “a to z or A to Z 只读寄存器冒号点号百分号 “:, “., “% 与buffer交……

阅读全文

Github术语

GitHub Actions 有一些自己的术语。 (1)workflow (工作流程):持续集成一次运行的过程,就是一个 workflow。 (2)job (任务):一个 workflow 由一个或多个 jobs 构成,含义……

阅读全文

java重构

refector Extract Method Move Method Replace Conditional with Polyorphism Self Encapsulate Field Replace type code with State/Strategy……

阅读全文

Oralce查看根路径

Oracle查看树形数据路径: 1 2 3 4 5 select CONNECT_BY_ROOT title, --(根数据), -- (路径) sys_connect_by_path(title, '-->' ),level, --(层次) start with condition connect by parent_id = prior id……

阅读全文

Oracle恢复数据

Oracle 恢复数据如下: 1 2 -- 15分钟之前 select * from tablename as of timestamp sysdate-15/1440……

阅读全文

Oracle空值排序

Oralce 空值排在前,或排在后边: 1 2 3 4 5 -- oracle 空值排序,排在最前面或者最后面 -- 1: order by name nulls first; -- 2: order by name nulls last;……

阅读全文

oracle合并数据

Oracle提供了merge into语法,如果数据不存在 就创建,如果数据已经存在就更新数据。用法如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 MERGE INTO tablea A USING tableb B ON ( A.id = B.id ) WHEN MATCHED THEN……

阅读全文

emacs设置中英文语言

2.(同时解决emacs使用卡顿现象) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ;; 更改显示字体大小 16pt ;; http://stackoverflow.com/questions/294664/how-to-set-the-font-size-in-emacs (set-face-attribute 'default nil :family "Fira Code Retina") (set-frame-font "Fira Code Retina:pixelsize=20") ;;中文字体的设置,同时解决中英文字体宽度不一致……

阅读全文

win10端口占用

解决wind10端口占用 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ::查看所有端口 $netstat -ano rem #result: Active Connections Proto Local Address Foreign Address State PID TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 1088 ::过滤指定端口64939获取PID $netstat -ano | findstr "64939" ::使用p……

阅读全文