Howtos
Stuffs that are worth to mention and worth to know
Howto enable ssl and create self-signed ssl certificate
Enable ssl In my case it was simple. I just ran this line a2enmod ssl Generate self-signed ssl certificate Solution: http://www.akadia.com/services/ssh_test_certificate.html Just follow instruction carefully. Make sure that i step 2 you need to enter a correct “Common Name”, ie your domain. Step 5 and 6 also different for different ...
http://howto.isgoodness.com/2009/11/howto-enable-ssl-and-create-self-signed-ssl-certificate/
Enable ssl In my case it was simple. I just ran this line a2enmod ssl Generate self-signed ssl certificate Solution: http://www.akadia.com/services/ssh_test_certificate.html Just follow instruction carefully. Make sure that i step 2 you need to enter a correct “Common Name”, ie your domain. Step 5 and 6 also different for different ...
http://howto.isgoodness.com/2009/11/howto-enable-ssl-and-create-self-signed-ssl-certificate/
How to set default OS in boot.ini
This is a boot setup for Microsoft Windows XP Professional and Ubuntu (wubi) where we have Windows XP as default and will be preselected on start of computer. This content can be found in c:\boot.ini (be aware this is a hidden system file). [boot ...
http://howto.isgoodness.com/2009/11/how-to-set-default-os-in-boot-ini/
This is a boot setup for Microsoft Windows XP Professional and Ubuntu (wubi) where we have Windows XP as default and will be preselected on start of computer. This content can be found in c:\boot.ini (be aware this is a hidden system file). [boot ...
http://howto.isgoodness.com/2009/11/how-to-set-default-os-in-boot-ini/
Howto use vnkeys with TextField
vnkeys is originally designed to work with flash.text.TextField and you can feel it when typing. The replacement happens smoothly. It is easy to use and the code bellow will explain how to… package { import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldType; import ...
http://howto.isgoodness.com/2009/11/howto-use-vnkeys-with-textfield/
vnkeys is originally designed to work with flash.text.TextField and you can feel it when typing. The replacement happens smoothly. It is easy to use and the code bellow will explain how to… package { import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldType; import ...
http://howto.isgoodness.com/2009/11/howto-use-vnkeys-with-textfield/
How to bootstrap, autoload modules and classes with Zend framework
This post is for you that have read this quick start from Zend and our goal is to create a bootstrap like this one. We assume that you know how to create a project, layout, module, controller and action by using zf.bat, zf.sh or manually and further that you are able to create a helloworld
http://howto.isgoodness.com/2009/11/how-to-bootstrap-autoload-modules-and-classes-with-zend-framework/
This post is for you that have read this quick start from Zend and our goal is to create a bootstrap like this one. We assume that you know how to create a project, layout, module, controller and action by using zf.bat, zf.sh or manually and further that you are able to create a helloworld
http://howto.isgoodness.com/2009/11/how-to-bootstrap-autoload-modules-and-classes-with-zend-framework/
How to install a .deb file
To install package called package.deb type the following command (make sure that all dependencies are installed) sudo dpkg -i /path/to/folder/package.deb
http://howto.isgoodness.com/2009/11/how-to-install-a-deb-file/
To install package called package.deb type the following command (make sure that all dependencies are installed) sudo dpkg -i /path/to/folder/package.deb
http://howto.isgoodness.com/2009/11/how-to-install-a-deb-file/
How to provide users options to switch on/off when using vnkeys
The goal of this post is to show how we can create a radio button group so users can switch on and off when using vnkeys as the swf above. To create TextArea and TextInput we use input components that follows vnkeys (see this how to for details). Bellow is our code example where we
http://howto.isgoodness.com/2009/10/how-to-provide-use-options-to-switch-onoff-when-using-vnkeys/
The goal of this post is to show how we can create a radio button group so users can switch on and off when using vnkeys as the swf above. To create TextArea and TextInput we use input components that follows vnkeys (see this how to for details). Bellow is our code example where we
http://howto.isgoodness.com/2009/10/how-to-provide-use-options-to-switch-onoff-when-using-vnkeys/
how to use vnkeys with flex
In the package org.vnmedia.flex we find two subclasses of Flex controls class. FlexTextInput is extending TextInput and FlexTextArea extending TextArea. Those two inherit all functionalities from their parent. We just added some more code handling the typing since TextInput and TextArea behaves unlike TextField. It is simple to use. You just ...
http://howto.isgoodness.com/2009/10/how-to-use-vnkeys-with-flex/
In the package org.vnmedia.flex we find two subclasses of Flex controls class. FlexTextInput is extending TextInput and FlexTextArea extending TextArea. Those two inherit all functionalities from their parent. We just added some more code handling the typing since TextInput and TextArea behaves unlike TextField. It is simple to use. You just ...
http://howto.isgoodness.com/2009/10/how-to-use-vnkeys-with-flex/
How to type vietnamese with VNI input method that is implemented in vnkeys
Bellow is a table on how to hit the keyboard (left hand side) to get the vietnamese letter (right hand side) VNI => Vietnamese a1 => á a2 => à a3 => ả a4 => ã a5 => ạ a6 => â o7 => ơ a8 => ă d9 => đ We do not implement all possible ways to type a vietnamese word. Example, there are
http://howto.isgoodness.com/2009/10/how-to-type-vietnamese-with-vni-input-method-that-implemented-in-vnkeys/
Bellow is a table on how to hit the keyboard (left hand side) to get the vietnamese letter (right hand side) VNI => Vietnamese a1 => á a2 => à a3 => ả a4 => ã a5 => ạ a6 => â o7 => ơ a8 => ă d9 => đ We do not implement all possible ways to type a vietnamese word. Example, there are
http://howto.isgoodness.com/2009/10/how-to-type-vietnamese-with-vni-input-method-that-implemented-in-vnkeys/
How to implement singleton pattern in actionscript 3
In actionscript 3 one can not use private scope for constructor and you need a workaround to implement simgleton pattern. Following is one way that I use package { public class Singleton { private static var instance:Singleton; private static var isAllowedInstance:Boolean; public function Singleton() { if ...
http://howto.isgoodness.com/2009/10/how-to-implement-singleton-pattern-in-actionscript-3/
In actionscript 3 one can not use private scope for constructor and you need a workaround to implement simgleton pattern. Following is one way that I use package { public class Singleton { private static var instance:Singleton; private static var isAllowedInstance:Boolean; public function Singleton() { if ...
http://howto.isgoodness.com/2009/10/how-to-implement-singleton-pattern-in-actionscript-3/
How to get svn revision in ant using svn or svnversion
This article is aimed to you whom use svn in linux environment. If you are using windows and Tortoise this post may be more interesting. Here are two ways to get revision number when you build your project. The first one is a complete method to get this number and the second one will give you
http://howto.isgoodness.com/2009/10/how-to-get-svn-revision-in-ant-using-svn-or-svnversion/
This article is aimed to you whom use svn in linux environment. If you are using windows and Tortoise this post may be more interesting. Here are two ways to get revision number when you build your project. The first one is a complete method to get this number and the second one will give you
http://howto.isgoodness.com/2009/10/how-to-get-svn-revision-in-ant-using-svn-or-svnversion/