Re: Binary floating point format

2017-03-30 Thread Carl Hoefs
> On Mar 30, 2017, at 9:06 PM, Greg Parker wrote: > > >> On Mar 30, 2017, at 9:03 PM, Carl Hoefs > > wrote: >> >>> On Mar 30, 2017, at 8:10 PM, Greg Parker >>

Re: Binary floating point format

2017-03-30 Thread Greg Parker
> On Mar 30, 2017, at 9:03 PM, Carl Hoefs > wrote: > >> On Mar 30, 2017, at 8:10 PM, Greg Parker > > wrote: >> >>> On Mar 30, 2017, at 7:09 PM, Carl Hoefs >>

Re: Binary floating point format

2017-03-30 Thread Carl Hoefs
> On Mar 30, 2017, at 8:10 PM, Greg Parker wrote: > >> >> On Mar 30, 2017, at 7:09 PM, Carl Hoefs > > wrote: >> >> >>> On Mar 30, 2017, at 6:40 PM, Steve Bird >>

Re: Binary floating point format

2017-03-30 Thread Greg Parker
> On Mar 30, 2017, at 7:09 PM, Carl Hoefs > wrote: > > >> On Mar 30, 2017, at 6:40 PM, Steve Bird wrote: >> >> >>> On Mar 30, 2017, at 8:25 PM, Carl Hoefs >>> wrote: >>> >>> I have megabytes of raw

Re: Binary floating point format

2017-03-30 Thread Carl Hoefs
> On Mar 30, 2017, at 7:04 PM, Greg Parker wrote: > > Simply shuffling VAX bytes and interpreting as an IEEE double would be > misleadingly close but still wrong. You are right. Without anything to go on, it's a hopeless task. I really need to bump this back and try to get

Re: Binary floating point format

2017-03-30 Thread Carl Hoefs
> On Mar 30, 2017, at 6:40 PM, Steve Bird wrote: > > >> On Mar 30, 2017, at 8:25 PM, Carl Hoefs >> wrote: >> >> I have megabytes of raw legacy science datasets that I'm trying to read into >> my app and ingest into an array of doubles.

Re: Binary floating point format

2017-03-30 Thread Greg Parker
> On Mar 30, 2017, at 6:40 PM, Steve Bird wrote: > >> On Mar 30, 2017, at 8:25 PM, Carl Hoefs >> wrote: >> >> I have megabytes of raw legacy science datasets that I'm trying to read into >> my app and ingest into an array of doubles. The

Re: Binary floating point format

2017-03-30 Thread Pascal Bourguignon
> On 31 Mar 2017, at 02:25, Carl Hoefs wrote: > > I have megabytes of raw legacy science datasets that I'm trying to read into > my app and ingest into an array of doubles. The data is supposed to be > organized as a stream of 8-byte doubles. I do not know how

Re: Binary floating point format

2017-03-30 Thread Steve Bird
> On Mar 30, 2017, at 8:25 PM, Carl Hoefs > wrote: > > I have megabytes of raw legacy science datasets that I'm trying to read into > my app and ingest into an array of doubles. The data is supposed to be > organized as a stream of 8-byte doubles. I do not

Re: Binary floating point format

2017-03-30 Thread Greg Parker
> On Mar 30, 2017, at 5:25 PM, Carl Hoefs > wrote: > > I have megabytes of raw legacy science datasets that I'm trying to read into > my app and ingest into an array of doubles. The data is supposed to be > organized as a stream of 8-byte doubles. I do not

Binary floating point format

2017-03-30 Thread Carl Hoefs
I have megabytes of raw legacy science datasets that I'm trying to read into my app and ingest into an array of doubles. The data is supposed to be organized as a stream of 8-byte doubles. I do not know how these datasets were generated, so I don't know what format (big/little endian, byte

Re: Can't use +initialize, now what?

2017-03-30 Thread Saagar Jha
+1 to this idea as well. This works for cases where stuff like awakeFromNib and didFinishLaunching aren’t available, like plugins. Saagar Jha > On Mar 30, 2017, at 03:39, Jonathan Hull wrote: > > >> On Mar 29, 2017, at 4:24 PM, Charles Srstka wrote:

Rect for centered text in UILabel?

2017-03-30 Thread Eric E. Dolecki
I have a very wide UILabel that will take different text over time. Single line. No attributed. I would like to position an image to the left of the first character in the label any time it's updated. So I need to get a CGRect or something of the text within the UILabel itself. I know I did this

Re: Unicode filenames with Apple File System and UIManagedDocument

2017-03-30 Thread davelist
> On Mar 23, 2017, at 8:01 PM, davel...@mac.com wrote: > > >> On Mar 23, 2017, at 12:24 PM, David Duncan wrote: >> >> I just want to remind everyone I’m *not* a file system’s engineer – I’m just >> trying to help Dave (and anyone else caught in this) make sure their

Re: Can't use +initialize, now what?

2017-03-30 Thread Jonathan Hull
> On Mar 29, 2017, at 4:24 PM, Charles Srstka wrote: > >> On Mar 29, 2017, at 3:41 PM, Greg Parker wrote: >> >>> On Mar 29, 2017, at 9:02 AM, Charles Srstka >> > wrote: >>> On Mar

Re: Can't use +initialize, now what?

2017-03-30 Thread Alastair Houghton
On 29 Mar 2017, at 21:17, Jens Alfke wrote: > >> On Mar 29, 2017, at 10:52 AM, Quincey Morris >> wrote: >> >> If willFinishLaunching is not early enough, then you can put code in your >> “main” function, but I don’t know how feasible