Content

floating like water…

jQuery.tmp – A jQuery Template Plugin

Sunday 8 August 2010 - Filed under Web Developer' s Kung-Fu

jQuery.tmp Level 1 - Static Html

Load a Template from static Html Javascript String.

Html Source

<div class="s1"></div> 
<div class="s1"></div>		

Javascript Source

$('.s1').tmp('<span>Template from static Html...</span>');

Load a Template from static Html Javascript String with context data.

(more...)

Related posts

Vote this page

Tagged: » »

1 comment  ::  Share or discuss  ::  2010-08-08  ::  sa

Define a Masterpage in Python

Tuesday 31 August 2010 - Filed under Web Developer' s Kung-Fu

This is my implementation of a Masterpage like solution in Python. (more...)

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-31  ::  sa

Virtual Ubuntu on Windows

Sunday 22 August 2010 - Filed under docs + free

This Post shows how to install Ubuntu on VirtualBox. (more...)

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-22  ::  sa

Virtualization of Operating Systems

Sunday 22 August 2010 - Filed under free

VirtualBox is a powerful virtualization product for many operating systems and it is free. So its a good alternative to VMWare or VirtualPC. (more...)

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-22  ::  sa

Freeware Audio Solution

Saturday 21 August 2010 - Filed under free

Audacity: http://audacity.sourceforge.net/ to edit audio files. wav2mp3: http://lame.buanzo.com.ar/ to create MP3 from Wav File. Audacity (Platformindependent Audioeditor) - LAME MP3 Codec.

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-21  ::  sa

jQuery goes mobile

Saturday 21 August 2010 - Filed under english

It is nice to know that jQuery will come on different Mobile devices such as iPad, iPhone, Palm and Android.
source: http://jquerymobile.com/
Take a look at http://jquerymobile.com/

Related posts

Vote this page

Tagged: » » » » »

 ::  Share or discuss  ::  2010-08-21  ::  sa

CSS Sprites

Sunday 15 August 2010 - Filed under Web Developer' s Kung-Fu + more skills

Using Css Sprite in Web Development can improve significantly your page load speed.

Parts of a big Image via Css background-position

How does it work?

The Image

Html Source Code

<div id="spriteSample">
<ul>
	<li class="chrome"></li>
	<li class="opera"></li>
	<li class="safari"></li>
	<li class="ie"></li>
	<li class="firefox"></li>
</ul>
</div>

Css Source Code

<style>
#spriteSample li{
	background: url('/blg/wp-content/uploads/sprite-browsers.png') no-repeat top left;
	float:left;margin-right:10px;font-weight:bold;font-size:22px;color:#002EB8;
	list-style: none;border:solid #000 1px;margin:5px !important;margin-left:0px;
}
#spriteSample .chrome { background-position: 0 0; width: 64px; height: 64px; } 
#spriteSample .firefox {background-position: -69px 0; width: 64px; height: 64px; } 
#spriteSample .ie { background-position: -138px 0; width: 64px; height: 64px; } 
#spriteSample .opera { background-position: -207px 0; width: 64px; height: 64px; } 
#spriteSample .safari { background-position: -276px 0; width: 64px; height: 64px; } 
</style>

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-15  ::  sa

jQuery.simpleEdit

Sunday 15 August 2010 - Filed under Web Developer' s Kung-Fu

This jQuery Plugin extends a Html TextArea Element so that it can handle Tab and Alt+Tab keypress events. It can be usefull to edit and format HTML Code. (more...)

Related posts

Vote this page

 ::  Share or discuss  ::  2010-08-15  ::  sa

Cool Online Webdeveloper Tools

Saturday 14 August 2010 - Filed under Web Developer' s Kung-Fu

Online Tools

do your work in the browser

Uncategorized browser tools

  • Colorpicker
    http://www.colorschemer.com/online.html
    Here you pick realy nice Colors.
  • Compress & Obfuscate JavaScript / CSS Compressor
    http://yui.2clics.net/
    The YUI Compressor online
  • Binary File to Base64 Encoder / Translator
    http://www.greywyvern.com/code/php/binary2base64
    Use this tool to create data streams for embedding images (or any type of file) in (X)HTML, CSS and XML.
  • CSS Sprite Generator
    http://spritegen.website-performance.org/

    • Chrome
    • Opera
    • Safari
    • Internet Explorer
    • Firefox
    (more...)

    Related posts

    Vote this page

     ::  Share or discuss  ::  2010-08-14  ::  sa

    yuicompressor Found an undeclared symbol: $

    Friday 13 August 2010 - Filed under docs

    YUI Compressor is one of the most known Javascript code obfuscator and minimizer.
    (more...)

    Related posts

    Vote this page

     ::  Share or discuss  ::  2010-08-13  ::  sa