This file contains hidden or 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
| 一部春秋史千年孤臣泪 | |
| 成败难长久兴亡在转瞬间 | |
| 总在茶余后供予后人说 | |
| 多少心酸话因果 | |
| 百战旧河山古来功难全 | |
| 江山几局残荒城重拾何年 | |
| 文章写不尽悠悠沧桑史 | |
| 悲欢岁月尽无情 | |
| 长江长千里黄河水不停 | |
| 江山依旧人事已非 |
This file contains hidden or 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
| [正则表达式可视化](https://jex.im/regulex) | |
| `https://jex.im/regulex` | |
|  |
This file contains hidden or 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
| > 写在前面的话:一时兴起就收集了以下神注释,希望能为广大ITer带来快乐,缓解你们工作中的压力,下面开车,先自爆头像(曾经用过的),下文会给出制作链接。 | |
| ``` | |
| /*** | |
| * 瓦瓦 十 | |
| * 十齱龠己 亅瓦車己 | |
| * 乙龍龠毋日丶 丶乙己毋毋丶 | |
| * 十龠馬鬼車瓦 己十瓦毋毋 | |
| * 鬼馬龠馬龠十 己己毋車毋瓦 |
This file contains hidden or 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
| > 做为一个有情怀的 Coder,最近收集了一下 JavaScript 代码注释范例,希望能够帮助大家撸得一手妖媚而又放荡的 Bug。 | |
| 普通注释 | |
| ---- | |
| ### 单行注释 | |
| **使用 `//` 作为单行注释。** | |
| ```JavaScript | |
| //bad comments |
This file contains hidden or 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
| Windows 系统如何完全卸载 VSCode | |
| ======================= | |
| * * * | |
| ### 文章目录 | |
| * [Windows 系统如何完全卸载 VSCode](#Windows__VSCode_0) | |
| * [0. 参考资料](#0__8) |
This file contains hidden or 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
| ```html | |
| <!DOCTYPE html> | |
| <html lang="zh-CN"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>争逐</title> | |
| <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
| <script src="https://unpkg.com/axios/dist/axios.min.js"></script> |
This file contains hidden or 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
| # 美东时间 | |
| ```JavaScript | |
| function time(time = +new Date()) { | |
| var date = new Date(time - 4 * 3600 * 1000); | |
| return date.toJSON().substr(0, 19).replace('T', ' ').replace(/-/g, '.'); | |
| } | |
| time(); | |
| ``` | |
| Date的‘toJSON’方法返回格林威治时间的JSON格式字符串,实际是使用‘toISOString’方法的结果。字符串形如‘2018-08-09T10:20:54.396Z’,转化为北京时间需要额外增加八个时区,我们需要取字符串前19位,然后把‘T’替换为空格,即是我们需要的时间格式。 |
This file contains hidden or 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
| # 第一章 为短线乱象理出头绪 | |
| 如果这是最容易亏损的方式,那它应该也很容易赚钱,不是吗? | |
| 我每晚要花5、6个小时,甚至连周末都在想办法打败华尔街、赚大钱,以至险些失去一段婚姻。 | |
| 这些人搜集各种制图方法,寻找价格变动形态,并冠名为楔型、头肩型、三角旗型、旗型、三角形、W底、M头,以及1—2—3波段等等。这些型态试图反映出供需双方的交战状况,有些型态显示的是卖出,有些则是专业性的吃货。这些图表虽然很有意思,却不免误导。同样的型态也可能出现在没有供需因素影响的图表中。 | |
| 掷150次铜板的统计图,看起来很像猪肉期货的线图。我劝你**要用智慧判断,不要被这些图形所混淆**。 | |
| 数学家会说,过去的价格变动和未来的走势之间是不相干的。 |
This file contains hidden or 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.大区间产生小区间,小区间产生大区间无限循环 | |
|  | |
| 2.我们尽量在大区间日赚钱,大区间日一般高开高走,始终在开盘价之上(只多不空),或者低开低走,始终在开盘价之下(只空不多) | |
|  | |
| 3.如果计划做多,不要想低于开盘价去做多并仍想会下跌再猛拉 | |
| 如果计划做空,不要想高于开盘价去做空并仍想会上涨再猛跌 | |
|  | |
| 大区间日大赚,小区间日小赚 |
This file contains hidden or 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
| 在写 CSS 的时候你一定遇到过有些样式明明写对了,也选择了正确的 html 元素去应用这些样式,可是就是不生效,这是为什么呢?因为在选择同一个 HTML 元素的时候,不同的选择器有不同的优先级,优先级低的选择器的样式会被优先级高的覆盖。 | |
| ## 什么是 CSS 选择器优先级 | |
| CSS 选择器优先级,也叫特异性,是指在给 HTML 元素应用样式时,如果有多个 CSS 选择器同时指向了这个元素,那么优先级高的选择器的样式会最终应用到这个元素上。 | |
| <!-- truncate --> | |
| ## 不同选择器的权重 |