Re: [ANN] Release 9.6.2 RC-2

2021-01-12 Thread chaplais via use-livecode
I have gone through this too . The most difficult was the change of OS. Also, 
Apple had not ported MPW to the PPC, which led to the success of Metrowerks  
CodeWarrior.
I stil have a compiler by them for BeOs on PPC.
This does not really make me feel younger.
Le 12 janv. 2021 à 19:13 +0100, Richard Gaskin via use-livecode 
, a écrit :
> Bob Sneidar wrote:
>
> > Up until the time Apple decides everything has to be M1, at which
> > support for Rosetta is withdrawn. The question is, how long do Intel
> > apps have to live? Deja Vu all over again. (see what I did there?)
>
> We've been here before...
>
> 68k -> PPC
> Classic -> OS X
> PPC -> Intel
> 32-bit -> 64-bit
>
> Adding:
> Intel -> M1
> ...is just another day in Appleland.
>
> The engine has been carried forward well through all those changes, I'm
> not worried about this latest one.
>
> --
> Richard Gaskin
> Fourth World Systems
> Software Design and Development for the Desktop, Mobile, and the Web
> 
> ambassa...@fourthworld.com http://www.FourthWorld.com
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Contesting for Idiot du Jour

2020-09-03 Thread chaplais via use-livecode
There is no simple way, because the infinitesimal area is polar coordinates is 
r dr dtheta where r is the radius and theta is the angle.
More intuitively, the farther you are from the center, the smaller the angle 
that covers a fixed size pixel becomes.
All the best,
François
Le 3 sept. 2020 à 19:22 +0200, Roger Guay via use-livecode 
, a écrit :
> Or to put it simply, how would one select random point (e.g. in a circle) 
> using Polar Coordinates??
>
> Roger
>
> > On Sep 3, 2020, at 8:17 AM, Roger Guay via use-livecode 
> >  wrote:
> >
> > Jerry,
> >
> > You’ve done a very nice job of describing what’s actually(?) happening in 
> > my code, but I think you missed the point of my question.
> > You agree that if you simply sample random pixels then the ratio of a 
> > random pick inside the smaller circle will depend on the area of the 
> > circles.
> > And, if I pick a random x and y within the concentric circles of radius R 
> > and 2R, ¼ of the time they will lie in the smaller circle and ¾ of the time 
> > in the bigger.
> > So, pick any random x and y and convert to radial coordinates. Everything 
> > should work!
> > In my code I pick a random angle and a random radius (radial coordinates) 
> > within the limits of the larger circle, thus picking random points within 
> > the area of the larger circle, yet I get ½ (which you say is the right 
> > answer).
> > My intent was to pick random points (using radial coordinates) for which 
> > the result should be ¼!
> >
> > What’s wrong with my code?
> >
> > Thanks,
> >
> > Roger
> >
> > > On Sep 2, 2020, at 8:27 PM, Jerry Jensen via use-livecode 
> > >  wrote:
> > >
> > > 1/2 is the right answer.
> > >
> > > Take your drawing of the circles. Cut a veyy thin radial slice from 
> > > the center to the outside circle. So thin that it is just a line.
> > >
> > > Now think of how likely a random point on that line will be in the part 
> > > of the line that was in the smaller circle. The part that was from the 
> > > smaller circle is HALF as long as the entire line.
> > >
> > > Now add up all the possible positions of that line. Why would that change 
> > > the answer?
> > >
> > > Congratulations, you understand integrals!
> > > .Jerry
> > >
> > > > On Sep 2, 2020, at 7:38 PM, Roger Guay via use-livecode 
> > > >  wrote:
> > > >
> > > > Your chance to be Genius du Jour:
> > > >
> > > > If I construct 2 concentric circles, one being half the radius of the 
> > > > larger, then simple math shows that the smaller circle has an area ¼ 
> > > > the area of the larger.
> > > > Now if I generate a random point within the radius of the larger 
> > > > circle, I should expect that the probability of it landing in the 
> > > > smaller circle to be ¼.
> > > > But, I must be doing something wrong because I get ½ !
> > > >
> > > > Here is my script:
> > > >
> > > > on mouseDown
> > > >
> > > > getStuff
> > > >
> > > > end mouseDown
> > > >
> > > >
> > > > local tR, tTheta, tX0, tY0, tX1, tY1, tTotCount, tL, tLongCount
> > > >
> > > > on getStuff
> > > >
> > > > put item 1 of the loc of grc OuterCircle into tx0
> > > >
> > > > put item 2 of the loc of grc OuterCircle into tY0
> > > >
> > > > put "" into tTotCount
> > > >
> > > > put "" into tLongCount
> > > >
> > > > emptyFlds
> > > >
> > > > end getStuff
> > > >
> > > >
> > > > on mouseUp
> > > >
> > > > lock screen
> > > >
> > > > repeat 1000
> > > >
> > > > put random(200) into tR -- 200 is half the width of the larger circle
> > > >
> > > > if tR > 1 then
> > > >
> > > > ## put random(2*pi) into tTheta1
> > > >
> > > > get random(360)
> > > >
> > > > put it*pi/180 into tTheta1
> > > >
> > > > put tR*cos(tTheta1) into tX1
> > > > put tR*sin(tTheta1) into tY1
> > > >
> > > > set the loc of grc Ptgrc to tX0 + tX1, tY0 - tY1 --- grc Ptgrc is a 2 
> > > > pixle oval
> > > >
> > > > if intersect(grc Ptgrc, grc InnerCircle, "opaque Pixels") then add 1 to 
> > > > tLongCount
> > > >
> > > > add 1 to tTotCount
> > > >
> > > > end if
> > > >
> > > > end repeat
> > > > put tTotCount into fld "totcountFld"
> > > >
> > > > put tLongCount into fld “LongCountFld"
> > > >
> > > > put tLongCount/tTotCount into fld "RatioFld"
> > > >
> > > > unlock screen
> > > >
> > > > end mouseUp
> > > >
> > > >
> > > > Apparently, this does not generate a random point within the larger 
> > > > circle! Can someone please tell me what’s wrong here?
> > > >
> > > > Thanks,
> > > > Roger
> > > > ___
> > > > use-livecode mailing list
> > > > use-livecode@lists.runrev.com
> > > > Please visit this url to subscribe, unsubscribe and manage your 
> > > > subscription preferences:
> > > > http://lists.runrev.com/mailman/listinfo/use-livecode
> > >
> > >
> > > ___
> > > use-livecode mailing list
> > > use-livecode@lists.runrev.com
> > > Please visit this url to subscribe, unsubscribe and manage your 
> > > subscription preferences:
> > > http://lists.runrev.com/mailman

