Re: [ANN] Release 9.0.0

2018-04-05 Thread Richmond Mathewson via use-livecode
Over 'here' in "naughty" Bulgaria where I have the cheapest internet package available I found that LC 9.0 for Linux took 3 minutes to download . . . and that was absolutely fine. Ookla says that my download rate is 10.78 Mbps and my upload rate is 6.28 Mbps, which is super because I don't

Re: Guessing game

2018-04-05 Thread David Bovill via use-livecode
I guess I see your perspective. For me it’s totally the right and natural thing. It’s automatically reset at the end if the handler. Personally I’d go the other way and say that if the lock messages were set command calls trapped by anything above in the hierarchy should also not get executed. I

Re: Guessing game

2018-04-05 Thread Richard Gaskin via use-livecode
Yes, for the purposes it was designed for (stopping the triggering of system messages) the "lock messages" command is very useful. The problem with getProp and setProp is that those triggers occur in response to *custom* properties, not system properties. As originally implemented (and as

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
great news for me thank you. on top of that I can run 1 of these services on each core listening to a different port. thanks for the links to the benchmarks. On Thu, Apr 5, 2018 at 3:12 PM, Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Tom Glod wrote: > > > What

Re: Guessing game

2018-04-05 Thread Brian Milby via use-livecode
cREVGeneral is an example of where recursion would be a problem. In the common library there are getProp and setProp handlers that depend on lock messages. The handlers intercept the message and in some cases need to lock messages to get the system property before continuing (so a pass would not

Re: [OT, maybe] - configuring a Windows Installer for a Standalone

2018-04-05 Thread Trevor DeVore via use-livecode
On Wed, Apr 4, 2018 at 4:21 PM, Graham Samuel via use-livecode < use-livecode@lists.runrev.com> wrote: > > I’ve got a standalone which is cross-platform and works well on Mac and > PC. Unfortunately I’m having a lot of trouble with making a viable Windows > Installer, using the Inno system. All

AW: tsnet on Mac doesn't follows htaccess rewrite rule

2018-04-05 Thread Tiemo Hollmann TB via use-livecode
FYI: As far, as a short test showed, LiveCode is sending two different user agents (if you don't overwrite the http headers). User agent: "LiveCode (Win32)" and "LiveCode (MacOS)". So probably I will be at least able to redirect my Windows requests to another host. Tiemo -Ursprüngliche

Re: eBook Academy error

2018-04-05 Thread Andrew Bell via use-livecode
Well I took this as a chance to dip my toes in the GitHub waters. I created an account, signed my contributor agreement with LiveCode, and linked my GitHub to LiveCode. I made a commit (but no pull request) on docs/dictionary/object/videoClip.lcdoc and it was pretty painless ;) Can anyone

Re: eBook Academy error

2018-04-05 Thread panagiotis merakos via use-livecode
Hi Andrew, You might find that useful: https://github.com/livecode/livecode/blob/develop/CONTRIBUTING.md Best, Panos -- On Thu, Apr 5, 2018 at 2:33 PM, Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote: > Well I took this as a chance to dip my toes in the GitHub waters. I >

Re: [OT, maybe] - configuring a Windows Installer for a Standalone

2018-04-05 Thread Graham Samuel via use-livecode
Hmm, thanks for the discussion. I see that it is not a straightforward issue, and I am probably forced to get my hands dirty in the world of Windows. I am aching for a very simple set of step-by-step instructions, but of course that is not the job of anyone on this list! BTW, I am also asking

Re: tsnet on Mac doesn't follows htaccess rewrite rule

2018-04-05 Thread Bob Sneidar via use-livecode
oic user agent means something other than what I was thinking. For me an agent is a local listening process. Bob S > On Apr 5, 2018, at 02:16 , Tiemo Hollmann TB via use-livecode > wrote: > > FYI: As far, as a short test showed, LiveCode is sending two

commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
Hi folks, I wanted to benchmark the httpd library and decided to create a command line server application. I run it using "-ui" command ... and I use the "on Startup" message to print out a welcome message" thats all I have so far. But my executable process is using up 100% of the core .

Re: Zygodact queries

2018-04-05 Thread Graham Samuel via use-livecode
Sorry, I think it ended up on the list because I used the email address Jacque uses just for this list, as I copied it direct from a contribution by her. Still don’t quite understand though! As you say, it’s good info anyway. Graham > On 4 Apr 2018, at 23:54, J. Landman Gay via use-livecode >

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Hi folks, I wanted to benchmark the httpd library and decided to > create a command line server application. > > I run it using "-ui" command ... > > and I use the "on Startup" message to print out a welcome message" > > thats all I have so far. > > But my executable process is

Re: [ANN] Release 9.0.0

2018-04-05 Thread Mark Talluto via use-livecode
It is true that you paid for a 190Mbit connection. Not all servers will be able to saturate that size of a pipe. The amount a service can pump out will be based on many factors like level of network activity at that moment, health of the hops between you and the server, general network traffic

Re: [ANN] Release 9.0.0

2018-04-05 Thread Lagi Pittas via use-livecode
Hi Mark, I didn't think I was going to get it coming down in 20 seconds - only that what I have paid for and was getting for at least 3 months has gone down by from 190 to 40 MBits. It does mean though I can download from multiple sites at the same time without slowing down at the higher speed -

Re: [ANN] Release 9.0.0

2018-04-05 Thread Lagi Pittas via use-livecode
Hi I downloaded it in about 2 minutes - at 40MBits/s download . Which prompted me to check the speed. When I upgraded and paid extra it was 190MBits/s, so they are cheating me - need to find time to phone the ~@"£$ up and listen to some Chamber Musaq Lagi On 3 April 2018 at 14:01,

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Mark Wieder via use-livecode
On 04/05/2018 08:46 AM, Richard Gaskin via use-livecode wrote: You may try running the standalone with strace to see the system calls it's making:   strace ./mystandalone I don't think strace is on Windows. I'd recommend Process Lasso for seeing what's going on. https://bitsum.com/ But

Re: [OT, maybe] - configuring a Windows Installer for a Standalone

2018-04-05 Thread Bob Sneidar via use-livecode
Just poking around, a manifest is like a config file for the app. As I mentioned, your installer maker solution may have a way to configure one. If not, apparently there are solutions that allow you to post process your executable to include one. Also worth considering, in the Windows tab of

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
hi richard... the standalone opens fine when i don't use the -UI parameter. it opens up the blank stack and does nothingas its supposed to since there is no code anywhere doing anything. no library was modified...or even used. its a blank stack. the -ui flag puts it into the loop. I

Re: [OT, maybe] - configuring a Windows Installer for a Standalone

2018-04-05 Thread Graham Samuel via use-livecode
Woo! That looks promising! Will try it - have to go babysitting now, but soon enough… Thanks Graham > On 5 Apr 2018, at 15:46, Bob Sneidar via use-livecode > wrote: > > Just poking around, a manifest is like a config file for the app. As I > mentioned, your

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
thanks for those tools Mark. I just tested it again on a plain blank stack . make standalone .run with -ui flag .and its using going full tiltmaybe you can reproduce it? On Thu, Apr 5, 2018 at 12:16 PM, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > On

Re: [ANN] Release 9.0.0

2018-04-05 Thread Bob Sneidar via use-livecode
An internet speed test is the only reliable way to determine your actual ISP bandwidth at any given moment, and that only after making sure your local area network is not actively downloading or uploading anything, or at least anything significant. Throughput from a source can only tell you how

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
it was my goal to benchmark httpd ..but didn't get that far since it maxed out the cpu and didn't let up...then i took out httpd..still did that...and thats how i got to testing an entirely blank new stack. must be a windows thing. i will be running it on digital ocean ubuntu...so i',m

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > hi richard... the standalone opens fine when i don't use the -UI > parameter. it opens up the blank stack and does nothingas its > supposed to since there is no code anywhere doing anything. no library > was modified...or even used. If you're not using any libraries

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Tom Glod via use-livecode
What are the chances I will get similar performance using a stack and httpd to process http requests . as i would using lc server .. if the performance is similar, i feel more confident building using this form . i'm not producing HTML code . just passing encrypted arrays back and

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Richard Gaskin via use-livecode
Mark Wieder wrote: > On 04/05/2018 08:46 AM, Richard Gaskin via use-livecode wrote: > >> You may try running the standalone with strace to see the system >> calls it's making: >> >>strace ./mystandalone > > I don't think strace is on Windows. I'd recommend Process Lasso for > seeing what's

Re: commandine standalone using 100% of core on doing what?

2018-04-05 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > What are the chances I will get similar performance using a stack and > httpd to process http requests . as i would using lc server .. > if the performance is similar, i feel more confident building using > this form . i'm not producing HTML code . just passing