<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="http://calliopeblogs.com/?v=2.0" -->
<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/"
        >

<channel>
        <title>AngeloHere</title>
        <link>http://angelohere.i.ph/blogs/angelohere</link>
        <description>Calliope-powered blog</description>
        <pubDate>Wed, 26 May 2010 14:38:00 +0000</pubDate>
        <generator>http://calliopeblogs.com/?v=2.0</generator>
        <language>en</language>
	
        	<item>
                <title>PHP and AJAX</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=16</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=16#comments</comments>
                <pubDate>Wed, 26 May 2010 14:38:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=16</guid>
                                <description><![CDATA[Ajax (shorthand for asynchronous JavaScript and XML[1]) is a group of interrelated web development techniques used on the client-side to create interactive web applications.-we use AJAX for the dynamic controls of our web applications...so this is morely on the client side of the application..and the server side language is PHP..so...]]></description>
                <content:encoded><![CDATA[<p><b>Ajax</b> (shorthand for <a href="http://en.wikipedia.org/wiki/Asynchronous_I/O" title="Asynchronous I/O">asynchronous</a> <a href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</a> and <a href="http://en.wikipedia.org/wiki/XML" title="XML">XML</a><sup id="cite_ref-garrett_0-0" class="reference"><a href="http://en.wikipedia.org/wiki/Ajax_%28programming%29#cite_note-garrett-0"><span>[</span>1<span>]</span></a></sup>) is a group of interrelated <a href="http://en.wikipedia.org/wiki/Web_development" title="Web development">web development</a> techniques used on the <a href="http://en.wikipedia.org/wiki/Client-side" title="Client-side">client-side</a> to create interactive <a href="http://en.wikipedia.org/wiki/Web_application" title="Web application">web applications</a>.</p><p>-we use AJAX for the dynamic controls of our web applications...so this is morely on the client side of the application..</p><p>and the server side language is PHP..</p><p>so combining the two we can build a several web applications...isn't it?..</p><p>&nbsp;</p><p>so that is why...</p><p>i have a very simple program demonstrating the PHP and AJAX coding.. <br></p><p>&nbsp;</p><p>&nbsp;1. assuming we have file test.php </p><p>&nbsp;&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;<br>&lt;head&gt;<br>&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt;<br>&lt;title&gt;Reverse using Ajax&lt;/title&gt;<br>&lt;/head&gt;<br>&lt;script language="javascript"&gt;<br>&nbsp;&nbsp; &nbsp;function doReverse(){<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;var str=document.getElementById("txtStr").value;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;var httpObject=getHTTPObject();<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if(httpObject!=null){<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;httpObject.open("GET","reverse.php?str="+str,true);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;httpObject.send(null);<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;httpObject.onreadystatechange=<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;function updateReverse(){<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;var responseStr;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if(httpObject.readyState==4){<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;responseStr=httpObject.responseText;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;document.getElementById("txtReverse").value=responseStr;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;document.getElementById("txtStr").value=responseStr;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; function getHTTPObject(){<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(window.ActiveXObject)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return new ActiveXObject("Microsoft.XMLHTTP");&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else if(window.XMLHttpRequest)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return new XMLHttpRequest();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else{<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; alert("Your browser does not support AJAX");<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return null;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; }<br>&lt;/script&gt;<br><br><br>&lt;body&gt;<br>&lt;table width="392" border="0" cellspacing="0" cellpadding="0"&gt;<br>&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td width="184"&gt;String:&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td width="208"&gt;&lt;input id="txtStr" type="text" size="40" /&gt;&lt;/td&gt;<br>&nbsp; &lt;/tr&gt;<br>&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;String in Reverse:&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;input name="text" type="text" id="txtReverse" size="40" /&gt;&lt;/td&gt;<br>&nbsp; &lt;/tr&gt;<br>&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&nbsp;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&nbsp;&lt;/td&gt;<br>&nbsp; &lt;/tr&gt;<br>&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&nbsp;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;input type="button" name="cmdReverse" value="Reverse" onclick="doReverse();" /&gt;&lt;/td&gt;<br>&nbsp; &lt;/tr&gt;<br>&lt;/table&gt;<br>&lt;/body&gt;<br><br>&lt;/html&gt;<br></p><p>&nbsp; <br></p><p>&nbsp;2.we have also file reverse.php </p><p>&lt;?php<br>&nbsp;&nbsp;&nbsp; <br>$str=$_GET["str"];<br>echo strrev($str);<br><br>?&gt; </p><p>&nbsp;</p><p>so this is the very simple way implementing AJAX in PHP.. <br></p><p>hope it helps.. <br></p><p><br></p><p>&nbsp;</p><p>&nbsp;</p>]]></content:encoded>
        </item>
        	<item>
                <title>PHP and Oracle</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=15</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=15#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:45:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=15</guid>
                                <description><![CDATA[PHP and Oracle - server side language and database management &nbsp;First and foremost.. I just want to share this... which I actually used ... Assuming we've already installed the Oracle in our OS.. 1. Download this AppServ 2. Edit the php.ini and then uncomment the ff: extension=php_oci8.dll extension=php_oracle.dll and by...]]></description>
                <content:encoded><![CDATA[<p><span>PHP and Oracle</span> - server side language and database management  </p><p>&nbsp;</p><p>First and foremost..  </p><p>I just want to share this... which I actually used ...  </p><p>Assuming we've already installed the Oracle in our OS..  </p><p>1. Download this <a href="http://www.4shared.com/file/141829442/8753236e/appserv-win32-244a.html" target="_blank" mce_href="http://www.4shared.com/file/141829442/8753236e/appserv-win32-244a.html">AppServ</a>  </p><p>2. Edit the php.ini and then uncomment the ff: </p><p>extension=php_oci8.dll extension=php_oracle.dll  and by this one..</p><p>we can already connect..  </p><p><span>Connecting PHP and Oracle</span>   </p><p>&nbsp;//some codes here </p><p>global $conn;</p><p>$user = "username";</p><p>$password = "password"; </p><p>$db="database"; </p><p>$conn = oci_connect($user, $password, $db); </p><p>if (!$conn) {   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp; $err = oci_error();   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp; echo htmlentities($err['message']);   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>exit; } </p><p>//some codes here</p><p>&nbsp;</p><p>So that's it.. </p>]]></content:encoded>
        </item>
        	<item>
                <title>Ways to show hidden files in the USB Cause by Virus/Malware</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=13</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=13#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:42:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=13</guid>
                                <description><![CDATA[1. Run the ToggleVBScript 2. Open Your USB Then Click the Search and Go to Search All Files and Folders Click More Advance Options And check Search Hidden Files and Folders And then click Search button Select all the hidden files And uncheck the hidden checkbox and click Apply and...]]></description>
                <content:encoded><![CDATA[<p style="text-align: justify;">1.    Run the <a href="http://dc131.4shared.com/download/91414035/9a16c957/ToggleHiddenExplorerStuff.vbs?tsid=20090306-061948-5c12dcaf" target="_blank" mce_href="http://dc131.4shared.com/download/91414035/9a16c957/ToggleHiddenExplorerStuff.vbs?tsid=20090306-061948-5c12dcaf"> ToggleVBScript</a>   </p><p style="text-align: center;">2.    Open Your USB </p><p></p> <a href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEElrOqb8I/AAAAAAAAAHw/M0LUl0iWOlQ/s1600-h/1.JPG" mce_href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEElrOqb8I/AAAAAAAAAHw/M0LUl0iWOlQ/s1600-h/1.JPG"><img src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEElrOqb8I/AAAAAAAAAHw/M0LUl0iWOlQ/s320/1.JPG" id="BLOGGER_PHOTO_ID_5310030480952422338" alt="" mce_src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEElrOqb8I/AAAAAAAAAHw/M0LUl0iWOlQ/s320/1.JPG" border="0"></a>  <p style="text-align: center;">Then Click the Search </p><a href="http://3.bp.blogspot.com/_wy073HsyFlo/SbEEl3w85dI/AAAAAAAAAIA/JXJXeBAOias/s1600-h/3.JPG" mce_href="http://3.bp.blogspot.com/_wy073HsyFlo/SbEEl3w85dI/AAAAAAAAAIA/JXJXeBAOias/s1600-h/3.JPG"><img src="http://3.bp.blogspot.com/_wy073HsyFlo/SbEEl3w85dI/AAAAAAAAAIA/JXJXeBAOias/s320/3.JPG" id="BLOGGER_PHOTO_ID_5310030484317464018" alt="" mce_src="http://3.bp.blogspot.com/_wy073HsyFlo/SbEEl3w85dI/AAAAAAAAAIA/JXJXeBAOias/s320/3.JPG" border="0"></a>  <p style="text-align: center;">and Go to Search All Files and Folders </p>  <a href="http://1.bp.blogspot.com/_wy073HsyFlo/SbEEmA2xdKI/AAAAAAAAAII/Bgfcpc7IMK4/s1600-h/4.JPG" mce_href="http://1.bp.blogspot.com/_wy073HsyFlo/SbEEmA2xdKI/AAAAAAAAAII/Bgfcpc7IMK4/s1600-h/4.JPG"><img src="http://1.bp.blogspot.com/_wy073HsyFlo/SbEEmA2xdKI/AAAAAAAAAII/Bgfcpc7IMK4/s320/4.JPG" id="BLOGGER_PHOTO_ID_5310030486757799074" alt="" mce_src="http://1.bp.blogspot.com/_wy073HsyFlo/SbEEmA2xdKI/AAAAAAAAAII/Bgfcpc7IMK4/s320/4.JPG" border="0"></a>    <p style="text-align: center;">Click More Advance Options </p><a href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEEmUQfC5I/AAAAAAAAAIQ/8AmzNwFhyRE/s1600-h/5.JPG" mce_href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEEmUQfC5I/AAAAAAAAAIQ/8AmzNwFhyRE/s1600-h/5.JPG"><img src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEEmUQfC5I/AAAAAAAAAIQ/8AmzNwFhyRE/s320/5.JPG" id="BLOGGER_PHOTO_ID_5310030491965918098" alt="" mce_src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEEmUQfC5I/AAAAAAAAAIQ/8AmzNwFhyRE/s320/5.JPG" border="0"></a>  <p style="text-align: center;">And check Search Hidden Files and Folders And then click Search button </p> <a href="http://2.bp.blogspot.com/_wy073HsyFlo/SbEEluHoYzI/AAAAAAAAAH4/jPoHZJCB0l4/s1600-h/2.JPG" mce_href="http://2.bp.blogspot.com/_wy073HsyFlo/SbEEluHoYzI/AAAAAAAAAH4/jPoHZJCB0l4/s1600-h/2.JPG"><img src="http://2.bp.blogspot.com/_wy073HsyFlo/SbEEluHoYzI/AAAAAAAAAH4/jPoHZJCB0l4/s320/2.JPG" id="BLOGGER_PHOTO_ID_5310030481728234290" alt="" mce_src="http://2.bp.blogspot.com/_wy073HsyFlo/SbEEluHoYzI/AAAAAAAAAH4/jPoHZJCB0l4/s320/2.JPG" border="0"></a>   <p style="text-align: center;">Select all the hidden files </p><a href="http://3.bp.blogspot.com/_wy073HsyFlo/SbEFT59wXfI/AAAAAAAAAIY/kNCYNe3Tel4/s1600-h/6.JPG" mce_href="http://3.bp.blogspot.com/_wy073HsyFlo/SbEFT59wXfI/AAAAAAAAAIY/kNCYNe3Tel4/s1600-h/6.JPG"><img src="http://3.bp.blogspot.com/_wy073HsyFlo/SbEFT59wXfI/AAAAAAAAAIY/kNCYNe3Tel4/s320/6.JPG" id="BLOGGER_PHOTO_ID_5310031275182022130" alt="" mce_src="http://3.bp.blogspot.com/_wy073HsyFlo/SbEFT59wXfI/AAAAAAAAAIY/kNCYNe3Tel4/s320/6.JPG" border="0"></a>  <p style="text-align: center;">And uncheck the hidden checkbox and click Apply and Ok Button </p><a href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEFUOQo6BI/AAAAAAAAAIg/B8-fnZLuJTA/s1600-h/7.JPG" mce_href="http://4.bp.blogspot.com/_wy073HsyFlo/SbEFUOQo6BI/AAAAAAAAAIg/B8-fnZLuJTA/s1600-h/7.JPG"><img src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEFUOQo6BI/AAAAAAAAAIg/B8-fnZLuJTA/s320/7.JPG" id="BLOGGER_PHOTO_ID_5310031280629934098" alt="" mce_src="http://4.bp.blogspot.com/_wy073HsyFlo/SbEFUOQo6BI/AAAAAAAAAIg/B8-fnZLuJTA/s320/7.JPG" border="0"></a>  <p style="text-align: center;">Then Go Back To Your USB Drive </p> <a href="http://2.bp.blogspot.com/_wy073HsyFlo/SbEFuCcqYJI/AAAAAAAAAIw/alCI7CfOzlg/s1600-h/8.JPG" mce_href="http://2.bp.blogspot.com/_wy073HsyFlo/SbEFuCcqYJI/AAAAAAAAAIw/alCI7CfOzlg/s1600-h/8.JPG"><img src="http://2.bp.blogspot.com/_wy073HsyFlo/SbEFuCcqYJI/AAAAAAAAAIw/alCI7CfOzlg/s320/8.JPG" id="BLOGGER_PHOTO_ID_5310031724135735442" alt="" mce_src="http://2.bp.blogspot.com/_wy073HsyFlo/SbEFuCcqYJI/AAAAAAAAAIw/alCI7CfOzlg/s320/8.JPG" border="0"></a> All hidden files now are shown..]]></content:encoded>
        </item>
        	<item>
                <title>Robots?...New World in the Future???</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=12</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=12#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:41:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=12</guid>
                                <description><![CDATA[As we all know that the rate of improvements of technology is accelerating, and the coming advances of computing power occur rapidly, isn’t it? So we can say that even someday in the future we become robots or shall I say we can mingle with robots... or something like that…...]]></description>
                <content:encoded><![CDATA[As we all know that the rate of improvements of technology is accelerating, and the coming advances of computing power occur rapidly, isn’t it? So we can say that even someday in the future we become robots or shall I say we can mingle with robots... or something like that…  <a href="http://1.bp.blogspot.com/_wy073HsyFlo/SX_L_mpJJmI/AAAAAAAAAFw/TCpP0Bm3HwU/s1600-h/robot1.jpg" mce_href="http://1.bp.blogspot.com/_wy073HsyFlo/SX_L_mpJJmI/AAAAAAAAAFw/TCpP0Bm3HwU/s1600-h/robot1.jpg"><img src="http://1.bp.blogspot.com/_wy073HsyFlo/SX_L_mpJJmI/AAAAAAAAAFw/TCpP0Bm3HwU/s320/robot1.jpg" id="BLOGGER_PHOTO_ID_5296175980376303202" alt="" mce_src="http://1.bp.blogspot.com/_wy073HsyFlo/SX_L_mpJJmI/AAAAAAAAAFw/TCpP0Bm3HwU/s320/robot1.jpg" border="0"></a>  So given the incredible power of these new technologies, shouldn’t we be asking how we can best coexist with them? And if our own extinction is a likely, or even possible, outcome of technological development, shouldn’t we proceed with these new technologies with great caution?]]></content:encoded>
        </item>
        	<item>
                <title>Why we use technology today?</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=11</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=11#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:12:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=11</guid>
                                <description><![CDATA[The technology is growingly becoming a very important part in our daily lives. Since then, there are several purposes for those technologies that we have now, they are being used in home, school, college, employment, and many places or things here in this world. We use technology in order to...]]></description>
                <content:encoded><![CDATA[<div align="justify">The technology is growingly becoming a very important part in our daily lives. Since then, there are several purposes for those technologies that we have now, they are being used in home, school, college, employment, and many places or things here in this world.  We use technology in order to use it in our several tasks, these made our jobs much more easily and faster. Technologies also give us entertainment, it is so important to have some fun and of course things that will make us enjoy in our lives.  <a href="http://2.bp.blogspot.com/_wy073HsyFlo/STY8diT_xYI/AAAAAAAAAEQ/81OCW2rMACE/s1600-h/im2.jpg" mce_href="http://2.bp.blogspot.com/_wy073HsyFlo/STY8diT_xYI/AAAAAAAAAEQ/81OCW2rMACE/s1600-h/im2.jpg"><img src="http://2.bp.blogspot.com/_wy073HsyFlo/STY8diT_xYI/AAAAAAAAAEQ/81OCW2rMACE/s320/im2.jpg" id="BLOGGER_PHOTO_ID_5275470491635664258" alt="" mce_src="http://2.bp.blogspot.com/_wy073HsyFlo/STY8diT_xYI/AAAAAAAAAEQ/81OCW2rMACE/s320/im2.jpg" border="0"></a> In our daily involvement in the society, there is always the involvement also of technologies, So that is why it is a solution that provides in our daily activity and of course also for entertainments, and without having these kind of thing in this world , there are many disorder things that may occur. And because of that, the is the reason why it influenced us to use this so called technology, its purposes.  <a href="http://2.bp.blogspot.com/_wy073HsyFlo/STY8dsOHCsI/AAAAAAAAAEI/q7kbiJI0FlY/s1600-h/im1.jpg" mce_href="http://2.bp.blogspot.com/_wy073HsyFlo/STY8dsOHCsI/AAAAAAAAAEI/q7kbiJI0FlY/s1600-h/im1.jpg"><img src="http://2.bp.blogspot.com/_wy073HsyFlo/STY8dsOHCsI/AAAAAAAAAEI/q7kbiJI0FlY/s320/im1.jpg" id="BLOGGER_PHOTO_ID_5275470494295329474" alt="" mce_src="http://2.bp.blogspot.com/_wy073HsyFlo/STY8dsOHCsI/AAAAAAAAAEI/q7kbiJI0FlY/s320/im1.jpg" border="0"></a>  Factors also that involve why technology always change are the ff: *rivalry of several technology products (businesses, personal) *new technology ideas being learned or experimented   And because of that, every now and then people are always developing those technologies. Since people are always learning everyday…</div>]]></content:encoded>
        </item>
        	<item>
                <title>Cyberpunk</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=10</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=10#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:11:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=10</guid>
                                <description><![CDATA[ Originally, the term "cyberpunk" was used to describe a subgenre of science fiction.  Cyberpunk science fiction is primarily concerned with computers and their interaction with humans  A world built on one particular technology that is extrapolate to a highly sophisticated level (this may even be a fantastical...]]></description>
                <content:encoded><![CDATA[ Originally, the term "cyberpunk" was used to describe a subgenre of science fiction.     Cyberpunk science fiction is primarily concerned with computers and their interaction with humans  <a href="http://2.bp.blogspot.com/_wy073HsyFlo/SS41l4siytI/AAAAAAAAAD4/Xq2XzXKM5Pw/s1600-h/images.jpg" mce_href="http://2.bp.blogspot.com/_wy073HsyFlo/SS41l4siytI/AAAAAAAAAD4/Xq2XzXKM5Pw/s1600-h/images.jpg"><img src="http://2.bp.blogspot.com/_wy073HsyFlo/SS41l4siytI/AAAAAAAAAD4/Xq2XzXKM5Pw/s320/images.jpg" id="BLOGGER_PHOTO_ID_5273211138688076498" alt="" mce_src="http://2.bp.blogspot.com/_wy073HsyFlo/SS41l4siytI/AAAAAAAAAD4/Xq2XzXKM5Pw/s320/images.jpg" border="0"></a>  A world built on one particular technology that is extrapolate to a highly sophisticated level (this may even be a fantastical or anachronistic technology, akin to retro-futurism), a gritty transreal urban style, or a particular approach to social themes   The first and most influential cyberpunk novel is William Gibson's Neuromancer (Gibson 1984, 1995).  In Neuromancer, Gibson describes a world of outlaw computer hackers who are able to link up their brains to computer networks and operate in cyberspace.   In the late 80s, Cyberpunk escaped from being a literary genre into cultural reality. Media philosopher R. U. Sirius describes this process as follows:     People started to call themselves cyberpunks, or the media started calling people cyberpunks.   The first people to identify themselves as cyberpunks were adolescent computer hackers  In 1988 cyberpunk hit the front page of the New York Times when some young computer kids were arrested for cracking a government computer file.    <a href="http://3.bp.blogspot.com/_wy073HsyFlo/SS41mS49b3I/AAAAAAAAAEA/qumEI37Bh7w/s1600-h/cyborg-prosthetics.jpg" mce_href="http://3.bp.blogspot.com/_wy073HsyFlo/SS41mS49b3I/AAAAAAAAAEA/qumEI37Bh7w/s1600-h/cyborg-prosthetics.jpg"><img src="http://3.bp.blogspot.com/_wy073HsyFlo/SS41mS49b3I/AAAAAAAAAEA/qumEI37Bh7w/s320/cyborg-prosthetics.jpg" id="BLOGGER_PHOTO_ID_5273211145719476082" alt="" mce_src="http://3.bp.blogspot.com/_wy073HsyFlo/SS41mS49b3I/AAAAAAAAAEA/qumEI37Bh7w/s320/cyborg-prosthetics.jpg" border="0"></a>    Cyberspace  "new world" that Leary means is (virtual reality and - in a broader sense - all digitally mediated space), which he sees as a boundless reality where time, space and body are perceived as meaningless  can help us to liberate ourselves from authority and "create our own realities”   Timothy Leary  was one of the founding fathers of cyberpunk.  In 1973, Leary predicted that some day the world would be linked through an "electronic nervous system" (the Internet) and that computers could be used to empower the individual]]></content:encoded>
        </item>
        	<item>
                <title>Activating regedit (Enable/Disable registry tools)</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=9</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=9#comments</comments>
                <pubDate>Fri, 20 Nov 2009 09:05:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=9</guid>
                                <description><![CDATA[The value: The following values lock the registry editing tools when they are set to 1 (they are DWORD values) : HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools for the current user and HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools for all users (doesn't work on Windows XP though). However, once one of them has been set to 1, you can't use...]]></description>
                <content:encoded><![CDATA[<p>         The value:  </p><p>The following values lock the registry editing tools when they are set to 1 (they are DWORD values) :  HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools for the current user and  HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools for all users (doesn't work on Windows XP though).  However, once one of them has been set to 1, you can't use regedit to simply remove them. </p><p>So, here are 2 methods.   </p><p>The methods</p><p>  1. A reg file !  Tested and working on Win 2k, not working on Win XP.  You simply need to create and launch the following reg file :  REGEDIT4  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] "DisableRegistryTools"=-  [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] "DisableRegistryTools"=-    </p><p>2. A VBS (Visual Basic Script)  Tested and working on Win 2k and XP.  </p><p>In notepad, copy/paste the following script, and save the file with a .vbs extension, </p><p>then go to cmd.exe and run it :</p><p>   'Enable/Disable Registry Editing tools  </p><p>Option Explicit 'Declare variables Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle </p><p>Dim jobfunc, itemtype  </p><p>On Error Resume Next  Set WSHShell = WScript.CreateObject("WScript.Shell") val="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools" val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools" itemtype = "REG_DWORD" </p><p>jobfunc = "Registry Editing Tools are now " ttl = "Result"  'reads the registry key value. rr = WSHShell.RegRead (val) </p><p>rr2 = WSHShell.RegRead (val2)  </p><p>toggle=1 </p><p>If (rr=1 or rr2=1) Then </p><p>&nbsp;&nbsp;&nbsp; toggle=0  </p><p>&nbsp;&nbsp;&nbsp; If toggle = 1 Then  </p><p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; WSHShell.RegWrite val, 1, itemtype  WSHShell.RegWrite val2, 1, </p><p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; itemtype  Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl) </p><p>&nbsp;&nbsp;&nbsp; Else  WSHShell.RegDelete val  WSHShell.RegDelete val2  Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl) </p><p>End If        </p>]]></content:encoded>
        </item>
        	<item>
                <title>Future Technology</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=8</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=8#comments</comments>
                <pubDate>Fri, 20 Nov 2009 08:57:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=8</guid>
                                <description><![CDATA[Futuristic Telephony The advent of telephony is a very interesting one. Since every now and then, through communication plays a very significant ingredient in our everyday lives. And several people were developing a device that would transmit and receive the human voice. Thus, this futuristic telephony provide features that will...]]></description>
                <content:encoded><![CDATA[Futuristic Telephony  The advent of telephony is a very interesting one. Since every now and then, through communication plays a very significant ingredient in our everyday lives. And several people were developing a device that would transmit and receive the human voice. Thus, this futuristic telephony provide features that will become far more versatile and use several different methods to get calls to and from subscribers - wherever they happen to be in the world.    Sample Images of Telephony:  <a href="http://www.germes-online.com/direct/dbimage/50187667/Caller_ID_Telephone.jpg" mce_href="http://www.germes-online.com/direct/dbimage/50187667/Caller_ID_Telephone.jpg"><img src="http://www.germes-online.com/direct/dbimage/50187667/Caller_ID_Telephone.jpg" alt="" mce_src="http://www.germes-online.com/direct/dbimage/50187667/Caller_ID_Telephone.jpg" border="0"></a> <a href="http://www.telephonymuseum.com/images/coffin.jpg" mce_href="http://www.telephonymuseum.com/images/coffin.jpg"><img src="http://www.telephonymuseum.com/images/coffin.jpg" alt="" mce_src="http://www.telephonymuseum.com/images/coffin.jpg" border="0"></a>      Futuristic Telephony Features:  ----A combination of modern as well as traditional features of a telephone.Design to offer a unique experience to its users. The design is based on the hand gesture that people use to represent the telephone. There are two parts of this handset, one is earphone and another one is microphone. Therefore, the user has to use the iconic gesture while using the telephone. The modern part of this device includes the touch screen that shows the animated path to the user for dialing the numbers. Overall, this two-piece design is sleek, impressive and creates a touching interaction between the phone and user.  ----Now you can have your telephone with a digital photo frame. It is equipped with touch screen where you can easily change your choice of background screen. Beautiful pictures of your family members, friends as well as your own pictures can be shown continuously on the screen of the frame. If you want to see picture of the person you are talking with, you can insert a photo for each number stored in the telephone. There is a USB attached to it which connects it with your computer. Change the color of the frame as per your need. Even if you miss a call, you don’t have to worry because pictures of the caller can be seen on the screen. It delivers a modern stylish look to your desk or wall and is very useful for a tech savvy.  These are just some of the several features of the futuristic telephony. ....]]></content:encoded>
        </item>
        	<item>
                <title>Article Review</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=7</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=7#comments</comments>
                <pubDate>Fri, 20 Nov 2009 08:54:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=7</guid>
                                <description><![CDATA[Actually there are many great articles that was being made by my own classmates, and for me I chose to review the article of Mr. Chris Jan Cane in Database Management System in Computer Science,for the reason that I am also interested with regards to these techniques and since then...]]></description>
                <content:encoded><![CDATA[<p class="MsoNormal" style="margin-left: 0.25in;"><span>Actually there are many great articles that was being made by my own classmates, and for me I chose to review the article of Mr. Chris Jan Cane in Database Management System in</span> <span>Computer Science,for the reason that I am also interested with regards to these techniques and since then</span> <span>this is also a very important article in order to have a proper management with regards to the databases,</span> <span>specifically knowing the mere fact that DBMS is the heart of the system,isn't it?,and without having the</span> <span>knowledge about this article I guess a great tendency to have many problems encountered in the system,</span> <span>because also of lacking or even not having several ways on how to manage DBMS, Chris had said that through</span> <span>the involvement of declarative networking,data management for wireless sensor network,probabilistic</span> <span>data management and stream query processing , help to manage the entire database management system</span> <span>,and besides through these techniques this helps to prevent or shall I say minimized certain problems</span> <span>to occur in the system, and lastly it helps mostly on the operation of the DBMS especially that it optimized several</span> <span>operations on DBMS queries and even its own components.So through this article, really gives a great help and gives a</span> <span>great effect on the DBMS, and I think having a knowledge on these several techniques would really help us</span> <span>a lot especially when we become software developers,system analysts,computer scientists,etc..someday..hehe</span></p>  <p class="MsoNormal" style="margin-left: 0.25in;"><span> </span></p>]]></content:encoded>
        </item>
        	<item>
                <title>Key Factors For Publishing Research in Top-Tier Journals</title>
                <link>http://angelohere.i.ph/blogs/angelohere/?p=6</link>
                <comments>http://angelohere.i.ph/blogs/angelohere/?p=6#comments</comments>
                <pubDate>Fri, 20 Nov 2009 08:53:00 +0000</pubDate>
                <dc:creator>angelohere</dc:creator>
                <guid isPermaLink="false">http://angelohere.i.ph/blogs/angelohere/?p=6</guid>
                                <description><![CDATA[Publishing our researches is very challenging aspect, since in this aspect I can think of the solid methodology, an important topic, proper statistical analyses, good scientific writing, and etc. And for me in my own opinion, there is no gold formulation in order for the research to be published, in't...]]></description>
                <content:encoded><![CDATA[<p class="MsoNormal" style="margin-left: 0.25in;"><span>Publishing our researches is very challenging aspect, since in this aspect I can think of the solid methodology, an important topic, proper statistical analyses, good scientific writing, and etc. And for me in my own opinion, there is no gold formulation in order for the research to be published, in't it???.. What signifies is that, it the research is well done and important, then there's really a good chance it can get into a top tier journal. And I think for me these things that I have said were really the biggest factor to achieve researches be published in the top-tier journal..That's all..</span></p>]]></content:encoded>
        </item>
        </channel>
</rss>