Search found 44 matches

by Peregrine
Tue Oct 09, 2018 3:06 am
Forum: Developer Services Marketplace
Topic: Graphics or Coding Services Offered
Replies: 1
Views: 17298

Graphics or Coding Services Offered

Hi LiveCoders! I am offering coding, graphic design, UX/UI and related services. I've been using LC basically forever, and have developed UX/UI and other animations and graphics for websites, mobile apps, corporate software and all sorts of applications. I'd love to work with you on your project, or...
by Peregrine
Wed Nov 30, 2016 12:00 am
Forum: Off-Topic
Topic: Pricing?
Replies: 2
Views: 4713

Pricing?

Sorry if this has been covered somewhere else, but I can't seem to find it anywhere, despite having spent a half an hour looking.... What are all the license options, currently? I mean, I know there is the Indy License and the Business License an of course the Community edition. (Nice to see that th...
by Peregrine
Fri Apr 24, 2015 6:00 am
Forum: Using Externals
Topic: [ANN] Free lcResTool & lcMover Plugins
Replies: 5
Views: 24740

Re: [ANN] Free lcResTool & lcMover Plugins

Hey, sorry about that. I have a new domain name, hence a new downloads page: http://charlesbuchwald.com/downloads/
by Peregrine
Wed Aug 27, 2014 11:25 pm
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 10783

Re: Floor

Thanks, FLCo. I have to admit to being confused about how to properly handle the integer. Wikipedia http://en.wikipedia.org/wiki/Floor_and_ceiling_functions says this: In mathematics and computer science, the floor and ceiling functions map a real number to the largest previous or the smallest follo...
by Peregrine
Wed Aug 27, 2014 7:28 pm
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 10783

Re: Floor

Whoops! Here are both floor and ceiling functions accounting for negative integers: function Floor pValue if pValue is an integer OR pValue < 0 then return trunc(pValue) - 1 else return trunc(pValue) end Floor function Ceiling pValue if pValue is an integer OR pValue > 0 then return trunc(pValue) + ...
by Peregrine
Sat Aug 23, 2014 9:41 pm
Forum: Off-Topic
Topic: Floor
Replies: 8
Views: 10783

Re: Floor

Here's an alternative bit of scripting: function Floor pValue if pValue < 0 then return trunc(pValue) - 1 else return trunc(pValue) end Floor Here's a ceiling function, just to kind of fill out the thread: function Ceiling pValue if pValue < 0 then return trunc(pValue) else return trunc(pValue) + 1 ...
by Peregrine
Wed Jun 18, 2014 4:23 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: file upload to server
Replies: 10
Views: 11916

Re: file upload to server

Thanks, Richard. I'm aware of the vulnerability, and it should be OK for this little project. Really looking forward to having SFTP in LC, though.
by Peregrine
Wed Jun 18, 2014 12:15 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: file upload to server
Replies: 10
Views: 11916

Re: file upload to server

Hey, thanks, bangkok. I was having some of my own issues with libURLftpUploadFile, and your example stack was just what I needed to see it work.
by Peregrine
Tue Jun 17, 2014 4:14 am
Forum: IDE Contributors
Topic: PROJECT: RevOnline triage
Replies: 30
Views: 66067

Re: PROJECT: RevOnline triage

Cool... For the first time in months I can at least browse around in RevOnline, and it doesn't hang. I'm using 6.6.2 on Mac OS X 10.9.3. I couldn't login, retrieve my password, or create a new account with a different email address. I tried the latter two, but never received a reply. But, hey, it's ...
by Peregrine
Mon May 26, 2014 5:07 pm
Forum: IDE Contributors
Topic: PROJECT: RevOnline triage
Replies: 30
Views: 66067

Re: PROJECT: RevOnline triage

Somewhere here it is mentioned that RevOnline has script snippets. I am only using LCshare since UserSamples freezes LC for me, and I don't see any snippets there. I only see stacks. Am I just missing them? Are they only visible in UserSamples? I don't remember seeing them in UserSamples, although i...
by Peregrine
Fri May 16, 2014 1:54 am
Forum: IDE Contributors
Topic: Brainstorm: RevOnline curation
Replies: 8
Views: 25033

Re: Brainstorm: RevOnline curation

Icouto... That sounds a lot like the WordPress plugin directory, which I have used quite a bit. https://wordpress.org/plugins/ I think we could get some good ideas from there. A couple of things that it has that I'll mention that I like and use... 1) Screenshots. It's really nice to have a few, to g...
by Peregrine
Wed May 14, 2014 5:20 pm
Forum: Teaching with LiveCode
Topic: Curriculum
Replies: 8
Views: 15345

Re: Curriculum

in that case you should not hesitate to write a mail to: support@runrev.com They are really very helpful over there in the highlands :D Best Klaus[/quote] Thanks to the others have answered and provided links above. Klaus, I wil definitely follow up. Right now I'm really just preparing for the poss...
by Peregrine
Sat May 10, 2014 8:41 pm
Forum: Feature Proposals
Topic: Split Extensions/Plugins Forum in 2
Replies: 0
Views: 1682

Split Extensions/Plugins Forum in 2

I'd like to see the "Building Externals/Plugins" split in two.
The experience of building extensions is very different from that of building plugins.
Splitting the forum in 2 might encourage more discussion of building plugins by intermediate and beginning programmers.
by Peregrine
Sat May 10, 2014 8:38 pm
Forum: Feature Proposals
Topic: One thing I love that I really wish LiveCode had
Replies: 2
Views: 2659

Re: One thing I love that I really wish LiveCode had

Something like this would be nice for beginning programmers...
by Peregrine
Sat May 10, 2014 8:28 pm
Forum: Teaching with LiveCode
Topic: Curriculum
Replies: 8
Views: 15345

Re: Curriculum

Somewhere I saw that "one third of all Scottish schools are teaching programming with LC". Is any of this curriculum online? I may have a chance to influence the adoption of LC as a teaching tool in Mexico....