Re: can you read this

2018-10-12 Thread François Chaplais via use-livecode
I can see you

> Le 11 oct. 2018 à 18:23, JJS via use-livecode  
> a écrit :
> 
> wow, that's the first time i can see it myself too.
> 
> All other replies were rejected somehow.
> 
> 
> Ciao! Sphere.
> 
> 
> Op 11-10-2018 om 18:21 schreef JJS via use-livecode:
>> can you read this?
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Test

2018-09-18 Thread François Chaplais via use-livecode
gotcha :)
> Le 18 sept. 2018 à 21:18, Clarence Martin via use-livecode 
>  a écrit :
> 
> This is a test because I can’t seem to send anything to the list.
> 
> Sent from Mail for Windows 10
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Feature Race: Pick Your Project

2017-07-06 Thread François Chaplais via use-livecode
It seems to be fixed now. I was able to pay an hour ago (or so)
François
> Le 6 juil. 2017 à 21:41, Matthias Rebbe via use-livecode 
>  a écrit :
> 
> Same here. 
> Matthias Rebbe
> +49 5741 31
> ‌matthiasrebbe.eu <http://matthiasrebbe.eu/>‌
> 
>> Am 06.07.2017 um 21:37 schrieb François Chaplais via use-livecode 
>> mailto:use-livecode@lists.runrev.com>>:
>> 
>> I get « certificate has expired. please use a valid certificate »  
>> (translated from french)
>> François
>>> Le 6 juil. 2017 à 21:33, Mike Bonner via use-livecode 
>>> mailto:use-livecode@lists.runrev.com>> a 
>>> écrit :
>>> 
>>> Can't pay, get this message...
>>> Error Detected
>>> Error Message
>>> 
>>> The certificate has expired. Please use a valid certificate.
>>> The certificate has expired. Please use a valid certificate.
>>> 
>>> On Thu, Jul 6, 2017 at 1:24 PM, Heather Laine via use-livecode <
>>> use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>> wrote:
>>> 
>>>> We had a last minute call from someone offering to pledge the rest. I was
>>>> entering it for him with, yes, shaky hands and I pressed the wrong button.
>>>> Total went down! Not Up! My fault. We extended by 4 minutes to allow that
>>>> pledge to go through.
>>>> 
>>>> Good? Bad? Seemed like the right thing to do.
>>>> 
>>>> Regards,
>>>> 
>>>> Heather
>>>> 
>>>> Heather Laine
>>>> Customer Services Manager
>>>> LiveCode Ltd
>>>> www.livecode.com <http://www.livecode.com/>
>>>> 
>>>> 
>>>> 
>>>>> On 6 Jul 2017, at 20:14, Dan Brown via use-livecode <
>>>> use-livecode@lists.runrev.com> wrote:
>>>>> 
>>>>> Hmm after the timer ran out the page showed  "project unsuccessful" with
>>>>> only $23,428 raised. Now its showing as fully funded and successful.
>>>> Happy
>>>>> but erm baffled.
>>>>> 
>>>>> Slick grids here we come though!
>>>>> 
>>>>> On 6 Jul 2017 8:06 pm, "hh via use-livecode" <
>>>> use-livecode@lists.runrev.com>
>>>>> wrote:
>>>>> 
>>>>>> 185 backers. No comment.
>>>>>> 
>>>>>> ___
>>>>>> use-livecode mailing list
>>>>>> use-livecode@lists.runrev.com
>>>>>> Please visit this url to subscribe, unsubscribe and manage your
>>>>>> subscription preferences:
>>>>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>>>> 
>>>>> ___
>>>>> use-livecode mailing list
>>>>> use-livecode@lists.runrev.com
>>>>> Please visit this url to subscribe, unsubscribe and manage your
>>>> subscription preferences:
>>>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>> 
>>>> 
>>>> ___
>>>> use-livecode mailing list
>>>> use-livecode@lists.runrev.com
>>>> Please visit this url to subscribe, unsubscribe and manage your
>>>> subscription preferences:
>>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>> 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>
>>> Please visit this url to subscribe, unsubscribe and manage your 
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Feature Race: Pick Your Project

