[O] [bug] Org mode repo broken as of abbea596111611a945d73783b3e8790e76599740, org-element.el missing

2012-07-27 Thread Kyle Machulis
In commit abbea596111611a945d73783b3e8790e76599740, the commit message starts with - Move org-element.el from contrib/lisp to lisp/. However, it looks like org-element.el just got deleted, not moved. This causes much badness when trying to rebuild.

Re: [O] Mindwave Emacs. EEG reading and Data gathering in an org-mode buffer.

2012-09-05 Thread Kyle Machulis
Something this thread might be interested in. I proposed a project a couple of years ago called the Quantified Coder, basically looking at hooking as many biometrics as possible into emacs. There's a small presentation on it at http://www.openyou.org/2011/05/13/the-quantified-coder/ Unfortunately

Re: [O] Export a weekly calendar view from org-agenda

2013-01-17 Thread Kyle Machulis
Sure, you can just set a custom agenda view, like so: ("w" agenda "Week with events and no daily/chores" ((org-agenda-ndays-to-span 7) (org-agenda-ndays 7) (org-agenda-filter-preset '("-daily" Then export that. I have a system simil

Re: [O] Using Org/babel for Emacs config files (was: OT: Learning ELISP)

2013-01-23 Thread Kyle Machulis
Building on these idea, eric schulte's emacs 24 starter kit actually uses tags to configure what should and shouldn't be tangled, to make things easily configurable by others (not really a feature most of us are looking for in configs, but interesting nonetheless). Check out the starter-kit-load fu

[O] Sticky agenda status?

2012-04-12 Thread Kyle Machulis
Just curious if the sticky agenda branch is going to land as a feature at some point, or if there was some discussion on what's blocking it that I'm missing? There was lots of action last month then silence, and it looks like the branch has bitrotted against the trunk now. Was kinda looking forward

Re: [O] Sticky agenda status?

2012-04-14 Thread Kyle Machulis
On Fri, Apr 13, 2012 at 3:56 PM, Max Mikhanosha wrote: > I had merged origin/master into max-sticky-agenda, can you try it out > so that there is more then one person running it? If everything looks > good I'll push it to master on Monday. I'm running it now, seems to be working well. > So far I

[O] Making org-fit-agenda-window able to be turned off?

2012-04-14 Thread Kyle Machulis
Would adding a flag to skip calls to org-fit-agenda-window be handy to anyone else? Some context: I use workgroups.el (https://github.com/tlh/workgroups.el) for my desktop management setup. I have a workgroup that keeps my org-mode daily agenda and sauron (https://github.com/djcb/sauron) up as my

Re: [O] Org-mode as a Quantified Self platform

2012-04-30 Thread Kyle Machulis
My "Quantified Coder" talk at Google IO last year was going to focus toward emacs and org-mode, actually: http://www.youtube.com/watch?v=52Ml_zax4A0#t=12m47s Unfortunately I haven't gotten time to actually start on it yet, but I know there's community interest in org-mode and tracking as much as

Re: [O] calfw, get rid of file names

2012-06-11 Thread Kyle Machulis
I used defadvice to fix this: (defadvice qdot/cfw:org-extract-summary (after cfw:org-extract-summary) "Remove tags and filenames from item summary" (message item)) On Sun, Jun 10, 2012 at 1:57 AM, Michael Welle wrote: > Hello, > > I just discovered calfw. That's neat stuff ;). I wonder if I

Re: [O] calfw, get rid of file names

2012-06-12 Thread Kyle Machulis
On Tue, Jun 12, 2012 at 1:40 AM, Michael Welle wrote: > The thing Kyle wanted to point out is that you can customise > the item in the above advice. (message item) just prints the item to the > status line. > > Since I'm a bit short on time at the moment I cheated a little bit and > manipulated th

[O] sexp timestamp causing agenda compilation issues as of 8517be79b5c1

2013-02-06 Thread Kyle Machulis
As of commit 8517be79b5c1fe165d23ea65ad70a282e9c595bb (bisected to find this), agenda compilation died with the following backtrace for me: Debugger entered--Lisp error: (error "Bad timestamp `' Error was: (Not a standard Org-mode time string: )") signal(error ("Bad timestamp `'\nError was: (Not

Re: [O] sexp timestamp causing agenda compilation issues as of 8517be79b5c1

2013-02-07 Thread Kyle Machulis
Updated to 25a481d8, still getting the same error and backtrace when generating agendas where the memq block evaluates non-nil. :/ On Thu, Feb 7, 2013 at 1:33 AM, Bastien wrote: > Hi Kyle, > > Kyle Machulis writes: > >> As of commit 8517be79b5c1fe165d23ea65ad70a282e9c595bb (b

Re: [O] sexp timestamp causing agenda compilation issues as of 8517be79b5c1

2013-02-07 Thread Kyle Machulis
All fixed, thanks! On Thu, Feb 7, 2013 at 10:41 AM, Bastien wrote: > Kyle Machulis writes: > >> Updated to 25a481d8, still getting the same error and backtrace when >> generating agendas where the memq block evaluates non-nil. :/ > > Please pull again, it should

[O] New exporter: Stack overflow in regexp matcher on HTML export of large-ish org-babel blocks

2013-02-25 Thread Kyle Machulis
I'm trying to html export my babel'd config. It seems to be choking on some of the larger blocks (300+ lines) of code (offending blocks seem to be org, erc, programming config). I should probably chop these down a bit for readability (still working on finshing org-ifying it), but I'd also figure we

Re: [O] New exporter: Stack overflow in regexp matcher on HTML export of large-ish org-babel blocks

2013-02-25 Thread Kyle Machulis
Just tested it, works now. Thanks! :D On Mon, Feb 25, 2013 at 3:31 PM, Nicolas Goaziou wrote: > Hello, > > Kyle Machulis writes: > > > I'm trying to html export my babel'd config. It seems to be choking on > some > > of the larger blocks (300+ lines) of co

[O] Exporting meta tags for properties via ox-html

2013-06-01 Thread Kyle Machulis
I've got a bunch of file level properties that I'd like to be able to export as header meta tags in HTML. So if I've got #+TITLE: Testing #+DESCRIPTION: Testing 1 2 3 I could actually get output like ... ... And so on. The org-html-head and org-html-head-extra variables exist to be able to d

[O] [PATCH] ox-html: Fix meta tag output for properties

2013-06-01 Thread Kyle Machulis
There are a few document properties (author, description, keywords) that should automatically be made meta tags if they exist on export. These were currently being checked as part of an and block that would evaluate both, creating the string, then just return a newline on success, meaning the meta

Re: [O] org-contacts, multi-line properties, postal addresses

2013-11-26 Thread Kyle Machulis
Thought about maybe trying to extend AsynK with an org-contacts backend? That'd be ridiculously useful. http://karra-asynk.appspot.com/ On Sat, Nov 16, 2013 at 1:13 PM, Karl Voit wrote: > * Norman Walsh wrote: > > > > Hello world, > > Hello Norman! > > > I'm just taking another look at org-co

Re: [O] firefox bookmarks to org-mode

2013-11-27 Thread Kyle Machulis
While it's been a while since I've done this, I did get it working at least once, in a roundable way. I had a setup for bookmarking via org-protocol and keysnail (http://github.com/mooz/keysnail). I set up org-protocol in firefox like the documentation said (though I remember it being REALLY finni

Re: [O] org todos on paper?

2014-02-27 Thread Kyle Machulis
I had a set of scripts cron'd to like 4am that would run emacs, output a daily agenda export, and email that to me, which I would sometimes print. It was super handy. Of course, they stopped working a while ago but I keep meaning to fix that. On Thu, Feb 27, 2014 at 6:22 PM, Peter Neilson wrote: