Degree, ie 45o
<fo:character character="o" baseline-shift="super" font-size="5pt" /&...
Thursday, August 29, 2013
Wednesday, August 28, 2013
XSLT - Resize External Graphic
Resize External Graphic
<fo:external-graphic
src="s\image.png"
content-height="scale-to-fit"
height="2.00in"
content-width="2.00in"
scaling="non-uniform"/>
Or
<xsl:attribute-set name="googleMap">
<xsl:attribute name="height">2.50in</xsl:attribute>
...
Tuesday, August 13, 2013
Starling Framework
Starling is a pure ActionScript 3 library for Adobe Flash.
It recreates Flash's display list architecture on the GPU — providing a performance unlike anything before!
Starling runs in the browser and on all major mobile platforms, like iOS and Android.
Website:
http://gamua.com/ ...
JavaScript - add event listener or unbind listener
Unbind Click Listener
$("#plus").unbind('click');
$("#minus").unbind('click');
Register Click Listener
$("#plus").click(function();
...
Thursday, August 8, 2013
Protect Website in Linux Hosting
1. Thứ nhất¶
Thư mục gốc của website (và các thư mục con bên trong) đang được phân quyền với chmod=750 và 755, các file php là chmod=644, với quyền trên các items này là rất kém bảo mật, các website khác hoàn toàn có thể thấy được và đọc được nội dung (code) của các file php.
2....
JavaScript - Determines whether a value is an illegal number
The isNaN() function determines whether a value is an illegal number (Not-a-Number).
This function returns true if the value is NaN, and false if not.
Syntax
isNaN(value)
Example
Example
Check whether a number is an illegal number:
<script>document.write(isNaN(123)+ "<br>");document.write(isNaN(-1.23)+...
Eclipse - Uninstall Plugin

How do I remove a plug-in?
You should not remove plug-ins from Eclipse. Plug-ins should be installed as features using the Update Manager. The same Update Manager can be used to disable...
Wednesday, August 7, 2013
Eclipse - UML Pluggin

If you're a designer then Papyrus
is your best choice it's very advanced and full of features, but if you
just want to sketch out some uml diagrams and easy installation then ObjectAid is pretty cool...