Joeski
Oct 26, 03:03 PM
We're waiting with the kid with the fro, fourth in line
http://i34.photobucket.com/albums/d141/catacombs16/Photo8.jpg
http://i34.photobucket.com/albums/d141/catacombs16/Photo9.jpg
http://i34.photobucket.com/albums/d141/catacombs16/Photo3.jpg
http://i34.photobucket.com/albums/d141/catacombs16/Photo8.jpg
http://i34.photobucket.com/albums/d141/catacombs16/Photo9.jpg
http://i34.photobucket.com/albums/d141/catacombs16/Photo3.jpg
mdodd
Dec 18, 09:49 PM
Hey, I am attending Macworld, but am under 18..
Where is this MeetUp going to be?
Can I not go?
Where is this MeetUp going to be?
Can I not go?
mbl42
Dec 7, 10:23 PM
Interested in the Apple Floppy Drive. Could you snap some photos? How much will shipping and handling be to 94303 via USPS? Thanks.
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
misfit356tsw
Jan 21, 10:29 PM
They also did Epson printer drivers. I was waiting patiently for them because the drivers prior were all but broken.
fayans
Sep 23, 04:38 PM
Happy Switching! ;)
mddharma
Sep 19, 07:26 PM
Also, does anyone have an Apple Studio monitor hooked up to titanium PB? I have one of those and I am planning to get a new 12" PB.
bwrairen
Mar 26, 10:15 PM
Visit http://www.unlockit.co.nz/ in safari on your ipad and follow the directions there. The APN can be changed.
hotsnuglemonstr
Jun 23, 09:28 AM
I think I'll be there... no so bright but quite early.
sineplex
Sep 25, 06:18 PM
Same here! I was using an app that provided me 20% on a merchandise and the sales asked me how I got it on my "iPhone." :rolleyes::D
what was the app? sounds interesting.
what was the app? sounds interesting.
dscuber9000
May 25, 07:55 PM
Almost five years late, my friend. :D
Poisoned1
May 4, 09:44 PM
Well, if you don't need edit away from home the iMac would be better just cause of it's specs and screen size. The macbook air would work if you needed to edit on-the-go. Also if you have a large amount of photos/videos the iMac could hold it all. With the mba you most likely would need to bring along a portable external hdd.
karsten
Nov 19, 01:13 AM
any idea if/when this might happen for f@h? it'd be pretty cool
ulbador
Feb 24, 10:17 AM
So at one point in my code, I use mysqli_ping() to check if a connection to mysql is still alive. In C, doing this will actually reconnect the connection if it dies, but with PHP it just returns true or false, which is fine.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
PixelOz
Feb 26, 04:10 PM
Updated to version 1-1: Final correction. I repositioned the computer display to a better location which I wanted to do for quite a while and I also raised the level of the grids on the floor a little bit cause they were a tad too low.
Now the 3 variants that I did (I did an Apple an Atari and also an Amiga version of this design with different colors and illumination) have the computer display in the same position. These are the updated links (well actually only the direct link to the file in Mediafire changes):
Direct link Deviantart:
http://fav.me/d36deof
Direct link to Mediafire:
http://www.mediafire.com/?6qjr6gj9mhagob6
Again, in Deviantart if you want to see my whole folder with the other wallpapers of this series and my other free things:
http://pixeloz.deviantart.com/
There in Deviantart click on the Browse Gallery button if you want to see all the other things.
And the whole Mediafire folder:
http://www.mediafire.com/?xym304qv5byua
Now the 3 variants that I did (I did an Apple an Atari and also an Amiga version of this design with different colors and illumination) have the computer display in the same position. These are the updated links (well actually only the direct link to the file in Mediafire changes):
Direct link Deviantart:
http://fav.me/d36deof
Direct link to Mediafire:
http://www.mediafire.com/?6qjr6gj9mhagob6
Again, in Deviantart if you want to see my whole folder with the other wallpapers of this series and my other free things:
http://pixeloz.deviantart.com/
There in Deviantart click on the Browse Gallery button if you want to see all the other things.
And the whole Mediafire folder:
http://www.mediafire.com/?xym304qv5byua
simsaladimbamba
Apr 7, 07:43 AM
Perhaps I need to be a tad bit clearer.Uhh
-40% of the time I go into a fresh install of windows,I cannot eject(To install mac drivers
-The option key USED to allow me to eject first before i went into windows
-I'll most probably be unable to go back to mac after installation of windows cuz of the option key being unable to work
Okay. Maybe I am too daft to fully understand you.
Can't you right click on the ODD icon in Windows Explorer?
http://www.ghacks.net/wp-content/uploads/2008/12/mount_iso-500x399.gif
Are both Option keys not working? Have your tried another external USB keyboard? Even a Windows keyboard will work.
And to be absolutely sure, and so I understand correctly, as this is new to me, you were able to eject any optical media inside the ODD by just pressing the OPTION key during the boot process into Windows (after you restarted the Mac and chose to boot Windows)?
If you have successfully installed the Windows drivers from the Mac OS X DVD, then you can use the Boot Camp Utility in the Task Bar to restart into Mac OS X.
-40% of the time I go into a fresh install of windows,I cannot eject(To install mac drivers
-The option key USED to allow me to eject first before i went into windows
-I'll most probably be unable to go back to mac after installation of windows cuz of the option key being unable to work
Okay. Maybe I am too daft to fully understand you.
Can't you right click on the ODD icon in Windows Explorer?
http://www.ghacks.net/wp-content/uploads/2008/12/mount_iso-500x399.gif
Are both Option keys not working? Have your tried another external USB keyboard? Even a Windows keyboard will work.
And to be absolutely sure, and so I understand correctly, as this is new to me, you were able to eject any optical media inside the ODD by just pressing the OPTION key during the boot process into Windows (after you restarted the Mac and chose to boot Windows)?
If you have successfully installed the Windows drivers from the Mac OS X DVD, then you can use the Boot Camp Utility in the Task Bar to restart into Mac OS X.
Full of Win
Jul 8, 09:27 AM
Looks-wise, the Apple Pro Mouse has to be one of the most beautiful ever made.
Unorthodox
Oct 16, 06:11 PM
Eh, if nobody likes it at least we had fun trying to tape it like 50 times.
I'll be posting bloopers that happened during recording probably tomorrow seeing as we have another snow day in 60�*weather :D.
It's amazing how a 45 second video clip can take 300 takes when you're doing it with a friend/s. :)
Did you fight over who got to be Mac?
Now that might be funny.
"I'm a Mac."
"No, I'm a Mac."
"No, I'm a Mac."
"I'M A MAC!"
"You're a PC and I'm a Mac!"
"Insults will get you nowhere."
"You're a PC. You're a PC."
"TAKE THAT BACK!"
"PC! PC! PC!"
"Mac! Mac! Mac!"
"PC! PC! PC!"
I'll be posting bloopers that happened during recording probably tomorrow seeing as we have another snow day in 60�*weather :D.
It's amazing how a 45 second video clip can take 300 takes when you're doing it with a friend/s. :)
Did you fight over who got to be Mac?
Now that might be funny.
"I'm a Mac."
"No, I'm a Mac."
"No, I'm a Mac."
"I'M A MAC!"
"You're a PC and I'm a Mac!"
"Insults will get you nowhere."
"You're a PC. You're a PC."
"TAKE THAT BACK!"
"PC! PC! PC!"
"Mac! Mac! Mac!"
"PC! PC! PC!"
secksthoi
May 3, 02:21 PM
What are some precautions I should take before selling my Air? Beyond wiping my SSD what else do I need to do to make sure my data is securely erased?
MattDSLR
Apr 23, 09:32 PM
Lighroom
mgartner0622
Apr 8, 07:57 PM
Most likely, the buyer will send you back a Core 2 Duo machine and keep your i5. Did you jot down the serial number with pictures before you sent the computer to him/her?
Yes, I did. But I listed the item as "as-is" with no returns. Is there any way the buyer can get around this?
Yes, I did. But I listed the item as "as-is" with no returns. Is there any way the buyer can get around this?
daryliow
Jun 21, 04:01 PM
+1 for the O2 store
What time you heading there for? You think there will be many others?
What time you heading there for? You think there will be many others?
philipt42
Aug 21, 09:56 PM
I second Amazon. I've gotten (usable) CDs for 10 cents. People just get rid of their cds for hardly any money.
xxRONNIExx
Apr 7, 11:09 PM
Okay thank you for your help I'll try SD...I also heard about CCC, i wonder which is the best to use. I'll do a little more research. I have a lot of iTunes music and i dont want to lose it.
Maybe the best thing I should do is wait until I get the iMac first, transfer everything then give it away. Or better yet take it to a apple genius and let them do it for me...??
Maybe the best thing I should do is wait until I get the iMac first, transfer everything then give it away. Or better yet take it to a apple genius and let them do it for me...??
ليست هناك تعليقات:
إرسال تعليق