
jimthorn
Jan 9, 05:08 PM
No, I mean a link to the actual file, not the streaming version. Some people know how to figure that out. Then it can be watched without choppy streaming when millions of us are watching at the same time.

flopticalcube
Apr 21, 11:44 AM
Don't think this is necessary in such a highly polarized forum but whatever, I shall ignore them.

iCeltic
Apr 16, 04:41 AM
I bet Google try to sell to the label the idea of free advertisement supported music, and Google get to keep 70% of the revenue.:eek:

Even though Kobe Bryant is

Kobe Bryant and wife Vanessa

Vanessa Laine Bryant (kobe

Kobe Bryant and wife Vanessa

NBA player Kobe Bryant of Los

Kobe Bryant Wife: Kobe Bryant

kobe bryant s wife

NBA player Kobe Bryant of the

Kobe Bryant Wife: kobe wife 2

but My wife is a fact Made

kobe bryant wife ring. kobe

Kobe Bryant and his wife

kobe bryant wife pics.

kobe bryant wife.

Kobe Bryant Wife: kobe wife 2

Next Up! Kobe Bryant#39;s Wife

xUKHCx
Apr 12, 08:43 AM
Maybe some computers come with Office as a promotional deal, and if they do, that's up to the OEM, not Microsoft. Nonetheless, I've not seen any PC come with more than a 30 day trial of Office.
Maybe it is a regional thing. I have recently bought 3 windows based machines here in the UK and they all came with trial versions of Office.
Maybe it is a regional thing. I have recently bought 3 windows based machines here in the UK and they all came with trial versions of Office.

jackc
Jan 14, 08:56 PM
Now, Gizmodo just posted another editorial. They are not just refusing to apologize, they are actually proud. Supposedly this is a an act of civil disobedience, a sign of their independence. Not only are they being immature jerks, but exhibit this self righteous attitude. It is just a prank, (actually it is not even a creative one) so it is not that big of a deal, but their new editorial makes them seem even more immature. I wonder if somebody is going to play pranks on them to show some independence of his own.
Linky (http://gizmodo.com/344447/giz-banned-for-life-and-loving-it-on-pranks-and-civil-disobedience-at-ces)
They should be writing political speeches, I had a tear rolling down my cheek thinking about how they're standing up to corporations
Linky (http://gizmodo.com/344447/giz-banned-for-life-and-loving-it-on-pranks-and-civil-disobedience-at-ces)
They should be writing political speeches, I had a tear rolling down my cheek thinking about how they're standing up to corporations

NoSmokingBandit
Nov 14, 11:15 PM
Really, the only part i can accurately remember from MW2 is the DC section. I live in the south-east corner of PA so i've been to DC a few times (the DC zoo is one of my favorite places in the whole world). If i lived out west there would be nothing memorable about MW2.
Fwiw, i do hold the flawed story against it. How can i be invested in a game that pretends one man can launch a missile just by strolling into a sub and asking kindly? Even games like Ratchet and Clank have stories that make sense (in context, of course), but MW2 was just too far for me to care about it.
As far as Black Ops goes, the story is ok. I dont like the whole interrogation thing, i feel like the story could be told a bit better, though my opinion may change after i finish the campaign. Any game with nixie tubes automatically scores a few points from me ;)
COD needs another MW. MW was a massive jump forward from COD3, and it did it all perfectly. W@W, MW2, and Black Ops all feel like a new map pack for MW instead of a whole new game.
Fwiw, i do hold the flawed story against it. How can i be invested in a game that pretends one man can launch a missile just by strolling into a sub and asking kindly? Even games like Ratchet and Clank have stories that make sense (in context, of course), but MW2 was just too far for me to care about it.
As far as Black Ops goes, the story is ok. I dont like the whole interrogation thing, i feel like the story could be told a bit better, though my opinion may change after i finish the campaign. Any game with nixie tubes automatically scores a few points from me ;)
COD needs another MW. MW was a massive jump forward from COD3, and it did it all perfectly. W@W, MW2, and Black Ops all feel like a new map pack for MW instead of a whole new game.

tekker
May 3, 09:34 PM
I'll buy one when it gets a capacitive pressure based screen/stylus (Like the HTC Flyer)

ChrisBrightwell
Sep 28, 02:00 PM
Is the update available now?Don't think so, but I'm not near a Mac w/ 'net access.

wlh99
Apr 28, 10:08 AM
By the way, what's with 3rd person reference? the OP? you can call me Nekbeth or Chrystian, it's a lot more polite. Maybe you guys have a way to refer to someone , I don't know.
I appologize for that. I didn't recall your name. I was replying to KnightWRX, so I took a shorcut (original poster).
I won't do that any further.
I through together a simple program that I think does exactly as you want. It is a Mac version, but the different there is trival, and instead of a picker, it is a text field the user enters a time into for the timer duration. You will need to change the NSTextFields into UITextFields.
The bulk of the code is exactly what I posted before, but I modified the EchoIt method to work with an NSDate. I implemeted it in the appDelegate, and you are using your viewController. That doesn't change the code any, and your way is more correct.
I can email you the whole project as a zip if you want. It is about 2.5 meg. Just PM me your email address.
//
// timertestAppDelegate.m
// timertest
//
// Created by Warren Holybee on 4/27/11.
// Copyright 2011 Warren Holybee. All rights reserved.
//
#import "timertestAppDelegate.h"
@implementation timertestAppDelegate
@synthesize window, timeTextField, elapsedTimeTextField, timeLeftTextField;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to
//create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
[startDate release];
}
// Now that we know myTimer doesn't point to a timer already..
startDate = [[NSDate date] retain]; // remember what time this timer is created and started
// so we can calculate elapsed time later
NSTimeInterval myTimeInterval = 0.1; // How often the timer fires.
myTimer = [NSTimer scheduledTimerWithTimeInterval:myTimeInterval target:self selector:@selector(echoIt)
userInfo:nil repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
myTimer = nil;
}
-(void)echoIt {
NSDate *now = [[NSDate date] retain]; // Get the current time
NSTimeInterval elapsedTime = [now timeIntervalSinceDate:startDate]; // compare the current time to
[now release]; // our remembered time
NSLog(@"Elapsed Time = %.1f",elapsedTime); // log it and display it in a textField
[elapsedTimeTextField setStringValue:[NSString stringWithFormat:@"%.1f",elapsedTime]];
float timeValue = [timeTextField floatValue]; // timeValueTextField is where a user
// enters the countdown length
float timeLeft = timeValue - elapsedTime; // Calculate How much time is left.
NSLog(@"Time Left = %.1f",timeLeft); // log it and display it
[timeLeftTextField setStringValue:[NSString stringWithFormat:@"%.1f",timeLeft]];
if (timeLeft < 0) { // if the time is up, send "cancelIt:"
[self cancelIt:self]; // message to ourself.
}
}
@end
*edit:
If you like, later tonight I can show you how to do this as you first tried, by incrementing a seconds variable. Or wait for KnightWRX. My concern is accuracy of the timer. It might be off by several seconds after running an hour. That might not be an issue for your application, but you should be aware of it.
I appologize for that. I didn't recall your name. I was replying to KnightWRX, so I took a shorcut (original poster).
I won't do that any further.
I through together a simple program that I think does exactly as you want. It is a Mac version, but the different there is trival, and instead of a picker, it is a text field the user enters a time into for the timer duration. You will need to change the NSTextFields into UITextFields.
The bulk of the code is exactly what I posted before, but I modified the EchoIt method to work with an NSDate. I implemeted it in the appDelegate, and you are using your viewController. That doesn't change the code any, and your way is more correct.
I can email you the whole project as a zip if you want. It is about 2.5 meg. Just PM me your email address.
//
// timertestAppDelegate.m
// timertest
//
// Created by Warren Holybee on 4/27/11.
// Copyright 2011 Warren Holybee. All rights reserved.
//
#import "timertestAppDelegate.h"
@implementation timertestAppDelegate
@synthesize window, timeTextField, elapsedTimeTextField, timeLeftTextField;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to
//create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
[startDate release];
}
// Now that we know myTimer doesn't point to a timer already..
startDate = [[NSDate date] retain]; // remember what time this timer is created and started
// so we can calculate elapsed time later
NSTimeInterval myTimeInterval = 0.1; // How often the timer fires.
myTimer = [NSTimer scheduledTimerWithTimeInterval:myTimeInterval target:self selector:@selector(echoIt)
userInfo:nil repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
myTimer = nil;
}
-(void)echoIt {
NSDate *now = [[NSDate date] retain]; // Get the current time
NSTimeInterval elapsedTime = [now timeIntervalSinceDate:startDate]; // compare the current time to
[now release]; // our remembered time
NSLog(@"Elapsed Time = %.1f",elapsedTime); // log it and display it in a textField
[elapsedTimeTextField setStringValue:[NSString stringWithFormat:@"%.1f",elapsedTime]];
float timeValue = [timeTextField floatValue]; // timeValueTextField is where a user
// enters the countdown length
float timeLeft = timeValue - elapsedTime; // Calculate How much time is left.
NSLog(@"Time Left = %.1f",timeLeft); // log it and display it
[timeLeftTextField setStringValue:[NSString stringWithFormat:@"%.1f",timeLeft]];
if (timeLeft < 0) { // if the time is up, send "cancelIt:"
[self cancelIt:self]; // message to ourself.
}
}
@end
*edit:
If you like, later tonight I can show you how to do this as you first tried, by incrementing a seconds variable. Or wait for KnightWRX. My concern is accuracy of the timer. It might be off by several seconds after running an hour. That might not be an issue for your application, but you should be aware of it.

