André Abt - Music & Web Development

Hello & welcome to my blog.

„It's all about the music & web development”

  • Jul28

    IETester is a free WebBrowser that allows you to have the rendering and javascript engines ofIE9 preview, IE8, IE7 IE 6 and IE5.5 on Windows 7, Vista and XP, as well as the installed IE in the same process. You can extend it with “DebugBar” from the same guys – this way its finally possible to have something like FireBug for IE6. I use it every day and it rocks.
    http://www.my-debugbar.com/wiki/IETester/HomePage

    • Share/Bookmark
  • Jul26

    Beeing a fisherman myself, i really love the photos from Graham Owen. Check them out on: http://www.grahamowengallery.com/fishing/underwater.html

    • Share/Bookmark
  • Mar11

    At default, Mac Osx uses “Sfr.” as the currency symbol for swiss francs. This causes troubles because of the dot  in some applications. As Example in Billings, one of my favorite apps to do invoicing.

    To change the currency symbol on Mac Os X 10.6 open a terminal and type:

    defaults write .GlobalPreferences AppleICUNumberSymbols -dict 0 ‘.’ 1 ‘.’ 10 ‘,’ 8 ‘CHF’

    press enter and done.

    • Share/Bookmark
  • Feb12

    iProcessing is an open programming framework to help people develop native iPhone applications using the Processing language. It is an integration of the Processing.js library and a Javascript application framework for iPhone.

    http://luckybite.com/iprocessing/

    • Share/Bookmark
  • Jan13

    The ultimate geek toy. A iPhone controlled quadrocopter with with onboard VGA cams.

    iphone controlled quadrokopter

    • Share/Bookmark
  • Jan7

    Finally possible! Debugging with Internet Explorers 1(!) to 8, co-exists. Including IE Developer Toolbar!

    http://finalbuilds.edskes.net/iecollection.htm

    • Share/Bookmark
  • Nov28

    After more than two years I recently changed my IDE from Aptana (www.aptana.com) to Sun’s NetBeans for PHP 6.8 Beta.

    The Aptana guys discontinue development of their own PHP Plugin and advice to use PDT, witch is a step backward in my opinion.

    I quickly felt in love with NetBeans. Overall look and feel is great! Features I don’t want to miss anymore including the fantastic search function, CVS Support with a real userfriendly “Diff”, FTP Support, code completion and doc for jQuery and other javascript libraries, support for Unit Tests and many more. The best thing is the workflow and speed. It feels much faster than any Eclipse based IDE. NetBeans is available for Java, Ruby C/C++ as well. Best of all, its free – so give it a try!

    http://netbeans.org

    • Share/Bookmark
  • Oct9

    Is Touch Arcade. This guys review tons of cool games  you would never find over the App Store, especially if you are like me and just check the top ten of free and payed apps. Apart from that you get youtube video presentations of most the games.

    http://toucharcade.com/

    • Share/Bookmark
  • Oct8

    Lately I run into a annoying jQuery problem. The solution to prevent animation queue buildup is maybe known and documented here. However this dosen’t seems to work if you use two animation functions, where one function is triggering the next on callback. In my case it was a menu box with a titlebar and a body area. On hover the title bar fades in (function1:  show(300) ), then the bodyarea rolls down (function2 on callback from function1: rollDown(300) ).  Now if you hover over and out quickly, it seems that jQuery “remembers” the last stat of the animation. So in the whorst case, the body area is 1px in height and stays in that size. The workaround after five hours of trial and error with different combinations of stop(tru, false) – stop (false, true) was to use not the premade functions like show(), rollDown() etc.  It seems that the stop() function is working different on the animate() function.  So I used this and manual created the needed animations.

    Download the full example with everything here

    Checkout the finished js code:

    Used jQuery Version: 1.3.2

    
    <script type="text/javascript">
    
    $(document).ready(function() {
    
    //slide in&out
    $(".infobox_wrapper img")
    .hover(function() {
    $(this).nextAll().stop(); //stop running animations befor new animation
    
    $(this).nextAll("h2").animate({ opacity: "1" }, 300, function() {
    $(this).nextAll(".infobox_text").animate({ height: "220", opacity: "1"  }, 300);
    });
    
    }, function() {
    $(this).nextAll().stop(); //stop running animations befor new animation
    
    $(this).nextAll(".infobox_text").animate({ height: "0", opacity: "0" }, 300, function() {
    $(this).prevAll("h2").animate({ opacity: "0" }, 300);
    });
    });
    });
    </script>
    
    • Share/Bookmark
  • Oct7

    One of my favorite guitar players. Michael Dowdle began his professional career as a studio guitarist in 1979. Since then he has recorded thousands of sessions for artists and companies averaging approximately 250 sessions a year in all styles of music.

    http://www.michaeldowdle.com/

    • Share/Bookmark