<?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>UC&#039;s Corner</title>
	<atom:link href="http://yussi.nl/index.php/feed" rel="self" type="application/rss+xml" />
	<link>http://yussi.nl</link>
	<description>Yussi Ariefiyono</description>
	<lastBuildDate>Thu, 03 May 2012 06:26:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>wordpress automatic update problem in windows server</title>
		<link>http://yussi.nl/index.php/wordpress-automatic-update-problem-in-windows-server.html</link>
		<comments>http://yussi.nl/index.php/wordpress-automatic-update-problem-in-windows-server.html#comments</comments>
		<pubDate>Fri, 24 Jun 2011 13:08:15 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=113</guid>
		<description><![CDATA[error message: Download failed.: Could not create Temporary file the issue is your wordpress working directory permission related. if you&#8217;re using IIS server, make sure to grant &#8220;network&#8221; this user &#8220;RWX&#8221; permissions and propagated to all sub directories. that should fix it. viagra]]></description>
			<content:encoded><![CDATA[<p>error message: <strong>Download failed.: Could not create Temporary file</strong></p>
<p>the issue is your wordpress working directory permission related. if  you&#8217;re using IIS server, make sure to grant &#8220;network&#8221; this user &#8220;RWX&#8221;  permissions and propagated to all sub directories. that should fix it.</p>
<p> <a href=http://atlantic-drugs.net/products/viagra.htm>viagra</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/wordpress-automatic-update-problem-in-windows-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count rows in excel vb</title>
		<link>http://yussi.nl/index.php/count-rows-in-excel-vb.html</link>
		<comments>http://yussi.nl/index.php/count-rows-in-excel-vb.html#comments</comments>
		<pubDate>Fri, 25 Jun 2010 12:57:43 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[vb]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[count rows]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[rows]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=107</guid>
		<description><![CDATA[problem: we want to count number of rows in excel with VB solution: I create the sub function to count the number of rows depend on where do you want to start! Sub countRows() RowCount = 0 RowNext = 22  ( please change the starting row according to your need) Do While Cells(RowNext, 3).Value &#60;&#62;]]></description>
			<content:encoded><![CDATA[<p><strong>problem:</strong></p>
<p>we want to count number of rows in excel with VB</p>
<p><strong>solution:</strong></p>
<p>I create the sub function to count the number of rows depend on where do you want to start!</p>
<blockquote>
<div id="_mcePaste">Sub countRows()</div>
<div id="_mcePaste">RowCount = 0</div>
<div id="_mcePaste">RowNext = 22  ( please change the starting row according to your need)</div>
<div id="_mcePaste">Do While Cells(RowNext, 3).Value &lt;&gt; 0 ( the &#8220;3&#8243; also need to be changed)</div>
<div id="_mcePaste">RowCount = RowCount + 1</div>
<div id="_mcePaste">RowNext = RowNext + 1</div>
<div id="_mcePaste">Loop</div>
<div id="_mcePaste">&#8216;MsgBox RowCount</div>
<div id="_mcePaste">End Sub</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/count-rows-in-excel-vb.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File in use Vb</title>
		<link>http://yussi.nl/index.php/file-in-use-vb.html</link>
		<comments>http://yussi.nl/index.php/file-in-use-vb.html#comments</comments>
		<pubDate>Tue, 20 Apr 2010 07:11:36 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[vb]]></category>
		<category><![CDATA[file in use]]></category>
		<category><![CDATA[username]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=105</guid>
		<description><![CDATA[just found nice code in internet, and i use it in one of my project. works great! it will return the last user that open the file Function LastUser(strPath As String) As String &#8216;// Code by Helen from http://www.xtremevbtalk.com/index.php?s= &#8216;// This routine gets the Username of the File In Use &#8216;// Credit goes to Helen]]></description>
			<content:encoded><![CDATA[<p>just found nice code in internet, and i use it in one of my project. works great!<br />
it will return the last user that open the file</p>
<blockquote><p>Function LastUser(strPath As String)  As String</p>
<p>&#8216;// Code by Helen from  http://www.xtremevbtalk.com/index.php?s=</p>
<p>&#8216;// This routine gets the Username  of the File In Use</p>
<p>&#8216;// Credit goes to Helen for code  &amp; Mike for the idea</p>
<p>&#8216;// Amendment 25th June  2004</p>
<p>&#8216;// : Name changes will show old  setting</p>
<p>&#8216;// : you need to get the Len of the  Name store just before</p>
<p>&#8216;// : the double Padded  nullstrings</p>
<p>Dim text As  String</p>
<p>Dim strFlag1 As String, strflag2 As  String</p>
<p>Dim i As Integer, j As  Integer</p>
<p>Dim hdlFile As  Long</p>
<p>Dim lNameLen As  Byte</p>
<p>strFlag1 = Chr(0) &amp;  Chr(0)</p>
<p>strflag2 = Chr(32) &amp;  Chr(32)</p>
<p>hdlFile =  FreeFile</p>
<p>Open strPath For Binary As  #hdlFile</p>
<p>text =  Space(LOF(hdlFile))</p>
<p>Get 1, ,  text</p>
<p>Close  #hdlFile</p>
<p>j = InStr(1, text,  strflag2)</p>
<p>i = InStrRev(text, strFlag1, j) +  Len(strFlag1)</p>
<p>lNameLen = Asc(Mid(text, i &#8211; 3,  1))</p>
<p>LastUser = Mid(text, i,  lNameLen)</p>
<p><span style="font-family: Arial; font-size: x-small;">End  Function</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/file-in-use-vb.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uploading the latest file to ftp with batch command</title>
		<link>http://yussi.nl/index.php/uploading-the-latest-file-to-ftp-with-batch-command.html</link>
		<comments>http://yussi.nl/index.php/uploading-the-latest-file-to-ftp-with-batch-command.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 09:45:10 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[batch command]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[ftp command]]></category>
		<category><![CDATA[ftp with batch file]]></category>
		<category><![CDATA[windows batch command]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=98</guid>
		<description><![CDATA[batch, batch command, ftp with batch file, ftp command, windows batch command, ]]></description>
			<content:encoded><![CDATA[<p>uploading the latest file to ftp, all you  need 2 .bat files</p>
<p><strong> </strong></p>
<p><strong>fileup.bat</strong></p>
<blockquote><p>@echo  off</p>
<p>echo user USERNAME&gt;  ftpcmd.dat</p>
<p>echo PASSWORD&gt;&gt;  ftpcmd.dat</p>
<p>echo bin&gt;&gt;  ftpcmd.dat</p>
<p>echo cd REMOTEPATH  &gt;&gt; ftpcmd.dat</p>
<p>echo put %1&gt;&gt;  ftpcmd.dat</p>
<p>echo quit&gt;&gt;  ftpcmd.dat</p>
<p>ftp -n -s:ftpcmd.dat  FTPADDRESS</p>
<p>del  ftpcmd.dat</p></blockquote>
<p><strong>CALL.bat</strong></p>
<blockquote><p>@echo  off</p>
<p>setlocal</p>
<p>:source  directory</p>
<p>set srcDir=SOURCE  DIRECTORY</p>
<p>set  lastmod=</p>
<p>pushd  &#8220;%srcDir%&#8221;</p>
<p>for /f &#8220;tokens=*&#8221; %%a  in (&#8216;dir /b /od 2^&gt;NUL&#8217;) do set lastmod=%%a</p>
<p>if &#8220;%lastmod%&#8221;==&#8221;" echo  Could not locate files.&amp;goto :eof</p>
<p>:copy</p>
<p>call  YOURPATH\fileup.bat &#8220;%lastmod%&#8221;</p>
<p>:delete</p>
<p>del  &#8220;%lastmod%&#8221;</p></blockquote>
<p><strong>You  call the CALL.bat</strong>, and the fileup.bat is  for information</p>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/uploading-the-latest-file-to-ftp-with-batch-command.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfer to FTP using batch command</title>
		<link>http://yussi.nl/index.php/transfer-to-ftp-using-batch-command.html</link>
		<comments>http://yussi.nl/index.php/transfer-to-ftp-using-batch-command.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 08:52:34 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[batch command]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[ftp command]]></category>
		<category><![CDATA[ftp with batch file]]></category>
		<category><![CDATA[windows batch command]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=94</guid>
		<description><![CDATA[batch, batch command, windows batch command, ftp command, ftp with batch file]]></description>
			<content:encoded><![CDATA[<p>there are 2 file you need</p>
<p><strong>1. info of your ftp ( store it in .txt)<br />
<span style="font-weight: normal;">in my case i named it info.txt with these code written:<br />
</span></strong></p>
<blockquote>
<div id="_mcePaste">yourusername</div>
<div id="_mcePaste">yourpassword</div>
<div id="_mcePaste">bin</div>
<div id="_mcePaste">cd yourremotedirectory</div>
<div id="_mcePaste">bye</div>
</blockquote>
<p><strong>2. .bat file to connect to ftp and do what you want<br />
</strong>in .bat file simply call the info.txt with this code:</p>
<blockquote><p>ftp -s:log.txt YourFTPAddress</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/transfer-to-ftp-using-batch-command.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>static site to CMS in 15 minutes? yes you can</title>
		<link>http://yussi.nl/index.php/static-site-to-cms-in-15-minutes-yes-you-can.html</link>
		<comments>http://yussi.nl/index.php/static-site-to-cms-in-15-minutes-yes-you-can.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:44:18 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[opensource]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[easy cms]]></category>
		<category><![CDATA[surrealcms]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=91</guid>
		<description><![CDATA[You’re probably wondering how you could possibly integrate your entire website with a CMS in just 15 minutes. The truth is, due to the recent trend of “light” content management systems, it’s becoming easier than ever to get small to mid-sized static websites up and running in them. What is a light CMS? For the]]></description>
			<content:encoded><![CDATA[<p>You’re probably wondering how you could possibly integrate your entire website with a CMS in just 15 minutes. The truth is, due to the recent trend of “light” content management systems, it’s becoming easier than ever to get small to mid-sized static websites up and running in them.</p>
<p>What is a light CMS? For the sake of this tutorial, I’m defining it as an easy-to-use, unobtrusive content management system that you don’t have to install. The nice thing about these systems is that you don’t even have to host them yourself, which is why integration takes very little time.</p>
<p>There are actually a handful of these CMS products available, including <a href="http://cushycms.com/">CushyCMS</a>, <a href="http://pagelime.com/">Pagelime</a>, and<a href="http://simplecms.com/">SimpleCMS</a>. Most of these systems work off the same basic principle — you add <strong>class=”something”</strong> to almost any HTML element, link your website up to their system, and you’re done. Best of all, every one of these systems offer a free version.</p>
<p>Although every light CMS product has its pros and cons, I chose to work with Surreal CMS because of their vast feature set and simple interface. You’ll see exactly what I mean in just a moment, but in the meantime, here is the general process of integrating with any light CMS:</p>
<ul>
<li>Create your website</li>
<li>Link it up to the CMS</li>
<li>Enable webpages</li>
<li>Add one or more editors</li>
<li>Begin editing</li>
</ul>
<p>all in here: <a href="http://surrealcms.com/">http://surrealcms.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/static-site-to-cms-in-15-minutes-yes-you-can.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>display list of table from other database with DAO</title>
		<link>http://yussi.nl/index.php/display-list-of-table-from-other-database-with-dao.html</link>
		<comments>http://yussi.nl/index.php/display-list-of-table-from-other-database-with-dao.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:20:44 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[vba]]></category>
		<category><![CDATA[DAO.TableDef]]></category>
		<category><![CDATA[TableDef]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=88</guid>
		<description><![CDATA[this function will display list of table from other database, it come handy if you want to make a tool for inventory of all your db Sub displayTable() Dim dbs As Database Dim otable As DAO.TableDef Dim ItemName As String Set dbs = OpenDatabase(&#8220;Db Name&#8221;) For Each otable In dbs.TableDefs If UCase(Left(otable.Name, 3)) &#60;&#62; &#8220;MSY&#8221;]]></description>
			<content:encoded><![CDATA[<p>this function will display list of table from other database, it come handy if you want to make a tool for inventory of all your db</p>
<div id="_mcePaste">
<blockquote>
<div id="_mcePaste">Sub displayTable()</div>
<div id="_mcePaste">Dim dbs As Database</div>
<div id="_mcePaste">Dim otable As DAO.TableDef</div>
<div id="_mcePaste">Dim ItemName As String</div>
<div id="_mcePaste">Set dbs = OpenDatabase(&#8220;Db Name&#8221;)</div>
<div id="_mcePaste">For Each otable In dbs.TableDefs</div>
<div id="_mcePaste">If UCase(Left(otable.Name, 3)) &lt;&gt; &#8220;MSY&#8221; Then</div>
<div id="_mcePaste">ItemName = otable.Name</div>
<div id="_mcePaste">ItemName = Replace(ItemName, &#8220;,&#8221;, &#8220;&#8211;&#8221;)</div>
<div id="_mcePaste">debug.print ItemName</div>
<div id="_mcePaste">ItemName = &#8220;&#8221;</div>
<div id="_mcePaste">End If</div>
<div id="_mcePaste">Next otable</div>
<div id="_mcePaste">Set otable = Nothing</div>
<div id="_mcePaste">Set dbs = Nothing</div>
<div id="_mcePaste">End Sub</div>
</blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/display-list-of-table-from-other-database-with-dao.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access link table from different database with vba</title>
		<link>http://yussi.nl/index.php/access-link-table-from-different-database-with-vba.html</link>
		<comments>http://yussi.nl/index.php/access-link-table-from-different-database-with-vba.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:10:48 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[vba]]></category>
		<category><![CDATA[link table]]></category>
		<category><![CDATA[TableDef]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=86</guid>
		<description><![CDATA[Problem: you have lots of database with link table in it, and in one time some of path are changed.. rather than change them manually,  i create function that can do that for me Solution: In this function you can specify the link you want to find and replace it with your new link. it]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong><br />
you have lots of database with link table in it, and in one time some of path are changed.. rather than change them manually,  i create function that can do that for me <img src='http://yussi.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Solution:</strong><br />
In this function you can specify the link you want to find and replace it with your new link. it save me lots of time..</p>
<div id="_mcePaste">
<blockquote>
<div id="_mcePaste">Function RelinkTable(setDB As String, FINDtext As String, REPLACEtext As String)</div>
<div id="_mcePaste">Dim dbs As Database</div>
<div id="_mcePaste">Dim Tdf As TableDef</div>
<div id="_mcePaste">Dim Tdfs As TableDefs</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">Set dbs = OpenDatabase(setDB)</div>
<div id="_mcePaste">Set Tdfs = dbs.TableDefs</div>
<div id="_mcePaste">&#8216;Loop through the tables collection</div>
<div id="_mcePaste">For Each Tdf In Tdfs</div>
<div id="_mcePaste">If Tdf.SourceTableName &lt;&gt; &#8220;&#8221; And Tdf.Connect = &#8220;;DATABASE=&#8221; &amp; FINDtext Then   &#8216;if its the linktable</div>
<div id="_mcePaste">Tdf.Connect = &#8220;;DATABASE=&#8221; &amp; REPLACEtext &#8216;Set the new source</div>
<div id="_mcePaste">Tdf.RefreshLink &#8216;Refresh the link</div>
<div id="_mcePaste">End If</div>
<div id="_mcePaste">Next &#8216;Goto next table</div>
<div id="_mcePaste">Set dbs = Nothing</div>
<div id="_mcePaste">Set Tdfs = Nothing</div>
<div id="_mcePaste">End Function</div>
</blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/access-link-table-from-different-database-with-vba.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get the latest file with batch command</title>
		<link>http://yussi.nl/index.php/get-the-latest-file-with-batch-command.html</link>
		<comments>http://yussi.nl/index.php/get-the-latest-file-with-batch-command.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:02:16 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[batch command]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[windows batch command]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=84</guid>
		<description><![CDATA[get the latest file with batch command]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong><br />
get the latest file in the folder with batch command, in my case after getting the latest file. i will move it to other directory</p>
<p><strong>Solution:</strong><br />
copy and paste this code, change it according to your need</p>
<div id="_mcePaste">
<blockquote>
<div id="_mcePaste"><span style="font-style: normal;">@echo off</span></div>
<div id="_mcePaste"><span style="font-style: normal;">setlocal</span></div>
<div id="_mcePaste"><span style="font-style: normal;">:source directory</span></div>
<div id="_mcePaste"><span style="font-style: normal;">set srcDir= your source directory</span></div>
<div id="_mcePaste"><span style="font-style: normal;">:destination directory</span></div>
<div id="_mcePaste"><span style="font-style: normal;">set destdir=your destination directory </span></div>
<div id="_mcePaste"><span style="font-style: normal;">set lastmod=</span></div>
<div id="_mcePaste"><span style="font-style: normal;">pushd &#8220;%srcDir%&#8221;</span></div>
<div id="_mcePaste"><span style="font-style: normal;">for /f &#8220;tokens=*&#8221; %%a in (&#8216;dir /b /od 2^&gt;NUL&#8217;) do set lastmod=%%a</span></div>
<div id="_mcePaste"><span style="font-style: normal;">if &#8220;%lastmod%&#8221;==&#8221;" echo Could not locate files.&amp;goto :eof</span></div>
<div id="_mcePaste"><span style="font-style: normal;">:copy</span></div>
<div id="_mcePaste"><span style="font-style: normal;">copy &#8220;%lastmod%&#8221; &#8220;%destdir%&#8221;</span></div>
<div id="_mcePaste"><span style="font-style: normal;">:delete</span></div>
<div id="_mcePaste"><span style="font-style: normal;">del &#8220;%lastmod%&#8221;</span></div>
</blockquote>
<div id="_mcePaste"></div>
</div>
<p>enjoy <img src='http://yussi.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/get-the-latest-file-with-batch-command.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome 4 now natively supports Greasemonkey user scripts</title>
		<link>http://yussi.nl/index.php/google-chrome-4-now-natively-supports-greasemonkey-user-scripts.html</link>
		<comments>http://yussi.nl/index.php/google-chrome-4-now-natively-supports-greasemonkey-user-scripts.html#comments</comments>
		<pubDate>Thu, 11 Feb 2010 16:58:14 +0000</pubDate>
		<dc:creator>yussi ariefiyono</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[chrome 4]]></category>
		<category><![CDATA[Greasemonkey]]></category>

		<guid isPermaLink="false">http://yussi.nl/?p=78</guid>
		<description><![CDATA[One thing that got lost in the commotion of the extensions launch is a feature that is near and dear to my heart: Google Chrome 4 now natively supports Greasemonkey user scripts. Greasemonkey is a Firefox extension I wrote in 2004 that allows developers to customize web pages using simple JavaScript and it was the inspiration]]></description>
			<content:encoded><![CDATA[<p>One thing that got lost in the commotion of the extensions launch is a feature that is near and dear to my heart: Google Chrome 4 now natively supports <a href="http://en.wikipedia.org/wiki/Greasemonkey">Greasemonkey</a> user scripts. Greasemonkey is a Firefox extension I wrote in 2004 that allows developers to customize web pages using simple JavaScript and it was the inspiration for some important parts of our extension system.</p>
<p>Installation is quick and easy, just like installing an extension. That&#8217;s because under the covers, the user script is actually converted into an extension. This means that management tasks like disabling and uninstalling work just like they do with extensions.</p>
<p>Also keep in mind that some user scripts won&#8217;t work in Google Chrome yet, because of differences between it and Firefox. Based on some <a href="http://www.greasespot.net/2009/11/greasemonkey-api-usage.html">analysis</a> that the current maintainers of Greasemonkey did, I expect between 15%-25% of scripts to not work in Google Chrome. If you find such a script, you should consider letting the author know. There may be something he or she can do to easily fix the problem. In the meantime, we&#8217;ll keep working on <a href="http://code.google.com/p/chromium/issues/detail?id=18857">bugs</a> on our side to bring our implementation closer to Greasemonkey.</p>
<p>[ via <a href="http://blog.chromium.org/2010/02/40000-more-extensions.html" target="_blank">google</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://yussi.nl/index.php/google-chrome-4-now-natively-supports-greasemonkey-user-scripts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