buffalo
Jan 5, 03:47 PM
I'm getting too excited for Macword. So excited that I'll probably feel let-down at the afterwards.

juststranded
Oct 17, 09:33 AM
Being completely serious, the porn industry has a lot to do with it.
VHS vs. BETAMAX, BETAMAX was teh better product, but the porn industry went with VHS and thus forced it into production more than BETAMAX.
Bluray vs. HD DVD, Bluray is better, and teh porn industry has gone with Blueray. I think between all teh competitors and the porn industry Bluray will stick this one out and win it.
Apple may also just be waiting it out a little longer to see which one is looking stronger. Yes, putting Bluray in Macs would help Bluray to win, but if they put them in, and HD DVD wins, there's a few millions Macs out there with onsolete drives in them that can't play the standard HD format disc.
I'll give it 6 months befre Apple chooses one or the other officially to put into their machines.
VHS vs. BETAMAX, BETAMAX was teh better product, but the porn industry went with VHS and thus forced it into production more than BETAMAX.
Bluray vs. HD DVD, Bluray is better, and teh porn industry has gone with Blueray. I think between all teh competitors and the porn industry Bluray will stick this one out and win it.
Apple may also just be waiting it out a little longer to see which one is looking stronger. Yes, putting Bluray in Macs would help Bluray to win, but if they put them in, and HD DVD wins, there's a few millions Macs out there with onsolete drives in them that can't play the standard HD format disc.
I'll give it 6 months befre Apple chooses one or the other officially to put into their machines.

