名称 | 代码 | 交易平台 | 交易量 | 市值 | 最新价 | 涨跌幅 | 技术5分钟 | 技术15分钟 | 技术30分钟 | 技术每小时 | 技术5小时 | 技术每天 | 技术每周 | 技术每月 | value | count |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Bank of America Corp Pl Pref | BAC_pl | 纽约 | 2.10K | 207690000000.0 | 1378.18 | 0.38 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 8 |
贝莱德 | BLK | 纽约 | 113.72K | 87740000000.0 | 569.03 | 0.08 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 8 |
直觉外科公司 | ISRG | 纳斯达克 | 296.26K | 70430000000.0 | 605.69 | -0.35 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 强力买入 | 8 |
宣伟公司 | SHW | 纽约 | 114.31K |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 彩云小译 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 彩云小译自制脚本 | |
// @author github@weaming | |
// @include * | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Author : weaming | |
# Mail : [email protected] | |
# Created : 2020-07-19 21:01:50 | |
# Usage: | |
# csv_json: pip3 install pretty-format-json | |
# xsv: brew install xsv | |
# cat esf-nn-rst.csv | xsv stats | csv_json | generate-sqalchemy-model-code.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Author : weaming | |
# Mail : [email protected] | |
# Created : 2020-07-15 14:05:23 | |
import pdb | |
import os | |
from typing import Optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python3 | |
# Created : 2020-07-16 13:06:10 | |
import sys | |
import os | |
from graphviz import Digraph | |
fmt = os.getenv('GRAPH_FMT', 'dot') | |
dot = Digraph(comment='alembic', format=fmt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from functools import wraps | |
import requests | |
allow_methods = [ | |
'options', | |
'head', | |
'get', | |
'post', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# https://github.com/pyenv/pyenv/issues/1375#issuecomment-524280004 | |
# NOTE: following steps does work on my macOS 10.15.4, pyenv 1.2.18 :( | |
# Error example: | |
# ERROR: invalid Python executable: /Users/weaming/.pyenv/versions/3.8.2/bin/python3.8 | |
# The python-build could not find proper executable of Python after successful build. | |
# Finally solution: download .pkg installer from https://www.python.org/downloads/release/python-382/ | |
# it includes its own private version of Tcl/Tk 8.6. It does not use any system-supplied or third-party supplied versions of Tcl/Tk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(+ 1 (+ 3 4)) | |
(setq name "weaming") | |
(defun hello (name) (insert "Hello, " name)) | |
(hello "weaming") | |
(switch-to-buffer-other-window "*test*") | |
(progn | |
(switch-to-buffer-other-window "*test*") | |
(erase-buffer) | |
(hello "you") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created : 2020-05-22 00:14:21 | |
# 创建和调整:https://zhuanlan.zhihu.com/p/77527032 | |
# 插入和删除:https://www.jianshu.com/p/e0a40d6748b8 | |
import operator | |
default_op = operator.ge | |
def heap_adjust(A, i, size, op): |