Re: [dev] Simpler WiFi alternatives

2023-05-13 Thread ssd
Hi, * Laslo Hunhold 2023-05-13 09:51 Even though I absolutely am for free speech and against censorship, especially self-censorship due to "political correctness" (slippery slope), what good is free speech when nobody listens? This happens both when there's little signal over noise and the

Re: [dev] Keyboard language/layout used with slock

2022-09-05 Thread ssd
Hi, * Benjamin Chausse 2022-09-04 23:39 Is there an existing elegant way to force slock to only use a certaint layout? My current best idea would be to used the failure-command patch to switch my layout after 1 incorrect password but this feels somewhat janky. slock man page says

Re: [dev] Let's talk about Go, baby

2019-01-30 Thread ssd
Hi, * Markus Wichmann 2019-01-30 20:13 > > Can you web development in C? > > You can, since you can do anything in C. But why would you want to? Web performance. (which translates to user experience and computational time these days, among others) I've heard that a large Chinese IT company

Re: [dev] suckless html to markdown (text)

2019-01-05 Thread ssd
I'm afraid pandoc won't be considered suckless by most of the list, but I would double Nick's recommendation: pandoc is the only tool that eventually worked reliably for my tasks. Escpecially in corporative environment, I appreciate that I can convert accross formats,even to docx and import to /

Re: [dev] What would a well-designed voice assistant program look like?

2018-03-24 Thread ssd
Laslo, * Laslo Hunhold 2018-03-24 13:00 > most of the deep learning folks don't know what the hell they're doing > and it will cost us big time in the near or far future. > Just throwing data at a problem you do not understand will get you > better results but won't solve the fundamental issue of

Re: [dev] What would a well-designed voice assistant program look like?

2018-03-24 Thread ssd
* Laslo Hunhold 2018-03-22 13:59 > When reflecting about a problem, it should be a priority to think about > how it can be split up. In this case, we can talk about two problems, > which combined, solve the "voice assistant" problem. > >1) voice recognition >2) assistant I'm sure that

Re: [dev] [st] Multiple monitors dpi autoswitch

2017-12-29 Thread ssd
Hi, I very rarely use both internal and external monitor simultaneously. I have a similar problem but with working on the internal (fine) XOR the external (coarse). It does not only affect st, but also browsers, dmenu, dwm status... I've tried setting the dpi with `zoom in` [1] when I plug

Re: [dev] [Announcement] slstatus

2017-09-08 Thread ssd
* Cág 2017-09-08 12:08 > i.e. a themeable panel that shows the output of a > script? dzen2? cheers --s

Re: [dev] pids for surf, webkit instances

2017-09-06 Thread ssd
or use lsw for a specific window: lsw | grep "some webpage title" | cut -f1 -d' ' | xargs xprop -id | grep PID

Re: [dev] Interesting Web Browser Decoupling Concept

2017-06-10 Thread ssd
> there are no interesting web browsers or web browser concepts. hiro just discovered a very interesting radical approach to fixing the web: if there were no web browsers, the web would be pointless and thus would not need to be fixed.

Re: [dev] [surf] freeze with gstreamer error

2017-05-30 Thread ssd
* Quentin Rameau 2017-05-30 18:27 > Yes, set MediaManualPlay to 1. > I think I'll push it as a default. useful, thanks to Quentin and Albert!

Re: [dev] surf+tabbed and session management

2017-04-15 Thread ssd
* hiro 2017-04-14 17:11 > personally i think tabs are stupid. there should be one url and title > per process. this! it's on my todo for long time now to come up with a clean and simple way to deal with stateful surf sessions (session being an arbitrary number, N, of current urls (and possibly

skala (was Re: [dev][all] Hello)

2017-04-03 Thread ssd
on a related note: TIL scala lang is getting ready to be adopted by serious suckless projects: http://www.scala-lang.org/blog/2017/04/01/announcing-skala.html --s

Re: [dev] [slock] [PATCH] Add option to show the password on the screen

2017-04-01 Thread ssd
* David Phillips 2017-04-01 06:42 > With slock's current behaviour, the user can become frustrated when they > suspect that they have made a typo in their password and are unable to > remember how many times to hit the backspace key to correct it. This patch Now that I see the date of the mail:

Re: [dev] [st] [PATCH 2/2] Keep end of lines in memory when resizing terminal

2017-03-29 Thread ssd
* Jochen Sprickerhof 2017-03-29 08:35 > I still ponder to write an experimental shell where input and output is > separated and where the last line is input and the rest is scrollable > output. Scrolling through the input history would give you the > corresponding output and all output would be

Re: [dev] [announce] wjt-0.1 - slider widget

2016-12-13 Thread ssd
* Ian Remmler 2016-12-13 02:42 > The two examples in the repo are what I'm using for volume I tried the volume example. It's really a beautiful thing! However, I don't see use for it for me here. I've bound keys to directly interact with brightness/volume and firing up additional tool to grab

Re: [dev] Shell style guide

2016-09-08 Thread ssd
* Marc Collin 2016-09-08 05:04 > What people here think of heredoc? > > cat << EOF > 1st line > 2nd line > 3rd line > 4th line > EOF is there a special reason people use `EOF` rather than anything else. FWIW, I use a dot. looks very clear and natural to me, saves some keystrokes, feels right,