Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Cool. Thanks. Looking forward to it.

On Fri, Nov 19, 2010 at 10:49 AM, Mark Schonewille
 wrote:
> I'll set up a wiki over the weekend so we're good to go on monday. See ya...
>
>

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Sounds good.

I think the mailing lists are going down at any moment so we might
want to wait until they're back.



On Fri, Nov 19, 2010 at 10:40 AM, Mark Schonewille
 wrote:
> Hi,
>
> Shall I set up an open wiki to start with? That will give everybody a chance 
> to share whatever he or she likes.
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
>
> Follow Economy-x-Talk on Facebook now and get a free Color Converter license 
> http://qurl.tk/gn (read the conditions)
>
> On 19 nov 2010, at 16:21, David Bovill wrote:
>
>> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
>> it. I've got a bit of work on Twitter clients as well I could throw in the
>> mix.
>>
>> On 19 November 2010 14:06, Erik Schwartz  wrote:
>>
>>> I'd be happy to help.
>>>
>>> I think this is an important area, especially as runrev gets more
>>> mobile focused, but also for on-rev and desktop apps.
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
It seems like the kind of thing for which a nice set of libraries
would get a ton of use.



On Fri, Nov 19, 2010 at 10:35 AM, Andre Garzia  wrote:
> I fled in fear as well... I call it ONoesAuth
>
> On Fri, Nov 19, 2010 at 1:21 PM, David Bovill wrote:
>
>> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
>> it. I've got a bit of work on Twitter clients as well I could throw in the
>> mix.

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
I'd be happy to help.

I think this is an important area, especially as runrev gets more
mobile focused, but also for on-rev and desktop apps.



On Fri, Nov 19, 2010 at 8:25 AM, Mark Schonewille
 wrote:
> Hi Erik,
>
> I will probably be working on Oauth very soon, with regard to Facebook. 
> Perhaps we can do something together.
>

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Has anyone done a runrev twitter client or other application using Oauth?

They've got many libraries but none for LiveCode
http://dev.twitter.com/pages/oauth_libraries

I'd like to built twitter notification into an app I've built that
interfaces with the real world via the serial port.

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: serial port problems

2010-11-07 Thread Erik Schwartz
I have had problems with 4.5 and serial comms. I have not had time to
diagnose it properly. I just regressed back to use 4.0 until the bugs
in 4.5 get dealt with (kind of annoyed that I paid for the upgrade I
can't use yet though). I hope you get it figured out.

Erik



On Sun, Nov 7, 2010 at 10:18 AM, Larry Walker
 wrote:
> I am trying to read data from a "serial port" (using a USB-serial adaptor).
>
> I am on a MacBook Pro running 10.5.8, using LiveCode 4.5, and Prolific model
> 2303 USB-serial adaptor.
>
> The following code does not work:
>
> on mouseUp
>   put "modem:" into usbSerial
>   put empty into field "Field"
>
>   open driver usbSerial for text read
>   read from driver usbSerial for 5 chars
>   put it after field "field"
>
>   close driver usbSerial
> end mouseUp
>
> Setting a breakpoint on the "read from" shows that the "open" does not
> appear to fail. Single-stepping through the read does not wait for any input
> from the connected terminal, it returns immediately. "It" is empty
> afterward.
>
> By reading for N chars I believe I am side-stepping any line -terminator
> issues.
>
> I have confirmed that the USB-serial adaptor and the terminal can talk to
> each other properly, using the command-line invocation: 'screen
> /dev/tty.usbserial'. I have confirmed that the serialControlString matches
> the terminal's settings.
>
> This fail whether I use "open file" or "open driver".
> This fails whether I use "modem" or "printer" as the device.
>
> If I use /dev/tty.usbserial", the IDE hangs and I have to Force-Quit it.
>
> I have tried using the SerialTest.rev stack
> (http://www.troz.net/rev/stacks/SerialTest.rev) as well: identical results.
>
> I have read Phil Worthington's paper on serial communication
> (http://www.pdslabs.net/usb/rev-usb1.pdf); I believe I'm doing just as he
> suggests (except for the no-name adaptor I bought), but no luck. I did
> notice that "the DeviceNames" seems to now return its results in a format
> different from the one Phil describes, for whatever that might be worth
> (LC4.5 changes?).
>
> Has anything changed in LC4.5 regarding serial communication? Can others run
> the serialTest.rev script properly under LC4.5?

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Rev Server and EC2

2010-10-21 Thread Erik Schwartz
Has anyone tried installing RevServer on an AWS EC2 instance?

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: on-rev database help

2010-10-16 Thread Erik Schwartz
On Sat, Oct 16, 2010 at 2:34 PM, Bill Ziegler  wrote:

> Questions
>
> 1. Can I put my existing stack on my on-rev server account for multiple 
> people to use at one time?

I don't thinks so

>
> 2. Can I put my existing stack on our school server for multiple people to 
> use at one time?


Probably


>
> 3. Am i up-that-creek for not knowing SQL?

It sounds like learning enough SQL to do what you need to do you
should be able to pick up in a weekend. The hardest part is the lack
of escape characters in livecode. You end up in &, ", and ' hell.

>
> 4. If (I) and (2) are possible with or without SQL what's my best option to 
> learn how to do whatever I'll need to do.

http://www.w3schools.com/sql/default.asp

and

http://lessons.runrev.com/spaces/lessons/buckets/784/lessons/7003-Connecting-to-a-MySQL-database

 should get you most of the way there

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Could someone could test this ?

2010-10-06 Thread Erik Schwartz
Handbrake totally rocks.



On Wed, Oct 6, 2010 at 3:10 PM, Francis Nugent Dixon  wrote:
> Hi Ludovic,
>
> Why bother.
>
> Download Handbrake (open source) - convert all your files to
> Quicktime MP4. No more problems !!
-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution