Re: Strip a ™ character

2014-10-02 Thread JB
I have a mac and I type the data into a field using my keyboard. It does not work right. But I also have tried with files that are on my mac and I have transferred them from binary to ascii and then to binary code and the conversions all work properly with all of the files and typing except for bi

Re: Strip a ™ character

2014-10-02 Thread Mark Wieder
JB writes: > > I am using a Mac the text is straight from a field. > The text works fine with the other conversions. The question isn't what platform you're working on, but the source of the data. This is especially important if the source platform was different from the working platform. For

Re: Strip a ™ character

2014-10-02 Thread JB
I am using a Mac the text is straight from a field. The text works fine with the other conversions. John Balgenorth On Oct 2, 2014, at 4:13 PM, Mark Wieder wrote: > JB writes: > >> >> It looks to me the code is good. I guess >> someone decided they could Trade Mark ™ >> Binary to Hex. >>

Re: Strip a ™ character

2014-10-02 Thread Mark Wieder
JB writes: > > It looks to me the code is good. I guess > someone decided they could Trade Mark ™ > Binary to Hex. > > In Hex it shows up as either a A or AA. You > would think it would always be AA since that > is the Hex value for ™. You haven't given a lot of information here, but my gues

Re: Strip a ™ character

2014-10-02 Thread JB
LiveCode has a lot of potential and is enjoyable to program with. John Balgenorth On Oct 2, 2014, at 12:58 PM, Dr. Hawkins wrote: > On Thu, Oct 2, 2014 at 9:33 AM, JB wrote: > >> Okay, I am sorry I misunderstood you. >> I do not like C or any of its form either. >> And I do not like all of

Re: Strip a ™ character

2014-10-02 Thread Dr. Hawkins
On Thu, Oct 2, 2014 at 9:33 AM, JB wrote: > Okay, I am sorry I misunderstood you. > I do not like C or any of its form either. > And I do not like all of the wasted text > with curly braces. > > Now that Apple has released Swift it is > a little easier than C but you still need to > have a C back

Re: Strip a ™ character

2014-10-02 Thread PystCat
LOL. What's funny is when I read that line, "...it burns. It burns!" I immediately thought of Gollum when he was being tied up. Good to know it wasn't me. Maybe I read too much Tolkien > On Oct 2, 2014, at 12:28 PM, "Dr. Hawkins" wrote: > >> On Thu, Oct 2, 2014 at 6:11 AM, JB wrote: >>

Re: Strip a ™ character

2014-10-02 Thread JB
Okay, I am sorry I misunderstood you. I do not like C or any of its form either. And I do not like all of the wasted text with curly braces. Now that Apple has released Swift it is a little easier than C but you still need to have a C background to use it. John Balgenorth On Oct 2, 2014, at 9:2

Re: Strip a ™ character

2014-10-02 Thread Dr. Hawkins
On Thu, Oct 2, 2014 at 6:11 AM, JB wrote: > Who do you think is sniveling and exactly > how fun is if for you to say “it burns. it burns!”? > > And who are you saying it to me because the > code does not work or LiveCode? Either way > what makes it so fun for you? > No, not at all. It's the C.

Re: Strip a ™ character

2014-10-02 Thread JB
This is an error 6 characters I have trouble with my vision from being poisoned in my home and it collects on my eyes. The discussion concerns eight chars and two chars, John Balgenorth On Oct 2, 2014, at 9:06 AM, JB wrote: > 6 characters ___ use

Re: Strip a ™ character

2014-10-02 Thread JB
Well then Dr. Hawkins won’t need to take things too seriously if he is offended. He is a big boy just like me and you. As for my business it is nice you are concerned about the damage but there was a lot more than that at a lot more levels. I can assure you these people are everywhere and they a

Re: Re: Strip a ™ character

2014-10-02 Thread Richard Gaskin
JB wrote: > The code I presented was because I thought it would > be similar to what you already have. It shows there is > not much code for that routine. Seems like we're on the same page then. I've missed the first several posts in this thread, so I must admit that I don't have a good under

Re: Strip a ™ character

2014-10-02 Thread JB
The code I presented was because I thought it would be similar to what you already have. It shows there is not much code for that routine. Strip out the lines that are made for the user to enter the code to transfer and show those questions on screen and the part that will quit if the user does n

Re: Re: Strip a ™ character

2014-10-02 Thread Richard Gaskin
JB wrote: > On Oct 1, 2014, at 5:20 PM, Dr. Hawkins wrote: > >> On Wed, Oct 1, 2014 at 4:01 PM, JB wrote: >> >>> Code for Program to convert binary to hexadecimal in C Programming >> >> \begin snivel{} >> It burns, it burns! ... > Who do you think is sniveling and exactly > how fun is if for yo

Re: Strip a ™ character

2014-10-02 Thread JB
I take if very serious when I see a company that tries to put out a good product struggle due to problems that may have been placed there like a stumbling block to destroy them. Of course like your code below all code is written intentionally. Who do you think is sniveling and exactly how fun is

Re: Strip a ™ character

2014-10-01 Thread JB
Objective-C and GCD is a better way to go. It was nice to see Apple updated my Xcode today. Now I can use Swift too. John Balgenorth On Oct 1, 2014, at 5:20 PM, Dr. Hawkins wrote: > On Wed, Oct 1, 2014 at 4:01 PM, JB wrote: > >> >> Code for Program to convert binary to hexadecimal in C Pr

Re: Strip a ™ character

2014-10-01 Thread Dr. Hawkins
On Wed, Oct 1, 2014 at 4:01 PM, JB wrote: > > Code for Program to convert binary to hexadecimal in C Programming > \begin snivel{} It burns, it burns! -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___ use-livecode mailing list use-livecode@lists.

Re: Strip a ™ character

2014-10-01 Thread JB
I just found this on the web. John Balgenorth Code for Program to convert binary to hexadecimal in C Programming #include #include void main() { int j=1,i=0; int k,num[100],n,sum=0; clrscr(); printf( "\n PLEASE ENTER VALUE N:" ); scanf( "%d" ,&n); printf( "\n PLEAS

Re: Strip a ™ character

2014-10-01 Thread JB
If someone wants to give me that part of the code I bet I could fix it. I wrote conversions for ascii-hex-binary in hypercard years ago and there is not that much to it. John Balgenorth On Oct 1, 2014, at 3:01 PM, JB wrote: > It looks to me the code is good. I guess > someone decided they c

Re: Strip a ™ character

2014-10-01 Thread JB
It looks to me the code is good. I guess someone decided they could Trade Mark ™ Binary to Hex. In Hex it shows up as either a A or AA. You would think it would always be AA since that is the Hex value for ™. It is easy to strip the ™ from the beginning of Hex code because Hex always starts wit

Re: Strip a ™ character

2014-10-01 Thread dunbarx
ata > repeat with x = 1 to the len of theData -8 step 8 > put BaseConvert(char x to (x+7) of theData,2,16) into theConv > put theConv after tData > end repeat -Original Message- From: JB To: How to use LiveCode Sent: Wed, Oct 1, 2014 1:02 pm Subject: Re

Re: Strip a ™ character

2014-10-01 Thread JB
It could be I am writing the part below wrong. repeat with x = 1 to the len of theData -8 step 8 What I am trying to do is get 8 characters and process the eight characters and do it for the length of theData. Is that written wrong? John Balgenorth On Oct 1, 2014, at 8:35 AM, JB wrote: > I a