-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
orgmode add the org-babel module, so add connection between different
language,such as perl,python,c,graphviz etc.(C-c s i) insert souce code. Also add the finnacial.org to remember the expense by me.
- Loading branch information
1 parent
663fadb
commit 484b329
Showing
319 changed files
with
76,986 additions
and
13 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
Archived entries from file c:/Users/YeZhao/AppData/Roaming/.emacs.d/GTD/newgtd.org | ||
|
||
|
||
* TODO Etc. | ||
:PROPERTIES: | ||
:ARCHIVE_TIME: 2017-10-07 ���� 15:34 | ||
:ARCHIVE_FILE: ~/.emacs.d/GTD/newgtd.org | ||
:ARCHIVE_OLPATH: Tasks | ||
:ARCHIVE_CATEGORY: newgtd | ||
:ARCHIVE_TODO: TODO | ||
:END: | ||
|
||
That's your gtd | ||
|
||
| Date | Category | Money | | ||
|-------------------+----------+-------| | ||
| <2017-10-07 ����> | Book | 30.6 | | ||
| <2017-10-09 ��һ> | Film | 70.6 | | ||
| | | | | ||
| | | | | ||
|-------------------+----------+-------| | ||
| | Total: | 101.2 | | ||
#+TBLFM: @>$3=vsum(@2..@-1) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,5 @@ | |
:Publisher: | ||
:END: | ||
Comments: | ||
** 2017-10 ʮ�� | ||
*** 2017-10-07 ������ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
* 2017 | ||
** 2017-10 ʮ�� | ||
*** 2017-10-07 ������ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
** [2015-05-04 Mon 00:46] %^g | ||
%? | ||
* 2017 | ||
** 2017-10 ʮ�� | ||
*** 2017-10-07 ������ | ||
**** ���� [2017-10-07 ���� 16:04] :laptop: | ||
|
||
| Date | Category | Money | People | | ||
|-------------------+----------+--------+--------| | ||
| <2017-10-07 ����> | Book | 30.6 | | | ||
| <2017-10-09 ��һ> | Film | 70.6 | | | ||
| <2017-11-10 ����> | Bus | 50.2 | | | ||
| <2017-11-11 ����> | Bus | 60.2 | xinran | | ||
| <2017-11-12 ����> | Eating | 1000 | Ye | | ||
|-------------------+----------+--------+--------| | ||
| | Total: | 1211.6 | | | ||
#+TBLFM: @>$3=vsum(@2..@-1) | ||
|
||
|
||
#+BEGIN_EXAMPLE | ||
@> The @ specifies a row, and this refers to the last row in a table. | ||
$3 The $ specifies a column, so this refers to the third column. | ||
vsum A vertical sum function with parameters given in parenthesis | ||
@2 The second row. Notice that it the Amount header is @1 and the dashes separating the header from the body is ignored. | ||
@-1 The next to the last row. Using these relative references mean that we can add rows to our table, and still have the sum formula work. | ||
|
||
|
||
http://www.howardism.org/Technical/Emacs/spreadsheet.html | ||
#+END_EXAMPLE | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
|
||
* 2017 | ||
** 2017-10 ʮ�� | ||
*** 2017-10-07 ������ | ||
**** testOrgmore[#B] | ||
�����ڣ� [2017-10-07 ���� 16:07] | ||
|
||
[[file:~/.emacs.d/.orgConf.el::%25?]] | ||
|
||
;; In the emacs-lisp , you don't need to set the orgconf, to load the language for running source code | ||
|
||
#+BEGIN_SRC emacs-lisp | ||
(+ 1 2 3 4) | ||
#+END_SRC | ||
|
||
#+RESULTS: | ||
: 10 | ||
|
||
|
||
;you need to set the language for running the python source code | ||
|
||
#+BEGIN_SRC python | ||
a=1+1 | ||
print a | ||
#+END_SRC | ||
|
||
#+RESULTS: | ||
: None | ||
|
||
|
||
;; you need to set the language for running the perl source code | ||
#+BEGIN_SRC perl | ||
my $hello="df"; | ||
print "$hello \n perl \n"; | ||
print "5\n"; | ||
#+END_SRC | ||
|
||
#+RESULTS: | ||
: 1 | ||
|
||
|
||
;; You need to set the language for running the c++ source code | ||
#+BEGIN_SRC C++ | ||
int a=1; | ||
int b=1; | ||
printf("%d\n", a+b); | ||
#+END_SRC | ||
|
||
#+RESULTS: | ||
|
||
#+BEGIN_SRC dot :file a.png | ||
digraph colla_schema { | ||
UserA -> UserB[label = "Liked", color = green]; | ||
UserB -> UserA[label = "Liked_By", color = red]; | ||
} | ||
#+END_SRC | ||
|
||
#+RESULTS: | ||
[[file:a.png]] |
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
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
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
Oops, something went wrong.