<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>OSIFY - Technologies by favorites</title>
	<atom:link href="http://osify.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://osify.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 13:02:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Matters of Women in IT Industries</title>
		<link>http://osify.com/2012/05/matters-of-women-in-it-industries/</link>
		<comments>http://osify.com/2012/05/matters-of-women-in-it-industries/#comments</comments>
		<pubDate>Thu, 17 May 2012 11:05:26 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Matters of Gender]]></category>
		<category><![CDATA[Women in IT]]></category>

		<guid isPermaLink="false">http://osify.com/?p=1309</guid>
		<description><![CDATA[Women is suitable for software development or other tech. analysis in terms of their straight, deep concentrated and patient in their personalities. They could do better analyze on the problem, they read carefully on provided functional specification and their detail feedback. Of course, sometimes they refer on their mood and a bit sensitive, that's their nature and also the situation may different by culture as well.]]></description>
			<content:encoded><![CDATA[<p>Not only in Cambodia, all over the world, women who works for IT industries or IT department are few is comparing to men. According to <a href="http://www.techrepublic.com/blog/cio-insights/women-in-the-it-department-why-the-shortage-matters/39748684?tag=nl.e101" target="_blank">TechRepublic.com</a> found that more women found in non-technical roles such as business analysis and training.</p>
<blockquote><p>The survey found similar <a href="http://www.techrepublic.com/blog/programming-and-development/it-gender-gap-where-are-the-female-programmers/2386?tag=content;siu-container">under-representation of women in tech roles</a>. A quarter of CIOs admitted they have no women in their technical teams while half of CIOs said they only had one woman on the tech team.</p></blockquote>
<p>In Cambodia, at University, Computer Science major, we could see only few women in the class among 50 students. After finishing university, there are not so many of them keep working in IT department longer than 3 years. Most of them, attended more than 2 universities, that&#8217;s per my experience while passing through different IT event in Cambodia.</p>
<p>IT positions in Cambodia, mostly we can see as following:</p>
<ul>
<li>Software Developer (PHP, C#.Net, Java, Ruby etc.)</li>
<li>Database Administrator (MS SQL Server, Oracle)</li>
<li>Web Developer/Designer (with framework, CSS, HTML etc.)</li>
<li>Network Administrator/Support</li>
<li>etc.</li>
</ul>
<p>Most companies in Cambodia, they encourage women to work with them if we read most of the job recruitment but it seems not so many of them applied, especially to Software development industries. Of course, through the announcement, that&#8217;s kind of one encouragement for women in Cambodia but in real situation, if they really accept women for this kind of works, remaining unclear for me.</p>
<p>Per my perspective, women is suitable for software development or other tech. analysis in terms of their straight, deep concentrated and patient in their personalities. They could do better analyze on the problem, they read carefully on provided functional specification and their detail feedback. Of course, sometimes they refer on their mood and a bit sensitive, that&#8217;s their biology and also the situation may different by culture as well.</p>
<p>Women should work in functional analysis for software development, designing, website development, technical document writer, tester, training, database programming (SQL), mobile application development or business software consulting etc.</p>
<p><strong>Do you agree?</strong></p>
<p>So to make sure if my assumption could be right or wrong, let share your idea on this matter in the comment and vote on the survey below:</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/05/matters-of-women-in-it-industries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle PLSQL &#8211; Function to Spelling Number to other language automatic</title>
		<link>http://osify.com/2012/05/oracle-plsql-function-to-spelling-number-to-other-language-automatic/</link>
		<comments>http://osify.com/2012/05/oracle-plsql-function-to-spelling-number-to-other-language-automatic/#comments</comments>
		<pubDate>Tue, 15 May 2012 06:42:30 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PLSQL]]></category>

		<guid isPermaLink="false">http://osify.com/?p=79</guid>
		<description><![CDATA[You might face the same issue to me when you want to spell number to text in different language than English. Here is the solution I asked in StackOverflow and made together with the one who initialized this idea, it&#8217;s kind of a great idea you may want this experience. We used Yahoo Babelfish translation [...]]]></description>
			<content:encoded><![CDATA[<p>You might face the same issue to me when you want to spell number to text in different language than English.</p>
<p>Here is the solution I asked in StackOverflow and made together with the one who initialized this idea, it&#8217;s kind of a great idea you may want this experience.</p>
<p>We used Yahoo Babelfish translation service to translate our converted English spelling number to Italian and you can try this kind of method for any other language that exists in babelfish, check it out from here:</p>
<pre class="brush: sql; gutter: true">CREATE OR REPLACE FUNCTION Currency_conversion(currency IN NUMBER)
RETURN VARCHAR2 IS
    txt varchar2(4000);
    tlum  varchar2(4000);
    babelTxt varchar(32000);
    req   utl_http.req;
    resp  utl_http.resp;
    webtext VARCHAR2(4000);
    webextract VARCHAR2(4000);
BEGIN
      tlum:=NULL;--used for multiple execution in the same session
    -- This is used to convert number to words in english
    SELECT CAST( to_char( to_timestamp( lpad(currency,9,&#039;0&#039;), &#039;FF9&#039; ), &#039;FFSP&#039; ) AS VARCHAR2(100) )
    into txt from dual;

    -- FFSP is used to spell Fraction second in words for example HH24SP
    -- can be used to spell hours from 0 to 23,i used FFSP to get max range
    txt:=translate(txt,&#039;x-&#039;,&#039;x &#039;);

    -- The below logic is taken from
    -- https://forums.oracle.com/forums/thread.jspa?threadID=1122273(and)start=15(and)    tstart=0
    --need to test once
    -- request that exceptions are raised for error status codes
    utl_http.set_response_error_check(enable =&gt; TRUE);
    -- allow testing for exceptions like Utl_Http.Http_Server_Error
    utl_http.set_detailed_excp_support(enable =&gt; TRUE);

    txt:=utl_url.escape(txt);

    babelTxt := &#039;http://babelfish.yahoo.com/translate_txt?doit=done&#039; || &#039;&amp;&#039;   || &#039;lp=en_it&#039; || &#039;&amp;&#039; || &#039;intl=1&#039; || &#039;&amp;&#039; || &#039;ei=utf8&#039; || &#039;&amp;&#039; || &#039;trtext=&#039; || txt;
    req:=utl_http.begin_request(url =&gt; babelTxt, method =&gt; &#039;GET&#039;);
    resp := utl_http.get_response(r =&gt; req);
    BEGIN
        LOOP
            --utl_http.read_text(r =&gt; resp, data =&gt; webtext, len =&gt; 32767);
                utl_http.read_line(r =&gt; resp , data =&gt; webtext);

            webextract := regexp_substr(webtext,&#039;&lt;div id=&quot;result&quot;&gt;&lt;div style=&quot;padding:0.6em;&quot;&gt;(.+)&lt;/div&gt;&lt;/div&gt;&#039;);

            if webextract is not null
            then
                select regexp_replace(webextract,&#039;&lt;div id=&quot;result&quot;&gt;&lt;div style=&quot;padding:0.6em;&quot;&gt;(.+)&lt;/div&gt;&lt;/div&gt;&#039;,&#039;\1&#039;)
                into tlum FROM dual;
            end if;

            exit when tlum is not null;

            END LOOP;
    EXCEPTION
     WHEN utl_http.end_of_body THEN
     NULL;
    END;

    utl_http.end_response(r =&gt; resp);

    return tlum;

    EXCEPTION
        WHEN OTHERS THEN
        dbms_output.put_line(SQLERRM);
        return &#039;&#039;;
END;
/
exit;</pre>
<p>If you want to adopt it to other language, please change this line:</p>
<pre class="brush: actionscript3; gutter: true">babelTxt := &#039;http://babelfish.yahoo.com/translate_txt?doit=done&#039; || &#039;&amp;&#039;   || &#039;lp=en_it&#039; || &#039;&amp;&#039; || &#039;intl=1&#039; || &#039;&amp;&#039; || &#039;ei=utf8&#039; || &#039;&amp;&#039; || &#039;trtext=&#039; || txt;

Example: English to French, changes: lp=en_fr</pre>
<p>Check detail to our discussion at <a href="http://stackoverflow.com/questions/9904994/plsql-to-spell-number-currency-to-italian-currency-without-hardcoded-the-trans" target="_blank">StackOverflow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/05/oracle-plsql-function-to-spelling-number-to-other-language-automatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Hot Keys, You need to aware</title>
		<link>http://osify.com/2012/04/eclipse-hot-keys-you-need-to-aware/</link>
		<comments>http://osify.com/2012/04/eclipse-hot-keys-you-need-to-aware/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 02:50:29 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://osify.com/?p=1207</guid>
		<description><![CDATA[I use Eclipse IDE already for more than 6 years and of course, I won&#8217;t use many shortcut keys for my usage but we should also aware what are the hot keys of Eclipse IDE. Here, I use Eclipse 3.7 (Indigo) to introduce you all as following shortcut keys: All in One Ctrl+Shift+L to get [...]]]></description>
			<content:encoded><![CDATA[<p>I use Eclipse IDE already for more than 6 years and of course, I won&#8217;t use many shortcut keys for my usage but we should also aware what are the hot keys of Eclipse IDE.</p>
<p>Here, I use <a href="http://www.eclipse.org/downloads/" target="_blank">Eclipse 3.7 (Indigo)</a> to introduce you all as following shortcut keys:</p>
<span id="All_in_One"><h2><span style="color: #ff0000;">All in One</span></h2></span>
<ul>
<li><strong>Ctrl+Shift+L</strong> to get a nice list of all the hotkeys, so you might need to remember only this one.</li>
</ul>

<a href='http://osify.com/2012/04/eclipse-hot-keys-you-need-to-aware/eclipse-keys-ctr-shift-l/' title='eclipse-keys-ctr-shift-L'><img width="150" height="150" src="http://osify.com/files/2012/04/eclipse-keys-ctr-shift-L-150x150.jpg" class="attachment-thumbnail" alt="All Eclipse Hot Keys (Ctrl + Shift + L) - Page 1" title="eclipse-keys-ctr-shift-L" /></a>

<span id="Moving_around"><h2><span style="color: #ff0000;">Moving around</span></h2></span>
<p>To work with different window panels, you might need to switch, search file etc. here are the keys you need:</p>
<ul>
<li><strong>Ctrl+J</strong> — Incremental Search (press the hotkeys and type the word you search, it magic !!)</li>
<li><strong>Ctrl+Shift+T</strong> — Search a type, with dynamic search on typing. You can use only the upcase letters (e.g. type “MIL” to find MouseInputListener)</li>
<li><strong>Ctrl+Shift+R</strong> &#8211; Search a resource with dynamic search on typing. Allow to find any file in the workspace (.java, .xml, etc ..)</li>
<li><strong>Ctrl+F6</strong> — Switch between last used files -&gt; change it to alt+q !!!</li>
<li><strong>F3</strong> — Open declaration</li>
<li><strong>Ctrl+Alt+H</strong> — Open Call Hierarchy</li>
<li><strong>Ctrl+K / Ctrl+Shift+K</strong> &#8211; Go to the next/previous occurrence of the underlined word in the editor</li>
<li><strong>Shift+F2</strong> &#8211; Open external javadocs, select an object type and press the hotkey to see the javadoc if configured, try it with the String object ! You can add all API you want in eclipse</li>
</ul>
<span id="Editing"><h2><span style="color: #ff0000;">Editing</span></h2></span>
<p>On the editing panel during your coding, here are the keys you might need to use</p>
<ul>
<li><strong>Ctrl+1</strong> &#8212; Quick Fix: press while cursor is positioned at member variable, parameter, selection, warnings, errors, …</li>
<li><strong>Ctrl+Space</strong> &#8212; Context Assist: press after a ., or to use macros (for, while, sysout, …). Press in class-scope to automatically create method declarations.</li>
<li><strong>Ctrl+Shift+O</strong> &#8212; Organize Imports</li>
<li><strong>Ctrl+Shift+F</strong> &#8212; Reformat source</li>
<li><strong>Alt+BackArrow</strong> and <strong>Alt+ForwardArrow</strong> &#8212; This toggles you back and forth to the files you last had open. Is nice when I&#8217;m drilling down thru code and then coming back up again.</li>
<li><strong>Alt+Shift+T</strong> &#8212; Show Refactor Quick Menu</li>
<li><strong>Alt-Up</strong> and <strong>Alt-Down</strong> &#8212; grab the current line (or all selected lines) and move them up or down</li>
<li><strong>Ctrl-Alt-Up</strong> and <strong>Ctrl-Alt-Down</strong> &#8212; duplicate the current line (or all selected lines) above or below</li>
<li><strong>Ctrl-2</strong> &#8212; has some nice keystrokes available for the Source menu, like ctrl-2, L for create local variable.</li>
<li><strong>Ctrl-M</strong> &#8212; Maximize and minimize the current editor</li>
</ul>
<span id="Come_with_Implementers_plugin"><h2><span style="color: #ff0000;">Come with Implementers plugin</span></h2></span>
<ul>
<li><strong>Alt-F3</strong> &#8212; which takes you to the _implementation_ of the item under the cursor. So instead of taking you to List.add(), it would offer you the choice of ArrayList.add() and LinkedList.add(). If there’s only one choice, it jumps straight to it.</li>
</ul>
<span id="Here_are_the_keys_mostly_I_used"><h2><span style="color: #ff0000;">Here are the keys mostly I used</span></h2></span>
<ul>
<li>Ctrl + Shift + T / Ctrl + Shift + R</li>
<li>Ctrl + Shift + O / Ctrl + Shift + F / Alt + Shift + T</li>
<li>Ctrl + Shift + Y : To Lower Case</li>
<li>Ctrl + Shift + X : To Upper Case</li>
</ul>
<p>How about you?</p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/04/eclipse-hot-keys-you-need-to-aware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WPMU Be careful with Mod_Rewrite</title>
		<link>http://osify.com/2012/04/wpmu-be-careful-with-mod_rewrite/</link>
		<comments>http://osify.com/2012/04/wpmu-be-careful-with-mod_rewrite/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 16:51:50 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ModRewrite]]></category>
		<category><![CDATA[StackOverflow]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://osify.com/?p=1149</guid>
		<description><![CDATA[As stated previously on StackOverflow about osify got stuck because of can&#8217;t add new post or upload new media file after I have configured osify to be a multi-site by using WordPress Multisite. I got following error: Can&#8217;t add new post and got message: Are you sure you want to do this? Please try again [...]]]></description>
			<content:encoded><![CDATA[<p>As stated previously on <a href="http://stackoverflow.com/questions/9905842/wordpress-multisite-are-you-sure-you-want-to-do-this-please-try-again" target="_blank">StackOverflow</a> about osify got stuck because of can&#8217;t add new post or upload new media file after I have configured osify to be a multi-site by using WordPress Multisite.</p>
<p>I got following error:</p>
<ol>
<li>Can&#8217;t add new post and got message: Are you sure you want to do this? Please try again</li>
<li>Can&#8217;t upload any media file, it stucked at &#8220;Crunching…&#8221;, image was in the folder if checked in FTP and permission of folder (755), files (644) are right but image can&#8217;t load on the screen of the media or via post</li>
</ol>
<p>I spent around 2 weeks to search on the net about this issue but got no result after all tries.</p>
<p>Now it has been solved, thanks to <a href="http://stackoverflow.com/users/894076/ipstenu">Ipstenu</a> on <a href="http://stackoverflow.com/questions/9905842/wordpress-multisite-are-you-sure-you-want-to-do-this-please-try-again" target="_blank">StackOverflow</a> who spotted the right issue on Mod_Rewrite of apache that caused the issue.</p>
<p>On my <strong>.htaccess</strong>, I removed:</p>
<pre class="brush: php; gutter: true">#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]

# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]</pre>
<p>And according to the <a href="http://codex.wordpress.org/Multisite_Network_Administration#.htaccess_and_Mod_Rewrite" target="_blank">codex of wordpress</a> for WPMU with subdomain, I should place in <strong>.htaccess</strong> as:</p>
<pre class="brush: php; gutter: true"># BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress</pre>
<p><strong>UPDATED: 11/04</strong></p>
<p>I got error again after last night fix but when I put in my wp-config.php the debug mode:</p>
<blockquote><p>define( &#8216;WP_DEBUG&#8217;, true );</p></blockquote>
<p>I could see there are some errors with DB.</p>
<ul>
<li>I go to my cpanel to repair, optimize the tables/db</li>
<li>I cleanup all unused stuffs in my current site by using: <a href="http://wordpress.org/extend/plugins/wp-cleanfix/" target="_blank">WP CleanFix</a> plugin</li>
</ul>
<p>And since, my site is not put on the root of the server (view by FTP), I added another rewrite rule to be able to see image after upload:</p>
<pre class="brush: php; gutter: true">RewriteRule ^([_0-9a-zA-Z-]+/)?siteN/files/(.+) wp-content/blogs.dir/N/files/$2 [L]</pre>
<p><strong>Note:</strong> siteN = Site Number, N = Site Number as well. In my case, I put my main site: so siteN or N = 1</p>
<p>&nbsp;</p>
<p>(Ref: Issues with old WPMU installs in <a href="http://codex.wordpress.org/Multisite_Network_Administration#.htaccess_and_Mod_Rewrite" target="_blank">wordpress codex</a>)</p>
<p><strong>My final .htaccess</strong>:</p>
<pre class="brush: php; gutter: true"># BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?1/files/(.+) wp-content/blogs.dir/1/files/$2 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress</pre>
<p><strong>UPDATED: 15/05</strong></p>
<p>Occasionally, I met this issue again that led me to recheck on the issue of db error:</p>
<ul>
<li>WordPress database error The table &#8216;*_1_options&#8217; is full for query UPDATE</li>
<li>WordPress database error The table &#8216;*_1_comments&#8217; is full for query INSERT</li>
<li>etc</li>
</ul>
<p>Finally I got an answer because of the Mysql innodb issue at my hosting, thanks to <a href="http://stackoverflow.com/questions/730579/error-1114-hy000-the-table-is-full" target="_blank">this post</a></p>
<p>I solved with this change:</p>
<blockquote><p>innodb_data_file_path = ibdata1:10M:autoextend:max:512M</p></blockquote>
<p>Hope it won&#8217;t happen again but I will keep update the info if any more issue found.</p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/04/wpmu-be-careful-with-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 12 has Khmer localized, Thanks to Firefox Aurora Khmer GROUP</title>
		<link>http://osify.com/2012/03/firefox-12-has-khmer-localized-thanks-to-firefox-aurora-khmer-group/</link>
		<comments>http://osify.com/2012/03/firefox-12-has-khmer-localized-thanks-to-firefox-aurora-khmer-group/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 11:35:36 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Khmer]]></category>
		<category><![CDATA[Khmer Unicode]]></category>

		<guid isPermaLink="false">http://osify.com/?p=1000</guid>
		<description><![CDATA[We haven&#8217;t spent any effort to help the team localized firefox to have Khmer but our thanks is to use it for our daily work to support our friends&#8217; work, Firefox Aurora Khmer. And to promote more usage in Khmer Unicode! We can now try Firefox in Khmer with Firefox 12-beta &#160;]]></description>
			<content:encoded><![CDATA[<p>We haven&#8217;t spent any effort to help the team localized firefox to have Khmer but our thanks is to use it for our daily work to support our friends&#8217; work, <a href="http://groups.google.com/group/mozilla.dev.l10n.km/browse_thread/thread/9c56108488421e0b?pli=1" target="_blank">Firefox Aurora Khmer</a>. And to promote more usage in Khmer Unicode!</p>
<p style="text-align: center;">We can now try Firefox in Khmer with <a href="http://www.mozilla.org/en-US/firefox/all-beta.html" target="_blank">Firefox 12-beta</a></p>
<div id="attachment_1001" class="wp-caption aligncenter" style="width: 550px"><a href="http://osify.com/files/2012/03/firefox-khmer.png"><img class="size-large wp-image-1001" title="firefox-khmer" src="http://osify.com/files/2012/03/firefox-khmer-540x140.png" alt="Firefox in Khmer, Firefox 12" width="540" height="140" /></a><p class="wp-caption-text">Firefox in Khmer, Firefox 12</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/03/firefox-12-has-khmer-localized-thanks-to-firefox-aurora-khmer-group/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Around the info of Updating Android ICS to Galaxy SII</title>
		<link>http://osify.com/2012/03/around-the-info-of-updating-android-ics-to-galaxy-sii/</link>
		<comments>http://osify.com/2012/03/around-the-info-of-updating-android-ics-to-galaxy-sii/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 07:58:37 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Galaxy]]></category>
		<category><![CDATA[ICS]]></category>
		<category><![CDATA[Samsung]]></category>

		<guid isPermaLink="false">http://osify.com/?p=990</guid>
		<description><![CDATA[I&#8217;m waiting as well to update my GSII to Android ICS as around the news, it&#8217;s already coming to some countries already. Let&#8217;s me share all the info around this update.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m waiting as well to update my GSII to Android ICS as around the news, it&#8217;s already coming to some countries already. Let&#8217;s me share all the info around this update.</p>
<div class="wp-caption aligncenter" style="width: 518px"><img class=" " title="Samsung Galaxy SII with ICS" src="http://cdn.pocket-lint.com/images/Fsy2/samsung-galaxy-s-ii-ics-update-0.jpg?20120313-105306" alt="Samsung Galaxy SII with ICS" width="508" height="311" /><p class="wp-caption-text">Samsung Galaxy SII with ICS</p></div>
<script type="text/javascript">
               /*<![CDATA[ */
                setTimeout(function(){live_blogging_poll("990");}, 15000)
               /*]]&gt;*/
               </script><div id="liveblog-990"><div id="liveblog-entry-1320"><p><strong>19-May: 15.55</strong></p><p>Sorry, just back on this topic.</p>
<p>New firmware via Kie, have you tried? I&#8217;m doing it now if it is ICS or not?</p>
<div id="attachment_1321" class="wp-caption aligncenter" style="width: 437px"><a href="http://osify.com/files/2012/05/kie-lp9.png"><img class="size-full wp-image-1321" title="kie-lp9" src="http://osify.com/files/2012/05/kie-lp9.png" alt="Kie - LP9" width="427" height="316" /></a><p class="wp-caption-text">Kie - LP9</p></div>
<div style="width:100%; height:1px; background-color:#6f6f6f; margin-bottom:3px;"></div></div><div id="liveblog-entry-1006"><p><strong>26-Mar: 20.47</strong></p><p>If you can&#8217;t wait the official upgrade ICS in Cambodia for GSII via Kie, you can upgrade manually with XXLPO firmware, see below instruction.</p>
<ul>
<li><a href="http://www.geekscrunch.com/samsung-galaxy-s2-gets-official-ics-4-0-update/" target="_blank">How to update Galaxy S2 officialy with XXLPQ Firmware to ICS Android 4.0.3</a></li>
</ul>
<div style="width:100%; height:1px; background-color:#6f6f6f; margin-bottom:3px;"></div></div><div id="liveblog-entry-997"><p><strong>20-Mar: 19.18</strong></p><p>Until now, we have no news about ICS available in Asia, especially in Cambodia where many of my friends are using GS II. We are exciting to wait, to feel ICS in our hand.</p>
<p>In this week, ICS should be in UK according to the news in <a href="http://www.gsmarena.com/newscomm-3971p4.php" target="_blank">GSMArena</a> but according to the schedule, we should have it <a href="http://www.pocket-lint.com/news/44868/samsung-galaxy-s-ii-ics-update" target="_blank">end of March</a>. Stay tune!!!!</p>
<div style="width:100%; height:1px; background-color:#6f6f6f; margin-bottom:3px;"></div></div><div id="liveblog-entry-995"><p><strong>16-Mar: 15.42</strong></p><p>KTOP said (<a href="http://ktop.com.kh/2012/03/tomorrow-samsung-will-start-android-4-0-3-updates-for-galaxy-s-ii/#.T2LuV3nCZ8E" target="_blank">here</a>):</p>
<blockquote><p>Now Samsung roll out the ICS 4.0.3 for Galaxy S II.</p>
<p>You can get it soon via OTA in Cambodia soon but if you wanna get it now you can visit KTOP.</p></blockquote>
<div style="width:100%; height:1px; background-color:#6f6f6f; margin-bottom:3px;"></div></div><div id="liveblog-entry-992"><p><strong>15-Mar: 16.37</strong></p><p>News:</p>
<ul>
<li>ICS schedule updating, check it out <a href="http://www.pocket-lint.com/news/44868/samsung-galaxy-s-ii-ics-update" target="_blank">here</a></li>
<li>It was arrived to Korean yesterday (14th of Mar): <a href="http://ktop.com.kh/2012/03/tomorrow-samsung-will-start-android-4-0-3-updates-for-galaxy-s-ii/#.T2GiiHnCZ8E" target="_blank">KTOP</a> &amp; <a href="http://www.gsmarena.com/android_40_ics_update_is_now_seeding_for_samsung_galaxy_s_ii-news-3968.php" target="_blank">GSMArena</a></li>
<li>Which mobile companies plan for ICS: visit <a href="http://www.pocket-lint.com/news/42622/ice-cream-sandwich-when-update" target="_blank">here</a></li>
</ul>
<p>The firmware upgrades for Galaxy S, for example, include Face Unlock, Snapshot, Photo Editor and others</p>
<p>&nbsp;</p>
<div style="width:100%; height:1px; background-color:#6f6f6f; margin-bottom:3px;"></div></div></div>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/03/around-the-info-of-updating-android-ics-to-galaxy-sii/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Barcamp Angkor, Siem Reap 24-25 Mar 2012</title>
		<link>http://osify.com/2012/03/barcamp-angkor-siem-reap-24-25-mar-2012/</link>
		<comments>http://osify.com/2012/03/barcamp-angkor-siem-reap-24-25-mar-2012/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 02:22:10 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Barcam Siem Reap]]></category>
		<category><![CDATA[Barcamp]]></category>

		<guid isPermaLink="false">http://osify.com/?p=986</guid>
		<description><![CDATA[Welcome to the first ever event happen in Siem Reap, “BarCamp Angkor” will be held on March 24-25, 2012 in Siem Reap province at Build Bright University. Register, Participate or Take a topic, details visit the site.]]></description>
			<content:encoded><![CDATA[<div id="attachment_987" class="wp-caption aligncenter" style="width: 550px"><a href="http://osify.com/files/2012/03/barcampsiemreap-header.jpg"><img class="size-large wp-image-987" title="barcampsiemreap-header" src="http://osify.com/files/2012/03/barcampsiemreap-header-540x155.jpg" alt="First Barcamp in Siem Reap" width="540" height="155" /></a><p class="wp-caption-text">First Barcamp in Siem Reap</p></div>
<p>Welcome to the first ever event happen in Siem Reap, “BarCamp Angkor” will be held on March 24-25, 2012 in Siem Reap province at <a title="Build Bright University" href="http://www.bbu.edu.kh/sr/" target="_blank">Build Bright University</a><strong>.</strong></p>
<p>Register, Participate or Take a topic, details visit <a href="http://barcampsiemreap.org/" target="_blank">the site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/03/barcamp-angkor-siem-reap-24-25-mar-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unofficial Subscribe to dap-news.com RSS</title>
		<link>http://osify.com/2012/02/unofficial-subscribe-to-dap-news-com-rss/</link>
		<comments>http://osify.com/2012/02/unofficial-subscribe-to-dap-news-com-rss/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 09:42:35 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[dap-news.com]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://osify.com/?p=973</guid>
		<description><![CDATA[I first stated as unofficial subscription as we could not find the RSS link in this website but in term of technology, RSS is embedded in this website already so we can get and use it, unless they remove this feature from their website. Why? I find feed instead of reading directly in the website? [...]]]></description>
			<content:encoded><![CDATA[<p>I first stated as unofficial subscription as we could not find the RSS link in this website but in term of technology, RSS is embedded in this website already so we can get and use it, unless they remove this feature from their website.</p>
<p>Why? I find feed instead of reading directly in the website? Cos it eats to much bandwidth (at least 4mb to load ~ some day) just to load on browser and I think, I do not interest with such advertising without respecting users on the Internet and you might be like me.</p>
<p>If you also want the RSS feed, here they are:</p>
<ul>
<li>Home Page feed: <a href="http://dap-news.com?format=feed&amp;type=rss" target="_blank">http://dap-news.com?format=feed&amp;type=rss</a></li>
<li>Local News feed: <a href="http://www.dap-news.com/2011-06-14-02-39-55.html?format=feed&amp;type=rss" target="_blank">http://www.dap-news.com/2011-06-14-02-39-55.html?format=feed&amp;type=rss</a></li>
<li>International News feed: <a href="http://www.dap-news.com/2011-06-14-02-40-26.html?format=feed&amp;type=rss" target="_blank">http://www.dap-news.com/2011-06-14-02-40-26.html?format=feed&amp;type=rss</a></li>
<li>Health and Economics News feed: <a href="http://dap-news.com/2011-06-14-02-43-39.html?format=feed&amp;type=rss" target="_blank">http://dap-news.com/2011-06-14-02-43-39.html?format=feed&amp;type=rss</a></li>
<li>Entertainment feed: <a href="http://dap-news.com/morokatmagazine.html?format=feed&amp;type=rss" target="_blank">http://dap-news.com/morokatmagazine.html?format=feed&amp;type=rss</a></li>
</ul>
<p>And you just subscribe each of them in feedburner.com using Google account or with your MS Outlook, it would be fine. You can quickly read the latest news from dap-news.com, a breaking news, mostly on daily matter in Cambodia like traffic, government&#8217;s activities or social issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/02/unofficial-subscribe-to-dap-news-com-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; JDBC &#8211; Oracle For Better Performance Tips</title>
		<link>http://osify.com/2012/02/java-jdbc-oracle-for-better-performance-tips/</link>
		<comments>http://osify.com/2012/02/java-jdbc-oracle-for-better-performance-tips/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 04:41:50 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://osify.com/?p=969</guid>
		<description><![CDATA[I just come out from my mind to list down the tips that could help in Java/JDBC and Oracle for better performance. Of course, each of the them could have their own proving but I haven&#8217;t yet detailed and judgement could be made by the way, you use. In development, we need a real use [...]]]></description>
			<content:encoded><![CDATA[<p>I just come out from my mind to list down the tips that could help in Java/JDBC and Oracle for better performance. Of course, each of the them could have their own proving but I haven&#8217;t yet detailed and judgement could be made by the way, you use.</p>
<p>In development, we need a real use case to be sure which case match to you but this message could help you or give you a view to look more detail about it.</p>
<ul>
<li>Use ArrayList over Vector, HashMap over HashTable ~ set references to null when you no longer need them.</li>
<li>Use Thread-Pool instead of Thread</li>
<li>DB &#8211; Write store procedure to encapusulate almost all DB related to Business Logic &amp; reduce application cycle between DB Objects for a Single Request</li>
<li>DB &#8211; Create appropriate indexes for your tables, that will reduce time when you fetch data from tables</li>
<li>DB &#8211; Tune you SQL statements appropriately &#8211; Example: Check your request with SQL Plan Text in Oracle</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/02/java-jdbc-oracle-for-better-performance-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t you think Playing Angry Birds now is too boring?</title>
		<link>http://osify.com/2012/02/dont-you-think-playing-angry-birds-now-is-too-boring/</link>
		<comments>http://osify.com/2012/02/dont-you-think-playing-angry-birds-now-is-too-boring/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 12:50:41 +0000</pubDate>
		<dc:creator>osify</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Angry Bird]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://osify.com/?p=963</guid>
		<description><![CDATA[I just played Angry Bird for few months already through PC or mobile and I feel it&#8217;s kind of boring now since its action is the same and the same for each of its releases: Angry Birds, Angry Birds Rio or Angry Birds Seasons. I feel now the game is for kids, do not match [...]]]></description>
			<content:encoded><![CDATA[<p>I just played Angry Bird for few months already through PC or mobile and I feel it&#8217;s kind of boring now since its action is the same and the same for each of its releases: Angry Birds, Angry Birds Rio or Angry Birds Seasons.</p>
<div id="attachment_964" class="wp-caption aligncenter" style="width: 310px"><a href="http://osify.com/files/2012/02/Angry-BirdsJPG.jpg"><img class="size-medium wp-image-964" title="Angry-BirdsJPG" src="http://osify.com/files/2012/02/Angry-BirdsJPG-300x225.jpg" alt="Angry Birds Game" width="300" height="225" /></a><p class="wp-caption-text">Angry Birds Game</p></div>
<p>I feel now the game is for kids, do not match to me but might be you have different feeling from that.</p>
<p>I think if <a href="http://www.rovio.com/en/our-work/games/view/1/angry-birds" target="_blank">Rovio Entertainment</a> releases more angry birds&#8217; behaviors as:</p>
<ol>
<li>Angry birds walk and fight</li>
<li>Angry birds with sword and horse</li>
<li>Angry birds go to fight in China, in US or some where</li>
<li>More adventures or might be the game expert could found something else than this&#8230;</li>
</ol>
<p>That would be great if so.<br />
Since now, Angry birds&#8217; pictures are every where in any form, on food, on toys or the clothes.</p>
<p>If Angry birds game is keeping the same state of actions, it might be lost interests some days as well.</p>
<p>How do you think?</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
]]></content:encoded>
			<wfw:commentRss>http://osify.com/2012/02/dont-you-think-playing-angry-birds-now-is-too-boring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

