<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://geeks.netindonesia.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Across boundaries - ( Cipto ) - All Comments</title><link>http://geeks.netindonesia.net/blogs/cipto/default.aspx</link><description>@P</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>re: Java Script ,OOP</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/11/18/java-script-oop.aspx#79769</link><pubDate>Wed, 19 Nov 2008 10:11:29 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:79769</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;pake library&lt;/p&gt;
&lt;p&gt; &amp;nbsp;var Person = Base.extend({&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//pass in contructor&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;constructor: function(name) { this.name = name; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//pass in method&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;getName: function() { return this.name; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;});&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;var cipto = new Person(&amp;quot;cipto&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;alert(cipto.getName());&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;var User = Person.extend({&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;constructor: function(name, password) { this.base(name) = name; this.password = password; },&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;getPassword: function(){return this.password;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;});&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=79769" width="1" height="1"&gt;</description></item><item><title>re: Java Script ,OOP</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/11/18/java-script-oop.aspx#79703</link><pubDate>Wed, 19 Nov 2008 08:06:47 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:79703</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;yah bukan itu maksudnya mas... kalo yang dibuat di library helper itu bikin java script jadi oop,suatu object bisa inheritance dan extend.&lt;/p&gt;
&lt;p&gt;Contoh over load&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;function sendMessage(msg, obj) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;//wah inilah kekayaan javascript yang dodol dan tidak ada validasi,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;//cara nentuin dia oper berapa param ya: pake arguments&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (arguments.length == 2)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;obj.handleMsg(msg);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(msg);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;sendMessage(&amp;quot;hoi&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;sendMessage(&amp;quot;overload&amp;quot;, { handleMsg: function(msg) { alert(&amp;quot;this is a custom message:&amp;quot; + msg) } });&lt;/p&gt;
&lt;p&gt;//function to make arguments To array&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;function argumentsToArray() {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var arr = [];&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (var i = 0; i &amp;lt; arguments.length; i++) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;arr.push(arguments&lt;img src="http://geeks.netindonesia.net/emoticons/emotion-55.gif" alt="Idea" /&gt;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return arr;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; //generic function to check the type of a function&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;function strict(types, args) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (types.length != args.length) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;throw &amp;quot;Invalid number of arguments.expected &amp;quot; + types.length + &amp;quot;, received &amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;args.length + &amp;quot; instead.&amp;quot;;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (var i = 0; i &amp;lt; args.length; i++) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (args&lt;img src="http://geeks.netindonesia.net/emoticons/emotion-55.gif" alt="Idea" /&gt;.constructor != types&lt;img src="http://geeks.netindonesia.net/emoticons/emotion-55.gif" alt="Idea" /&gt;) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;throw &amp;quot;invalid argument type. Expected &amp;quot; + types&lt;img src="http://geeks.netindonesia.net/emoticons/emotion-55.gif" alt="Idea" /&gt;.name + &amp;quot;,received &amp;quot; + args&lt;img src="http://geeks.netindonesia.net/emoticons/emotion-55.gif" alt="Idea" /&gt;.constructor.name + &amp;quot; instead&amp;quot;; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=79703" width="1" height="1"&gt;</description></item><item><title>re: Java Script ,OOP</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/11/18/java-script-oop.aspx#79179</link><pubDate>Tue, 18 Nov 2008 16:07:32 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:79179</guid><dc:creator>cahnom</dc:creator><description>&lt;p&gt;Cipto, gw pernah bahas salah satu penerapan OOP pada javascript. &lt;/p&gt;
&lt;p&gt;Silakan cek di&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.masykur.web.id/post/object-oriented-javascript-overloading-dan-type-checking.aspx"&gt;www.masykur.web.id/.../object-oriented-javascript-overloading-dan-type-checking.aspx&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=79179" width="1" height="1"&gt;</description></item><item><title>re: More On Compressing Asp Page and performances</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/11/03/more-on-compressing-asp-page-and-performances.aspx#73264</link><pubDate>Thu, 06 Nov 2008 07:34:55 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:73264</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;ada caranya kok.,&lt;/p&gt;
&lt;p&gt;tar tunggu g bantu si agus&lt;/p&gt;
&lt;p&gt;kalo udah bisa gue kasi tau....&lt;/p&gt;
&lt;p&gt;Share point itu Banyak makan viewstate dalam setiap bikin fieldcontrol,&lt;/p&gt;
&lt;p&gt;etc&lt;/p&gt;
&lt;p&gt;always rely on view state&lt;/p&gt;
&lt;p&gt;there's a workaround to do this&lt;/p&gt;
&lt;p&gt;if i succeded i'll post it&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=73264" width="1" height="1"&gt;</description></item><item><title>re: More On Compressing Asp Page and performances</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/11/03/more-on-compressing-asp-page-and-performances.aspx#72777</link><pubDate>Mon, 03 Nov 2008 05:22:55 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:72777</guid><dc:creator>agusto</dc:creator><description>&lt;p&gt;yup gw pun pernah posting hal ini dan gw pun pernah pake juga utk project gw yang murni aspx tapi utk yg pake windows sharepoint gw enggak berani karena gw takut ada hal yang emang di akes oleh windows sharepoint.&lt;/p&gt;
&lt;p&gt;ZIP viewstate.&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=72777" width="1" height="1"&gt;</description></item><item><title>re: MSBuild Introduction</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/20/msbuild-introduction.aspx#69441</link><pubDate>Thu, 23 Oct 2008 03:29:16 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:69441</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://geekswithblogs.net/sdorman/archive/2007/12/24/msbuild-or-nant.aspx"&gt;geekswithblogs.net/.../msbuild-or-nant.aspx&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;i haven't use nant too much. but actually almost the same,since 2.0 microsoft use the msbuild.&lt;/p&gt;
&lt;p&gt;and more enhance in .net 3.5&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=69441" width="1" height="1"&gt;</description></item><item><title>re: MSBuild Introduction</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/20/msbuild-introduction.aspx#69430</link><pubDate>Thu, 23 Oct 2008 02:21:21 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:69430</guid><dc:creator>tedsfn</dc:creator><description>&lt;p&gt;Gue biasa menggunakan Nant, dengan menggunakan cruisecontrol.net bisa buat autobuild/daily build. Tau bedanya gak dengan Msbuild? wich one is better?&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=69430" width="1" height="1"&gt;</description></item><item><title>re: MSBuild Introduction</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/20/msbuild-introduction.aspx#69008</link><pubDate>Tue, 21 Oct 2008 02:13:33 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:69008</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;i've found a complete and better one.&lt;/p&gt;
&lt;p&gt;Visual Build Professional.&lt;/p&gt;
&lt;p&gt;complete cover of those tedious routine of deploying&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=69008" width="1" height="1"&gt;</description></item><item><title>re: MSBuild Introduction</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/20/msbuild-introduction.aspx#68838</link><pubDate>Mon, 20 Oct 2008 07:16:23 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:68838</guid><dc:creator>agusto xaverius</dc:creator><description>&lt;p&gt;Mungkin ini jg bisa jadi satu opsi,baru download sich dan belum gw coba tapinya.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.eworldui.net/unleashit/"&gt;www.eworldui.net/unleashit&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=68838" width="1" height="1"&gt;</description></item><item><title>re: Security Trimming</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/07/04/security-trimming.aspx#65778</link><pubDate>Tue, 07 Oct 2008 01:57:04 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:65778</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;usually you have to use the asp.net configuration tools, or by manualy create a web.config, they inconjunction&lt;/p&gt;
&lt;p&gt;Deny all user&lt;/p&gt;
&lt;p&gt;Allow [Roles that you want to give permission to]&lt;/p&gt;
&lt;p&gt;than the Menu shall works&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=65778" width="1" height="1"&gt;</description></item><item><title>re: huaahh Start The Engine with Tools</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/06/huaahh-start-the-engine-with-tools.aspx#65677</link><pubDate>Mon, 06 Oct 2008 10:38:30 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:65677</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;jgn dikategoriin geeks dong.&lt;/p&gt;
&lt;p&gt;:D&lt;/p&gt;
&lt;p&gt;g kan gak kutu bgt gitu lo&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=65677" width="1" height="1"&gt;</description></item><item><title>re: huaahh Start The Engine with Tools</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/10/06/huaahh-start-the-engine-with-tools.aspx#65675</link><pubDate>Mon, 06 Oct 2008 10:25:18 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:65675</guid><dc:creator>agusto</dc:creator><description>&lt;p&gt;keren hasil liburan elo. Geeks maniac&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=65675" width="1" height="1"&gt;</description></item><item><title>re: Security Trimming</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/07/04/security-trimming.aspx#65285</link><pubDate>Fri, 03 Oct 2008 22:13:59 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:65285</guid><dc:creator>o5k4r.m4dr1d</dc:creator><description>&lt;p&gt;Hi..&lt;/p&gt;
&lt;p&gt;Do you have an example?? I've done all your steps and it doesn't work.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=65285" width="1" height="1"&gt;</description></item><item><title>re: ScriptManager InlineScript</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/08/06/scriptmanager-inlinescript.aspx#61649</link><pubDate>Wed, 06 Aug 2008 05:35:02 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:61649</guid><dc:creator>cipto</dc:creator><description>&lt;p&gt;kalo dari speed si gue belum perhatiin tuch.&lt;/p&gt;
&lt;p&gt;ini cuma show aja si sebenarnya , under the hood, what's the difference.&lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=61649" width="1" height="1"&gt;</description></item><item><title>re: ScriptManager InlineScript</title><link>http://geeks.netindonesia.net/blogs/cipto/archive/2008/08/06/scriptmanager-inlinescript.aspx#61648</link><pubDate>Wed, 06 Aug 2008 05:30:22 GMT</pubDate><guid isPermaLink="false">5cc3a90d-ac9a-472a-8983-30514957434c:61648</guid><dc:creator>Ari</dc:creator><description>&lt;p&gt;Jadi gambar ukuran besar yang memerlukan waktu load lama di atas intinya hanya &amp;quot;kalo inline=false dia download file script terpisah,kalo inline=true langsung ditanam di halaman aspx&amp;quot; ? &lt;/p&gt;
&lt;img src="http://geeks.netindonesia.net/aggbug.aspx?PostID=61648" width="1" height="1"&gt;</description></item></channel></rss>