andiwm2003
Jun 22, 06:47 PM
congrats to all. there is some serious talent here!!!
-aggie-
Apr 11, 08:21 AM
Hi,
Yeah, the credit is the points - in this case 481 points.
However, these WU (and all the other SMP core_A3 and core_A5 ones) also qualify for Quick Return Bonus Points.
Basically, there is a sliding scale that rewards quick return with more points. This is done to encourage people to just run one client quickly, rather than multiple ones more slowly.
However, to qualify for these bonus points (that are often worth 10 times the base points), you'll need a passkey - see here:
http://forums.macrumors.com/showthread.php?t=1073565
You can calculate how many points you expect to receive here:
http://linuxforge.net/bonuscalc2.php
Hope that helps
Rob
Thanks. So, when do they score the bonus points? I only have the base points (481) so far, but should’ve gotten 968 more points.
Yeah, the credit is the points - in this case 481 points.
However, these WU (and all the other SMP core_A3 and core_A5 ones) also qualify for Quick Return Bonus Points.
Basically, there is a sliding scale that rewards quick return with more points. This is done to encourage people to just run one client quickly, rather than multiple ones more slowly.
However, to qualify for these bonus points (that are often worth 10 times the base points), you'll need a passkey - see here:
http://forums.macrumors.com/showthread.php?t=1073565
You can calculate how many points you expect to receive here:
http://linuxforge.net/bonuscalc2.php
Hope that helps
Rob
Thanks. So, when do they score the bonus points? I only have the base points (481) so far, but should’ve gotten 968 more points.
iLucas
Apr 24, 11:08 PM
Might get the second, i've heard great things about i7. Also i've heard wifi is better on MB because the aluminum interferes on the MBP?
With a MBP you get a newer processor that won't be outdated nearly as fast as a C2D. You also get thunderbolt. It may not mean anything to you now since there are not that many thunderbolt devices but there will be in the future, and you get a better graphics card in a MBP than in the MB. You get Intel HD 3000 in the MBP and NVIDIA Geforce 320M in the MacBook. The Intel has 384MB whereas the NVIDIA has 256MB
With a MBP you get a newer processor that won't be outdated nearly as fast as a C2D. You also get thunderbolt. It may not mean anything to you now since there are not that many thunderbolt devices but there will be in the future, and you get a better graphics card in a MBP than in the MB. You get Intel HD 3000 in the MBP and NVIDIA Geforce 320M in the MacBook. The Intel has 384MB whereas the NVIDIA has 256MB
iphones4evry1
Jul 29, 12:48 AM
...and you thought it was difficult to get an iPhone 4 now. A three-week waiting list? Ha. Just wait until the iPhone 4 goes on sale in China. How about a three-month waiting list? :eek:
bluehill
May 4, 05:37 AM
You shouldn't add an extra release. Is this what you have?
Yes
@synthesize mapView;
- (void)dealloc
{
//NSLog(@"Retain cont address=%d geoLoc=%d workingPropertyString=%d mapView=%d",[address retainCount],[geoLoc retainCount],[workingPropertyString retainCount],[mapView retainCount]);
[updateData release];
[updateConnection release];
[address release];
[geoLoc release];
[workingPropertyString release];
[mapView release];
%IMG_DESC_6%
%IMG_DESC_7%
%IMG_DESC_8%
%IMG_DESC_9%
%IMG_DESC_10%
%IMG_DESC_11%
%IMG_DESC_12%
%IMG_DESC_13%
%IMG_DESC_14%
%IMG_DESC_15%
%IMG_DESC_16%
%IMG_DESC_17%
%IMG_DESC_18%
%IMG_DESC_19%
Yes
@synthesize mapView;
- (void)dealloc
{
//NSLog(@"Retain cont address=%d geoLoc=%d workingPropertyString=%d mapView=%d",[address retainCount],[geoLoc retainCount],[workingPropertyString retainCount],[mapView retainCount]);
[updateData release];
[updateConnection release];
[address release];
[geoLoc release];
[workingPropertyString release];
[mapView release];
jackerin
Jan 1, 05:31 PM
From a financial standpoint, I think he'd be wasting his money, spending extra for a pressure sensitive kybd.
It's not like there is a lack of small, affordable keyboards, even with velocity-sensitivity. Take the Korg Nanokey for example. To be honest I think it would be harder finding a quality keyboard that isn't pressure sensitive...
It's not like there is a lack of small, affordable keyboards, even with velocity-sensitivity. Take the Korg Nanokey for example. To be honest I think it would be harder finding a quality keyboard that isn't pressure sensitive...
satcomer
Feb 18, 04:36 PM
Also watch a video on how to install an SSD in 2010 right here (http://eshop.macsales.com/installvideos/mac_mini2010_hd/).
eric55lv
Jan 14, 08:26 PM
Well I wantel to go but the tickets were to expensive
iGary
Sep 23, 12:24 PM
Yeah, maybe I do need him. :D
ClassicBean
Dec 15, 12:48 PM
I predict that the author of this article will finally discover the Spelling & Grammar Check function in Word or whatever program they use.
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.
bobber205
Dec 5, 07:57 PM
Clean design, would be even better if it wasn't a template. Not that there's anything wrong with those. :cool:
warcraftmaster
Jun 15, 11:31 PM
I suggest you make some wild and unsubstantiated claims about Macs and PC's or something similar to get it started with a nice big flame-war.
How about one of these:
2.5ghz G5 is just an overclocked 2.0. Otherwise why would it need to be watercooled?
It's about time Apple made a Phone/PDA
Apple ought just get real and start using Intel/AMD and get their new cases redesigned by Alienware. OH and get some decent games...
That sort of thing ought to do nicely. ;)
whats your problem :eek: you know some people dont want to die alround here or have there house burned down :p
How about one of these:
2.5ghz G5 is just an overclocked 2.0. Otherwise why would it need to be watercooled?
It's about time Apple made a Phone/PDA
Apple ought just get real and start using Intel/AMD and get their new cases redesigned by Alienware. OH and get some decent games...
That sort of thing ought to do nicely. ;)
whats your problem :eek: you know some people dont want to die alround here or have there house burned down :p
Pathfinder 2K9
Oct 29, 12:07 PM
My little starter collection. About 60 Blu-Rays and about 40 DVD's
http://i51.photobucket.com/albums/f371/maxima2k2se/photo-1-3.jpg
http://i51.photobucket.com/albums/f371/maxima2k2se/photo-1-3.jpg
Mr. Chewbacca
Apr 10, 09:46 AM
folder enhancer is pretty nice
Sun Baked
Sep 17, 04:20 PM
So is that definitely what i have? it says on some of the memory sites that somes G5s have four dimm slots and others 8. I'm pretty sure mine has 8, but want to verify.As I said before...
PowerMac G5 = DIMMs in PAIRS
4 DIMM or 8 DIMMs do not matter, all PowerMac G5s use memory in pairs -- due to dual channel memory.
Single channel is 1 DIMM installed at a time, the PowerMac G5 is NOT one of these machines. Therefore install 2 at a time.
PowerMac G5 = DIMMs in PAIRS
4 DIMM or 8 DIMMs do not matter, all PowerMac G5s use memory in pairs -- due to dual channel memory.
Single channel is 1 DIMM installed at a time, the PowerMac G5 is NOT one of these machines. Therefore install 2 at a time.
Gamdoan
Jan 9, 09:54 AM
Is it strange that I am more excited about iWork than iLife anymore as the only iLife app I use is iPhoto? I use Pages and Keynote all the time. Heck, I only use Word when absolutely necessary, and even though I'd like to see an Apple spreadsheet app in iWork, Excel is the best Micro$haft app. My business oriented mind does have that special place for Excel....
Okay, so here's hoping for a better iWork today, and that STeve gives it more time this year than the 15 seconds he did last year.
Okay, so here's hoping for a better iWork today, and that STeve gives it more time this year than the 15 seconds he did last year.
simsaladimbamba
Apr 26, 09:41 AM
Hi,
Has anyone been able to force an apple store to guarantee a Lion O/S upgrade for free with the purchase of a Macbook pro now?
Just curious.
Thanks!
With this (http://www.mil.ee/im/varustus/relvapilt/fh70-vm6.jpg) perhaps?
Has anyone been able to force an apple store to guarantee a Lion O/S upgrade for free with the purchase of a Macbook pro now?
Just curious.
Thanks!
With this (http://www.mil.ee/im/varustus/relvapilt/fh70-vm6.jpg) perhaps?
arn
Nov 6, 02:19 PM
I think people try to prevent multiple songs from the same artist showing up at once... but we then forget to go back...
we'll get 'em in there...
I'll talk to the other admins
arn
we'll get 'em in there...
I'll talk to the other admins
arn
Blue Velvet
Nov 29, 02:23 PM
i still need more concrete clarification on whether to trademark or copyright the logo for my company...
No need to bother. You possess moral rights immediately upon its final form:
When is my work protected?
Your work is under copyright protection the moment it is created and fixed in a tangible form that it is perceptible either directly or with the aid of a machine or device.
Besides, to be frank, it's quite probable that your design will infringe on the copyright of others.
No need to bother. You possess moral rights immediately upon its final form:
When is my work protected?
Your work is under copyright protection the moment it is created and fixed in a tangible form that it is perceptible either directly or with the aid of a machine or device.
Besides, to be frank, it's quite probable that your design will infringe on the copyright of others.
Nicolasdec
Mar 27, 04:53 AM
Isent the ps3 the most powerfull one? isent it like 25 time more folding power than a pc? dose any one leave there ps3 all night folding?
RawBert
Aug 4, 07:43 PM
No... it amounted to some spectacular Northern Lights displays. My wife showed me bunch that were captured last night and posted to the web.... I don't know where she found them.... but they were spectacular. :)
OMG! That picture is insane. :eek:
http://www.csmonitor.com/var/ezflow_site/storage/images/media/images/csm-photo-galleries-images/in-pictures-images/auroras/01/8191564-1-eng-US/01_full_600.jpg
More (http://www.csmonitor.com/CSM-Photo-Galleries/In-Pictures/The-Northern-and-Southern-Lights).
OMG! That picture is insane. :eek:
http://www.csmonitor.com/var/ezflow_site/storage/images/media/images/csm-photo-galleries-images/in-pictures-images/auroras/01/8191564-1-eng-US/01_full_600.jpg
More (http://www.csmonitor.com/CSM-Photo-Galleries/In-Pictures/The-Northern-and-Southern-Lights).
ReanimationLP
Dec 16, 10:54 PM
Well, if you also part it out, how much for the case/PSU/mainboard and whatevers left?
ThunderLounge
Oct 27, 08:21 AM
I thought I read (in one of these threads somewhere) where someone had stuck it on a PowerBook and it was faster then it had been before the upgrade.
I might try it on my wife's iMac G4, just for kicks. I haven't upgraded it at all (it's still on Jaguar) so it might be an interesting time.
Anybody going down to Ft. Worth next weekend? :D
I might try it on my wife's iMac G4, just for kicks. I haven't upgraded it at all (it's still on Jaguar) so it might be an interesting time.
Anybody going down to Ft. Worth next weekend? :D