Re: [dev] [ANNOUNCE] dvtm-0.8

2012-09-20 Thread Marc Andre Tanner
On Wed, Aug 01, 2012 at 03:12:11PM +0200, Kai Hendry wrote: > Couldn't quite work out how to scroll back in the buffer. To add > "scrollbackabilty" to st. > > http://natalian.org/archives/2012/07/31/dwm+tmux/ > > I'm thinking dvtm could replace tmux. I'm probably way off the mark. Regarding easy

[dev] libixp questions

2012-09-20 Thread Sanel Zukan
Hi all, I'm searching alternative to DBus, as the project itself became quite polarized and because DBus can't be compiled on platforms without pthread support, except win32. libixp looks quite suitable alternative for me; it is small, it is easy to hack and (hopefully) easy to port on different

Re: [dev] libixp questions

2012-09-20 Thread Stephen Paul Weber
Somebody claiming to be Sanel Zukan wrote: I'm searching alternative to DBus, as the project itself became quite polarized and because DBus can't be compiled on platforms without pthread support, except win32. Have you considered FIFOs and/or sockets? Oh, you want win32... INET sockets as a fa

Re: [dev] libixp questions

2012-09-20 Thread Sanel Zukan
> Have you considered FIFOs and/or sockets? > > Oh, you want win32... INET sockets as a fallback? Yes, and would end up probably with similar library like libixp or DBus, as both have ability to communicate either locally or via tcp which is quite desired in my case. Also, DBus exports objects on

Re: [dev] [st] xft

2012-09-20 Thread Roberto E. Vargas Caballero
> Please report back if it works. I will then simply apply it. It is not working fine for me. It seems have some problems with the size of the fonts. > XIC xic; > + XftDraw *xft_draw; > + Visual *vis; > int scr; > Bool isfixed; /* is fixed geometry? */ > int fx, fy

Re: [dev] [st] Patches

2012-09-20 Thread Roberto E. Vargas Caballero
> Yeah! Oh, we could have a variable for everything that one could wish > to start in st: STTMUX, STGNUSCREEN, STAALIBKDE... > > or we could just use -e. Yeah, even when you start it from a menu like dmenu or it is automatically spawned from a graphical application. It's true that a boolean varia

Re: [dev] [st] Patches

2012-09-20 Thread Peter Hartman
how is -e not a solution? 2012/9/20 Roberto E. Vargas Caballero : > >> Yeah! Oh, we could have a variable for everything that one could wish >> to start in st: STTMUX, STGNUSCREEN, STAALIBKDE... >> >> or we could just use -e. > > Yeah, even when you start it from a menu like dmenu or it is automat

Re: [dev] st eight bit input

2012-09-20 Thread Roberto E. Vargas Caballero
> I wonder if it's possible to get something like xterm's > eightBitInput=true in st. I would like to use the alt key for some vim > mappings. I'm not at all savvy on terminal stuff so any hint about how > to hack the code to get this working would be very much appreciated. There isn't any switc

[dev] Re: [st] Patches

2012-09-20 Thread Christian Neukirchen
"Roberto E. Vargas Caballero" writes: > Well... I was asking about comments and suggestion of the patches. I am not > the person who can accept or deny new suggestion, but I am going to give my > personal opinion. > >> Would you also port st to wayland? > > I think in case of being possible, st i

Re: [dev] [st] Patches

2012-09-20 Thread Roberto E. Vargas Caballero
> how is -e not a solution? Uhmmm, I suck ^^!. dmenu allows you write the full command line, so you can use -e with it.

[dev] Two mini pipe utils

2012-09-20 Thread Edgaras
I have created a couple of tiny utils for working with pipes. Don't know if they are even sizable enough to be of interest, or if anyone will find use for them. I wanted something like 'pd' for some things I want to do, and could not find it, so I wrote it, and then I wrote it's antagonist ir. pd

Re: [dev] libixp questions

2012-09-20 Thread hiro
why not a cloud service?

Re: [dev] [ANN] CGD - Ultra-minimalist HTTP and FastCGI wrapper for CGI programs.

2012-09-20 Thread Džen
What's the reason behind using nginx anyway? I guess it would be simpler to write an own http web server with go's http lib. Or am I wrong? On Wed, Sep 19, 2012 at 5:41 AM, Uriel wrote: > CGD runs as a FastCGI wrapper (to be used with nginx or similar web > server) or as a standalone HTTP server

Re: [dev] libixp questions

2012-09-20 Thread Ivan Kanakarakis
you maybe interested in unixbus http://unixbus.org/ http://unixbus.org/ubus/ On 20 September 2012 22:33, hiro <23h...@gmail.com> wrote: > why not a cloud service? > > -- *Ivan c00kiemon5ter V Kanakarakis* >:3

Re: [dev] libixp questions

2012-09-20 Thread Anselm R Garbe
On 20 September 2012 16:56, Sanel Zukan wrote: > I'm searching alternative to DBus, as the project itself became quite > polarized and because DBus can't be compiled on platforms without > pthread support, except win32. > > libixp looks quite suitable alternative for me; it is small, it is > easy

Re: [dev] [ANN] CGD - Ultra-minimalist HTTP and FastCGI wrapper for CGI programs.

2012-09-20 Thread Uriel
On Thu, Sep 20, 2012 at 9:50 PM, Džen wrote: > What's the reason behind using nginx anyway? I guess it would be simpler to > write an own http web server with go's http lib. Or am I wrong? CGD can act as an HTTP server, but wont handle static files, it will pass all requests to a single CGI scrip

Re: [dev] [ANN] CGD - Ultra-minimalist HTTP and FastCGI wrapper for CGI programs.

2012-09-20 Thread Kurt H Maier
On Thu, Sep 20, 2012 at 09:50:14PM +0200, Džen wrote: > What's the reason behind using nginx anyway? I guess it would be simpler to > write an own http web server with go's http lib. Or am I wrong? Yes sure it's absolutely simpler to design, write, and test your own public-facing network service f

Re: [dev] Two mini pipe utils

2012-09-20 Thread Sam Watkins
Edgaras wrote: > pd - "pipe discarder" > ir - "infinite reader" Thanks, I make use of named pipes, and I think I will want to use these. Sam