Re: [dev] designing a suckless bignum library

2015-11-18 Thread pancake
I already wrote one, but i end up wrapping gmp and openssl for performance reasons. Just check the source of r2 libr/util/big.c if you are interested > On 18 Nov 2015, at 00:16, Marc Collin wrote: > > That's cool, didn't know you had one in the works. > Mind telling a bit about it works? Mayb

Re: [dev] Re: a suckless hex editor

2015-11-13 Thread pancake
Neither vi, vim or xxd are suckless. Anyone has tried ired/vired? > On 14 Nov 2015, at 06:15, Random832 wrote: > > Greg Reagle writes: >> I agree that it is a "poor man's" hex editor. I am having fun with it, even >> if >> it is a toy. I don't have the desire to write a sophisticated hex

Re: [dev] a suckless hex editor

2015-11-13 Thread pancake
No. Not just this. Rtfm... Rm -f is needed if you dont want a prompt to remove that file in case of custpm umask or a race condition with another script happens. > On 14 Nov 2015, at 03:40, Greg Reagle wrote: > >> On Fri, Nov 13, 2015 at 09:42:11PM +0100, pancake wrote: >>

Re: [dev] a suckless hex editor

2015-11-13 Thread pancake
Also, echo is a buildtin, so dont use absolute path for it > On 13 Nov 2015, at 20:54, Dimitris Papastamos wrote: > >> On Fri, Nov 13, 2015 at 02:52:17PM -0500, Greg Reagle wrote: >> Okay then. It no longer depends on xxd. It depends on od for the hex dump >> (works with both GNU od and sbas

Re: [dev] a suckless hex editor

2015-11-13 Thread pancake
Use rm -f > On 13 Nov 2015, at 20:54, Dimitris Papastamos wrote: > >> On Fri, Nov 13, 2015 at 02:52:17PM -0500, Greg Reagle wrote: >> Okay then. It no longer depends on xxd. It depends on od for the hex dump >> (works with both GNU od and sbase od) and echo, awk, tr, cut for the reverse >> h

Re: [dev] a suckless hex editor

2015-11-13 Thread pancake
Check ired. From the radare github repo > On 13 Nov 2015, at 19:50, Matthew of Boswell > wrote: > > On Fri, 13 Nov 2015 11:28:36 -0500 > Greg Reagle wrote: > >> What do you think? > > I personally wouldn't use it over hexer, but it's an interesting idea. > > Pros: > - very minimal; great

Re: [dev] K, a low-level procedural imperative programming language

2014-11-27 Thread pancake
c makes hidden heap allocations? Wat > On 27 Nov 2014, at 19:39, Wander Nauta wrote: > > What does your language have to offer? Is it safety? Expressiveness? > Productivity? Ease of use? Do K programs run faster than C programs? > > Also, what is a 'for loop afterthot' (sic), why are the oper

Re: [dev] Object-Oriented C for interface safety?

2014-11-26 Thread pancake
Try Cello > On 26 Nov 2014, at 22:38, Charles Thorley wrote: > > THIS IS NOT A TROLL > > I understand that there is zero love for object-oriented programming > methodologies on this list, and I am not particularly interested in this > strategy myself, although some languages that I like (i.e.

Re: [dev] GCC situation

2014-11-23 Thread pancake
tcc is actively maintained. i dont see a reason for forking it, see tinycc-devel mailing at nongnu.org this is the repo: http://repo.or.cz/w/tinycc.git On 11/23/2014 11:20 PM, Henrique Lengler wrote: Hi, What is the situation of GCC, is it bloated? I'm asking because I don't find too much on

Re: [dev] why avoid install?

2014-11-19 Thread pancake
Thats why gnu autoconf ships install-sh script ;) as a fallback when install is not found On 19 Nov 2014, at 20:36, k...@shike2.com wrote: >>> On 18 November 2014 19:25, Greg Reagle wrote: >>> Hello. Is there a particular reason that a combination of cp, mkdir, >>> and chmod are used rather

Re: [dev] why avoid install?

2014-11-18 Thread pancake
install does this in a shot, using 'cp' is just a 20% of what install does: rm -> to ensure that the file is not being used mkdir cp chmod chown the rm part is important, because otherwise the cp may fail if the prorgam is running. also, a useful install target ihave in some programs of me i

Re: [dev] why avoid install?

2014-11-18 Thread pancake
another anoying thing of pkg-config is that it uses longopt --libs can be -l --cflags can be -c --list-all can be -a --version can be -v ... but if we want it to be compatible we should handle the longopt ones :( the only "complicated" part is the version number comparison, because its not just

Re: [dev] why avoid install?

2014-11-18 Thread pancake
oh. that's why ldd was telling me that there was no glib --with-internal-glibuse internal glib On 11/18/2014 09:21 PM, Wander Nauta wrote: On 11/18/2014 09:16 PM, pancake wrote: nope. it doesnt depends on anything, just libc. but its half a megabyte of code As far as I know

Re: [dev] why avoid install?

2014-11-18 Thread pancake
seems still too bloated for me. On 11/18/2014 09:13 PM, Dmitrij D. Czarkoff wrote: pancake said: Just read the src. Last time i saw it ... It was about 38kloc Wander Nauta said: It also depends on glib, which is at the top of the sucks list. I don't care this particular implementati

Re: [dev] why avoid install?

2014-11-18 Thread pancake
nope. it doesnt depends on anything, just libc. but its half a megabyte of code On 11/18/2014 08:35 PM, Wander Nauta wrote: On 11/18/2014 08:18 PM, pancake wrote: Just read the src. Last time i saw it ... It was about 38kloc It also depends on glib, which is at the top of the sucks list.

Re: [dev] why avoid install?

2014-11-18 Thread pancake
Just read the src. Last time i saw it ... It was about 38kloc > On 18 Nov 2014, at 20:03, Dmitrij D. Czarkoff wrote: > > FRIGN said: >> We could discuss install, but there's nothing suckless about pkgconfig. > > What is wrong with pkg-config? > > -- > Dmitrij D. Czarkoff >

Re: [dev] why avoid install?

2014-11-18 Thread pancake
What about a suckless install and a suckless pkgconfig? Both are bloated in nature but can be implemented in a very simple way to replace easily the gnu or bsd implementations > On 18 Nov 2014, at 19:30, FRIGN wrote: > > On Tue, 18 Nov 2014 13:25:06 -0500 > Greg Reagle wrote: > >> Hello.

Re: [dev] suckless distro

2014-06-23 Thread pancake
void did a move to runit, which is pretty minimal compared to any other init alternative www.voidlinux.eu On 23 Jun 2014, at 15:44, Andrew Gwozdziewycz wrote: > On Sat, Jun 14, 2014 at 3:28 PM, grayfox wrote: >> Hey, >> >> i used Arch for some years but changed to Gentoo this week. It's not

Re: [dev] Re: suck-less XML parsing

2014-06-06 Thread pancake
Xml standard is bloated, but you can get some assumptions to make it simpler like only accepting utf8. I used libparsifal in the past and it was quite straightforward and the lib is quite small. For speed is better to go with sax, but dom is useful when you have to walk and resolve different pa

[dev] What is good with Python

2014-03-05 Thread pancake
That thread would be smarter.

Re: [dev] What is bad with Python

2014-03-05 Thread pancake
The name.

Re: [dev] Optimizing C compiler & c++ compiler/runtime

2013-12-20 Thread pancake
Tcc is actively maintained. Just check the mailing list or the git repo. > On 20 Dec 2013, at 16:35, Paul Onyschuk wrote: > > On Fri, 20 Dec 2013 13:49:43 +0100 > Sylvain BERTRAND wrote: > >> Is there any remaining good c++ compiler/runtime which can >> boostrap using a C compiler/minimal ru

Re: [dev] Truecolor ST

2013-07-18 Thread pancake
I'm the author of radare and I did this code. So yep :) i know how r2 uses it. I have added a config var to enable truecolor support. You can run this command to test. (Using r2 from git) r2 -e scr.truecolor=true -cecr /bin/ls "ecr" will create a random color palette You can run r2 -cecs - to

Re: [dev] Truecolor ST

2013-07-18 Thread pancake
the color itself. [1] https://en.wikipedia.org/wiki/ANSI_color On 07/17/13 21:34, Roberto E. Vargas Caballero wrote: On Wed, Jul 17, 2013 at 08:44:28PM +0200, pancake wrote: I've been doing some ansi tests and found that only xterm (not urxvt, vte, iterm2,cmd.exe) supports truecolor ansi escape co

[dev] Truecolor ST

2013-07-17 Thread pancake
I've been doing some ansi tests and found that only xterm (not urxvt, vte, iterm2,cmd.exe) supports truecolor ansi escape codes. It is documented in wikipedia, but afaik, only radare2 uses it (when enabled). Do you think that it should be implemented in st or we should stand supporting the mos

Re: [dev] dwm bit fields conversion

2013-07-14 Thread pancake
I should check generated code, but usually a mov is faster than mov+and+mov for setting a bit. On Jul 14, 2013, at 23:22, Markus Teich wrote: > Since this is just uncommon syntax (at least I haven't seen it before) and it > is just used in the declaration I would be ok with it, if an additiona

Re: [dev] [sbase] chvt.c does not need to be executable

2013-06-25 Thread pancake
tcc can execute .c files On Jun 26, 2013, at 0:43, u...@netbeisser.de wrote: > On Tue, Jun 25, 2013 at 11:56:27PM +0200, Jakob Kramer wrote: >> u...@netbeisser.de wrote: >>> On Tue, Jun 25, 2013 at 08:24:08PM +0200, Jakob Kramer wrote: so why keep it executable... commit 8512381861878f2

Re: [dev] Re: mail clients

2013-06-11 Thread pancake
dback and then, the lack of patches to make it work as any suckless user would expect. But first it needs, at least, to have its features implemented. --pancake On 06/11/13 12:22, Michael Stevens wrote: On Tue, Jun 11, 2013 at 09:43:40AM +0200, pancake wrote: maybe one day, someone will look at dm

Re: [dev] Re: mail clients

2013-06-11 Thread pancake
maybe one day, someone will look at dmc

Re: [dev] gettext-stub

2013-05-16 Thread pancake
On 05/16/13 13:09, hiro wrote: http://penma.de/code/gettext-stub/ https://github.com/rofl0r/gettext-tiny

Re: [dev] trying to get surf working on Raspberry pi

2013-05-15 Thread pancake
use gdb or valgrind On 05/15/13 10:28, matti christensen wrote: Hello i've been building my Raspberry pi system for months now using http://crux-arm.nu/SupportedDevices/Raspberrypi as base. crux has only minimal stuff to build on and thus is the best system for me ( it is really difficult to fi

Re: [dev] [surf] add 3-finger back and forward control

2013-04-21 Thread pancake
Definitively not the emacs users On Apr 21, 2013, at 19:23, Uli Armbruster wrote: > * Strake [21.04.2013 18:37]: >> Which race has n fingers | n < 3? > > Seriously?!?!?! >

Re: [dev] Call for pkgsrc users

2013-04-11 Thread pancake
Shouldnt be hard to make a void base-system-minit package. In fact it was using sysvinit before. There are also musl, static and crosscompilation profiles. Its just a matter of hands and time :P systemd was chosed at first because it was replacing about 15 packages and this made the pkg maintain

Re: [dev] [st] windows port?

2013-04-11 Thread pancake
ped their monopolistic practices imposing their by pushing money software to governments and hardware manufacturers... tell me how many laptops can you buy on a phisical store that didnt come with windows preinstalled. (for example) fuck that shit --pancake

Re: [dev] [st] windows port?

2013-04-11 Thread pancake
On 04/11/13 17:23, Martti Kühne wrote: Never did that. Thanks for the heads-up, although I was already under the impression that on windows nothing at all can be debugged, because, well, where's the fucking source to anything? who needs the source to debug anything?

Re: [dev] [st] windows port?

2013-04-11 Thread pancake
On 04/11/13 17:13, Max DeLiso wrote: On Apr 11, 2013 11:05 AM, "Martti Kühne" mailto:mysat...@gmail.com>> wrote: > > What are you writing C++ code if you could use Xming or even cygwin to > just compile the actual st on windows? Well it does add an extra layer of abstraction which could be a

Re: [dev] Call for pkgsrc users

2013-04-10 Thread pancake
I 2006 or so i did a linux distro based on pkgsrc based on debian. (named bluewall) I contributed a lot of packages to the repo, but probably for the lack of interest and the lack of contributors i stopped contributing to it. after moving to archlinux for a while, now i'm a happy void user.

Re: [dev][st] patch: aggressively disable antialiasing

2013-03-08 Thread pancake
Antialiased fonts on terminals is the worst invention since transparents backgrounds. On Mar 8, 2013, at 6:43, Christoph Lohmann <2...@r-36.net> wrote: > Greetings. > > On Fri, 08 Mar 2013 06:43:57 +0100 "Galos, David" > wrote: >>> you know what sucks about this patch? there is no command lin

Re: [dev] cannot run st

2013-02-05 Thread pancake
Sorry for the late reply, I was busy having a life and playing with my children. On 01/24/13 19:46, Christoph Lohmann wrote: Greetings. On Thu, 24 Jan 2013 19:46:30 +0100 pancake wrote: i've been quite busy these last months.. so i was a little disconnected from the suckless develo

Re: [dev] [surf] Follow a link without mouse?

2013-01-31 Thread pancake
afaik the script in the web is the nibble's one. On 01/31/13 18:37, Nick wrote: Quoth pancake: http://surf.suckless.org/files/link_hints There are a few other variants on the theme around on the mailing list archives too, if you're keen. I use one nibble posted a while ago.

Re: [dev] [surf] Follow a link without mouse?

2013-01-31 Thread pancake
http://surf.suckless.org/files/link_hints On 01/31/13 18:18, Thuban wrote: Hello, surf is supposed to be used via keyboard, but I don't know any useful way to follow a link without switching to mouse. Do you have any method? Regards.

[dev] cannot run st

2013-01-24 Thread pancake
wanted to do it fast and focus in the image processing code). The program renders the pictures in plain text, ansi16, greyscale and ansi256. Works fine in st :) you may find the source here: https://github.com/radare/tiv have fun --pancake

Re: ls -s vs. du (was: Re: [dev] [st] font fallback)

2013-01-06 Thread pancake
Didnt checked, but i guess that ls -s show size in bytes and du in block bytes, which depends on filesystem. ls -s : file size du : disk used On Jan 6, 2013, at 13:02, markus schnalke wrote: > [2013-01-05 18:55] Christoph Lohmann <2...@r-36.net> >> >>% ls -hs st-0.3/st >>126K st > >

Re: [dev] Git? Bitch Please

2012-11-30 Thread pancake
the reason why fossil is not suckless is: - database is sqlite (i doubt it can scale as much as git) - there's an embedded webserver with bugtracker and todo management. but yeah, a part from that fossil is nice, but there's little userbase and i doubt there are transition tools to convert a r

Re: [dev] Re: Migration to git

2012-11-29 Thread pancake
this tool in the thread before: "tig". It's something like mutt, but for git. You may like to try it. --pancake On Nov 30, 2012, at 0:18, Sam Watkins wrote: > On Thu, Nov 29, 2012 at 06:18:25PM +0100, pancake wrote: >> definitively, git sucks > > I could have told yo

Re: [dev] Re: Migration to git

2012-11-29 Thread pancake
definitively, git sucks On 11/29/12 17:59, Christoph Lohmann wrote: Greetings. On Thu, 29 Nov 2012 17:59:57 +0100 Christian Neukirchen wrote: pancake writes: the http support in git is a hack. are you guys running "git update-server-info" after every commit? this is used to

Re: [dev] Migration to git

2012-11-29 Thread pancake
the http support in git is a hack. are you guys running "git update-server-info" after every commit? this is used to update the http information with the .git database.. On 11/29/12 15:20, Daniel Bainton wrote: On 29 November 2012 16:19, Nick wrote: On Thu, Nov 29, 2012 at 02:15:36PM +,

Re: [dev] [suckless] Migration to git

2012-11-26 Thread pancake
On 11/26/12 17:33, Kurt H Maier wrote: programming languages, and pretending it's 'simple' because it's broken sloccount git = 126.000 C libgit2 = 37.000 mercurial = 34.000 python + 3000 in C if you say that python loc is 2x times the same done in C then we should move to libgit2 with a decen

Re: [dev] [suckless] Migration to git

2012-11-26 Thread pancake
git flags are crap using getoptlong, i always wondered why nobody did a saner (hg like) frontend for git (maybe using libgit2?) and using only one letter flags . also i would support any mercurial rewrite in C, but mercurial people will probably laught on you. i also tried once to simplify the s

Re: [dev] [suckless] Migration to git

2012-11-26 Thread pancake
On 11/26/12 15:41, Kurt H Maier wrote: On Mon, Nov 26, 2012 at 11:25:18AM +0100, Christoph Lohmann wrote: I am proposing a migration of all mercurial to git repositories. Git is mature and used by nearly all major OSS projects. Mercurial has this slow prototyping dependency of Python, wh

Re: [dev] Re: [suckless] Migration to git

2012-11-26 Thread pancake
On 11/26/12 12:31, Christian Neukirchen wrote: pancake writes: git is far more confusing than hg.. in fact sometimes i have to check my notebook or manpages in order to do something in hg is plain easy. Do you have some concrete examples? Maybe it's just a matter of taste, but I fin

Re: [dev] [suckless] Migration to git

2012-11-26 Thread pancake
rting to local git repo instead of github... have to investigate a little...) the following instructions depend on hggit module being installed and enabled in hgrc. fyi export hg repo to github $ hg log | grep ^user |sort -u | sed -e 's, ,\t,g' |awk '

