🌓

Emacs的中文化指南

Hick整理了一个Emacs中文化的文档 算是一个尝试 我也添加有关Windows下UTF-8设置的问题 基于的就是之前写的在MS-Windows平台下使用UTF-8编码

阅读全文

李杀的愤怒

李杀最近写下了下面一段话:

i’ve used PyCharm for a day or two, and it’s rather lackluster. But, for more complex stuff, i’ve tried WebStorm syntax highlighting, it stands out ABOVE ALL. (when you work with web, you know, thousands of keywords from BOM & DOM. 〔➤ JavaScript: Browser Object Model, Document Object Model〕 〔➤ Xah Web Dev Tutorials〕 ) See Syntax Coloring in Editors. Really because, it has a language-aware static analyzer builtin. The emacs counter part is CEDET. 〔➤ Emacs 23.2 Features (released 2010-05)〕 It’s been in emacs for 5 years now. But i have yet to tackle it. I’m sure, it will take me a week to figure it out, and the outcome, may just be abandon. While, JetBrain stuff, works out of the box. That’s a big difference between commercial software and open source. (if you are reading this, and if you are young, you probably have beefs with my call and forthwith diss xah’s blogs. You! Too Simple! Too young! NAÏVE! And if you are the few old bags glued to the FSF ideology or open source nirvana, well, good for you. (you know? actually, i was surprised that there are many people today who do not know the difference between FSF and Open Source, and do not know, that they are at war. (here’s trick. To get rms extremely angry, just say to him, sincerely: “Thank you for all your contribution to open source.” (make sure you don’t have something shatterable nearby.))))

阅读全文

博客一周年纪念

💕

从第一篇Hello World到今天正好一年 这中间分享了不少心得 也从读者的留言里面学了不少东西 因为有网站也认识了一些朋友 很开心 😄

借这个机会 向各位访客问声好 祝你们开心 快乐 😸

阅读全文

MS-Windows下可以用runemacs --daemon后台启动Emacs

之前写过有关Windows支持daemon的事 但当时说 实用性不强 因为关闭命令提示符emacs进程就结束了

今天突然发现 用runemacs --daemon就可以了 这条命令运行后会启动emacs服务 不会出现黑框框

阅读全文

中文版Word 2013的连字(ligature)的bug及一个解决方案

😹

连字(ligature)是西文里面才有的东西,中文用户很少有关注这个特性的。再加上使用微软产品的使用者大都没什么品味,所以中文世界还真没看到什么相关的讨论,一个解决方案是修改默认编辑语言,但缺点也很明显:Word变成专为英文用户使用的配置了,我最受不了的是回车符号变了。

问题描述

在中文版的Word 2013及Word 2013 SP1中,新建的文档无法使用连字功能,表现是在字体设置的预览里面有效果。在文档中无效果。数字类型和间距的设置也是无效的。

阅读全文

μ? µ?

问题来源

很多人在Word里用Word的技术来插入符号,这东西在Word里用倒是没问题,但一复制出来就不对了,因为Word的实现方法是用非标准的编码实现的——微软有自闭症,喜欢自己玩自己的。

既然不用Word的技术,我一般是在Emacs里输入,复制或转换到Word里。一般的符号这样弄是没问题的,可对于这个μ,我一直没搞明白,因为Emacs里有一个快捷的方式可以输入类似的符号,C-x 8 u,输入的是µ

μ和µ有啥区别?

μ在Unicode里是GREEK SMALL LETTER MU(U+03BC),µ的是MICRO SIGN(U+B5),在Emacs里,两个因为用了不同的字体,所以看起来不一样,可在其他地方两个看起来又是一样的。

怎么回事?

阅读全文

孔子的有教无类和烂泥不上墙

子曰:「有教无类。」

《论语·卫灵公》

阅读全文

setq不能只用一个参数

以前setq是可以用一个参数的 就像这样(setq a) 相当于(setq a nil) 但现在不行了 相关讨论看这里

阅读全文

Acrobat XI仿宋字体Bug

我发现 Adobe Acrobat XI有个bug 如果在Word里用它的插件生成的PDF 仿宋字体会变成宋体 这个毛病在我的Win8上有 在另外一台Win7的电脑上也有 今天一搜索 原来确实是个bug 可以看Adobe论坛的讨论

阅读全文

让页面可编辑的js片段

非常适合存为小书签

1
javascript:(function(){document.designMode='On';})();

阅读全文