[dev] [dwm] Suckless graphics library

2015-02-16 Thread Eric Pruitt
A while back, [this](http://lists.suckless.org/dev/1311/18279.html) Xft patch was posted to the mailing list. I split out the Xft changes from the window creation semantics, and I use that to patch Xft support into my copy of dwm; the patch I use is attached to this email. Given that st uses Xft, i

Re: [dev] [st] crash on font resize (patch inside)

2015-02-16 Thread k0ga
> I think the base assumptions programmers have about pointers is > different from integers. Pointers with null values are universally > known to be special and a case that should be checked for. With > integers, it's not obvious what the valid range is supposed to be, in > many cases 0 is okay.

[dev] Re: [dwm] Sporadic freezing

2015-02-16 Thread Eric Pruitt
On Sun, Feb 15, 2015 at 08:07:09PM -0800, Eric Pruitt wrote: > I am not able to consistently replicate the problem which makes > debugging it harder. > > I encounter this problem most often with Pidgin and transmission-gtk. I figured out how to consistently replicate the problem using Pidgin. 1.

Re: [dev] [sbase] [PATCH] Add join utility.

2015-02-16 Thread Jeffrey Picard
Thanks for the comments! I’ll submit an updated patch in a day or two. With regards to the oflag, I just haven’t implemented it yet. I’ll try to include it in the next patch. > On Feb 16, 2015, at 5:27 AM, Dimitris Papastamos wrote: > > Some inline comments below: > > +/* See LICENSE file for

[dev] [sbase] [PATCH] Update chgrp and chown manpages for -h

2015-02-16 Thread Ralph Eastwood
Attached. -- Tai Chi Minh Ralph Eastwood tcmreastw...@gmail.com 0001-Update-the-manpages-of-chgrp-and-chown-for-h.patch Description: Binary data

Re: [dev] Suckless web rendering engine

2015-02-16 Thread tautolog
I believe their latest code has float support, but it isn't released yet. Their CSS support is starting to mature. ‎I use it under tabbed, like surf.  I have been following it for years, and they have their own kind of suckless approach, but oriented toward enabling developing countries to acces

Re: [dev] Suckless web rendering engine

2015-02-16 Thread Dmitrij D. Czarkoff
Calvin Morrison said: > lacks javascript. See their "Plans" page.¹ > but fails badly on things with floating elements instead of tables. According to their Changelog,² floating elements are already supported in tip. There was a time when I used dillo much, and it was exceptionally good. These w

[dev] [sbase] [PATCH] Update usage of chown, chgrp, du and cp

2015-02-16 Thread Ralph Eastwood
Attached. -- Tai Chi Minh Ralph Eastwood tcmreastw...@gmail.com 0001-Update-usage-flags-of-chgrp-chown-du-and.patch Description: Binary data

Re: [dev] Suckless web rendering engine

2015-02-16 Thread Calvin Morrison
i've tested out dillo yesterday, and a bit today. it is very fast, but lacks javascript. Overall useful for simpler pages (lwn for example), but fails badly on things with floating elements instead of tables. On 16 February 2015 at 02:40, Dmitrij D. Czarkoff wrote: > Marc Weber said: >> also have

Re: [dev] Suckless web rendering engine

2015-02-16 Thread hiro
sed and awk are the best web browsers. On 2/16/15, Dmitrij D. Czarkoff wrote: > Marc Weber said: >> also have a look at: http://de.wikipedia.org/wiki/Servo_(Software) > > Servo appears to suck a lot. They appear to focus on improving > performance by spawning endless threads (complexity), and th

Re: [dev] [st] [PATCH] Let curses do the dirty work for flash

2015-02-16 Thread k0ga
Hi, > your line driver. I mean, st ignores xon/xoff characters, so the line > driver (configured via stty with the flags ixon, ixoff, ixany) is > making the job of stopping the comunication. If we add this patch to > st we must add some information about it in the FAQ (similar to the > informa

Re: [dev] [dwm] Sporadic freezing

2015-02-16 Thread Markus Teich
Eric Pruitt wrote: > Has anyone encountered any similar issues? Heyho Eric, a few times I had similar problems with the keyboard layout. When numlock had the wrong state during xinit, after calling `setxkbmap de neo` the keybindings of dwm did not work anymore. However I could still use the mouse

Re: [dev] [sbase] [PATCH] Add join utility.

2015-02-16 Thread Dimitris Papastamos
Some inline comments below: +/* See LICENSE file for copyright and license details. */ +#include +#include +#include +#include Sort these. +static int tflag = 0; +static int aflag = 0; +static int eflag = 0; +/*static int oflag = 0;*/ +static int oneflag = 0; +static int twoflag = 0; oflag

Re: [dev] [sbase] [PATCH] Add join utility.

2015-02-16 Thread Dimitris Papastamos
Hi there, Thanks! Can you also provide the manpage for join? Refer to the existing manpages on how to format it. Cheers, Dimitris

[dev] [sbase] [PATCH] Add join utility.

2015-02-16 Thread Jeffrey Picard
Hey all, I’ve implemented a version of the join utility for sbase. The run times and memory usage are comparable to the gnu join, which I tested against. I’ve attached my testing script along with the patch. So far I have a decent subset of the options (-t,-1,-2,-e,-a). —Jeffrey Picard 0001-