Re: [dev] [surf] new surf2 branch

2015-07-04 Thread Wolfgang Corcoran-Mathe
Quentin, Quoth Quentin Rameau on Sat, Jul 04 2015 11:30 +0200: > Doesn't this imply a DBus dependency? Maybe, I didn't really look into the gtk3 dependency tree. But what's your point? I'm curious as to whether the price of viewing the 'modern web' is running DBus, given (A) the quality of th

Re: [dev] [surf] new surf2 branch

2015-07-04 Thread Wolfgang Corcoran-Mathe
Dmitrij, Quoth Dmitrij D. Czarkoff on Sat, Jul 04 2015 10:45 +0200: AFAIR WebkitGtk itself depends on DBUS since inception. In theory it probably does. surf/webkitgtk1 run fine without DBus installed, interestingly. -- wcm

Re: [dev] [surf] new surf2 branch

2015-07-04 Thread Wolfgang Corcoran-Mathe
Quentin, Thanks for your work! Quoth quinq on 28a0fc1: port surf to gtk3 Doesn't this imply a DBus dependency? As far as I can tell, gtk+3 has had a hard dependency on atk-bridge (which, in turn, requires DBus) since 3.6.something. Regards, -- wcm

Re: [dev] [Idea] Using GitTorrent

2015-05-31 Thread Wolfgang Corcoran-Mathe
Quoth Jack L. Frost on Mon, Jun 01 2015 00:24 +0300: In other words: GitHub favors the quantity rather than the quality. It is lacking a good portion of hygene in its open source handling. So you want it to do quality control? Good design enforces its own quality control. No 'Fork' button on

Re: [dev] [Idea] Using GitTorrent

2015-05-31 Thread Wolfgang Corcoran-Mathe
Anselm, Quoth Anselm R Garbe on Sun, May 31 2015 16:53 +0200: What has suckless with github in common I wonder? I hope nothing apart from using git. What do you find most sucking about GitHub? I'm curious. Regards, -- Wolfgang Corcoran-Mathe

[dev] [sbase] [PATCH] join: fix typo

