Thursday, May 26, 2011

smoke wallpaper

smoke wallpaper. Blue Smoke wallpaper
  • Blue Smoke wallpaper



  • Toneaphone
    Feb 25, 03:39 PM
    Even though Android has more potential users, they will never be as successful as the iPhone until they improve their app capabilities. Once they do this, developers will make better apps and games, and customers will buy more. It ultimately boils down to the degree of consumption per user rather than the quantity of potential customers. One person can easily install 150+ apps for the iPhone in no time. Over 3 billion apps have been downloaded to date...It will be an extremely long time until Android meets that milestone.





    smoke wallpaper. Rainbow Smoke Wallpapers and
  • Rainbow Smoke Wallpapers and



  • ddtlm
    Oct 12, 03:30 PM
    Wow I missed a lot by spending all of Friday away from this board. I am way behind in posts here, and I'm sure I'll miss a lot of things worth comment. But anyway, the code fragment:


    int x1,x2,x3;
    for (x1=1; x1<=20000; x1++) {
    for(x2=1; x2<=20000; x2++) {
    x3 = x1*x2;
    }
    }

    Is a very poor benchmark. Compilers may be able to really dig into that and make the resulting executable perform the calculate radically different. In fact, I can tell you the answer outright: x1=20000, x2=20000, x3 = 400000000. It took me 2 seconds or so. Does this mean that I am a better computer than a G4 and a P4? No, it means I realized that the loop can be reduced to simple data assignments. I have a better compiler, thats it.

    Anyway, lets pretend that for whatever reason compilers did not simplify that loop AT ALL. Note that this would be a stupid stupid compiler. At each stage, x1 is something, we ++x2, and we set x3 = x1 * x2. Now notice that we cannot set x3 until the result of X2++ is known. On a pipelined processor that cannot execute instructions out of order, this means that I have a big "bubble" in the pipeline as I wait for the new x2 before I can multiply. However, after the x3 is started into the pipe, the next instruction is just another x2++ which does not depend on x3, so I can do it immediately. On a 7-stage in-order chip like a G4, this means that I fill two stages of the pipe and then have to wait for the results on the other end before I can continue. You see that this is very inefficient (28% or so). However, the G3 is a 4-stage design and so 2/4 of the stages can stay busy, resulting in a 50% efficientcy (so a 700mhz G3 is "the same as" a 350mhz G3 at 100% and a 800mhz G4 is "the same as" a 210mhz G4 at 100%). These are of course simplified cases, the actual result may very a bit for some obscure reason.

    Actually the above stuff is inaccurate. The G3 sports 2 integer units AFAIK, so it can do x3 = x1*x2 at the same time as it is doing x2++ (for the next loop of course, not this one). This means that both pipes start one bit of work, then wait for it to get out the other end, then do one bit of work again. So this is 25% efficientcy. A hypothetical single-pipe G3 would do x3 = x1*x3 and then do x2++, however it could not do x3 = x1 * x2 again until the x2++ was out the other end, which takes 4 cycles and started one after the previos x3 = x1*x2, which should mean 3 "bubble" stages and an efficientcy of 20%.

    Actually, it may be worse than that. Remember that this is in a loop. The loop means a compare instruction (are we done yet?) followed by a jump depending on the results of the compare. We therefore have 4 instructions in PPC I think per loop, and we can't compare x2 to 20000 until x2++ has gone through all the pipe stages. (Oh no!) And we can't jump until we know r]the result of the compare (oh no!). Seeing the pattern? Wanna guess what the efficientcy is for a really stupid compiled version of this "benchmark"? A: really freaking low.

    I'll see about adding more thoughts later.





    smoke wallpaper. Smoking Skull - Wallpaper
  • Smoking Skull - Wallpaper



  • .Andy
    Apr 26, 05:45 PM
    Sadly, the bun was stolen from its glass preservation case.
    Or it vanished in a miracle.

    For the bread has risen.





    smoke wallpaper. smoke wallpaper. smoke in hand
  • smoke wallpaper. smoke in hand



  • emotion
    Sep 20, 08:27 AM
    Problem is, doing a PVR would be extremely expensive. Other than things like Tivo that have monthly fees, PVR's haven't really caught on, and the price is the biggest reason.

    This must be a US-centric view. Here (UK) PVRs with twin Freeview (DTT) tuners and 80GB HDs are everywhere. And they are very cheap now (120 quid upwards).

    I'm thinking of ditching my cable provider (NTL, I only get it for Sky One, which is just Simpsons repeats) and going with something like this:

    http://www.topfield.co.uk/terrestrialequipment.htm

    Apparently you can DL what you record to your Mac (USB). I suspect you'll then be able to play that on iTV.





    smoke wallpaper. Wallpaper] Blue Smoke
  • Wallpaper] Blue Smoke



  • amorya
    Apr 13, 09:38 AM
    I do have to agree that Apple is strangely moving away from the core pro market that was very loyal.

    I've just gone and read through the tweets from @fcpsupermeet, which describe the event. From comments like this (I pick this one as an example, loads of people are expressing the sentiment) I was expecting something really consumer-focussed, rather than:

    "Really great color tools built in. Animated windows, keyed secondaries, demo looks really good."

    "Auto guides and keyframes for motion effects a lot like Motion (without the silly record button)."

    "Single clip match grade between shots. Just saw a VERY fast auto render."

    "Automatic dual system audio via waveform analysis"

    ""Compound Clips": collapse chunks of media into a single clip on the timeline. How nesting always should have worked."

    "Can start editing during ingest of AVCHD and other media, switches silently to local media as it ingests"

    "Resolution independent playback/timeline all the way up to 4K"

    Now, I'm not a video pro. I'll admit I'm a hobbyist: I was part of my university's film making society, and I've done various projects myself, but it's not my professional gig. But I can't see anything here that shows Apple moving away from the pro market. As far as I can tell they've done a really ambitious ground-up Cocoa rewrite of FCP, streamlining the workflow to make it quicker to use (no more render dialogs!), and at the same time building in loads of new tech like colour matching throughout.

    Is the only thing people are bothered about the fact that they changed the UI? Because other than that, I just can't see what the complaints are about. We haven't heard any actual confirmed statements of features being removed, so why assume that any crucial ones have been? They'd have been nuts to switch away from a timeline-based system like iMovie did, and so of course they didn't do that. They rewrote everything from scratch to remove a bunch of legacy baggage (like the lack of multithreading, and the Carbon UI that prevented it going 64 bit), which is awesome, but I completely can't see any evidence of a change of focus.

    Amorya





    smoke wallpaper. 3D Art Smoke Wallpaper
  • 3D Art Smoke Wallpaper



  • AppliedVisual
    Oct 21, 12:09 PM
    That's great! I want to put 4GB in my 8-core Mac Pro anyway, so I hope the price lingers there (or maybe even falls a little by the time I can get an octo core). I'd buy now, but I'd rather hold out on the chance that it'll drop a little more, or even on the longshot that they'd change what kind of modules the new machines use.

    I doubt anything with the Mac Pro will change (other than the CPUs) when the 8-core models ship. Intel originally was very committed to using the FB-DIMM type RAM in their systems for the next couple years. However, they have since backtracked on that and said that they will continue to explore other options. Who knows what that means... I thik it means that we'll probably see DDR3 on mid-range systems in '07, probably in notebooks as well at some point mid to late year. But I would guess that for the foreseeable future, FB-DIMM is the standard for Xeon workstations and servers, so Mac Pro and XServer should continue with this type of RAM for a while. When Intel finally shifts to the new 45nm process sometime mid/late next year, then all bets are off as they will need to increase bandwidth for both the RAM and FSB to keep in step with CPU growth.





    smoke wallpaper. Free Gone In Smoke Wallpapers
  • Free Gone In Smoke Wallpapers



  • Vulpinemac
    Apr 28, 09:47 AM
    Almost all of that is due to the iPad. They had around 4% of the global market for computers last year.

    Do some research. Globally Apple passed 7% last year.





    smoke wallpaper. 3D Art Smoke Wallpaper
  • 3D Art Smoke Wallpaper



  • ten-oak-druid
    Apr 9, 04:46 AM
    The delusion is this thread is hilarious. I'm seeing little casual gamers saying


    LOL

    You're such a big power gamer yourself...





    smoke wallpaper. 1 fire smoke Wallpaper,
  • 1 fire smoke Wallpaper,



  • Eidorian
    Oct 26, 11:32 PM
    I would love a Kentsfield "desktop" based tower but I don't know if Apple wants to add another product line.Yeah I'd love one too. A little pricey for a process since it's in the Extreme series though.





    smoke wallpaper. smoke wallpaper. rainbow smoke
  • smoke wallpaper. rainbow smoke



  • milo
    Sep 20, 05:58 PM
    In essence, the mac mini can do ALL OF THAT, plus more, minus the ability to go out via HDMI. If apple just upgraded FRONT ROW to the quality of the iTV user interface, you have an iTV right there on the mac mini!

    And it will cost twice what the iTV costs.

    People aren't willing to pay that much for a settop box. Game over. Product dead.

    it won't have any dvr functionality... it'll just be frontrow on your tv, and nothing else.

    And that's exactly what I want. I don't want to pay for extra crap that I don't need.





    smoke wallpaper. Smoke Wallpaper by me-pawel
  • Smoke Wallpaper by me-pawel



  • bigjohn
    May 5, 11:33 AM
    Works fine for me here in L.A.

    Although I so rarely use voice anymore... I wish there was a 200 minute plan for like $19





    smoke wallpaper. smoke wallpaper 2 640x400 50
  • smoke wallpaper 2 640x400 50



  • localoid
    Mar 14, 05:17 AM
    Somewhat old news, but seemingly germane...

    With a sparkle in his eyes, Bill Gates explains the Traveling Wave Reactor (http://www.youtube.com/watch?v=qwRYtiSbbVg), a mini-reactor that can use nuclear waste as fuel.

    Wonder if Bill had one of these Gilbert sets as a kid?

    http://img822.imageshack.us/img822/2184/gilbertatomicopentrimme.jpg





    smoke wallpaper. Purple Smoke
  • Purple Smoke



  • Apple OC
    Apr 27, 09:19 PM
    That's not the point. The point. The point is that even before anyone discovered microbes, microbes already existed. You're welcome to insist that there's no God. But maybe you insist that there is none because although there's evidence for theism, you doubt that it is evidence for it. I'm sure many atheistic scientists who dismiss theism a priori because they believe that if God exists, His existence would force them to revise many of their scientific assumptions. I forget the title of the television program I watched, where the host asked a neuroscientist what she thought about near-death experiences. She didn't want to consider potential evidence for an afterlife because an afterlife would disprove too many physicalist assumptions about the nature of the mind.

    I am not clear on the evidence you refer to ... I am looking for solid evidence ... please link some if you can :cool:





    smoke wallpaper. smoke wallpaper
  • smoke wallpaper



  • CAWjr
    Mar 18, 11:05 AM
    I can't blame AT&T one bit for trying to protect their network. And as some have already said, those who are trying to game the system are hurting those of us who are being honest by bloating the network unnecessarily.





    smoke wallpaper. Smoke wallpaper - 8013
  • Smoke wallpaper - 8013



  • Man4allsea
    Feb 15, 04:24 PM
    Erm.. you're being closed minded.




    smoke wallpaper. default smoke Wallpaper,
  • default smoke Wallpaper,



  • gorgeousninja
    Apr 21, 06:58 AM
    But just like Windows, it's practically impossible to have any problems unless you do something stupid.

    I'm guessing that you haven't used any of the earlier versions of Windows much... cos everyone else knows about the random glitches, screen freeze, BSOD and crashes .... unless you count turning it on as stupid ... Well, actually that I can agree with. :)





    smoke wallpaper. with shooting some smoke.
  • with shooting some smoke.



  • portishead
    Apr 12, 11:00 PM
    I think that most of them will find that Apple has, at present abandoned them. That's not to say the industry won't shift, and there won't be enough 3rd party solutions out there, but they are throwing Avid a HUGE bone here.

    I don't think many people are going to feel this way.

    FCP was making big inroads into broadcast, and they're throwing it away-- for today certainly.

    How so?

    Filmwise, could go either way, depending on the production. If it's got great RED/4k performance, "film" support isn't so important..

    Avid is still probably better for film work, but it's hard to tell until we get our hands on FCPX.

    But for the indie crowd, they're really screwing them over, if they are abandoning Color. *THAT* is what shocked me. I'm also surprised that effects weren't more advanced. I couldn't see anything on a titling tool, but that's pretty imporant for Broadcast as well.. and *no* existing solution is good for that... They really had (have?) a chance to make that right, and it seems they don't care.

    You can use a separate app. Nobody has said anything about abandoning color. I'm sure there will be a title tool. It's probably not ready yet. This was a PREVIEW after all.

    So, when I say "iMovie Pro" that isn't necessarily pejorative. This product is WAY, WAY, WAY more iMovie than FCP. That doesn't mean you can't cut "a real movie" on it. But for Broadcast TV, it's a real step down in a lot of ways-- at the very least not a step up.. The interface is very iMovie. They should have called it iMovie PRO, especially if they're getting rid of the rest of the FCS apps..

    The app was re-written. Certainly features aren't going to carry over right away. Short term, there will be some drop off, but after a release or two, FCPX could grow into a nice app.





    smoke wallpaper. smoke weed everyday Wallpaper
  • smoke weed everyday Wallpaper



  • Fredo Viola
    Aug 29, 11:14 AM
    it's such a progressive issue, you'd think Apple would be all over it. I mean, AMD is making good marketing use of being energy efficient. It seems smart of them and makes them appear more cutting edge. Certainly Apple would do great to embrace this issue and make their products more eco-friendly. But you think about how the shell of your Mac can't really be reused to house new major computer components (such as mb, etc...). This seems wasteful. Think of all the packaging that is just being wasted. It's actually kind of shameful.





    smoke wallpaper. Smoke Abstract Widescreen
  • Smoke Abstract Widescreen



  • Iscariot
    Mar 25, 06:52 PM
    I try to, but public service keeps dragging me away.

    And it's getting damn annoying.

    I bet if you drink and swear enough you can get your hours cut back. Nothing says retirement like excessive liability.





    jmcrutch
    Mar 18, 08:51 AM
    If AT&T were to allow tethering with unlimited, they know that ASAP people would start dropping their home internet en masse. Not saying everyone would, but plenty would for the same reason they dropped their home landline telephone. Will this happen eventualy anyway - yes. But AT&T, as the provider has the right to do as they see fit for their business and their shareholders.

    While you might not use more data via tethering, if it were allowed with no extra charges, and on unlimited plans, AT&T would see a huge spike in usage that would not go down - and they would be doing so without any increase in their revenues (in fact, they'd see a decrease as noted above).





    jk8311
    Sep 12, 03:47 PM
    The other possible reason for the sneak-peak from Apple is that analysts on wall street have been talking up a storm about a video-capable Airport Express. This was unusual for the event - I've never seen analysts buy into so many of the obviously fake rumors. This morning an analyst even used the word "TubePort" to describe the potential release. He totally lost any credibility the moment he did that. Anyway - Wall Street's expectations were high and I think Steve Jobs had to give in a little bit in order to keep stock holders happy. Also, if you've read the recent reviews about Amazon's new Unbox service, everything comes down to the fact that you ultimately pay the same price (if not more) for the file, wait for it to download, and are then limited to watching it on your computer or iPod.

    They were expected to introduce an end-to-end solution that would allow people to download movies and play them back on a TV - unlike Amazon's Unbox service that limits viewing to the TV. So now Apple can't be grouped in the Amazon category and people will start buying movies with Apple's iTunes serivce since they know that within 3-4 months they'll have an end-to-end solution with the "iTV". Why get stuck with the Amazon service if you can't get it to the TV...





    M-O
    Apr 28, 08:21 AM
    It's no. 1 with PCs excluded.





    Speedy2
    Oct 8, 03:46 PM
    ya that's why I said "generally", however, Googles main source of revenue is advertising. So all google wants is more and more people with smart phones.

    ..and of course more people using Google's services. I think their major issue was that smartphone makers like Apple and Microsoft have a decided interest in leading users to their own, non-Google services, while "old school" mobile phone companies like Nokia or Motorola don't even have many Web services to speak of. Apple may still be using quite a few Google services, but haven't they just bought a Google Maps competitor? And Google, MS and Apple are all competing in the "Docs" department.

    Still, I'm not convinced that the Android investment was really necessary. Microsoft, their biggest enemy, is failing in the mobile OS market, whereas Apple isn't really showing any signs they might target Google's core business, the search engine and Web ads, in the future.

    I wonder in which way Google sees its "auxiliary" services (Mail, Docs, Maps, Voice, Wave, et bloody cetera) as a future money maker. They must play a key role for the Android stretgy. However, quite a few people (including me) have my doubts about them. Even the highly successful YouTube isn't making any money.




    and Google does have better margins than Apple.. look up their quarterly reports..


    I never doubted that Google as a pure software company may have a better margin, but you would need to compare Apple's iPhone business to Google Android business and see who is making more money in total.





    aristobrat
    Mar 18, 09:34 AM
    No matter what fine print they include in the contract, they cannot sell an unlimited data plan, and then limit it, in any way.
    Even if your lawyer is somehow able to pull a Harry's Law and convince a court to rule that way, the end result is guaranteed to be that no US wireless carrier will ever offer an unlimited smartphone data plan again.

    Big win.



    No comments:

    Post a Comment