nimasm
Jan 15, 02:44 PM
zimtheinvader you're right: MBA does not compare favourably to other products available. Thinness is a nice quality, and indeed it gives that premium edge to the MBA that other UMPCs lack, but Apple's seeming need to give you a full-featured, full-screen, full-clock speed computer is contrary to the needs of ultraportability. While I don't begrudge the Core 2 processor, nor the ample RAM, I can't say that a 13.3" widescreen is essential. (Indeed, if you're aiming for portability, then the dinosaur 4:3 format offers a greater ratio of screen area to overall dimensions).
I recently had the opportunity to borrow an Asus Eee PC, and was blown away by the advantages of its form factor. It was solidly built, confidence inspring, yet portable. The MBA makes me worry about potential flimsiness. How will it compared to a Macbook if bashed in the centre of the lid. The Eee PC, while slow and cramped, at least has rigidity
Moreover, do people really want to pay more for a compromised solution? Compare the Eee PC at �200. Now I don't wish to say that the Eee PC is something Apple should have produced, but in almost every respect it is in the right direction. It's smaller in the correct sense (reducing the greater dimensions first), sturdier, cheaper. Asus have done a fantastic job of this, and I don't doubt that Apple could have done it even better. How about a 10-12" screen, make it thin if you really must, but make it cheap, and drop pretentions of selling people a widescreen video-editing 'supercomputer'?
With my cursory memory of the MBA's features, I can't think of a single argument other than a need to have the latest thing for the MBA over the top of the range Macbook, a notebook which I subjectively think looks more attractive, too.
What consumers would go for would be more portability, more affordability, at the expense of screen real estate and ultimate performance. What have given us is equal portability, a lot less affordability, and less performance.
I recently had the opportunity to borrow an Asus Eee PC, and was blown away by the advantages of its form factor. It was solidly built, confidence inspring, yet portable. The MBA makes me worry about potential flimsiness. How will it compared to a Macbook if bashed in the centre of the lid. The Eee PC, while slow and cramped, at least has rigidity
Moreover, do people really want to pay more for a compromised solution? Compare the Eee PC at �200. Now I don't wish to say that the Eee PC is something Apple should have produced, but in almost every respect it is in the right direction. It's smaller in the correct sense (reducing the greater dimensions first), sturdier, cheaper. Asus have done a fantastic job of this, and I don't doubt that Apple could have done it even better. How about a 10-12" screen, make it thin if you really must, but make it cheap, and drop pretentions of selling people a widescreen video-editing 'supercomputer'?
With my cursory memory of the MBA's features, I can't think of a single argument other than a need to have the latest thing for the MBA over the top of the range Macbook, a notebook which I subjectively think looks more attractive, too.
What consumers would go for would be more portability, more affordability, at the expense of screen real estate and ultimate performance. What have given us is equal portability, a lot less affordability, and less performance.

