Search found 41 matches

by pureballs
Wed Feb 13, 2019 4:25 am
Forum: General Discussion
Topic: Cannot access new updates
Replies: 4
Views: 1973

Re: Cannot access new updates

this is not good for SEO :)
by pureballs
Fri Aug 19, 2011 10:40 am
Forum: Coding Questions
Topic: Has anyone benchmarked Atomic Webserver ?
Replies: 5
Views: 1379

Re: Has anyone benchmarked Atomic Webserver ?

Rich,

I am very interested in the code for this threaded server...

Does each request have its own thread, or do you use like 100 non blocking threads to split the workload ?

Most requests will be around 4k - 8k each
by pureballs
Thu Aug 18, 2011 11:06 pm
Forum: Coding Questions
Topic: Has anyone benchmarked Atomic Webserver ?
Replies: 5
Views: 1379

Re: Has anyone benchmarked Atomic Webserver ?

Fred wrote:Atomic web server is a small demo program, it's not intended to be used in production or benchmarked !
That's why I asked if anyone has impoved or extended the code to make it usable for production !
by pureballs
Thu Aug 18, 2011 10:22 pm
Forum: Coding Questions
Topic: Has anyone benchmarked Atomic Webserver ?
Replies: 5
Views: 1379

Has anyone benchmarked Atomic Webserver ?

I know it is small and simple...

Webservers like Hiawatha, NginX, Lighttpd are capable of serving 20.000 requests a second.

How does Atomic compare ? Is it real or pseudo non blocking ?

Has anyone improved or extended Atomic (withouth threads) to cope with huge amounts of traffic ?

Anyone ...
by pureballs
Thu Jun 03, 2010 2:23 pm
Forum: Coding Questions
Topic: I would like to integrate PHP as FastCGI on my PB server
Replies: 0
Views: 451

I would like to integrate PHP as FastCGI on my PB server

Does anybody know if a PHP PB Library could be created that would also work on PB Linux ?

:wink:
PureBalls.
by pureballs
Sun May 30, 2010 4:58 pm
Forum: Coding Questions
Topic: Rewriting Network Packets
Replies: 3
Views: 708

Re: Rewriting Network Packets

Are you saying AdMuncher works as a local proxy (proxomitron) ?
by pureballs
Sun May 30, 2010 2:56 pm
Forum: Coding Questions
Topic: Rewriting Network Packets
Replies: 3
Views: 708

Rewriting Network Packets

I'm trying to find out how I can rewrite networkpackets, to write an adblocker with PB.

I don't want to use the hostfile, or browserbased plugins... but something like this program :

http://www.admuncher.com/faq.shtml

Admuncher rewrites packets, as it works with all browsers, without installing ...
by pureballs
Tue May 25, 2010 5:46 pm
Forum: Coding Questions
Topic: Multithreaded http downloading ?
Replies: 4
Views: 1157

Re: Multithreaded http downloading ?

Captn. Jinguji wrote:Just had to use Urldownloadtofile_()
Urldownloadtofile_ uses Internet Explorer components, right ?

I prefer to use PB's buildin TCP for this, so I can change UserAgent fields etc... also because I'd like to use this on Linux...
by pureballs
Tue May 25, 2010 5:05 pm
Forum: Coding Questions
Topic: Multithreaded http downloading ?
Replies: 4
Views: 1157

Multithreaded http downloading ?

I'd like to create some code / component that would download a bundle of http links simultaneously, with 8 or 16 threads at once... has anyone managed to get something like that working already ?

Something like Wget, but parallel instead of serial.

Thanks in advance... :wink:
Pureballs.
by pureballs
Thu Oct 30, 2008 3:11 pm
Forum: Off Topic
Topic: In for a good laugh ? This site is hilairious !!!
Replies: 12
Views: 2084

by pureballs
Thu Oct 30, 2008 2:28 pm
Forum: Coding Questions
Topic: How do I improve the keyboard response for this code ?
Replies: 7
Views: 1729

srod wrote:Just add #WS_VSCROLL to your list of flags.
thanks...

used the wrong (#PB) flag.
by pureballs
Thu Oct 30, 2008 2:13 pm
Forum: Coding Questions
Topic: How do I improve the keyboard response for this code ?
Replies: 7
Views: 1729

Serious competition going on right here ! :D

Thanks... I knew it had to be the case select thing that I avoided from the start because I thought it would be faster !?!
What was I thinking ? :)

Now moving on to adding a Vscrollbar for the String Gadget... I have so many flags allready for that ...
by pureballs
Thu Oct 30, 2008 1:49 pm
Forum: Coding Questions
Topic: How do I improve the keyboard response for this code ?
Replies: 7
Views: 1729

How do I improve the keyboard response for this code ?

It's a kind of HTML editor, just type html and hit CTRL-S and CTRL-E to switch between edit and html view.


If OpenWindow(0, 0, 0, 600, 300, "CTRL-S for SHOW - CTRL-E for EDIT", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
WebGadget(0, 0, 0, 600, 300 ...
by pureballs
Thu Oct 30, 2008 1:28 pm
Forum: Coding Questions
Topic: Replacing system Clock
Replies: 14
Views: 2853

bit enhanced :

hwndTaskbar.l = FindWindow_("Shell_TrayWnd", "")
hwndTray.l = FindWindowEx_(hwndTaskbar, #Null, "TrayNotifyWnd", "")
hwndClock.l = FindWindowEx_(hwndTray, #Null, "TrayClockWClass", #Null)


If hwndClock
GetWindowRect_(hwndClock, r.RECT)
w=r\right - r\left
h=r\bottom ...