2015-05-09 Thread Wolfgang Corcoran-Mathe
--- join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/join.c b/join.c index 2522404..58f0f88 100644 --- a/join.c +++ b/join.c @@ -292,7 +292,7 @@ initspan(struct span *sp) { sp->nl = 0; sp->maxl = INIT; - sp->lines = ereallocarray(NULL, INIT, sizeof(

Re: [dev] [sbase] [PATCH] join manpage: Fix spelling

2015-05-03 Thread Wolfgang Corcoran-Mathe
Nick, Quoth Nick on Sun, May 03 2015 08:32 +0100: Quoth Wolfgang Corcoran-Mathe: > '-eth' might sound good to a native English speaker It doesn't ;) Good patch. Well, 'fieldth' isn't the prettiest word either. But it is better than 'fieldeenth' :-) -- Wolfgang Corcoran-Mathe

[dev] [sbase] [PATCH] join manpage: Fix spelling

2015-05-01 Thread Wolfgang Corcoran-Mathe
'-eth' might sound good to a native English speaker but will probably confuse everyone else. --- join.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/join.1 b/join.1 index 66d782f..1b15e7d 100644 --- a/join.1 +++ b/join.1 @@ -38,11 +38,11 @@ then the remaining fields from

[dev] [sbase] [PATCH] join: Add LICENSE header

2015-05-01 Thread Wolfgang Corcoran-Mathe
--- join.c | 1 + 1 file changed, 1 insertion(+) diff --git a/join.c b/join.c index cdfdb1f..2522404 100644 --- a/join.c +++ b/join.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include #include #include -- 2.3.5

Re: [dev] books that rock

2015-04-25 Thread Wolfgang Corcoran-Mathe
;s preface seemed like the best part. -- Wolfgang Corcoran-Mathe

Re: [dev] books that rock

2015-04-25 Thread Wolfgang Corcoran-Mathe
Roberto, Quoth Roberto E. Vargas Caballero on Sat, Apr 25 2015 10:25 +0200: I had a list of these books, but I cannot find it. From my memory... Awesome list, thank you. -- Wolfgang Corcoran-Mathe

Re: [dev] books that rock

2015-04-25 Thread Wolfgang Corcoran-Mathe
ed time, I would not start a list of books in the "Sucks" section if I were you. That would be fun to read, but mainly "preaching to the choir". Anyone who gets why K & R is a good book probably does not need to be told why "l33t Java Hacks" is not. -- Wolfgang Corcoran-Mathe

[dev] books that rock

2015-04-24 Thread Wolfgang Corcoran-Mathe
books has turned up only horrors; if people mention books like The Unix Programming Environment at all, it is for historical interest. A short list of well-written books following the philosophy of simplicity would be a great antidote to current fashion. -- Wolfgang Corcoran-Mathe

Re: [dev] [sbase] [join] RFC

2015-04-19 Thread Wolfgang Corcoran-Mathe
I've added a manpage and applied all of FRIGN and Hiltjo's style changes. Regards, -- Wolfgang Corcoran-Mathe #include #include #include #include #include #include "arg.h" #include "text.h" #include "utf.h" #include "util.h" e

Re: [dev] [sbase] [join] RFC

2015-04-17 Thread Wolfgang Corcoran-Mathe
x any outstanding style issues as mentioned by others and we can merge this. Absolutely. I've noticed a few style issues since I sent it out last night and will fix those as well. -- Wolfgang Corcoran-Mathe

Re: [dev] [sbase] [join] RFC

2015-04-17 Thread Wolfgang Corcoran-Mathe
. getline() cannot return 0, so I guess the len - 1 is safe :) Good idea, this will cut out some unneeded junk. -- Wolfgang Corcoran-Mathe

Re: [dev] [sbase] [join] RFC

2015-04-17 Thread Wolfgang Corcoran-Mathe
FRIGN, Thanks very much for your comments and praise! I'll make the changes you've suggested. Quoth FRIGN on Fri, Apr 17 2015 11:14 +0200: - At file opening in main, use else if rather than else { if } I actually stole the fopen code from sbase's cmp under the assumption that this was the pre

[dev] [sbase] [join] RFC

2015-04-16 Thread Wolfgang Corcoran-Mathe
Hello, I have made an attempt at join(1). I hope it is worth a look. See NOTES for some points on which this implementation differs from other joins. The handling of -a | -v when used with -o is an issue. Comments are welcome. Please be brutal. Regards, -- Wolfgang Corcoran-Mathe /* Notes

[dev] [vis] [PATCH] Do not lump together replace actions

2015-01-27 Thread Wolfgang Corcoran-Mathe
Currently, the replace operator in vis gets lumped with following actions in the {un,re}do tree. Using the 'r' key several times then attempting to undo the last replacement undoes the entire series. --- vis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vis.c b/vis.c i

Re: [dev] Operating system choice

2014-11-20 Thread Wolfgang Corcoran-Mathe
r example.) But aside from speeding up fresh installs, software too awful to compile is the only good argument for a large binary package library. -- Wolfgang Corcoran-Mathe

Re: [dev] why avoid install?

2014-11-19 Thread Wolfgang Corcoran-Mathe
Quoth Dimitris Papastamos on Wed, Nov 19 2014 14:55 +: On Tue, Nov 18, 2014 at 03:49:36PM -0500, Wolfgang Corcoran-Mathe wrote: Quoth FRIGN on Tue, Nov 18 2014 19:30 +0100: >Well, install doesn't do any magic. There is this.[1] But if the issue is unlinking a running target, (a) h

Re: [dev] why avoid install?

2014-11-18 Thread Wolfgang Corcoran-Mathe
-f is for? -- Wolfgang Corcoran-Mathe [1] http://en.chys.info/2009/05/install-vs-cp-and-mmap/

Re: [dev] Customizing string output

2014-11-09 Thread Wolfgang Corcoran-Mathe
tion is usually the best. Thank you very much. -- Wolfgang Corcoran-Mathe

[dev] Customizing string output

2014-11-09 Thread Wolfgang Corcoran-Mathe
format string and the argument list would need to be configured, that is: Default example: printf("%s | %s | %s | %s", load, fs_usage, batt, time); Customized version: printf("%s | %s | %s", fs_usage, load, batt); Thanks for any input, -- Wolfgang Corcoran-Mathe

Re: [dev] surf rewrite for WebKit2GTK

2014-10-25 Thread Wolfgang Corcoran-Mathe
f they can pervert Firefox into doing everything. Any _popular_ reboot would have to require people to change very little about their habits, and to do no hard thinking about the nature of the Web--if possible, no thinking at all. -- Wolfgang Corcoran-Mathe

Re: [dev] [RFC] Design of a vim like text editor

2014-09-24 Thread Wolfgang Corcoran-Mathe
. -- Wolfgang Corcoran-Mathe

Re: [dev][sbase] Proposal of suckless compression

2014-09-23 Thread Wolfgang Corcoran-Mathe
Quoth FRIGN on Tue, Sep 23 2014 13:39 +0200: I'd love to have a simple, suckless compression-algorithm and see no problem in adding one to the suckless-universe. Is there something wrong with sflate? -- Wolfgang Corcoran-Mathe

[dev] [sbase] [PATCH] Fix tail -n +

2014-09-16 Thread Wolfgang Corcoran-Mathe
;buf, &size, fp) != -1))) + while(i < n && ((len = agetline(&buf, &size, fp)) != -1)) if(len && buf[len - 1] == '\n') i++; free(buf); -- Wolfgang Corcoran-Mathe

Re: [dev] [dvtm][PATCH] Makefile and terminfo

2014-09-16 Thread Wolfgang Corcoran-Mathe
fgang Corcoran-Mathe

[dev] [ubase] [PATCH] Remove unnecessary newline output from su

2014-08-24 Thread Wolfgang Corcoran-Mathe
I don't see a reason for this extra newline, but apologies in advance if I'm just being thick. -- Wolfgang Corcoran-Mathe diff --git a/su.c b/su.c index fe7e139..71268c1 100644 --- a/su.c +++ b/su.c @@ -64,7 +64,7 @@ main(int argc, char *argv[]) uid = getuid();

Re: [dev] Re: sic or ii, whats the main differences?

2014-08-19 Thread Wolfgang Corcoran-Mathe
Quoth Henrique Lengler on Tue, Aug 19 2014 20:16 -0300: Looks like none of them. I tried sic, very poor. sic or ii as IRC client? whats the purpouse of each one? In your case, apparently, to test the user's understanding of the Unix I/O concept! -- Wolfgang Corcoran-Mathe

Re: [dev] xscreenshot(1) using suckless image format

2014-07-28 Thread Wolfgang Corcoran-Mathe
Quoth Markus Teich on Mon, Jul 28 2014 23:26 +0200: Is there a reliable way to get the X id of a window in a shell script? xwininfo could help. Thanks you, Markus, xwininfo does exactly what I wanted. -- Wolfgang Corcoran-Mathe

Re: [dev] xscreenshot(1) using suckless image format

2014-07-28 Thread Wolfgang Corcoran-Mathe
. Digging around in the output of `xprop -root` as in [0] looks far too ugly, to me, to be the right thing. Thanks, -- Wolfgang Corcoran-Mathe [0] http://stackoverflow.com/questions/2250757/is-there-a-linux-command-to-determine-the-window-ids-associated-with-a-given-pro

Re: [dev] [st][PATCH] Add info about Backspace and Delete to the FAQ

2014-07-25 Thread Wolfgang Corcoran-Mathe
pt at cleaning it up a little bit. I changed a few phrases that seemed awkward, but I think the content is the same. -- Wolfgang Corcoran-Mathe diff --git a/FAQ b/FAQ index 2ee5ec7..a47c024 100644 --- a/FAQ +++ b/FAQ @@ -104,54 +104,53 @@ This is an issue that was discussed in suckless mailing list

[dev] [st][patch] Very minor grammar fixes in FAQ

2014-07-20 Thread Wolfgang Corcoran-Mathe
upport meta in 8bit mode, but the default terminfo entry doesn't - use this capability. If you want it, you have to use st-meta value + St supports meta in 8bit mode, but the default terminfo entry doesn't + use this capability. If you want it, you have to use the 'st-meta' value in TERM. -- Wolfgang Corcoran-Mathe

Re: [dev] Text-only browser that sucks less?

2014-07-01 Thread Wolfgang Corcoran-Mathe
even be necessary for something like this, or could the link hints be applied by parsing and editing the page HTML itself? Perhaps it's naïve, but it seems to me that a link array would be easy to create and access within the browser code itself. -- Wolfgang Corcoran-Mathe

Re: [dev] Text-only browser that sucks less?

2014-06-29 Thread Wolfgang Corcoran-Mathe
Quoth Nick on Sun, Jun 29 2014 19:56 -0400: Quoth Wolfgang Corcoran-Mathe: Beyond rendering pages, the biggest challenge seems to me to lie in coming up with a more intelligent method of selecting links than the usual crufty vi/emacs/Lynx-style interfaces. I always liked the way elinks (I

Re: [dev] Text-only browser that sucks less?

2014-06-29 Thread Wolfgang Corcoran-Mathe
ily)-- would be tremendously useful. Beyond rendering pages, the biggest challenge seems to me to lie in coming up with a more intelligent method of selecting links than the usual crufty vi/emacs/Lynx-style interfaces. -- Wolfgang Corcoran-Mathe [0] http://the-brannons.com/edbrowse/ [1] http://retawq.sour

[dev] Text-only browser that sucks less?

2014-06-28 Thread Wolfgang Corcoran-Mathe
w3m seems to be full of ad-hockery, while links/elinks are graphical browsers in disguise. All 3 are surprisingly massive. Are there any sane alternatives that are more interactive than running curl through html2text? -- Wolfgang Corcoran-Mathe

Re: [dev] [st] Backspace broken?

2014-05-25 Thread Wolfgang Corcoran-Mathe
Corcoran-Mathe

[dev] [st] Backspace broken?

2014-05-23 Thread Wolfgang Corcoran-Mathe
Current builds of st print ^H for backspace when reading input, e.g.: ~ $ read foo^H^H^Hbar This seems to have been introduced within the last month. A build from 2014-04-23 (commit 16ac85bf...) handles backspace as expected. -- Wolfgang Corcoran-Mathe

Re: [dev] [sbase] grep -F?

2014-05-23 Thread Wolfgang Corcoran-Mathe
;d be nice. I'd love to help. Sadly, my knowledge of C is at early-chapters-of-K&R levels, at the moment. Again, thanks. -- Wolfgang Corcoran-Mathe

[dev] [sbase] grep -F?

2014-05-21 Thread Wolfgang Corcoran-Mathe
Perhaps I've missed something deep in the simplicity of sbase that makes it unnecessary, but is there any plan to implement the POSIX -F flag for grep? Thanks, -- Wolfgang Corcoran-Mathe

Re: [dev] Re: [ANNOUNCE] req 1.0 - a gawk und dmenu powered plumberlike

2014-05-08 Thread Wolfgang Corcoran-Mathe
ing at. I'd like to mess about with the program a bit first, but if I can assist in any way I would be happy to help. -- Wolfgang Corcoran-Mathe

Re: [dev] [ANNOUNCE] req 1.0 - a gawk und dmenu powered plumberlike

2014-05-07 Thread Wolfgang Corcoran-Mathe
mings, but awk seems ideal for this sort of application. Thank you! The README could certainly be shortened and clarified. -- Wolfgang Corcoran-Mathe

[dev] [sandy] Undo & redo man page entries

2014-05-02 Thread Wolfgang Corcoran-Mathe
next character as\-is. This is modal and sucks, but there simply was no other way. .TP +.B Ctrl\-_ +Undo the last action. +.TP +.B Ctrl\-^ +Redo or repeat the previous action. +.TP .B Ctrl\-z Suspend editor to shell. .TP -- Wolfgang Corcoran-Mathe pgpx6lVM37y0I.pgp Description: PGP signature

Re: [dev][port] Porting sbase to Java

2014-04-02 Thread Wolfgang Corcoran-Mathe
On Wed, Apr 02 at 16:26 +0200, Hugues Evrard wrote: I've been lurking at this mailing list for some month, and I'm surprised no one have suggested to launch a Suckless Store: a unique marketplace to find Suckless Apps, where after a registration Suckless Users can do Suckless Reviews and like t

Re: [dev][st] Disable bold fonts?

2014-03-30 Thread Wolfgang Corcoran-Mathe
2014-03-30 8:09 GMT+03:00 Wolfgang Corcoran-Mathe: Obviously, bold fonts are still loaded/unloaded, etc. Has anyone created a cleaner and more comprehensive patch to disable bold fonts entirely? On Sun, Mar 30 at 16:50 +0300, Tarmo Heiskanen wrote: I am using this patch to disable both bold

[dev][st] Disable bold fonts?

2014-03-29 Thread Wolfgang Corcoran-Mathe
le bold fonts entirely? Thanks. -- Wolfgang Corcoran-Mathe pgpzZNypWph4q.pgp Description: PGP signature