<?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>Activars.(evolving  and active) &#187; Configuration</title> <atom:link href="http://www.activars.com/category/configuration/feed/" rel="self" type="application/rss+xml" /><link>http://www.activars.com</link> <description>tech, web, programming, rails</description> <lastBuildDate>Sat, 03 Dec 2011 14:37:58 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>How to instal mysql or mysql2 Ruby gem for Rails 3.0.x on OS X Lion</title><link>http://www.activars.com/2011/07/25/how-to-instal-mysql-or-mysql2-ruby-gem-for-rails-3-0-x-on-os-x-lion/</link> <comments>http://www.activars.com/2011/07/25/how-to-instal-mysql-or-mysql2-ruby-gem-for-rails-3-0-x-on-os-x-lion/#comments</comments> <pubDate>Mon, 25 Jul 2011 22:43:30 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Ruby on Rails]]></category> <guid
isPermaLink="false">http://www.activars.com/?p=2413</guid> <description><![CDATA[This hits me every time when I try to install mysql gem on a new OS X machine. Here&#8217;s the trick and this should work for Snow Leopard too. Prerequisite Install Xcode 4.x Lion offers free Xcode 4 in Mac App Store. Download and install &#8220;x86 64-bit&#8221; Mysql DMG (link) Install all supplied packages, it [...]]]></description> <wfw:commentRss>http://www.activars.com/2011/07/25/how-to-instal-mysql-or-mysql2-ruby-gem-for-rails-3-0-x-on-os-x-lion/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Launch and Hide Applications at Login with AppleScript</title><link>http://www.activars.com/2010/08/13/launch-and-hide-applications-at-login-with-applescript/</link> <comments>http://www.activars.com/2010/08/13/launch-and-hide-applications-at-login-with-applescript/#comments</comments> <pubDate>Fri, 13 Aug 2010 01:25:11 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[AppleScript]]></category> <category><![CDATA[Configuration]]></category> <guid
isPermaLink="false">http://www.activars.com/?p=579</guid> <description><![CDATA[There are situations when we would like to launch an application but also hide the view once it has been launched. This can be achieved with simple AppleScript: This sample code will first launch &#8220;Things&#8221; application and tells the &#8220;Finder&#8221; to hide the window. In order to run this script at login as well as [...]]]></description> <wfw:commentRss>http://www.activars.com/2010/08/13/launch-and-hide-applications-at-login-with-applescript/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Install SML Compiler on Ubuntu</title><link>http://www.activars.com/2010/03/04/install-sml-compiler-on-ubuntu/</link> <comments>http://www.activars.com/2010/03/04/install-sml-compiler-on-ubuntu/#comments</comments> <pubDate>Thu, 04 Mar 2010 18:41:35 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Linux]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=79</guid> <description><![CDATA[Here is a short tip if someone would like to install SML Compiler on Ubuntu. Standard ML of New Jersey interactive compiler SML/NJ is an implementation of the Standard ML programming language. Standard ML has many features, including type safety, polymorphism, algebraic data types with pattern matching, higher-order functions, and a sophisticated module system. It [...]]]></description> <wfw:commentRss>http://www.activars.com/2010/03/04/install-sml-compiler-on-ubuntu/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Configure Rails migration version type</title><link>http://www.activars.com/2008/12/02/configure-rails-migration-version-type/</link> <comments>http://www.activars.com/2008/12/02/configure-rails-migration-version-type/#comments</comments> <pubDate>Tue, 02 Dec 2008 18:34:38 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Ruby on Rails]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=65</guid> <description><![CDATA[Rails use a UTC time stamp as migration version by default. Although most examples in books have simple number based system for managing migration versions, there isn&#8217;t much information about version type configuration. By default, a migration file(&#62;=Rail 2.0) name look similar to: We can turn this off and use numeric prefixes by adding this [...]]]></description> <wfw:commentRss>http://www.activars.com/2008/12/02/configure-rails-migration-version-type/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>RubyGem update on Leopard</title><link>http://www.activars.com/2008/11/27/rubygem-update-on-leopard/</link> <comments>http://www.activars.com/2008/11/27/rubygem-update-on-leopard/#comments</comments> <pubDate>Thu, 27 Nov 2008 18:31:52 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Ruby on Rails]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=61</guid> <description><![CDATA[I have a RubyGem version 1.2.0 installed on Leopard. If you would like to update RubyGems to a newer version, the RubyGem user guide suggests for modern versions( &#62;0.8.5 ) can use the following command: gem update --system But, console told me the 1.2.0 is the latest version &#8211; Nothing to update! The work around [...]]]></description> <wfw:commentRss>http://www.activars.com/2008/11/27/rubygem-update-on-leopard/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>mySQL: Error 1045</title><link>http://www.activars.com/2008/08/16/mysql-error-1045/</link> <comments>http://www.activars.com/2008/08/16/mysql-error-1045/#comments</comments> <pubDate>Sat, 16 Aug 2008 18:29:12 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=57</guid> <description><![CDATA[If you get this error (in phpMyAdmin or other operation) after setting up a MySQL password: ERROR 1045: Access denied for user: 'root@localhost' (Using password: NO) This might caused by phpMyAdmin&#8217;s configuration doesn&#8217;t have the new password. If using XAMPP, you need to update the /Applications/xampp/xamppfiles/phpmyadmin/config.inc.php for the phpMyAdmin: $cfg['Servers'][$i]['password'] = 'YOURPASSWORD'; Change the YOURPASSWORD [...]]]></description> <wfw:commentRss>http://www.activars.com/2008/08/16/mysql-error-1045/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>VirtualHost browser cache</title><link>http://www.activars.com/2008/08/10/virtualhost-browser-cache/</link> <comments>http://www.activars.com/2008/08/10/virtualhost-browser-cache/#comments</comments> <pubDate>Sun, 10 Aug 2008 18:28:03 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Programming]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=55</guid> <description><![CDATA[Setting up a virtual host on PC, Mac or Linux isn&#8217;t difficult, but the browser cache problem drives me crazy. Apart from editing the /etc/hosts mappings and httpd.conf, you need to restart both Apache and browser. Refreshing the browser(Firefox) doesn&#8217;t clean the cache, so the result will be always add /xampp/index.php at the end of [...]]]></description> <wfw:commentRss>http://www.activars.com/2008/08/10/virtualhost-browser-cache/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Leopard system environment PATH setting</title><link>http://www.activars.com/2008/08/09/leopard-system-environment-path-setting/</link> <comments>http://www.activars.com/2008/08/09/leopard-system-environment-path-setting/#comments</comments> <pubDate>Sat, 09 Aug 2008 18:26:38 +0000</pubDate> <dc:creator>jay</dc:creator> <category><![CDATA[Configuration]]></category> <category><![CDATA[Programming]]></category> <guid
isPermaLink="false">http://wp.activars.com/?p=53</guid> <description><![CDATA[Leopard PATH setting is quite different from Tiger. Configuring PATH on Tiger, we used to either modify the /etc/path or user path configuration. With Leopard, system-wide path configuration is managed by /etc/profile. The file loads a path_helper script. So what the script does? The path_helper constructs the system environment PATH in this order: Reads the [...]]]></description> <wfw:commentRss>http://www.activars.com/2008/08/09/leopard-system-environment-path-setting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
