sec

Data seems to be missing in Bigquery SEC Filing Dataset

不羁岁月 提交于 2020-07-23 06:18:11
问题 I was pleased recently to discover that Bigquery hosts a dataset of SEC filings. I am unable to find the actual text of the filings in the dataset however! This seems so obvious I must be missing something. As an example, the 2018 Microsoft 10-K filing on the SEC website itself can be seen to have the 10-K text in which Item 7 includes the phrase "Management’s Discussion and Analysis of Financial Condition and Results". I searched for this phrase in the Dataset. First, the following query

Data seems to be missing in Bigquery SEC Filing Dataset

给你一囗甜甜゛ 提交于 2020-07-23 06:17:06
问题 I was pleased recently to discover that Bigquery hosts a dataset of SEC filings. I am unable to find the actual text of the filings in the dataset however! This seems so obvious I must be missing something. As an example, the 2018 Microsoft 10-K filing on the SEC website itself can be seen to have the 10-K text in which Item 7 includes the phrase "Management’s Discussion and Analysis of Financial Condition and Results". I searched for this phrase in the Dataset. First, the following query

Data seems to be missing in Bigquery SEC Filing Dataset

 ̄綄美尐妖づ 提交于 2020-07-23 06:16:19
问题 I was pleased recently to discover that Bigquery hosts a dataset of SEC filings. I am unable to find the actual text of the filings in the dataset however! This seems so obvious I must be missing something. As an example, the 2018 Microsoft 10-K filing on the SEC website itself can be seen to have the 10-K text in which Item 7 includes the phrase "Management’s Discussion and Analysis of Financial Condition and Results". I searched for this phrase in the Dataset. First, the following query

Linux下的微秒级定时器: usleep, nanosleep, select, pselect

痴心易碎 提交于 2020-03-31 00:38:16
Linux下的微秒级定时器: usleep, nanosleep, select, pselect 标签: linux null delay struct date 2012-02-07 23:29 4979人阅读 评论 (0) 收藏 举报 分类: Linux 系统编程(26) 版权声明:本文为博主原创文章,未经博主允许不得转载。 今天在公司代码中看到了使用select函数的超时功能作定时器的用法,便整理了如下几个Linux下的微秒级别的定时器。在我的Ubutu10.10 双核环境中,编译通过。 [cpp] view plain copy /* * @FileName: test_sleep.c * @Author: wzj * @Brief: * * * @History: * * @Date: 2012年02月07日星期二22:20:00 * */ #include<stdio.h> #include<stdlib.h> #include<time.h> #include<sys/time.h> #include<errno.h> #include<string.h> #include<unistd.h> #include<sys/types.h> #include<sys/select.h> int main( int argc, char **argv) {

信息竞赛程序卡时_C++

浪尽此生 提交于 2020-03-15 19:46:38
一、卡时简介   卡时是一个竞赛时常用的技巧   有些题目我们想不到完美算法就只能用暴力解决,但是此类方法一般时间复杂度较高, 此时我们需要进行卡时   通俗来讲就是进行一个时间限制,让程序在达到这个时间后立马退出,输出当前最优方案,或许能碰中正确答案   这样我们的程序在测试时就不会超时,导致没有得分 二、具体实现   我们以a+b为例   首先在程序开头就保存好开始运行的时间,记住一定要 写在最前面    在中间加上条件限制 clock()-ti<sec 目前时间减去开始时间小于限制时间sec   clock() 返回的是当前时间值,单位是毫秒ms   又如在搜索中我们可以在每一层加上这个判断,如果时间不够了,立马 return 退出   限制时间不要卡的太紧,因为我们要留出输出或者退出递归的时间,具体情况请具体考虑 参考代码: 1 #include<algorithm> 2 #include<iostream> 3 #include<cstdlib> 4 #include<cstring> 5 #include<cstdio> 6 #include<cmath> 7 #include<ctime> 8 #define sec 1000 9 using namespace std; 10 11 int ti; 12 int main() 13 { 14 ti=clock();

MySQL高级查询

