Adam Porter writes:
> Samuel Wales writes:
>
>> can org-todo-yesterday be made to use [2016-04-20 Wed] instead of
>> [2016-04-20 Wed 23:59]?
>
> I guess you could add :after advice to the function and remove the time
> from the new timestamp.
Alternatively, maybe you could temporarily either ov
Samuel Wales writes:
> can org-todo-yesterday be made to use [2016-04-20 Wed] instead of
> [2016-04-20 Wed 23:59]?
I guess you could add :after advice to the function and remove the time
from the new timestamp.
Just wanted to follow up with this issue. I just tested it with the latest
org-mode (git commit 7e320e2), the problem was still there. Any chance this
can
be addressed?
Thanks,
York
On Sun, Mar 6, 2016 at 8:34 PM, York Zhao wrote:
> Hi Rasmus,
>
> Thanks for your help. Here's my .emacs:
>
> #+
>
>> I am trying to run R source code blocks on a remote server (defined in my
>> ~/.ssh/config as cesp).
>>
>> I am facing several problems.
>>
>> 1. The following sample block, when used with ":results value" does not
>> give any results.
>>
>> #+NAME: level1
>> #+begin_src R :results val
can org-todo-yesterday be made to use [2016-04-20 Wed] instead of
[2016-04-20 Wed 23:59]?
at least to my thinking, this would indicate that there is
indeterminate time, which is what i would prefer.
--
The Kafka Pandemic: http://thekafkapandemic.blogspot.com
The disease DOES progress. MANY peo
If you wanted to fit a linear regression model with R, you could do so with
the lm function. Calling anova on the output of the regression would give
you a regression anova table.
model <- lm(delivered_seeing ~ zeenith_seeing, data = delsee)
anova(model)
You would need non-zero residuals for that
On 4/21/16 3:53 AM, Vikas Rawal wrote:
>
> 2. Is there a way to be able to use screen/byobu with remote processing?
This thread suggests using dtach:
http://grokbase.com/t/r/ess-help/1536b42tjy/ess-remote-r
I believe some of the inter-process communication magic depends upon i/o
through a file that exists in /tmp on the remote host
If the remote server shares a file system with localhost (does it?), you could
contrive for that temp file to live there (~/.emacs.d/ESS.IPC.HACK) instead.
I've been st
On Thu, 21 Apr 2016, Charles C. Berry wrote:
On Thu, 21 Apr 2016, Charles C. Berry wrote:
On Thu, 21 Apr 2016, Vikas Rawal wrote:
I am trying to run R source code blocks on a remote server (defined in my
~/.ssh/config as cesp).
I am facing several problems.
1. The following sample block,
On Thu, 21 Apr 2016, Charles C. Berry wrote:
On Thu, 21 Apr 2016, Vikas Rawal wrote:
I am trying to run R source code blocks on a remote server (defined in my
~/.ssh/config as cesp).
I am facing several problems.
1. The following sample block, when used with ":results value" does not
give
Hello
Using Kubuntu I just installed R and the following code works nicely
#+tblname: delsee
| airmass | zenith_seeing | delivered_seeing |
|-+---+--|
| 1.3 | 0.95 |1.1119612 |
| 1.3 | 1.0 |1.1704854 |
| 1.3 |
I am having great difficulty in indexing a document involving exporting
to latex. Specifically using colour within the index entry.
╭
│\index{Dutasteride!s/e!common - dizziness} = works
╰
however if I try these, they don't work
╭
│\index{Dutasteride!\textcolor{Green}{dizziness}} = f
On Thu, 21 Apr 2016, Vikas Rawal wrote:
I am trying to run R source code blocks on a remote server (defined in my
~/.ssh/config as cesp).
I am facing several problems.
1. The following sample block, when used with ":results value" does not give
any results.
#+NAME: level1
#+begin_src R :re
On Thu, 21 Apr 2016, Luis wrote:
Still get the build error: org-html-table-cell: Args out of range: [left
left left], 3
On Thu, Apr 21, 2016 at 10:33 AM, Adam Porter wrote:
I think you're looking for #+BEGIN_VERBATIM. :)
I don't think so.
But a #+BEGIN/END EXAMPLE blcok will set your dra
On 04/21/2016 06:10 PM, John Kitchin wrote:
> Probably you need to put this in an init file:
>
> (require 'ox-odt)
>
Thank you very much! It worked!
-Lohan
> Lohan G writes:
>
>> I am running org-mode version 8.3.4 with Emacs 24.5.1. I believe this is
>> the latest stable version of org-mode.
On Thursday, 21 Apr 2016 at 12:07, Lohan G wrote:
> I am running org-mode version 8.3.4 with Emacs 24.5.1. I believe this is
> the latest stable version of org-mode. I want to export some of my org
> files to Open Document format. But it does not show the option to export
> to Open Document ("expor
Probably you need to put this in an init file:
(require 'ox-odt)
Lohan G writes:
> I am running org-mode version 8.3.4 with Emacs 24.5.1. I believe this is
> the latest stable version of org-mode. I want to export some of my org
> files to Open Document format. But it does not show the option to
Lohan G writes:
> I am running org-mode version 8.3.4 with Emacs 24.5.1. I believe this is
> the latest stable version of org-mode. I want to export some of my org
> files to Open Document format. But it does not show the option to export
> to Open Document ("export as OpenDocument Text")
>
> BUT
Hi Nicolas,
As for 3 and 4, I think a more general mechanism for asynchrnous
eval'ing would be preferable. Besides, AFAIU, because of
; Wait until the nREPL code finished to be processed
(while (not (member "done" status))
(nrepl-dict-put response "status" (remove "need-input" sta
I am running org-mode version 8.3.4 with Emacs 24.5.1. I believe this is
the latest stable version of org-mode. I want to export some of my org
files to Open Document format. But it does not show the option to export
to Open Document ("export as OpenDocument Text")
BUT, I got another machine that
Thanks Kyle.
At 21:41 -0400 on Wednesday 2016-04-20, Kyle Meyer wrote:
>
> Based on your configuration dump, it seems like you're using outshine,
You are right. I had installed navi-mode (and its dependencies outshine
and outorg) a few months ago to try it out. I have removed them and the
problem
I am trying to run R source code blocks on a remote server (defined in my
~/.ssh/config as cesp).
I am facing several problems.
1. The following sample block, when used with ":results value" does not give
any results.
#+NAME: level1
#+begin_src R :results value :exports results :colnames yes
Hello,
Luis writes:
> Is there any way I can export the "ascii drawing" correctly???
What about
#+begin_example
...
#+end_example
?
Regards,
--
Nicolas Goaziou
can you see the picture in the first mail? that's my code.
my export configuration is below:
;; === Org Publish =(setq
org-publish-project-alist
'(("github-blog"
:base-directory "/Users/douhua/lx/github/blog/org/post/"
:publishing-directory
I would like to thank everyone for their help in resolving something
which I should have done myself had I but gave the matter a little more
thought.
Best wishes,
Colin.
25 matches
Mail list logo