emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Remembrance Agent and Orgmode
@ 2012-07-17 15:07 Karl Voit
  0 siblings, 0 replies; 8+ messages in thread
From: Karl Voit @ 2012-07-17 15:07 UTC (permalink / raw)
  To: emacs-orgmode

Hi!

In my research I stumbled upon Rememberance Agent[1][2] and since it
does have a Debian package install candidate [3] I was thinking
about giving it a try.

This software (originally from MIT) seems to be quite handy and its
features seems to be a perfect companion to Org-mode.

There is also a nice video[4] where Thad Starner is using a headset
and a "mobile" version of Emacs/RA. Be aware that this was 1996!

It's a bit outdated (v2.12 2004-02-16) and after being installed on
my Ubuntu, it makes the impression that much fiddling is needed to
start indexing and stuff.

Is there somebody still using RA? Is there some tutorial or how-to
out there that helps a RA-newbie? Do you have lessons learned?

Thanks!

  1. http://www.remem.org/
  2. http://www.emacswiki.org/emacs/RemembranceAgents
  3. http://packages.debian.org/de/sid/remembrance-agent
  4. http://www.youtube.com/watch?v=k-zThJX920w
-- 
Karl Voit

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

* Re: Remembrance Agent and Orgmode
@ 2012-07-17 17:16 Benjamin Slade
  2012-09-29  3:00 ` Eric Fraga
  0 siblings, 1 reply; 8+ messages in thread
From: Benjamin Slade @ 2012-07-17 17:16 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: Karl Voit

Sadly I don't have any information to offer, but I'd like to second Karl's request. I was also looking at the Remembrance Agent last week and trying to figure out (1) how to get it properly set-up and (2) how it might best be used in a "modern" Emacs(/Orgmode) setup.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dr Benjamin Slade [ http://ling.uta.edu/~ben/ ]
  Dept. of Linguistics & TESOL - University of Texas at Arlington                
    132E Hammond Hall | Office Hours: tba
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                         Stæfcræft & Vyākaraṇa (lingblog) -  http://staefcraeft.blogspot.com
                         The Babbage Files (techblog)     - http://babbagefiles.blogspot.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  "While corporations dominate society and write the laws,
   each advance in technology is an opening for them
   to further restrict its users."
                                            --Stallman's Law
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   Ongietan sceal gleaw hæle		hu gæstlic bið,
   þonne ealre þisse worulde wela	weste stondeð,
   swa nu missenlice 	     		geond þisne middangeard
   winde biwaune	  		weallas stondaþ,
   hrime bihrorene,	  		hryðge þa ederas.
   	 		  	                      --The Wanderer (73-77)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                   {sent from Emacs running under GNU/Linux}

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

* Re: Remembrance Agent and Orgmode
  2012-07-17 17:16 Remembrance Agent and Orgmode Benjamin Slade
@ 2012-09-29  3:00 ` Eric Fraga
  2012-10-01 17:20   ` Benjamin Slade
  0 siblings, 1 reply; 8+ messages in thread
From: Eric Fraga @ 2012-09-29  3:00 UTC (permalink / raw)
  To: Benjamin Slade; +Cc: Karl Voit, emacs-orgmode

Hi,

sorry I am coming late to this thread.  I use the Remembrance Agent.  It
works great for me, trawling both emails and all my text (org, latex,
etc.) documents automatically for similarities in text while I
write.  It's ideal for academic writing (papers, proposals).

The agent is not intrusive at all, assuming you have a large enough
display and works particularly well if you use a display in portrait
orientation, as I do for writing.

There are two elements to setting this up: the emacs side and the
remembrance agent itself.  For emacs, my settings are straightforward:

#+begin_src emacs-lisp
(setq hilit-background-mode 'dark) ; if you have a dark background, obviously ;-)
(require 'remem)
(setq remem-database-dir "/home/ucecesf/s/share/remembrance-agent"
      remem-load-original-suggestion t
      remem-prog-dir "/usr/bin"
      remem-scopes-list '(("documents" 4 5 500)
                          ("mail" 4 10 500)
                          ))
#+end_src

For the agent itself, I use cron to update the databases every night
with an entry that looks like this:

,----
| 12 4 * * * sh /home/ucecesf/s/bin/ra-buildindices.sh
`----

