学习资料来源:http://www.sohu.com/a/220499699_129720,很多语句从中摘抄而来,主要用于记笔记,感谢原创。 Sara 实现地址:https://github.com/Sarasra/models/tree/master/research/capsules Capsu ...
分类:
其他好文 时间:
2018-03-26 00:40:36
阅读次数:
166
cron 使用ansible的cron模块可以在机器上创建计划任务 job指任务的具体内容 name是指该任务的名称 删除时根据任务的名称来删除任务 state表示是创建任务还是删除任务,默认是present,表示创建任务,删除任务时取值absent。 cron模块有许多参数,可以参考官网: htt ...
分类:
其他好文 时间:
2018-03-22 15:30:35
阅读次数:
163
Reversing Linked List Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, give ...
分类:
其他好文 时间:
2018-03-22 00:28:24
阅读次数:
213
linux系统启动过程中给出错误: There are offline or missing virtual drives with preserved cache. Please check the cables and ensure that all drives are present.Pre ...
分类:
系统相关 时间:
2018-03-20 20:40:43
阅读次数:
1080
1、查看导入库的类属性、方法 python有一点感觉特别不方便的就是,不像C++指定了类型后,该类型的实例打个“.”会智能提示它含有的方法或属性 之前都是靠查看库对应的官方文档解决。这次才发现了一个新方法 help,可以列出方法和属性了 2、跳转至函数定义的源代码处 使用pycharm,按住CTRL ...
分类:
编程语言 时间:
2018-03-19 21:46:39
阅读次数:
311
<什么是TS> TS(transport stream) , TS流文件,是一种DVD的文件格式,TS格式的特点就是要求从视频流的任一片段开始都是可以独立解码的,这种特性就决定了TS流文件主要用来实时传送的节目,比如实时广播的电视节目。与之相互对应的是PS(Program Stream),PS主要应 ...
分类:
其他好文 时间:
2018-03-17 14:19:17
阅读次数:
1050
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho ...
分类:
其他好文 时间:
2018-03-15 17:58:42
阅读次数:
144
问题环境:Windows Server 2008R2 IIS7.5 问题描述:网站调用后台数据接口,GET和POST方法正常,PUT和DELETE方法报 405 Method Not Allowed,No 'Access-Control-Allow-Origin' header is present ...
1.注册 注册地址: https://github.com/join?source=header-home 2.建立组织 (1)点击头像旁边的"+",选择New organization,填写名字和email (2)建立好之后, 然后点击头像,找到your profile (3)点击刚刚建立的组织 ...
分类:
其他好文 时间:
2018-03-14 12:53:35
阅读次数:
231
vue项目中,前端与后台进行数据请求或者提交的时候,如果后台没有设置跨域,前端本地调试代码的时候就会报“No 'Access-Control-Allow-Origin' header is present on the requested resource.” 这种跨域错误。 要想本地正常的调试,解... ...