💸

国内的动画水平

偶然看了一眼国产动画飞天少年,我感觉现在的动画画的还不如50年前的铁臂阿童木

几本书的封面

希拉里:为总统而生

他改变了中国

Debian的bug导致SSHD启动慢

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912087

如何在XP上安装基于GhostScript的虚拟打印机

https://www.ghostscript.com/doc/current/VectorDevices.htm#PPD

要点是打印到文件。

咬文嚼字的冷知识

冷知识里更新了一个attached的区别enclosed。这种知识不点破就算是每天用也不会知道。类似的例子是中文里的语言现象,比如北方话或北京话里儿化音的规律,其实大有门道咧。我不是北京人也没认真研究过,就不班门弄斧了,读者朋友可以自己试着总结一下。

有相关关系不一定有相关性

比如之前有研究说,牙齿健康的人不容易得高血压。这个结果可能是对的,但不能说牙齿健康能预防高血压,我觉得,可能是注意牙齿健康的人生活也健康,自然不容易「三高」,如果用这种相关关系推广到「保护牙齿能预防高血压」,谬矣。

原来《黑客帝国》等电影都有基础

比如《世界旦夕之间》。

ORCA 4.1要发布了

https://orcaforum.kofo.mpg.de/app.php/portal

老的Linux内核上编译的可执行文件不能用于较新的内核

因为新内核不支持vsyscall,详细的解释见下面。

https://orcaforum.kofo.mpg.de/viewtopic.php?f=9&t=3870

ORCA 4.1的版本有这个问题,我反馈后修复了。

折腾Octave的颜色

https://gitee.com/chriszheng/configs/tree/master/.octave

具体的代码上传了,一些折腾的结果写下来。

  1. 怎么改默认的颜色顺序呢?
    set(gca, 'ColorOrder', ggplot2(64));

  2. 怎么画函数图像呢?

1
2
3
4
clf;
fh = @(x) sin (pi*x) ./ (pi*x);
fplot (fh, [-5, 5]);
title ("fplot() sinc function (possible division by 0, near 0)");

或者

1
2
f = @(x) sin (pi*x) ./ (pi*x);
ezplot (f);
  1. 怎么画彩色的柱状图呢?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
citations = [1 9 12 13 36 59 44 66 56 50 61 99 133];
start = 2011;

years = [start:start+numel(citations)-1];
[xb, yb] = bar(years, citations);
patch(xb, yb, [1:numel(citations)], "edgecolor", "none");
xlabel("Years");
ylabel("Citations");
xlim([min(years)-1 max(years)+1]);
xbounds = xlim();
set(gca(), 'xtick', xbounds(1):1:xbounds(2))
colormap(ggplot2(64));

xoffset = 0.2;
yoffset = 10;
for t = 1:numel(citations)
if (citations(t) < 10)
text(xb(1, t) + xoffset * 2 - 0.1, yb(2, t) + yoffset, num2str(citations(t)))
elseif (citations(t) < 100)
text(xb(1, t) + xoffset, yb(2, t) + yoffset, num2str(citations(t)))
else
text(xb(1, t), yb(2, t) + yoffset, num2str(citations(t)))
endif
endfor

print("citations.svg", "-r600");

配色风格可以用colormap()改。一种风格是colormap(ggplot2(64));,配色模仿R的ggplot的效果

ggplot配色的Octave彩色柱状图

默认的风格colormap((64));,效果如下

默认配色的Octave彩色柱状图

上面用到的ggplot2()来自ggplot2.m,是我从网上抄来后魔改的。

  1. 怎么画彩色的函数图像呢? \
1
2
3
4
5
6
colormap(ggplot2(512));
x = -pi:0.02:pi;
scatter(x, sin(x), 10, [1:numel(x)], "filled");
set(findall(gcf(), "-property", "interpreter"), "interpreter", "TeX");
xlabel('\it{x}');
ylabel('\it{y}');

Octave彩色线

  1. 小提琴图: \
1
2
3
4
5
pkg load statistics;
data = exprnd(0.1, 500,4);
violin(data, "color", ggplot2(4));
set(findall(gca(), "type", "patch"), "edgecolor", "none", "facealpha", 0.95);
print("a.svg");

小提琴图

韭菜

《正论》曰:小民发如韭,剪复生;头如鸡,割复鸣。吏不必可畏,后来不必可轻。奈何欲望致刑厝乎?

悲惨生活

寄身锋刃,腷臆谁诉?

唐·李华《吊古战场文》

搜索中发现这句是化用了曹植的《白马篇》

弃身锋刃端,性命安可怀?

曹植《白马篇》

搜索中邂逅一位高产的前辈,具体请自行搜索,拜读了不少文章。

http://xiexuanjun.blogspot.com/2013/09/blog-post_7832.html

Octave输出PostScript时字体设置的缺陷

http://lists.gnu.org/archive/html/help-octave/2016-02/msg00032.html

不能想设成什么就设成什么。

在Windows平台上安装Octave包

需要开发版或者打补丁。

tisean

http://savannah.gnu.org/bugs/?45815

signal

https://savannah.gnu.org/bugs/index.php?53849