- 博客(16)
- 收藏
- 关注
原创 API接口记录,不带维护的,看到啥写啥,所以你可能觉得我在乱写(持续更新)
API接口目录说明股票·新浪财经(免费)·CSMAR国泰安希施玛(付费)娱乐Bilibili(免费)说明整理收集所见所闻的API接口,随看随取,我不带维护的,随便你怎么说。想学爬虫请移步至????【指引】新手如何自学网页爬虫(更新完结)股票·新浪财经(免费)说明:实时的股票价格数据接口根目录:https://hq.sinajs.cn/list=举例:https://hq.sinajs.cn/list=sh000001,sh000300,sh000016,sh000688,hk03690,h
2020-11-30 23:48:49
299
原创 【最新MySql】mysql-8.0.21-macos10.15-x86_64 百度网盘链接分享
是MacOS的MySQL哦,别下载错了。复制这段内容后打开百度网盘手机App,操作更方便哦链接:https://pan.baidu.com/s/1eBd3Dr5DdauH9-bUVMnePQ 提取码:zfHx官网网速下载到我裂开了呀
2020-08-25 18:22:24
1742
1
原创 Cheating paper for Data Structure
Time Complexity (Lecture 2)1.1. Definition: given input size N, find running time of the algorithm.1.2. Notation:1.2.1. |X|: the size of X1.2.2. o(N) little-o notation: limit of function at given valuee.g.1.2.3. O(N) big-o notation: worst case1.2..
2020-08-21 17:58:59
1086
原创 【指引】新手如何自学网页爬虫(更新完结)
做网页内容爬虫是方便大量收集、跟踪数据的相当便捷的方法。笔者本科在读,曾经做过ICO项目信息追踪,WHO官网SARS、nCOVID-19确诊/致死人数数据收集,京东商品详细信息收集分类,以及[Bilibili的视频页面的信息收集](https://www.bilibili.com/video/BV1ND4y1Q7Tb)。在之前的项目中全靠自己摸索如何掌握爬虫所需要的前置知识,汇成一个新手指引分享给大家,希望对自学的同学们有帮助。如果有不妥当的地方,欢迎大家在评论区指正~
2020-06-30 00:40:35
1935
2
原创 XAMPP下载地址共享
XAMPP和sourceforge的服务器都在国外,直连下载很慢,大约六七个小时,然而国内软件网站上的XAMPP要不版本旧要不是病毒要不下载失败,我在这里分享一个当前最新版xampp-windows-x64-7.4.6-0-VC15-installer.exe (2020/5/31下载)链接:https://pan.baidu.com/s/1q6mPcASjCRPxDIdsux99dw提取码:4x3p复制这段内容后打开百度网盘手机App,操作更方便哦...
2020-05-31 13:31:48
3812
8
转载 CSS 代码 - 第60集 - 边框阴影
HTML代码<!DOCTYPE html><html><head> <link type="text/css" rel="stylesheet" href="style.css"></head> <body> <div id="box1"> </div><...
2020-03-15 10:58:29
144
转载 CSS Layout 代码 - 第5集 - 添加侧边栏
HTML Code for the sidebar/HTML代码如下:<div class="sideright"><h2>Lecture Dates</h2><p> 11/07 - Lecture on Caesar </p><p> 11/14 - Lecture on Hannibal </p>...
2020-03-15 10:52:58
160
原创 MacOS换行符变更
这是因为,在Unix系统里,每行结尾只有"<换行>",即’\n’;Windows系统里面,每行结尾是"<回车><换行>",即"\r\n";Mac系统里,每行结尾是"<回车>",即’\r’。一个直接后果是,Unix/Mac系统下的文件在Windows里打开的话,所有文字会变成一行;而Windows里的文件在Unix/Mac下打开的话,在每行的结尾可能...
2020-03-04 18:20:17
1891
原创 更改Safari默认字体
在学CSS的时候发现Safari有个功能:打开Safari>>Preferences…>>Advanced>>Style sheet:之后可以选择本地的CSS文件来更改Safari默认设置。比如写一个stylesheet.css:body{ font-family: Calibri; }所有网页的默认字体就会被更改为Calibri。在这里mark...
2020-01-07 20:29:00
4875
转载 [Cheatsheet] Introduction to MATLAB
目录1. 基础指令2. 变量2.1 类型2.2 数字类(numeric)变量2.2.1 类型2.2.2 array(double类)2.3 字符类(character)变量2.4 逻辑类(logical)变量2.5 结构类(structure)变量2.6 单元格(cell)变量2.7 function handler3. 读写文件3.1 `.m`类Matlab文件3.2 `.csv`与`.xls...
2019-12-21 13:22:30
366
原创 [Mistake & Practice] Introduction to Data Analysis with R
MatrixQuestion IAssume that n is an integer greater than 1. Consider the slash(n) function whose output is a nxn symmetric matrix with elements are integers 1 on the diagonal, 2 on top and below the...
2019-12-16 12:17:00
176
原创 [Cheatsheet] Introduction to Data Analysis with R
This is a final review of Introduction of Data Analysis with R.Basic notationcommandexplanationexampleInfinfinity1/0=InfNaNnot a number0/0=NaNvariable typeexplanationexample...
2019-12-15 20:17:54
1396
原创 一些安装指南链接
Julia/R/Python安装指南:https://zhuanlan.zhihu.com/p/81087862?utm_source=wechat_session&utm_medium=social&utm_oi=990599177684029440&from=groupmessage&isappinstalled=0如何在VSC里面使用Jupyter N...
2019-10-19 00:05:30
371
原创 Mac上python如何安装opencv
对于已安装python3.7的朋友们:1.打开terminal2.输入brew install opencv3.输入echo /usr/local/opt/opencv/lib/python3.7/site-packages >> /usr/local/lib/python3.7/site-packages/opencv3.pth目的是把opencv添加到path中4.输入p...
2019-09-20 19:03:17
230
原创 JuliaPro learning notes( Day 2, 2019 Jun 27):recommend Julia 0.6.4
It has been days from my last post. But anyway, last time, I mentioned that I was using JuliaPro and it felt great. Actually, I was totally wrong. The next day after I posted, PyPlot and Plot stopped ...
2019-06-27 00:50:25
3006
原创 JuliaPro learning notes( Day 1, 2019 Jun 17): how to plot & Gaussian elimination
JuliaPro learning notes( Day 1, 2019 Jun 17)I am using JuliaPro 1.1.1.1 on atom on Mac Mojave, and JuliaBox.Reminder for using atom: according to http://docs.juliaplots.org/latest/install/To use P...
2019-06-17 21:46:43
232
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人