Re: [Semibug] LibreOffice is summing incorrectly

2024-05-18 Thread Jonathan Drews
On Sat, May 18, 2024 at 06:44:51PM -0600, Jonathan Drews wrote: > I got a big problem. If I sum the column of numbers in LibreOffice Iget > 43.81000 > 0.0 > 95.53000 > 21.9 > 18.9 > 37.72000 > 174.89000 > 16.73000 > 0.0 > 18.56000 > 0.0 &

[Semibug] LibreOffice is summing incorrectly

2024-05-18 Thread Jonathan Drews
I got a big problem. If I sum the column of numbers in LibreOffice Iget 43.81000 0.0 95.53000 21.9 18.9 37.72000 174.89000 16.73000 0.0 18.56000 0.0 423.02067 or rounded to two places 423.02 But if I add them up using dc then I get the correct answer: $ dc 2 k 43.81 95.53

Re: [Semibug] Show and Tell at GoLUG, 5/1/2024

2024-05-01 Thread Jonathan Drews
Steve: It was an interesting meeting but I couldn’t stay long On Wed, May 1, 2024, at 02:04, Steve Litt wrote: > Hi all, > > The Wednesday, 5/1/2024 GoLUG meeting commences at 7pm Eastern Daylight > Time online at meet.jit.si/golug . > > I'll be late because of my kids' birthday (this happens

Re: [Semibug] Help with Random Password Generator

2024-04-12 Thread Jonathan Drews
On Thu, Apr 11, 2024 at 05:54:43PM -0400, Nick Holland wrote: > > There's NOTHING random about time... sigh. > (granted, IIRC, srand and rand have a small input and output range, so ... it > isn't as bad as my initial reflexive puking would suggest) > > > to make it less deterministic ? Thanks

[Semibug] Help with Random Password Generator

2024-04-10 Thread Jonathan Drews
I get the following warning when I link the program RandomPasswdGen $ cc -Wall -c randpass.c $ cc randpass.o -o RandomPasswdGen randpass.c(randpass.o:(main)): warning: rand() may return deterministic values, is that what you want? How can I modify: