Re: [dev] tmux export buffer to pastebin

2013-07-19 Thread Martti Kühne
On Sat, Jul 13, 2013 at 7:50 AM, Kai Hendry wrote: > Hi guys, > > Since hopefully most of you are running http://st.suckless.org/ and > tmux, perhaps you'll find this bind interesting: > Although I use tmux on a daily basis I'm not sure how relevant this is for this list. Also, I'm not particula

Re: [dev] tmux export buffer to pastebin

2013-07-19 Thread stanio
* Kai Hendry 2013-07-13 07:50 > Since hopefully most of you are running http://st.suckless.org/ and > tmux, perhaps you'll find this bind interesting: > > bind-key p capture-pane -S -32768 \; save-buffer /tmp/tmux-buffer \; > run "cat /tmp/tmux-buffer | curl -F 'sprunge=<-' http://sprunge.us > | t

Re: [dev] tmux export buffer to pastebin

2013-07-19 Thread Chris Down
On 13 July 2013 07:50, Kai Hendry wrote: > bind-key p capture-pane -S -32768 \; save-buffer /tmp/tmux-buffer \; > run "cat /tmp/tmux-buffer | curl -F 'sprunge=<-' http://sprunge.us > | tmux load-buffer -; tmux show-buffer" You can just do: curl -F 'sprunge=@/tmp/tmux-buffer' sprunge.us

Re: [dev] [PATCH] Add compatibility for OpenBSD in tar

2013-07-19 Thread Galos, David
> OpenBSD defines strlcpy function, and the declaration is a bit different > of the static declartion found in tar.c. The duplication of symbol name > with different type (one extern and other static, one returning int and > the other returning size_t) caused tar couldn't compile in OpenBSD. Since

[dev] [sbase] [patch] Add sha256sum(1)

2013-07-19 Thread sin
Hi, Added sha256sum(1). No support for -c. Thanks, sin >From 2f8b277fbef7f7d40051cf2ceb751ea6b1b9b7bd Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 19 Jul 2013 14:29:43 +0100 Subject: [PATCH 1/2] Add sha256sum(1) --- Makefile | 4 +- sha256.h | 18 +++ sha256sum.1 | 8 +++

[dev] [sbase] [patch] Do not hardcode the size of md

2013-07-19 Thread sin
Just to be more consistent. >From 9ed3cde216a7aeca0af1371b3890a50b852f4d51 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 19 Jul 2013 14:31:42 +0100 Subject: [PATCH 2/2] Do not hardcode the size of md --- util/md5.c | 2 +- util/sha1.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) di

[dev] [sbase] [patch v2] Add sha256sum(1)

2013-07-19 Thread sin
Forgot to update $(HDR) in Makefile. >From 9794df52d6af13e67815d796f05e53c6b0b1402a Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 19 Jul 2013 14:29:43 +0100 Subject: [PATCH] Add sha256sum(1) --- Makefile | 6 ++- sha256.h | 18 +++ sha256sum.1 | 8 sha256sum.c | 49 +

Re: [dev] [sbase] [patch] Add sha256sum(1)

