Search found 9 matches

by Azias
Sat Oct 04, 2025 11:08 am
Forum: Coding Questions
Topic: Unable to do concurent threaded FastCGI
Replies: 0
Views: 1041

Unable to do concurent threaded FastCGI

Hello,

I've recently tried playing around with the standard FastCGI APIs for a project, but it looks like I can't get it to work in "threaded" mode where multiple threads can handle long requests simultaneously.

https://i.imgur.com/YTUhEwt.png

When I start X threads starting from a port Y that ...
by Azias
Thu Mar 06, 2025 8:33 pm
Forum: General Discussion
Topic: Problem compiling aziascreations/PB-ListComPort project
Replies: 3
Views: 1205

Re: Problem compiling aziascreations/PB-ListComPort project

Hello Indy, welcome the the PureBasic community :D

I took a look at your issue and pushed a fix to the repository with the 2.1.1 tag.
I was able to compile it with the following compilers without any issue:
* 5.73 LTS x64
* 6.11 LTS x64
* 6.11 LTS x64 C Backend

As mk-soft stated, the macros ...
by Azias
Sun Jun 27, 2021 6:01 pm
Forum: Applications - Feedback and Discussion
Topic: [Application] ListComPort - A simple COM port lister
Replies: 0
Views: 4559

[Application] ListComPort - A simple COM port lister

Hi,

I've recently been working quite a bit with microcontrollers, and I've noticed how annoying it can sometime be to find the relevant COM port for a new device in Windows straight from the command prompt, so I made a small application that combines the port listing capabilities of the mode ...
by Azias
Fri May 22, 2020 5:13 pm
Forum: Coding Questions
Topic: [Win32API] Field alignement in win32api structure
Replies: 2
Views: 1080

Re: [Win32API] Field alignement in win32api structure

I didn't give my include with the macros for the data types since i didn't think you would try to compile it.
And I also missed the constant after the align.

Here is the full preprocessed code:

#DOT11_SSID_MAX_LENGTH = 32

#DOT11_RATE_SET_MAX_LENGTH = 126

Structure DOT11_SSID
uSSIDLength.l ...
by Azias
Fri May 22, 2020 3:55 pm
Forum: Coding Questions
Topic: [Win32API] Field alignement in win32api structure
Replies: 2
Views: 1080

[Win32API] Field alignement in win32api structure

Hello,

I'm currently playing around with the win32api and I encountered a tiny problem while I was defining the WLAN_BSS_ENTRY structure.

When I did a "SizeOf()" on it in purebasic, it returned 351 instead of 360, which I got in Visual Studio, and after a bit of digging I learned about alignement ...
by Azias
Fri May 22, 2020 1:06 pm
Forum: Tricks 'n' Tips
Topic: [Template] Synchronous Threaded Worker
Replies: 0
Views: 1322

[Template] Synchronous Threaded Worker

Hello,

I recently needed to play with threaded workers and after I finished cleaning up some old code I thought it could be made into a template, so here it is.

Just keep in mind that this may not be the most optimal way to go about doing threaded workers, but it helps you navigate around some ...
by Azias
Tue Jun 11, 2019 4:27 am
Forum: Tricks 'n' Tips
Topic: [Include] Endianness swapper using assembly
Replies: 1
Views: 1526

[Include] Endianness swapper using assembly

Hi,

I was recently playing around with some file formats where I needed to swap endianness, and I noticed that there was only one solution for longs posted here by djes so I made an include that supports every integer types.
A nibble swapper for bytes and ascii types is also included.

;{- Code ...
by Azias
Sun Mar 03, 2019 3:57 pm
Forum: Bugs - IDE
Topic: Non-standard characters in computer's name can break project
Replies: 0
Views: 1244

Non-standard characters in computer's name can break project

System Info:
Windows 10 1709 x64 VM
Purebasic 5.70 LTS x64

Problem Encountered:
When using non-standard characters in the computer name and saving a PureBasic project, the project file becomes impossible to open unless you manually go into the file and delete the text in " project > section ...
by Azias
Sat Apr 21, 2018 10:37 am
Forum: Tricks 'n' Tips
Topic: AeroShot (PB-Edition)
Replies: 22
Views: 8321

Re: AeroShot (PB-Edition)

Nice !
I wish I had this tool when I was taking screenshots for some old projects :)

I would just like to suggest something.
Since it's working with windows you could put the icons in the list like this:

https://i.imgur.com/7WxtofQ.png

You would just have to change 2 lines:

;~L24 ...