Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 132
» Latest member: Vicki Massey
» Forum threads: 122
» Forum posts: 923

Full Statistics

Latest Threads
Does PB progs run well in...
Forum: PowerBASIC for Windows
Last Post: Stanley Durham
06.08.2026, 12:42
» Replies: 6
» Views: 274
Where is pbusers.org?
Forum: This and that - friendly chat
Last Post: Kurt Kuzba
05.08.2026, 12:32
» Replies: 3
» Views: 86
Is PBUsers.org broken?
Forum: Suggestions and discussion about PUMP
Last Post: Dale Yarker
04.08.2026, 21:35
» Replies: 2
» Views: 83
FFTW - Attn Dan Soper
Forum: Programming
Last Post: Dan Soper
20.05.2026, 12:31
» Replies: 1
» Views: 629
Discussions
Forum: JKB (32/64 bit Compiler)
Last Post: Albert Richheimer
27.04.2026, 19:42
» Replies: 9
» Views: 2,532
Announcements for updates
Forum: JKB (32/64 bit Compiler)
Last Post: Juergen Kuehlwein
27.04.2026, 14:26
» Replies: 1
» Views: 1,087
Enter PIN popup dialog in...
Forum: Source Code Library
Last Post: Dale Yarker
23.04.2026, 16:54
» Replies: 0
» Views: 526
Sounds good!
Forum: JKB (32/64 bit Compiler)
Last Post: Dale Yarker
13.04.2026, 02:54
» Replies: 0
» Views: 639
What is different
Forum: JKB (32/64 bit Compiler)
Last Post: Juergen Kuehlwein
12.04.2026, 14:43
» Replies: 0
» Views: 700
How to run own code
Forum: JKB (32/64 bit Compiler)
Last Post: Juergen Kuehlwein
12.04.2026, 14:08
» Replies: 0
» Views: 689

 
  Happy holidays to all of us...
Posted by: Mimmo Labate - 24.12.2025, 15:00 - Forum: This and that - friendly chat - Replies (5)

I would like to wish Albert Richheimer,  who created this meeting place and who hosts us with his generosity, a Merry Christmas, as well as everyone here in various capacities. I trust that the new year will bring health accompanied by serenity. Warm regards and best wishes from the bottom of my heart.
Mimmo

Print this item

  Microsoft to Replace All C/C++ Code With Rust by 2030
Posted by: Stanley Durham - 23.12.2025, 09:24 - Forum: This and that - friendly chat - Replies (1)

“My goal is to eliminate every line of C and C++ from Microsoft by 2030,” Microsoft Distinguished Engineer Galen Hunt writes in a post on LinkedIn. “Our strategy is to combine AI and Algorithms to rewrite Microsoft’s largest codebases. Our North Star is ‘1 engineer, 1 month, 1 million lines of code.’ To accomplish this previously unimaginable task, we’ve built a powerful code processing infrastructure. Our algorithmic infrastructure creates a scalable graph over source code at scale. Our AI processing infrastructure then enables us to apply AI agents, guided by algorithms, to make code modifications at scale. The core of this infrastructure is already operating at scale on problems such as code understanding.”

https://www.thurrott.com/dev/330980/micr...st-by-2030

Print this item

  "Unread-Posts Sign" re-appears
Posted by: Albert Richheimer - 16.12.2025, 08:37 - Forum: Suggestions and discussion about PUMP - Replies (7)

Hi @all

Dale Yarker has pointed out that from time to time the "unread posts sign", a black disc, re-appears, although there are no new postings in the affected subforums.

Has anyone else noticed this strange phenomenon?

Cheers,
Albert

Print this item

  Issue with MalwareBytes Account Log-In
Posted by: Frank Ferrell - 28.11.2025, 07:34 - Forum: This and that - friendly chat - Replies (1)

Greetings and Belated Thanksgiving Greetings ...

Do we have any users of MalwareBytes Anti-Virus/Malware here?

If yes, and if you are currently using a premium subscription, then I ask if you may have tried to access your online account within the last two or three days.

Here's my situation ....

I already have MalwareBytes Premium on my desktop, and I now desire to add the current subscription to a 2nd device, in this case a laptop.

This morning (Thursday AM in the USA) I properly entered my e-mail and account password, then immediately got the message to check my e-mail for a 6-digit verifier message. However, the verifier message did not immediately arrive in my inbox, and would not arrive for three to five minutes. When the verifier message finally appeared, I entered the 6-digit verifier and got the "INVALID" response. This same thing happened again about three more times. BTW, each time the verifier message always went to the inbox, never to Spam or any other folder.

