g****t 发帖数: 31659 | 1 coding就是行为艺术。
我折腾了emacs已经有的下面的东西。
ob-julia,ess-julia,julia-mode,julia-shell
现在整理出来的行为流程如下:
1。org-mode里面用julia-mode写一个source block。
(session mode不work,不知道原因)
(不要用ess-julia,据说是history文件少个下划线,卡死了。
我试图改代码重新bytecompile ess里面的文件,因为公司电脑权限问题又卡死了)
2。run一个julia shell。
3。用如下程序把org-mode里选中的code发到julia shell。
快速双击jj即可。
(defun p-send(start end)
(interactive "r") ;;Make the custom function interactive and operative on
a region
(append-to-buffer (get-buffer "*Julia*") start end) ;;append to the buffer
named *PYTHON*
(switch-to-buffer-other-window (get-buffer "*Julia*")) ;;switches to the
buffer
)
(key-chord-define-global "ll" 'p-send) |
c*****e 发帖数: 3226 | 2 这种 lisp 完全是行为艺术
【在 g****t 的大作中提到】 : coding就是行为艺术。 : 我折腾了emacs已经有的下面的东西。 : ob-julia,ess-julia,julia-mode,julia-shell : 现在整理出来的行为流程如下: : 1。org-mode里面用julia-mode写一个source block。 : (session mode不work,不知道原因) : (不要用ess-julia,据说是history文件少个下划线,卡死了。 : 我试图改代码重新bytecompile ess里面的文件,因为公司电脑权限问题又卡死了) : 2。run一个julia shell。 : 3。用如下程序把org-mode里选中的code发到julia shell。
|
g****t 发帖数: 31659 | 3 MS word自带的VBA其实很好。但是MS这个公司不稳定。
如果Bill Gates永远不死,永远CEO,MS word跨平台,免费,
THEN, 我写个VBA程序,
用word coding。
另外我完成的事很爽啊。双击L键就可以把editor的code发到julia shell里。
【在 c*****e 的大作中提到】 : 这种 lisp 完全是行为艺术
|
n******7 发帖数: 12463 | 4 为啥我总感觉这是奇技淫巧
憋了好久,爽一下
【在 g****t 的大作中提到】 : MS word自带的VBA其实很好。但是MS这个公司不稳定。 : 如果Bill Gates永远不死,永远CEO,MS word跨平台,免费, : THEN, 我写个VBA程序, : 用word coding。 : 另外我完成的事很爽啊。双击L键就可以把editor的code发到julia shell里。
|