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 ...
Search found 44 matches
- Tue Oct 09, 2018 3:06 am
- Forum: Developer Services Marketplace
- Topic: Graphics or Coding Services Offered
- Replies: 1
- Views: 48781
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 ...
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 ...
- Fri Apr 24, 2015 6:00 am
- Forum: Using Externals
- Topic: [ANN] Free lcResTool & lcMover Plugins
- Replies: 5
- Views: 41526
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/
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
- Wed Jun 18, 2014 4:23 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: file upload to server
- Replies: 10
- Views: 13820
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.
- Wed Jun 18, 2014 12:15 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: file upload to server
- Replies: 10
- Views: 13820
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.
- Tue Jun 17, 2014 4:14 am
- Forum: IDE Contributors
- Topic: PROJECT: RevOnline triage
- Replies: 30
- Views: 136850
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 ...
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 ...
- Mon May 26, 2014 5:07 pm
- Forum: IDE Contributors
- Topic: PROJECT: RevOnline triage
- Replies: 30
- Views: 136850
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 ...
- Fri May 16, 2014 1:54 am
- Forum: IDE Contributors
- Topic: Brainstorm: RevOnline curation
- Replies: 8
- Views: 56183
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 ...
- Wed May 14, 2014 5:20 pm
- Forum: Teaching with LiveCode
- Topic: Curriculum
- Replies: 8
- Views: 18820
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 ...
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 ...
- Sat May 10, 2014 8:41 pm
- Forum: Feature Proposals
- Topic: Split Extensions/Plugins Forum in 2
- Replies: 0
- Views: 2221
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.
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.
- Sat May 10, 2014 8:38 pm
- Forum: Feature Proposals
- Topic: One thing I love that I really wish LiveCode had
- Replies: 2
- Views: 3624
Re: One thing I love that I really wish LiveCode had
Something like this would be nice for beginning programmers...
- Sat May 10, 2014 8:28 pm
- Forum: Teaching with LiveCode
- Topic: Curriculum
- Replies: 8
- Views: 18820
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....