question: Animation. Add code to Insertion and Selection to make them draw the array contents as vertical bars likes the visual traces in this section ...
分类:
其他好文 时间:
2018-05-30 17:32:07
阅读次数:
175
Teamviewer远程ssh命令行更改密码启动 设置密码 查看teamviewer信息 或者 ...
分类:
其他好文 时间:
2018-05-30 16:43:01
阅读次数:
574
平时经常用定时提醒来提高工作效率,到了Linux。。。。蒙圈了,以前C#写的不能跨平台啊,于是就有了这篇文章~ 先NetCore吧:(old code:me) 核心代码:Process.Start("notify-send", "友情提醒 10分钟过去了"); 原理说明:调用了ubuntu的noti ...
分类:
编程语言 时间:
2018-05-30 16:40:33
阅读次数:
184
利用Java Itext生成PDF文件并导出,实现效果如下: PDFUtil.java 水印事件TextWaterMarkPdfPageEvent.java 页脚事件PdfFooterEvent.java ...
分类:
编程语言 时间:
2018-05-30 15:41:13
阅读次数:
379
遍历用到DictionaryEntry(字典键/值对) 实例 创建一个Hashtable对象,向其中添加4个元素,然后遍历 ...
分类:
其他好文 时间:
2018-05-30 15:07:23
阅读次数:
124
在html文档中,元素体现为一个一个的方形盒子。每个盒子由以下四种属性来确定他在文档中的位置和大小: content 内容区域 padding 内边距 border 边框 margin 外边距 标准和非标准 在 定义下,content占据的空间由(min/max)width,(min/max)hei ...
分类:
其他好文 时间:
2018-05-30 15:04:57
阅读次数:
174
.transclude:true 启用transclude,启用以后,有两个地方会发生变化: ①.使用指令的元素内部的所有内容都会被保存起来.不妨先把这一段内容称为一坨. 比如指令元素是这样的: <cd-hello><h3>code_bunny</h3></cd-hello>,那么,这一坨就是<h3 ...
分类:
其他好文 时间:
2018-05-30 13:57:00
阅读次数:
171
react-router 4 代码分割(按需加载) 官方文档 https://serverless-stack.com/chapters/code-splitting-in-create-react-app.html 1.未采用路由按需加载的代码 2.采用 react-loadable 来实现路由按 ...
分类:
其他好文 时间:
2018-05-30 13:56:34
阅读次数:
223
class Solution { public: int leastBricks(vector>& wall) { unordered_map m; for (int i = 0; i < wall.size(); i++) for (int j = 0, t = 0; j < wall[i].si... ...
分类:
其他好文 时间:
2018-05-30 13:56:04
阅读次数:
152
name="董文辉" def outer(func): name="alex" func() def show(): print(name) outer(show)#输出董文辉 ...
分类:
其他好文 时间:
2018-05-30 13:18:23
阅读次数:
93