参考资料: https://docs.gitea.io/en-us/install-from-binary/ https://cloud.tencent.com/developer/article/1198275 https://blog.csdn.net/rocshaw/article/detai ...
分类:
其他好文 时间:
2020-06-05 23:11:57
阅读次数:
112
I think the explanation from the Mozilla Docs describes it well: You can assign a different this object when calling an existing function. this refers ...
分类:
移动开发 时间:
2020-06-04 14:04:51
阅读次数:
92
CSS 原生支持变量 不需要 各种预编译器 放 mdn 链接 https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties 直接点 个人喜欢用 :root :root 伪类上设置自定义属性,然后在整个文档需要 ...
分类:
Web程序 时间:
2020-06-03 23:22:29
阅读次数:
88
干货列表: 1、入门必读!Apache Flink 零基础系列教程,30 天成长为 Flink 大神! https://developer.aliyun.com/article/753999?utm_content=g_1000133260 2、首次开放!阿里巴巴CIO学院独家教材《给ITer的技术 ...
分类:
其他好文 时间:
2020-06-02 13:23:17
阅读次数:
129
4.9、Helm 4.9.1、简单使用 概念 文档:https://github.com/helm/helm/blob/master/docs/charts.md 阿里云apphub:https://developer.aliyun.com/hub/ 在没使用 helm 之前,向 kubernete ...
分类:
其他好文 时间:
2020-05-31 21:50:09
阅读次数:
86
1、点击空白页面,然后选择测试窗口。 2、点击完之后就会弹出一个测试窗口的页面 3、然后就可以输入sql进行调试 -- Created on 2020/5/30 by 123 declare -- Local variables here i integer; O_MSG VARCHAR2(50); ...
分类:
数据库 时间:
2020-05-30 15:53:10
阅读次数:
158
adb命令:官方参考网址:https://developer.android.google.cn/studio/command-line/adb?hl=zh-cn#-t-option 1、adb shell dumpsys meminfo 包名.apk ——查看指定包名应用内存使用情况 adb sh ...
分类:
数据库 时间:
2020-05-30 15:40:22
阅读次数:
104
1、while 循环:当条件成立执行循环体,否则跳出循环 语法结构 while 条件 loop 循环体 end loop; eg:1加到3的循环体 declare ls_number number:=0;--结果值i number:=1;--计数器begin while i<=3 loop ls_n ...
分类:
数据库 时间:
2020-05-28 16:32:29
阅读次数:
76
账号管理 Linux系统:多用户多任务的分时操作系统。 1.账户分类: 唯一的用户名--各自口令 root账户 最高权限用户 普通账户 可向root账户申请权限 其他任何一个要使用系统资源的用户,必须向root系统管理员申请一个账号,然后以这个账号进入系统。 2.用户账户的作用: ? 一方面可以帮助 ...
分类:
其他好文 时间:
2020-05-27 18:23:49
阅读次数:
87
高性能MySQL——count(*) 和 count(1)和count(列名)区别 摘自: https://cloud.tencent.com/developer/article/1401567 https://mp.weixin.qq.com/s/MCFHNOQnTtJ6MGVjM3DP4A 执行 ...
分类:
数据库 时间:
2020-05-26 18:09:41
阅读次数:
105