- forward
- backward
- next
- previous
- down
- forward
- backward
- up
(package "eask-test" | |
"1.0.0" | |
"") | |
(package-file "eask-test.el") | |
(source gnu) | |
(source melpa) | |
(depends-on "emacs" "26.1") |
(defun magit-process-filter (proc string) | |
"Default filter used by `magit-start-process'." | |
(with-current-buffer (process-buffer proc) | |
(let ((inhibit-read-only t)) | |
(magit-process-yes-or-no-prompt proc string) | |
(magit-process-username-prompt proc string) | |
(magit-process-password-prompt proc string) | |
(goto-char (process-mark proc)) | |
(setq string (propertize string 'magit-section | |
(process-get proc 'section))) |
> cask exec elsa pomidor.el | |
pomidor.el:69:49:error:Argument 1 accepts type String but received Mixed | |
pomidor.el:74:49:error:Argument 1 accepts type String but received Mixed | |
pomidor.el:79:53:error:Argument 1 accepts type String but received Mixed | |
pomidor.el:84:55:error:Argument 1 accepts type String but received Mixed | |
pomidor.el:90:22:error:Argument 1 accepts type String but received Unbound | |
pomidor.el:113:27:error:Reference to free variable `pomidor-default-alert'. | |
pomidor.el:125:22:error:Argument 1 accepts type (Cons Mixed Mixed)? but received Unbound | |
pomidor.el:131:37:error:Reference to free variable `pomidor-play-sound-file-emacs'. | |
pomidor.el:141:9:error:Reference to free variable `pomidor-time-face'. |
python -c 'import os; os.execvp(\'emacs\', [\'emacs\', \'-batch\', \'-eval\', \'(progn (print "start") (princ "foo") (sit-for 5) (princ "\n"))\'])'
print
method puts newline at the end automatically, princ
does not. The above prints "start"
then foo
which I can't see only after 5 seconds when the newline is printed.
stdbuf -o0 python -c 'import os; os.execvp(\'emacs\', [\'emacs\', \'-batch\', \'-eval\', \'(progn (print "start") (princ "foo") (sit-for 5) (princ "\
n"))\'])'
[15:22:15]matus@herakleitos:~/.emacs.d/projects/smartparens | |
> time cask exec elsa smartparens.el | |
86:9:error:Argument 1 accepts type Symbol but received Mixed | |
93:18:error:Argument 2 accepts type Mixed but received Unbound | |
93:18:error:Argument 3 accepts type Mixed but received Unbound | |
93:18:error:Argument 4 accepts type Mixed but received Unbound | |
94:45:error:Argument 2 accepts type Mixed but received Unbound | |
131:37:error:Argument 1 accepts type Cons Mixed Mixed? but received Mixed | |
132:36:error:Argument 1 accepts type Mixed but received Unbound |
(defconst trinary--true 1) | |
(defconst trinary--maybe 0) | |
(defconst trinary--false -1) | |
(defun trinary-print (value) | |
(let ((x (trinary-value-value value))) | |
(cond | |
((= x trinary--false) "F") | |
((= x trinary--maybe) "?") | |
((= x trinary--true) "T"))) |
The columns mean: date, amount, cost per share, cost total, running sum of all shares, running cost of the position, the rest is in english :)
Datum | Pocet | Nakup | Cena | Σ Pocet | Σ Cena | Avg | EPS | P/E | Div | Yield | YOC | Income |
---|---|---|---|---|---|---|---|---|---|---|---|---|
[2016-01-27 Wed] | 9 | 95.00 | 855.000 | 9.000 | 855.000 | 95.000 | 9.470 | 10.032 | 2.08 | 2.189 | 2.189 | 18.720 |
[2016-04-29 Fri] | 11 | 93.00 | 1023.000 | 20.000 | 1878.000 | 93.900 | 8.99 | 10.345 | 2.28 | 2.452 | 2.428 | 45.600 |
[2016-09-16 Fri] | -20 | 116.00 | -2320.000 | 0.000 | -442.000 | -inf | 8.99 | 12.903 | 2.28 | 1.966 | -0.000 | 0.000 |
$configurator->createRobotLoader() | |
->addDirectory($appDir) | |
->addDirectory(__DIR__ . '/Utils') | |
->register(); | |
// zmenit na => (pridat .phpt scan) | |
$robotLoader = $configurator->createRobotLoader(); | |
$robotLoader->acceptFiles = '*.php, *.phpt'; | |
$robotLoader->addDirectory($appDir) |
Relations are maintained through the outline hierarchy and special properties on the entries so we can model arbitrary graphs instead of only DAGs. This means you can define parents or children completely outside the hierarchy or even in different files.
Relations are kept in sync bidirectionally so please only use the API to maintain them otherwise things might get lost. Because the relations are bidirectional the graph traversal and querying is extremly fast.
Parents are defined by the GRAPH_PARENTS
property as list of IDs and implicitly through the org outline hierarchy: all headlines above this one are this entry's parents.