create directory mydata as '逻辑目录路径'; 例如: create directory mydata as '/data/oracle/oradata/mydata'; grant read,write on directory mydata to public sele ...
分类:
其他好文 时间:
2020-07-02 16:41:40
阅读次数:
51
在已有dom元素上创建一个vue组件 <div id="app"> </div> var app = new Vue({ el:'#app', data:{ message:'', } }) 自定义vue组件: <div id="app"> <my-example></my-example> </d ...
分类:
其他好文 时间:
2020-07-02 16:25:48
阅读次数:
52
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. Example: I ...
分类:
其他好文 时间:
2020-07-02 00:08:21
阅读次数:
53
CSS 中文开发手册 直列大小 | inline-size (Logical Properties) - CSS 中文开发手册 这是一种实验技术 由于该技术的规格不稳定,请查看各种浏览器的兼容性表格以供使用。还要注意,随着规范的变化,实验技术的语法和行为在未来版本的浏览器中可能会发生变化。 inli... ...
分类:
Web程序 时间:
2020-07-01 23:59:40
阅读次数:
76
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:
其他好文 时间:
2020-07-01 13:03:53
阅读次数:
97
Function(还没弄完...等下继续) "LSOR" SORTING BLOCK 1 : Ascending -1: Descending Example ['4','1','9','8','2','10','3','7','6','5'] => ['1','2','3','4','5','6&... ...
分类:
编程语言 时间:
2020-07-01 12:59:21
阅读次数:
73
题目: 给定head(头节点),它是单链表的参考节点。 链表中每个节点的值为0或1。链表中包含数字的二进制表示形式。返回链接列表中数字的十进制值。 Example 1: Input: head = [1,0,1] Output: 5 Explanation: (101) in base 2 = (5 ...
分类:
其他好文 时间:
2020-07-01 09:22:38
阅读次数:
54
第一步:cd进入你放项目文件的地址,我的地址在D:\MYFILE\graduation\study\项目程序 第二步:输入git init 这个意思是在当前项目的目录中生成本地的git管理(会发现在当前目录下多了一个.git文件夹,改文件夹是隐藏的) 第三步:输入git add . 这个是将项目上所 ...
分类:
其他好文 时间:
2020-06-30 20:30:04
阅读次数:
54
实际开发工作中经常用到json数据,那么就会有这样一个需求:在谷歌浏览器中访问URL地址返回的json数据能否按照json格式展现出来。 比如,在谷歌浏览器中访问:http://jsonview.com/example.json 展现效果如下: 那么安装了JsonView扩展程序后的展现效果如下: ...
分类:
Web程序 时间:
2020-06-30 14:30:18
阅读次数:
92
搭建wordpress docker run --name db --env MYSQL_ROOT_PASSWORD=example -d mariadb docker run --name MyWordPress --link db:mysql -p 8080:80 -d wordpress do ...
分类:
其他好文 时间:
2020-06-30 13:11:44
阅读次数:
57