The contents of that shell script are:

#+begin_src sh
#!/bin/sh -f
B="/home/ucecesf/s/share/remembrance-agent"
ra-index ${B}/mail ${HOME}/s/News/agent/nnimap/ucl > /dev/null
ra-index ${B}/documents ${HOME}/s/notes ${HOME}/s/grants ${HOME}/s/talks ${HOME}/s/papers ${HOME}/s/projects > /dev/null
#+end_src

In all of the above, you will need to change all the appropriate paths
for the location of the databases and the places to search.  The two
index commands trawl my emails and my relevant documents respectively.

I hope this helps.

-- 
: Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D
: in Emacs 24.2.50.1 and Org release_7.9.1-412-g75820c

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

* Re: Remembrance Agent and Orgmode
  2012-09-29  3:00 ` Eric Fraga
@ 2012-10-01 17:20   ` Benjamin Slade
  2012-10-11 12:08     ` Alan Schmitt
  0 siblings, 1 reply; 8+ messages in thread
From: Benjamin Slade @ 2012-10-01 17:20 UTC (permalink / raw)
  To: Eric Fraga; +Cc: Karl Voit, emacs-orgmode

Dear Eric,

Many thanks for this; it was very useful: I've got the Remembrance Agent
up and running now.


Eric Fraga <e.fraga@ucl.ac.uk> writes:

> Hi,
>
> sorry I am coming late to this thread.  I use the Remembrance Agent.  It
> works great for me, trawling both emails and all my text (org, latex,
> etc.) documents automatically for similarities in text while I
> write.  It's ideal for academic writing (papers, proposals).
>
> The agent is not intrusive at all, assuming you have a large enough
> display and works particularly well if you use a display in portrait
> orientation, as I do for writing.
>
> There are two elements to setting this up: the emacs side and the
> remembrance agent itself.  For emacs, my settings are straightforward:
>
> #+begin_src emacs-lisp
> (setq hilit-background-mode 'dark) ; if you have a dark background, obviously ;-)
> (require 'remem)
> (setq remem-database-dir "/home/ucecesf/s/share/remembrance-agent"
>       remem-load-original-suggestion t
>       remem-prog-dir "/usr/bin"
>       remem-scopes-list '(("documents" 4 5 500)
>                           ("mail" 4 10 500)
>                           ))
> #+end_src
>
> For the agent itself, I use cron to update the databases every night
> with an entry that looks like this:
>
> ,----
> | 12 4 * * * sh /home/ucecesf/s/bin/ra-buildindices.sh
> `----
>
> The contents of that shell script are:
>
> #+begin_src sh
> #!/bin/sh -f
> B="/home/ucecesf/s/share/remembrance-agent"
> ra-index ${B}/mail ${HOME}/s/News/agent/nnimap/ucl > /dev/null
> ra-index ${B}/documents ${HOME}/s/notes ${HOME}/s/grants ${HOME}/s/talks ${HOME}/s/papers ${HOME}/s/projects > /dev/null
> #+end_src
>
> In all of the above, you will need to change all the appropriate paths
> for the location of the databases and the places to search.  The two
> index commands trawl my emails and my relevant documents respectively.
>
> I hope this helps.


-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dr Benjamin Slade <http://ling.uta.edu/~ben/>
  Dept. of Linguistics & TESOL 
    University of Texas at Arlington                
      132E Hammond Hall | Office Hours: tba
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        {sent by mu4e on Emacs running under GNU/Linux}

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

* Re: Remembrance Agent and Orgmode
  2012-10-01 17:20   ` Benjamin Slade
@ 2012-10-11 12:08     ` Alan Schmitt
  2012-10-12  7:08       ` Alan Schmitt
  0 siblings, 1 reply; 8+ messages in thread
From: Alan Schmitt @ 2012-10-11 12:08 UTC (permalink / raw)
  To: Benjamin Slade; +Cc: Karl Voit, emacs-orgmode

Dear all,

I'm trying to set up the remembrance agent, but I'm not able to get the
binaries to work. I'm on OS X Mountain Lion, and the binaries from
http://www.remem.org/ tell me "bad CPU type". I tried building it from
source, but I'm getting an error about strnlen.

If someone knows how to build these binaries, I'd gladly use some help.

Thanks a lot,

Alan

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

* Re: Remembrance Agent and Orgmode
  2012-10-11 12:08     ` Alan Schmitt
