Re: [dev] [edit] Introducing edit, a simple text editor

2023-09-27 Thread Daniel Littlewood
Hi Arthur, I tried to build your project, but it failed for me: termbox2.h:2209:22: error: storage size of ‘sa’ isn’t known termbox2.h:2345:46: error: ‘struct sigaction’ has no member named ‘sa_handler’ termbox2.h:2345:44: error: invalid use of undefined type ‘struct sigaction’ All the best, Dan

Re: [dev] Minimalist software. Should I care?

2023-07-06 Thread Daniel Littlewood
I tried to respond to the original question the other day but failed to set up text mode correctly. ugh. > What would be the point of using minimalist software if > bloated and excessively complex programs completely satisfy > all my needs? I think there are a couple of reasons. Not all of them a

Re: [dev] bump copyright years?

2023-02-08 Thread Daniel Littlewood
I would also be in favour of removing the dates. For actively developed software, copyright expiry is a sort of fantasy concept. By the time author 1 has been dead for 70 years, the software has probably had thousands of authors who remain alive. I only use dates like that to get a rough idea of wh

Re: [dev] Is there a text editor following the UNIX philosophy?

2022-02-12 Thread Daniel Cegiełka
pt., 11 lut 2022 o 12:56 Daniel Littlewood napisał(a): > > Hi all, > > I wonder whether there are any text-editing (particularly > code-editing) workflows people have had success with which combine > many small programs, rather than using a single monolith. Here you go: h

Re: [dev] Is there a text editor following the UNIX philosophy?

