aschuett
Jan 17, 08:46 AM
I have been waiting to hear the results from the Final Cut meeting last night. I haven't heard anyone celebrating the release of FC Server, or any other cool FC-related anything.
Does anyone know what ever came of this "secret announcement?"
Does anyone know what ever came of this "secret announcement?"
adbe
Jul 23, 12:20 PM
Anyword on the "rumored" marble interface that was reported awhile back?
Seconded. I currently do all my development in VS 2008 then port to XCode and Linux at compilation time. I'd like to switch to XCode for development, but I just prefer VS2008. I'm eager to see if XCode 4 will suit my needs better than where the Express version at least has been irritating me already. I prefer all in one displays for IDEs, and XCode 3's interpretation of AIO is a mess IMHO.
Seconded. I currently do all my development in VS 2008 then port to XCode and Linux at compilation time. I'd like to switch to XCode for development, but I just prefer VS2008. I'm eager to see if XCode 4 will suit my needs better than where the Express version at least has been irritating me already. I prefer all in one displays for IDEs, and XCode 3's interpretation of AIO is a mess IMHO.
boss.king
May 5, 04:30 AM
I laughed
5300cs
Sep 4, 06:50 AM
Ahh, I don't know if 'StuffIt' would be such a good company name. Though come to think of it, 'Allume' isn't much better :rolleyes:
more...
Oppressed
May 2, 07:43 PM
I use the one found in the link below. I love it. It is MADE for the 11'' MBA. Fits the computer perfectly.
http://www.fossil.com/en_US/shop/men/bags/messenger_bags/scout_slim_portfolio_brief-mbg1367p.html?parent_category_rn=30011&departmentCategoryId=30001&N=0&Ns=p_msc2|0||p_weight|0&pn=c&rec=4&imagePath=MBG1367220
http://www.fossil.com/en_US/shop/men/bags/messenger_bags/scout_slim_portfolio_brief-mbg1367p.html?parent_category_rn=30011&departmentCategoryId=30001&N=0&Ns=p_msc2|0||p_weight|0&pn=c&rec=4&imagePath=MBG1367220
Mousse
Apr 14, 11:22 AM
Who's gonna pay the dry cleaning bills for all the "brown trousers" on the Comair flight?:eek:
From now on, I'll have my seat belts on at ALL times while on a plane.
From now on, I'll have my seat belts on at ALL times while on a plane.
more...
tablo13
Mar 14, 10:36 PM
Succeeded with an iPod touch 2nd gen 8GB 4.2.1, took longer but Cydia actually installed this time. Tried with an iPod touch 4th gen 4.1, and loader doesn't load. All done with RC6 except the first one.
chaos86
Mar 29, 05:00 PM
1) build computer with head
2) set it up to start a vnc server on startup so you can control it's screen from another computer, in case you want to do something on it without getting another screen out.
3) start it folding
4) decapitate
2) set it up to start a vnc server on startup so you can control it's screen from another computer, in case you want to do something on it without getting another screen out.
3) start it folding
4) decapitate
more...
kilidar
May 5, 03:22 PM
if you get a google voice number (FREE) and download that app on your ipad you can use that number to text.
I have google voice on my iphone and ipad and use it to text because it is 100% free!
Can u receive replies?
I have google voice on my iphone and ipad and use it to text because it is 100% free!
Can u receive replies?
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.
more...
zen.state
Mar 7, 01:24 PM
Does this work only for YouTube videos or can it be used with other video sources?
Only works for youtube. Sorry.
Only works for youtube. Sorry.
iPoster
Mar 29, 04:46 PM
I have seen it mentioned by other folders, but I have no idea where to begin. I imagine it's similar to building a home server, but I have never done that before either.
I'm asking because I have some old 'puter parts lying around doing nothing useful at the moment, that I thought I could build into something that would sit in a quiet corner of the house and fold.
Any suggestions? :confused:
I'm asking because I have some old 'puter parts lying around doing nothing useful at the moment, that I thought I could build into something that would sit in a quiet corner of the house and fold.
Any suggestions? :confused:
more...
BobArctor
Oct 25, 07:41 AM
Hi everyone!
Fellow Australian here... I will hopefully be at the Ginza store as soon as possible after work. Hopefully the trains aren't too packed.
Can't wait!
Fellow Australian here... I will hopefully be at the Ginza store as soon as possible after work. Hopefully the trains aren't too packed.
Can't wait!
okrelayer
Apr 6, 08:08 PM
What are some of your favorite brands in your life. Apple is a given, but what others? Are you into Voss drinking water? Do you only wear Prada? Things like Favorite Tech brands, Clothing, Restaurants, Watches, LAMPS! Whatever your into! Just curious..
more...
Mr. Anderson
Jul 23, 10:06 AM
all the forums were shut down for an hour or two, so it might not have been a mistake, it might have been for everybody.
elppa
Feb 3, 04:08 PM
<!-- Testimonial/Quote -->
<div class="quote">
<div class="quoteBox-1">
<div class="quoteBox-2">
<p><?php echo $quote; ?></p>
</div>
</div>
</div>
<div class="quoteAuthor">
<p class="name"><?php echo $author; ?></p>
<p class="details"><?php echo $details; ?></p>
</div>
<p><a href="/wordpress/?page_id=343">View more testimonials »</a></p>
<div class="hr"></div>
<div class="quote">
<div class="quoteBox-1">
<div class="quoteBox-2">
<p><?php echo $quote; ?></p>
</div>
</div>
</div>
<div class="quoteAuthor">
<p class="name"><?php echo $author; ?></p>
<p class="details"><?php echo $details; ?></p>
</div>
<p><a href="/wordpress/?page_id=343">View more testimonials »</a></p>
<div class="hr"></div>
more...
chunhohuen
Apr 22, 08:05 AM
I'm surprised this compiles (i.e. that you only get errors when linking). The line
string input=inputusername;
must have thrown an error at you, since "inputusername" is not visible to functions outside the class.
Where you define the code, you need to put in classname::functionname
Do this for every function you define. This need not be done if you are within the class declaration.
void login::find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
if( input_line.compare(input) == 0 ) {
cout << "The name " << input_line << " was found in file.\n";
found = true;
break;
}
}
Thank you very much !;)!
It can work now :p!
string input=inputusername;
must have thrown an error at you, since "inputusername" is not visible to functions outside the class.
Where you define the code, you need to put in classname::functionname
Do this for every function you define. This need not be done if you are within the class declaration.
void login::find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
if( input_line.compare(input) == 0 ) {
cout << "The name " << input_line << " was found in file.\n";
found = true;
break;
}
}
Thank you very much !;)!
It can work now :p!
trainguy77
Nov 12, 01:18 PM
Intel only.... @#%$&*!
well at least we know have a client to fold with.....Before we had to fold in rosetta.
well at least we know have a client to fold with.....Before we had to fold in rosetta.
King Cobra
Sep 8, 07:47 PM
I agree with the previous three posts. And I think late Sep./Early October would be an excellent date.
This past Friday a classmate had a look at the iBook I brought to class and said he was going to get a Mac. :) He said that he hates desktops and wants to do something with Photography, but not for heavy usage. I recommended him to wait until Sep/Oct until new iBooks are released, so he (1) can get an older one cheap, or (2) get the fastest one.
This past Friday a classmate had a look at the iBook I brought to class and said he was going to get a Mac. :) He said that he hates desktops and wants to do something with Photography, but not for heavy usage. I recommended him to wait until Sep/Oct until new iBooks are released, so he (1) can get an older one cheap, or (2) get the fastest one.
iJohnHenry
Feb 8, 10:05 AM
Come again?
No, once was sufficient. At least his death was not in vain.
No, once was sufficient. At least his death was not in vain.
entatlrg
Apr 25, 06:41 PM
I agree completely. Enjoy your new Birthday gift.
No one but Apple knows a date, what SB will or won't bring or anything at this point.
To many uncertainties ... now the speed is good, so is the heat and fan noise ... best we've ever seen on the Airs.
Have fun.
No one but Apple knows a date, what SB will or won't bring or anything at this point.
To many uncertainties ... now the speed is good, so is the heat and fan noise ... best we've ever seen on the Airs.
Have fun.
mr evil brkfast
Sep 25, 07:06 PM
No. I think the 1Ghz is the better deal.
I really like the value of the 867- finally a non-crippled Pro machine at $1699 or $2699 in Canada is great. I'd wait until the next upgrade to even consider the top of the line.
I really like the value of the 867- finally a non-crippled Pro machine at $1699 or $2699 in Canada is great. I'd wait until the next upgrade to even consider the top of the line.
bwawn
Jul 12, 01:56 PM
This is how I did it on my iBook about a year ago. However, you must be VERY careful with this method... it could screw up your system severely if not done correctly! For that reason, I recommend not doing this method if you're uncomfortable with the possible outcomes from the mistakes and waiting until someone posts an alternative way. However, if you ARE comfortable...
Open up the Terminal.
Type in the following:
cd /
sudo rm -rf "System Folder"
Exactly like that, quotes and everything. You will be prompted for a password after entering the last line.
This deletes everything, without question, from "System Folder" which is your Mac OS 9 folder. Making a slight mistake and entering rm -rf "System" will delete your entire OS X system folder! So once again, I advise being extremely careful with this method, and finding an alternative if you are uncomfortable with it.
Open up the Terminal.
Type in the following:
cd /
sudo rm -rf "System Folder"
Exactly like that, quotes and everything. You will be prompted for a password after entering the last line.
This deletes everything, without question, from "System Folder" which is your Mac OS 9 folder. Making a slight mistake and entering rm -rf "System" will delete your entire OS X system folder! So once again, I advise being extremely careful with this method, and finding an alternative if you are uncomfortable with it.
Scott90
Apr 30, 02:41 AM
Your baseband is not an exclusive version :/ It is in the family of sad un-unlockable children. Your brothers and sisters are 02.10 and 04.10. The golden child is 01.59.
Haha sorry, it's late t__t but yeah, unless they are magically able to unlock only 03.10, I don't see retaining the bb as any real value.
So the real question is, how big is the chance that a potential new unlock will only unlock 03.10 (and 02.10, which is what I am at)?
I'm kind of debating just updating to 4.3.2 (4.3.1 now) without baseband preservation and then hope a new unlock will unlock everything up until then. It's kind of a pain to update to a new version with baseband preservation, having to completely restore and resync everything...
Haha sorry, it's late t__t but yeah, unless they are magically able to unlock only 03.10, I don't see retaining the bb as any real value.
So the real question is, how big is the chance that a potential new unlock will only unlock 03.10 (and 02.10, which is what I am at)?
I'm kind of debating just updating to 4.3.2 (4.3.1 now) without baseband preservation and then hope a new unlock will unlock everything up until then. It's kind of a pain to update to a new version with baseband preservation, having to completely restore and resync everything...
No comments:
Post a Comment