Re: OpenBSD insecurity rumors from isopenbsdsecu.re

2020-05-13 Thread Paul Wisehart
On Tue, May 12, 2020 at 05:09:16AM +0200, i...@aulix.com wrote: > Treat it as my secret, I want and that is why I ask because I can, I wish you > tell me the answer without a knowledge of "why I ask", > it is a very long discussion of answering by a question to question in your > Jewish style, is

Re: HTTPD directory index

2019-10-17 Thread paul wisehart
On Wed, Oct 16, 2019 at 08:17:38AM -, Stuart Henderson wrote: > On 2019-10-13, Patrick Dohman wrote: > > Hoping to clarify if OpenBSD HTTPD supports index.html & index.php > > simultaneously? > > From a quick look at manual and code (I don't use httpd other than for > testing) - you can set

Re: Requesting vi tips

2019-10-18 Thread paul wisehart
On Fri, Oct 18, 2019 at 03:12:37PM +0100, cho...@jtan.com wrote: > but I wonder if there's something that can correctly parse the > whole email and format the entire thing en masse :%!fmt -s

midiplay and FAQ ?

2019-12-28 Thread Paul Wisehart
I'm on a recently upgraded OpenBSD 6.6 machine. I'm reading about midiplay here: https://www.openbsd.org/faq/faq13.html#midi There is no midiplay command on the machine, but there is on a 6.5 machine. In the man view for midiplay the last entry is at 6.4r: https://man.openbsd.org/OpenBSD-6.4/mid

Re: midiplay and FAQ ?

2019-12-30 Thread Paul Wisehart
On Mon, Dec 30, 2019 at 08:34:45AM +0100, Bodie wrote: > > > On 28.12.2019 20:25, Paul Wisehart wrote: > > I'm on a recently upgraded OpenBSD 6.6 machine. > > > > I'm reading about midiplay here: > > https://www.openbsd.org/faq/faq13.html#midi &

Re: Suggestion: Replace Perl with Lua in the OpenBSD Base System

2019-12-31 Thread Paul Wisehart
On Tue, Dec 31, 2019 at 02:02:47PM -0500, Raul Miller wrote: > tar zxf src.tar.gz > find . -type f -name '*.*' | sed 's/^.*\.//' | sort | uniq -c | sort > -n | tail -40 That was fun, I learned about the -n option :) Thanks! wise@hup:/usr/src$ find . -type f -name '*.*' | sed 's/^.*\.//' | sort |

Re: perl popularity inside openbsd community? (Re: Suggestion: Replace Perl ...)

2020-01-02 Thread Paul Wisehart
On Thu, Jan 02, 2020 at 09:12:42PM +0100, Marc Espie wrote: > > Here are my current guidelines for OpenBSD perl tools. > Can you eleborate in greater detail?

Re: Debug Tool for golang

2019-05-31 Thread paul wisehart
On Fri, May 31, 2019 at 01:11:41PM +0100, Kevin Chadwick wrote: > It seems delve which is suggested by golang.org due to optimised binary > support > expects a Linux /proc and Linux threads (FreeBSD delve github issue tracker). > So > I guess without delve then building unoptimised binaries would

lenovo thinkpoad with nvidia and intel graphics?

2019-07-10 Thread paul wisehart
Hi, I have been windowshopping for a T440p or t540p thinkpad. I try to find a version that uses the intel graphics chipset, but it seems most have nividia and intel. My question is, does anyone know or have experience using a laptop like this, and disabling the nvidia chipset? If the nvidia chip

Re: lenovo thinkpoad with nvidia and intel graphics?

2019-07-11 Thread paul wisehart
Thanks! That's very helpful :) On Wed, Jul 10, 2019 at 06:14:33PM +0100, Tommi Pernila wrote: > On Wed, 10 Jul 2019 at 16.45, Matthew Graybosch > > I have a T430s with both Intel integrated graphics and discrete NVidia > > graphics. I disabled the latter at the BIOS level since Xenocara > > doesn

Re: httpd.conf Dokuwiki

2021-11-07 Thread Paul Wisehart
location match "/kb/bin/" { > block drop > } > location match "/kb/inc/" { > block drop > } > location match "/kb/vendor/" { > block drop > } > } > Can you say more, like what's not working? I put my .well-known/acme-challenge stanzas in the non https part of the httpd.conf. -- Paul Wisehart

forum software recommend?

2021-11-10 Thread Paul Wisehart
Hi!, Does anyone recommend a forum software that works well with OpenBSD/httpd? I installed phpBB, and it seems fine, but I figured I'd ask here before forging ahead. Thanks!, -- Paul Wisehart

Re: Issues with NFS and LibreOffice: Support for NFS v4 and Locking Solutions

2025-06-06 Thread Paul Wisehart
Misc: UseLocking so its Value turns to false. -- paul wisehart

Re: Future of Xenocara

2025-07-04 Thread Paul Wisehart
On Fri, Jul 04, 2025 at 02:19:30AM +0200, Emiel Kollof wrote: > I skipped it because it is irrelevant. > You're irrelevant. Sick burn, unrecoverable.

Re: program to indent C code?

2025-07-23 Thread Paul Wisehart
outside of the editor. You can also do it in emacs with 'shell-command-on-region. I have used emacs as a filter to indent lisp code, I suppose I could do the same thing for C code... https://codeberg.org/pkw/emacs-scripts/src/branch/main/indent-filter.el -- Paul Wisehart

Re: program to indent C code?

2025-07-23 Thread Paul Wisehart
tried astyle and it also chokes on the nested parens and array literls. (but knfmt doesn't) thanks, -- Paul Wisehart

program to indent C code?

2025-07-23 Thread Paul Wisehart
ndent' which is great, BUT it chokes on more cryptic stuff like nested parens, and array literals. Do other OpenBSD C programmers use code formatters? What do they use? Should I just be more comfortable formatting my code as I type? Thanks!, -- Paul Wisehart

Re: Resources to learn modern C relevant to OpenBSD

2025-07-29 Thread Paul Wisehart
On Tue, Jul 29, 2025 at 03:19:40AM -0700, Neel Chakraborty wrote: > Hello everyone, hope you're having a great day. I am looking for > resources to learn modern C, so that I can understand (and hopefully > someday contribute) to the OpenBSD source code, in areas like device > drivers, kernel and th