Re: Localnet Hacking

2024-05-13 Thread Peter J. Philipp
On Tue, May 14, 2024 at 01:54:52AM +0200, Peter J. Philipp wrote: > Hi, > > A few more people responded, I'm falling behind on priorities though because > I am very close to cracking AES-128 I have reduced it to a complexity of > 2 ^ 64. However I have some old code to get the first 32 bits

Re: Localnet Hacking

2024-05-13 Thread Peter J. Philipp
On Sat, May 11, 2024 at 10:35:38AM +0200, Peter J. Philipp wrote: > On Sat, May 11, 2024 at 08:45:45AM +0200, Peter J. Philipp wrote: > > Contact me privately if you would like a batch with what you like. I'll > > make note on that webpage of what's given away. Offer ends July 1st of this > >

Wacom pen tip pressure

2024-05-13 Thread ruivlea
Hello, I tried to use wacom CTL-672, it works. Except pen tip pressure, As stated in man uwacom. On linux, pen tip pressure also not working if xf86-input-wacom not installed. In /src/sys/dev/hid/hidms.c: ... case HID_USAGE2(HUP_WACOM | HUP_DIGITIZERS, HUD_TIP_PRESSURE):

Re: What software to debugging and analyzing C?

2024-05-13 Thread Chris Bennett
On Mon, May 13, 2024 at 08:24:38AM +0200, Janne Johansson wrote: > pkg_add llvm and run "scan-build" on your code, then you get a quite > thorough analysis on what potential error code paths it detects, with > fancy webpages to go along with the explanations for each found issue: > >

Re: gmake compile of python3.12 crashes on openBSD 7.5 but not on openBSD 7.4

2024-05-13 Thread Stuart Henderson
On 2024-05-12, Sandeep Gupta wrote: > ./Tools/scripts/pydoc3 > build/scripts-3.12/pydoc3.12 > Illegal instruction (core dumped) > > I am unable to find a proper debugger into which to load the python.core > generated after core dump, so can't provide any useful debug info. pkg_add gdb and use

Re: https://twitter.com/openbsd

2024-05-13 Thread tux2bsd
On Sunday, May 12th, 2024 at 11:04 AM, T.J. Townsend > Wasting everyone's time by complaining on a mailing list that > we didn't post a tweet seems a little petty too. Anyway I just > blocked you from the OpenBSD account, so that should make life > easier for everyone going forward. Funny how

Re: What software to debugging and analyzing C?

2024-05-13 Thread Janne Johansson
> I found a YouTube channel LowLevelLearning that covers various > programming languages in a manner that I find particularly helpful and > clear. For example comparing C and assembly on the same code is superb. > > In a short, he recommended valgrind to help finding memory leaks. > Other than