1. 图表plot2021-11-16

    bar plots 条形图 Multiple bar plots Stacked bar plot histogram 柱状图;分布图;柱形统计图 scatter plots 散点图;散点座标图;散布图 area plots pie plots 饼图 density plots 基本统计 boxplot 箱线图;箱图;盒式图 ...

    阅读全文
  2. 创建Weblogic Domain有三种方式,本文采用配置向导Configuration Wizard. 以下简称DCW。   示例环境:Weblogic 12.1.2 DCW 8-1:指定目录   DCW 8-2: 选择模板. 默认选择一个最基本的Domain,其不安装一些sample Applications.   DCW 8-3:创建管理员帐户,默认用户名为weblogic.   ...

    阅读全文
  3. 54370

    原文出处:https://www.scrumalliance.org/community/articles/2007/march/glossary-of-scrum-terms Glossary of Scrum Terms Burndown Charts Daily Scrum Meeting Impediments Product Backlog Product Backlog Item Product Backlog Item Effort P ...

    阅读全文
  4. 画一个简图帮助直观理解Javascript获取屏幕,页面,浏览器的高度的方法: 通过window.screenX, window.screenY来获取浏览器在当前屏幕的坐标。 通过window.innerWidth, window.innerHeigher来获取浏览器当前的宽和高。 通过window.scrollX, window.screenY来获取当前页面的滚动条移动情况。 而再获取当前页面的高度时,为了实现浏览器的兼容性,需要通过下面的方式获取最大值。 ...

    阅读全文
  5. 双十一购物清单: 【商场同款】波司登新款欧美高端短款连帽羽绒服女正品B1401050T http://item.taobao.com/item.htm?id=41375083379 【莫代尔】Jockey男士保暖内衣 修身柔软高弹保暖套装 秋衣秋裤 http://item.taobao.com/item.htm?id=40639688248 http://item.taobao.com/item.htm?id=35512799 ...

    阅读全文
  6. HttpClient Examples Response handling This example demonstrates how to process HTTP responses using a response handler. This is the recommended way of executing HTTP requests and processing HTTP responses. This approach enables the caller t ...

    阅读全文
  7. MySQLFull-Text Search功能学习摘要 全文搜索三种模式: 自然语言模式(Natural Language Full-Text Searches) 布尔模式(Boolean Full-Text Searches) 查询扩展模式(Full-Text Searches with Query Expansion) 使用全文搜索方法: #创建表格 CREATE TABLE FT_Supportable_Table (name ...

    阅读全文
  8. jQuery.extend = jQuery.fn.extend = function() { var src, copyIsArray, copy, name, options, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target == ...

    阅读全文
  9. 本文转自官方文档 https://mp.weixin.qq.com/debug/wxadoc/dev/framework/app-service/module.html   文件作用域 在 JavaScript 文件中声明的变量和函数只在该文件中有效;不同的文件中可以声明相同名字的变量和函数,不会互相影响。 通过全局函数 getApp() 可以获取全局的应用实例,如果需要全局的数据可以在 App() 中设置,如: ...

    阅读全文
  10. MVC - Model-View-Controller MVP - Model-View-Presenter MVVM - Model-View-ViewModel MVW / MV* - Model-View-Whatever Both MVP and MVVM are derivatives of MVC. The key difference between it and it’s derivatives&nb ...

    阅读全文
  11. 本文为spring cloud学习笔记,官方文档:https://cloud.spring.io/spring-cloud-static/Greenwich.SR1/ 官方文档内容比较多,大体分为下面几大部分: Cloud Native Applications Spring Cloud Context: Application Context Services Spring Cloud Commons: Common Abstractions ...

    阅读全文
  12. 在从App Store上下载Xcode后,默认是不会安装Command Line Tools的,Command Line Tools是在Xcode中的一款工具,可以在命令行中运行C程序。为了学习Objective-C,现在也来学习一下如何安装Command Line Tools,具体步骤如下: 在terminal中输入下面的命令即可:如果已经安装会提示已经安装。 xcode-select --install ...

    阅读全文
  13. 先从PHP的配置文件php.ini中的session段开始学习session,这里的配置会影响所有php程序。而PHP的Session函数则只针对其程序本身。 首先看一下php.ini中session的默认配置(查看可以跳过),官方文档。 [Session] ; Handler used to store/retrieve data. ; http://php.net/session.save-handler session.save_handler = files ...

    阅读全文
  14. 54880

    keep following things in mind: Everyone is good at estimating the small tasks which are always not bigger than 3 days. Big project can be divided into media tasks/features. Features can be divided into small tasks Tasks can be several typ ...

    阅读全文
  15. 常常写一个测试页面用<?php phpinfo();?>来查看php的配置信息。 通过shell也可以快速查看phpinfo. 比如查看ssl相关的信息 $ echo '<?php phpinfo(); ?>' | php 2>&1 |grep -i ssl 这样就可以列出仅仅ssl相关的设置。 Registered Stream Socket Transports => tcp, udp, un ...

    阅读全文
  16. 安装tensorflow时遇到的问题即解决方法。 安装tensoflow前的准备 (通过pip安装,如果还没有安装pip的话,可以通过下面的命令安装pip) curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py sudo python get-pip.py   安装命令: pip install tensorflow  ERROR: matplotlib 1.3.1 ...

    阅读全文
  17. 定义和摘要 Marshalling & Unmarshalling 常被翻译为列集和散集。 文字有点生硬。功能有点类似序列化和反序列化。有如下定义方式: 列集:将堆栈中的参数串行化送入一个平面(flat)存储器的过程。 散集:从flat读取参数数据,并且重建这个堆栈的过程。 wiki中这样解释列集: In computer science, marshalling or marshaling is the process of transforming ...

    阅读全文
  18. Apache Common Logging(JCL)简介可以参考官网的用户手册。 官方User Guide文档入口: http://commons.apache.org/proper/commons-logging/guide.html JCL简介: Jakarta Commons Logging (JCL)提供的是一个日志(Log)接口(interface),同时兼顾轻量级和不依赖于具体的日志实现工具。它提供给中间件/日志工具开发者一个简单的日志操作抽象,允许程 ...

    阅读全文
  19. 52520
  20. 这段代码是正在使用的一个小框架,发现extend的实现有点问题,于是深入研究下js的继承实现的细节问题。 Class=function(){ var klass = function(){ this.init.apply(this,arguments); } klass.prototype.init = function(){}; klass.supper = function(){}; klass.extend = ...

    阅读全文