- SE目前由169个专业板块组成
- Mathematics | 数学
- Stack Overflow | 编程
- English Language Learners | 英语
- Cross Validated | 统计
- Economics | 经济
- Personal Finance & Money | 理财
- 摄影、音乐、烹饪、科幻&魔幻、酿酒、伊斯兰教……
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6: /usr/share/vim/vim74/filetype.vim | |
7: ~/.vim/ftdetect/clojure.vim | |
8: /usr/share/vim/vim74/ftplugin.vim | |
9: /usr/share/vim/vim74/indent.vim | |
10: /usr/share/vim/vim74/syntax/nosyntax.vim | |
11: ~/.vim/colors/solarized.vim | |
12: ~/.vim/plugin/paredit.vim | |
13: /usr/share/vim/vim74/plugin/getscriptPlugin.vim | |
14: /usr/share/vim/vim74/plugin/gzip.vim | |
15: /usr/share/vim/vim74/plugin/logiPat.vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9: /usr/share/vim/vim74/indent.vim | |
10: /usr/share/vim/vim74/syntax/nosyntax.vim | |
11: ~/.vim/colors/solarized.vim | |
12: ~/.vim/plugin/paredit.vim | |
13: /usr/share/vim/vim74/plugin/getscriptPlugin.vim | |
14: /usr/share/vim/vim74/plugin/gzip.vim | |
15: /usr/share/vim/vim74/plugin/logiPat.vim | |
16: /usr/share/vim/vim74/plugin/matchparen.vim | |
17: /usr/share/vim/vim74/plugin/netrwPlugin.vim | |
18: /usr/share/vim/vim74/plugin/rrhelper.vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: Terminal [23533] | |
Path: /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal | |
Identifier: com.apple.Terminal | |
Version: 2.7.1 (388) | |
Build Info: Terminal-388000000000000~2 | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Terminal [23533] | |
User ID: 501 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Exercise 2.42 | |
;;; ============= | |
(define (enumerate-interval low high) | |
(if (> low high) | |
'() | |
(cons low (enumerate-interval (+ low 1) high)))) | |
(define (accumulate op initial sequence) | |
(if (null? sequence) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading /Users/sunqingyao/.emacs.d/core/core-load-paths.el (source)...done | |
Loading /Users/sunqingyao/.spacemacs...done | |
Setting the font... | |
Open the quickhelp. | |
Loading /Users/sunqingyao/.emacs.d/layers/+completion/auto-completion/packages.el (source)...done | |
Loading /Users/sunqingyao/.emacs.d/layers/+lang/emacs-lisp/packages.el (source)...done | |
Loading /Users/sunqingyao/.emacs.d/layers/+completion/helm/packages.el (source)...done | |
Loading /Users/sunqingyao/.emacs.d/layers/+os/osx/packages.el (source)...done | |
Loading /Users/sunqingyao/.emacs.d/layers/+lang/scheme/packages.el (source)...done | |
Loading /Users/sunqingyao/.emacs.d/layers/+tools/shell/packages.el (source)...done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Exercise 2.3 part 1 | |
;;; =================== | |
(define (peri-rect r) | |
(* 2 (+ (length-rect r) | |
(width-rect r)))) | |
(define (area-rect r) | |
(* (length-rect r) | |
(width-rect r))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="" method="post"> | |
<input type="hidden" name="csrfmiddlewaretoken" value="WjfP52q0v6yO9ME0Ookn1RvXeM93MMiYcXOP9D4KwatNXL0u9E5nqjj4nwirpz0O"> | |
<table> | |
<tbody><tr><th><label for="id_due_back">Renewal date:</label></th><td><input id="id_due_back" name="due_back" type="text" value="2017-04-15"><br><span class="helptext">Enter a date between now and 4 weeks (default 3).</span></td></tr> | |
</tbody></table> | |
<input type="submit" value="Submit"> | |
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Face | |
(set-frame-font "Hack Nerd Font 16" nil t) | |
(add-to-list 'default-frame-alist '(height . 24)) | |
(add-to-list 'default-frame-alist '(width . 80)) | |
;;; Line number | |
(add-hook 'prog-mode-hook 'linum-mode) | |
;;; Setup MELPA | |
(require 'package) |
OlderNewer