2017-07-06 Thread François Chaplais via use-livecode
I get « certificate has expired. please use a valid certificate »  (translated 
from french)
François
> Le 6 juil. 2017 à 21:33, Mike Bonner via use-livecode 
>  a écrit :
> 
> Can't pay, get this message...
> Error Detected
> Error Message
> 
> The certificate has expired. Please use a valid certificate.
> The certificate has expired. Please use a valid certificate.
> 
> On Thu, Jul 6, 2017 at 1:24 PM, Heather Laine via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> We had a last minute call from someone offering to pledge the rest. I was
>> entering it for him with, yes, shaky hands and I pressed the wrong button.
>> Total went down! Not Up! My fault. We extended by 4 minutes to allow that
>> pledge to go through.
>> 
>> Good? Bad? Seemed like the right thing to do.
>> 
>> Regards,
>> 
>> Heather
>> 
>> Heather Laine
>> Customer Services Manager
>> LiveCode Ltd
>> www.livecode.com
>> 
>> 
>> 
>>> On 6 Jul 2017, at 20:14, Dan Brown via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> Hmm after the timer ran out the page showed  "project unsuccessful" with
>>> only $23,428 raised. Now its showing as fully funded and successful.
>> Happy
>>> but erm baffled.
>>> 
>>> Slick grids here we come though!
>>> 
>>> On 6 Jul 2017 8:06 pm, "hh via use-livecode" <
>> use-livecode@lists.runrev.com>
>>> wrote:
>>> 
 185 backers. No comment.
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode