help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RTF for emacs


From: Emanuel Berg
Subject: Re: RTF for emacs
Date: Fri, 30 May 2014 00:49:41 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Rusi <rustompmody@gmail.com> writes:

> * My-own-private hyperlink system (aka wiki-like)

Links (bookmarks) are very useful - one of the most
helpful things that I thought of was to whenever I
Google I thing, I make a bookmark, and as the title, I
use the piece of code that solved my problem.

The reason I started to do that is that I realized that
often I had Googled something the other day, only to
have to do it again, and not finding that good site
that solved it (because I couldn't remember the exact
search phrase) - also, if you make an effort to really
write the titles, the bookmarks file (plain .html in
Emacs-w3m) becomes sort of a quick reference.

To make it fast, I wrote a couple of defuns:

(defun w3m-bookmark-region-as-title ()
  (interactive)
  (let ((title-suggestion
         (if mark-active
             (buffer-substring (region-beginning) (region-end))
           w3m-current-title )))
    (w3m-bookmark-add w3m-current-url title-suggestion) ))

(defun w3m-bookmark-url-at-point ()
  (interactive)
  (w3m-bookmark-add (w3m-url-valid (w3m-anchor))) )

From: http://user.it.uu.se/~embe8573/conf/emacs-init/w3m.el

> * Brainstorming ...
> * Time/project mgmt *** Agenda *** Time tracking ***
> Effort estimates *** GTD *** Journalling

That sounds like the things lamers like to fiddle with
to pretend they are working. Or am I wrong? (What is
"GTD"?)

> * Syncing with IOS/Android * Reproducible research
> and literate programming * Meta-programming system

I have no idea what any of that is. "Reproducible
research" sounds interesting though.

-- 
underground experts united:
http://user.it.uu.se/~embe8573


reply via email to

[Prev in Thread] Current Thread [Next in Thread]