Search found 880 matches

by HeX0R
Sun Nov 19, 2023 10:16 am
Forum: Tricks 'n' Tips
Topic: libcurl.pbi
Replies: 56
Views: 8645

Re: libcurl.pbi

so the pop3 match between infratec and HeX0R ended-up with 1:1 :mrgreen:
by HeX0R
Sat Nov 18, 2023 9:19 pm
Forum: Game Programming
Topic: Draw image to screen with transparency
Replies: 9
Views: 899

Re: Draw image to screen with transparency

change to

Code: Select all

OpenWindowedScreen(WindowID(0), 0, 0, WindowWidth(0) * DesktopResolutionX(), WindowHeight(0) * DesktopResolutionY(), #False, 0, 0, #PB_Screen_WaitSynchronization)
and enable DPI awareness in compiler options
by HeX0R
Sat Nov 18, 2023 8:52 pm
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

I made some improvements.
Tested it successfully with my gmail and my gmx account.
by HeX0R
Sat Nov 18, 2023 2:23 pm
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

by HeX0R
Sat Nov 18, 2023 11:10 am
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

I've added a warning popup to the example, when TLS is not active.
by HeX0R
Sat Nov 18, 2023 10:58 am
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

For me it works with name@gmail.com and the app password. Using the main password will end-up with unknown username/password. Make sure to have the libtls.dll, if it is not found, the example will not tell you about it, but it would end-up in "Unknown username!", because it is using non-TL...
by HeX0R
Fri Nov 17, 2023 10:29 pm
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

o.k., I made it work with gmail, app password and the TLS.pbi I was talking about. Code updated. This is a proof of concept, it can freeze when looking into mails. Fixing that has not very high priority on my todo list, so don't expect fixes anytime soon. Take it, improve it, or leave it. (But be wa...
by HeX0R
Fri Nov 17, 2023 8:59 pm
Forum: Feature Requests and Wishlists
Topic: Fast string
Replies: 67
Views: 47689

Re: Fast string

There are plenty of such threads now, here e.g.:
viewtopic.php?t=80831
by HeX0R
Fri Nov 17, 2023 6:08 pm
Forum: Coding Questions
Topic: Underscore naming convention
Replies: 13
Views: 721

Re: Underscore naming convention

I apologise for picking your particular code HeX0R, amongst many others, but I'd started to ask the question in Barry's topic and then thought no, I shouldn't hijack his topic :? so created a new one instead. No need to apologize, this was a valid question. Regarding your example with my own code, ...
by HeX0R
Fri Nov 17, 2023 3:45 pm
Forum: Coding Questions
Topic: Underscore naming convention
Replies: 13
Views: 721

Re: Underscore naming convention

I personally use it for internal procedures and internal structures.
Especially in modules.
But as said, this is more something coming from the deepest (and darkest) place of my brain, there is no real reason for that :mrgreen:
by HeX0R
Fri Nov 17, 2023 12:56 pm
Forum: Tricks 'n' Tips
Topic: POP3 Include (crossplatform)
Replies: 53
Views: 21919

Re: POP3 Include (crossplatform)

@Hexor: Any way to update this to use SSL, so it can be used with Gmail? Or does anyone else know how to do it? I must admit, I had no more use for this, but I could imagine it might work with the help of the TLS include . Maybe, in some future, I'll look into it. libcurl doesn't contain any mail p...
by HeX0R
Sun Nov 12, 2023 8:23 pm
Forum: Bugs - IDE
Topic: [Done] Editor slow
Replies: 94
Views: 9832

Re: Editor slow

That might have something to do with high dpi mice and their polling rate?
I just recognized the same behaviour, when reducing the polling rate from 1000Hz to 125Hz, the window can be moved flawlessly.
It worked from 125Hz up to 500Hz, but at 1000Hz the pref. window moving feels quite laggy.
by HeX0R
Fri Nov 10, 2023 8:14 pm
Forum: Off Topic
Topic: Time Travel
Replies: 3
Views: 722

Re: Time Travel

I would have expected off-topic themes to have finally disappeared from coder forums.
by HeX0R
Fri Nov 10, 2023 8:00 pm
Forum: Coding Questions
Topic: #PB_Unicode and #PB_UTF8 choices in network transmission
Replies: 8
Views: 422

Re: #PB_Unicode and #PB_UTF8 choices in network transmission

I never had to deal with such characters myself, but look at this
by HeX0R
Fri Nov 10, 2023 6:00 pm
Forum: Coding Questions
Topic: #PB_Unicode and #PB_UTF8 choices in network transmission
Replies: 8
Views: 422

Re: #PB_Unicode and #PB_UTF8 choices in network transmission

Yes, sorry, there was no clear question, only one, were you said, it is not important, therefore I just answered "something" :mrgreen: PB uses unicode strings internally, therefore it's clear that PokeS/PeekS uses unicode by default. I guess it is much easier and faster to handle fixed cha...