TheNewDude
May 29, 07:09 PM
Glad to see such a quick update from Apple for us Windows users.
I can't save I've had the brightness issue, but did have the head phone issue which was an easy fix by downloading the newest audio drivers.
But thanks Apple....
I can't save I've had the brightness issue, but did have the head phone issue which was an easy fix by downloading the newest audio drivers.
But thanks Apple....
Goohfy
Apr 22, 11:29 PM
Sorry if this is a stupid question, but I've been lookin' around at all of the changes that may be made to the MBA this year, and was wondering if it will still start at around $999, and if not where will the price range start ? Thanks .
bcaslis
May 2, 07:03 PM
Not sure exactly what you are looking for but this is what I use:
http://www.tombihn.com/page/001/PROD/300/TB0223
http://www.tombihn.com/page/001/PROD/300/TB0223
Cinch
Sep 18, 08:27 PM
Who knows someday they'll be worth something. On par with vinyl? I think there is always a vintage crowd out there and in the future too. I hope you don't have to wait until you are old and gray before you see your CDs appreciate in value (sentimental and monetary).
Imagine 200 years from now on the Antique Road Show (PBS), your great-great-grandchild is astonished to hear the value of your CD collection! :D
Just joking,
Cinch
Imagine 200 years from now on the Antique Road Show (PBS), your great-great-grandchild is astonished to hear the value of your CD collection! :D
Just joking,
Cinch
more...
iPhonePhan
Jun 20, 05:44 PM
Work and the World Cup will keep me pretty well occupied until Thursday. And this site of course.
World Cup and work for me. BRRRRRAAASSSIL!! PENTACAMPE�ES ! E DENTRO DE POUCO HEXACAMPE�ES!
Sorry in advance to the non-Brazilians (and after today's awesome game, Cote d'Ivoiriens ;)
World Cup and work for me. BRRRRRAAASSSIL!! PENTACAMPE�ES ! E DENTRO DE POUCO HEXACAMPE�ES!
Sorry in advance to the non-Brazilians (and after today's awesome game, Cote d'Ivoiriens ;)
myjay610
Mar 10, 06:43 AM
Gotcha. So I think the best way to handle this would be to use Apache to handle all requests for both servers, and set up a ReverseProxy to handle traffic that should go to the Ruby server.
Check this site out: http://httpd.apache.org/docs/2.0/vhosts/examples.html
And this site for ReverseProxy: http://www.ehow.com/how_6108865_configure-apache-reverse-proxy.html
So, your config file in Apache should similar to this (be sure to enable the proxy module):
Listen 172.20.30.40:80
# This is the "main" server running on 172.20.30.40
ServerName server.domain.com
DocumentRoot /www/mainserver
# This is the other address - the one handling requests for Ruby
NameVirtualHost 172.20.30.50:80
<VirtualHost 172.20.30.50:80>
# Other directives here ...
ProxyRequests off
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080
</VirtualHost>
Then obviously you need to ensure your DNS server is set so the domain names are pointing to ther right IP addresses.
You could also filter out on the ServerName in apache to determine which server handles your traffic...or do both to be consistent.
Check this site out: http://httpd.apache.org/docs/2.0/vhosts/examples.html
And this site for ReverseProxy: http://www.ehow.com/how_6108865_configure-apache-reverse-proxy.html
So, your config file in Apache should similar to this (be sure to enable the proxy module):
Listen 172.20.30.40:80
# This is the "main" server running on 172.20.30.40
ServerName server.domain.com
DocumentRoot /www/mainserver
# This is the other address - the one handling requests for Ruby
NameVirtualHost 172.20.30.50:80
<VirtualHost 172.20.30.50:80>
# Other directives here ...
ProxyRequests off
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080
</VirtualHost>
Then obviously you need to ensure your DNS server is set so the domain names are pointing to ther right IP addresses.
You could also filter out on the ServerName in apache to determine which server handles your traffic...or do both to be consistent.
more...
zorinlynx
May 3, 01:05 PM
Apologies if this has been asked before, but a precursory search has revealed nothing.
Is there a difference between the boxed version of Aperture 3 ($199!) and the App Store version ($79)?
Given the price difference I wonder if the app store version is missing features or is an "Aperture lite".
I already own the boxed version, but my curiosity must be satiated!
Is there a difference between the boxed version of Aperture 3 ($199!) and the App Store version ($79)?
Given the price difference I wonder if the app store version is missing features or is an "Aperture lite".
I already own the boxed version, but my curiosity must be satiated!
Dreadnought
Nov 14, 03:16 PM
O by the way Dreadnought. I plan on passing you! I have had one work unit turned in on my mac pro now it was worth 700 points and it took 22 hours. I have also lost a work unit which gaves errors(this was before the SMP client when public beta) However I have one sitting on my computer at home finished, I just found out how to upload it. I had a configuration thing set wrong. And I will have another one done by the end of today. :) I will catch up pretty fast with your current output. ;)
So when are you planning on doing this? Don't see anywhere in the top 100 :p
and my G5 gets a bit of a rest instead of folding 24/7. It uses a lot of power and am trying to cut down my electric bill.
So when are you planning on doing this? Don't see anywhere in the top 100 :p
and my G5 gets a bit of a rest instead of folding 24/7. It uses a lot of power and am trying to cut down my electric bill.
more...
profets
Mar 24, 12:19 PM
Any idea if usually it's any better than lining up in downtown?
Not sure. Only time I was there was for iPhone 4 last year and lines were insane. Really have nothing to compare it to lol.
Not sure. Only time I was there was for iPhone 4 last year and lines were insane. Really have nothing to compare it to lol.
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
more...
TheGimp
Apr 5, 08:39 AM
http://wii.ign.com/articles/778/778248p1.html
Oh and this line really made me giggle:
"The producers of the Wii version revealed to Famitsu that one of their goals is to allow families who play the Wii together to experience Resident Evil. The game will include "Easy" and "Amateur" difficulty settings, selectable from the start, that will make aiming easier and keep your life from depleting too fast."
Putting an easy mode so the whole family can play? Isn't this an M-Rated game with tons of gore, horror and inappropriate content for minors and unappealing content for other family members? Heck, Nintendo might be taking the whole "family" thing (which I think is downright ridiculous) too far.
Sorry I just realized this is already in another thread :o
A "family" doesn't have to include little children or teens. Most families in America are dysfunctional, but many grown-up and partially grown-up families do more together than just maintaining contact. A "family" could be three grown brothers who play RE4 with their stoned widow grandmother fighting cancer who happens to love over the top horror flicks such as Peter Jackson's "Dead Alive". :P
Oh and this line really made me giggle:
"The producers of the Wii version revealed to Famitsu that one of their goals is to allow families who play the Wii together to experience Resident Evil. The game will include "Easy" and "Amateur" difficulty settings, selectable from the start, that will make aiming easier and keep your life from depleting too fast."
Putting an easy mode so the whole family can play? Isn't this an M-Rated game with tons of gore, horror and inappropriate content for minors and unappealing content for other family members? Heck, Nintendo might be taking the whole "family" thing (which I think is downright ridiculous) too far.
Sorry I just realized this is already in another thread :o
A "family" doesn't have to include little children or teens. Most families in America are dysfunctional, but many grown-up and partially grown-up families do more together than just maintaining contact. A "family" could be three grown brothers who play RE4 with their stoned widow grandmother fighting cancer who happens to love over the top horror flicks such as Peter Jackson's "Dead Alive". :P
Leet Apple
Dec 29, 05:11 PM
http://www.mypay-computers-credit.com/wp-content/uploads/unibody-15inch-macbook-pro.jpg
http://hippestphone.com/wp-content/beautifycache/1816826276_iphone-3g-ios4-rm-eng.jpg
MacBook Pro and iPhone 3G have kept me very entertained
http://hippestphone.com/wp-content/beautifycache/1816826276_iphone-3g-ios4-rm-eng.jpg
MacBook Pro and iPhone 3G have kept me very entertained
more...
sidgriffey
Mar 17, 01:38 PM
I decided to just install it on my SSD since I want to take advantage of the speed of it. This no longer seems as buggy as it did when I installed Lion a few weeks ago and got rid of it. I can now run the VNC app "iTeleport" without problem!
Thank you for taking the time to lay out these instructions, as it is invaluable to me as I install for future partitions down the road. Cheers.
Thank you for taking the time to lay out these instructions, as it is invaluable to me as I install for future partitions down the road. Cheers.
cbegf
Nov 13, 09:51 PM
You can't just turn it on..........then continually move the mouse around and around and around and around?
To stop it coming on?
nope that doesnt work either
To stop it coming on?
nope that doesnt work either
more...
ErikAndre
Jan 14, 02:08 PM
Maybe you could rent it as an iTunes movie :cool:
Brilliant! I hope someone at Apple read your comment and passes it up the line. i will gladly pay for this.
Brilliant! I hope someone at Apple read your comment and passes it up the line. i will gladly pay for this.
GekiRed
Dec 31, 05:22 AM
I recently bought a 64GB iPod Touch 4G from the US which I had shipped to me in the UK via a friend in the US.
I've since jailbroken it and installed various jailbroken Apps; some of which were available previously until "Herr Jobs" in his infinite wisdom decided that Apps of bikini-clad girls were a bad thing even though most of them were ones people paid a small fee for!:mad:
I downloaded these Apps from a certain infamous site which shall remain nameless and some of them have updates which aren't available on said certain infamous site.
I have no problem buying legitimate copies of these Apps but the main problem is that whenever I try to buy them via the App Store on my iPod Touch and I get a message saying that I'd get a discount if I buy the upgraded version, it won't let me buy them!:mad:
Does anyone have any ideas on how I can fix this problem short of uninstalling the jailbroken versions of the updated Apps and buying the legitimate versions...
I've since jailbroken it and installed various jailbroken Apps; some of which were available previously until "Herr Jobs" in his infinite wisdom decided that Apps of bikini-clad girls were a bad thing even though most of them were ones people paid a small fee for!:mad:
I downloaded these Apps from a certain infamous site which shall remain nameless and some of them have updates which aren't available on said certain infamous site.
I have no problem buying legitimate copies of these Apps but the main problem is that whenever I try to buy them via the App Store on my iPod Touch and I get a message saying that I'd get a discount if I buy the upgraded version, it won't let me buy them!:mad:
Does anyone have any ideas on how I can fix this problem short of uninstalling the jailbroken versions of the updated Apps and buying the legitimate versions...
more...
stevemiller
Dec 31, 01:52 PM
for the longest while i've been using my g5 tower as my media player connected to my tv. it sorta got the job done, but it takes up a bunch of space, doesn't really handle hd material very well, and osx isn't really an interface designed to be used from the couch.
so i started to wistfully consider the "it only does everything" marketing of the ps3. i don't have a blu ray player or a modern gaming system (last i owned was super nintendo, yeahh!!!), and it sounded like it could also replace the clunky functionality of the g5.
after finally deciding to splurge on one over the holidays, i'm finding that i'm having some buyer's remorse, but i'm not sure if its just because i'm not doing things properly. here are my issues:
-the web experience is *awful* - i don't know how apple can be slammed so much for eliminating flash from their devices when almost every video site i visited on the ps3 was non functional... from vimeo, to an hd-less and horribly low-bitrate version of youtube, to any network sites that would have streaming episodes of their tv shows just showing a black screen where video content would have gone.
-netflix is useless in canada (this is less a ps3 issue but definitely detracts from its value). i knew their selection was limited, and $8 is pretty cheap for all you can watch, but there's not much there i *would* want to watch.
-streaming downloaded content from sources like other computers is terribly limited. i was fortunate enough to have a western digital mybook world that has a build-in media server which works well enough, but from the sounds of things accessing content from a macbook or even the g5 would be a headache and might require paid software.
overall i don't want to slam the ps3 as i'm sure its a great game system and blu ray player, and maybe those will be reason enough to keep it... i had just hoped for more in its media streaming capabilities, and i don't know if i'm overlooking some good work arounds, or if sticking with the g5 for those tasks really is the better solution.
so i started to wistfully consider the "it only does everything" marketing of the ps3. i don't have a blu ray player or a modern gaming system (last i owned was super nintendo, yeahh!!!), and it sounded like it could also replace the clunky functionality of the g5.
after finally deciding to splurge on one over the holidays, i'm finding that i'm having some buyer's remorse, but i'm not sure if its just because i'm not doing things properly. here are my issues:
-the web experience is *awful* - i don't know how apple can be slammed so much for eliminating flash from their devices when almost every video site i visited on the ps3 was non functional... from vimeo, to an hd-less and horribly low-bitrate version of youtube, to any network sites that would have streaming episodes of their tv shows just showing a black screen where video content would have gone.
-netflix is useless in canada (this is less a ps3 issue but definitely detracts from its value). i knew their selection was limited, and $8 is pretty cheap for all you can watch, but there's not much there i *would* want to watch.
-streaming downloaded content from sources like other computers is terribly limited. i was fortunate enough to have a western digital mybook world that has a build-in media server which works well enough, but from the sounds of things accessing content from a macbook or even the g5 would be a headache and might require paid software.
overall i don't want to slam the ps3 as i'm sure its a great game system and blu ray player, and maybe those will be reason enough to keep it... i had just hoped for more in its media streaming capabilities, and i don't know if i'm overlooking some good work arounds, or if sticking with the g5 for those tasks really is the better solution.
kilidar
May 5, 04:37 AM
i noticed better battery life today using my phone regularly as well as a MP3 player. it was minimal but a nice enough change to notice.
much improved battery here too.
much improved battery here too.
balamw
Apr 24, 07:48 AM
FWIW Oreilly's Learning Python e-book http://oreilly.com/catalog/9780596158071/ is available for 50% off through the rest of the weekend. http://oreilly.com/
B
B
Hisdem
Oct 15, 09:03 PM
Most wallpaper sites will have 1680x1050 as an option, as most current 17 inch monitors use that resolution. InterfaceLIFT (http://interfacelift.com/wallpaper_beta/) is a site I usually go to. You could try HDWallpapers (http://www.hdwallpapers.net) too. ;)
spillproof
Jun 11, 12:44 PM
Stop whining and get to making the flexible displays that are better than OLED and whatever the "retinal display" is.
BC2009
Sep 9, 06:18 PM
:)
mxelre
Jul 11, 11:43 AM
PM sent
xUKHCx
Jun 19, 05:04 PM
OMG! OMG! OMG! A Blue Ribbon! Yippee! :):):)
Thanks for your votes folks! Congrats to all the winners! There were lots of great entries for this contest and I'm very pleased to have won. As xUKHCx knows, the blue ribbon is what everybody wants!
calderone, great entry. You have mad design skills. What a battle that was! If you ever make a keyboard with that button, sign me up for one.
Great job to all participants
Now let the bragging begin
Congrats you two. Both were worthy winners. Also congratulations for everyone else who won or entered. There were some really good entries this time.
solarthecat unlucky that you were in such a tough category as that was a brilliant idea and design.
Thanks for your votes folks! Congrats to all the winners! There were lots of great entries for this contest and I'm very pleased to have won. As xUKHCx knows, the blue ribbon is what everybody wants!
calderone, great entry. You have mad design skills. What a battle that was! If you ever make a keyboard with that button, sign me up for one.
Great job to all participants
Now let the bragging begin
Congrats you two. Both were worthy winners. Also congratulations for everyone else who won or entered. There were some really good entries this time.
solarthecat unlucky that you were in such a tough category as that was a brilliant idea and design.
No comments:
Post a Comment