@ 2012-10-12  7:08       ` Alan Schmitt
  2012-10-12 15:40         ` Benjamin Slade
  0 siblings, 1 reply; 8+ messages in thread
From: Alan Schmitt @ 2012-10-12  7:08 UTC (permalink / raw)
  To: Benjamin Slade; +Cc: Karl Voit, emacs-orgmode

Alan Schmitt <alan.schmitt@polytechnique.org> writes:

> I'm trying to set up the remembrance agent, but I'm not able to get the
> binaries to work. I'm on OS X Mountain Lion, and the binaries from
> http://www.remem.org/ tell me "bad CPU type". I tried building it from
> source, but I'm getting an error about strnlen.

I've been able to build it, by commenting out the "strnlen" function in
savutil/gbuf.c, as it's already define in OS X since Lion.

Alan

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

* Re: Remembrance Agent and Orgmode
  2012-10-12  7:08       ` Alan Schmitt
@ 2012-10-12 15:40         ` Benjamin Slade
  2012-10-13 15:29           ` Alan Schmitt
  0 siblings, 1 reply; 8+ messages in thread
From: Benjamin Slade @ 2012-10-12 15:40 UTC (permalink / raw)
  To: Alan Schmitt; +Cc: Karl Voit, emacs-orgmode

Alan,

So do you have it working now? I don't run Macs, so I didn't have
anything to suggest earlier.

That sounds like something which should
be documented somewhere (i.e. which now someone should document).


On Fri, 12 Oct 2012, Alan Schmitt <alan.schmitt@polytechnique.org> wrote:

> Alan Schmitt <alan.schmitt@polytechnique.org> writes:
>
>> I'm trying to set up the remembrance agent, but I'm not able to get the
>> binaries to work. I'm on OS X Mountain Lion, and the binaries from
>> http://www.remem.org/ tell me "bad CPU type". I tried building it from
>> source, but I'm getting an error about strnlen.
>
> I've been able to build it, by commenting out the "strnlen" function in
> savutil/gbuf.c, as it's already define in OS X since Lion.
>
> Alan


-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dr Benjamin Slade <http://ling.uta.edu/~ben/>
  Dept. of Linguistics & TESOL 
    University of Texas at Arlington                
      132E Hammond Hall | Office Hours: tba
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        {sent by mu4e on Emacs running under GNU/Linux}

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

* Re: Remembrance Agent and Orgmode
  2012-10-12 15:40         ` Benjamin Slade
@ 2012-10-13 15:29           ` Alan Schmitt
  0 siblings, 0 replies; 8+ messages in thread
From: Alan Schmitt @ 2012-10-13 15:29 UTC (permalink / raw)
  To: Benjamin Slade; +Cc: Karl Voit, emacs-orgmode

Benjamin Slade <slade@jnanam.net> writes:

> So do you have it working now? I don't run Macs, so I didn't have
> anything to suggest earlier.

Yes, it's working now.

> That sounds like something which should
> be documented somewhere (i.e. which now someone should document).

Yes, probably. I don't know where, though, since it does not seem to be
actively maintained.

Alan

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

end of thread, other threads:[~2012-10-13 15:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-17 17:16 Remembrance Agent and Orgmode Benjamin Slade
2012-09-29  3:00 ` Eric Fraga
2012-10-01 17:20   ` Benjamin Slade
2012-10-11 12:08     ` Alan Schmitt
2012-10-12  7:08       ` Alan Schmitt
2012-10-12 15:40         ` Benjamin Slade
2012-10-13 15:29           ` Alan Schmitt
  -- strict thread matches above, loose matches on Subject: below --
2012-07-17 15:07 Karl Voit

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).