Recent Updates RSS Toggle Comment Threads | Keyboard Shortcuts

  • _mark 5:57 pm on February 4, 2010 Permalink | Reply
    Tags: , , , , , , , , Linux, , , , Ubuntu,   

    Linux Ubuntu & Adobe Flash Works for Me! 

    Linux Ubuntu Running 2 Complex Flash RIA’s, 2 Adobe HD Videos, PLUS this picture!!! (Flash Player 10.0)
    On an 8 year old 2.2GHZ P4! Please Take Note of the CPU Data. Verdict: Flash works great on Linux!
    Websites in the Screenshot : theturn.tv | g.ho.st | hulu | facebook | sumopaint | donkey

     
    • Ad 10:23 am on February 5, 2010 Permalink | Reply

      Haha try that test again, on a 1Ghz netbook (even with non-HD). Watch the video stutter and freeze, and your CPU fans drown out the audio.

      Repeat test using the YouTube HTML5 opt-in, and the web becomes usable again, and CPU drops to 50%. Just because your PC is 8 years old does not mean it is the lowest spec PC being used to access the web. With the proliferation of small devices, the incredible inefficiency of Flash which has been masked by high-spec PCs becomes apparent.

      Competition is good. Why are Adobe releasing Flash 10.1? Because they have become painfully aware that their product cannot survive on burgeoning netbook/slate/smartphone market which has ‘just enough’ processing power. Either Adobe will improve performance of Flash, or HTML5 will win out. Either way we all benefit – denying there is a problem helps no-one.

      • _mark 11:09 pm on February 5, 2010 Permalink | Reply

        The point of the test was to try to get Flash to crash. It did not! I tried more CPU load previous to this screenshot like nearing 100% for quite a long time and Flash never crashed. The test wasn’t to get it all to run smoothly.

        Flash Player 10.1 (currently beta 2) has made improvements on CPU Load and utilizes the GPU Pipeline in Windows and will probably be made available in Linux as well (Apple is currently uncertain). You can download the beta at Adobe Labs.

        you’re right, competition is good!

    • filipka 11:07 am on February 6, 2010 Permalink | Reply

      Software crashes because of bugs, not because of CPU load.

      Verdict should be:
      Flash works great on Linux!
      But fully loads CPU, eats all ram + half of swap, and not smoothly.

      • _mark 11:32 am on February 6, 2010 Permalink | Reply

        This wasn’t to show how crappy the computer performs, on a new CPU it obviously would not have performed like this. I’m running RIA’s designed for the latest multi-core processors.

        I’ve just been on a mission lately to see if I could get Flash Player to crash like so many have claimed lately using Mac and Linux going to mainstream sites like hulu, facebook etc. Pretty much the people who claim it happens say it happens all the time, while the rest don’t experience this and say they never have problems. Do you have any insight / theories as to why this is such a split demographic?

  • _mark 9:40 pm on February 3, 2010 Permalink | Reply
    Tags: , , , , , , , , , , , , ,   

    Mac OSX & Adobe Flash Works for Me! 

    Mac OSX Running 7 Complex Flash RIA’s, 2 Adobe HD Videos, & Google Street. My conclusion, It works great!
    Websites in the Screenshot : sumopaint | aviary | prezi | splashup | soundation | hulu | hboimagine | googlestreet

     
  • _mark 10:17 am on February 3, 2010 Permalink | Reply
    Tags: , , , , iPod, iPod Touch, , , Puppet, Steve Jobs, , Walt Mosspuppet   

    Interview with Steve Jobs.. 

     
  • _mark 7:32 am on February 3, 2010 Permalink | Reply
    Tags: Best Search Engine, Bing, , Search Engines, Search3,   

    Why Google is better than Bing 

    Take a simultaneous look at this search string in Google, Twitter and Bing (on search3) :

    _mark

    As you can see, the relevancy of the search results in Bing aren’t accurate at all. Why? Because apparently Bing thought it would be ok to toss out part of the search string (in this case the underscore). How dumb. A simple thing that M$ has failed at and the reason that the results I get in Bing are always irrelevant in my experience. This is why I’ve dubbed Bing as the ‘Old Lady Search Engine’.

    Because in their effort to simplify the results, they’ve actually made it useless.

     
  • _mark 9:03 pm on February 1, 2010 Permalink | Reply
    Tags: , Android, , Dell, , , , , Mini 5   

    Move over Apple, Google’s Coming. 

     
  • _mark 11:26 pm on December 12, 2009 Permalink | Reply
    Tags: Chrome, Chrome Portable, Chrome Update Problem, Chrome Updater, , Standalone Updater   

    Google Chrome Force Update (Standalone EXE) 

    Are you having problems updating your Chrome using the standard method? Do you want to update it to any available build (dev beta or release) on the fly? Download my Chrome Updater and simply place it in the same root directory (folder) as your Chrome.exe / ChromeLoader.exe and RUN IT!

    NOTE: You cannot have Chrome running while you update it.

    This works with the portable version of Chrome and should work on the standard installed version as well but is untested on the standard installed version. Feedback is welcome.

    Chrome Standalone Updater.exe: EXE DOWNLOAD
    Chrome Standalone Updater.zip : ZIP DOWNLOAD (right click, save link as)

    Portable Chrome Developer 4.0223.11 (No Install, Just Run It!) : PORTABLE CHROME (right click, save link as)

     
  • _mark 12:49 am on December 7, 2009 Permalink | Reply
    Tags: Coder, CoderGirl, Girl, Rap,   

    Coder Girl 

    Feels like my first Hello World! She’s My Coder Girl!

     
    • Creaccalo 5:20 am on December 12, 2009 Permalink | Reply

      Excellent blogpost, great looking blog, added it to my favorites!!

      • _mark 6:08 am on December 12, 2009 Permalink | Reply

        Thx! Check out my twitter (right sidebar) for more coding stuff! Twitter: _mark

  • _mark 8:46 am on November 5, 2009 Permalink | Reply
    Tags: Javascript, substr, substring, Substrings   

    Substrings in Javascript with substring() 

    How to use String.substring(start, to)

    The old method substr() is deprecated so screw that. The preferred method is to now use substring().

    (start,to) arguments explained:

    start – This is the position to start extracting the string from.   Zero based, so the first character is 0, then 1 and so on.

    to – This is the position to copy to and should obviously be greater than start.   It does not include the character at to. So, if to is the same as start then nothing will be returned. If to is not present then the rest of the string from start is returned.

    The examples below use the following string.

    var s = "abcdefghij"

    The first example returns the characters from positions 5 to 6. Remember that the string is zero indexed so the character at position 5 in the above string is “f”

    s.substring(5, 7); // returns "fg"

    The second example returns the characters from 5 to the end of the string:

    s.substring(5); // returns "fghij"

    The next example returns the characters from positions 0 to 4 (i.e. 5 characters in total):

    s.substring(0, 5); // returns "abcde"
     
  • _mark 5:47 am on October 20, 2009 Permalink | Reply
    Tags: Browser Tweak, Chrome Beta, Chrome Developer, Chrome Secrets, Chrome Tips, , Google Chrome Under the Hood, Hidden Chrome Feature, Stats for Nerds   

    Google Chrome Tip #1 – about:commands (stats for nerds) 

    As most Web Developers know by now, Google Chrome is THE browser to develop in. It had a bit of a rocky start (for instance the PNG transparency bug), but it really wasn’t too rocky compared to other browsers (IE8, still a total mess, is riddled with bugs & security issues). Usually anything Google touches eventually turns to Gold and Chrome is no exception to that rule. Fast, Smart, Efficient and just plain Cool. So what’s going on backstage in the Chrome browser? Much like 2 other great browsers (Firefox and Opera), Google Chrome is not at all afraid to let you see. So, if you’re an Uber Geek, Web Guru, Developer, or a just a Curious Monkey, you will want to eventually have a peek into some of those nerd stats. Just type these operator:commands into the browser address bar :

    about:memory
    This command will analyze the memory Chrome and each tab.

    about:dns
    Displays the name resolution, including performance.

    about:histograms
    This displays the various performance measures browser.

    about:plugins
    For now, Chrome does not have a formal mechanism for developers to graft extensions.But this mechanism will be in future versions ..Especially since the browser actually already supports extensions like Gears, DivX, Flash, Acrobat, Quicktime and ActiveX. Extensions revealed by this command.

    about:stats
    This command reveals much of the inner workings of the browser. It displays the current performance of different modules that make up Chrome and allows to study the performance of the browser more closely (or compare the differences in speed Chrome on two different machines).

    about:network
    Very useful for Web developers and network administrators, this command will trace the network activity of a tab and display graphics performance to measure the load time of the various elements.

    about:ver
    This command specifies the version number and build number of Chrome.

    about:crash
    This command simulates a crash of the Web application and therefore the current tab. It can discover the error message displayed by Chrome when such incidents arise.

    about:internets
    It is the easter egg (Easter egg surprise Chrome).

     
  • _mark 11:30 pm on October 6, 2009 Permalink | Reply
    Tags: 140 character limit, 160 characters, Bypass Twitter Limit, Tweet More, , Twitzer   

    Twitter Tip #1 – Twitzer (160 characters) 

    I’ll tell you about a little secret with twitter. You can tweet more than 140 characters (160 to be exact) !
    Just use this little Firefox extension : Twitzer, or alternatively on Mozilla’s Addon Page : Mozilla Addons.

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
esc
cancel