2013-07-19 Thread Szabolcs Nagy
* sin [2013-07-19 16:34:07 +0300]: > +/* > + * public domain sha256 crypt implementation > + * > + * original sha crypt design: http://people.redhat.com/drepper/SHA-crypt.txt > + * in this implementation at least 32bit int is assumed, > + * key length is limited, the $5$ prefix is mandatory, '\n'

Re: [dev] [PATCH] Add compatibility for OpenBSD in tar

2013-07-19 Thread Roberto E. Vargas Caballero
On Fri, Jul 19, 2013 at 09:19:41AM -0400, Galos, David wrote: > > OpenBSD defines strlcpy function, and the declaration is a bit different > > of the static declartion found in tar.c. The duplication of symbol name > > with different type (one extern and other static, one returning int and > > the

[dev] [sbase] [patch] Remove trailing whitespace

2013-07-19 Thread sin
>From 32020667bde97a75741340ff926a804c135c29f5 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 19 Jul 2013 17:05:28 +0100 Subject: [PATCH] Remove trailing whitespace --- tar.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tar.c b/tar.c index 3481942..3

Re: [dev] [PATCH] Add compatibility for OpenBSD in tar

2013-07-19 Thread sin
On Fri, Jul 19, 2013 at 04:29:23PM +0200, Roberto E. Vargas Caballero wrote: > On Fri, Jul 19, 2013 at 09:19:41AM -0400, Galos, David wrote: > > > OpenBSD defines strlcpy function, and the declaration is a bit different > > > of the static declartion found in tar.c. The duplication of symbol name >

[dev] [sbase] [patch] Change sprintf to snprintf

2013-07-19 Thread sin
>From 7b1ebb6295aade41f4a0269ac473fff1dbc19bf3 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 19 Jul 2013 17:08:15 +0100 Subject: [PATCH] Change sprintf to snprintf cal.c:40: warning: sprintf() is often misused, please use snprintf() --- cal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-

Re: [dev] [PATCH] Add compatibility for OpenBSD in tar

2013-07-19 Thread Galos, David
>> If we are going to use only in this file then maybe is better use the >> snprintf >> directly. > > +1 - that makes more sense. Then, that is what we'll do. Also, sin, I'm looking over your patches, and I'll try to add them tonight.

[dev] [PATCH] Add RGB color definition

2013-07-19 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" It is impossible allocate all the RGB colors using a static array, so it is necessary move DC.col into a pointer and use dinamic memory. Since the color definition is not used to much is not a bad idea use realloc each time. It means the color definition arry

[dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" OpenBSD defines strlcpy function, and the declaration is a bit different of the static declartion found in tar.c. The duplication of symbol name with different type (one extern and other static, one returning int and the other returning size_t) caused tar could

Re: [dev] [sbase] [patch] Add sha256sum(1)

2013-07-19 Thread Galos, David
>> +/* >> + * public domain sha256 crypt implementation >> + * >> + * original sha crypt design: http://people.redhat.com/drepper/SHA-crypt.txt >> + * in this implementation at least 32bit int is assumed, >> + * key length is limited, the $5$ prefix is mandatory, '\n' and ':' is >> rejected >> + *

Re: [dev] [sbase] [patch] Do not hardcode the size of md

2013-07-19 Thread Galos, David
> Just to be more consistent. Applied!

Re: [dev] [sbase] [patch] Change sprintf to snprintf

2013-07-19 Thread Galos, David
Applied

Re: [dev] [sbase] [patch] Remove trailing whitespace

2013-07-19 Thread Galos, David
Applied

Re: [dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Galos, David
> OpenBSD defines strlcpy function, and the declaration is a bit different > of the static declartion found in tar.c. The duplication of symbol name > with different type (one extern and other static, one returning int and > the other returning size_t) caused tar couldn't compile in OpenBSD. I hav

Re: [dev] [sbase] [patch] Change contact info

2013-07-19 Thread Galos, David
Applied

Re: [dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Roberto E. Vargas Caballero
On Sat, Jul 20, 2013 at 01:28:59AM -0400, Galos, David wrote: > > OpenBSD defines strlcpy function, and the declaration is a bit different > > of the static declartion found in tar.c. The duplication of symbol name > > with different type (one extern and other static, one returning int and > > the

Re: [dev] [surf] Patch for high dpi screens

2013-07-19 Thread Anselm R Garbe
On 16 July 2013 10:42, Nick wrote: > The attached patch ensures surf adheres more closely to the CSS spec > in making one px equal to 1/96 inch, regardless of the actual screen > pixel density. This is a typical web-style cop-out for the fact that > many stupid web designers only write things in t

Re: [dev] [dwm] [patch] Fix warning about XKeycodeToKeysym

2013-07-19 Thread Anselm R Garbe
Hi Alexander, On 15 July 2013 17:11, Alexander Rødseth wrote: > I read the git log after having submitted the patch and I understand > that this issue has been looked at and various solutions has been > considered already. Hopefully there will be a good way to resolve this > in the future. Well,