Re: [dev] I'm back

2012-11-18 Thread pancake
. And it can run even gtk, so i guess its quite complete. --pancake On Nov 18, 2012, at 13:45, Strake wrote: > On 18/11/2012, Bjartur Thorlacius wrote: >> GNU Stow also. > > Oh, yeah, that's what we need: more perl. >

[dev] empty rules list tip

2012-10-29 Thread pancake
I had a weird behaviour in dwm-hg... but by reading the code I realized that if you don't want to use any Rule you have to define it like this in the config.h static const Rule *rules = NULL; if you do rules[] = {{NULL}}; all windows will be opened in the same monitor FYI.

Re: [dev] Troff for typsetting e-mails

2012-10-28 Thread pancake
Do you know ssg? Its a perl script that converts a markdown file into a postscript slides.. Theres also an awk markdown parser to html and make it work on ansi is just plain simple (or output troff) Markdown is human readable and easy to parse to generate various outputs, it just needs a tool

Re: [dev] HTML5 screencasts

2012-10-28 Thread pancake
Pretty simple way to record a screencast. But i usually want to record them on xnest at 640x480. My dualscreen setup generates too big videos. Maybe you would like to modify this script to add Support to launch a xephyr/xnest and record there at a given resolution. Also streaming support (iceca

Re: [dev] Troff for typsetting e-mails

2012-10-28 Thread pancake
What about postscript mails? Or just... Markdown? Which kind of stuff do you need? Clickable links? Indentation? Comic sans? On Oct 28, 2012, at 15:06, Kurt H Maier wrote: > On Sun, Oct 28, 2012 at 09:52:46AM -0400, Andrew Hills wrote: >> On Sun, Oct 28, 2012 at 9:36 AM, Kurt H Maier wrote:

Re: [dev] [st] Tip adds non-existing trailing whitespace upon mouse selection + fix

2012-10-09 Thread pancake
i feel this annoying too, but someone told me this was an intentional behaviour. i'm used to xterm and iTerm2, and copypasting text with text selection is something I do many times (as well as scrolling), and this is behaviour of st is somewhat annoying. i vote for your patch to be upstream :

[dev] antialiased fonts in st

2012-10-05 Thread pancake
I'm suggesting this change because truetyped fonts with antialias are hard to read, probably more than transparent terminals. Note that i have copypasted this diff from an st terminal, so there are spaces at the end of each line (this was not happening before) [pancake@bitbox st]$ hg

Re: [dev] [st] Patches

2012-09-19 Thread pancake
How many patches are left to get scrollback buffer? On Sep 19, 2012, at 20:42, "Roberto E. Vargas Caballero" wrote: > Hi, > >A new serie of patches for st. Please send comments or suggestions. > > Best regards. > <0001-Clear-X-window-in-tsetreset.patch> > <0002-Remove-unused-parameters-in

Re: [dev] a suckless init system?

2012-08-30 Thread pancake
Executables in etc? :) On Aug 30, 2012, at 20:26, Anselm R Garbe wrote: > On 14 August 2012 19:36, Calvin Morrison wrote: >> Recently on the Arch mailing list there has been much discussion of >> different init systems. I was just wondering which init system, y'all >> approve of. SysV or OpenRC

