Thursday 19 May 2011

backgrounds for photos

backgrounds for photos. Twitter ackgrounds have
  • Twitter ackgrounds have


  • 840quadra
    Sep 12, 10:11 AM
    Minimal impact, or importance, but interesting..

    http://images.apple.com/quicktime/qtv/wwdc06/images/sjwwdc.jpg



    backgrounds for photos. Abstract Cute Backgrounds
  • Abstract Cute Backgrounds


  • Leeartlee
    Apr 25, 11:49 AM
    Yeah, it's just a big enough change that a new case would have to be bought :rolleyes:




    backgrounds for photos. Winter ackgrounds vector pack
  • Winter ackgrounds vector pack


  • NebulaClash
    Apr 29, 02:37 PM
    Steve Jobs' "PC is a truck" analogy was perfect. What these people aren't getting is that most computer users aren't nerds and hackers, but they've been forced to drive trucks all these years when they'd really be a lot happier with a Honda Civic.

    PCs are to be used for tasks a nerdy kid would get beat up for talking about in school. That's the test I use. Everything else is better suited to the post-PC world.

    And if you can make the PCs friendlier by adding post-PC features for the less technical tasks, what's wrong with that? It's a better experience for non-techies that have to use PCs for one reason or another, and who ever said hackers don't want to use nicer consumer-level software?

    Thank you for reminding me of that analogy. It really is a good one, and your points are excellent. Nobody complains when pickup trucks and tractors get cushy seats and high-end sound systems, but add an app store to OS X and people are ready to jump to Windows! Silly.

    Folks, there will ALWAYS be professional level PCs for you to do with whatever you wish. The hackers and geeks will have their hardware. That will NEVER end.

    But as this post-PC era expands the market for computing devices, there are a lot of people who will be regularly using a computer who never did before, and they won't think of them as computers but just handy tools.

    Every time there is this era change, the previous experts get all worried about losing their status as high priests of the current order. Too bad. The world moves on. And maybe one day I'll live long enough to see what comes after the Tablet era. But one thing I know will happen at that time: MacRumors posters whining and moaning about Apple ignoring their beloved iOS devices for this new thing that "isn't really a tablet!"




    backgrounds for photos. ackgrounds The BackGrounds
  • ackgrounds The BackGrounds


  • Ugg
    May 4, 04:46 PM
    Which brings me back to my initial reply. A "Firearm" has ZERO possibility of injuring your child, until someone behaves irresponsibly. I am fine with a doctor providing a pamphlet of common household hazards and steps to prevent them, but I get the feeling this is not the case. I can too easily imagine the doctor going off on a tangent about firearms deaths statistics, etc...

    But again, the most important part: If you dont want your doctor "politicing" you, GO TO A NEW DOCTOR. There should NEVER be laws against what you can or can not say.

    Dude, you're clueless.

    I have a severe congenital hearing loss and it's really amazing how parents don't really understand the long term consequences of poor hearing protection.

    Just as in almost all other health matters, the more exposure to loud noises when young, the more likely a child is to end up with a hearing loss as he ages. Some parents do insist on hearing protection when using firearms, but I'm sure there are a lot that don't. Shooting guns without hearing protection is like taking a five year old to a Nascar race. Very, very irresponsible simply based on the noise level.

    I'm sure Dr Choi was speaking of the danger of firearms being discharged by and around children with a lack of supervision, but your tunnel vision when it comes to the health and safety of children is appalling.




    backgrounds for photos. and ackgrounds - perfect
  • and ackgrounds - perfect


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




    backgrounds for photos. swirly beams ackgrounds with
  • swirly beams ackgrounds with


  • bobringer
    Apr 5, 03:55 PM
    My god, I knew people were self absorbed but not THIS self absorbed.

    People, get over yourselves. Just because YOU don't see a need for something doesn't mean that anybody else that uses it is a moron.

    What about the people in advertising? Should they be called a moron because they actually want to do research? What about people trying to learn HTML5 and looking for ideas? Are they morons because they are trying to improve their skills? How about the creative 17 year old that wants to win the first interactive Domino's superbowl commercial on an AppleTV in 2016 (using the AppleTV version if iAd's).

    Sheesh... the world is going to a hell in a handbasket and each of you thinks you're the ones CARRYING the handbasket. Newsflash... you're not.




    backgrounds for photos. Tagged Under : Backgrounds
  • Tagged Under : Backgrounds


  • roadbloc
    Apr 5, 04:35 PM
    This is stupid.




    backgrounds for photos. Hearts ackground
  • Hearts ackground


  • pudrums
    Apr 8, 10:30 AM
    I purchased it digitally and don't have a Blu-Ray player. Thanks anyway :p




    backgrounds for photos. of 3 colorful ackgrounds,
  • of 3 colorful ackgrounds,


  • iWonderwhy
    Apr 12, 06:36 PM
    Nice to see everything is civil around here. As soon as I read the title I thought this would become a troll thread lol.




    backgrounds for photos. Ornate pink ackground
  • Ornate pink ackground


  • Angelo95210
    Sep 13, 06:07 PM
    I am looking for a friendly team, but I can't join F@H because I am using Boinc...




    backgrounds for photos. Free Blog Backgrounds for
  • Free Blog Backgrounds for


  • extraextra
    Oct 3, 01:29 PM
    Like maybe a 12" MPB ?

    I'm crossing my fingers.




    backgrounds for photos. patterns ackgrounds. patterns
  • patterns ackgrounds. patterns


  • arn
    Apr 27, 03:19 AM
    fwiw, here's some data from this news thread: http://www.macrumors.com/2011/04/26/android-jumps-past-ios-in-overall-u-s-smartphone-usage/

    The top rated posts:

    Macman1993
    13 hours ago at 12:07 pm

    Some will be bothered about IOS not being the most dominant. I personally don't care, I just want the best mobile OS.

    Rating: 15 Positives / 2 Negatives

    brendu
    13 hours ago at 12:12 pm

    One interesting thing to note. Apple held 25% of recent acquirers with 2 phone models. The iPhone 4 and iPhone 3GS. They are also on only 2 carriers, and have only been with Verizon for part of the time leading up to the march survey. Android however is on dozens of handsets and all four US carriers. I would say apple is doing amazingly well when you consider those specifics. I am not worried about iOS not having a larger chunk of the market, I am blown away that it has 25%.

    Rating: 12 Positives / 0 Negatives

    komodrone
    13 hours ago at 12:39 pm

    "...in total penetration" THAT'S WHAT SHE SAID. yeah I signed up for an account just to post this.

    Rating: 10 Positives / 0 Negatives

    Eddyisgreat
    13 hours ago at 12:15 pm

    If the iPhone were buy one get two free as well then I bet those numbers would be different :D

    Rating: 9 Positives / 1 Negatives

    VanMac
    13 hours ago at 12:09 pm

    Competition is good :) Keeps Apple on their toes Don't need another MS Monopoly.......

    Rating: 12 Positives / 4 Negatives

    Slix
    13 hours ago at 12:14 pm

    iPhones are still better.

    Rating: 12 Positives / 5 Negatives

    supmango
    13 hours ago at 12:12 pm

    I really hope that Apple sees trends like this and realizes it's time to change their game plan. No more once a year phones. Time to kick the innovation level up a few notches. Time for over the air OS updates, over the air app installs, wireless syncing and everything else Android has offered for some time now.
    iOS does over the air app installs. Other than that, yes I agree that Apple needs to do those things. Oh, and I use Android because it's the only option on my carrier (its the least repulsive option anyway). But it sucks, and doesn't seem to be getting any better. I think the only reason it is seeing growth like it is is because of cheap hardware, and, as in my case, being the only real option on certain networks.

    Rating: 6 Positives / 0 Negatives

    Millah
    2 hours ago at 11:13 pm

    inevitable as android devices are available everywhere and in every price segment. remember, half of all American workers earn $505 or less per week.

    The funny thing is, almost every single Android owner I know are people who could care less about "smartphones," really don't know much about technology, and only bought one because it was very cheap or free when they upgraded, and they were told that it could "run apps like the iPhone." These are people who had cheap free phones before they upgraded. And realistically, the majority of people are like that. But when we compare the industry profit percentages, it paints a much different picture. Which goes to show that market share is irrelevant especially in the cell phone business where cheap free phones are dominant. Its going to be interesting when Apple tries to go after this segment. I'm sure they'll come up with something clever.

    Rating: 5 Positives / 0 Negatives

    Michael Scrip
    12 hours ago at 01:13 pm

    Deceptive Report... Let's not forget, Apple iOS encompasses more then just iPhones. If you included the iPad and iPod Touch which both run Apple iOS then Apple's market share is still ahead of Android.

    It's not *that" deceptive... they did include "US smartphone usage" in the headline. Here's why... Apple's smartphone is called "the iPhone" And then you've got "Android" which is a tons of phones from many manufacturers. When comparing smartphone numbers... it's the iPhone vs. many Android phones. You're right... if you wanna have a platform battle... iOS vs Android... you'd have to include iPods and iPads. But this is a comparison of phones...

    Rating: 5 Positives / 0 Negatives

    righttime
    13 hours ago at 12:27 pm

    Wow. A platform that is available on all four major carriers and has dozens of phones, passed the iPhone (which *just* became available on its second carrier) in overall usage. So I guess Google should be patting themselves on the back for this historic achievement.

    Rating: 5 Positives / 0 Negatives

    There isn't a huge amount of activity, but take it for what it's worth. Also, I think this was before we fixed the IE issue. It should work in IE now.

    arn




    backgrounds for photos. to the ackground.
  • to the ackground.


  • diamornte
    Apr 25, 01:35 PM
    The 4s will be a 4 with the 3.7 screen, and a A5 chip. That is it. Period.


    How can you be so certain of this as to say "That is it. Period."? Sources plz?




    backgrounds for photos. If any ackground doesn’t
  • If any ackground doesn’t


  • exspes
    Jan 13, 04:04 PM
    What I'm wondering is.. if Gizmodo never posted that video, would we have heard about it anyway? As in, would there be news stories saying "Pranksters hit CES hard by turning off displays"

    My guess is we wouldn't have heard anything of the sort.




    backgrounds for photos. Blue Light Backgrounds
  • Blue Light Backgrounds


  • mac-er
    Oct 2, 07:08 PM
    Jobs apparently warned that while Apple was not a litigious company

    Well, that has to be the funniest thing I ever heard.




    backgrounds for photos. wedding ackgrounds
  • wedding ackgrounds


  • French iPod
    Apr 9, 10:13 AM
    http://img.game.co.uk/ml/3/5/3/6/353636ps_500h.jpg

    Pokemon DSI, with pokemon black for �99 \M/

    O.o i love the packaging :D it's so black:p never played a pokemon game since the gold edition on my gameboy color and i was around 14...

    anyway i'm going to get my Just Cause 2 copy today @ EBGAMES so freaking exciting squeee:D




    backgrounds for photos. tr, td { ackground-color:
  • tr, td { ackground-color:


  • bcslay
    Sep 12, 03:06 AM
    no, I wouldn't prefer osx media player, i'm not saying that I would prefer anything different, imedia would make more sense, but there's no way apple would change the name of there most well known software.




    backgrounds for photos. ackgrounds created with
  • ackgrounds created with


  • toddybody
    Mar 28, 02:20 PM
    Im just waiting for all the fake MR iOS developers to post comments...:rolleyes:




    backgrounds for photos. purple-ackground.jpg
  • purple-ackground.jpg


  • demo
    Oct 14, 01:17 PM
    Just noticed something at work (large retailer). The iPod case is unusually empty of iPod videos. We may have 15 total when the case usual has 50-100. The iPod Nanos on the other hand are completely stocked full. Usually this only happens when Apple is going to release a new version and stops sending the store product. I know it sounds weird because they just upgraded the 5G but it was a very insignificant update. Just thought I'd add that to the rumor mill.

    woo, that sound excited.




    Links
    Aug 9, 06:49 PM
    Would someone who bought what they assume to be the newer
    version of this display with improve brightness and contrast
    please post part of your serial number.

    Mine: 2A6211XXXXX (Xs represents the rest of my number)
    date of manufacture: May 2006

    Determined from the decoder at:
    http://www.chipmunk.nl/klantenservice/applemodel.html

    I'm trying to detemine if the one I just bought is in this new batch.
    And if it isn't I want to return it quickly.
    I have 15 days to return it and exchange if I don't want this display to the store
    where I bought it (not from an Apple store).




    NebulaClash
    Apr 29, 02:37 PM
    Steve Jobs' "PC is a truck" analogy was perfect. What these people aren't getting is that most computer users aren't nerds and hackers, but they've been forced to drive trucks all these years when they'd really be a lot happier with a Honda Civic.

    PCs are to be used for tasks a nerdy kid would get beat up for talking about in school. That's the test I use. Everything else is better suited to the post-PC world.

    And if you can make the PCs friendlier by adding post-PC features for the less technical tasks, what's wrong with that? It's a better experience for non-techies that have to use PCs for one reason or another, and who ever said hackers don't want to use nicer consumer-level software?

    Thank you for reminding me of that analogy. It really is a good one, and your points are excellent. Nobody complains when pickup trucks and tractors get cushy seats and high-end sound systems, but add an app store to OS X and people are ready to jump to Windows! Silly.

    Folks, there will ALWAYS be professional level PCs for you to do with whatever you wish. The hackers and geeks will have their hardware. That will NEVER end.

    But as this post-PC era expands the market for computing devices, there are a lot of people who will be regularly using a computer who never did before, and they won't think of them as computers but just handy tools.

    Every time there is this era change, the previous experts get all worried about losing their status as high priests of the current order. Too bad. The world moves on. And maybe one day I'll live long enough to see what comes after the Tablet era. But one thing I know will happen at that time: MacRumors posters whining and moaning about Apple ignoring their beloved iOS devices for this new thing that "isn't really a tablet!"




    *LTD*
    Apr 23, 05:17 PM
    It is no secret that pedophiles have been known to hack children's computers to gain access to their webcam pictures, messenger conversations and ect. If that child has an iPhone and the said pedophile knows the file that contains the iPhone locations; what the pedo essentially has is the child's daily or weekly routine of where they are.

    I buy it. Slim chance, but certainly possible and certainly doable.

    I'd have to disagree. There are a lot of ways to keep tabs on someone if you wish to do them harm. The issue is whether the (as yet unknown) purpose of this data is useful enough to justify it's being there in the state it's in. There is no immediate way it gives anyone any special or expedient means of causing another harm. You'll need a lot of contingencies and variables come together to form specific cases. I really don't see that happening. That said, the reasons I've seen so far aren't that nefarious. It actually makes sense to be tracked in this way, especially in light of the argument that it's a caching mechanism in order to make it easier to switch from tower to tower. I can believe this. I don't believe there's any evil behind it. Nor do I for the moment believe this is easily accessible by anyone other than physically by the user/owner of the phone. And then it's likely not easy for the average person.

    Said paedophile *before* this information has been able to track children without problems using other means, I'd wager. Likely easier means, though I'm not well-versed in the specific modus operandi of paedophiles. I suspect I'll need forensics/law enforcement training to get a complete understanding.

    Besides, your example is based upon pure conjecture. First assumption is they are able to hack into their phone. Is hacking into iPhones remoely a big problem out in the wild? Not that I've heard or seen.

    What I'm saying is take the "wait and see" aproach before we begin to vilify and condemn Apple as self-serving, careless data-mining opportunists.

    So it's a plea for sanity. But I've noticed that whenever Apple's quarterly report rolls around and it's usually stellar news, the insanity of our loveable contrarians ramps up, purely for the purpose of being contrarians, as if we need to "balance out" all the enthusiasm with careful doses of negativity so we're not *too* positive. I'm not referring to you, roadbloc, by the way.

    So in any case, this is my position, and I'll say it's the same position I'd take if it were Google and MS.




    Calidude
    Apr 16, 04:49 PM
    Narrow-mindedness is an affront.
    Hardly. Do look up "affront" in a dictionary.




    G58
    Apr 5, 05:51 PM
    hahahahhahahahahahahahahahahahahahahahahaha.........

    Whoever spends their time looking at adverts is a lost cause and has no life. Seriously I think this is the most ridiculous thing apple has come up with.

    Dear macrumors newbie and all the others who simply don't get this,

    I can only assume none of you have either a creative or entrepreneurial gene in your bodies. Even if all you hope to be is moderately successful at communicating, an appreciation of the work of ad agencies would be useful.

    I designed my first ad when I was 19. It was a poster for a charity disco. We made money. Unconsciously I had distilled all the information I needed from all the ads I'd seen up to that point, and made something that worked. It was never as easy ever again.

    If you ever want to be really successful and maybe even wealthy, then this app is vital. All the current iAds in one place - no searching needed. For goodness sake use your imaginations, please.



    No comments:

    Post a Comment