Popular Post

estrella de mar

estrella de mar. Condo Estrella de Mar
  • Condo Estrella de Mar



  • BenRoethig
    Aug 14, 08:01 PM
    Hey guys, when did we stop talking about displays and start the communism discussion?





    estrella de mar. Condo Estrella de Mar
  • Condo Estrella de Mar



  • Warbrain
    Nov 16, 12:37 PM
    As I said in another thread, it's very possible Apple has built an AMD machine sometime in the past, but it will never reach production unless Intel ****s up...





    estrella de mar. estrella de mar 2
  • estrella de mar 2



  • e�Studios
    Mar 23, 06:15 PM
    This is fascinating!
    Out of curiosity how built up is your area? Is this a neighbour you've spoke too before? I think I'd feel worse if one of my neighbours stole something rather than some thief I never met before. That said they're mostly old folk, Paul Scholes and a pub so I don't expect any of them to steal from me!

    Anyway. I can't wait to hear how this ends. It sounds like it's all going to work out if you can just get the police into that house. Surely you'll be able to prove it's yours there and then by some serial number, hard drive key or something?

    They couldnt tell if they were on your network Jimmi, it drops so much :p

    to the OP, i hope you get your x360 back soon, good luck.

    Ed





    estrella de mar. Estrella del Mar
  • Estrella del Mar



  • Mattie Num Nums
    Apr 8, 12:58 PM
    I wonder what the special promotion is.

    Perhaps! New Hardware is coming out (iMacs???) and the promo will be a buy a Mac get an iPad for $X.



    more...


    estrella de mar. Estrella de mar
  • Estrella de mar



  • rtdgoldfish
    Apr 3, 08:14 PM
    So I got a call from the investigator in charge of my case earlier tonight. They had done a lot of background work on the house I had suspected. A lot of pawn shops in the area had the house down for a bunch of random video games, DVDs and jewlrey. This gave the cops enough info combined with my info to get a warrant.

    They went to the house and a lady answered the door. She was more than willing to let the police in to search the place. After searching, they came up with nothing. Not even a single game, controller, anything. The house is a rental house. The guy with the pawn record had moved out two months ago. His lease was up December 31st and this new lady had moved in during January.

    This basically leaves the police back at square one. There are no leads, no other suspect houses in the neighborhood. Except for Microsoft.

    Basically, all Microsoft has to do is give them the IP address that my XBox is using and the police have the ability to do the rest. They can contact the ISP and track down where they are connecting to the internet.

    Microsoft, however, will not do this. I have called them numerous times as have the police. Microsoft claims they have no way to track an IP address when you sign on to XBox Live. As any of you know, this is total BS. It is so simple to track an IP address, especially when you sign on to any service requiring a password and screen name.

    My question now turns to this: how do I get Microsoft to give up this information?? The cops are not able to get any info, Microsoft is giving me a run-around. I'm open to any ideas, if anyone knows a phone number for someone higher up the food chain at Microsoft, that would be great. I'm just really pissed off that someone is still using my 360 and Microsoft won't do anything to help.





    estrella de mar. Estrella de mar en cuadro
  • Estrella de mar en cuadro



  • TheWheelMan
    Mar 17, 05:34 PM
    Please read my post again. Never did I say I was laughing at "you all" but rather the post "buddy". Hope I didn't touch a nerve.

    Also who are you quoting?

    Actually, you said:

    Obviously the OP was wrong with what he did but love laughing at all the holier than thou responses.

    Sorry, but that's the same at laughing at the people, ie, a form of being "Holier than thou." After all, what did your post add to this discussion except to say that you think you're above the comments being posted.

    Nice try at excusing yourself though, "buddy".



    more...


    estrella de mar. Address: 1903 Estrella De Mar
  • Address: 1903 Estrella De Mar



  • nosen
    Sep 25, 02:04 PM
    Yes, a very good point. And it makes me wonder if Adobe will ever charge for it. In fact, now they have rebranded it Adobe "Photoshop" Darkroom, it leads me to believe it will be included as part of Photoshop and not as a seperate product. This might also be why they haven't released it yet, since the next version of Photoshop isn't finished. This strategy would undercut Apple since most photography professionals undoubtedly already own Photoshop and will upgrade.
    Tough to say until its released. Taking the Adobe Bridge app by example--they give it to you with Photoshop, but I would still much rather go out and buy iView Media Pro, because Bridge sucks bad. So while you're probably right that there are some people willing to use a product because its free (and piggy-backed to a product you're going to buy anyway), there are still a lot of people out there that are willing to shell out a little extra dough for something that works better for them.





    estrella de mar. Estrella del Mar Golf Course -
  • Estrella del Mar Golf Course -



  • MacBoy108
    Jan 8, 10:21 PM
    iBook G5 and Newton Pro.



    more...


    estrella de mar. Estrella del Mar Golf Course -
  • Estrella del Mar Golf Course -



  • 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.





    estrella de mar. Estrella de mar en la playa de Varadero. Alli es fácil encontrarlas
  • Estrella de mar en la playa de Varadero. Alli es fácil encontrarlas



  • lordonuthin
    Apr 27, 08:21 PM
    :pthey are ones i already had: GTX 260, GSX 250, 9800 GT x 2 (the energy efficient ones, single slot, i got on sale for $70 each)

    the processor is an i7 930 actually. i have it overclocked to 3.5 ghz right now. i didn't have time to really mess with all the settings like i wanted.

    i personally think VMs are great, but it does depend if your system can handle the heat of running GPUs and a bigadv unit. right now this system isn't even in a case

    Cool, glad you had them.

    I know what you mean about OC'ing waiting to see if it will stay up or crash each time you change something. I was looking at CPUZ on my i7 and I guess I did get it to stay at 3.2Ghz but with 3 gpu's on it I'm not going to try bigadv on it.

    I still have 4 boards not in cases - in the basement - getin' kind of dusty too :D but they were cheap and don't need any special cooling, they do fine like that. However I may retire them before too long as I decided to go ahead and get an i7 980x to do some bigadv units on. :rolleyes: I think it should do better than my Mac Pro. I hope. The board has 2 x16 slots for gpu's - when I can afford a pair of GTX 480's :p



    more...


    estrella de mar. Estrella del Mar, Mazatlan
  • Estrella del Mar, Mazatlan



  • nagromme
    Aug 7, 02:24 PM
    New Intel towers could have made a good time for new displays too... but there's another good time coming up: new displays might come alongside Leopard, with higher DPI and full resolution-independent GUI?

    Meanwhile, price drops are nice :)





    estrella de mar. Fotos de ESTRELLA DE MAR
  • Fotos de ESTRELLA DE MAR



  • jelloshotsrule
    Sep 9, 03:23 PM
    yeah, i think tim mcgraw would've been a much better choice



    more...


    estrella de mar. Estrella del Mar
  • Estrella del Mar



  • milo
    Oct 11, 09:36 AM
    No freaking way. Even thanksgiving is a long shot, early next year is more likely (which would be around the same time as iTV).

    :D You're joking, right? If you're tired of rumors, it's just so easy to stop directing your browser to a site called macRUMORS.com

    People aren't tired of rumors. We're just tired of the same old repetitive, idiotic, blatantly wrong rumors. I don't want to hear rumors unless they have a reliable source and have a solid chance of being accurate. This one is just stupid.





    estrella de mar. PLATA - ESTRELLA DE MAR -
  • PLATA - ESTRELLA DE MAR -



  • quagmire
    Jan 12, 09:38 AM
    Jobs wasn't smug at all IMHO. He was excited about it. You should of clearly seen that. He made a few jokes( like that prank call to Starbucks), but that was just his normal old humor. The only problem I had was with the order he stated iPod, phone, and internet communicator. The iPod and phone got good responses and then the internet communicator the people went, " ummm.... ok." I would of went internet communicator-> iPod-> phone. Get louder responses step and save the best for last. Other then that the keynote was good, if not one of his best.

    For you iPhone haters, you people seem to think hardware makes the product revolutionary. Since you think so, you're right then. The iPhone in terms of hardware is nothing special. Got the standard CPU, standard 2.5G things, etc. But, there is more things that make it revolutionary then hardware. The UI is what makes the iPhone revolutionary. How you navigate the iPhone is revolutionary. How easy it is to use it and navigate through it. Ok, so it uses flash instead of an HD. How do most people treat their cell phones? Most people I see their cell phones are beat up. Scratches galore, etc. I bet the HD would be killed within weeks. Not to mention the extra thickness and power usage. 8 GB is the highest affordable flash you can put in a product right now so Apple didn't skimp out on that. Plus, the iPhone is a phone first and foremost. The iPod part is just a feature on it. I love how someone avoided the question, " What else were you hoping for?" Doesn't answer the question at all. Just continues the BS on how the iPhone isn't revolutionary.

    For most part, the iPhone haters simply don't get the point of Apple. Why Apple makes the products the way they do. They have been brainwashed by other companies throwing in technology galore into their products. What is the point of adding even more technology if the current technology in the product isn't easy to use? You're just going to confuse the crap out of your customer base. That is where Apple steps in. Apple takes the technology and makes it easier to use. So Apple doesn't always use the latest and greatest stuff in their products. Look at the original Mac. Nothing really new in there hardware wise. But, it changed how we used a computer. Fast forward to 2001 when the iPod was introduced. It was just another HD based MP3 player. Had nothing the competition. The iPod did what the other MP3 players could do. Yet, what made the iPod revolutionary was the way we navigated through an MP3 player and how we used it overall( the iTunes/iPod integration for example). It was easy to use and put music on it.

    PS: If we bought everything Apple made why didn't the Newton and Cube sell well?



    more...


    estrella de mar. algo y lo lanzaba al mar.
  • algo y lo lanzaba al mar.



  • iAlan
    Sep 25, 11:15 AM
    held the event on a Monday nowing that Adobe was going to announce a new Beta of Lightroom -- and wanted to either steal their thunder or at least get there bit in

    this doesn't mean there will not be any updates to the MBP on Tuesday.

    BTW -- how many makers of Windows laptops have versions with the new chips? This is not a smartass comment - just wanting to know

    And I think i might go out and get me-self Aperture





    estrella de mar. En el mar - Estrella de mar
  • En el mar - Estrella de mar



  • pknz
    Sep 12, 12:16 AM
    Here's to a ripe Apple Wednesday morning, followed by a Liverpool win.



    more...


    estrella de mar. la estrella de mar roja.
  • la estrella de mar roja.



  • quagmire
    Jul 28, 12:37 PM
    :confused::confused::confused:

    How do you figure? A comparable gas powered car is in the $30,000+ range. Hybrids have always been higher priced than equivalent gas powered cars. Electric even higher priced than hybrids. Besides, a early adopters are paying for the development cost in addition to the production cost.

    Anyhow, I'll only be interested once it hits the road. I've been hearing a production model is coming next year for a few years now.:rolleyes:

    They have always stated the Volt would be coming by the end of 2010 ever since the program started back in 2007.

    Also remember, the areas the Volt will be sold in first( DC, New York, etc) are affluent areas where people can afford the Volt.

    And even at $41,000, GM is still taking a loss with the vehicle.





    estrella de mar. Vincci Estrella del Mar - Map
  • Vincci Estrella del Mar - Map



  • mw360
    Apr 6, 10:05 AM
    I see your point, but I think that it's quite uncharitable to question the motives of individuals but let apple have a pass. They are in the position to do whatever they want, and there's no way that they WOULD reimburse those whose apps were rejected for the same function, but my point is that they shouldn't have rejected those apps at all. It's hypocritical of them to reject an app for a reason, and then when they get desperate for their iAd program to catch on more with advertisers (which apparently aren't as excited for the platform as Apple had hoped) they change their mind and create their own app.

    And besides, an ad impression is an ad impression. The only iAds that I click on are accidental. If people want to download an app to see what an iAd looks like, they are also getting the best of what the advertisers had hoped for: the chance to make somebody want to use their product. They pay for the option of changing somebody's mind, not to actually do it. They pay to put the advertisement in partial view. Not to actually sell products directly.

    It doesn't matter who makes the app, if they are putting the ads in front of people, they deserve the money. That goes for Apple or any of the several individuals that have already created such apps.

    With respect, you clearly don't work in advertising. You pay to put ads in front of the right people, not just anyone. Especially not competing advertisers and agencies. Why do you think Google (a) makes so much advertising revenue and (b) collects so much data about its users? Coincidence?

    Secondly individuals are just as greedy as corporations, and generally get to operate outside of the spotlight. Apple has a lot to lose if its iAd platform is seen to be poorly targeting users, but an App developer has a lot to gain from indiscriminate iAd spamming. So in this case, yes, for the sake of self interest I'd expect Apple to reimburse advertisers for clicks inside their iAd app, and I'd expect an independent developer of a similar app to laugh all the way to the bank.

    I never said btw I'd expect Apple to reimburse developers for their time on rejected apps. Or if I did I didn't mean it.





    estrella de mar. de Buceo - Diego y el Mar
  • de Buceo - Diego y el Mar



  • apfhex
    Jan 9, 03:41 PM
    ...You suck.
    :o At least I wasn't the first. :o I totally forgot. Quick, edit my quote in your post and no one else had to know. :)





    Mac-Mariachi
    Apr 5, 04:22 PM
    Apple I love you, and I love your products. I�ve been pro Apple since 1992

    But I wouldn�t download this "app" even if you paid me.





    tvguru
    Sep 12, 08:49 AM
    When you come across a bit of information that seems to point to some sort of confirmation to a rumor do you read 9 pages of threads or do you just post it? I scolled through real quick to see if the image had been posted and didn't see it. Lay off.

    It wasn't at you personally, it's just that everyone just finished bashing that exact thing when your post showed up. Bad timing really. :)





    Mac'nCheese
    Apr 15, 02:49 PM
    People who have made history have just been people and gay or straight have never come into it. What does it matter? A stand alone class in college on "gay studies" I would have no problem with. The requirement in public schools to teach gay history is bit absurd.

    Those who are gay and feel as if they've been wronged, I feel for them and effort to make it right, but the level of suffering by gay is nothing compared to what black people or women have endured over the centuries. It bothers me a little when gay suffrage is pitted against something like slavery. Just not the same, IMO.

    That answer is very similar to the posts in the thread about the video apple just did in support of the IT GETS BETTER campaign. Nobody is pitting the gay community against slavery. Nobody is saying lets stop teaching about women's rights and start instead with gay rights. They are just adding it. Why do people always have to make this weird connection?





    Retrosonic
    Dec 18, 08:15 PM
    Super interesting thread here. Very enjoyable reading, at least for most of the messages. (except for the ditzo who cant see why Apple would have two seperate iphone upgrade dates, one in Jan and one in June.....it makes complete business sense).


    The minute I saw Verizons announcement out of nowhere about rolling out the LTE network in 1/3 of the country on Dec 5, my ears went up. I mean why do that if there isnt something following it soon after? It sure SEEMs like they are "setting the table" for something.

    I guess we'll find out soon enough.

    I just really hope the Verizon Iphone is available in White from Day One. The white is sharp looking.





    Queso
    Oct 19, 09:57 AM
    I'd like to see the figures just for the UK rather than "international". I'm a firm believer that it's the Apple Stores that are causing the upswing. Outside of the US, the UK is the only country where Apple stores are expanding their reach, which would confirm whether or not my thinking is misguided.