I will most likely not attempt the process again until sometime tomorrow. Meantime, I would interested to know if anyone else might be experiencing this same problem.

Thanx-A-Lotte, Frank

Print this item

  Posts here
Posted by: Dale Yarker - 25.11.2025, 16:54 - Forum: Suggestions and discussion about PUMP - Replies (2)

seemed to have stopped completely.
I still check a couple times a day. I suspect some others do too.
If you haven't switched to new PB forum, you can discuss or question here, and someone will see it.

Cheers,

Print this item

  Having problems with pbusers.org
Posted by: Brian Alvarez - 20.10.2025, 03:14 - Forum: This and that - friendly chat - Replies (3)

Is it only me? it sometimes displays the forums list and then times out when opening some threads.

Print this item

  How to run PB progs in Linux
Posted by: Mannish Bhandari - 19.10.2025, 22:27 - Forum: PowerBASIC for Windows - Replies (13)

I heard so many terrible stories about upgrading to Windows 11 I'm now interested to use Linux instead and I want to be able to run my PB 
progs in Linux.  how to do this ?

Print this item

  READ$/Data Slow
Posted by: Brent F Boshart - 11.10.2025, 00:55 - Forum: PowerBASIC for Windows - Replies (4)

I have some data that I want to keep embedded in the code instead of an external file.  This takes about 4 seconds to execute (the routines formatStarRA, formatStarDec and J2000Topo only account for about 0.3 seconds).  I could make each line (element) one string padding with spaces and then using mid$ to parse it out. That would be 2400 READ$ instead of 2400*11.   Any other suggestions to speed this up? 




FUNCTION DoubleStarLoad AS LONG
    LOCAL t AS LONG
    LOCAL tempRA, TempDec AS DOUBLE, dummy AS STRING

    FOR t= 0 TO 2399
        DoubleStarData(t).CST=READ$((t)*11+1)
        DoubleStarData(t).ObjName=READ$((t)*11+2)
        DoubleStarData(t).SAO=READ$((t)*11+3)
        tempRA=formatStarRA(READ$((t)*11+4))
        tempDec=formatStarDec(READ$((t)*11+5))
        J2000Topo(tempRA,tempDec)
        DoubleStarData(t).RA=tempRA
        DoubleStarData(t).Dec=tempDec
        DoubleStarData(t).Magnitude1=READ$(t*11+6)
        DoubleStarData(t).Magnitude2=READ$(t*11+7)
        DoubleStarData(t).Spectral=READ$(t*11+9)
        DoubleStarData(t).Distance=VAL(READ$(t*11+10))
        DoubleStarData(t).Separation=READ$(t*11+11)
    NEXT t

    DATA "Aqr","1 Aqr","126062","20:39:25","+00:29:11","5.27","12.3","7.03","K0III","71.48","65"
    DATA "Ari","1 Ari","74966","01:49:50","+22:15:45","16","17","1","M3.7+M4.2","","17.5"
    DATA "Ari","1 Ari","74966","01:50:09","+22:16:30","6.33","7.21","0.88","G3III","179.53","2.9"
    DATA "Boo","1 Boo","82942","13:40:40","+19:57:20","5.76","9.6","3.84","A1V","100.6","4.4"
    DATA "Cam","1 Cam","24672","04:32:02","+53:54:39","5.78","6.82","1.04","B0III","217.39","10.4"
    DATA "Del","1 Del","106172","20:30:18","+10:53:45","6.2","8.02","1.82","Be+B","227.79","0.9"
    DATA "Dra","1 Dra","15532","11:31:07","+69:24:00","14.3","14.8","0.5","","","1.2"
    ....

END FUNCTION

Print this item

  Arduino users news
Posted by: Jules Marchildon - 10.10.2025, 03:58 - Forum: This and that - friendly chat - Replies (9)

Couple days ago...

https://www.qualcomm.com/news/releases/2...ccess-to-i

..not sure if any other PB users use this platform?  90% of my projects have a USB/Serial Arduino link to a PB GUI application.

https://www.hackster.io/news/qualcomm-ac...d91d83e890

Print this item

  7zip alternatives ?
Posted by: Johan Klassen - 08.10.2025, 08:10 - Forum: This and that - friendly chat - Replies (4)

I noticed that when I was 7zip compressing a 300GB folder the CPU would stay very close to 100% and the CPU temperature was about 70c
I don't want to burn-up my CPU!
I don't want to run the CPU this high for hours on end, 50% usage and 50c is reasonable, any 7zip alternatives recommendations ?

Print this item