yellow
Jan 10, 12:17 PM
Copy and pasted, removed extraneous crap. Anyway.. nothing new here to see.
franmatt80
Apr 28, 05:15 AM
Can you post a screenshot to help us out?
iQuit
Sep 29, 01:01 AM
What do you mean? Noone actually knows when new products will be released but we can often suspect certain things, about what system are you talking about? Also, the refurb store has some pretty good deals and it won't be a waste of money imo to buy something from the refurb store.
I have changed my mind sooo many times now about what to buy. But I see they are selling some good stuff on the Apple refurb store. If I don't buy right now, when will new products make it back on Apple's page? Thanks
I have changed my mind sooo many times now about what to buy. But I see they are selling some good stuff on the Apple refurb store. If I don't buy right now, when will new products make it back on Apple's page? Thanks
Mudbug
Nov 7, 03:37 PM
I've been trying to split them up, so there's not just a solid front page of "ween" or "kenny chesney" or "the dixie chicks" or whatever - trying to get kind-of a cross-section of music at a time. And the way I see it, you should suggest the best song or two off an album, and if you want the whole album suggested, do that in the comments section of the first track you recommend. That way it's like a lead-in for people who like similar music and want to know more about this particular band.
I've been trying to remember to go back, but sometime I forget... :) I'll try and make a sweep over them again before too long. :D
I've been trying to remember to go back, but sometime I forget... :) I'll try and make a sweep over them again before too long. :D
more...
BFMC999
Dec 16, 12:54 PM
I recently saw a pc with OSX running on it. And that's neat. I'm mainly a Windows user but I've remained respectful to Apple hardware but I can't stand OSX. It's stable and it's easy to use but I much rather prefer the unrestricted control a knowledgeable user can have over Windows. Thus leads me to my question;
Has anyone gotten or heard of anyone getting Windows to run on a Mac without an excruciatingly slow emulator? Is there any chance of this happening in the future?
Has anyone gotten or heard of anyone getting Windows to run on a Mac without an excruciatingly slow emulator? Is there any chance of this happening in the future?
Adey
Oct 13, 05:29 PM
Seriously? Do people actually get paid to write this stuff?
Un-be-lievable.
Un-be-lievable.
more...
Mystikal
Feb 12, 11:42 AM
Buy. A. Case.
OMFG people.
OMFG people.
bedifferent
Mar 15, 03:09 PM
Man do these icons look ugly the look "ubuntu gnome like". It seems that they're decided on the icons being greyed out now, just like they did in iTunes. Huge bummer, we're visual and it would be much easier to distinguish with color imo. Hope the developers give apple that feedback.
Agreed. It's been reported on the dev forums, it seems it's an issue with many.
Colors are instinctively the easiest to notice than monochrome labels. Google "The Stroop Effect", an old psychological study that demonstrates we are inherently inclined to recognize this blue as red, not blue, etc. Hopefully Apple will make adjustments for the better.
I've spent hours weeding through system files and only found two locations for the three necessary sidebar icons, 16/18/36 sizes. I've replaced them all with custom color icons, reset permissions/PRAM/etc. but nothing. Since Lion's using more/new frameworks, it could be anywhere.
Agreed. It's been reported on the dev forums, it seems it's an issue with many.
Colors are instinctively the easiest to notice than monochrome labels. Google "The Stroop Effect", an old psychological study that demonstrates we are inherently inclined to recognize this blue as red, not blue, etc. Hopefully Apple will make adjustments for the better.
I've spent hours weeding through system files and only found two locations for the three necessary sidebar icons, 16/18/36 sizes. I've replaced them all with custom color icons, reset permissions/PRAM/etc. but nothing. Since Lion's using more/new frameworks, it could be anywhere.
more...
sleepykidd
Apr 23, 08:01 AM
Yes, I did the same for my flatmate's 1st gen MacBook whose drive is also bust.
I'm not sure if this can be done without any problems.
Ok so here is plan B in effect:
Got the retail disc on the way, going to erase my flash drive and put the retail image on that drive. Once I boot from it I'll erase the 1,1's HDD and do a clean install.
Hopefully that works.
I want to thank everyone for their input so far it's been very helpful.
I'm not sure if this can be done without any problems.
Ok so here is plan B in effect:
Got the retail disc on the way, going to erase my flash drive and put the retail image on that drive. Once I boot from it I'll erase the 1,1's HDD and do a clean install.
Hopefully that works.
I want to thank everyone for their input so far it's been very helpful.
ashwinr87
Apr 19, 11:57 AM
Thank you.. I also figured out the same thing some time back but forgot to post it here...
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
more...
Umbongo
Apr 24, 10:12 AM
While there are some other factors the main one is simple supply and demand. The same reason why MBPs hold their value over non-mac notebooks.
nesuser2
Dec 16, 09:45 PM
I'm not sure what it says above but Holiday bump. Asking $250 for everything. I would only trade for an ipod video but would really prefer some cashola via paypal and in the states ONLY. You can figure on paying $215+ range for the camera alone. I'm not sure what the card is now but it should be $100ish retail and no less than half that on ebay. So you're getting this mint used camera with the card, case, and extra battery .....with battery charger ofcourse for a pretty rockin deal. This would make an excellent gift since it is compact and yields stellar results. This will outperform your standard kodak easycrap 4mp camera or any of the lower line canon's...you know, that garbage that they sell cheap at christmas. So somebody......please buy!!
more...
dizel1024
May 1, 06:26 PM
Hi,
I am from Israel and I need help of the local people to buy iPad 3G as it this just 2 per credit card and it will be only available here in July so many of the local Apple community need your help!!.
I need 27 People with credit card to help I am willing to pay 25$ per each iPad bought.
The only place there are in stock if the General store in 5th Ave
Please contact me or via here or via dizel1024@gmx.com
347 759 1457
Thanks
Ido
I am from Israel and I need help of the local people to buy iPad 3G as it this just 2 per credit card and it will be only available here in July so many of the local Apple community need your help!!.
I need 27 People with credit card to help I am willing to pay 25$ per each iPad bought.
The only place there are in stock if the General store in 5th Ave
Please contact me or via here or via dizel1024@gmx.com
347 759 1457
Thanks
Ido
chrono1081
Apr 22, 09:21 AM
Skype is CPU intensive, this causes the MBA to work harder and the fans to spin to keep things cool. Why every week do we have threads on this? The computer hardware is doing what it is supposed to do. Its like saying "I pushed the "high" button on my blender and now the blender is going faster and getting louder".
I don't mean to sound mean or snippy here its not my intent its just that we have multiple threads like this every day.
I don't mean to sound mean or snippy here its not my intent its just that we have multiple threads like this every day.
more...
R94N
Oct 25, 12:35 PM
They look great all lit up. I've tried to draw the Apple logo in the past and I find it hard, never mind to actually carve it into something (it could be just my crappy drawing though :D).
lilcosco08
May 2, 10:34 PM
Heh. 3 way tie
THIS ISN'T HELPING :p
THIS ISN'T HELPING :p
more...
webmatthijs
Aug 26, 11:35 AM
ehm, lets see:
could be...
-ubar tmar album: fusion
-REbRO " : no one gets out
have a look in the itunes music store, if you have itunes ofcourse
could be...
-ubar tmar album: fusion
-REbRO " : no one gets out
have a look in the itunes music store, if you have itunes ofcourse
OutThere
Nov 3, 08:03 PM
Blogger.com is easy to set up and will provide quite a bit of flexibility in making a very straightforward blog.
http://www.blogger.com/
You might be able to host images on MyPhotoAlbum...
http://www.myphotoalbum.com/
which makes a simple way to share pictures and store them online. Otherwise you can use Imageshack, which isn't as robust but allows linking the photos from offsite and allows for hosting unlimited images.
http://www.imageshack.us
http://www.blogger.com/
You might be able to host images on MyPhotoAlbum...
http://www.myphotoalbum.com/
which makes a simple way to share pictures and store them online. Otherwise you can use Imageshack, which isn't as robust but allows linking the photos from offsite and allows for hosting unlimited images.
http://www.imageshack.us
dantiston
Apr 11, 03:07 PM
Hi,
I'm sure I'm duplicating another thread, but I can't find an explanation here or on Apple.com's support forum!
I'm a novice server admin running a server at a church, which we use primarily for web hosting and file sharing. We have our main website hosted on the server... which works well. It's super easy to update the website with iweb -- and super easy for everyone else who's not so into computers.
I'm trying to bring that same ease to updating our Children's Center website with iWeb and hosting it on the server. It's currently hosted on GoDaddy's web hosting, which has awful customization settings. I'm trying to switch us from GoDaddy's hosting to web hosting on the mac.
So far, by changing GoDaddy's DNS info to point to our dyndns host, I can get our GoDaddy domain to point to the server.... but it loads the church's website! I have set up a new Web Site in Server Admin with the Web Folder pointing to the output of iWeb (just as the church's website is set up). I have also tried two different DNS setups from browsing the interwebs (all morning), neither of which work.
1) I've set up (childrenscenter).org as a Primary Zone with a Web Service running underneath. The web service points to the Machine ID of the church's Primary Zone, which points to the address of the server. (which, I understand, should point it to the web service, which would point it to the right folder, but no! Argh)
2) I read elsewhere to set up my second site as an alias under my Primary Zone... so I tried that, simply pointing (childrenscenter).org to (server.church).org, which, also, should point to the Machine ID, to the address of the server, to the children's center website!
What am I doing wrong? I�m thinking my DNS is set up right� but I guess I don�t know how to set up the web services properly. Ideally, I�d like to keep any tinkering within Server Admin, as I can teach a dedicated volunteer to do that easier than using a terminal command or editing some obscure file.
Thanks in advanced. :)
I'm sure I'm duplicating another thread, but I can't find an explanation here or on Apple.com's support forum!
I'm a novice server admin running a server at a church, which we use primarily for web hosting and file sharing. We have our main website hosted on the server... which works well. It's super easy to update the website with iweb -- and super easy for everyone else who's not so into computers.
I'm trying to bring that same ease to updating our Children's Center website with iWeb and hosting it on the server. It's currently hosted on GoDaddy's web hosting, which has awful customization settings. I'm trying to switch us from GoDaddy's hosting to web hosting on the mac.
So far, by changing GoDaddy's DNS info to point to our dyndns host, I can get our GoDaddy domain to point to the server.... but it loads the church's website! I have set up a new Web Site in Server Admin with the Web Folder pointing to the output of iWeb (just as the church's website is set up). I have also tried two different DNS setups from browsing the interwebs (all morning), neither of which work.
1) I've set up (childrenscenter).org as a Primary Zone with a Web Service running underneath. The web service points to the Machine ID of the church's Primary Zone, which points to the address of the server. (which, I understand, should point it to the web service, which would point it to the right folder, but no! Argh)
2) I read elsewhere to set up my second site as an alias under my Primary Zone... so I tried that, simply pointing (childrenscenter).org to (server.church).org, which, also, should point to the Machine ID, to the address of the server, to the children's center website!
What am I doing wrong? I�m thinking my DNS is set up right� but I guess I don�t know how to set up the web services properly. Ideally, I�d like to keep any tinkering within Server Admin, as I can teach a dedicated volunteer to do that easier than using a terminal command or editing some obscure file.
Thanks in advanced. :)
Zen0Jin
May 6, 03:39 PM
Yes you can. Don't argue with me, I have been switching back and forth on Crysis 2 and there is definitely a noticeable difference.
However Games still look good with 1920x1080 on the 27" iMac.
It looks fine at 1920x1080 in games, that's when you would actually use it...
However Games still look good with 1920x1080 on the 27" iMac.
It looks fine at 1920x1080 in games, that's when you would actually use it...
wrldwzrd89
Sep 28, 03:03 PM
My ignorance is showing. Thanks, that was it.
Whose? James Craner's suggestion or mine? You didn't quote the post you used...
Whose? James Craner's suggestion or mine? You didn't quote the post you used...
Joshuarocks
Mar 19, 06:17 PM
You have to be 18 to work there.
If you want to survive, then just don't do part-time. Full time spots at Apple retail are extremely hard to come by.
This is also hard to come by in all sectors of this bad job market.. the only sector of the job market remotely doing very well is HEALTH CARE.. you will always need nurses, doctors, etc... but no one needs industrial workers or customer service.. retail is a DEAD END as far as I am concerned..
Even admin assistant jobs are on the decline. Contrary to what you hear on CORPORATE America's media news stations(THEY LIE AND BLIND THE AMERICAN PEOPLE), THE job market is not improving very much.
If you want to survive, then just don't do part-time. Full time spots at Apple retail are extremely hard to come by.
This is also hard to come by in all sectors of this bad job market.. the only sector of the job market remotely doing very well is HEALTH CARE.. you will always need nurses, doctors, etc... but no one needs industrial workers or customer service.. retail is a DEAD END as far as I am concerned..
Even admin assistant jobs are on the decline. Contrary to what you hear on CORPORATE America's media news stations(THEY LIE AND BLIND THE AMERICAN PEOPLE), THE job market is not improving very much.
SMM
Sep 28, 08:10 PM
Yes and how about a name for it: "iCheat"
Sorry to hear that my man, but recognizing a problem is half-way to curing it.
Sorry to hear that my man, but recognizing a problem is half-way to curing it.
hehe299792458
Mar 26, 09:31 PM
My mouse (Microsoft Basic Optical Mouse v2.0) show far less mouse acceleration in Lion compared to Snow Lion.
I haven't read anything about this so I guess it's something on my end? Or does other people get similar behavior in Lion?
What exactly do you mean by acceleration?
I haven't read anything about this so I guess it's something on my end? Or does other people get similar behavior in Lion?
What exactly do you mean by acceleration?
No comments:
Post a Comment