zarathustra
Jul 13, 10:14 AM
We had at least 2 or 3 topic with this car in the past few months.
Use the search function.
Still, cool car/mac.
OK, sorry. I DID do a search beforehand and couldn't find a link, so excuse me. I thought it has not been on macrumors because my search turned up nothing.
Search for mac installation in a car. (http://forums.macrumors.com/search.php?searchid=342566)
Use the search function.
Still, cool car/mac.
OK, sorry. I DID do a search beforehand and couldn't find a link, so excuse me. I thought it has not been on macrumors because my search turned up nothing.
Search for mac installation in a car. (http://forums.macrumors.com/search.php?searchid=342566)
SpankyPenzaanz
Mar 28, 09:54 PM
and for free!!!!
Its called nowhere and its from graw1
Its called nowhere and its from graw1
apfhex
May 18, 09:16 PM
other Rumors mainly from the survey taken a while back seem's like there will be a Built in netflix app no disc needed
Great, so we'll have to pay for built-in Netflix just like on the 360? I hope not, esp. since the disc version is already free (though slower and worse than the 360 implementation, for sure).
Great, so we'll have to pay for built-in Netflix just like on the 360? I hope not, esp. since the disc version is already free (though slower and worse than the 360 implementation, for sure).
Pete_Hoover
Jul 1, 09:50 AM
Originally posted by mnkeybsness
for ichat AV you need a firewire camera. it will not work with any usb or usb2 cameras.
That stinks. They shuould make it capable to do video with USB cams. They are cheaper. The quality is not as good, but they are cheaper.
for ichat AV you need a firewire camera. it will not work with any usb or usb2 cameras.
That stinks. They shuould make it capable to do video with USB cams. They are cheaper. The quality is not as good, but they are cheaper.
more...

finalcoolman
Sep 20, 02:16 AM
Well crap. Is Hitler back from the dead or something?
:p
Bad joke. I'm tired. Night-night.
No it wasn't. You made me laugh unexpectedly :eek: :D
:p
Bad joke. I'm tired. Night-night.
No it wasn't. You made me laugh unexpectedly :eek: :D
Joshuarocks
Apr 19, 09:24 AM
Did someone see my post regarding the minor developers? This is worthy to note as the main ones are leaving the PPC realm, while literally 1000's of smaller and minor companies, such as wondershare and others are still making universal binaries for both intel and ppc - a win win if you ask me.
more...
sakasune
Dec 16, 09:32 AM
I happened to have a bad processor on my Dual 2.0 G5 a while back and everytime I reviewed the crash log after a KP, it mentioned the airport and the networking family. I ran hardware test after hardware test and they came up clean. I finally brought it to an Apple store and they told me a processor must have died or the logic board was dying (after bringing it to a so-called Certfied Apple Specialist and they told me it was a software issue...but that's another story). They replaced the bad processor and all was good.
My advice - hardware issues aren't easily fixable at home, bring it to an apple store if you're still in warranty or have applecare.
My advice - hardware issues aren't easily fixable at home, bring it to an apple store if you're still in warranty or have applecare.
Jovian9
Sep 18, 11:49 AM
Thanks for the advice. I did open my 60gb and it feels great to be able to fit everything on it again and backup my full-size photos. I didn't necessarily want a video-iPod but I thought they may just update battery life, functions, design, etc. Here's to at least a few months of no iPod updates since I just bought a new one :)
more...
acedickson
May 4, 01:24 PM
If the M4 is cheaper then go with it. The speeds on SATA II will be comparable.
Blinkwing
Nov 30, 09:13 PM
Had it since the day it came out via dodgy methods.
Like people have said, no reason to limit it to NA up to now ...
Like people have said, no reason to limit it to NA up to now ...
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
moonislune
Sep 22, 04:43 PM
Yes but i want it to work so bad :eek: There has to be someway to make it work and my digital camera has an mpeg record function.
Help i paid $300 bucks for this camrea i doont want to have to spend on isight
You might also try the free osx usb webcam driver. There is a list of supported cams hereclick here (http://webcam-osx.sourceforge.net/)
Hope this helps. Worse comes to worse, you can probably get into a cheap usb cam for about 20-30 $$.
Help i paid $300 bucks for this camrea i doont want to have to spend on isight
You might also try the free osx usb webcam driver. There is a list of supported cams hereclick here (http://webcam-osx.sourceforge.net/)
Hope this helps. Worse comes to worse, you can probably get into a cheap usb cam for about 20-30 $$.
more...
Goldinboy17
Feb 9, 01:58 PM
What good is doing it all at the same time if you can't keep the call connected?;)
None at all. It's a good thing we can.
None at all. It's a good thing we can.
chunhohuen
Apr 22, 02:24 AM
HI everyone, First I want to thanks all the help in here to solve my previous problem:)! It mains a lot to me!;)
Now, I would like to use the preivous program to build a static library and try to test it.
When I finish build the library and apply it for test, there are run times error occured:
1>fortest.obj : error LNK2019: unresolved external symbol "public: void __thiscall login::find(void)" (?find@login@@QAEXXZ) referenced in function _main
There are four of them and I know they are the same things.
I do not know how to fix them....:(
The code:
The header file is :
#include <fstream>
#include <string>
class login
{
public:
void setuser();
void write();
void read();
void find();
private:
char inputusername[99];
};
The code file is :
void find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
more...

Jessica Alba and Cash Warren

Jessica Alba, Cash Warren
more...

Jessica Alba and Cash Warren

Jessica Alba And Cash Warren

Jessica Alba And Cash Warren
Now, I would like to use the preivous program to build a static library and try to test it.
When I finish build the library and apply it for test, there are run times error occured:
1>fortest.obj : error LNK2019: unresolved external symbol "public: void __thiscall login::find(void)" (?find@login@@QAEXXZ) referenced in function _main
There are four of them and I know they are the same things.
I do not know how to fix them....:(
The code:
The header file is :
#include <fstream>
#include <string>
class login
{
public:
void setuser();
void write();
void read();
void find();
private:
char inputusername[99];
};
The code file is :
void find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
more...

lee50539310
May 4, 03:38 AM
Let’s distinguish these adapters:
1)weight and apperance
Origianl: 60W about 230g, 85W about 300g
2 apple logos on each surface, soft white color, words is clear, and AC input side has a metal hat.
http://forums.macrumors.com/picture.php?albumid=225&pictureid=713
http://forums.macrumors.com/picture.php?albumid=225&pictureid=719
http://forums.macrumors.com/picture.php?albumid=225&pictureid=714
Replacement: 60W about 210g, 85W about 270g
Most times without apple logo to avoid Customs. Pure white colors. Words on the bottom is very simple and a little dim. AC input side is a plastic hat.
http://forums.macrumors.com/picture.php?albumid=229&pictureid=753
http://forums.macrumors.com/picture.php?albumid=229&pictureid=752
Refurbish:I only sell one time refurbish with new original circuit and replacement cases.If seller use original used/broken circuit and original case, hard to distinguish if don’t open it. Most time you can find scratches on the suface and the gap between cases are larger.
Someone use high-copy cases, if don’t check carefully you can’t find the difference. Also soft white but words are not smooth as original.
1)weight and apperance
Origianl: 60W about 230g, 85W about 300g
2 apple logos on each surface, soft white color, words is clear, and AC input side has a metal hat.
http://forums.macrumors.com/picture.php?albumid=225&pictureid=713
http://forums.macrumors.com/picture.php?albumid=225&pictureid=719
http://forums.macrumors.com/picture.php?albumid=225&pictureid=714
Replacement: 60W about 210g, 85W about 270g
Most times without apple logo to avoid Customs. Pure white colors. Words on the bottom is very simple and a little dim. AC input side is a plastic hat.
http://forums.macrumors.com/picture.php?albumid=229&pictureid=753
http://forums.macrumors.com/picture.php?albumid=229&pictureid=752
Refurbish:I only sell one time refurbish with new original circuit and replacement cases.If seller use original used/broken circuit and original case, hard to distinguish if don’t open it. Most time you can find scratches on the suface and the gap between cases are larger.
Someone use high-copy cases, if don’t check carefully you can’t find the difference. Also soft white but words are not smooth as original.
ergdegdeg
Mar 9, 06:27 PM
Please look here: MacRumors Pics!
more...
gsfesz
Apr 14, 05:43 AM
Thanks guys really appreciate the help
I'm gonna do a clean install and drap all
My data back
I'm gonna do a clean install and drap all
My data back
kandaala
Apr 26, 04:53 PM
Hello
I am unable to connect my apple wireless keyboard to another mac in my office .....even after disconnecting it from the earlier one.......
the other mac is identifying my mac as available bluetooth device but not my keyboard...(it is turned on)...
can any of you guys help me in figuring out ? am i missing something basic ?
--Thanks
I am unable to connect my apple wireless keyboard to another mac in my office .....even after disconnecting it from the earlier one.......
the other mac is identifying my mac as available bluetooth device but not my keyboard...(it is turned on)...
can any of you guys help me in figuring out ? am i missing something basic ?
--Thanks
citizenzen
Mar 17, 01:39 PM
Nate Phelps is the seventh of the Westboro Baptist minister's 13 children.
Fred's thinking, "I stills gots me twelve mores."
Fred's thinking, "I stills gots me twelve mores."
dantiston
Apr 18, 03:55 PM
I figured it out. I did have everything figured out -- but when I was first setting up the server, I set up our test domain, (church).net to a catchall -- in server admin there was an alias set to *
I deleted the alias, set GoDaddy (which I highly despise) to point to our server, and Ta Da! Works fine.
Moral of the story. Don't use catchalls.
I deleted the alias, set GoDaddy (which I highly despise) to point to our server, and Ta Da! Works fine.
Moral of the story. Don't use catchalls.
Designer Dale
Mar 22, 02:42 PM
ISO, Gain Factor, Sensitivity, blah, blah, blah.
Whatever word/phrase one uses, it would still need to be defined.
Or one could put the cam on auto ISO and put a piece of electrical tape over the ISO button :)
Shocking!
Dale
Whatever word/phrase one uses, it would still need to be defined.
Or one could put the cam on auto ISO and put a piece of electrical tape over the ISO button :)
Shocking!
Dale
Angelus520
Sep 23, 08:38 AM
I just unpacked my 20" iMac last night after work and all I can say is, "OMG, it's big!" You don't really notice it in the store next to all the open space and the other computers, but it's definitely bigger than I expected. But it's SO awesome! Before I even plugged it in, I stuck an extra 1GB of RAM in it and then transferred all my files over from my PowerBook. That's SO slick.
Then I went through all the system updates and played around with some Photoshop and InDesign files and they opened nice and quick and looked gorgeous on the screen.
I also bought an iLugger bag since I'll be using it for DJing on occasion with tomorrow being the first time. I know it's a bit big for that but I wanted to upgrade from my PowerBook and didn't see the need to get a new one until the next major revision. The iMac will tide me over just fine.
It's hard to go back to my now little PowerBook's 15" screen after gazing at the vast amount of real estate on the iMac. Definitely a sweet upgrade.
Then I went through all the system updates and played around with some Photoshop and InDesign files and they opened nice and quick and looked gorgeous on the screen.
I also bought an iLugger bag since I'll be using it for DJing on occasion with tomorrow being the first time. I know it's a bit big for that but I wanted to upgrade from my PowerBook and didn't see the need to get a new one until the next major revision. The iMac will tide me over just fine.
It's hard to go back to my now little PowerBook's 15" screen after gazing at the vast amount of real estate on the iMac. Definitely a sweet upgrade.
PalmHarborTchr
Jan 2, 03:41 PM
No I am not.
Psilocybin
Apr 17, 04:55 PM
I agree with above
No comments:
Post a Comment