本文参考 https://www.cnblogs.com/ios9/p/8018227.html#_label0_0 1 -----基本数据字典及其说明 2 select * from dba_tablespaces;---关于表空间的信息 3 select * from dba_ts_quotas ;---所有用户表空间的限额 4 select * from dba_free_space;--所有表空间中自由分区 5 select * fro ...
阅读全文有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和 无聊,写个js玩玩. 递归写法 function a(n){ if(n==1){return 1;} else if(n==2){return 2;} else{ return a(n-1)+a(n-2);} } function b(n){ return a(n+1)/a(n); } function sum(n){ ...
阅读全文写断打字效果的js. html: <p class="typeIn">This is the text typed in manually.This is the text typed in manually.This is the text typed in manually. This is the text typed in manually.This is the text typed in manually.</p> ...
阅读全文Ace Anchor BackgroundTokenizer Document EditSession Editor Range Scrollbar Search Selection TokenIterator Tokenizer UndoManager VirtualRenderer Ace API Reference Welcome to the Ace API Refe ...
阅读全文创建Weblogic Domain有三种方式,本文采用配置向导Configuration Wizard. 以下简称DCW。 示例环境:Weblogic 12.1.2 DCW 8-1:指定目录 DCW 8-2: 选择模板. 默认选择一个最基本的Domain,其不安装一些sample Applications. DCW 8-3:创建管理员帐户,默认用户名为weblogic. ...
阅读全文ADF是基于JSF的一种J2EE开发框架,为满足快速开发,实现可见即可得。其强大的点就是快速开发,实现99%的零代码开发,只需要配置配置就能实现一个系统。其强调数据,而非UI格式的定制化。 ADF是免费的,但是其主要部署在 weblgoic上,而weblogic是收费的,而且不便宜。 ADF也是一个MVC框架,不过将Model又细分为两层(Model,Business Service)。ADF Faces->ADF Controller->ADF Model(实现数据绑定 ...
阅读全文React的虚拟的DOM的原理是什么?是怎么实现的? 本文摘自 https://www.zhihu.com/question/29504639 链接:https://www.zhihu.com/question/29504639/answer/73607810 深度剖析:如何实现一个 Virtual DOM 算法 · Issue #13 · livoras/blog · GitHub ...
阅读全文1. 这个Docker视频demo了一个Docker的应用场景: https://www.youtube.com/watch?v=YFl2mCHdv24 ...
阅读全文