rtdgoldfish
Mar 24, 12:44 AM
Does anyone out there know where Connect360 saves its log to?? I have the setting enabled for "Detailed Logging (Debug Mode)" turned on but I can't seem to find where it is located on my HD. This would really be helpful since I am not sitting at my laptop 24/7 waiting for this idiot to connect to my network.
Thanks!
Thanks!

notjustjay
Mar 7, 10:07 AM
Windows 98 did more for USB adoption than the limited run Apple had with its original iMac. Common sense removed floppy drives a lot more than Apple forced it with the iMac, and a lot later too.
Some of you need to open up your boundaries a little beyond what Apple does.
Perhaps. You may well be right. But the point was that Apple was the first to seriously use USB and the first to remove floppy drives -- so they get to take the credit for "being innovative", and when everyone else follows suit, whether they were actually being copycats or for whatever other reason, they get credit for "being the leader" and "everyone copies them".
Apples one true area of brilliance is their masterful art of marketing. In the finest example of typical American deceptive advertising, Apple describes their products as "magical & revolutionary".
Apple can market however they like, but if the product itself doesn't stand up to the marketing, the product will fail. Plain and simple. Apple has not been without a few failures because they were poorly designed or poorly priced products that no amount of marketing could rescue them from (the G4 Cube, for example).
I bought an iPad, not because someone told me it was "magical and revolutionary" but because I tried it out in the store and could easily see myself using it far more than the netbook that it replaced. It was well designed, highly functional, and extremely practical for what I needed to do. The price was, well, Apple, meaning it cost twice as much as a netbook, but all told it was, and continues to be, a product that suited my needs.
Some of you need to open up your boundaries a little beyond what Apple does.
Perhaps. You may well be right. But the point was that Apple was the first to seriously use USB and the first to remove floppy drives -- so they get to take the credit for "being innovative", and when everyone else follows suit, whether they were actually being copycats or for whatever other reason, they get credit for "being the leader" and "everyone copies them".
Apples one true area of brilliance is their masterful art of marketing. In the finest example of typical American deceptive advertising, Apple describes their products as "magical & revolutionary".
Apple can market however they like, but if the product itself doesn't stand up to the marketing, the product will fail. Plain and simple. Apple has not been without a few failures because they were poorly designed or poorly priced products that no amount of marketing could rescue them from (the G4 Cube, for example).
I bought an iPad, not because someone told me it was "magical and revolutionary" but because I tried it out in the store and could easily see myself using it far more than the netbook that it replaced. It was well designed, highly functional, and extremely practical for what I needed to do. The price was, well, Apple, meaning it cost twice as much as a netbook, but all told it was, and continues to be, a product that suited my needs.

Geckotek
Jan 4, 01:20 PM
It's January 4th and no sign of the Verizon iPhone. Oh well, there's always next year.
And why does no iPhone on Jan 4th mean nothing for the rest of 2011??
And why does no iPhone on Jan 4th mean nothing for the rest of 2011??