Re: [dev] any update on stali?

2012-08-28 Thread pancake
Loongson is the chinese mips. They took the license from sgi, it have an extended instruction set (mmx like) and some other instructions vary from the original specs (in fact they changed their own extension from loongson2e to loongson2f). I have 3 mips boxes at home and each one has its own ab

Re: [dev] a suckless init system?

2012-08-15 Thread pancake
Using mk takes sense as long as init scripts are a dependency based system. Please go on. That looks fun Looks like doing suckless software implies surviving to troll comments. Your software will be suckless when trolls stop throwing rocks at it. On Aug 15, 2012, at 6:02, Sam Watkins wrote: >

Re: [dev] New friends

2012-08-06 Thread pancake
"" evaluates as 0 in most dynamic languges. It was just a way to say "true" or "yes". On Aug 6, 2012, at 18:57, Christoph Lohmann <2...@r-36.net> wrote: > Greetings. > > On Mon, 06 Aug 2012 18:57:44 +0200 pancake wrote: >> <3 > >

Re: [dev] dev+unsubscr...@suckless.org

2012-08-05 Thread pancake
Welcome to the suckless mailing list! You have been succesfully subscribed again. Ad eternum On Aug 6, 2012, at 8:34, David Dušanić wrote: >

Re: [dev] sfeed: a simple RSS and Atom parser and reader

