Re: [dev] Re: st colour shenanigans

2013-02-19 Thread Charlie Kester
On 02/19/2013 06:53, Christoph Lohmann wrote: Greetings. On Tue, 19 Feb 2013 15:53:15 +0100 Alexander Sedov wrote: St colour shenanigans part two: I read the code of Xft library and figured out what the error is. This patch is really really simple (and is made relative to prior-first-patch) a

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Carlos Torres
On Tue, Feb 19, 2013 at 11:52 PM, Kai Hendry wrote: > https://github.com/kaihendry/sg-hackandtell/blob/master/.htaccess > Ah i missed that rewrite :p

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Kai Hendry
Hey Carlos, thanks for taking a look. On 20 February 2013 12:29, Carlos Torres wrote: > i started looking through the repo and found the list thingy > list/maillist it looks like the List-Unsubscribe header http url says > unsub rather than unsubscribe on line 28, not sure if thats correct. > al

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Carlos Torres
i started looking through the repo and found the list thingy list/maillist it looks like the List-Unsubscribe header http url says unsub rather than unsubscribe on line 28, not sure if thats correct. also isn't it even better etiquette to also include a mailto url in the List-Unsubscribe header.

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Sam Watkins
> Makefile/markdown based static site generator I did something similar, but without having looked at your code yet I can tell you that yours sucks less than mine! hehe

Re: [dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Alexander Sedov
While writing this patch, I accidentally intoduced off-by-one error that caused empty terminal window names and could, in theory, lead to crash. This patch is fixing this accident. 2013/2/19 Christoph Lohmann <2...@r-36.net> > Greetings. > > On Tue, 19 Feb 2013 19:14:18 +0100 Alexander Sedov >

Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Alexander Sedov
Enjoy these well-formed patches. 2013/2/19 Alexander Sedov > Here it is, the new version. > > > 2013/2/19 Christoph Lohmann <2...@r-36.net> > >> Greetings. >> >> On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov >> wrote: >> > This patch adds support for rectangular selections a-la urxvt, whi

Re: [dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 19:14:18 +0100 Alexander Sedov wrote: > --- > st.c | 111 > +++--- > 1 file changed, 93 insertions(+), 18 deletions(-) Thanks, it’s applied. What’s the application needing this? Sincerely, Christoph

[dev] [PATCH] Added basic xterm-ish palette swap support.

2013-02-19 Thread Alexander Sedov
--- st.c | 111 +++--- 1 file changed, 93 insertions(+), 18 deletions(-) diff --git a/st.c b/st.c index 4b21380..82f935b 100644 --- a/st.c +++ b/st.c @@ -302,6 +302,7 @@ static void execsh(void); static void sigchld(int); static void

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Brandon Invergo
Kai Hendry writes: > https://github.com/kaihendry/sg-hackandtell/blob/master/Makefile > > For bonus points I have a plan9 mk version here: > https://github.com/kaihendry/sg-hackandtell/blob/master/mkfile > > Enjoy and I would love to hear if it could suck less or if there are > similar projects I

Re: [dev] Makefile/markdown based static site generator

2013-02-19 Thread Nick
I tend to do variations on the theme of the attached, nowadays. I used to have a shell find thing, but got rid of it as it was slow over a large directory (particularly fuse-ssh mounted), and also I don't think it's standard Make. For that matter nor is the % syntax that you use, but I appreciate

[dev] Makefile/markdown based static site generator

2013-02-19 Thread Kai Hendry
Hey guys, https://github.com/kaihendry/sg-hackandtell/blob/master/Makefile For bonus points I have a plan9 mk version here: https://github.com/kaihendry/sg-hackandtell/blob/master/mkfile Enjoy and I would love to hear if it could suck less or if there are similar projects I could learn from. De

Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Alexander Sedov
Here it is, the new version. 2013/2/19 Christoph Lohmann <2...@r-36.net> > Greetings. > > On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov > wrote: > > This patch adds support for rectangular selections a-la urxvt, which come > > in handy when using applications like irssi or mcabber. > > You

Re: [dev] Re: st colour shenanigans

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 15:53:15 +0100 Alexander Sedov wrote: > St colour shenanigans part two: I read the code of Xft library and figured > out what the error is. This patch is really really simple (and is made > relative to prior-first-patch) and finally fixes color behaviour. Thanks f

Re: [dev] st patch: rectangular selection support

2013-02-19 Thread Christoph Lohmann
Greetings. On Tue, 19 Feb 2013 15:54:06 +0100 Alexander Sedov wrote: > This patch adds support for rectangular selections a-la urxvt, which come > in handy when using applications like irssi or mcabber. You are commenting out code and leave it there without any notice, if it should be reused la

[dev] Re: st colour shenanigans

2013-02-19 Thread Alexander Sedov
St colour shenanigans part two: I read the code of Xft library and figured out what the error is. This patch is really really simple (and is made relative to prior-first-patch) and finally fixes color behaviour. 2013/2/19 Alexander Sedov > Due to some shenanigans to be further investigated, col

[dev] st patch: rectangular selection support

2013-02-19 Thread Alexander Sedov
This patch adds support for rectangular selections a-la urxvt, which come in handy when using applications like irssi or mcabber. 0001-Rectangular-selection-support-added.patch Description: Binary data