infidel69
Apr 18, 12:25 PM
Smartphones will never completly replace cameras. I know it's hard for some people to accept that not everyone owns a smartphone.
skydenyy
Apr 14, 04:13 AM
With the same configuration, is a netbook the lighter the better? I am confused. Any suggestion will be much appreciated.

gochi
Apr 4, 09:01 PM
Physics. You haz broke dem
Very helpful, indeed.
I can't help you with this, sadly. Perhaps take it to an apple store?
Very helpful, indeed.
I can't help you with this, sadly. Perhaps take it to an apple store?
iDesigner
Jul 7, 09:40 PM
Oh I would definitely advise you to switch to Earthlink. AOL is satan, I had to report them to the BBB because they refused to give me a refund when I cancelled service. Then, 3 months after I cancelled, they re-activated my account and started trying to draft money from my credit card. It was a big nightmare and my bank had to suspend AOL from charging me.
Earthlink is great because they are simple and don't BS you all the time. The only downside is they try to send you junk mail about their services, even when you don't want it. But I don't use their email, so it's not a problem.
Good luck!
Earthlink is great because they are simple and don't BS you all the time. The only downside is they try to send you junk mail about their services, even when you don't want it. But I don't use their email, so it's not a problem.
Good luck!
more...
Mr. Anderson
Nov 22, 03:45 PM
eyelike art is still around, ambitiouslemon is on sabatical, kela posted last in April, spikey might be around under a different name, he hasn't been seen in quite some time, and blakespot is off doing his own thing, although I think he still helps arn with the site.
I don't fall under the 'old skool' banner, but I've been around longer than most these days. But maybe you should try a reunion thread, only for anyone who's of a certain age.
D
I don't fall under the 'old skool' banner, but I've been around longer than most these days. But maybe you should try a reunion thread, only for anyone who's of a certain age.
D
wordmunger
Nov 13, 12:33 PM
ha! i actually bought this cd off itunes a few months ago. could do with some more sequencing and layering. but what it is great for is sampling. i took one of the ink cartridge hitting the side of the caseing sounds and processed it into a kick drum. heres a rough mix.
http://www.riserock.com/mp3s/ocelot/ocelot_demo/aka_final.mp3
cory
Well, at least yours is ... um ... musical.
Neither is exactly in my tastes, though I could imagine a dot-matrix "song" that might be interesting in the way trained seals playing bike horns is interesting.
http://www.riserock.com/mp3s/ocelot/ocelot_demo/aka_final.mp3
cory
Well, at least yours is ... um ... musical.
Neither is exactly in my tastes, though I could imagine a dot-matrix "song" that might be interesting in the way trained seals playing bike horns is interesting.
more...
nixoninajar
Mar 25, 04:20 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F190 Safari/6533.18.5)
So is there anyone at the Pacific Center yet ?
So is there anyone at the Pacific Center yet ?
Beanoir
May 4, 05:22 AM
If you wipe the SSD, as the OP indicated, there IS no Safari history left.... or Safari.
I know, it was just a wee bit of humour. ;)
I know, it was just a wee bit of humour. ;)
more...
Bloodstar
May 2, 10:17 PM
If I'm remembering correctly, there was a CD installer for Tiger. If you could find that, you'd be good.
I'd suggest getting at least an external DVD drive, though... always good to be able to burn a DVD, even if purely for backup purposes.
I'd suggest getting at least an external DVD drive, though... always good to be able to burn a DVD, even if purely for backup purposes.
Transporteur
Apr 8, 01:51 PM
Considering all the times i've almost been mugged, and that one freaking time my ipod touch was taken in a matter of seconds.. i wouldn't mind getting one of these. =P
The iGun is probably more effective, not too good to hide at the beach, though. ;)
http://www.unhelpful.org/igun/igun1.jpg
Pic taken from http://www.unhelpful.org/igun
The iGun is probably more effective, not too good to hide at the beach, though. ;)
http://www.unhelpful.org/igun/igun1.jpg
Pic taken from http://www.unhelpful.org/igun
more...
xUKHCx
Mar 3, 08:56 AM
Pretty harsh suggested response don't you think. In general it is relatively trivial for the mods to change a thread title, so if you think it is a problem then please report it and then we can assess the situation.
I don't see it all too often so am not sure that it is such a widespread problem that it needs to be written in to the rules
I don't see it all too often so am not sure that it is such a widespread problem that it needs to be written in to the rules
coolbreeze
Jan 10, 07:33 PM
They probably saw a large slowdown in sales b/c of defectors to google reader, etc, etc. Now, they are just looking to leverage their user base and get it installed on as many Macs as possible.
Just my guess.
Just my guess.
more...

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
EricNau
Jan 14, 08:32 PM
Also see this thread: MacRumors Reader Meetup: January 15th @ 6pm-9pm (http://www.macrumors.com/2008/01/10/macrumors-reader-meetup-january-15th-6pm-9pm/)
and this poll: MacRumors Reader Meetup: January 15th @ 6pm-9pm (http://forums.macrumors.com/showthread.php?t=412145)
and this poll: MacRumors Reader Meetup: January 15th @ 6pm-9pm (http://forums.macrumors.com/showthread.php?t=412145)
more...
Raid
Dec 22, 02:51 PM
Originally posted by Sun Baked
I WANT THAT SPYMAC RING!!!!!
Only if it was a bluetooth decoder ring :D Then I could get messages like "Be sure to login to Spymac" wirelessly
People will buy anything won't they?

Kate Bosworth in Calvin Klein
more...

Sundance 2011: Kate Bosworth

Kate Bosworth Lucky magazine

Couples Watch: Kate Bosworth
I WANT THAT SPYMAC RING!!!!!
Only if it was a bluetooth decoder ring :D Then I could get messages like "Be sure to login to Spymac" wirelessly
People will buy anything won't they?
phantomsd
Mar 11, 11:56 AM
Not bad... but could be worse by 4pm. Keep us updated!
more...
Will Cheyney
Dec 4, 12:58 PM
If it's not a Dreamweaver template (which I'm 99% sure it is) then it is simply a Macromedia.com rip-off (in terms of design).
Still, nicely done :)
Still, nicely done :)
alansmallen
Jun 4, 04:24 PM
So I have one offer at $315 but lost communication. So it seems to be back on sale.
SilentPanda
Sep 23, 02:30 PM
You don't need a copy editor. You need a spell checker. For one word. Which he made you aware of. So you don't even need a spell checker!
Myself... I could use complete sentences probably. But that's why I code and don't authortate (I made up a word)! :eek:
Myself... I could use complete sentences probably. But that's why I code and don't authortate (I made up a word)! :eek:
combatcolin
Mar 30, 02:46 PM
Arse to that.
There will be plenty of stock to go round, so no idiot e-Bay price inflation.
There will be plenty of stock to go round, so no idiot e-Bay price inflation.
ann713
Apr 28, 08:47 PM
I'm trying to unlock a new iPhone 4 on the latest OS and baseband. I've seen the Gevey Turbo Sims on eBay but do they really work? If anyone here has experience with this type of unlock, please chime in. Thank you kindly.
PickledSquirrel
Sep 22, 12:58 PM
:confused: :confused: :confused:
I really, really, really love my lamp, the old G4, but started university this month and realized fairly quickly that something portable would come in handy.
Now the question is, what to get. I'm considering a few options:
Get additional iBook 14" (But isn't that too small and slow?)
Get additional PB 15" (But that'll be bloody expensive )
Sell old faithfull G4, buy PB 15" + 20 " display for home use (anyone happy with that solution???)
Also I was wondering, If I get a new machine running Tiger, and keep the old running Panther, won't it be annoying to work with two different OS'es?
(can't use Tiger disc for portable to install Tiger on iMac G4, can I?)
Any advice appreciated
-Squirrel
I really, really, really love my lamp, the old G4, but started university this month and realized fairly quickly that something portable would come in handy.
Now the question is, what to get. I'm considering a few options:
Get additional iBook 14" (But isn't that too small and slow?)
Get additional PB 15" (But that'll be bloody expensive )
Sell old faithfull G4, buy PB 15" + 20 " display for home use (anyone happy with that solution???)
Also I was wondering, If I get a new machine running Tiger, and keep the old running Panther, won't it be annoying to work with two different OS'es?
(can't use Tiger disc for portable to install Tiger on iMac G4, can I?)
Any advice appreciated
-Squirrel
cluthz
Sep 21, 07:12 AM
Depends on how much screen realestate you want/need.
Apple displays are a bit overprices, but if you want "the looks" its what you are looking for.
I have a Viewsonic 17" which im really happy with.
Be sure to get a display that supports dvi try a few before you decide, but the market is full with very good LCD for a really low price atm
Apple displays are a bit overprices, but if you want "the looks" its what you are looking for.
I have a Viewsonic 17" which im really happy with.
Be sure to get a display that supports dvi try a few before you decide, but the market is full with very good LCD for a really low price atm
daneoni
Mar 23, 07:33 PM
You'll find out at WWDC what the final version will be.
No comments:
Post a Comment