NYSE, NASDAQ Vocabulary: 熊市:bear 牛市: bull 股票: share 保证金,债券: security 交易所: exchange 经纪人: broker 商品: commodity 货币: currency 期货: feature 股息,红利: dividend 债券: bond 股票,股份: share 买卖的特权,选择权: option 普通股:common stock 优先股: preferred stock 派生 ...
阅读全文当把apache2.2的配置文件修改后在apache2.4中运行遇到了这个问题:[access_compat:error] [pid 6095] [client ::1:53090] AH01797: client denied by server configuration。 这个问题与2.2及2.4的版本在访问认证和授权方面又很大的修改。具体可以查看官方wiki: https://wiki.apache.org/httpd/ClientDeniedByServerConfig ...
阅读全文Deployment to application servers uses deployment profiles which rely on project metadata for the default mappings. Default contributors to the profiles are based on project dependencies, although you can customize the deployment profiles to change t ...
阅读全文如何在bash中设置一个变量的值为某指令的输出? 如希望将变量variable的值设置为ls -al的输出。 方法是: variable="$(ls -al)" echo $variable 注意是"$(指令)" 也可以是 variable=`ls -al` echo $variable 这里不是单引号,而是backticks 参考文档: http://stackoverflow.co ...
阅读全文本文为学习官方文档的学习笔记,单纯知识点摘要。官方文档: https://docs.spring.io/spring/docs/current/spring-framework-reference/data-access.html#spring-data-tier 1) Transaction Management Advantages of the Spring Framework's Transaction Support Model Glob ...
阅读全文参考创建新的 React 应用 cd ~/Documents/company/officalwebsite/ npx create-react-app soosccweb 终端log: Created git commit. Success! Created soosccweb at /Users/jason/Documents/company/officalwebsite/soosccweb Inside that directory, you can ...
阅读全文http://business.sohu.com/20130930/n387488018.shtml 自贸区六大开放领域 金融服务领域 包括允许符合条件的外资金融机构设立外资银行;设立外资专业健康医疗保险机构;融资租赁公司设立的单机、单船子公司不设最低注册资本限制。 航运服务领域 放宽中外合资、中外合作国际船舶运输企业的外资股比限制;先行先试外贸进出口集装箱在国内沿海港口和上海港之间的沿海捎带业务。 ...
阅读全文本文收集了一些css3示例网站。 这些网站有: https://1stwebdesigner.com/css-effects/ https://tympanus.net/Tutorials/SwatchBook/index5.html https://nettuts.s3.amazonaws.com/771_sticky/step5.html https://designmodo.com/demo/interactivegraph/ https://ty ...
阅读全文参考这篇文章:http://dkleppinger.blogspot.jp/2015/04/adding-qbe-operators-to-date-column.html This example presumes you already have a table with filterable columns. You should have a search region in your bindings executable list. Mine is called re ...
阅读全文在configure php时: ./configure --prefix=/home/php5.5.8 --with-apxs2=/home/apache/bin/apxs --with-mysql --with-mysqli --with-gd --enable-mbstring --enable-sockets --enable-shared --with-pdo-mysql --with-jpeg-dir=/usr/lib64 --with-freetype-dir=/usr/ ...
阅读全文了解下linux shell中的几个特殊变量含义: $# 是传给脚本的参数个数 $0 是脚本本身的名字 $1 是传递给该shell脚本的第一个参数 $2 是传递给该shell脚本的第二个参数 $@ 是传给脚本的所有参数的列表 $* 是以一个单字符串显示所有向脚本传递的参数,与位置变量不同,参数可超过9个 $$ 是脚本运行的当前进程ID号 $? 是显示最后命令的退出状态,0表示没有错误,其他表示有错误 ...
阅读全文(Done)support editor topic support my topic (Done)support to delete topic support to delete topic in batch 支持图片显示 编辑器支持插入编辑日期和作者 设计bug系统 (Done)定义Bug系统 设计广告投放 显示是保留editor的样式 支持journling text 标准化文本内容格式 标准化博客内容 设计类 ...
阅读全文( function(){ ...... } )( window ); 初次接触jQuery源代码时,它的结构就是如上。这是一个匿名函数被括起来,然后再在后面加一个括号,这个匿名函数就能立即运行起来!这样做有什么好处呢?为什么要这样写?这段代码究竟属不属于闭包呢? 函数声明(function 语句) 正常一个函数的声明和定义如下: function foo(){ ........ } ...
阅读全文实现滚动窗口触发动画需要js的帮助。有jquery的一个全屏滚动插件fullpage.js fullPage.js是开源的JQuery插件库,其Github地址:https://github.com/alvarotrigo/fullPage.js fullPage.js 是一个基于 jQuery 的插件,它能够很方便、很轻松的制作出全屏网站,主要功能有: 支持鼠标滚动 支持前进后退和键盘控制 多个回调函数 支持手机、平板触摸事件 支持 CSS3 动画 ...
阅读全文Installing the Certificates to the Keystore If you receive a message that says "Certificate already exists in system-wide CA keystore under alias <...> Do you still want to add it to your own keystore? [no]:", select Yes. If succes ...
阅读全文原文出处: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 ...
阅读全文最常用的压缩工具有: YUI Compressor Google Closure Compiler(压缩率比较高), 具体请参考: http://blog.csdn.net/borishuai/article/details/8477514 UglifyJS (UglifyJS的出名是由于它代替Closure Compiler成为jQuery项目的压缩工具。) YUI Compressor 下载地址: ...
阅读全文最基本最简单的设置 如果想搭建自己的UI,可以仅仅使用basic plugin版本和最小的设置。下面是官网上提供首页index.html,只有最少的需求和最简单done回调处理程序。(参考官网提供的 API 和选项 Options 看如何使用不同的选项和回调函数): <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> ...
阅读全文对动态编译的apache服务器来说可以通过apxs (Apache Extension Tool)来快速安装扩展模块。 如需要添加mod_deflate, 则可以通过下面的命令来实现 [apache2 home]/bin/apxs -i -c -a [apacheSRC]/modules/filters/mod_deflate.c [apache2 home] 为当前安装的apache目录 [apacheSRC]为安装apache的源文件目录 通过这个命令可以快 ...
阅读全文参考文章 https://www.runoob.com/go/go-environment.html Go的官方文档地址为 https://golang.google.cn/doc/, 里面包括了安装文档,go的简单教程,包含如何写go代码,选用什么IDE, 如何troubleshooting,一些常见问题,以及go community的wiki. 同时也列出 Package Documentation(The documentation for the Go ...
阅读全文