我的未来我决定 提交于 2020-03-12 02:51:55
1.1 GROUP BY分组使用   1、Group By介绍       1. GROUP BY 语句根据一个或多个列对结果集进行分组,在分组的列上我们可以使用 COUNT, SUM, AVG,等函数。       2. 涉及到的操作符:GROUP BY,HAVING,ORDER BY,INNER JOIN,OUT JOIN,AS,UNION。   2、Group基本使用 CREATE TABLE user ( id int(11) NOT NULL, name char(10) NOT NULL DEFAULT '', date datetime NOT NULL, singin tinyint(4) NOT NULL DEFAULT '0' COMMENT '登录次数', PRIMARY KEY ( id ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 创建表 INSERT INTO user VALUES ('1', '小明', '2016-04-22 15:25:33', '1'), ('2', '小王', '2016-04-20 15:25:47', '3'), ('3', '小丽', '2016-04-19 15:26:02', '2'), ('4', '小王', '2016-04-07 15:26:14', '4'), ('5',

websocket协议握手详解

孤街浪徒 提交于 2020-03-10 16:21:36
最近使用tornado做长链接想着怎么着也要试试websocket协议吧。所以说干就干。 首先要知道websocket是基于http协议的,为什么这么说?因为从协议来说,websocket是借用了一部分为http请求头信息来进行验证和请求的的。 让我们来看一个标准的websocket请求头: --- request header --- GET /chat HTTP/1.1 Upgrade: websocket Connection: Upgrade Host: 127.0.0.1:8001 Origin: http://127.0.0.1:8001 Sec-WebSocket-Key: hj0eNqbhE/A0GkBXDRrYYw== Sec-WebSocket-Version: 13 可以看到使用http1.1 协议上面是标准的http的请求信息 method url http_protocol_versions Host Connection 但是熟悉http的小伙伴可以明显看出这里多出了一些信息。用于实现协议升级 Upgrade: websocket Connection: Upgradeorigin:xxxx Sec-WebSocket-Key: hj0eNqbhE/A0GkBXDRrYYw== Sec-WebSocket-Version: 13 upgrade

mysql主键和外键约束

筅森魡賤 提交于 2020-03-10 05:09:32
@Adrian 主键: 选取设置主键约束的字段: 主键约束即在表中定义一个主键来唯一确定表中每一行数据的标识符。主键可以是表中的某一列或者多列的组合,其中由多列组合的主键称为复合主键。主键应该遵守下面的规则: 每个表只能定义一个主键。 主键值必须唯一标识表中的每一行,且不能为 NULL,即表中不可能存在两行数据有相同的主键值。这是唯一性原则。 一个列名只能在复合主键列表中出现一次。 复合主键不能包含不必要的多余列。当把复合主键的某一列删除后,如果剩下的列构成的主键仍然满足唯一性原则,那么这个复合主键是不正确的。这是最小化原则。 在创建表时设置主键约束: 方法一: <字段名> <数据类型> PRIMARY KEY [默认值] mysql> create table tb_emp3 -> ( -> id int(11) primary key, -> name varchar(25), -> deptId int(11), -> salary float -> ); Query OK, 0 rows affected, 2 warnings (0.78 sec) mysql> desc tb_emp3; +--------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key |

倒计时的js实现 倒计时 js Jquery

倾然丶 夕夏残阳落幕 提交于 2020-02-17 15:57:36
by zhangxinxu from http://www.zhangxinxu.com 本文地址: http://www.zhangxinxu.com/wordpress/?p=987 一、如火如荼的团购网站 根据易观国际提供的统计数据,截至2010年6月,中国市场团购网站数量已经突破400家。国内团购潮从今年2月份开始出现,在4~6月出现高峰,尤其是今年5月,一些大的网站如爱帮网、开心网都加入到团购中来,F团、团宝、酷团、515团购、1288团购、拉手、24券、满座、窝窝、满堂网、糯米网、第一团购等也纷纷上线。预计年底,我国团购类网站的数量将达到1000多家,甚至有业内人士称“一天之内会有三到五家新的团购网站诞生”。俗称“千团大战”。 据说王兴的美团网上线4个月就盈亏平衡了,还有,貌似企鹅、点评也来插足了。 不过这类团购网站是死是活、孰好孰坏不管我鸟事,我所关心的是一些让我感兴趣的前端内容,比如说,这类团购网站的倒计时。 虽然有的横着睡觉,有的竖着休息,本质上都是一样的,一样的阿拉伯数字,一样的一秒一变化。本文内容就是展示如何在前端使用js实现倒计时的UI效果。 二、demo与效果展示 为节约时间,我就直接套用了企鹅团的界面作为demo的背景。因为是倒计时,所以需要一个固定的时间,为了n年后,某位仁兄打开demo页面依然在倒计时

利用performance_schema数据库查看SQL资源统计

纵然是瞬间 提交于 2020-02-15 22:03:48
1.修改数据字典以启用相关事件 mysql> use performance_schema mysql> show tables like 'setup%'; +---------------------------------------+ | Tables_in_performance_schema (setup%) | +---------------------------------------+ | setup_actors | | setup_consumers | | setup_instruments | | setup_objects | | setup_timers | +---------------------------------------+ 5 rows in set (0.00 sec) mysql> mysql> update performance_schema.setup_consumers set enabled='YES' where name like 'events_stages_%'; Query OK, 0 rows affected (0.01 sec) Rows matched: 3 Changed: 0 Warnings: 0 mysql> mysql> select * from performance_schema