名称 | 代码 | 交易平台 | 交易量 | 市值 | 最新价 | 涨跌幅 | 技术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 |
View filecoin-project-lotus.csv
where | type | name | sha | remote | |
---|---|---|---|---|---|
local | tag | 0.7.0-rc1 | cd9a8ecfa9d7a810e42717ddc93ae066880d6519 | ||
local | tag | 0.9.1-pre1 | 26ed6af0405b027470b88f893577d35fca9af5bd | ||
local | tag | 1.1.0-pre1 | 8f4ab925fafb7b7d5f565d0561f149d17edbda59 | ||
local | tag | interop.5.13 | d11e375f828526eab2a59fd6fd3db88e3c5cb9d3 | ||
local | tag | interop.6.1 | 06670f4caecc9b37fc4b1467e4447359f92852f0 | ||
local | tag | interop.6.16.0 | bead3bf412954c02ac82e5367e6e9c498a8a897b | ||
local | tag | interop.6.5 | 613226dec59d3ed2a48b228aa8ed5c1ca7cdafe8 | ||
local | tag | interop.6.6 | 4068c9a7d863d56347f3256566889b909d2cc51b | ||
local | tag | interop.6.8 | 96a5e579cfb3fdb67bd2c22b202db3c312928995 |
View single-producer-multi-consumers.py
import queue | |
import threading | |
import traceback | |
import sys | |
def map_do(fn, iterable, n=20): | |
from concurrent.futures import ThreadPoolExecutor | |
with ThreadPoolExecutor(n) as executor: |
View git-aliases.bash
alias gcl='git clone' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gdc='git diff --cached' | |
alias gl='git lg' | |
alias gps='git push -u' | |
alias gconf='vi .git/config' | |
alias gamend='git commit --amend' | |
alias gamendy='git commit --amend --no-edit' | |
alias gback='git reset --hard HEAD~' |
View macOS-like.ahk
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
#SingleInstance Force | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
CapsLock::Esc | |
return |
View caiyun-translate-for-tampermonkey.js
// ==UserScript== | |
// @name 彩云小译 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 彩云小译自制脚本 | |
// @author github@weaming | |
// @include * | |
// @grant none | |
// ==/UserScript== |
View generate-sqalchemy-model-code.py
#!/usr/bin/env python3 | |
# Author : weaming | |
# Mail : garden.yuen@gmail.com | |
# 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 |
View sort by tech indicators and market value.md
View ctrip-crawler-example.py
#!/usr/bin/env python3 | |
# Author : weaming | |
# Mail : garden.yuen@gmail.com | |
# Created : 2020-07-15 14:05:23 | |
import pdb | |
import os | |
from typing import Optional |
View alembic-graph
#!/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) |
NewerOlder