Paintball613
Mar 19, 12:50 AM
You have to be 18 to work there.
If you want to survive, then just don't do part-time. Full time spots at Apple retail are extremely hard to come by.
If you want to survive, then just don't do part-time. Full time spots at Apple retail are extremely hard to come by.
galimk
Apr 23, 05:30 PM
Look in your book for exactly what you're supposed to use for #import. You may have made a mistake.
I'm not sure, but #import <Fraction.h> seems wrong to me. If Fraction.h were a system-provided class, it would be correct. But it's a developer-created class, so #import "Fraction.h" seems more sensible to me, and is what I've always used when referring to class headers I create.
Post your code.
No one with any programming experience would believe anyone (beginner or experienced) who says there are no compilation errors, unless the code has actually been compiled without errors. You may be right, but we need to see the evidence of the compiler.
Thanks! Your answer helped. So now I know that <**> are only for system provided classes. I used quotes for Fraction.h and it worked.
The example that I used had everything dumped in the main .m file along with the main function.
I'm not sure, but #import <Fraction.h> seems wrong to me. If Fraction.h were a system-provided class, it would be correct. But it's a developer-created class, so #import "Fraction.h" seems more sensible to me, and is what I've always used when referring to class headers I create.
Post your code.
No one with any programming experience would believe anyone (beginner or experienced) who says there are no compilation errors, unless the code has actually been compiled without errors. You may be right, but we need to see the evidence of the compiler.
Thanks! Your answer helped. So now I know that <**> are only for system provided classes. I used quotes for Fraction.h and it worked.
The example that I used had everything dumped in the main .m file along with the main function.
That-Is-Bull
Oct 26, 02:43 PM
I'll be there if I can. Is there going to be a line at launch?
irok233
Jun 20, 11:42 PM
hey just wondering if anyone is going to the apple store in lehigh valley pa caus im going on launch and just wondering if anyone else is going:cool:
more...
lee1210
Mar 25, 11:03 AM
You can perform conversions from any number system in the same way. Each position has a value based on it's distance from the . separating the whole portion from the fractional portion (decimal point in decimal). The position just to the left of this point is the 0th position, and this goes up as you move left and down as you move right, so:
1076.235
Position 3: 1
Position 2: 0
Position 1: 7
Position 0: 6
Position -1: 2
Position -2: 3
Position -3: 5
Each position's value is the base of the numbering system raised to the power of this position, so:
1*(x^3) + 0*(x^2) + 7*(x^1) + 6*(x^0) + 2*(x^-1) + 3*(x^-2) + 5*(x^-3)
so let's say this is an octal value:
1*(8^3) + 0*(8^2) + 7*(8^1) + 6*(8^0) + 2*(8^-1) + 3*(8^-2) + 5*(8^-3)
1*512 + 0*64 + 7*8 + 6*1 + 2*(1/8) + 3*(1/64) + 5*(1/512)
512 + 0 + 56 + 6 + 1/4 + 3/64 + 5/512
574 + 128/512 + 24/512 + 5/512
574 + 157/512
~574.306641 base 10 equals (approximately) 1076.235 base 8
Chances are the bases you'll deal with are 2,8,10, and 16. Even base 8 has fallen out of favor, but i guess it's worth working with. If you're doing this by hand, and you're moving between 2,8, and 16 there are some "tricks". Every octet is 3 bits, every hexit is 4 bits. Knowing this you can do conversions from either of these bases to base 2 or back again pretty quickly and easily with grouping. Note that between 2,8, and 16 you can exactly represent anything from one of these bases in one of the others. This isn't so with base 10, so we end up making approximations because converting from one of the other bases to base 10 can give us an irrational number, and some decimal numbers with a fractional part cannot be represented in binary at all, so they have to be estimated.
-Lee
1076.235
Position 3: 1
Position 2: 0
Position 1: 7
Position 0: 6
Position -1: 2
Position -2: 3
Position -3: 5
Each position's value is the base of the numbering system raised to the power of this position, so:
1*(x^3) + 0*(x^2) + 7*(x^1) + 6*(x^0) + 2*(x^-1) + 3*(x^-2) + 5*(x^-3)
so let's say this is an octal value:
1*(8^3) + 0*(8^2) + 7*(8^1) + 6*(8^0) + 2*(8^-1) + 3*(8^-2) + 5*(8^-3)
1*512 + 0*64 + 7*8 + 6*1 + 2*(1/8) + 3*(1/64) + 5*(1/512)
512 + 0 + 56 + 6 + 1/4 + 3/64 + 5/512
574 + 128/512 + 24/512 + 5/512
574 + 157/512
~574.306641 base 10 equals (approximately) 1076.235 base 8
Chances are the bases you'll deal with are 2,8,10, and 16. Even base 8 has fallen out of favor, but i guess it's worth working with. If you're doing this by hand, and you're moving between 2,8, and 16 there are some "tricks". Every octet is 3 bits, every hexit is 4 bits. Knowing this you can do conversions from either of these bases to base 2 or back again pretty quickly and easily with grouping. Note that between 2,8, and 16 you can exactly represent anything from one of these bases in one of the others. This isn't so with base 10, so we end up making approximations because converting from one of the other bases to base 10 can give us an irrational number, and some decimal numbers with a fractional part cannot be represented in binary at all, so they have to be estimated.
-Lee
jaseone
Dec 20, 09:54 PM
I can remember reading about finger print scanners easily and consistently being able to fbe fooled, I think in particular it was those PDA based ones (google for it), they are NOT foolproof at all and using them for security purposes is simply a bad idea. At least on their own they would be fairly useless, with a separate passcode that pairs with the finger print the security would improve but still I wouldn't bother.
It's like at work we have smartcards that we can use for logon purposes but still need a passcode as well that just seems like a pointless exercise to me sure it adds another layer of security but not another good layer so why bother?
It's like at work we have smartcards that we can use for logon purposes but still need a passcode as well that just seems like a pointless exercise to me sure it adds another layer of security but not another good layer so why bother?
more...
Mavimao
Feb 15, 05:15 PM
Stop Making Sense by the Talking Heads
nyzwerewolf
Apr 21, 07:52 PM
Ok, here is the issue. I have a MacBook Pro 15 inch 2.4 Core 2 Duo (late 2007 model) with 6GB of RAM (DDR2 667). I don't know how to explain this because I am so pissed! Ok so let me try. Take a look at this screenshot.
http://img808.imageshack.us/img808/6137/screenshot20110421at839.png (http://img808.imageshack.us/i/screenshot20110421at839.png/)
It says Used 5.97GB and Inactive 2.07GB. WTF? why cant it release that 2.07GB? I cant open other apps because there is only 28.6MB of memory FREE.. I know the Inactive Memory is there so it helps the frequently opened apps to start faster.. but what if I want to open apps that I don't frequently open?
WTF do I do? Is there something screwed up in my OS or is this how OS X manage memory?:mad:
Sorry for expressing my frustration..
http://img808.imageshack.us/img808/6137/screenshot20110421at839.png (http://img808.imageshack.us/i/screenshot20110421at839.png/)
It says Used 5.97GB and Inactive 2.07GB. WTF? why cant it release that 2.07GB? I cant open other apps because there is only 28.6MB of memory FREE.. I know the Inactive Memory is there so it helps the frequently opened apps to start faster.. but what if I want to open apps that I don't frequently open?
WTF do I do? Is there something screwed up in my OS or is this how OS X manage memory?:mad:
Sorry for expressing my frustration..
more...
sorryiwasdreami
Nov 3, 11:52 PM
On the "One more thing" invitation page, you say iMac with "Frontpage;" I think you mean "front row?"
If not, my apologies.
If not, my apologies.
Motionblurrr
Jun 21, 09:49 AM
Hey!
Anyone planning on going to the Apple store in Reston VA this thursday? I pre-ordered my phone and plan on swinging by before work at around ~6:30.
I know some Macrumors users live in the area because when I went to go play with an iPad, I punched in www.macrumors.com and it popped up in the history lol.
Hahah that was me :-). I played on their iPad and went to this site debating if I should get one or not.
I already preordered my iPhone 4, but I curious how crazy it's gonna be there.
Anyone planning on going to the Apple store in Reston VA this thursday? I pre-ordered my phone and plan on swinging by before work at around ~6:30.
I know some Macrumors users live in the area because when I went to go play with an iPad, I punched in www.macrumors.com and it popped up in the history lol.
Hahah that was me :-). I played on their iPad and went to this site debating if I should get one or not.
I already preordered my iPhone 4, but I curious how crazy it's gonna be there.
more...
iserian
Mar 11, 05:32 PM
Are you sure that you aren't at the back of the line standing the wrong way? :confused:
Lmao.
Lmao.
mnkeybsness
Jul 11, 06:49 PM
this worked for me at the screen saver password prompt. another issue that apple really needs to address.
more...
MacBytes
Dec 27, 03:38 PM
http://www.macbytes.com/images/bytessig.gif (http://www.macbytes.com)
Category: Apple Hardware
Link: One-in-five will buy second [or third] iPad (http://www.macbytes.com/link.php?sid=20101227163857)
Description:: For a significant minority, once they�ve gotten a taste of the Cupertino Cool-Aid� their thirst only grows. Alternately, it could be that the more you use iPad, the more uses you find for it � i.e. it�s better than what you were using. Whatever the case, haters are gonna hate and the fanbois?
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
Category: Apple Hardware
Link: One-in-five will buy second [or third] iPad (http://www.macbytes.com/link.php?sid=20101227163857)
Description:: For a significant minority, once they�ve gotten a taste of the Cupertino Cool-Aid� their thirst only grows. Alternately, it could be that the more you use iPad, the more uses you find for it � i.e. it�s better than what you were using. Whatever the case, haters are gonna hate and the fanbois?
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
eva01
Sep 23, 01:55 PM
i find it very funny that some scientists have actually stated that we are in a mini iceage and that the earth has gotten colder over the past 6000 years but now after ten years of it getting minutely hotter its turned into......OMFGBBQ!!!one11
more...
OutThere
Dec 3, 10:34 PM
here are some pics:
more avalible upon request...
the processor is celeron.
the computer does come with a working battery that holds 46 min. of charge as well, as an extra battary cover, a phone cord, and ethernet cord, the power adapter, an external mouse., and if I can find it, a copy of windows ME will also be included. This computer has been very well taken care of by me, but I switched to mac, so I don't need this anymore :)
:eek: Windows Me! *cries in the corner*
more avalible upon request...
the processor is celeron.
the computer does come with a working battery that holds 46 min. of charge as well, as an extra battary cover, a phone cord, and ethernet cord, the power adapter, an external mouse., and if I can find it, a copy of windows ME will also be included. This computer has been very well taken care of by me, but I switched to mac, so I don't need this anymore :)
:eek: Windows Me! *cries in the corner*
GLS
Apr 23, 08:05 PM
You can eventually control the alien mothership in space with 64GB of RAM.
Jeff Goldblum brought down an entire alien fleet with less than 64GB.....
http://d2o7bfz2il9cb7.cloudfront.net/main-qimg-1996deb31129c1d6595d9b6ca1d722f0
Jeff Goldblum brought down an entire alien fleet with less than 64GB.....
http://d2o7bfz2il9cb7.cloudfront.net/main-qimg-1996deb31129c1d6595d9b6ca1d722f0
more...
Joshuarocks
Apr 2, 08:32 PM
Hello,
Ashley Williams
actress Ashley Williams
acfusion29
May 3, 08:03 PM
maybe it's in recovery mode?
try kicking it out of recovery with tinyumbrella
try kicking it out of recovery with tinyumbrella
Markleshark
Oct 17, 04:03 AM
Wheres the 24"?
*Sigh* You didn't read the thread/posts did you?
*Sigh* You didn't read the thread/posts did you?
macpro2000
Aug 3, 11:12 AM
It's true...Apple will correct the issues...it's just when?
cpucrash0
May 1, 06:40 PM
I hope it's announced in june I really want a new iPhone and I don't want a white iphone 4 because I already have a black iPhone 4 so what's the point in getting the same one. I want an iPhone 5.
Dagless
Mar 20, 11:29 AM
I suppose if you buy a lot of PSN games the huge console price increase from US to UK doesn't seem as bad.
How is the Lemmings game? Is it actually Lemmings at 3*6 pixels small or the **** stains on the PSP one? Can you use a mouse? Is it a 'best of' or a port of a previous Lemmings?
I love Lemmings :)
How is the Lemmings game? Is it actually Lemmings at 3*6 pixels small or the **** stains on the PSP one? Can you use a mouse? Is it a 'best of' or a port of a previous Lemmings?
I love Lemmings :)
infidel69
Apr 15, 01:06 PM
The stock analysts have target prices on Apple as high as $550.
I have absolutely no doubt that will happen, so I am holding my large position in Apple.
A broker can give you suggestions how to buy without a SS#.
Apple stock hasn't done anything this year.Whatever you do don't put all your money in one stock. Wait for Ford to drop a little more because of the recall and then buy their stock instead. I purchased a thousand shares back in 08 when it was $2.08 and now I wish I would of bought more.
I have absolutely no doubt that will happen, so I am holding my large position in Apple.
A broker can give you suggestions how to buy without a SS#.
Apple stock hasn't done anything this year.Whatever you do don't put all your money in one stock. Wait for Ford to drop a little more because of the recall and then buy their stock instead. I purchased a thousand shares back in 08 when it was $2.08 and now I wish I would of bought more.
The Black Rock
Mar 31, 08:25 AM
TEST
http://pdl.stream.aol.com/aol/us/moviefone/movies/2004/lucasfilm/hyperspace/rednalob_480_r_dl.mov
http://pdl.stream.aol.com/aol/us/moviefone/movies/2004/lucasfilm/hyperspace/rednalob_480_r_dl.mov
No comments:
Post a Comment