emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Migrating my current work flow to org-mode
@ 2010-11-08 15:53 Dov Grobgeld
  2010-11-08 16:52 ` Giovanni Ridolfi
  2010-11-08 18:39 ` Eric S Fraga
  0 siblings, 2 replies; 4+ messages in thread
From: Dov Grobgeld @ 2010-11-08 15:53 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2182 bytes --]

Hello,

During the last few days I have learned about org-mode and I'm starting to
plan how to change my current work flow to org-mode. My current work flow is
as follows:

* At the beginning of every new day I create a horizontal line and a time
stamp.
* I use mediawiki == headers == for headers and * for bulleted items.

Here is the typical view for two days:

-----------------------------------------
Monday 2010-11-08 09:49

Worked: 8:00-17:15

== Done/Todo ==

* Add parameter somewhere so that energy graphs take into account that only
part of the panel receives radiation. Do this in run_specific_site.py.
* Teach Alex about python.

== Meeting with Alex and Betty ==

* Todo: run simulation for Tumbaktu.
:
-----------------------------------------
Tuesday 2010-11-09 8:31

Worked: 8:17-

== Engine changes ==

* All these will be changed to vector<Matrix>  M[panel*2]
** ground_collect_matrix Ok
** sky_diffuse_matrix Ok
** sky_beam_matrix Ok
----------------------------------------------

So now I am trying to figure out how to map this into org-mode. Here are
some observations and questions:

   - The horizontal rule is ok in paragraph mode.
   - The timestamp is ok by doing C-c .
   - But the "worked line" doesn't work if I try to use "C-c C-x TAB" as it
   complains "Before first headline". I could turn the row into a header or
   just insert plain text. Is there a more elegant solution? I don't want to
   have the "worked" line indexed. Note that the "worked" line is used at the
   end of the month to summarize the amount of work hours.
   - Is there any way of separating headers from items? I like the
   non-symmetry of the "==" syntax for headers and "*" for items, but I guess I
   can get used to that.
   - At my previous work place I used the same notebook file for more than
   10years(!) of notes, and needless to say it got to be very big (around 100k
   lines). Can org-mode handle that size files?
   - How can I customize the exported HTML? E.g. I don't like the table of
   contents or the numbering of headers.

But alltogether org-mode looks great! I'm looking forward to use it both on
my desktop and in emacs on my N900.

Thanks,
Dov

[-- Attachment #1.2: Type: text/html, Size: 4624 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Migrating my current work flow to org-mode
  2010-11-08 15:53 Migrating my current work flow to org-mode Dov Grobgeld
@ 2010-11-08 16:52 ` Giovanni Ridolfi
  2010-11-08 18:39 ` Eric S Fraga
  1 sibling, 0 replies; 4+ messages in thread
From: Giovanni Ridolfi @ 2010-11-08 16:52 UTC (permalink / raw)
  To: Dov Grobgeld; +Cc: emacs-orgmode

Dov Grobgeld <dov.grobgeld@gmail.com> writes:

> Hello,During the last few days I have learned about org-mode and
> I'm starting to plan how to change my current work flow to
> org-mode. 

You should read the tips and trisk of "power" users
and be inspired by their workflow.

Please have a look at the following web pages and also at worg[1] pages:
and the links there.

http://doc.norang.ca/org-mode.html

http://orgmode.org/worg/org-gtd-etc.php

cheers,
Giovanni

[1] http://orgmode.org/worg/
Worg is an attempt to collectively build a knowledge 
database about Org, planning in plain text and other related topics. 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Migrating my current work flow to org-mode
  2010-11-08 15:53 Migrating my current work flow to org-mode Dov Grobgeld
  2010-11-08 16:52 ` Giovanni Ridolfi
@ 2010-11-08 18:39 ` Eric S Fraga
  2010-11-08 20:24   ` Samuel Wales
  1 sibling, 1 reply; 4+ messages in thread
From: Eric S Fraga @ 2010-11-08 18:39 UTC (permalink / raw)
  To: Dov Grobgeld; +Cc: emacs-orgmode

Dov Grobgeld <dov.grobgeld@gmail.com> writes:

> Hello,
>
> During the last few days I have learned about org-mode and I'm starting to plan how to change my
> current work flow to org-mode. My current work flow is as follows:
>
> * At the beginning of every new day I create a horizontal line and a time stamp.
> * I use mediawiki == headers == for headers and * for bulleted items.

If you are able to consider moving away from this format, org mode has a
really nice date-tree format which is ideal for journal recording.
Top level headings are years, second level are months and third level
are days.  You can enter new entries with just a couple of key presses using
the org-capture feature!

I have something like this for setting this up:

#+begin_src emacs-lisp
(setq org-capture-templates 
      '( ("j" "journal" entry (file+datetree "~/git/notes/journal.org")
	  "* %^{Entry} %^G\n%i%?" :immediate-finish t)))
#+end_src

[...]

> So now I am trying to figure out how to map this into org-mode. Here are some observations and
> questions:
>
>   * The horizontal rule is ok in paragraph mode.
>   * The timestamp is ok by doing C-c .
>   * But the "worked line" doesn't work if I try to use "C-c C-x TAB" as it complains "Before first
>     headline". I could turn the row into a header or just insert plain text. Is there a more elegant
>     solution? I don't want to have the "worked" line indexed. Note that the "worked" line is used at
>     the end of the month to summarize the amount of work hours.

You need a heading in which clock info can be entered.  If you use the
date-tree format, you'll automatically have each day within a heading.

>   * Is there any way of separating headers from items? I like the non-symmetry of the "==" syntax
>     for headers and "*" for items, but I guess I can get used to that.

You can use lists for items (lists can start with -, numbers, and
others).

>   * At my previous work place I used the same notebook file for more than 10years(!) of notes, and
>     needless to say it got to be very big (around 100k lines). Can
>     org-mode handle that size files?

I believe so although my files are all under 1MB corresponding to about
10k lines so I'm not the right person to answer this...  However, many
of the operations I do are on several such files simultaneously so I'm
probably approaching 100k lines in total and most operations respond
immediately.  The performance will depend on what you want to do with
this file.

>   * How can I customize the exported HTML? E.g. I don't like the table of contents or the numbering
>     of headers. 

Trivial.  Everything is customisable!

> But alltogether org-mode looks great! I'm looking forward to use it
> both on my desktop and in emacs on my N900.

I used to use org on my N8x0 computers and loved it.

HTH,
eric

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.36.g6c95)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Migrating my current work flow to org-mode
  2010-11-08 18:39 ` Eric S Fraga
@ 2010-11-08 20:24   ` Samuel Wales
  0 siblings, 0 replies; 4+ messages in thread
From: Samuel Wales @ 2010-11-08 20:24 UTC (permalink / raw)
  To: Eric S Fraga; +Cc: Dov Grobgeld, emacs-orgmode

FYI, an alternative to a date tree is to use sorting in the outline.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-11-08 21:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-08 15:53 Migrating my current work flow to org-mode Dov Grobgeld
2010-11-08 16:52 ` Giovanni Ridolfi
2010-11-08 18:39 ` Eric S Fraga
2010-11-08 20:24   ` Samuel Wales

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).