2012-08-05 Thread pancake
On Aug 5, 2012, at 16:35, Hiltjo Posthuma wrote: > On Sun, Aug 5, 2012 at 4:11 PM, pancake wrote: >> I wrote rss2html with my own xml parser and http protocol (0deps) so many >> years ago to read my feeds. > In a previous version I had my own hacky XML parser, but it was to

Re: [dev] sfeed: a simple RSS and Atom parser and reader

2012-08-05 Thread pancake
Whats wrong with rss2html? Just to know why sfeed is more interesting for you. On Aug 6, 2012, at 0:26, Nick wrote: > Quoth Nick: >> Quoth Hiltjo Posthuma: >>> I would like to announce a simple RSS and Atom parser and reader I've >>> been working on. >> >> Awesome, sounds like something I've b

Re: [dev] New friends

2012-08-05 Thread pancake
<3 On Aug 5, 2012, at 13:31, Kurt H Maier wrote: > On Sun, Aug 05, 2012 at 10:57:03AM +0200, pancake wrote: >> Every time I read this subject in my inbox I vomit. >> > > X-Mailer: iPhone Mail (9B176) >

Re: [dev] sfeed: a simple RSS and Atom parser and reader

2012-08-05 Thread pancake
I wrote rss2html with my own xml parser and http protocol (0deps) so many years ago to read my feeds. Actually, the only useful feature was the 'planet' option which sorts/merges all your feeds in a single timeline. The html output of my tool supports templates so i use it to create a planet.f

