I have a task sheduled like that:
* TODO Order from a delivery service
SCHEDULED: <2020-10-06 Di .+2w>
So if I understand the resheduling correctly if I miss the task, it
get's resheduled 2 weeks later (probably deadline would be better here)?
But the delivery service delievers weekly I just
I think that is what I also had inn mind, but I care more about the
resheduling part, wouldn't that work with sheduling it on day x and then
have a deadline day x+1?
thu...@arcor.de (Thomas Plass) writes:
> Hi subscribers,
>
> can multiday timestamp ranges be made repeatable? Case in point: I'd
If somebody is interested I uploaded a reworked version of this there:
https://github.com/spiderbit/org-capture-ledger-shopping
Stefan Huchler writes:
> I wrote this template to capture my bills from mostly one shop, but it
> has support for multiple shops and the important feature is t
Michael Welle writes:
> nice. I do something similar with a simple Perl script and an SQL
> database as a backend and sometimes I mull over about what's wrong
> with me ;). On the other hand, I've Org tables telling me when I got
> hair cuts in the last 10 years or so.
Did find a Bug in my code,
I wrote this template to capture my bills from mostly one shop, but it
has support for multiple shops and the important feature is that it
suggests previous item names and remembers last prices, that gives you
lot's of autocompletion if you repetetivly buy often the same stuff over
and over again.
In case somebody wants something similar, I post my solution I came up
with here:
%(progn
(defun get-table-content (&optional start end)
(let* ((start (or start (buffer-end -1)))
(end (or end (buffer-end 1)))
(lines
(s-split "\n" (buffer-substring-no-pr
Hmm I seem to be unable to access the data from the org-table.
org-element-map seems to be pretty poorly documented, I get the data but
in a strange format, (length row) returns 8 despite the table having
only 6 rows.
Also somehow I can't get to the data with cdr or nth or similar sequence
functi
Just in case somebody tries to come up with a solution, I made some
progress, so I can import the ascii table as org-table:
%(progn
(with-current-buffer (org-capture-get :original-buffer)
(call-interactively 'copy-region-as-kill))
(with-temp-buffer
"*import-temp*"
(erase-buffe
I want to insert a table from a email (gnus) into org-mode but before it
gets saved it should first be converted.
I can do it manually, copy the ascii table to a org-file:
mark it then use that command:
#+begin_src emacs-lisp
(defun my-make-table ()
"docstring"
(interactive)
(or
Giacomo M writes:
> Dear all,
> I would like to clean up my Linux setup to be easily replicable. I am
> considering keeping everything in one org file, and then tangling
> files (e.g. exec scripts, systemd service unit files) and executing
> bash snippets (e.g. for installing packages and sed'ing
Greg Troxel writes:
> https://github.com/matburt/mobileorg-android
>
> And there is a fork/rewrite which I didn't know about, but looks interesting:
>
> https://github.com/wizmer/syncorg
Would be neat if there would be a f-droid build, else you have to access
somehow complicated to the apk.
Thomas Koch writes:
> I would be happy to help you work out any blockers that hinders you from
> releasing the source code. Several people told you that they would be happy
> to
> sponsor your ongoing work on Orgzly and I would so too. If you think your
> code
> is not ready yet to be seen b
I did try to change following code in in the org.el file,
inside the org-cycle-internal-local function.
So that instead of having 3 tab expansions it only shows the next level
of expansion.
I am not 100% shure thats the perfect solution but it seemed to work:
;; THAT IS THE ORIGINAL CODE OF THE T
when I open agenda-view (list all todo entries) "t" I see all todo items
and in the first column the filename.
I would rather see the project the task belongs to,
sorry if I am ask thats maybe very simpel and I just dont find the right
varible/method to do so.
Like:
* Project
** Task 1
** Task
I use now org-todotxt which converts TODO tasks to a todotxt file, you
can automaticly export that on a owncloud directory and then on the
android side you can use simpletask cloudless.
Its dumbed down and gives you not all options of org-mode, but ist looks
pretty and is good enough for reading t
Kyle Meyer writes:
>
> Looks like you've got the right variable, but the key should be the
> language name and the value should be major mode you want.
>
> ("elisp" . xah-emacs-lisp)
I changed it a few times and I think I had it this way first, do I have
to reload org after it? I closed the
Hi,
org-edit-special opens elisp code with emacs-lisp mode, which is not
bad, but I wanted to try out xah-elisp-mode for am while.
tried to overwrite or shadow the settings with something like
(add-to-list 'org-src-lang-modes '("xah-elisp" . emacs-lisp))
am I here at the right place to change t
Nick Dokos writes:
> Eric S Fraga writes:
>
> You are missing a quote:
>
> #+TBLFM: $1='(identity remote(2016-01-19-srctbl,@@#$1))
>
> works for me.
>
> Org-mode version 8.3.3 (release_8.3.3-456-g164555)
>
> --
> Nick
Wow,
that was an eye opener for me, first it lets me use/refer to german
u
Karl Voit writes:
> #+NAME: 2016-01-19-srctbl
> | Testdata |
> |--|
> | foobar |
> | fooübar |
> | fooßbar |
> | 1er |
> | 23,42|
> | 23.42|
>
> | Result | Expected Result | Comparison |
> |--+-+|
> | foobar | foobar
Kyle Meyer writes:
> if-let has been define in Emacs's subr-x.el since c08f8be (New if-let,
> when-let, thread-first and thread-last macros., 2014-06-30).
is it then that your code will not run if you dont use this autohook
thing? or do I have to be in a orgfile that it works?
(load "~/git/org-
Danie Roux writes:
> On Sat, Jan 16, 2016 at 9:59 PM, Stefan Huchler
> wrote:
>> I just tried to write am backend for this todolist format:
>> https://github.com/ginatrapani/todo.txt-cli/wiki/The-Todo.txt-Format
>
> This is not ready for general use. Will probably eat yo
Hi Rasmus,
Rasmus writes:
> When you sync tasks, do they show up in the task program or only the
> calendar?
I only see them in the sync complete dialog and in the owncloud browser
calendar interface, if ist does not sync normal tasks without timestamps
its not what I am searching at the moment
Hi,
first thanks it at least does something now.
Rasmus writes:
> It doesn't need a solution, but I think you need one of the "forked"
> version since some tag is missing. Maybe this one
>
> https://github.com/blaa/org-caldav
for what exactly do you think do I need such fork? for sync
Rasmus writes:
> Stefan Huchler writes:
>
>> Maybe export/import backend is the wrong way to go, a sync or exchange
>> feature would be better so maybe org-agenda todo export/import ability
>> would be better? but for now a export alone would be an advancement.
>>
> Rasmus writes:
> Maybe CalDav? There's a tool on F-droid called Tasks (or maybe Task) that
> can sync via DAVDroid to REPO.. Maybe org-caldav.el could be extended to
> support the sync. tasks between Org and REPO.
> Rasmus
hmm then each task have to get assigned to a date I guess? Despite t
I just tried to write am backend for this todolist format:
https://github.com/ginatrapani/todo.txt-cli/wiki/The-Todo.txt-Format
and after a few hours
with no real success I gave up.
I want to first have a very simple convertion of some tasks like that:
TODO foo
DONE bar
to:
foo
x bar
bonus w
Rainer M Krug writes:
> Stefan Huchler writes:
>
>> I dont really get what the problem is here, email servers checkup is
>
> Not necessarily - depends which mail server (e.g. gmail or local), if
> you have one or many folders / tags, your network connection, ...
I jus
I dont really get what the problem is here, email servers checkup is
fast enough, and rss u can use that:
nnrss-use-local to ‘t’ and use ‘nnrss-generate-download-script
wow found a solution.
I dont understand why I have to do that, but it seems firefox fucks up
some path or other variables and because of that it doesnt find the
standard server socket file so when I explizitly specifiy that in the
org-protocol.desktop file, it works:
[Desktop Entry]
Name=org-prot
I tried to setup here org-protocol with firefox, first the docu is very
old does refer to gnome 2:
http://orgmode.org/worg/org-contrib/org-protocol.html#sec-3-1
So after searching around I found a howto to make the protocol known by
apps with a desktop file and the command update-desktop-database
Eric Schulte writes:
> I suggested that you remove "." from your numbers. You could also wrap
> your numbers in "s.
> #+name: example
> | "100." |
> #+begin_src emacs-lisp :var example=example
> (caar example)
> #+end_src
>
> #+RESULTS:
> : 100.
>
thank you and sorry for my in
Eric Schulte writes:
> Stefan Huchler writes:
>
>> Bastien writes:
>>
>>> Hi Stefan,
>>>
>>> Stefan Huchler writes:
>>>
>>>> The Problem is that that org-mode seems to auto-format the salary column
>>>> as a number
Bastien writes:
> Hi Stefan,
>
> Stefan Huchler writes:
>
>> The Problem is that that org-mode seems to auto-format the salary column
>> as a number.
>
> That a problem here, but I guess this is handy in many circumstances.
>
> Why don't use just turn t
I try to generate mail drafts from a table as template-tokens.
The Problem is that that org-mode seems to auto-format the salary column
as a number. I don´t need to calc this numbers so saving/getting it as
string would be what I want.
It not only butchers the string because he interprets the
thank you Michael,
that works great, sadly I have to type in the name of the shop
redundantly but I can live with that, with a good org-capture template I
could tab-complete them so it would not be that problem.
I dont want to bother you endlessly but just if you happen to know that
randomly:
ca
hi (Alexander and everybody else who is interested in this topic),
sorry the thread is old and I did not update it, sadly Bastian did not
react to my last post.
I just thought I try it myself, but its tricky and org-colview.el has
1000 lines of code. And I wrote only small functions in (e)lisp so
nd a score for the tea, and I can look
than which tea blends I liked most and which shop gave me best quality.
hope its clear now ;)
Bastien writes:
> Hi Stefan,
>
> (Hint: use `S W' from Gnus to reply to this email.)
>
> Stefan Huchler writes:
>
>> If Basti
Hi Alex,
sorry in gnus its (f) for follow up thought reply in the mailing-list
would be the same ;)
I use emacs since a few months and gnus since a week so
I am not that familier with it as you see ;)
If Bastien could look over it, it would be nice.
Its not my only emacs problem to solve and h
I want to use org-mode as a (tea) database.
What have I done:
1. I have wrote down a tree of shops/orders/brands
2. I defined COLUMNS for Column View that give me a score per shop list
What do I want as result:
1. give me a list of scores for the shops [DONE]
2. give me a list of scores for eac
39 matches
Mail list logo