sábado, 21 de mayo de 2011

obama osama morph

obama osama morph. %IMG_DESC_1%
  • %IMG_DESC_1%


  • MacAddict1978
    Apr 9, 11:17 AM
    One off the top of my head is that everything costs money application wise, there is very little freeware.

    Downloads.com and versiontracker.com have almost always had what I needed. Though, I really haven't needed tons of stuff like I did on Windows.

    For me it was frustrating the first day or so. Just because everything was actually easier and made sense. I didn't have to take 10 steps to do one simple thing. Emailing a picture for intance. Drag and drop it on the mail icon, and it opens attached in an email. Windows has copied a lot of that over the years.

    Keyboard shortcuts are the real big thing. Some are the same but others... like when you pull down a menu and you see characters that aren't on the keyboard Had to learn that stuff. That was annoying, but you learn them




    obama osama morph. %IMG_DESC_2%
  • %IMG_DESC_2%


  • 840quadra
    Apr 28, 08:52 AM
    Oh yeah, it's definitely trending downward now instead of still climbing, but it took almost a decade before that happened, not 3 or 4 years as claimed earlier. And they still sell millions every year, which you cannot say about pet rocks. That's the difference between a fad and a popular product. In a fad, the sales dry up quickly.

    I understand what you are getting at. I still personally feel it is a fad, and it is drawing to a close. But I alone can't label it as such. :(

    Speaking of fads, when will the current craze if wearing HUGE face covering sunglassess end? :cool: :p




    obama osama morph. %IMG_DESC_3%
  • %IMG_DESC_3%


  • zacman
    Apr 21, 03:43 AM
    Ouch, it must really have hurt Apple that Android *smartphones* outsold all Apple iOS *devices* worldwide in Q1 (40 million Android smartphones compared to 32 million iOS devices). So they now are making again strange comparisons that only cover *one* market and *phones* vs. *devices.

    And "largest app store":
    Why didn't Apple give any real numbers here? The last number was 350k in January, in March they said it's over "350k". So how much is it? Probably about 375k now but under 400k as Apple would announce that. Android market now has 325k apps but there are about 35k new apps *per month*. So in one quarter the Android market currently gets about 105k new apps. What's the growth rate in the Apple app store? That's the interesting number to see how confident developers are with the future of the platform.




    obama osama morph. %IMG_DESC_4%
  • %IMG_DESC_4%


  • LethalWolfe
    Apr 13, 12:19 AM
    From what I've been able to cobble together it looks like there is some very cool new stuff in FCP X. I can't wait for Apple to update its page and to actually kick the tires of the program. Hopefully it works as advertised (ex. FCP's current attempt at an 'open timeline' is nothing to write home about and the "auto correct" button in Apple Color is laughably bad) and I also hope all the helpful auto-features can be toggled on/off. For example, audio and video track assignments are a very common and very useful way to keep your timeline organized and easy to navigate around in (especially in a multi-user environment). White space is not a four letter word. ;)

    There are times when software can try to be too helpful and it ends up just getting in the way so I hope Apple considered this and gives us the option to toggle a lot of these things on/off.


    Lethal




    obama osama morph. %IMG_DESC_5%
  • %IMG_DESC_5%


  • grue
    Apr 12, 10:54 PM
    I'm the angriest Mac user / professional FCP user I know, and even I'm blown away. Are there things I'm curious to see how they work out? Sure. But overall� wow.




    obama osama morph. %IMG_DESC_6%
  • %IMG_DESC_6%


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




    obama osama morph. %IMG_DESC_7%
  • %IMG_DESC_7%


  • appleguy123
    Apr 22, 10:56 PM
    On other forums, people complain about the word agnostic.
    >agnostic theist- I believe in god, but have no knowledge of him.
    >agnostic atheist- I don't belief in god, but I don't claim a special source of knowledge for that disbelief
    >gnostic theist-I know that is a god!
    >gnostic atheist-I know there is no god with the same degree of certainty that the theist knows there is one.

    I don't think that many would call themselves a gnostic atheist, I certainly don't.




    obama osama morph. %IMG_DESC_8%
  • %IMG_DESC_8%


  • MorphingDragon
    May 2, 10:02 AM
    This is exactly the kind of ignorance I'm referring to. The vast majority of users don't differentiate between "virus", "trojan", "phishing e-mail", or any other terminology when they are actually referring to malware as "anything I don't want on my machine." By continuously bringing up inane points like the above, not only are you not helping the situation, you're perpetuating a useless mentality in order to prove your mastery of vocabulary.

    Congratulations.

    Stupid people will be venerable to malicious intent no matter what the form or operating system. I find *nix has no viruses tune wholly justified until reality differs.




    obama osama morph. %IMG_DESC_9%
  • %IMG_DESC_9%


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




    obama osama morph. %IMG_DESC_10%
  • %IMG_DESC_10%


  • Sodner
    Mar 18, 08:05 AM
    Glad I got the AT&T 3G iPad 2. :D:D:D

    I was really considering jailbreaking for theathering but unlike some have a problem with stealing.

    And YES I do believe that if I buy 2 GIG of data I should be able to use it as I wish. But just becuase I want it that way does not give me the right to do it.




    obama osama morph. %IMG_DESC_11%
  • %IMG_DESC_11%


  • citizenzen
    Mar 15, 10:07 PM
    ... no matter how bad this escalades ... somehow this will be contained.

    Considering that the conditions at the facility appear to be deteriorating, you might need to rethink what you mean by "contained".




    obama osama morph. %IMG_DESC_12%
  • %IMG_DESC_12%


  • Some_Big_Spoon
    Sep 26, 12:22 AM
    What the hell am I going to do with 8 cores??? :-D




    obama osama morph. %IMG_DESC_13%
  • %IMG_DESC_13%


  • Bernard SG
    May 3, 12:26 PM
    You mean running stuff like iphoto?

    PC versions of cross platform apps are typically faster, have more features than their mac counterparts. That's if there even is a version for mac. Its viable to not own a PC anymore because macs use PC hardware now and can run windows. PC users have no use for osx at all but many mac users still need to have windows

    You're right to some extent but in most cases, you're advocating a philosophy that is one decade late.
    Your concept of computing is valid for a small subset of the population that need sophisticated, 'professional' software.
    It's really rare that someone needs to use the most advanced functionality of MS Excel that puts it 'ahead' of Numbers.




    obama osama morph. %IMG_DESC_14%
  • %IMG_DESC_14%


  • I'mAMac
    Aug 29, 04:34 PM
    We also dont need to buy an escalade that gets about 10 miles to the gallon and then drive it EVERYWHERE. take a walk, ride your bike. every little bit helps




    obama osama morph. %IMG_DESC_15%
  • %IMG_DESC_15%


  • Bill McEnaney
    Mar 27, 07:09 AM
    You have completely missed the point.
    That doesn't surprise me. Please tell me exactly what point I missed.




    obama osama morph. %IMG_DESC_16%
  • %IMG_DESC_16%


  • the_mole1314
    Mar 18, 11:11 AM
    How long before the CEO of Napster writes a letter to the RIAA about this? Talk about karma.

    But it's still not as bad as Napster's dilemma. With iTunes, you still have to actually BUY the song for this to work. Not everyone who purchases songs from iTunes will take out the DRM, most people don't even mind or know it's there to begin with.

    Fishes,
    narco.

    And that rental services are based on per play, not per download, so without DRM, the music companies don't get paid. With iTunes, they still get paid the full amount as if it was a DRM file. I don't think this will hurt Apple at all, mainly because the companies are still getting paid in full for each download. Also, Apple can then inforce their Terms of Serive about how you have to use iTunes to download the songs, or they can cancell your account.




    obama osama morph. %IMG_DESC_17%
  • %IMG_DESC_17%


  • Rt&Dzine
    Apr 23, 01:35 PM
    A lot of people seem to entertain this notion that theists don't use any sort of logic or reason to ground their faith but they do. God has to fit a framework (the Judaeo-Christian God, not the God of islam which the qur'an itself says is arbitrary and unknowable because it can do whatever it wants).

    Why do you say that it has to be the Judaeo-Christian God? If there is a god or creator-being, the chances of this god being the Judaeo-Christian God is infinitesimal.




    obama osama morph. %IMG_DESC_18%
  • %IMG_DESC_18%


  • HasanDaddy
    Apr 13, 05:50 AM
    Seriously - most you guys could walk into the Gates of Heaven, look at Jesus, and say "Is this all? This sucks."

    I don't think I've read a comment here that even makes sense of the importance of this update - seriously - we have posters afraid that 10 year old kids will steal their jobs (get real people!)

    The most important part of this update?

    FCP is now 64 bit, using ALL parts of the processor, meaning that rendering is a thing of the past (depending on how souped up your system is) - that right there defeats Avid

    This is a great update and one to be applauded - thank you APPLE for continually making video editing a cheap endeavor, that can remain professional - further pushing the forces at Avid to reduce the costs of their software

    God Bless you Apple

    (and last note - good editing happens because you're a GOOD EDITOR - not because you can 'afford' the right system)




    obama osama morph. %IMG_DESC_19%
  • %IMG_DESC_19%


  • awmazz
    Mar 11, 08:57 AM
    Link?

    To get an idea of how massive this one was, I am in Himeji, and just an hour east of me, in Osaka, buildings were swaying. Now if you look at a map of where the quake is and how far away Osaka is, my god.

    No link. TV coverage - NHK World.




    AlBDamned
    Aug 29, 11:39 AM
    Yea they're really credible...:rolleyes:

    Nuc

    This report will be ripped to shreds if there are inconsistencies and to say Greenpeace are targeting Apple and not Dell for some corrupt reason is slightly pathetic.

    And, one of the main gripes was Apple's refusal to give specifics on machine "ingredients", which is a bad move for a company that wants to be socially responsible.

    Apple's spokesman is also a bit misguided when he says Apple has led the industry in reducing toxic chemicals from its products. A) It might be true in a couple of instances, but other companies (such as Nokia and Fujitsu Siemens) have actually done a hell of a lot more - especially in their European facilities. B) It's also a lot easier to do this when your product line totals around 5 computers, a few screens and a music player.

    Remember Apple's iPod factory report? That has been criticised as being a shadow of the truth and glossing over ugly truths and missing out key details. So what makes you think that Apple is all goodness?

    Yes it offers recycling in the US but does it offer it in the UK? No - but it will do come April next year because it will be forced to.

    And why can UK users no longer buy iSights or Airport express base stations from Apple? Because new laws have come in restricting the use of hazardous substances in products. Sadly, Apple hasn't pulled its finger out and replaced those products with more environmentally friendly products.

    Apple is not perfect, neither is Greenpeace. But look a little deeper and you'll have a better understanding of the story. Companies are taking this report seriously and it's rocking the industry. That's because companies do, or are beginning, to take the actual issue seriously. Apple's fast but weak response is testament to that and it once again demonstrates they have a lot of work to do on this front - despite their claims.




    arkitect
    Apr 15, 11:27 AM
    Sorry, getting tough to keep track of who I'm quoting here. ;)

    Well please don't mis attribute that vile anti-gay message to me.
    Thanks.




    jmcrutch
    Mar 18, 11:49 AM
    AT&T can do whatever they want to.

    The tethering charge is out there right now because of the unlimited data option. It's there to screw with the status quo.

    Verizon is getting rid of their unlimited, as AT&T already did.


    A fair system would be $5/GB, tethering permitted. Pay for what you eat.

    But then, a competitor would come out with an unlimited option to try to attract customers; and eventually be in the same boat.


    Basically it comes down to "pay for what you eat" or "fixed rate with limitations." There really isn't another viable option that I see.




    Sounds Good
    Apr 5, 04:46 PM
    Hi guys,

    I realize that this is a Mac forum, so chances are good that everyone here is happy with their decision to switch from Windows to Mac. But since there's no sub-forum on a Windows forum called "I tried a Mac but didn't like it" I'll ask here. :)

    As someone that has used Windows since before Windows (DOS) and has never used a Mac, what might I NOT like about it?

    What might be uncomfortable or difficult?

    What major learning curves should I expect? Etc., etc...


    I'm sure you get what I'm asking here ;) so please share whatever info you can.

    Thanks in advance!




    ddtlm
    Oct 10, 07:55 PM
    javajedi:

    Yes, the JVM is the deciding factor here. If the Java takes that damn long on a G4 but goes fast on a P4, can can rest assured that the JVM Apple is distributing sucks compared to whatever one the x86 machines are using.

    There is no way in heck that the performance delta can be so large without a large difference in quality of JVM. G4's may be slower, but they are not as slow as those number indicate.

    Like I've been saying, when you start to see 5x leads by the PCs you need to start asking questions about the fairness of the benchmark. The G4 is better than 1/5 the speed. There are very few things were a P4 can get better performance per clock than a G4.

    BTW:
    Your G3 results as bizzarre as well, because of the contrast between them and the G4 results. Do not take it as proof one way or the other of the G3 or other IBM chips being superior to the G4. What we have here are raw numbers that defy a simple explanations. We should ask why these numbers are popping up, rather than running off with them as if they were uttered by a great voice in the sky or somthing.



    No hay comentarios:

    Publicar un comentario