FFTT
Sep 20, 08:14 AM
They need to add a mental support page for all of us now suffering from stress, depression and anxiety :(
Mechcozmo
Dec 29, 11:18 AM
Are you wanting just one world-editable article each week, or a few? I think having about 5 per week would be more advantageous since a single article represents such a small portion of the Guides, and we have enough people to watch over changes. There are only so many improvements that can be made to one article, so a week seems like a long time to focus on a single page. Take for example the Aperture article, which has only had one change in the last 6 days yet has been the only featured guide during that period.
Finally, would there be a set time each week for the article selection to change, and would it be just you or all the sysops choosing them? If the latter, would there be prior discussion as to which articles to select (eg in the WorldEdit talk page), or would sysops just add articles without consultation?
I think 5-7 articles a week would be great to have world-editable.
I think that Tuesday would be... a fitting day to change the guides. And talking about them first would be MUCH better than random addition. :)
(Yeah, this is an old thread, but I've been in Israel for the past 10 days...)
Finally, would there be a set time each week for the article selection to change, and would it be just you or all the sysops choosing them? If the latter, would there be prior discussion as to which articles to select (eg in the WorldEdit talk page), or would sysops just add articles without consultation?
I think 5-7 articles a week would be great to have world-editable.
I think that Tuesday would be... a fitting day to change the guides. And talking about them first would be MUCH better than random addition. :)
(Yeah, this is an old thread, but I've been in Israel for the past 10 days...)
Ommid
Apr 25, 07:14 PM
If you order quickly you can try the following Superbiiz coupon code for 15% off, but it may have already expired.
RABBIT15
UK Shipping costs more than the ram :( lol
RABBIT15
UK Shipping costs more than the ram :( lol
Jasonbot
Apr 16, 01:14 PM
You could take all the things people hate about gamertags, and then be really ironic and thus the coolest mofo on XBL :p
So... random Xs, random numbers, lots of l33t, the usage of a famous character's name as though it were your own... *and off the gamertag machine goes...*
XxX_s3xI_m45T3R_69_cH3f_pWnz4g3_xXx_91
Classic, just classic!
I'd prefer just Se><1_m4573R_cH3F though, very funny!
So... random Xs, random numbers, lots of l33t, the usage of a famous character's name as though it were your own... *and off the gamertag machine goes...*
XxX_s3xI_m45T3R_69_cH3f_pWnz4g3_xXx_91
Classic, just classic!
I'd prefer just Se><1_m4573R_cH3F though, very funny!
JimMacFan
May 4, 12:25 PM
What is the height from the table or desktop to the bottom of the screen. Not the bottom of the IMAC, but the bottom of the screen/glass.
Thanks!
Jim
Thanks!
Jim
T-bag
Apr 4, 04:55 PM
My english is a little bit rusty but I'll try to explain what I think.
If you only look at this with a financial perspective there is a certain timeframe that within you should choose to either sell or keep. Like with cars and everything else. If you decide to keep past this timeframe you'll have to wait for a longer period of time for it to be financially smart to upgrade, the longer the better.
Having an unstable video card (don't take my word for it, I've just read it here) may point in the direction of upgrading sooner rather than later. If it fails you have no computer and nothing to sell.
At what age this "timeframe" for MBPs is I don't know. I guess it varies from country to country and also depend on the market a lot. Since the apple care is over, I'm guessing a couple of months ago. In my country we have rights beyond apple care (5 years from purchase). If the video card is unlikely to fail and you don't really need to upgrade, then why not simply keep it until it dies? If you're going to get a new MBP within 1-2 years, I'd see how much I could get for it.
I'm not sure if I made myself clear here. I'm always struggling with buying new expensive things myself, especially if I don't really need them. It's all about how much you're willing to pay to get the latest.
Good luck!
If you only look at this with a financial perspective there is a certain timeframe that within you should choose to either sell or keep. Like with cars and everything else. If you decide to keep past this timeframe you'll have to wait for a longer period of time for it to be financially smart to upgrade, the longer the better.
Having an unstable video card (don't take my word for it, I've just read it here) may point in the direction of upgrading sooner rather than later. If it fails you have no computer and nothing to sell.
At what age this "timeframe" for MBPs is I don't know. I guess it varies from country to country and also depend on the market a lot. Since the apple care is over, I'm guessing a couple of months ago. In my country we have rights beyond apple care (5 years from purchase). If the video card is unlikely to fail and you don't really need to upgrade, then why not simply keep it until it dies? If you're going to get a new MBP within 1-2 years, I'd see how much I could get for it.
I'm not sure if I made myself clear here. I'm always struggling with buying new expensive things myself, especially if I don't really need them. It's all about how much you're willing to pay to get the latest.
Good luck!
forcefieldkid
Feb 18, 08:57 AM
Believe in What You Want (Jimmy Eat World)
+1 - Great show.
Reel Big Fish @ The House of Blues
Staind - MTV Unplugged (Surprised me as I thought they were gash before that)
Lauryn Hill - MTV Unplugged
The Roots Present...
Life of Agony - River Runs Again
+1 - Great show.
Reel Big Fish @ The House of Blues
Staind - MTV Unplugged (Surprised me as I thought they were gash before that)
Lauryn Hill - MTV Unplugged
The Roots Present...
Life of Agony - River Runs Again
mbl42
Dec 14, 05:36 PM
I believe Sharper Image still has them in stock too, might want to check it out.
bluehill
May 2, 09:38 AM
The performance tool is showing leak at this position( red color).
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
York-Diuck
Dec 11, 04:55 PM
well at least you figured it out...I would've gone nuts troubleshooting that issue
Cheffy Dave
Apr 18, 02:11 PM
Been using iKleer Apple Polish on case ,keyboard and screen, on a COOL laptop, ALWAYS spray on a Microfiber cloth, NEVER on the machine itself.
Love the stuff!!!
Even use it on my 55":eek::cool: LCD TV screen as well
Love the stuff!!!
Even use it on my 55":eek::cool: LCD TV screen as well
nicname
Apr 13, 11:30 PM
love the slider's look, feel, and protection but hate the weight it adds and that its not the easiest of cases to slide in and out of my pocket.
Anyone know any cases similar with a tight fit on the phone and protective enough like the slider but a little lighter?
Anyone know any cases similar with a tight fit on the phone and protective enough like the slider but a little lighter?
stefmesman
Apr 16, 11:28 AM
i forsee,
lower prices?
thinner?
daisy chain thunderbolt
facetime HD
when...? hopefully end of summer.
lower prices?
thinner?
daisy chain thunderbolt
facetime HD
when...? hopefully end of summer.
Blue Velvet
Mar 30, 09:51 AM
http://griffintechnology.com/products/ivault/index.php
Now this is what I'm looking for. The blue one looks nice... only $US30. :)
Now this is what I'm looking for. The blue one looks nice... only $US30. :)
GGJstudios
May 3, 05:03 PM
Yes, I know that. That is why I am asking on here if any one knows what they are and if they are safe to delete....
Why not just leave them, since they're not hurting anything by being there. I'm sure if you did enough research, you could find the purpose for each file, but why waste the time?
Why not just leave them, since they're not hurting anything by being there. I'm sure if you did enough research, you could find the purpose for each file, but why waste the time?
DirtySocks85
May 3, 09:15 AM
My iPhone 4 is actually better than both point and shoot cameras we own (we haven't bought a new one in a few years), so yes, it has totally replaced my point and shoot camera.
michaelrjohnson
Dec 10, 10:44 PM
I have several Zip drives available.
A) 250MB SCSI
B) 250MB USB (non-USB powered)
To go with either, I have several 250MB disks and a bunch of 100MB disks. As with previous members, make an offer!
A) 250MB SCSI
B) 250MB USB (non-USB powered)
To go with either, I have several 250MB disks and a bunch of 100MB disks. As with previous members, make an offer!
pulsewidth947
Mar 20, 09:08 AM
I've been trying to find a USB KVM switch in the UK, and i'm not having much luck. The only ones i can find are ones where the output of the keys/mouse is usb, but the Input of the unit is PS/2.
I really want one with USB inputs, so i can use an Apple keyboard. Does anyone have any idea of where to look? I've checked ebay, dabs, ebuyer, pc world. They only seem to sell the PS/2 > USB ones..
ta!
I really want one with USB inputs, so i can use an Apple keyboard. Does anyone have any idea of where to look? I've checked ebay, dabs, ebuyer, pc world. They only seem to sell the PS/2 > USB ones..
ta!
retasi
Dec 22, 04:24 PM
Great stuff.
TwinCities Dan
Oct 9, 10:18 PM
There are so many, but Rodrigo Y Gabriela are something special... ;) :)
spblat
Mar 8, 10:21 PM
I!
G4scott
Oct 17, 04:11 PM
Email, faxes, instant messages, documents, and alerts pop on and off automatically, but are controlled by the user. Because there is so much screen landscape, the desktop doesn't have a cluttered feeling.
They pop up automatically, but are controlled by the user? Like pop-up ad's? Bad idea if you ask me. I like the notifications in the dock with iChat and Mail. The icon changes, and they can make a sound whenever a new message is received.
As for that much screen landscape, I think it would be hard to control that much space. If you needed it for really big spreadsheets or for tons of tools for designing or creating videos, I can understand, but having to lift the mouse up 5 times just to get from one side of the screen to the other, and turning your head 45� to view the whole thing seems a bit over-done.
Apple is making widescreen standard. Unfortunately, in a bizarre move, microsoft seems to be taking Apple on with the whole wide-screen thing, and they seem to be going over-board. I wonder if they will give you coupons for free neck adjustments at your local chiropractor?
Oh well. In 5 years, I'll probably still be using a Mac...
They pop up automatically, but are controlled by the user? Like pop-up ad's? Bad idea if you ask me. I like the notifications in the dock with iChat and Mail. The icon changes, and they can make a sound whenever a new message is received.
As for that much screen landscape, I think it would be hard to control that much space. If you needed it for really big spreadsheets or for tons of tools for designing or creating videos, I can understand, but having to lift the mouse up 5 times just to get from one side of the screen to the other, and turning your head 45� to view the whole thing seems a bit over-done.
Apple is making widescreen standard. Unfortunately, in a bizarre move, microsoft seems to be taking Apple on with the whole wide-screen thing, and they seem to be going over-board. I wonder if they will give you coupons for free neck adjustments at your local chiropractor?
Oh well. In 5 years, I'll probably still be using a Mac...
talmy
Apr 14, 01:06 PM
Working off the server is just fine, and shouldn't be a performance problem with just four users on the mini. Be sure that any temporary files are being created locally.
elVince
May 6, 11:25 PM
I had the same heating issues while playing WoW on my 15" Late-2009 MBP. I began looking at coolers and decided on the Rain Design mStand. While not an active cooler, it does lift the notebook off the desk surface, providing better air circulation. The aluminum design also helps dissipate heat. As an added bonus, it looks great too.
www.raindesigninc.com
:apple:
Meh, i dont want to have to deal with an external keyboard
I suggest the NZXT cooler.
http://www.newegg.com/Product/Product.aspx?Item=N82E16834997340
The reviews on that seem to be mixed between it actually cooling things down and the usb ports working?
www.raindesigninc.com
:apple:
Meh, i dont want to have to deal with an external keyboard
I suggest the NZXT cooler.
http://www.newegg.com/Product/Product.aspx?Item=N82E16834997340
The reviews on that seem to be mixed between it actually cooling things down and the usb ports working?