2022-02-12 Thread Daniel Littlewood
My impression so far with acme is that it fills the "IDE" gap much more than the "text editor" gap. I watched a screencast by Russ Cox (https://www.youtube.com/watch?v=dP1xVpMPn8M) and the appealing features were mostly around co-ordination of windows rather than the contents of the windows themsel

Re: [dev] Is there a text editor following the UNIX philosophy?

2022-02-12 Thread Daniel Littlewood
Thanks for the suggestions everyone. Acme looks extremely neat. Mouse chording is a strange concept (which doesn't play nicely with my laptop mouse), but the idea of building an IDE around customised short shell commands is really appealing. As for text editing specifically, the idea of piping a bu

[dev] Is there a text editor following the UNIX philosophy?

2022-02-11 Thread Daniel Littlewood
Hi all, There was a recent chat about cat -v & single-purpose programs which has been rattling around my head for the last few weeks. There are *many* bloated code editors (atom, vscode, etc.), but most people usually present either emacs or vim as an alternative. I can't see these as any less blo

Re: [dev] Sxmo presentation at AlpineConf (Sat May 15, 14:30 UTC)

2021-05-15 Thread Daniel Littlewood
It was earlier today, the recording on youtube is here: https://www.youtube.com/watch?v=VOW6APA4sTY&ab_channel=proycon Really interesting presentation! I've been wondering for a long time whether a little creativity could make terminal apps more functional on mobile. If I can figure out how to mak

Re: [dev] Checksums and Sig files for release gzip

2021-04-14 Thread Daniel Cegiełka
is better then SHA256 or SHA512. Plus my _OLD_ one-file implementation of blake2b (license the same as the original) and no support for keys. Daniel > Signatures are of course good. > > > Thanking you > > Sagar Acharya > > https://designman.org > > > > >

Re: [dev] Checksums and Sig files for release gzip

2021-04-13 Thread Daniel Cegiełka
feature also needs to provide some level of security. Here is a plus for SipHash: https://github.com/openwall/lkrg/blob/main/src/modules/hashing/p_lkrg_fast_hash.c So it's hard to find a single hash function that addresses all these areas. And that's what they are trying to do with SHA3.

Re: [dev] Checksums and Sig files for release gzip

2021-04-13 Thread Daniel Cegiełka
wt., 13 kwi 2021 o 21:29 Sergey Matveev napisał(a): > > *** Mattias Andrée [2021-04-13 20:48]: > >But interesting, even though Keccak (from which SHA-3 is > >derived) won over BLAKE2, BLAKE2 seems to be more popular. > > Keccak won over "BLAKE". "BLAKE2" is reduced-round tweaked "BLAKE" version. >

Re: [dev] Checksums and Sig files for release gzip

2021-04-13 Thread Daniel Cegiełka
wt., 13 kwi 2021 o 17:59 Hiltjo Posthuma napisał(a): > > On Tue, Apr 13, 2021 at 04:45:07PM +0200, Daniel Cegiełka wrote: > > How/where SHA512 is better than SHA256 or SHA1? I don't see any added > > value in this. If someone breaks into your server and replace files,

Re: [dev] Checksums and Sig files for release gzip

2021-04-13 Thread Daniel Cegiełka
from OpenBSD or GnuPG. https://man.openbsd.org/signify Daniel wt., 13 kwi 2021 o 13:36 Sagar Acharya napisał(a): > > Can we have SHA512 checksums and sig files for the release gzips of suckless > software? > > Thanking you > Sagar Acharya > https://designman.org >

Re: [dev] Completeness suckless

2021-04-12 Thread Daniel Cegiełka
rnel than to do a lightweight OpenBSD installation (perl for pkg, clang/llvm etc). See sta.li/morpheus or Oasis Linux. > compared to operating systems of the past. FreeDOS is ~50k lines, and then > there are things like KolibriOS to consider. > > ...and Haiku, Plan 9/9front etc. et

[dev] Completeness suckless

2021-04-11 Thread Daniel Cegiełka
essary could be deleted. And yes, this sounds controversial, but for example: https://github.com/michaelforney/linux-headers/tree/master/scripts Daniel > On 9 Apr 2021, at 14:54, Sagar Acharya wrote: > > I recently wrote this article > > https://designman.org/sagaracharya

[dev] [st] Patch/feature request - redraw terminal on resize

2020-10-24 Thread Daniel Littlewood
h a patch exists, or where to start implementing it myself? (I can include screenshots too if my description is not clear) Thanks a lot, Daniel

Re: [dev] [PATCH slstatus] Add a -1 option flag

2020-06-27 Thread Daniel Moch
Any feedback on this? Does this seem like something that should be added to the wiki as a patch, or something that should be merged? On Tue, Jun 23, 2020 at 04:35:43PM -0400, Daniel Moch wrote: > Allow slstatus to be used by programs that can grab status by calling > an external progra

[dev] [PATCH slstatus] Add a -1 option flag

2020-06-23 Thread Daniel Moch
Allow slstatus to be used by programs that can grab status by calling an external program on a periodic basis (e.g. tmux) --- slstatus.1 | 5 - slstatus.c | 9 ++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/slstatus.1 b/slstatus.1 index da1a99a..d802037 100644 --- a/

Re: [dev] [st] vim breaks Delete key in an ssh session

2020-02-28 Thread Daniel Tameling
the prompt: https://www.tcsh.org/faq/#how-can-i-use-the-arrow-keys-with-hpterm Best regards, Daniel

Re: [dev] [st] vim breaks Delete key in an ssh session

2020-02-27 Thread Daniel Tameling
to use tcsh (don't ask why, corporate/legacy > decision completely out of my control). > > Best regards, > Patrik > I don't know the vim source code but what these sort of programs normally do is tput smkx on startup and tput rmkx when they finish. Thus the need to redo the smkx command. Best regards, Daniel

Re: [dev] [st] vim breaks Delete key in an ssh session

2020-02-27 Thread Daniel Tameling
iour. > >Also, I don't get this behaviour when I run vim from an st on my local Linux > >PC. > >Any ideas? > > > >Best regards, > >Patrik > > Hi, this is working as expected. Please read the FAQ file in the repository section "Why doesn't the Del key work in some programs?". There you also find workarounds for bash and zsh. Best regards, Daniel

Re: [dev] [dwm] Crash (possibly related to ru_bottomstack?)

2020-02-25 Thread Daniel Moch
.. And does it behave better if you back out the patch? -- Daniel Moch https://djmo.ch

Re: [dev] [st] Bug report

2020-02-12 Thread Daniel Tameling
e of bad work with my > programms. Hi, this is not really a bug, the glyphs render fine. It seems that in st you have iutf8 disabled for the tty. Try executing "stty iutf8". If that doesn't help compare the output of "stty -a" with the terminal where it is working. -- Best, Daniel

Re: [dev] My take at a static site generator

2019-12-10 Thread Daniel Moch
s worth porting my Nikola-based, static site to something like apostl or mkws. Seems like if one adopts m4(1) or pp(1) then it's fairly trivial to roll one's own, at least for my use case. [1] - https://github.com/vkitchen/apostl -- Daniel Moch dan...@danielmoch.com http://djmoch.org

Re: [dev] [slcon6] Invitation to the suckless conference 2019

2019-09-28 Thread Daniel Vartanov
Wonderful, thank you, will do next year! Thanks, Daniel On Sat, 28 Sep 2019 at 20:33, Laslo Hunhold wrote: > > On Sat, 28 Sep 2019 13:25:09 +0100 > Daniel Vartanov wrote: > > Dear Daniel, > > > I regret to inform you that I won't be able to attend Suckless Con

Re: [dev] [slcon6] Invitation to the suckless conference 2019

2019-09-28 Thread Daniel Vartanov
ances of getting a visa in 2020? Cheers, Daniel On Thu, 4 Apr 2019 at 16:09, Laslo Hunhold wrote: > > On Thu, 4 Apr 2019 15:50:24 +0100 > Daniel Vartanov wrote: > > Dear Daniel, > > > Thanks for the announcement. Please clarify whether: > > 1. The talks themselves wi

Re: [dev] Yet another C compiler

2019-05-21 Thread Daniel Cegiełka
wt., 21 maj 2019 o 20:12 napisał(a): > > On Tue, May 21, 2019 at 09:27:19AM +0200, Daniel Cegiełka wrote: > > wt., 21 maj 2019 o 08:14 Michael Forney napisał(a): > > > > > > On 2019-05-20, sylvain.bertr...@gmail.com > > > wrote: > > > > Sadly

Re: [dev] Yet another C compiler

2019-05-21 Thread Daniel Cegiełka
note.GNU-stack,"",%progbits more info: https://wiki.gentoo.org/wiki/Hardened/GNU_stack_quickstart Daniel

Re: [dev] switch to ubase + sbase

2019-05-18 Thread Daniel Cegiełka
;, first the path '/usr/local/bin' will be checked, then '/usr/bin' and finally '/bin'. see: echo $PATH to change the order in $PATH, save this in ~ /.profile and then: . ~/.profile btw. there is oasis, a small sbase+ubase+musl linux distro: https://github.com/michaelforney/oasis/ Daniel > Thanks in advance! > > Greetings, > > Thomas Meulendijks >

Re: [dev] miniyacc

2019-05-08 Thread Daniel Cegiełka
isn't actively developed: https://c9x.me/git/miniyacc.git/log/ mpu devotes most of his time to developing qbe. Daniel śr., 8 maj 2019 o 10:36 Michael Forney > > On 2019-05-07, Daniel Cegiełka > > Hi, > > > > I'm going to use Quentin's miniyacc with (for exampl

[dev] Re: miniyacc

2019-05-08 Thread Daniel Cegiełka
low memory usage and here I was very curious about the results (the generated test code is very clean vs competition). * I wonder if miniyacc could be a replacement for heavier parsers (bison, OpenBSD's & Plan 9's yacc). https://c9x.me/yacc/ Daniel > > Hi, > > I'm

[dev] miniyacc

2019-05-07 Thread Daniel Cegiełka
e with miniyacc? Best regards, Daniel

Re: [dev] Pandoc replacement that sucks less

2019-04-29 Thread Daniel Cegiełka
/bin/mandoc And it contains several programs[3], such as man, apropos etc. LaTeX can be completely replaced by troff (see neatroff[4]). Daniel [1] https://man.openbsd.org/mdoc.7 [2] https://man.openbsd.org/mandoc.1 [3] https://github.com/openbsd/src/blob/master/usr.bin/mandoc/Makefile#L26 [4] ht

Re: [dev] JFS filesystem

2019-04-22 Thread Daniel Cegiełka
pon., 22 kwi 2019 o 07:17 Fernando Cassia napisał(a): > > On 4/19/19, Daniel Cegiełka wrote: > > > Would anyone be interested to start supporting JFS? I'm thinking about > > rewriting jfsutils. > > > > Best regards, > > Daniel > > +1 on all yo

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 21:55 Ciprian Dorin Craciun napisał(a): > > On Sun, Apr 21, 2019 at 8:42 PM Daniel Cegiełka > > The best example here is Google. They used ext2 for a long time as > > their main filesystem. Yes, ext2. Why? ext2 is a very simple file > > system - it i

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 21:10 stephen Turner napisał(a): > > I am an amateur here and follow mostly to learn from you all, but I did like > some of the ideas in btrfs. my tricks with btrfs (no partitions): dd if=/dev/zero of=/dev/sda bs=4096 mkfs.btrfs -L dev_sda /dev/sda mount /dev/sda /mnt cd

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 22:07 Ciprian Dorin Craciun napisał(a): > > On Sat, Apr 20, 2019 at 1:29 AM Daniel Cegiełka > wrote: > > * JFS [1] > > Forgotten file system. JFS is what ext4 should be. This is a very well > > thought and well-designed file system. It i

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 21:55 Ciprian Dorin Craciun napisał(a): > > > Indeed, Git is the best "file-system" (if it can be called so) for > important data. (It even has `git-fsck`.) :) > > Moreover I usually keep (and generate once in a while) MD5 checksums > of all my files, which, coupled with a

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 16:13 Martin Tournoij napisał(a): > > On Sun, 21 Apr 2019 14:53:19 +0200 Daniel Cegiełka > wrote: > > ZFS, btrfs and bcachefs are, however, designed as a filesystems for data > > storage. > > These are good filesystems for databases. Next to

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 15:24 Joseph Graham napisał(a): > > > In fact, in many filesystems there are very weak – or no! – guarantees that > > the data you're reading is actually correct. Systems like ext4 simply assume > > that the data written to the disk will never change. AFAIK, it has > > essent

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
ack about what others think about file systems and what their view is on JFS, as a universal file system. Thx, Daniel

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
niedz., 21 kwi 2019 o 14:35 Martin Tournoij napisał(a): > > On Fri, 19 Apr 2019 09:20:41 +0200 Daniel Cegiełka > wrote: > > * ZFS > > Resource-consuming. Designed for large servers. > > > > * btrfs > > Rather a good choice for server rooms (Facebook). &g

Re: [dev] JFS filesystem

2019-04-21 Thread Daniel Cegiełka
simply use ZFS for data regardless of what filesystem would be as /. Daniel > -Alex

[dev] JFS filesystem

2019-04-19 Thread Daniel Cegiełka
king about rewriting jfsutils. Best regards, Daniel [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/filesystems/jfs.txt?h=v5.1-rc5 [2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/filesystems/dax.txt?h=v5.1-rc5

Re: [dev] [slcon6] Invitation to the suckless conference 2019

2019-04-04 Thread Daniel Vartanov
Hi Laslo, Thanks for the announcement. Please clarify whether: 1. The talks themselves will be in English or other languages. 2. Members meeting is going to be held in English or not. It is obviously more than okay to have non-English gathering, we just better know in advance. Thanks, Daniel

Re: [dev] Make cleanup

2018-12-30 Thread Daniel Cegiełka
niedz., 30 gru 2018 o 10:36 Laslo Hunhold napisał(a): > > On Sat, 29 Dec 2018 20:32:13 -0500 > stephen Turner wrote: > > > Really helpful would be a make-implementation that is 100% POSIX[0]. It > makes me sad to see that most Makefiles use GNU-extensions, as they are > not necessary in most case

Re: [dev] [ubase] Implementing users and groups management

2018-11-26 Thread Daniel Cegiełka
pon., 26 lis 2018 o 19:23 ilmich napisał(a): > > Hi Daniel, > > > > 1) Note that struct passwd is not compatible with linux libc ABI > > > (pw_class). > > you are right, but I've noticed that ubase's login and passwd > implementation make us

Re: [dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-26 Thread Daniel Cegiełka
sob., 24 lis 2018 o 20:23 Michael Forney napisał(a): > > Hi Daniel, > > When I looked into this, I went with a slightly different approach. > Instead of copying from ncurses, I generated the arrays from term.h > and an awk script. > https://github.com/sabotage-linux/netbsd-

Re: [dev] [ubase] Implementing users and groups management

2018-11-26 Thread Daniel Cegiełka
sorry for html... pon., 26 lis 2018 o 17:40 Daniel Cegiełka napisał(a): > > > > pon., 26 lis 2018 o 17:21 ilmich napisał(a): >> >> Il giorno lun 26 nov 2018 alle ore 15:38 Laslo Hunhold >> ha scritto: >> > Dear Michele, >> >> > I remembe

Re: [dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-24 Thread Daniel Cegiełka
sob., 24 lis 2018 o 20:23 Michael Forney napisał(a): > > Hi Daniel, > > On 2018-11-24, Daniel Cegiełka wrote: > > Hi, > > > When I looked into this, I went with a slightly different approach. > Instead of copying from ncurses, I generated the arrays from term.h &g

Re: [dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-24 Thread Daniel Cegiełka
sob., 24 lis 2018 o 16:05 Leonardo Taccari napisał(a): > > Daniel Cegiełka writes: > > [...] > > Nothing. Maybe you use libtermkey+unibilium instead of netbsd curses? > > [...] > > Yes, libtermkey package is built with unibilium support. libtermkey+unibilium - unfo

Re: [dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-24 Thread Daniel Cegiełka
sob., 24 lis 2018 o 14:14 Leonardo Taccari napisał(a): > > Hello Daniel, > > Daniel Cegiełka writes: > > [...] > > It works fine, because they don't use netbsd-curses but ncurses. > > > > http://pkgsrc.se/wip/vis-editor > > http://pkgsrc.se/devel/n

Re: [dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-24 Thread Daniel Cegiełka
sob., 24 lis 2018 o 13:16 Leonardo Taccari napisał(a): > > Hello Daniel, > > Daniel Cegiełka writes: > > [...] > > vis works fine, however, there is a problem when I use ':!' or ':e *'. > > I think that the terminal settings are not restored. Does

[dev] using vis (libtermkey) and netbsd-curses (was: oasis: small linux system inspired by stali)

2018-11-24 Thread Daniel Cegiełka
and strfnames */ #include "names.c" /* curses.h has just poluted our namespace. We want this back */ # undef buttons #endif vis works fine, however, there is a problem when I use ':!' or ':e *'. I think that the terminal settings are not restored. Does anyone have an idea here how it can be solved? Daniel

Re: [dev] oasis: small linux system inspired by stali

2018-11-23 Thread Daniel Cegiełka
;& :wq etc. work correctly. Only ':e *' causes problems (so far). Does anyone have an idea of how this problem can be solved? Best regards, Daniel

Re: [dev] [st] scrollback-mouse patch is broken on 0.8

2018-09-08 Thread Daniel Tameling
On Fri, Sep 07, 2018 at 04:13:48PM -0700, Devin Neal wrote: > On Fri, Sep 7, 2018 at 8:15 AM Daniel Tameling > wrote: > > if there is already an existing config.h, you get the error you described. > > It turns out that this error occurred precisely because I ran make > (whi

Re: [dev] [st] scrollback-mouse patch is broken on 0.8

2018-09-07 Thread Daniel Tameling
On Fri, Sep 07, 2018 at 10:10:44AM -0700, Devin Neal wrote: > On Fri, Sep 7, 2018 at 8:15 AM Daniel Tameling > wrote: > > > > you need to apply the normal scrollback patch before the mouse one. > > Then it works. > > Sorry if it wasn't clear from my previo

Re: [dev] [st] scrollback-mouse patch is broken on 0.8

2018-09-07 Thread Daniel Tameling
ility that I've done something wrong. > Hi Devin, you need to apply the normal scrollback patch before the mouse one. Then it works. -- Best, Daniel

Re: [dev] [st] Hardcoded colors. Can I change them runtime?

2018-08-06 Thread Daniel Vartanov
eople genuinely perplexed with the issue. Thanks, Daniel On 6 August 2018 at 20:46, Timur Fayzrakhmanov wrote: > Hi Daniel, > > Yes, I've tried it (even before writing here) and were not really > satisfied. That's why I decided to put thoughts here. Better than > nothing

Re: [dev] [st] Hardcoded colors. Can I change them runtime?

2018-08-05 Thread Daniel Vartanov
Hey, I appreciate your emotional rollercoaster because of this peculiarity, the patches indeed are not alwasy compatible (so are any mods to software TBH). Have you tried to copy exact numbers from other sources like https://github.com/honza/base16-st/tree/master/build ? Cheers, Daniel On 5

Re: [dev] [st] Hardcoded colors. Can I change them runtime?

2018-08-01 Thread Daniel Vartanov
needs: you only have to learn C (at least in order to edit the header file). """ Cheers, Daniel On 1 August 2018 at 23:38, S. Gilles wrote: > On 2018-07-30T18:52:11+0200, Timur Fayzrakhmanov wrote: >> Halo! >> >> I've tried to change color scheme using

Re: [dev] [st] Hardcoded colors. Can I change them runtime?

2018-07-31 Thread Daniel Vartanov
Hey Timur, Configuring suckless programs via code and recompiling it IS the right way of configuring suckless programs. So, in your case you do it via changing config.h and recompiling st. This is how I applied a theme myself. Cheers, Daniel Vartanov On 30 July 2018 at 17:59, opal hart wrote

Re: [dev] [st] How to make it distinguish Control-p from Control-P?

2018-05-17 Thread Daniel Vartanov
Thank you everyone your answers, it was really helpful. I do hope Leonerd's approach prevails http://www.leonerd.org.uk/hacks/fixterms/ On 16 May 2018 at 23:09, Amer wrote: >> Is there way to make Contol-sequences case sensitive? > > You can use this patch to support extended set of hotkeys. >

[dev] [st] How to make it distinguish Control-p from Control-P?

2018-05-16 Thread Daniel Vartanov
Currently st does not tell ^p from ^P (any letter goes here, "P" is here only as an example). Is there way to make Contol-sequences case sensitive? Just in case it is relevant, I need it to set certain hot keys in tmux. Thanks, Daniel

Re: [dev] [st] shift + backspace

2018-05-05 Thread Daniel Tameling
releases? > Hi, the following patch should give you the behavior you want. Best regards, Daniel --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 82b1b09..1a0dfbf 100644 --- a/config.def.h +++ b/config.def.h @@ -336,8 +336

Re: [dev] [st] clipboard patch can lead to crashes with st 0.8

2018-03-17 Thread Daniel Tameling
Hiltjo Posthuma writes: > On Sat, Mar 17, 2018 at 11:04:22AM +0100, Daniel Tameling wrote: >> >> Hi, >> >> the clipboard patch st-clipboard-20180309-c5ba9c0.diff can lead to >> double frees with st 0.8. This is because, starting with commit >> cfc7a

[dev] [st] clipboard patch can lead to crashes with st 0.8

2018-03-17 Thread Daniel Tameling
Also note that the mentioned commit changed the behaviour of the primary. Before it, the primary survived up until you made a new selection. Now it gets erased if you left-click once. -- Kind regards, Daniel

Re: [dev] Can I build stali with another libc?

2018-01-16 Thread Daniel Cegiełka
2018-01-16 21:06 GMT+01:00 Cág : > Daniel Cegiełka wrote: > >> yup... and next one is bearssl >> https://bearssl.org/ > > What is so great about it? I only know about Libre/OpenSSL and the GNU > implementation. """ Be correct and secure. In particular,

Re: [dev] Can I build stali with another libc?

2018-01-11 Thread Daniel Cegiełka
2018-01-11 21:03 GMT+01:00 Cág : > > k.suzaki wrote: > > > Dear, > > Can I build stali with another libc? The old stali seems to be built by > > uClibc. > > You can but you shouldn't. > > musl is the only alternative, fairly feature complete, libc, that is still > being developed. uClibc/dietlibc h

Re: [dev] Are all dlopen() functions in the stali suppressed?

2018-01-10 Thread Daniel Cegiełka
2018-01-10 4:22 GMT+01:00 k.suzaki : > On 2018/01/09 17:10, k.suzaki wrote: > >> On 2018/01/09 15:49, Daniel Cegiełka wrote: >>> >>> 2018-01-09 3:22 GMT+01:00 k.suzaki : >>>> >>>> Dear, >>>> >>>> I found some dlopen(

Re: [dev] Are all dlopen() functions in the stali suppressed?

2018-01-08 Thread Daniel Cegiełka
nctions suppressed when the source files are compiled as > static linking? > # If so, it is a good job. http://www.openwall.com/lists/musl/2012/12/08/4 Best regards, Daniel > - > suzaki > >

Re: [dev] Question about arg.h

2017-08-25 Thread Daniel Xu
Hi Laslo, Thanks for the clarification. I have to say it's definitely a different experience getting used to suckless code. Dan On Thu, Aug 24, 2017, at 06:13 AM, Laslo Hunhold wrote: > On Wed, 23 Aug 2017 20:28:12 -0500 > Daniel Xu wrote: > > Hey Daniel, > > > I

[dev] Question about arg.h

2017-08-23 Thread Daniel Xu
I'm currently familiarizing myself with various pieces of suckless code. One thing keeps bothering me, though: What is EARGF() and ARGF() shorthand for? I can more or less tell what they do but the best I can come up with is "Error arg flag" and "Arg flag", respectively. Hopefully someone can scr

Re: [dev] [proposal] suckless-nettools

2017-07-07 Thread Daniel Hammond
No worries! Not a big fan of all the outside dependencies, but I'm not going anywhere near the 80211 stack for a proper solution. That is *way* above my meager abilities. ⁣Sent from BlueMail ​ On Jul 7, 2017, 6:52 AM, at 6:52 AM, christopher.waldon@gmail.com wrote: >Nifty. I might play with

Re: [dev] [proposal] suckless-nettools

2017-07-07 Thread Daniel Hammond
No one should be using WEP in this day and age, and I stand by that. Besides that, isn't the entire point and purpose of suck less to judge other technologies as bloated and/or unnecessary? I don't see why some judgemental snark would be against that spirit. Anyway, "Don't be retarded" is prett

Re: [dev] [proposal] suckless-nettools

2017-07-06 Thread Daniel Hammond
Can you elaborate further? "Not useful" is kind of relative. On Jul 6, 2017, 6:13 PM, at 6:13 PM, hiro <23h...@gmail.com> wrote: >wpa_gui and wpa_cli usage should be endorsed. wrapping it like this is >not useful.

[dev] [proposal] suckless-nettools

2017-07-06 Thread Daniel Hammond
sted-ish.) Feedback is welcome if you're so inclined. Thanks! Daniel

Re: [dev] containers opinion

2016-09-23 Thread Daniel Abrecht
I am new here. I am using devuan + libvirt + lxc containers. I think in terms of security, it's less secure than a VM, since it shares the kernel & resources with the host system. But I think it's easier to backup & update containers. I like that I can just copy a container to another computer, and

Re: [dev] [st] Ibus

2016-09-04 Thread Daniel Norris
Hi Ivan, Thanks for your help. I think I had ibus improperly set up. It now works fine on 0.7. Best, Daniel On Sun, Sep 4, 2016 at 3:06 AM, Ivan Tham wrote: > Well, it works here as Weng Xue Tian had patched it. I used fcitx here > and it it works find. Had you tried the latest git? &g

[dev] [st] Ibus

2016-09-03 Thread Daniel Norris
a patch I can use? Something like that is referenced here: http://lists.suckless.org/dev/1506/27121.html Thanks, Daniel

Re: [dev] New Suckless computer language?

2016-07-24 Thread Daniel V
tle slower than normal hand coded assembly programs for the 6502. So you can do many things with it. // Daniel V.

Re: [dev] New Suckless computer language?

2016-07-22 Thread Daniel V
uctions to a VM or a Soft Core for an FPGA. So it's made to save time in development, and give a higher understanding on what exactly is done. Giving more brain power left, to solve actual problems. SCC looks interesting thou. // Daniel V. 2016-07-23 1:15 GMT+02:00, Quentin Carbonneaux : &

Re: [dev] New Suckless computer language?

2016-07-22 Thread Daniel V
2016-07-22 22:51 GMT+02:00, Robert Ransom : > http://lmgtfy.com/?q=free+Git+hosting > Ha, ha, ha... Thanks for the link :-) // Daniel V.

Re: [dev] New Suckless computer language?

2016-07-22 Thread Daniel V
e until I > see it with my > own two eyes. > > regards, > Lukáš > It's not a VM-based language. It generates machine code, or byte code. And it don't need a runtime library, or VM. // Daniel V.

Re: [dev] New Suckless computer language?

2016-07-22 Thread Daniel V
2016-07-22 21:51 GMT+02:00, Quentin Carbonneaux : > On Fri, Jul 22, 2016 at 08:46:50PM +0200, Daniel V wrote: >> Is there any interest in a small new computer language? > > What would it do better than C? > > If it's just a compiler improvement, we're already wo

[dev] New Suckless computer language?

2016-07-22 Thread Daniel V
because I needed to make custom compilers for my new ISA (instruction set architecture) research, for making new processors. And I got tired of writing test programs, by hand coding machine code. Is there any need for a new language, or is C good enough? // Daniel V.

Re: [dev] [dwm] altera quartus ii qsys gui not showing

2016-05-10 Thread Daniel Kowalski
sys is a java thing and java has problems with tiling non-reparenting WMs, look here (solutions for awesome WM, but some of them also apply for DWM) https://awesome.naquadah.org/wiki/Problems_with_Java Daniel

Re: [dev] suckless shared tools

2016-02-27 Thread Daniel Kowalski
nd similar tools from another > >>>> repository and then only 1 place have to be fixed to everyone > >>>> benefit? Or a script that can be run to automatically sync all > >>>> arg.h on git.suckless.org with the master version? Thanks. > >>> > >>> > >>> Send patches. > >>> > > > > Send patches to make those many projects get arg.h from libsl? > > > Synchronization of common code between projects is built into git: https://git-scm.com/docs/git-submodule Maybe libsl should be submodule of other projects that use it? Daniel --

Re: [dev] MIT/BSD licensed ELF linker?

2015-08-04 Thread Daniel Cegiełka
I need to solve the problem of not offering pre-linked > binaries that combine GPLed portions with other licensed portions... > but to come up with a neat solution, I'd like to rely on a free ELF > linker. > > Suggestions? http://sourceforge.net/p/elftoolchain/wiki/Home/ Daniel > Best regards, > Anselm >

[dev] scc vs 8cc

2015-07-26 Thread Daniel Cegiełka
https://github.com/rui314/8cc so why scc? Daniel

[dev] [st] [PATCH] Clarify calculation precedence for '&' and '?'

2015-04-22 Thread Daniel Martí
Signed-off-by: Daniel Martí --- st.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/st.c b/st.c index d5bf8f1..57cb052 100644 --- a/st.c +++ b/st.c @@ -859,9 +859,9 @@ mousereport(XEvent *e) { } if(!IS_SET(MODE_MOUSEX10)) { - button

[dev] [st] [PATCH] Use %u for uint

2015-04-22 Thread Daniel Martí
Signed-off-by: Daniel Martí --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 0204b2e..d5bf8f1 100644 --- a/st.c +++ b/st.c @@ -1746,7 +1746,7 @@ tdefcolor(int *attr, int *npar, int l) { b = attr[*npar + 4]; *npar += 4

[dev] [st] [PATCH] len assignment is never used

2015-04-22 Thread Daniel Martí
Signed-off-by: Daniel Martí --- st.c | 1 - 1 file changed, 1 deletion(-) diff --git a/st.c b/st.c index 57cb052..6f236ec 100644 --- a/st.c +++ b/st.c @@ -864,7 +864,6 @@ mousereport(XEvent *e) { + ((state & ControlMask) ? 16 : 0); } - len = 0;

Re: [dev] need updated patch for st to use DEL (0x7F) for backspace key

2015-02-20 Thread Daniel Martí
On Fri, Feb 20, 2015 at 17:10:19 +0100, FRIGN wrote: > There you go! > Please let me know if it works. Apply with "git am". I've been using this patch for weeks now, seems to work fine. I agree that it should be included in st.suckless.org/patches. -- Daniel Martí -

Re: [dev] rebooting the web (it was: surf rewrite for WebKit2GTK)

2014-11-03 Thread Daniel Camolês
2014-10-29 2:58 GMT-02:00 Louis Santillan : > Some of the ideas you identified in "rebooting the web" were more > clearly and concisely conveyed in Ian Hickson's Google+ post [0][1]. Sorry if I wasn't clear or concise enough, but there are points of Hickson's post that only apply to a certain vis

[dev] rebooting the web (it was: surf rewrite for WebKit2GTK)

2014-10-28 Thread Daniel Camolês
2014-10-28 22:04 GMT-02:00 M Farkas-Dyck : > VM is an option, tho a less versatile one. We could use capabilities > where available and VM elsewhere. Well, that's already more than twice the complexity before it even started to be written. I researched a bit on VM's and distributed systems, and t

Re: [dev] surf rewrite for WebKit2GTK

2014-10-28 Thread Daniel Camolês
2014-10-28 21:38 GMT-02:00 M Farkas-Dyck : > On 28/10/2014, Daniel Camolês wrote: >> That's interesting, but there is a problem. How do you execute >> untrusted code? Maybe some kind of virtual machine? > > Thus, or in capability mode. Capability mode would require the

Re: [dev] surf rewrite for WebKit2GTK

2014-10-28 Thread Daniel Camolês
2014-10-28 12:01 GMT-02:00 M Farkas-Dyck : > On 25/10/2014, Daniel Camolês wrote: >> But when it comes to application >> distribution. By application distribution I mean, when we want to >> develop and maintain software in a central location and enable several >> use

Re: [dev] surf rewrite for WebKit2GTK

2014-10-25 Thread Daniel Camolês
2014-10-25 19:56 GMT-02:00 Wolfgang Corcoran-Mathe : >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. It doesn't need to be popular at first; it needs to be co

Re: [dev] surf rewrite for WebKit2GTK

2014-10-25 Thread Daniel Camolês
>> Am I alone? Is there any hope out there? > > TL;DR: Imho, there is none. W3c is the total opposite of suckless software. The problem is not with this specific organization. Design by committee is the source of the evil. Everybody wants to put a shiny new feature in there. Also, you never want t

  1   2   >