2*泉林本色(39.9)+1*清风纯水(42.9) + 3*妙洁垃圾袋(8.9)+1*泉林本色卫生卷纸(49.8)=199.2 -100(满188减100的券)=应付99.2元(正好免运费)四箱三袋 ...
阅读全文localization的一些示例以供参考。 本文示例均来源于Oracle官网Working with Localization Formatting章节,详细资料可以参考 http://docs.oracle.com/cd/E36909_01/fusionapps.1111/e15524/ui_localize.htm 货币的格式化 Example 20-1 Syntax of fnd:currencyPatternWithPrecisionAndSymbol fn ...
阅读全文JavaScript 实现是由以下 3 个不同部分组成的: JavaScript的核心: 对ECMAScript描述的实现 描述了该语言的语法和基本对象; DOM 描述了处理网页内容的方法和接口; BOM 描述了与浏览器进行交互的方法和接口。 Javascript Engine 关于Javascript引擎可以参考wiki,里面讲述了其历史以及不同浏览器使用的不同的JS引擎 http://en.wikipedia.or ...
阅读全文1)两数和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1] 来源:力扣(LeetCode) 链接 ...
阅读全文Prepositions Prepositions - 介词 介词可以与动词、名词或形容词连用,许多情况下,介词的用法需要单独记忆: from from next door (从隔壁) from my friend (从我的朋友那儿) of of gold (金质的) of the ci ...
阅读全文Redis下载和安装,可以参考官网https://redis.io/download $ wget http://download.redis.io/releases/redis-4.0.8.tar.gz $ tar xzf redis-4.0.8.tar.gz $ cd redis-4.0.8 $ make 安装后在src目录下启动redis $ src/redis-server 客户端可以使用命令行来连接和测试 $ src/redis-cli ...
阅读全文AngularJS 通过新的属性和表达式扩展了 HTML。AngularJS 可以构建一个单一页面应用程序(SPAs:Single Page Applications)。 AngularJS是采用了MVVM架构。 The following is the list of allowed and forbidden dependencies: 1.The View's code behind should not reference the ViewModel ...
阅读全文Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...
阅读全文JSON官网:json.org 了解不同语言对JSON的支持可以从官网上看到不同的实现。 这边这是一个简单的截图。 Java: JSON-java. JSONUtil. jsonp. Json-lib. Stringtree. SOJO. json-taglib. Flexjson. JON tools. Argo. jsonij. fastjson. mjson. jjson. json-simple ...
阅读全文有这样的一个数列:1, 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, 208012, 742900, 2674440, 9694845, 35357670, 129644790, 477638700, 1767263190, 6564120420, 24466267020, 91482563640, 343059613650, 1289904147324, 4861946401452, ... 数字递增十分快,所以让我们想到 ...
阅读全文weblogic Web Services学习,以weblogic 11.1.1.8为例开始学习,以ORACLE官网提供的教程和用户手册为学习资料。 书单列表: Introducing Web Services Introducing WebLogic Web Services for Oracle WebLogic Server Developer's Guide for Oracle Infrastructure Web Services Getting ...
阅读全文通过apache来访问svn, 这样就可以通过http来访问svn了。jinkens里配置svn url。 使用Apache访问SVN的优缺点: There are some disadvantages of using Apache's http for your Subversion server: It's slower It's harder to setup Then, there are advantages: It uses ...
阅读全文<<Java™ in a Nutshell: A Deskop Quick Reference >> docstore.mik.ua/orelly/java-ent/jnut/index.htm ...
阅读全文eclipse中设置UTF-8等其他字符集。 1.windows->Preferences -> General ->Workspace,右 侧Text file encoding,选择Other,改变为UTF-8。 2. 关闭eclipse并重新打开eclipse。 utf8文档的乱码消失。 这样设置针对整个workspace有效。 如果需要针对特定的文件类型更改字符集编码,则可以通过: 3.windows->Preferences ...
阅读全文spring-boot-autoconfigure-2.1.4.release.jar下的spring-autoconfigure-metadata.properties #Thu Apr 04 02:08:30 GMT 2019 org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration.AutoConfigureAfter=org.springframework.b ...
阅读全文在 Unix 平台下安装 PHP 有几种方法:使用配置和编译过程,或是使用各种预编译的包。 本文是在Linux下面自编译生成PHP的方法,主要参考官网提供的方法结合一些自身的情况: 从apache官网获取 Apache 源码包,然后解压: gzip -d httpd-2_x_NN.tar.gz tar -xf httpd-2_x_NN.tar 同样,获取 PHP 源码包并解压: gunzip php-NN.tar.gz tar -xf php- ...
阅读全文tensorflow object detection 框架介绍和使用 支持多种对象监测模型,包括SSDK/faster-RCNN/Mask-RCNN 支持不同的backend模型,包括mobilenet https://github.com/tensorflow/models/tree/master/research/object_detection 预训练模型结构解释 frozen_inference_grap ...
阅读全文Oracle ADF Export功能可以参考官网文档: http://docs.oracle.com/middleware/12212/adf/develop-faces/GUID-0E90B043-0304-4337-9857-EA2632C328E5.htm#ADFUI10031 下面的文章转自 http://waslleysouza.com.br/en/2014/05/export-table-to-excel-in-oracle-adf/ ...
阅读全文plantUML:http://plantuml.com/zh/class-diagram。 PlantUML是一个开源项目,支持快速绘制UML各类图表以及一些非UML图表。 plantText: https://www.planttext.com/ 是一个在线网站,可以用来设计UML以及生成代码。 UML图表有: 时序图 用例图 类图 活动图 组件图 状态图 对象图 部署图 定时图&n ...
阅读全文Ace Anchor BackgroundTokenizer Document EditSession Editor Range Scrollbar Search Selection TokenIterator Tokenizer UndoManager VirtualRenderer Ace API Reference Welcome to the Ace API Refe ...
阅读全文