wdlove
Sep 18, 06:53 PM
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 :)
I wish you all the best. Sounds as though you made a wise decision.
I wish you all the best. Sounds as though you made a wise decision.
JoeG4
Jul 6, 02:07 AM
I dunno about the CW, but the F is one of the coolest running laptops I've used.
http://lh4.ggpht.com/_zZDRx0MKYqE/TDLWJ7RyASI/AAAAAAAAAjM/gbV83uDtMBw/temps.jpg
Granted, that's just doing normal stuff. Ok, so I decided to see if anyone had a record:
http://www.monteverde.org/images/Sony_Vaio_F11/Fan_Speed_Stress_CPU_GPU_Flat_Desk.JPG
That's.. toasty lol
http://forum.notebookreview.com/sony-owners-lounge-forum/487213-official-sony-vaio-f-series-i5-i7-owners-thread-part-3-a-136.html#post6425624
Check this stuff out:
http://www.notebookcheck.net/Review-Sony-Vaio-VPC-F11Z1-E-Notebook.25724.0.html
http://www.notebookcheck.net/Review-Apple-MacBook-Pro-15-inch-i7-2010-04-Notebook.30506.0.html
http://lh4.ggpht.com/_zZDRx0MKYqE/TDLWJ7RyASI/AAAAAAAAAjM/gbV83uDtMBw/temps.jpg
Granted, that's just doing normal stuff. Ok, so I decided to see if anyone had a record:
http://www.monteverde.org/images/Sony_Vaio_F11/Fan_Speed_Stress_CPU_GPU_Flat_Desk.JPG
That's.. toasty lol
http://forum.notebookreview.com/sony-owners-lounge-forum/487213-official-sony-vaio-f-series-i5-i7-owners-thread-part-3-a-136.html#post6425624
Check this stuff out:
http://www.notebookcheck.net/Review-Sony-Vaio-VPC-F11Z1-E-Notebook.25724.0.html
http://www.notebookcheck.net/Review-Apple-MacBook-Pro-15-inch-i7-2010-04-Notebook.30506.0.html
MacFan25863
Dec 24, 02:29 AM
Anyone else notice that they use pictures of 4G iPods? Take a look Here (http://images.apple.com/support/ipod/elements/banners/ipod_foldericon.gif).
I find that interesting...why not use newer iPods?
I find that interesting...why not use newer iPods?
zweigand
Apr 6, 11:54 PM
Brands, and or companies.
Apple
Amazon
Roku
Netflix
OWC
Apple
Amazon
Roku
Netflix
OWC
michaelsviews
Jun 25, 05:25 PM
Is this SOLD or ?
v2club
Apr 28, 07:18 PM
Is there an app that auto-completes the words when you are typing? Something like pressing the ESC button on Pages, but that works automatically?
webmacster87
Jun 14, 05:30 PM
The newest and coolest Macintosh Users Group on the web is here! Fountain of Apples is a place where Mac users can show what they do on their Mac, where Mac users can get Mac support, where they can vote in polls, write product reviews, or simply meet each other. There's even a place where switchers can share their stories! Come drop by Fountain of Apples at http://dhost.info/fountainofapples/!
xplnusa
Feb 21, 11:58 PM
I can understand not being able to sell until you have 250 posts. Not being able to buy however I don't understand. I don't even know how to tell how many posts I have on this forum. Never really thought I'd need to know...
Weaselboy
May 4, 11:25 AM
Question:
Lets take the iPhoto app as an example . . . If iPhoto is installed onto the ssd, it should/will launch the app faster than if it was installed onto the hdd - okay, I get that.
Now, once iPhoto has opened/launched, will it operate any faster or smoother if iPhoto is installed on a ssd vs. if it was on a hdd?
If the photos are on the SSD drive, then yes they will launch faster than if on the HDD. Now that said, if they are just average say 2MB JPG photos the difference will not be huge. If it is a very hi-res photo say 10MB JPG the difference will be more noticeable.
Lets take the iPhoto app as an example . . . If iPhoto is installed onto the ssd, it should/will launch the app faster than if it was installed onto the hdd - okay, I get that.
Now, once iPhoto has opened/launched, will it operate any faster or smoother if iPhoto is installed on a ssd vs. if it was on a hdd?
If the photos are on the SSD drive, then yes they will launch faster than if on the HDD. Now that said, if they are just average say 2MB JPG photos the difference will not be huge. If it is a very hi-res photo say 10MB JPG the difference will be more noticeable.
eric55lv
Jan 13, 03:56 PM
8. Probably the most important, to be a reasonable price
yeah like around 700bucks
yeah like around 700bucks
blevins321
May 3, 11:55 AM
Is there any way I could delete the windows partition and have another shot at installing it?
And is it best to download the support software, instead of relying on the disc?
Reopen Boot Camp Assistant and it has the option to restore your drive. I think that you have to install from the disk first (to prove that you own it), but then run Apple Software Update from the Windows side to upgrade to the latest version.
And is it best to download the support software, instead of relying on the disc?
Reopen Boot Camp Assistant and it has the option to restore your drive. I think that you have to install from the disk first (to prove that you own it), but then run Apple Software Update from the Windows side to upgrade to the latest version.
nomade
Mar 11, 09:54 AM
For those looking for the same solution here what I found:
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
<?php
$sql_rotation=mysql_query('SELECT * FROM photo_atelier');
$i=1;
while($ligne_rotation=mysql_fetch_array($sql_rotation)){
$array[$i]="../media/atelier/grand/".$ligne_rotation['photo']."";
$i++;
}
?>
<SCRIPT LANGUAGE="JavaScript">
var timeDelay = 3; // change delay time in seconds
var Pix = new Array
(
<?php
echo "'".$array[1]."',";
echo "'".$array[2]."',";
echo "'".$array[3]."',";
echo "'".$array[4]."',";
echo "'".$array[5]."'";
?>
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
<body OnLoad="startPix()">
<?php echo "<img name=ChangingPix src=".$array[1].">"; ?>
to see the result go to http://zoomaventurephoto.com/fr/atelier.php:D
AHDuke99
Jun 20, 11:42 PM
yes
dukie's are all over the mac web :D
dukie's are all over the mac web :D
mjstew33
Dec 23, 10:24 PM
ahhh....much better.
No more annoying product categories. Anyone know what is different besides the look?
ipod ipod ipod ipod :rolleyes:
No more annoying product categories. Anyone know what is different besides the look?
ipod ipod ipod ipod :rolleyes:
foobarbaz
Dec 28, 11:17 AM
From the chart, I'd say that this statement applies to people who owned a Kindle and got the iPad as a 2nd device. Or people who got the iPad and got the cheaper 3rd gen Kindle became available, etc.
I don't think Android tablets are common enough at this time for such a significant number of people already owning more than one.
I don't think Android tablets are common enough at this time for such a significant number of people already owning more than one.
LVEB
May 5, 02:43 AM
Hi
I'm new in Mac and HDSLR editing, but very interest to work with HD edit.
So decided to purchase a PC or iMac/MacBookPro for mainly HDSLR (h.246) and Lightroom/PS/Apetuare photo editing.
My question is will the NEW iMac
-2.7GHz Quad-Core Intel Core i5
-AMD Radeon HD 6770M with 512MB
Fast enought for the above mention work ?
Kinda budget, so MacBookPro is my 2nd option.
or MacBookPro
2.0GHz quad-core Intel Core i7
Intel HD Graphics 3000
AMD Radeon HD 6490M with 256MB GDDR5
Which to go ?
Btw HD 6770M with 512MB / HD 6490M with 256MB GDDR5
or last (AMD Radeon HD 6970M with 1GB )
I'm new in Mac and HDSLR editing, but very interest to work with HD edit.
So decided to purchase a PC or iMac/MacBookPro for mainly HDSLR (h.246) and Lightroom/PS/Apetuare photo editing.
My question is will the NEW iMac
-2.7GHz Quad-Core Intel Core i5
-AMD Radeon HD 6770M with 512MB
Fast enought for the above mention work ?
Kinda budget, so MacBookPro is my 2nd option.
or MacBookPro
2.0GHz quad-core Intel Core i7
Intel HD Graphics 3000
AMD Radeon HD 6490M with 256MB GDDR5
Which to go ?
Btw HD 6770M with 512MB / HD 6490M with 256MB GDDR5
or last (AMD Radeon HD 6970M with 1GB )
Mobius 1
May 5, 08:00 AM
the dude at the apple store says that if you go over capacity you will lag. And i'm like wha?
If it support 8GB, can i use all 8GB at once?
I already know if it can take 8GB
If it support 8GB, can i use all 8GB at once?
I already know if it can take 8GB
leekohler
Apr 21, 08:54 PM
Let me guess- this was proposed by a Tea Party member.
aschuett
Jan 17, 11:16 AM
Nope, but must not have been anything important or else we'd have heard about it or seen an update of some sort on the apple site.
Well, time to buy then. I really hoped they would bring out ACDs there, but I guess I'll have to deal with the "old" technology.
Well, time to buy then. I really hoped they would bring out ACDs there, but I guess I'll have to deal with the "old" technology.
scutts
Apr 15, 07:58 AM
is TPE that rubber found around bumper cases?
it's probably similar. I know it's similar to TPU but i don't really know the difference between them two.
it's probably similar. I know it's similar to TPU but i don't really know the difference between them two.
bmorris
Jan 17, 09:48 PM
I'm a teacher who has brought his class every year to MacWorld. We always come on Friday. I don't think that any booths close down on Friday until the late afternoon. My kids like the fact that vendors are more willing to give away free stuff on Fridays.
So...I don't think it would be a waste of your time.
where do u teach?!
So...I don't think it would be a waste of your time.
where do u teach?!
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
Sundance Kid
Feb 16, 11:39 PM
does anyone know anything about backpacks for laptops that you can use to go biking? As in a bag thats meant for biking
MrMacMan
Oct 18, 09:22 PM
Oh Mr. A will stay up there forever, heck a year might pass and he doesn't post once and he would still be on top.
:hepwnedall:
What ever happened to AlphaTech?
gone somewhere else?
:hepwnedall:
What ever happened to AlphaTech?
gone somewhere else?
0 comments:
Post a Comment