macenforcer
Nov 23, 05:56 PM
You would be better off getting an ipod from Target with the 10% off for getting a target credit card. Apple sales suck.

goober1223
Apr 6, 09:39 AM
Their store, their rules I guess.
Exactly. That's the good and bad part. I love Apple products, but I hate blatant hypocrisy when I see it. This is certainly one of those cases.
Exactly. That's the good and bad part. I love Apple products, but I hate blatant hypocrisy when I see it. This is certainly one of those cases.

Melrose
Mar 6, 07:02 PM
The scary thing is is that you actually believe this nonsense.
I think you're missing the forest for the trees. Offering near-identical features on cheap-quality devices has happened. LTD can be fanboyishly irritating (no offense) but the point stands - he didn't say there were no high-end handsets from the competition, he said companies flood the market with cheap electronics... which they do.
I think you're missing the forest for the trees. Offering near-identical features on cheap-quality devices has happened. LTD can be fanboyishly irritating (no offense) but the point stands - he didn't say there were no high-end handsets from the competition, he said companies flood the market with cheap electronics... which they do.

jaw04005
Apr 9, 12:50 PM
Some of it is copying, but it's good for consumers. The program packaging is because Microsoft is planning to release an App Store for Windows.
I'm just glad Microsoft is focusing on consumer features in their operating system instead of just enterprise features. I hope they revamp Media Center with the Windows Phone UI and ditch Windows Media Player all together in favor of the Zune software (or turn WMP into a QuickLook-like application).
As for Lion, I expect Apple is holding back some major features for WWDC. While Versions, AirDrop, Mission Control and Launchpad are all "tentpole" user features, there has to be more coming. I want desperately for Apple to create some type of iTunes sharing process so that iTunes doesn't have to run constantly to stream to home sharing devices. And why isn't AirPlay built into QuickTime X in Lion?
I'm just glad Microsoft is focusing on consumer features in their operating system instead of just enterprise features. I hope they revamp Media Center with the Windows Phone UI and ditch Windows Media Player all together in favor of the Zune software (or turn WMP into a QuickLook-like application).
As for Lion, I expect Apple is holding back some major features for WWDC. While Versions, AirDrop, Mission Control and Launchpad are all "tentpole" user features, there has to be more coming. I want desperately for Apple to create some type of iTunes sharing process so that iTunes doesn't have to run constantly to stream to home sharing devices. And why isn't AirPlay built into QuickTime X in Lion?
hob
Jan 9, 04:14 PM
Sorry. I put my foot in it. Twice. Please accept my deepest apologies. I really didn't mean to ruin this for anyone. Sorry.
zephxiii
Jan 3, 10:47 AM
I currently have a Samsung Rogue(dumb phone) on Verizon. I have service nearly everywhere I have been. My phone drops calls in the wind(Samsungs fault) and has many problems(Also Samsung, NOT VERIZON), this is one thing I hate about the (dumb) phones. Samsung released this phone with problems but you know what, they dropped this phone 4-5 months later and replaced it with another similar phone...did they do any updates? Yes, 1 and it fixed absolutely no problems that are widespread like the email client makes noise even when the phone is set to Vibrate/Alarm/Silent.
LOL, oh how I am not surprised!! I had a friend that has a Samsung Impression on AT&T and it has a problem with getting stuck trying to send text messages to the point where you have to reboot it. This is a huge problem with Impressions....
What did Samsung do about it?? NOTHING!!!
LOL, oh how I am not surprised!! I had a friend that has a Samsung Impression on AT&T and it has a problem with getting stuck trying to send text messages to the point where you have to reboot it. This is a huge problem with Impressions....
What did Samsung do about it?? NOTHING!!!
Ryeno
May 3, 05:11 PM
Just like communism
i love it when people say stuff, i mean type stuff, without thinking.
android being free and open is more comparable to a capitalist system which ironically also doesn't work out too well in real life.
i love it when people say stuff, i mean type stuff, without thinking.
android being free and open is more comparable to a capitalist system which ironically also doesn't work out too well in real life.
Frosties
Jul 21, 09:41 AM
The Nokia phone have not the same bars/signal ratio as the iphone 4.
bowlerman625
Mar 17, 07:06 AM
Yeah you're really a classy person....dork
No comments:
Post a Comment