myjay610
Mar 9, 09:26 AM
Seems like you just answered your own question, if your server is multi-honed you should be able to just configure your applications to only listen on specific interfaces. So set apache to only listen on X.X.X.X:80 and ruby http server on the other IP :8080.
Queso
Aug 18, 05:48 AM
It is pretty bumpy on most of the tracks in the UK I think.
The Northern Line isn't too bad on that front. The worst line is definitely the Metropolitan, on which you sometimes find it difficult to stay in your seat it jumps around so much.
The Northern Line isn't too bad on that front. The worst line is definitely the Metropolitan, on which you sometimes find it difficult to stay in your seat it jumps around so much.
chrisbetty
May 4, 05:10 PM
If so I am updating this time but only when a untethered jb is released
Auax
Apr 26, 09:58 PM
i used it to record in my diving, just so gogeous..
Mal
Feb 5, 11:22 AM
Trust me, it's going to be much easier to just use MailChimp. They have a free option, as long as it's less that 2000 contacts and less than 12,000 emails per month. You just embed their signup form on your website, and you can compose the emails elsewhere and copy/paste, or use their forms. For someone that's not computer-savvy, it's really the best way by far, and since it's free, nothing to lose really.
EDIT: If you want to see an example form, here's mine: http://www.thewalkersinjapan.com/p/contact-us_3431.html
jW
EDIT: If you want to see an example form, here's mine: http://www.thewalkersinjapan.com/p/contact-us_3431.html
jW
mscriv
Mar 28, 03:53 PM
I'm a professional DJ who specializes in weddings. In my consultations I actually encourage brides and grooms to consider breaking the tradition about seeing each other and staging some special "reveal" moment prior to the ceremony where they can see each other and take a few minutes together. This allows for them to give their photographer much more time prior to the ceremony to get creative and fun shots and doesn't set up the typical nightmare of trying to get most or all of the formals after the ceremony and before the reception where guests are waiting and things are stressful.
Regardless of seeing each other before, the groom will still have those "holy cow" feelings with knots in his stomach when the doors open and she starts down the aisle. My wife and I used this method at our own wedding and it made things so much smoother and took a lot of pressure off of our photographer.
Regardless of seeing each other before, the groom will still have those "holy cow" feelings with knots in his stomach when the doors open and she starts down the aisle. My wife and I used this method at our own wedding and it made things so much smoother and took a lot of pressure off of our photographer.
WildCowboy
May 5, 10:56 AM
Conflicting information here. :)
So iOS 4.2 brought AirPlay video streaming to a few select Apple apps like iPod/Videos and YouTube. The Verizon iPhone should have been been able to do that from day one, as it shipped with iOS 4.2.5/4.2.6.
iOS 4.3 introduced support for AirPlay video streaming from Safari and third-party apps. iMovie for iOS is another one that requires iOS 4.3 for streaming projects via AirPlay.
So to settle this once and for all, can anybody with a Verizon iPhone double check to make sure they do have the AirPlay capabilities from 4.2 and NOT those from 4.3 with the new iOS 4.2.8? Remember, we're specifically talking about video here. Krevnik says that this is the case, but we'd like a few more data points to counteract claims that there has been a change.
We've seen just a couple reports claiming that video AirPlay has been added to the Verizon iPhone with 4.2.8, but we think it's confusion over the limited support that originally existed vs. what non-Verizon devices can do under 4.3.
So iOS 4.2 brought AirPlay video streaming to a few select Apple apps like iPod/Videos and YouTube. The Verizon iPhone should have been been able to do that from day one, as it shipped with iOS 4.2.5/4.2.6.
iOS 4.3 introduced support for AirPlay video streaming from Safari and third-party apps. iMovie for iOS is another one that requires iOS 4.3 for streaming projects via AirPlay.
So to settle this once and for all, can anybody with a Verizon iPhone double check to make sure they do have the AirPlay capabilities from 4.2 and NOT those from 4.3 with the new iOS 4.2.8? Remember, we're specifically talking about video here. Krevnik says that this is the case, but we'd like a few more data points to counteract claims that there has been a change.
We've seen just a couple reports claiming that video AirPlay has been added to the Verizon iPhone with 4.2.8, but we think it's confusion over the limited support that originally existed vs. what non-Verizon devices can do under 4.3.
queshy
Jun 23, 08:01 PM
Can you still plug in DVI? Looks kind of dented.
Zeov
Apr 23, 02:43 PM
having lots of games running at once is awesome !
bdmst16
May 4, 01:05 PM
Geez - that's weird. I though forums like this were for asking questions and getting help. Seriously - your posts have been a BIG help.
JimMacFan - to answer your question: The 27" screen is 17.9" tall without the stand. The total height is 20.5" I believe which would put the stand under 3 inches.
JimMacFan - to answer your question: The 27" screen is 17.9" tall without the stand. The total height is 20.5" I believe which would put the stand under 3 inches.
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
jiv3turkey748
Sep 7, 02:19 PM
i hope he wins one more time just to piss off the french
BlingBling
May 3, 11:40 AM
The 2011 runs hotter than the 2010. It has a faster CPU and a GPU on the same core while the cooling and enclosure design hasn't changed. For gaming the 2010 and 2011 are almost the same (the 2010 coming on top in most cases).
The fan noise is a given when your running under heavy load. You can get slightly better results if you reapply thermal paste like I did, but at best your fans will run around 5500 rpm under load.
There currently is no solution to lower the cpu performance for reduced heat by undervolting like coolbook used to do.
I can only suggest getting earphones or cranking up the volume or simply exchanging for another mac (some are cooler than others).
BTW I do not get loud fan noise watching flash (even in hd), just games, and recording from the facetime camera in quicktime or imovie. Running facetime under normal conditions does not make my fans noisy.
The fan noise is a given when your running under heavy load. You can get slightly better results if you reapply thermal paste like I did, but at best your fans will run around 5500 rpm under load.
There currently is no solution to lower the cpu performance for reduced heat by undervolting like coolbook used to do.
I can only suggest getting earphones or cranking up the volume or simply exchanging for another mac (some are cooler than others).
BTW I do not get loud fan noise watching flash (even in hd), just games, and recording from the facetime camera in quicktime or imovie. Running facetime under normal conditions does not make my fans noisy.
elders
May 3, 02:18 AM
so just update to 4.3 using firmware from felixbruns?
Lord Blackadder
Aug 25, 11:27 AM
Tony Abbott's notions on constitutional monarchy:
There are some people who believe that any republic would be better than what we have now.
�Republic or bust� zealots are incapable of perceiving any difficulties. Conservatives, however, don�t change anything lightly.
Conservatives approach issues with instinctive respect for institutions and approaches that have stood the test of time.
�If it is not necessary to change� the conservative ethos runs, �it is necessary not to change�.
�If it ain�t broke, don�t fix it� say conservatives, �and if it is broke, recycle it, don�t throw it away�.
LOL on several levels. :rolleyes:
There are some people who believe that any republic would be better than what we have now.
�Republic or bust� zealots are incapable of perceiving any difficulties. Conservatives, however, don�t change anything lightly.
Conservatives approach issues with instinctive respect for institutions and approaches that have stood the test of time.
�If it is not necessary to change� the conservative ethos runs, �it is necessary not to change�.
�If it ain�t broke, don�t fix it� say conservatives, �and if it is broke, recycle it, don�t throw it away�.
LOL on several levels. :rolleyes:
rorschach
Mar 24, 02:17 PM
Yes, it's possible that some major new features will be introduced between now and the final shipping version.
Leopard was first demoed in June shipped in October 2007. The revised Finder, new Dock and menubar weren't announced until June 2007...same for Stacks, Back To My Mac, Cover Flow, and Quick Look.
Leopard was first demoed in June shipped in October 2007. The revised Finder, new Dock and menubar weren't announced until June 2007...same for Stacks, Back To My Mac, Cover Flow, and Quick Look.
obeygiant
Feb 8, 09:31 AM
He died from a wound to his right calf?-- that a chicken inflicted?-- in two hours?
chown33
Apr 11, 01:47 PM
One suggestion: open the known-working Xcode 3 project in Xcode 4. Build it. Make sure it works.
If it works, then use it as a known-good reference to check the non-working project.
If it doesn't work, then figure out why it works in Xcode 3 but not in 4. It may be an Xcode problem, or it may be a faulty assumption in the project that just happens to work in 3 but not in 4.
If it works, then use it as a known-good reference to check the non-working project.
If it doesn't work, then figure out why it works in Xcode 3 but not in 4. It may be an Xcode problem, or it may be a faulty assumption in the project that just happens to work in 3 but not in 4.
olternaut
Jan 14, 12:32 PM
That depends on where in the world you live.
NYC man! ..........thats new york city for those who need help figuring it out. :D
NYC man! ..........thats new york city for those who need help figuring it out. :D
AppleMatt
Dec 14, 01:03 PM
http://www.sogoodblog.com/2010/12/14/chipotle-social-media/
AppleMatt
AppleMatt
laurawallace799
Jul 18, 11:18 PM
actually, if there were some layers (i.e. mixing some of the existing tracks) to get some more depth, it could be quite nice.
good idea. maybe ill pull them into Garage Band like everyone did with the Howard Dean Scream. (http://www.methodshop.com/fun/politics/dean/index.stm) ;)
i put 3 of those dot matrix songs on my ipod. after 3 secs i skip them. they just needs more.
good idea. maybe ill pull them into Garage Band like everyone did with the Howard Dean Scream. (http://www.methodshop.com/fun/politics/dean/index.stm) ;)
i put 3 of those dot matrix songs on my ipod. after 3 secs i skip them. they just needs more.
Blue Velvet
Dec 9, 10:46 AM
In our little corner of the office there's a noticeable and oppressive micro-climate produced by 3 x dual 2.5s, 2x733 Quicksilvers and 1x dual 1.25 G4 plus 4x22" monitors and assorted printers, scanners and peripherals.
Everybody who comes up here remarks on how warm it is and that's with the air-con on... in the winter. We also have a few fans to stir the air up as well and I have a small desk one to keep me cool... particularly when I'm getting cross with internal clients. :)
Everybody who comes up here remarks on how warm it is and that's with the air-con on... in the winter. We also have a few fans to stir the air up as well and I have a small desk one to keep me cool... particularly when I'm getting cross with internal clients. :)
h1r0ll3r
Apr 20, 07:54 AM
Ditched my 17" HP and my Dell Desktop when I got my 15" MBP. I tried juggling different laptops and what not but it got to be kind of a pain. I do everything on my MBP now and along with the 1TB backup drive and countless cloud storage accounts, I'm pretty good with my setup now. That and I have about 10 USB keys so the important data I need will always come with me.
MacSA
Sep 23, 12:59 PM
Mybae Apple are updating EVERYTHING !!!! :D :D