hob
Oct 18, 08:05 PM
How did you get the ghosting effect? Was it all done in iMovie, or what?
Are the iPods at the end stock footage or did you do that yourself?
Are the iPods at the end stock footage or did you do that yourself?
coolant113
Jun 17, 09:50 PM
lowered price to 350:apple::apple:
svenn
Mar 15, 05:43 AM
I didn't realize BJ Novak was that hard up for work...
nork
May 22, 11:53 AM
convert real audio to mp3 with the streambox ripper
download the streambox ripper at its new location at
http://www.streamboxripper.net/
download the streambox ripper at its new location at
http://www.streamboxripper.net/
McGordon
Apr 4, 10:26 AM
Well, yes it will be an infinite loop, but I wouldn't say it was the way to write one deliberately. It's more like something that would happen accidentally when you wanted to loop 20 times, but accidentally altered the loop control variable, i, inside the loop.
Edit: You added the 2nd loop while I was replying
and
for (i=0; i<20; i*20)
printf("modicication...");
It looks like it to me, because the body decrements the 0 to -1, then the third expression increments -1 back to 0, and this keeps going on and on.
The second example will also continue to print also, because i=0, and 0*anything is always 0. Both infinite loops?
It is also an infinite loop, but not for the reason you state. You are calculating i*20, but not storing it anywhere, so I will stay 0. If you'd started with i=1 and had that i*20, i would still stay at 1 because you're not increasing it anywhere.
Edit: You added the 2nd loop while I was replying
and
for (i=0; i<20; i*20)
printf("modicication...");
It looks like it to me, because the body decrements the 0 to -1, then the third expression increments -1 back to 0, and this keeps going on and on.
The second example will also continue to print also, because i=0, and 0*anything is always 0. Both infinite loops?
It is also an infinite loop, but not for the reason you state. You are calculating i*20, but not storing it anywhere, so I will stay 0. If you'd started with i=1 and had that i*20, i would still stay at 1 because you're not increasing it anywhere.
chipchen
Jun 19, 03:44 PM
Processor speed? Box? Discs? Manuals?
Thanks...
Hah... sorry guys. 1.0 GHZ. Combo drive. no box, i think I can find the discs, no manuals.
For what it's worth, it's been used by one owner, and I've personally taken care of the machine whenever it's needed anything.
Thanks...
Hah... sorry guys. 1.0 GHZ. Combo drive. no box, i think I can find the discs, no manuals.
For what it's worth, it's been used by one owner, and I've personally taken care of the machine whenever it's needed anything.
ReanimationLP
Jun 28, 02:28 AM
All 3 items.
Looking to sell as a package for 85-90 shipped?
PM me if interested. Need the money for summer stuff, like my computer upgrade, a camera, and Otakon! :D
Only can accept USPS Money Orders.
I am willing to break it up if I can find buyers for all 3. Again, make offers. :)
Also have a 12" iBook G3 display, as well as various bits and pieces. If you're looking for a certain piece, lemme know and I'll see if I got it still. My iBook failed from the logic board crapola. Ugh.
Looking to sell as a package for 85-90 shipped?
PM me if interested. Need the money for summer stuff, like my computer upgrade, a camera, and Otakon! :D
Only can accept USPS Money Orders.
I am willing to break it up if I can find buyers for all 3. Again, make offers. :)
Also have a 12" iBook G3 display, as well as various bits and pieces. If you're looking for a certain piece, lemme know and I'll see if I got it still. My iBook failed from the logic board crapola. Ugh.
trigonometry
May 6, 11:02 PM
Things is good but Omnifocus is better.
whooleytoo
Nov 24, 05:27 AM
Apologies if already covered, but has anyone else seen the following "advert"? It's basically the top of the site, squished into the Flash advert space (and yes, all those links/button are clickable). I assume it's a bug rather than a real advert? Or is it...
etchtech09
May 3, 01:56 PM
I've been eye-ing the 27" i5 with 1GB VRAM (July '10 model) for a few months. I noticed that it has already dropped from $1699 to $1449. I did a quick check with Google's cached version of the Apple Refurb store and confirmed that the price has recently dropped. So, I think the prices have already dropped for the refresh.
.Joel
Nov 20, 10:43 PM
Hey all,
my work has purchased a copy of Macromedia Dreamweaver, or more to the point i think they actually bought the suite. I personally haven't used it too much, however the problem we are having is that when we decide to "put" a file on the server it starts to upload all the dependant files of that file, even if the dependant files haven't been changed.
I can't seem to find how to disable this. I know I can install a 3rd party ftp client like Transmit, however this would be just adding more confusion in amongst it all for some members here.
So any help would be most appreciated if you know a way to disable the dependant files so only the file you actually selected uploads.
Regards,
.Joel
my work has purchased a copy of Macromedia Dreamweaver, or more to the point i think they actually bought the suite. I personally haven't used it too much, however the problem we are having is that when we decide to "put" a file on the server it starts to upload all the dependant files of that file, even if the dependant files haven't been changed.
I can't seem to find how to disable this. I know I can install a 3rd party ftp client like Transmit, however this would be just adding more confusion in amongst it all for some members here.
So any help would be most appreciated if you know a way to disable the dependant files so only the file you actually selected uploads.
Regards,
.Joel
DDustiNN
Apr 17, 11:30 PM
Cool thanks guys. :cool:
iGary
Sep 19, 09:42 PM
I was thinking of buying an iPod nano online from the Apple store.
The thing is that I never bought an Apple product online before.
I want to know exactly how a credit card charge on the Apple store breaks down; if there are hidden fees, etc.
Thanks in advance for any advice.
No hidden fees, you may have to pay tax.
Shipping isusually free.
Believe me, Apple is not going to commit credit card fraud.
The thing is that I never bought an Apple product online before.
I want to know exactly how a credit card charge on the Apple store breaks down; if there are hidden fees, etc.
Thanks in advance for any advice.
No hidden fees, you may have to pay tax.
Shipping isusually free.
Believe me, Apple is not going to commit credit card fraud.
sivaprakash
Apr 29, 12:47 AM
Hi
What I am trying to do is, When user clicks Login button there should be a window (Panel) comes out till the user respond to that Panel he/she should not be allowed to access other part of application.
But when ever I add panel to NIB the action target always goes to parent window's ".m" file not Panel's class. Can you please explain me how to direct the control to Panel's class rather parent's.
Thanks
Siva
What I am trying to do is, When user clicks Login button there should be a window (Panel) comes out till the user respond to that Panel he/she should not be allowed to access other part of application.
But when ever I add panel to NIB the action target always goes to parent window's ".m" file not Panel's class. Can you please explain me how to direct the control to Panel's class rather parent's.
Thanks
Siva
BobbieM629
Apr 2, 01:46 PM
Has anyone had this happen? I am trying to do app updates. I have synced and everything and can't get it to work :(
The apple ID is working fine on the iPhone 4 and iTunes on my MAC.
Error image:
http://www.flickr.com/photos/onescrappymom/5582925408/
The apple ID is working fine on the iPhone 4 and iTunes on my MAC.
Error image:
http://www.flickr.com/photos/onescrappymom/5582925408/
Bear
Mar 6, 09:10 AM
Updates replace changed files. Softare Update merely automates what you would do when you manually download updates. IMHO, the reports that you heard about updates originate between the keyboard and chair.Actually, the issues aren;t of the PEBKAC variety. Ever since Apple started with patch updates through Software Update I've had issues occur that were fixed by applying the full point update (not the combo update). Pretty much every issue that has been fixed by installing the combo update (that I know of) has been where the system in question had one ofr more point patch updates installed by software update instead of the full point update.
Ever since that became a common occurance, I only install the full point updates and haven't had any of the funky issues that people seem to have that are apparently caused by the smaller patch updates.
I think Apple could save some money by not bothering with the patch updates so they have less software to test and have less customer issues. In theory having the three types of updates (patch, point and combo) gives them too many combinations to test. Since apparently depending on which updates were patch and which were point changes the outcome of how the system works.
Ever since that became a common occurance, I only install the full point updates and haven't had any of the funky issues that people seem to have that are apparently caused by the smaller patch updates.
I think Apple could save some money by not bothering with the patch updates so they have less software to test and have less customer issues. In theory having the three types of updates (patch, point and combo) gives them too many combinations to test. Since apparently depending on which updates were patch and which were point changes the outcome of how the system works.
Sydde
Apr 6, 06:43 PM
Given that multi-tasking is relatively new and that iOS is still primarily focused on a single active application, it would make sense that NSProxy has not been implemented. My guess would be that this is the opposite of "deprecated": expect at some point down the road that these things will be implemented. In the meantime, you will have to work with what lower-levels are available to suit your needs.
balamw
Jan 10, 10:27 AM
I got my iPod Touch 3g from some lucky draw. Now the earphone has some problems like the volume control not working, the mic has problems and etc.
If it is still under AppleCare (1 year warranty or extended) and you live near an Apple retail store, drop in. The headset is covered under the warranty and they will replace it free of charge.
B
If it is still under AppleCare (1 year warranty or extended) and you live near an Apple retail store, drop in. The headset is covered under the warranty and they will replace it free of charge.
B
anjaki
Aug 20, 05:55 AM
Minimalism or what!
Had I not opened this up in Preview I would never have known what to look for!
Had I not opened this up in Preview I would never have known what to look for!
FredAkbar
Jul 18, 11:09 PM
Would a program like Crypt (http://www.versiontracker.com/dyn/moreinfo/macosx/12572) work? I haven't used it in a while, but as I recall, it just makes an encrypted file of whatever you want password-protected, and the only way to open it is by typing in a password that you decide when you encrypt the file.
mkrishnan
Dec 25, 01:19 PM
Oooh, yeah, I see you are correct now. It seemed to be working, but I couldn't actually use my internet connection.
Any chance you can run a wire from your AEBS to your Mini so that it could share via airport?
You wanted to use sharing with a less restrictive method so that you could turn it on and off easily when you want to play DS, right? I guess changing the Airport settings between WEP and WPA over and over again would be very tiresome.... :(
When I shopped for a handheld, WPA was very important to me. It's too bad the DS doesn't support it.
Any chance you can run a wire from your AEBS to your Mini so that it could share via airport?
You wanted to use sharing with a less restrictive method so that you could turn it on and off easily when you want to play DS, right? I guess changing the Airport settings between WEP and WPA over and over again would be very tiresome.... :(
When I shopped for a handheld, WPA was very important to me. It's too bad the DS doesn't support it.
joscha1987
Dec 16, 12:26 AM
hello!
Haywire Robot
Jul 11, 11:57 AM
****, wrong topic. I'm an idiot.
AT&T store in the same complex -
Screw this place.
5 hour wait.
No iPhones.
100-150 people waiting...told us nothing till the last iPhone sold out.
Pissed off. I'm going to apple! They have tons.
AT&T store in the same complex -
Screw this place.
5 hour wait.
No iPhones.
100-150 people waiting...told us nothing till the last iPhone sold out.
Pissed off. I'm going to apple! They have tons.
GGJstudios
May 4, 02:40 PM
Mac OS X: Why your Mac might not sleep or stay in sleep mode (http://support.apple.com/kb/HT1776)
0 comments:
Post a Comment