码迷,mamicode.com
首页 >  
搜索关键字:nta    ( 5390个结果
强大的金融类图表库 TradingView 使用分享
这段时间刚好做币圈交易所,运用到了现在最火的金融类图表库 -- TradingView ,就是强大,基本上现在的火币网(https://www.huobi.com),币安网(https://www.binance.com/ )等大型交易所都在使用。 简介: 带有开放API的可下载图表库。这是一个独立 ...
分类:其他好文   时间:2018-12-07 14:59:45    阅读次数:349
AVL的实现
1 #include "stdafx.h" 2 3 /* 4 * @author Wu Jingan 5 * @created June 6, 2018 6 */ 7 8 #include <iostream> 9 #include <string> 10 #include <algorithm> ...
分类:其他好文   时间:2018-12-07 12:09:35    阅读次数:145
MySQL - 执行sql报错USING BTREE
问题与分析 在执行sql文件时发现报错如下: 该错误导致有一个表创建失败,一时间很诧异。因为我所执行的sql语句是由SQLyog导出来的,怎么会有语法错误呢?因为报错里的中文字符变成了乱码,一开始以为是sql语句里的中文字符存在着编码问题,重新修改了好几遍,最后把中文字符去掉了也还是会报同样的错误。 ...
分类:数据库   时间:2018-12-07 00:32:25    阅读次数:320
题解报告:zoj 3261 Connections in Galaxy War(离线并查集)
Description In order to strengthen the defense ability, many stars in galaxy allied together and built many bidirectional tunnels to exchange messages ...
分类:其他好文   时间:2018-12-06 23:58:35    阅读次数:306
flask 信号
Flask中的信号基于blinker模块,可以用于在flask请求的整个生命周期中添加一些特定的行为(pip3 install blinker) blinker中的信号有: 1 template_rendered = _signals.signal('template-rendered')#模板渲染 ...
分类:其他好文   时间:2018-12-06 22:24:12    阅读次数:265
WebDriver API --8种定位方式
webdriver 提供了一系列的元素定位方法,常用的有一下8种方式: 1)id 2)name 3)class name 4)tag name 5)link text 通常用在超链接上 6)partial link text 通常用在超链接上 7)xpath 通用方式 8)css selector ...
分类:Windows程序   时间:2018-12-06 20:51:17    阅读次数:256
Docker Compose
要从Dockerfile build image 或者去dockerhub拉取image 要创建多个container 要管理这些container(启动停止删除) DOcker Compose "批处理" 通过文本的方式,把要处理的容器按照顺序执行,如果是多容器也就是通过一条命令就搞定了 Dock ...
分类:其他好文   时间:2018-12-05 22:55:26    阅读次数:247
UI Framework-1: views Windowing
views Windowing views provides support for creating dialog boxes and other kinds of windows through its Widget object. The developer creates a WidgetD ...
分类:Windows程序   时间:2018-12-05 20:42:14    阅读次数:185
Oracle插入语句日期格式设置
insert into test values (1,'2015-01-01'); 直接设置成字符串,会报出“文字与格式字符串不匹配”的异常; 如果正确插入,则要将字符型数据转成日期型数据: 1 insert into test values (1,to_date('2015-01-01','yyy ...
分类:数据库   时间:2018-12-05 20:28:08    阅读次数:238
Spring里的applicationContext.getBeansWithAnnotation
getBeansWithAnnotation Map<String,Object> getBeansWithAnnotation(Class<? extends Annotation> annotationType) throws BeansException Find all beans whos ...
分类:移动开发   时间:2018-12-05 17:25:00    阅读次数:955
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!