Re: [dev] Disk encryption

2022-06-22 Thread Antenore Gatta
ithub.com/kokke/tiny-AES-c [1] https://github.com/Oknolynx/luks2flt [2] https://github.com/xoros-repo/grub (just a mirror) [3] https://github.com/libvirt/libvirt -- Antenore Gatta

[dev] [st] XIM support and issues

2021-09-09 Thread Antenore Gatta
Hi all, More a rant than anything, but may be useful for someone else. TL;DR I've discovered that I needed to set XMODIFIERS=@im=ibus to have my US intl. (with dead keys) working properly. And the problem is not st, but the user (me). I feel a little bit less n00b, but still I'm puzzled about th

Re: [dev] [st] Blinking clock in ncmpcpp

2019-07-08 Thread Antenore Gatta
Hi Rasmus, On 7/8/19 1:33 PM, Rasmus Dahlberg wrote: Hi, I can confirm the flashing behavior for ranger's image preview as of commit e85b6b64660214121164ea97fb098eaa4935f7db. It appears that the added KeyReleaseMask causes this issue (or something depending on it). I've the problem on a prev

Re: [dev] [st] Blinking clock in ncmpcpp

2019-07-08 Thread Antenore Gatta
On 7/8/19 3:24 PM, Antenore Gatta wrote: Hi Rasmus, On 7/8/19 1:33 PM, Rasmus Dahlberg wrote: Hi, I can confirm the flashing behavior for ranger's image preview as of commit e85b6b64660214121164ea97fb098eaa4935f7db.  It appears that the added KeyReleaseMask causes this issue (or some

Re: [dev] [st] Blinking clock in ncmpcpp

2019-07-06 Thread Antenore Gatta
On 7/5/19 1:13 PM, Miekiv wrote: ‐‐‐ Original Message ‐‐‐ On Thursday, July 4, 2019 10:44 PM, Antenore Gatta wrote: > Well, it's probably because of a text property like  "very visible", > this one in particular is for the cursor, but I'm sure i

Re: [dev] [st] Blinking clock in ncmpcpp

