Jovian9
Sep 29, 12:15 AM
May I suggest that you backup your Photos and other imprtant data to optical medaia (DVD-R/CD-R)?
They are backed up on DVD-R's and on a FW Hard Drive (and on my iPod). Maybe too many backups :)
They are backed up on DVD-R's and on a FW Hard Drive (and on my iPod). Maybe too many backups :)
imahawki
May 3, 06:21 AM
I deleted my time machine preferences and started from scratch (full reset as its called). It backed up last night and then this morning it reported that the disk was full. It was more of an alert than an error. I said OK and started the next backup and it failed, same error. I've got 641GB of free space on the disk! My backup set is large but it should only be backing up the changes so it shouldn't be bombing out. Nothing on my computer changed over night (or sure as hell not 641GB worth of changes!
Rodimus Prime
May 4, 02:57 PM
They probably would have just picked up and left after that five year reprieve. That has happened multiple times where I live - the factories come for tenish years, their tax exemption ends, and they leave. Then the massive local unemployment starts again
not surprised in the least. I think states should put other requirements on if they leave after there tax exemption with in X number of years they are required to pay all taxes during the exemption as well basically lose tax exempt status.
Apparently, a coalition of state retailers weighed in and convinced the legislature that not having to collect taxes would give Amazon an unfair sales advantage.
Honestly I am glad seeing more and more states stand up to like this. SC is just another state and Amazon is going to quickly run out places to go and more or less be forced to play hard ball. If anything I believe a national law should be passed.
not surprised in the least. I think states should put other requirements on if they leave after there tax exemption with in X number of years they are required to pay all taxes during the exemption as well basically lose tax exempt status.
Apparently, a coalition of state retailers weighed in and convinced the legislature that not having to collect taxes would give Amazon an unfair sales advantage.
Honestly I am glad seeing more and more states stand up to like this. SC is just another state and Amazon is going to quickly run out places to go and more or less be forced to play hard ball. If anything I believe a national law should be passed.
StarbucksSam
Feb 23, 08:06 PM
I like it. However, I'm not crazy about the fonts used in it or that the controls are always on.
Saladinos
Jul 23, 02:34 PM
The first preview had a lot of major bugs. It may be near feature complete, but I agree that they need to spend time and ensure the IDE is stable before they make a GM.
They'll just use fix-it and ship it next week :)
XCode 3 is way old. It was released with Leopard. Since then, we've only really had minor revisions (3.1, 3.2) and very infrequent intervals (3.2 released with snow leopard). I would expect Apple have been working on this for a very long time already.
Many of those features (e.g. the static analyser, which came with 3.2) could very well have been the result of development done for XCode 4.
Since the product was announced which such fanfare at WWDC, I would imagine a release would happen in the next few months. Possibly with the iPad's OS4 update (predicted to be around late August/September).
EDIT: In case anybody was worried, XCode 4 by default installs in to its own folder (/Xcode4) and can co-exist with 3.X. It can open 3.X projects and does not "upgrade" them or make them incompatible with earlier versions.
They'll just use fix-it and ship it next week :)
XCode 3 is way old. It was released with Leopard. Since then, we've only really had minor revisions (3.1, 3.2) and very infrequent intervals (3.2 released with snow leopard). I would expect Apple have been working on this for a very long time already.
Many of those features (e.g. the static analyser, which came with 3.2) could very well have been the result of development done for XCode 4.
Since the product was announced which such fanfare at WWDC, I would imagine a release would happen in the next few months. Possibly with the iPad's OS4 update (predicted to be around late August/September).
EDIT: In case anybody was worried, XCode 4 by default installs in to its own folder (/Xcode4) and can co-exist with 3.X. It can open 3.X projects and does not "upgrade" them or make them incompatible with earlier versions.
blueroom
Mar 22, 03:27 PM
Ticket? Didn't know they were handing out tickets.
Corbin052198
Nov 10, 02:38 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16)
makes sense, considering the bog of traffic they'd want to control
Yeah, I think Angry Birds Christmas would blow the roof off their Mac Minis :D
makes sense, considering the bog of traffic they'd want to control
Yeah, I think Angry Birds Christmas would blow the roof off their Mac Minis :D
tsteakuk
Mar 25, 01:51 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F190 Safari/6533.18.5)
Poplar road entrance main queue has started. Will fill you in as things progress. 10hours 10mins to go.
Poplar road entrance main queue has started. Will fill you in as things progress. 10hours 10mins to go.
alfred1986
Nov 18, 02:14 AM
'Gift' is the name of the ad.
Okay fine..Did you checked the given link...in the page there is link to "gifts" beneath the iTunes section page..but not provided here...
Okay fine..Did you checked the given link...in the page there is link to "gifts" beneath the iTunes section page..but not provided here...
olternaut
Jan 14, 12:22 PM
I'll try but I'll be on MacRumours by half 5, and then I'll watch the video on Wednesday probably.
What the hell?? Wednesday? Aren't they going to post the video tuesday night?????/ :confused:
What the hell?? Wednesday? Aren't they going to post the video tuesday night?????/ :confused:
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.
vincenz
Feb 23, 06:29 PM
Don't know much about judging photography, but from an amateur viewer, they look quite decent.
TheGimp
Mar 29, 10:01 AM
Colin Mcrae Rally (VERY hard but very rewarding and with great GFX)
RPG: Kingdom of Paradise (something like that)
Wipeout (get gold medals in every event) + free expansions
Metal Gear Acid (turn-based game) and Metal Gear Solid: Portable OPs
NES, SNES, Neo Geo, Turbo GFX 16, Genesis, and SMS collection (those should keep you busy for a while). The Metal Slug games alone should eat up at least a quarter of your trip.
if you like puzzle games, then get Mercury and Lumines. You can superset those to eat up most of the trip.
Don't listen to those recommending a DS. The ones worth playing are much too good to be wasted on a trip. :P
RPG: Kingdom of Paradise (something like that)
Wipeout (get gold medals in every event) + free expansions
Metal Gear Acid (turn-based game) and Metal Gear Solid: Portable OPs
NES, SNES, Neo Geo, Turbo GFX 16, Genesis, and SMS collection (those should keep you busy for a while). The Metal Slug games alone should eat up at least a quarter of your trip.
if you like puzzle games, then get Mercury and Lumines. You can superset those to eat up most of the trip.
Don't listen to those recommending a DS. The ones worth playing are much too good to be wasted on a trip. :P
iceblade
Mar 6, 01:00 PM
Personally, I would love to work at a mall store. With that in mind, though, I AM a college student, not someone looking for a career quite yet. Although being a store manager and moving up from there might be fun.
Best of luck to those going through the hiring process, I may be with you in a year or two (I need to get more retail experience)!
Best of luck to those going through the hiring process, I may be with you in a year or two (I need to get more retail experience)!
Gokhan
Dec 16, 06:52 AM
looking at it are you sure there is a airport card installed check sysytem profiller i think its not there !!
also if there is one it should just be open flap pull cord attched to ther card and press in it should click out
also if there is one it should just be open flap pull cord attched to ther card and press in it should click out
lexfuzo
Sep 23, 02:26 PM
So some of this could be new stock that's just repacked for a low price? Possible I suppose.
Although I wonder where they've dug up the 3rd gen iPods from. Think they've found a stock room that they thought they'd lost? :eek: ;)
I'm sure there is some iPod cemetery where the undead 3rd-gens wait to be sold as refurbished... *BUUUAAHHH* :eek:
Although I wonder where they've dug up the 3rd gen iPods from. Think they've found a stock room that they thought they'd lost? :eek: ;)
I'm sure there is some iPod cemetery where the undead 3rd-gens wait to be sold as refurbished... *BUUUAAHHH* :eek:
aussie_geek
Aug 10, 10:48 PM
BS. Where are you getting your info? The CPU does all the work, the HD only stores the info crunched to send back to SETI. I am coming up on my 1st yr anniversary and no problems. My main machine is the G3/300, 6 yrs old and still purring like the day it was new. Just make sure you have a good air flow through the box and everything will be fine. It is the peps that use PowerBooks that burn up your machine, probably because they don't raise it off the table to get air underneath it. I use 1/2" rubber feet and a small desk fan blowing across the unit to cool my PowerBook the fan hardly comes on. My temps never exceed 109�F in my G3.
What happens is when you are processing a work unit, the result from each process is written back to disk. Although the data units are small (about 350kb) your Mac is continually reading / writing the data from the same sector of the disk. Think of it as a bush track. Although there is lots of dirt there, over time the people who walk through there make a groove.... Do you want this to happen to a $200 hard drive?
Now, lets say that data unit is somehow fragmented on your drive. Imagine all the work the drive heads have to do to read / write a data result.
This is why you should set up a ram disk - it saves your hard drive and actually speeds up the process. It is always faster to read / write from ram than it is to a HD. ;)
aussie_geek
edit - although I do think distributed computing is a great solution to solving problems, I can't see myself being that dedicated setting up a box fan to cool my computer so I can pump out 300 work units a year....
What happens is when you are processing a work unit, the result from each process is written back to disk. Although the data units are small (about 350kb) your Mac is continually reading / writing the data from the same sector of the disk. Think of it as a bush track. Although there is lots of dirt there, over time the people who walk through there make a groove.... Do you want this to happen to a $200 hard drive?
Now, lets say that data unit is somehow fragmented on your drive. Imagine all the work the drive heads have to do to read / write a data result.
This is why you should set up a ram disk - it saves your hard drive and actually speeds up the process. It is always faster to read / write from ram than it is to a HD. ;)
aussie_geek
edit - although I do think distributed computing is a great solution to solving problems, I can't see myself being that dedicated setting up a box fan to cool my computer so I can pump out 300 work units a year....
liketom
Jan 17, 02:21 PM
I'm a teacher who has brought his class every year to MacWorld. We always come on Friday. I don't think that any booths close down on Friday until the late afternoon. My kids like the fact that vendors are more willing to give away free stuff on Fridays.
So...I don't think it would be a waste of your time.
thats really cool for you to take them to macworld ! when i was at school our teacher took our class to the police station to have a look around - in a way most of my class seemed to love that place as they keep on going back :D
So...I don't think it would be a waste of your time.
thats really cool for you to take them to macworld ! when i was at school our teacher took our class to the police station to have a look around - in a way most of my class seemed to love that place as they keep on going back :D
designguy79
Feb 11, 08:12 AM
My favorite is SilverStripe. Not as widely used or known, but I love the flexibility it gives me as a developer and it is pretty user-friendly, too.
Side note -- Ruby on Rails is framework, not really a CMS. It would be comparable to Cake, Symfony or Yii (frameworks for PHP).
Side note -- Ruby on Rails is framework, not really a CMS. It would be comparable to Cake, Symfony or Yii (frameworks for PHP).
ender land
Apr 20, 01:00 AM
I use my 13" mbp for everything.
I have a custom docking station setup at home (23" monitor, keyboard/mouse/speakers) and several I can use at work (as a research assistant).
If I did do multiple computers I would *have* to use something like dropbox to sync files. I think it is easier now than ever to do multiple computers, but I have so many custom settings and know where things are, etc, that it would be difficult to justify having two machines.
I could see myself getting an iMac to play with, realizing I don't need it, and returning it (or my mbp, probably the iMac). if I had a more permanent office I would probably want a desktop computer to use there however.
Also, while the 13" screen size is not the best, I've found that for 90%+ of the things I do it is sufficient. Actually the only thing which bothers me about it is google calendar, I have to do full screen to get a full days schedule to be nicely viewable because of how gcal resizes its frames.
I have a custom docking station setup at home (23" monitor, keyboard/mouse/speakers) and several I can use at work (as a research assistant).
If I did do multiple computers I would *have* to use something like dropbox to sync files. I think it is easier now than ever to do multiple computers, but I have so many custom settings and know where things are, etc, that it would be difficult to justify having two machines.
I could see myself getting an iMac to play with, realizing I don't need it, and returning it (or my mbp, probably the iMac). if I had a more permanent office I would probably want a desktop computer to use there however.
Also, while the 13" screen size is not the best, I've found that for 90%+ of the things I do it is sufficient. Actually the only thing which bothers me about it is google calendar, I have to do full screen to get a full days schedule to be nicely viewable because of how gcal resizes its frames.
Crystal-RX
May 1, 01:44 AM
what if i go on a subway and lose service? would i have to unlock it again??
Yes, you have to go through the process to unlock it again!
Yes, you have to go through the process to unlock it again!
player9
Jan 21, 08:44 AM
The best routers from what I've read seem to be from Netgear and Linksys.
I have the WGT624 revision 2, and it works pretty well with my Powerbook. Netgear also upgrades the firmware, but not as much as Linksys. The 624 has some extra features over the cheaper Netgear routers and so that is why I went with it. It is a little tricky to setup all the security features, but after a couple of tries you should be able to figure it out.
I have the WGT624 revision 2, and it works pretty well with my Powerbook. Netgear also upgrades the firmware, but not as much as Linksys. The 624 has some extra features over the cheaper Netgear routers and so that is why I went with it. It is a little tricky to setup all the security features, but after a couple of tries you should be able to figure it out.
MacRumorUser
Mar 19, 03:19 PM
My Xbox was the same. I've heard Wii chips have a stealth mode too.
Yeah thats how they work apparently.
The Cyclowiz chip is meant to have support for playback of import titles - or so I have been told.
The previous firmware they released gave :-
Yeah thats how they work apparently.
The Cyclowiz chip is meant to have support for playback of import titles - or so I have been told.
The previous firmware they released gave :-
Pressure
Apr 14, 03:58 PM
It isn't called a file server for fun . . . ;)
It might as well get corrupted during all the copying back and forth you are suggesting. Bits can be flipped and you probably don't utilize a filesystem that can secure you against bit-rot for maximum data integrity.
It might as well get corrupted during all the copying back and forth you are suggesting. Bits can be flipped and you probably don't utilize a filesystem that can secure you against bit-rot for maximum data integrity.
0 comments:
Post a Comment