摘要: Add following lines in .zshrc 阅读全文
posted @ 2016-03-31 16:42 哈度普 阅读(3331) 评论(0) 推荐(0) 编辑
摘要: 新的OSX的字体渲染太heavy了,用下面的方法可以独立关闭某个应用的渲染。 defaults write com.apple.Terminal AppleFontSmoothing -int 0 或全局关闭 defaults write -g AppleFontSmoothing -int 0 h 阅读全文
posted @ 2016-03-31 09:28 哈度普 阅读(1683) 评论(0) 推荐(0) 编辑
摘要: Sub bluejson() 'ok Dim aa Set x = CreateObject("ScriptControl"): x.Language = "JScript" aa = "{""myname"":""Michael"",""myaddress"":{""city"... 阅读全文
posted @ 2015-06-29 15:16 哈度普 阅读(7150) 评论(0) 推荐(0) 编辑
摘要: Sub fill_range_with_optionbuttons()'Erik Van Geit'050520 0138Dim rownr As Long, i As IntegerDim counter As LongDim rng As RangeDim txt(2) As StringDim... 阅读全文
posted @ 2015-05-19 14:24 哈度普 阅读(356) 评论(0) 推荐(0) 编辑
摘要: Sub 隐藏()Dim sh As ShapeFor Each sh In ActiveSheet.ShapesIf sh.Type = msoFormControl ThenIf sh.FormControlType = xlGroupBox Then sh.Visible = FalseEnd ... 阅读全文
posted @ 2015-05-14 16:12 哈度普 阅读(2177) 评论(0) 推荐(0) 编辑
摘要: 困绕很久的一个问题终于解决了。需求是在 Excel 中有很多个透视表,每个透视表的数据源是相同的,我希望让这些透视表的某个过滤条件一起联动。比如我有三个透视表,我希望让三个表的Month选项都改成“2014-12”。查来查去发现只能用VBA实现了。具体代码如下:Public Sub FilterPi... 阅读全文
posted @ 2015-01-22 12:43 哈度普 阅读(4686) 评论(1) 推荐(0) 编辑
摘要: Windows7 32bits 环境,Sublime Text3 安装,参考这个帖子,http://www.xiumu.org/note/sublime-text-3.shtml不解释。我是使用VIM模式的,如果不用VIM模式,下面的AHK脚本可能不正常工作。Python安装2.7.8, 另外安装了... 阅读全文
posted @ 2014-09-17 16:26 哈度普 阅读(2880) 评论(0) 推荐(0) 编辑
摘要: To Create a Calculated Field in the Power Pivot Window by using the Calculation AreaClickHome>View>Calculation Area.Click on an empty cell in the Calc... 阅读全文
posted @ 2014-09-15 10:06 哈度普 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 我觉得“纯信用无担保P2P模式”只是平台运作的口号和噱头。P2P平台不可能只提供平台交易和信息中介服务,一定会进行**风险识别**和某种方式的**风险分散**。为什么用“无担保”当作口号和噱头呢?因为普遍认为无担保可以和潜在的金融风险隔离开,不会随着业务规模的增加带来无限放大的风险。拍拍贷号称通过教... 阅读全文
posted @ 2014-08-05 12:50 哈度普 阅读(1104) 评论(1) 推荐(1) 编辑
摘要: 用R读取中文文本(UTF-8),经常无端出错,常常指定了sep="\t“,结果仍然有字段内部仍然包含"\t"。分隔符换成 ”,"也不行!更郁闷的是,read.table 读出来的域数量,竟然比 count.fields 返回的少。最终解决的方法是,在分隔符前后加上空格。读取的时候再把空格去掉,这样问... 阅读全文
posted @ 2014-07-29 18:00 哈度普 阅读(1955) 评论(0) 推荐(0) 编辑