2019-07-04 Thread Antenore Gatta
Hi Miekiv, On 04.07.19 22:56, Miekiv wrote: > Hi, recently I started using ncmpcpp on my arch linux machine as my > music player and noticed that the clock is blinking. I checked on > both vanilla st 0.8.2 and on the fork I use ( > https://gitlab.com/Matii/st ) and the blinking happens on both.

Re: [dev] GUIs

2019-06-05 Thread Antenore Gatta
On Wed, 22 May 2019 15:19:40 -0400 LM wrote: > By the way, nice job on the charfbuzz port. It would be great if it > wasn't completely necessary and more systems went with FreeType > without the circular dependency or started using stb_truetype.h. > There are a few GUI toolkits (like Nuklear) us

Re: [dev] Privilege escalation on remote hosts. MANY remote hosts.

2017-09-22 Thread Antenore Gatta
On Fri, 22 Sep 2017 23:15:35 +0200 Kamil Cholewiński wrote: > On Fri, 22 Sep 2017, Antenore Gatta wrote: > > Well, I hope it's what you are looking for. > > It's totally not, but I see where you're coming from :) > > You may want to look at Ansible Towe

Re: [dev] Privilege escalation on remote hosts. MANY remote hosts.

2017-09-22 Thread Antenore Gatta
Back to real life with a real keyboard and a real system!!! I keep the previous answer to have a context. On Fri, 22 Sep 2017 16:21:08 + Antenore wrote: > >Now back to PrivEsc, I actually found Antenore's suggestion > >inspiring. It would work if we could force only part of the command > >to

Re: [dev] [st] Exit upon attempting to render glyph

2017-08-09 Thread Antenore Gatta
On Wed, 9 Aug 2017 08:36:49 -0700 "David B. Lamkins" wrote: > \xf0\x9f\x96\x96\n I cannot reproduce it, which font are you using? Can you try to compile st with the default config.h and no patches? -- -BEGIN GEEK CODE BLOCK- Version: 3.12 GIT !d s: !a C++ UL P+++ L+++ E--- W+++ N+

Re: [dev] Suckless e-comerce script proposal

2016-09-22 Thread Antenore Gatta
On Thu, 22 Sep 2016 16:09:00 +0200 Kamil Cholewiński wrote: > In Poland, on most online shopping services, you click "pay with bank > transfer" at the checkout. Click the logo of your bank, get a redirect > to the bank's online transaction service, type in your user&pass, > review the transaction

Re: [dev] Shell style guide

2016-09-07 Thread Antenore Gatta
On Tue, 6 Sep 2016 11:35:35 -0700 Evan Gates wrote: > suckless.org projects have traditionally been small amounts of pure C. > The code tends towards simplicity and correctness. I value this and > have learned much over the past years from reading and contributing to > various projects. > > The

Re: [dev] Shell style guide

2016-09-07 Thread Antenore Gatta
On Wed, 7 Sep 2016 03:23:55 +0300 Adrian Grigore wrote: > What do you think of camelCase names for functions/variables? For me it's important being consistent, at least on a project level (across projects would be the best). I personally dislike camelCase but are good to save columns. -- ---

Re: [dev] Shell style guide

2016-09-06 Thread Antenore Gatta
On 09/06/16 22:14, Evan Gates wrote: >> This is sometimes true, but printf is not safe as well from that point >> > of view, >> > as it's a builtin as well in most shells. > It's not about builtin vs external, it's about surprises. Whether > printf if builtin or not, it will behave in a predictable

Re: [dev] Shell style guide

2016-09-06 Thread Antenore Gatta
My bad... Sorry for the mail format. On 09/06/16 22:09, Antenore Gatta wrote: > Hi Evan! > > Thanks for this, it's something I can finally be involved (at least I hope). > > On 09/06/16 20:35, Evan Gates wrote: > >> Shebang: Use #!/bin/sh and only use POSIX shell

Re: [dev] Shell style guide

2016-09-06 Thread Antenore Gatta
On 09/06/16 22:07, Evan Gates wrote: > On Tue, Sep 6, 2016 at 12:51 PM, Thomas Levine <_...@thomaslevine.com> wrote: >> Adherence to standards and legibility can be problematic if you care >> about >> portability to sucky systems and shells. For example, `...` is more >> widely >> supported than $(

Re: [dev] Shell style guide

2016-09-06 Thread Antenore Gatta
Hi Evan! Thanks for this, it's something I can finally be involved (at least I hope). On 09/06/16 20:35, Evan Gates wrote: > Shebang: Use #!/bin/sh and only use POSIX shell features. If you need > bash features use the proper shebang, either #!/path/to/bash or > #!/usr/bin/env bash I agree with

Re: [dev] Never Ending Systemd Chronicles

2016-08-20 Thread Antenore Gatta
Greetings to everybody, I'm a long time reader. It looks like we've just got another cherry [0] above our chocolate cake. Lennart has just released (committed about a day ago [1] ) an "amazing" new command, systemd-mount. The main feature is: > instead of executing the mount operation directly

Re: [dev] How to unsubscribe

2015-12-04 Thread Antenore Gatta
On Fri, 4 Dec 2015 10:28:57 +0200 Nick Raienko wrote: > unsubscribe > To unsubscribe you have to send an email to +unsubscr...@suckless.org, for example: dev+unsubscr...@suckless.org For more info: http://suckless.org/community -- -BEGIN GEEK CODE BLOCK- Version: 3.12 GIT !d s: !a

Re: [dev] unsuscribe

2015-11-12 Thread Antenore Gatta
For a suckless unsubscribe send an email to: dev+unsubscr...@suckless.org For more info: http://suckless.org/community On November 13, 2015 3:48:00 AM CET, Kinokoio wrote: >unsuscribe -- Sent from my Android device with K-9 Mail. Please excuse my brevity.

Re: [dev] [surf] [patch] 13 patches from my Universal Same-Origin Policy branch

2015-03-29 Thread Antenore Gatta
ect strange behaviours as highlighted by Dmitrij. -- Antenore Gatta

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Antenore Gatta
On 03/17/2015 09:37 PM, FRIGN wrote: = ls no (-C), -S, -f, -m, -s, -x = nl no -d, -f, -h, -p sortno -m, -o, -d, -f, -i = xargs no -I,

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Antenore Gatta
On 03/17/2015 09:03 PM, Dimitris Papastamos wrote: On Tue, Mar 17, 2015 at 05:54:42PM +0100, anten...@simbiosi.org wrote: Hi All, As promised find here after a patch that add the -i option to the cp command. As most of the code comes from OpenBSD, I'm not sure is suitable for suckless ( License

[dev][general] - Greetings & introduction

2015-03-17 Thread Antenore Gatta
Hi all, I'm Antenore Gatta, I have some experience in development and several years in other CS domains. I'm here to learn and I hope to pay back with some good and useful patches. At the moment, I'm mainly working on sbase and I'll submit, very very very soon, a patch