Re: Hactoberfest is coming...

2019-10-01 Thread Mike Kerner via use-livecode
LOL, sorry, not a list field, a list of ideas.
___
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: Hactoberfest is coming...

2019-10-01 Thread Bob Sneidar via use-livecode
Responding to this:

Looking for ideas to add to a list that people can pick from.

> On Oct 1, 2019, at 08:27 , Mike Kerner via use-livecode 
>  wrote:
> 
> wrong thread, i think, bob.


___
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: Hactoberfest is coming...

2019-10-01 Thread Mike Kerner via use-livecode
wrong thread, i think, bob.

On Tue, Oct 1, 2019 at 10:55 AM Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi Mike.
>
> I do this already in some "popup" fields I use. (There are reasons I use
> fields instead of buttons I won't go into here.)
>
> Depending on the popup, I may have an option like "New Customer..." as the
> first line in a list field. For my customers I maintain the last 15
> customers accessed, and I store them between sessions in a local prefs file
> (each user needs their own recents). I have a Salesperson popup which
> behaves a bit differently. Here I maintain a list of salespersons in an SQL
> table called "lists" so that everyone sees the same list of salespersons.
> If a value is entered for a salesperson not in the list, I ask the user if
> they want to add this salesperson. This gives the user the opportunity to
> decline in case it is simply a mistype.
>
> I will often use a rawKeyUp handler to implement a hottype feature. Looks
> something like this:
>
> ON rawKeyUp
>IF the text of me is empty THEN
>   exit to top
>END IF
>
>wait .5 seconds WITH messages
>lock messages
>put filterOptions(lSalesPersons) into theSalesPersons
>listOptions theSalesPersons
>unlock messages
>select after me
>-- pass rawKeyUp
>exit to top
> END rawKeyUp
>
> lSalesPersons is script local variable that I populate with the
> salespersons on openField. filterOptions returns a list matching
> salespersons LIKE %%. listOptions
> populates the popup field so the user can select one of the filtered
> salespersons.
>
> HTH
>
> Bob S
>
> > On Oct 1, 2019, at 06:26 , Mike Kerner via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Looking for ideas to add to a list that people can pick from.
> > The good news is that if you want a cheap PR to get you toward your
> > Hacktoberfest swag, instead of posting your idea here, you can update the
> > 100% totally unofficial LC hacktoberfest repo here:
> > https://github.com/macMikey/lc-hacktoberfest
>
>
> ___
> 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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Hactoberfest is coming...

2019-10-01 Thread Bob Sneidar via use-livecode
Hi Mike. 

I do this already in some "popup" fields I use. (There are reasons I use fields 
instead of buttons I won't go into here.) 

Depending on the popup, I may have an option like "New Customer..." as the 
first line in a list field. For my customers I maintain the last 15 customers 
accessed, and I store them between sessions in a local prefs file (each user 
needs their own recents). I have a Salesperson popup which behaves a bit 
differently. Here I maintain a list of salespersons in an SQL table called 
"lists" so that everyone sees the same list of salespersons. If a value is 
entered for a salesperson not in the list, I ask the user if they want to add 
this salesperson. This gives the user the opportunity to decline in case it is 
simply a mistype. 

I will often use a rawKeyUp handler to implement a hottype feature. Looks 
something like this:

ON rawKeyUp
   IF the text of me is empty THEN
  exit to top
   END IF
   
   wait .5 seconds WITH messages
   lock messages
   put filterOptions(lSalesPersons) into theSalesPersons
   listOptions theSalesPersons
   unlock messages
   select after me
   -- pass rawKeyUp
   exit to top
END rawKeyUp

lSalesPersons is script local variable that I populate with the salespersons on 
openField. filterOptions returns a list matching salespersons LIKE %%. listOptions populates the popup field so the user 
can select one of the filtered salespersons. 

HTH

Bob S

> On Oct 1, 2019, at 06:26 , Mike Kerner via use-livecode 
>  wrote:
> 
> Looking for ideas to add to a list that people can pick from.
> The good news is that if you want a cheap PR to get you toward your
> Hacktoberfest swag, instead of posting your idea here, you can update the
> 100% totally unofficial LC hacktoberfest repo here:
> https://github.com/macMikey/lc-hacktoberfest


___
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: Hactoberfest is coming...

2019-10-01 Thread Mike Kerner via use-livecode
Looking for ideas to add to a list that people can pick from.
The good news is that if you want a cheap PR to get you toward your
Hacktoberfest swag, instead of posting your idea here, you can update the
100% totally unofficial LC hacktoberfest repo here:
https://github.com/macMikey/lc-hacktoberfest

On Fri, Sep 27, 2019 at 4:40 PM Mike Kerner 
wrote:

> click on the "start hacking" button in the page and you can sign up.  i
> don't know what it will do for people who don't already have a github
> account, but here's what I got:
>
>
>
> [image: Hacktoberfest 2019]
>
>
>
> You’re officially registered for Hacktoberfest 2019! So we wanted to send
> you everything you’ll need to help you get started.
>
> A good place to dive in is our Details
>  page, which breaks down
> the fine print for this year’s event. We also put together a list of
> contribution ideas that may help spark some contribution ideas. If you’d
> like to link up with other local Hacktoberfest participants, have a look at
> our Events  page to see
> what’s happening near you. For common questions, take a look at our FAQs
> . And finally, check out the 
> "Getting
> Started " resource put
> together by our friends over at DEV .
>
> As this year’s event kicks off, we hope you’ll spread the word about
> #Hacktoberfest across your social media channels!
>
> Happy Hacking,
> Team Hacktoberfest
>
> On Thu, Sep 26, 2019 at 5:50 PM Pi Digital via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
>> Was that response email for signing up to GitHub perhaps. The
>> Hacktoberfest site says everywhere I look:
>>
>> You can sign up anytime between October 1 and October 31.
>>
>> There are no links I can find to sign up to the fest yet, just a few
>> links to github which will ask you to sign in/up when it loads.
>>
>> Sean Cole
>> Pi Digital Prod Ltd
>>
>> > On 26 Sep 2019, at 21:47, Mike Kerner via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>> >
>> > are you sure?  i registered 10 minutes before i posted that email and
>> > received a confirmation, so did i post the wrong link?
>> >
>> >> On Wed, Sep 25, 2019 at 5:06 PM Pi Digital via use-livecode <
>> >> use-livecode@lists.runrev.com> wrote:
>> >>
>> >> Correction. You can only begin registering from 1st October according
>> to
>> >> the site.
>> >>
>> >> I’m going to be submitting a bunch of fixes and updates for HTML5
>> >> deployment to get it usable professionally again. But I have to weave
>> this
>> >> around my (barely) paid work developing a web app using the broken
>> version
>> >> (with the current workarounds which are enough for now).
>> >>
>> >> Sean Cole
>> >> Pi Digital Prod Ltd
>> >>
>> >>> On 25 Sep 2019, at 21:05, Mike Kerner via use-livecode <
>> >> use-livecode@lists.runrev.com> wrote:
>> >>>
>> >>> The Hacktoberfest registration is now open:
>> >>> https://hacktoberfest.digitalocean.com
>> >>> <
>> >>
>> https://hacktoberfest.digitalocean.com/?utm_source=local&utm_medium=email&utm_campaign=Hacktoberfest2019
>> >>>
>> >>>
>> >>> Get registered and then between October 1, and 31, make 3 pull
>> requests
>> >> to
>> >>> projects housed on GitHub, and get your 2019 Hactoberfest swag!
>> >>>
>>  On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
>>  use-livecode@lists.runrev.com> wrote:
>> 
>>  Just want to point out a good candidate for pull requests here. Ripe
>> for
>>  some sample xtalk code:
>> 
>>  https://github.com/EricAlcaide/Rosetta_Project
>> 
>>  --
>>  Mark Wieder
>>  ahsoftw...@gmail.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
>> 
>> >>>
>> >>>
>> >>> --
>> >>> On the first day, God created the heavens and the Earth
>> >>> On the second day, God created the oceans.
>> >>> On the third day, God put the animals on hold for a few hours,
>> >>>  and did a little diving.
>> >>> And God said, "This is good."
>> >>> ___
>> >>> 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
>> >>
>> >
>> >
>> > --
>> > On the first day, God created the heaven

Re: Hactoberfest is coming...

2019-09-27 Thread Mike Kerner via use-livecode
click on the "start hacking" button in the page and you can sign up.  i
don't know what it will do for people who don't already have a github
account, but here's what I got:



[image: Hacktoberfest 2019]



You’re officially registered for Hacktoberfest 2019! So we wanted to send
you everything you’ll need to help you get started.

A good place to dive in is our Details
 page, which breaks down
the fine print for this year’s event. We also put together a list of
contribution ideas that may help spark some contribution ideas. If you’d
like to link up with other local Hacktoberfest participants, have a look at
our Events  page to see
what’s happening near you. For common questions, take a look at our FAQs
. And finally, check out
the "Getting
Started " resource put
together by our friends over at DEV .

As this year’s event kicks off, we hope you’ll spread the word about
#Hacktoberfest across your social media channels!

Happy Hacking,
Team Hacktoberfest

On Thu, Sep 26, 2019 at 5:50 PM Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Was that response email for signing up to GitHub perhaps. The
> Hacktoberfest site says everywhere I look:
>
> You can sign up anytime between October 1 and October 31.
>
> There are no links I can find to sign up to the fest yet, just a few links
> to github which will ask you to sign in/up when it loads.
>
> Sean Cole
> Pi Digital Prod Ltd
>
> > On 26 Sep 2019, at 21:47, Mike Kerner via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > are you sure?  i registered 10 minutes before i posted that email and
> > received a confirmation, so did i post the wrong link?
> >
> >> On Wed, Sep 25, 2019 at 5:06 PM Pi Digital via use-livecode <
> >> use-livecode@lists.runrev.com> wrote:
> >>
> >> Correction. You can only begin registering from 1st October according to
> >> the site.
> >>
> >> I’m going to be submitting a bunch of fixes and updates for HTML5
> >> deployment to get it usable professionally again. But I have to weave
> this
> >> around my (barely) paid work developing a web app using the broken
> version
> >> (with the current workarounds which are enough for now).
> >>
> >> Sean Cole
> >> Pi Digital Prod Ltd
> >>
> >>> On 25 Sep 2019, at 21:05, Mike Kerner via use-livecode <
> >> use-livecode@lists.runrev.com> wrote:
> >>>
> >>> The Hacktoberfest registration is now open:
> >>> https://hacktoberfest.digitalocean.com
> >>> <
> >>
> https://hacktoberfest.digitalocean.com/?utm_source=local&utm_medium=email&utm_campaign=Hacktoberfest2019
> >>>
> >>>
> >>> Get registered and then between October 1, and 31, make 3 pull requests
> >> to
> >>> projects housed on GitHub, and get your 2019 Hactoberfest swag!
> >>>
>  On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
>  use-livecode@lists.runrev.com> wrote:
> 
>  Just want to point out a good candidate for pull requests here. Ripe
> for
>  some sample xtalk code:
> 
>  https://github.com/EricAlcaide/Rosetta_Project
> 
>  --
>  Mark Wieder
>  ahsoftw...@gmail.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
> 
> >>>
> >>>
> >>> --
> >>> On the first day, God created the heavens and the Earth
> >>> On the second day, God created the oceans.
> >>> On the third day, God put the animals on hold for a few hours,
> >>>  and did a little diving.
> >>> And God said, "This is good."
> >>> ___
> >>> 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
> >>
> >
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created the oceans.
> > On the third day, God put the animals on hold for a few hours,
> >   and did a little diving.
> > And God said, "This is good."
> > ___
> > 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: Hactoberfest is coming...

2019-09-26 Thread Pi Digital via use-livecode
Was that response email for signing up to GitHub perhaps. The Hacktoberfest 
site says everywhere I look:

You can sign up anytime between October 1 and October 31.

There are no links I can find to sign up to the fest yet, just a few links to 
github which will ask you to sign in/up when it loads.  

Sean Cole
Pi Digital Prod Ltd

> On 26 Sep 2019, at 21:47, Mike Kerner via use-livecode 
>  wrote:
> 
> are you sure?  i registered 10 minutes before i posted that email and
> received a confirmation, so did i post the wrong link?
> 
>> On Wed, Sep 25, 2019 at 5:06 PM Pi Digital via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>> 
>> Correction. You can only begin registering from 1st October according to
>> the site.
>> 
>> I’m going to be submitting a bunch of fixes and updates for HTML5
>> deployment to get it usable professionally again. But I have to weave this
>> around my (barely) paid work developing a web app using the broken version
>> (with the current workarounds which are enough for now).
>> 
>> Sean Cole
>> Pi Digital Prod Ltd
>> 
>>> On 25 Sep 2019, at 21:05, Mike Kerner via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> The Hacktoberfest registration is now open:
>>> https://hacktoberfest.digitalocean.com
>>> <
>> https://hacktoberfest.digitalocean.com/?utm_source=local&utm_medium=email&utm_campaign=Hacktoberfest2019
>>> 
>>> 
>>> Get registered and then between October 1, and 31, make 3 pull requests
>> to
>>> projects housed on GitHub, and get your 2019 Hactoberfest swag!
>>> 
 On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
 use-livecode@lists.runrev.com> wrote:
 
 Just want to point out a good candidate for pull requests here. Ripe for
 some sample xtalk code:
 
 https://github.com/EricAlcaide/Rosetta_Project
 
 --
 Mark Wieder
 ahsoftw...@gmail.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
 
>>> 
>>> 
>>> --
>>> On the first day, God created the heavens and the Earth
>>> On the second day, God created the oceans.
>>> On the third day, God put the animals on hold for a few hours,
>>>  and did a little diving.
>>> And God said, "This is good."
>>> ___
>>> 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
>> 
> 
> 
> -- 
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>   and did a little diving.
> And God said, "This is good."
> ___
> 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: Hactoberfest is coming...

2019-09-26 Thread Mike Kerner via use-livecode
are you sure?  i registered 10 minutes before i posted that email and
received a confirmation, so did i post the wrong link?

On Wed, Sep 25, 2019 at 5:06 PM Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Correction. You can only begin registering from 1st October according to
> the site.
>
> I’m going to be submitting a bunch of fixes and updates for HTML5
> deployment to get it usable professionally again. But I have to weave this
> around my (barely) paid work developing a web app using the broken version
> (with the current workarounds which are enough for now).
>
> Sean Cole
> Pi Digital Prod Ltd
>
> > On 25 Sep 2019, at 21:05, Mike Kerner via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > The Hacktoberfest registration is now open:
> > https://hacktoberfest.digitalocean.com
> > <
> https://hacktoberfest.digitalocean.com/?utm_source=local&utm_medium=email&utm_campaign=Hacktoberfest2019
> >
> >
> > Get registered and then between October 1, and 31, make 3 pull requests
> to
> > projects housed on GitHub, and get your 2019 Hactoberfest swag!
> >
> >> On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
> >> use-livecode@lists.runrev.com> wrote:
> >>
> >> Just want to point out a good candidate for pull requests here. Ripe for
> >> some sample xtalk code:
> >>
> >> https://github.com/EricAlcaide/Rosetta_Project
> >>
> >> --
> >>  Mark Wieder
> >>  ahsoftw...@gmail.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
> >>
> >
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created the oceans.
> > On the third day, God put the animals on hold for a few hours,
> >   and did a little diving.
> > And God said, "This is good."
> > ___
> > 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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Hactoberfest is coming...

2019-09-25 Thread Pi Digital via use-livecode
Correction. You can only begin registering from 1st October according to the 
site. 

I’m going to be submitting a bunch of fixes and updates for HTML5 deployment to 
get it usable professionally again. But I have to weave this around my (barely) 
paid work developing a web app using the broken version (with the current 
workarounds which are enough for now). 

Sean Cole
Pi Digital Prod Ltd

> On 25 Sep 2019, at 21:05, Mike Kerner via use-livecode 
>  wrote:
> 
> The Hacktoberfest registration is now open:
> https://hacktoberfest.digitalocean.com
> 
> 
> Get registered and then between October 1, and 31, make 3 pull requests to
> projects housed on GitHub, and get your 2019 Hactoberfest swag!
> 
>> On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>> 
>> Just want to point out a good candidate for pull requests here. Ripe for
>> some sample xtalk code:
>> 
>> https://github.com/EricAlcaide/Rosetta_Project
>> 
>> --
>>  Mark Wieder
>>  ahsoftw...@gmail.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
>> 
> 
> 
> -- 
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>   and did a little diving.
> And God said, "This is good."
> ___
> 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: Hactoberfest is coming...

2019-09-25 Thread Mike Kerner via use-livecode
The Hacktoberfest registration is now open:
https://hacktoberfest.digitalocean.com


Get registered and then between October 1, and 31, make 3 pull requests to
projects housed on GitHub, and get your 2019 Hactoberfest swag!

On Sat, Sep 7, 2019 at 12:43 PM Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Just want to point out a good candidate for pull requests here. Ripe for
> some sample xtalk code:
>
> https://github.com/EricAlcaide/Rosetta_Project
>
> --
>   Mark Wieder
>   ahsoftw...@gmail.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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Hactoberfest is coming...

2019-09-07 Thread Mark Wieder via use-livecode
Just want to point out a good candidate for pull requests here. Ripe for 
some sample xtalk code:


https://github.com/EricAlcaide/Rosetta_Project

--
 Mark Wieder
 ahsoftw...@gmail.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


Re: Hactoberfest is coming...

2019-09-01 Thread Mike Kerner via use-livecode
Here is your first request for:
* Repos to add to the list of LC projects to be targeted for some effort.
So far I've added the LC IDE and Levure
* Issues and bug reports to be added to the list of things the community
might be able to tackle and resolve quickly, everything from minor bugs or
documentation issues all the way up to IDE mods.
* Contributors who are interested in helping to maintain the 100%
unofficial, unsanctioned livecode hacktoberfest project and maybe turn it
into something better.
Go to https://macmikey.github.io/lc-hacktoberfest/
Fork or clone the repo
Have at it
Commit and issue a pull request back.

On Sat, Aug 31, 2019 at 5:47 PM Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Good work, thanks Mikey.
>
> Sean Cole
> Pi Digital Prod Ltd
>
> > On 31 Aug 2019, at 22:27, Mike Kerner via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > OK, Mikey's 100% unofficial livecode hacktoberfest idea exchange repo is
> > now live.
> > https://macmikey.github.io/lc-hacktoberfest/
> >
> >
> >
> > On Fri, Aug 30, 2019 at 11:22 PM Brian Milby via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> >
> >> Yes, very good idea.  I got my first shirt last year.
> >>
> >> Thanks,
> >> Brian
> >> On Aug 30, 2019, 11:05 PM -0400, Mikey via use-livecode <
> >> use-livecode@lists.runrev.com>, wrote:
> >>> Hactoberfest is a month away. That's github's event that awards some
> swag
> >>> like tshirts and stickers in exchange for pull requests to open source
> >>> repos. Last year to get your swag you had to submit 4 PR's.
> >>> We've got a month, so maybe now would be a good time to develop a list
> of
> >>> LC repos that deserve our time, changes/additions/features we want to
> >>> implement, and get a bunch of people into the swing of contributing to
> >>> these LC projects.
> >>> We also need to help the people who have never done this help
> themselves.
> >>> ___
> >>> 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
> >>
> >
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created the oceans.
> > On the third day, God put the animals on hold for a few hours,
> >   and did a little diving.
> > And God said, "This is good."
> > ___
> > 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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Hactoberfest is coming...

2019-08-31 Thread Pi Digital via use-livecode
Good work, thanks Mikey. 

Sean Cole
Pi Digital Prod Ltd

> On 31 Aug 2019, at 22:27, Mike Kerner via use-livecode 
>  wrote:
> 
> OK, Mikey's 100% unofficial livecode hacktoberfest idea exchange repo is
> now live.
> https://macmikey.github.io/lc-hacktoberfest/
> 
> 
> 
> On Fri, Aug 30, 2019 at 11:22 PM Brian Milby via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Yes, very good idea.  I got my first shirt last year.
>> 
>> Thanks,
>> Brian
>> On Aug 30, 2019, 11:05 PM -0400, Mikey via use-livecode <
>> use-livecode@lists.runrev.com>, wrote:
>>> Hactoberfest is a month away. That's github's event that awards some swag
>>> like tshirts and stickers in exchange for pull requests to open source
>>> repos. Last year to get your swag you had to submit 4 PR's.
>>> We've got a month, so maybe now would be a good time to develop a list of
>>> LC repos that deserve our time, changes/additions/features we want to
>>> implement, and get a bunch of people into the swing of contributing to
>>> these LC projects.
>>> We also need to help the people who have never done this help themselves.
>>> ___
>>> 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
>> 
> 
> 
> -- 
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>   and did a little diving.
> And God said, "This is good."
> ___
> 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: Hactoberfest is coming...

2019-08-31 Thread Mike Kerner via use-livecode
OK, Mikey's 100% unofficial livecode hacktoberfest idea exchange repo is
now live.
https://macmikey.github.io/lc-hacktoberfest/



On Fri, Aug 30, 2019 at 11:22 PM Brian Milby via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Yes, very good idea.  I got my first shirt last year.
>
> Thanks,
> Brian
> On Aug 30, 2019, 11:05 PM -0400, Mikey via use-livecode <
> use-livecode@lists.runrev.com>, wrote:
> > Hactoberfest is a month away. That's github's event that awards some swag
> > like tshirts and stickers in exchange for pull requests to open source
> > repos. Last year to get your swag you had to submit 4 PR's.
> > We've got a month, so maybe now would be a good time to develop a list of
> > LC repos that deserve our time, changes/additions/features we want to
> > implement, and get a bunch of people into the swing of contributing to
> > these LC projects.
> > We also need to help the people who have never done this help themselves.
> > ___
> > 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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Hactoberfest is coming...

2019-08-30 Thread Brian Milby via use-livecode
Yes, very good idea.  I got my first shirt last year.

Thanks,
Brian
On Aug 30, 2019, 11:05 PM -0400, Mikey via use-livecode 
, wrote:
> Hactoberfest is a month away. That's github's event that awards some swag
> like tshirts and stickers in exchange for pull requests to open source
> repos. Last year to get your swag you had to submit 4 PR's.
> We've got a month, so maybe now would be a good time to develop a list of
> LC repos that deserve our time, changes/additions/features we want to
> implement, and get a bunch of people into the swing of contributing to
> these LC projects.
> We also need to help the people who have never done this help themselves.
> ___
> 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