Re: [dev] New friends

2012-08-05 Thread pancake
Every time I read this subject in my inbox I vomit. On Aug 5, 2012, at 0:42, Jacob Todd wrote: > You must be new here. > > On Aug 4, 2012 6:40 PM, "Hadrian Węgrzynowski" wrote: > Dnia 2012-07-31, o godz. 16:16:43 > Calvin Morrison napisał(a): > > > On 31 July 2012 16:14, Lee Fallat wrote: >

Re: [dev] Build system: redo

2012-08-01 Thread pancake
a bit ugly to define in C. So i should think on a higher level description in cpp macros or so. If anyone wants to help here im open to proposals and patches. On Aug 1, 2012, at 18:02, Kai Hendry wrote: > On 1 August 2012 16:48, pancake wrote: >> Anyone checked my cake

Re: [dev] [PATCH] sbase: add chroot

2012-08-01 Thread pancake
That is vulnerable on linux. Proper use is: chdir (path); chroot("."); On Aug 1, 2012, at 16:50, Strake wrote: > diff -r 8cf300476909 chroot.8 > --- /dev/nullThu Jan 01 00:00:00 1970 + > +++ b/chroot.8Wed Aug 01 04:46:43 2012 -0500 > @@ -0,0 +1,25 @@ > +.TH CHROOT 8 > +.SH NAME >

Re: [dev] Build system: redo

2012-08-01 Thread pancake
Anyone checked my cake? http://hg.youterm.com/cake On Aug 1, 2012, at 14:52, Uriel wrote: > On Sun, Jul 15, 2012 at 3:28 PM, Prakhar Goel wrote: >> I propose adding redo to the list of software that rocks. It'll also >> give you a nice incremental build system to use. > > I like the design, b

Re: [dev] [PATCH] sbase: add cut

2012-08-01 Thread pancake
The only thing i miss in cut is mutichar word split. Which is properly handled by awk. For example: If a line is splitted by multiple spaces or a mix of tabs and spaces it is not handled right by cut. But awk does the job. That's quite anoying because of the crappy output of many tools that abu

[dev] nwm

2012-07-03 Thread pancake
Yesterday I discovered this project. nwm. a tiling window manager written for nodejs https://github.com/mixu/nwm it's definitively not suckless, but interesting anyway.

Re: [dev] github mirror

2012-07-03 Thread pancake
i have recently moved some of my repos to github, because some people wanted to contribute via github with pull requests, so i used hgpull to do it. here's the notes: *) git repo was 8 times bigger than the hg one after export (git gc --aggressive fixes this) *) every merge of a pull request res

Re: [dev] [surf] port for gtk3

2012-06-20 Thread pancake
i've been doing some rendering tests (scaling window on complex sites while the cpu is at 100% and stuf flike that). and i have to say that surf-gtk3 runs faster than gtk2 and scrollbars look just better, a part from that it looks the same. no performance difference when cpu is not 100% On 06/

Re: [dev] [surf] port for gtk3

2012-06-19 Thread pancake
On 06/19/12 17:11, Calvin Morrison wrote: On 19 June 2012 09:48, Luis Anaya wrote: Calvin Morrison writes: Is anyone planning to port surf for gtk3? Once I have a system that uses GTK3, I'd have to do it. are you from the past? Pretty close: I use Slackware. I am wondering if there are

Re: [dev] [surf] port for gtk3

2012-06-19 Thread pancake
On 06/19/12 12:45, Troels Henriksen wrote: Swiatoslaw Gal writes: Is anyone planning to port surf for gtk3? Once I have a system that uses GTK3, I'd have to do it. are you from the past?

Re: [dev] [surf] port for gtk3

2012-06-19 Thread pancake
i've been thinking about that, but after some tries i realized it would require more changes than expected, because of the GDK thing. I'm with creating a fork (surf3?) and start working on that, but first someone should get a working branch. I dont have much time to work on this. But i'm curious

Re: [dev] [ii] exposed password on process monitoring

2012-06-16 Thread pancake
Prefix the 'echo' with a whitespace unless you want your password in the shell history. Else use dev/stdin al password file and press ^D to end the password. If you dump the process memory the password will still be there. So if the environ is a problem, the process memory it is too. So bear i

Re: [dev] [surf] crash when leaving a page containing java

2012-06-15 Thread pancake
5/12 17:58, Carlos Torres wrote: There are a lot of stripped libs in that stack trace don't you think? though it does indicate that the problem is either in webkit or icedtea. On Jun 15, 2012 11:10 AM, "pancake" <mailto:panc...@youterm.com>> wrote: On 06/15/12

Re: [dev] [surf] crash when leaving a page containing java

2012-06-15 Thread pancake
On 06/15/12 16:59, anonimopococin...@alice.it wrote: I opened www.gokgs.com/applet.jsp (which contains a java applett) and everything worked properly, leaving the page though, the browser crashed, with some free() invalid poniter error. The crash happens every time I leave such page. I didn't

Re: [dev] [ii] exposed password on process monitoring

2012-06-13 Thread pancake
Wow. Didnt knew it. Looks interesting But.. Doesnt works for me, looks like the fifo events are not handled by ji's select(). On Thursday, June 14, 2012 at 12:22 AM, Ivan Kanakarakis wrote: > > > On 14 June 2012 00:58, hiro <23h...@googlemail.com > (mailto:23h...@googlemail.com)> wrote: >

Re: [dev] unsubscribe

2012-06-13 Thread pancake
On 06/13/12 16:22, Kurt H Maier wrote: On Wed, Jun 13, 2012 at 04:02:42PM +0200, hiro wrote: Everyone who participates in unsubscribe gets the chance to win 10 Bitcoins. I won't *not* unsuccessfully unsubscribe. here's my 1subs.. vanity address. ktxby $ ./vanitygen 1subs Difficulty: 2641042

Re: [dev] unsubscribe

2012-06-13 Thread pancake
You have been successfully unsubscribed from this mailing list. On 06/13/12 10:18, Magnus Leuthner wrote: unsubscribe

Re: [dev] [surf] patch to remove resizing if small

2012-06-11 Thread pancake
On 06/11/12 18:32, sta...@cs.tu-berlin.de wrote: * pancake [2012-06-11 17:05]: Anyway, i have noticed that META-h means go back and scroll left, which probably that originates from the snippet I posted and didn't post the proper patch. In that case META-l should have the same issue. I

Re: [dev] [surf] patch to remove resizing if small

2012-06-11 Thread pancake
On 06/11/12 16:12, Nick wrote: Quoth pancake: surf.c: In function ‘gotheaders’: surf.c:337:11: warning: variable ‘uri’ set but not used [-Wunused-but-set-variable] Good spot. My gcc doesn't catch that, but you're right, it is unused. I'm attaching a patch that removes use o

Re: [dev] [surf] patch to remove resizing if small

2012-06-11 Thread pancake
btw. without applying your patch: surf.c: In function ‘gotheaders’: surf.c:337:11: warning: variable ‘uri’ set but not used [-Wunused-but-set-variable] surf.c: At top level: surf.c:800:1: warning: ‘eval’ defined but not used [-Wunused-function] On 06/11/12 14:48, Nick wrote: The most annoyin

Re: [dev] [surf] patch to remove resizing if small

2012-06-11 Thread pancake
i'm with you. your patch should be in tip. On 06/11/12 14:48, Nick wrote: The most annoying feature of surf for me has been that when the window gets quite small suddenly everything is zoomed to a tiny and unreadable size. This can be a pain if for example I want to keep a couple of lines of tex

Re: [dev] [surf]keybind to scroll left/right

2012-05-24 Thread pancake
what about adding this to the default surf? On 05/24/12 08:38, sta...@cs.tu-berlin.de wrote: * Thuban [2012-05-24 07:53]: I was wondering if there is any way to have a keybind to scroll left or right, just like you can scroll up and down with C-k and C-j? sure. Here an example: - config.h

Re: [dev] github mirror

2012-05-23 Thread pancake
On 05/23/12 11:33, Kai Hendry wrote: hghub.org no worky for me, all I see is "Under active development!". sorry, hghub.com :)

Re: [dev] simple portscanner

2012-05-22 Thread pancake
Hghub moved from trying to replace github to support hggit extension. Check hghub.org with few lines you can mirror hg repos in git. I think that a github mirror of suckless repos would be interesting On May 22, 2012, at 9:02 PM, Anselm R Garbe wrote: > On 22 May 2012 20:58, Kai Hendry wrote:

Re: [dev] simple dhcp client

2012-04-20 Thread pancake
lot of suckless tools exist nowadays.. mostly prefixed by 's'.. like star, sdhcp.. i would love to ser them all grouped in a single repo, site or linux distro. as far as we have 9base and musl can fill the gaps to have a fully suckless distro. i think that those commands should get the standard

Re: [dev] minimal wm request

2012-04-06 Thread pancake
this can be done by just tuning the config.h. aka rtfsc On Apr 6, 2012, at 14:40, Martin Kopta wrote: > Does someone know about some very basic wm, which would basicaly be just > monocle dwm without any bar and shortcuts? I would use basic xorg, but I need > to make the app maximized. It is so

Re: [dev] [st and terminals] About escape sequences and stuff

2012-02-09 Thread pancake
you may probably want to look at my r_cons and r_line libraries from r2. i do buffering, autocomplete, screen filling, and works on w32 console, and most of terminals (st, xterm...) without guessing the termcodes. i just hardcode them. http://radare.org On Feb 9, 2012, at 18:02, Chris Siebenm

Re: [dev] [slock] kill slock with Ctrl+Alt+Multiply

2012-01-22 Thread pancake
d take away the whole keyboard. It's very easy on my thinkpad. > Only 7 screws away from perfect security. > > On 22.01.2012, pancake wrote: >> what about disabling ctrl key when slock is running by calling xmodmap or >> doing it in C? will this work? ( i know its hacky) &

Re: [dev] [slock] kill slock with Ctrl+Alt+Multiply

2012-01-22 Thread pancake
what about disabling ctrl key when slock is running by calling xmodmap or doing it in C? will this work? ( i know its hacky) On Jan 22, 2012, at 19:14, Anselm R Garbe wrote: > 2012/1/22 Hadrian Węgrzynowski : >> I will repeat my self. Read this first: >> http://who-t.blogspot.com/2012/01/xkb-br

Re: [dev] [slock] kill slock with Ctrl+Alt+Multiply

2012-01-22 Thread pancake
r u using the multiply key from the numpad? On Jan 22, 2012, at 18:30, Anselm R Garbe wrote: > On 22 January 2012 18:25, Roman Z. wrote: >>> On 21 January 2012 01:13, Bjartur Thorlacius wrote: Ţann fös 20.jan 2012 23:42, skrifađi Rob: > > On Fri, Jan 20, 2012 at 07:01:22PM +,

Re: [dev] [slock] kill slock with Ctrl+Alt+Multiply

2012-01-22 Thread pancake
ctrl+alt+backspace is not enabled by default. remove your xorg.conf an you'll enjoy it. this is the reason why X must be started with exec or from rc.d. this way. ctrl+alt+bs doesnt gives you a shell. this ctrl+alt+multiple thingy looks evil. who the hell needs to do this? and more to say.. wh

  1   2   3   4   5   >